@charset "UTF-8";
/**
  @fonts
--------------------------------------------------------
  setting/_font.scss
--------------------------------------------------------
■日本語フォント
- IBM Plex Sans JP
https://fonts.google.com/specimen/IBM+Plex+Sans+JP

- Yaku Han JP
https://yakuhanjp.qranoko.jp/

■英字フォント
- Quicksand
https://fonts.google.com/specimen/Quicksand
-------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

p, li, dt, dd, a, th, td, h1, h2, h3, h4, h5 {
  letter-spacing: 0.1em;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

hr {
  display: block;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: normal;
}

sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
}

:root {
  --scrollbar: 0;
  --vw: calc(100vw - var(--scrollbar));
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  height: 100%;
  word-wrap: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

body {
  background: #f4f0ec;
  color: #3f2f16;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  line-height: 1;
  opacity: 0;
}
body.is-loaded {
  -webkit-animation: fadein 0.3s ease-in 0.5s forwards;
          animation: fadein 0.3s ease-in 0.5s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
a[class] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

:root {
  --body-width: calc(100vw - var(--scrollbar));
  --fz-3: 0.625rem;
  --fz-2: 0.75rem;
  --fz-1: 0.875rem;
  --fz0: clamp(1rem, 1rem + 0vw, 1rem);
  --fz1: clamp(1.125rem, 1.0708rem + 0.2312vw, 1.25rem);
  --fz2: clamp(1.2656rem, 1.1369rem + 0.5491vw, 1.5625rem);
  --fz3: clamp(1.4238rem, 1.1944rem + 0.979vw, 1.9531rem);
  --fz4: clamp(1.6018rem, 1.2378rem + 1.553vw, 2.4414rem);
  --fz5: clamp(1.802rem, 1.2602rem + 2.3116vw, 3.0518rem);
  --fz6: clamp(2.0273rem, 1.2524rem + 3.3062vw, 3.8147rem);
  --fz7: clamp(2.2807rem, 1.2022rem + 4.6015vw, 4.7684rem);
}

/* =========================================================
 header
========================================================= */
.scroll-prevent {
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: rgba(244, 240, 236, 0.8);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 999999;
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 80px;
    padding-left: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .l-header {
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .l-header {
    height: 100px;
    padding-left: 30px;
    padding-right: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    height: 120px;
    padding-left: 50px;
    padding-right: 150px;
  }
}
@media screen and (min-width: 992px) {
  .l-header.is-fixed {
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header.is-fixed {
    height: 100px;
  }
}
.l-header-logo {
  margin-right: auto;
}
.l-header-logo a {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 991px) {
  .l-header-logo a {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-logo a {
    width: 260px;
  }
}
@media screen and (max-width: 575px) {
  .l-header-logo a {
    width: 220px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-logo a {
    height: 60px;
    aspect-ratio: 79/50;
  }
  .is-fixed .l-header-logo a {
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-logo a {
    height: 80px;
  }
  .is-fixed .l-header-logo a {
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav {
    pointer-events: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: calc(100dvh - 80px);
    z-index: 888888;
    opacity: 0;
    -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media screen and (max-width: 575px) {
  .l-header-nav {
    top: 60px;
    height: calc(100dvh - 60px);
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__inner {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100dvh - 80px);
  }
}
@media screen and (max-width: 575px) {
  .l-header-nav__inner {
    height: calc(100dvh - 60px);
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__bg {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: calc(100dvh - 80px);
    background: #fff;
    -webkit-transform: translate(100%, 0) matrix(1, 0, 0, 1, 0, 0);
            transform: translate(100%, 0) matrix(1, 0, 0, 1, 0, 0);
    -webkit-box-shadow: 2px 2px 4px 3px rgba(0, 0, 0, 0.03);
            box-shadow: 2px 2px 4px 3px rgba(0, 0, 0, 0.03);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  .l-header-nav__bg:before, .l-header-nav__bg:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .l-header-nav__bg:before {
    width: 100%;
    background: #fff;
    z-index: 2;
  }
  .l-header-nav__bg:after {
    width: 100vw;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  .l-header:has(input:checked) .l-header-nav__bg:after {
    opacity: 1;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}
@media screen and (max-width: 575px) {
  .l-header-nav__bg {
    top: 60px;
    height: calc(100dvh - 60px);
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav__bg {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__main {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__list {
    display: -ms-grid;
    display: grid;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}
@media screen and (min-width: 992px) {
  .l-header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-nav__list {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav__list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.l-header-nav__item {
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .l-header-nav__item {
    font-size: var(--fz-1);
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__item {
    font-size: var(--fz0);
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__item:not(:last-child) {
    border-bottom: 1px solid #eae8e4;
  }
}
.l-header-nav__link {
  position: relative;
}
@media screen and (max-width: 991px) {
  .l-header-nav__link {
    display: block;
    padding-block: 1.8em;
    padding-inline: 1.5em;
  }
}
@media screen and (max-width: 413px) {
  .l-header-nav__link {
    padding-block: 1.3em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav__link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #ec7065;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav__link:hover {
    color: #ec7065;
  }
  .l-header-nav__link:hover:after {
    width: 100%;
  }
}
.l-header-nav__link span {
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header-tel {
  position: relative;
  width: 50px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 991px) {
  .l-header-tel {
    margin-right: 20px;
  }
}
@media screen and (max-width: 575px) {
  .l-header-tel {
    width: 40px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-tel {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-tel {
    margin-left: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-tel {
    cursor: pointer;
  }
}
.l-header-tel__inner {
  position: absolute;
  top: 50%;
  right: 0;
  height: 50px;
  background: #5c4420;
  border-radius: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .l-header-tel__inner {
    background: #ec7065;
  }
}
@media screen and (max-width: 575px) {
  .l-header-tel__inner {
    height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-tel__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  .l-header-tel:hover .l-header-tel__inner {
    height: 60px;
    border-radius: 30px;
  }
}
.l-header-tel__link {
  width: 50px;
}
@media screen and (max-width: 575px) {
  .l-header-tel__link {
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-tel__link {
    pointer-events: none;
  }
}
.l-header-tel__main {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  gap: 5px;
  width: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .l-header-tel:hover .l-header-tel__main {
    width: 190px;
  }
}
.l-header-tel__main p {
  white-space: nowrap;
  color: #fff;
  line-height: 1;
}
.l-header-tel__num {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz2);
  letter-spacing: 0.05em;
}
.l-header-tel__time {
  font-size: var(--fz-3);
}
.l-header-tel__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 575px) {
  .l-header-tel__icon {
    width: 40px;
  }
}
.l-header-tel svg {
  width: 25px;
  aspect-ratio: 1/1;
  fill: #fff;
}
@media screen and (max-width: 575px) {
  .l-header-tel svg {
    width: 20px;
  }
}
.l-header-cta {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .l-header-cta {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-cta {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta {
    position: fixed;
    top: 0;
    right: 0;
    width: 100px;
  }
}
.l-header-cta__item {
  position: relative;
  overflow: hidden;
}
.l-header-cta__item:not(:first-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 991px) {
  .l-header-cta__item:not(:first-child):after {
    width: 1px;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta__item:not(:first-child):after {
    width: 100%;
    height: 1px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta__item:nth-last-child(2) {
    border-radius: 0 0 0 30px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta__item--lineup {
    margin-top: 10px;
    border-radius: 30px 0 0 30px;
  }
  .l-header-cta__item--lineup:after {
    display: none !important;
  }
}
.l-header-cta__link {
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background: #5c4420;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .l-header-cta__link {
    aspect-ratio: 1/1.1;
  }
}
.l-header-cta__item--lineup .l-header-cta__link {
  background: #ec7065;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-cta__item--lineup .l-header-cta__link:hover {
    background: #f29a92;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-cta__link:hover {
    background: #6f5227;
  }
}
.l-header-cta__link span {
  font-size: var(--fz-1);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.l-header-cta__link svg {
  width: 30px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.l-header-menu__input {
  display: none;
}
.l-header-menu__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999999;
}
@media screen and (max-width: 991px) {
  .l-header-menu__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: 100%;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 992px) {
  .l-header-menu__btn {
    display: none;
  }
}
.l-header-menu__btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #5c4420;
  border-radius: 0 0 0 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header:has(input:checked) .l-header-menu__btn:after {
  border-radius: 0;
}
.l-header-menu__btn-lines {
  position: relative;
  width: 40%;
  height: 10px;
}
.l-header-menu__btn-lines:before, .l-header-menu__btn-lines:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header:has(input:checked) .l-header-menu__btn-lines:before, .l-header:has(input:checked) .l-header-menu__btn-lines:after {
  top: 50%;
}
.l-header-menu__btn-lines:before {
  top: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-lines:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header-menu__btn-lines:after {
  bottom: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-lines:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-footer {
  position: relative;
  padding-block: min(100px, 10vw);
}
.l-footer:before, .l-footer:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.l-footer:before {
  height: min(100px, 10vw);
  background: #f4f0ec;
  z-index: -2;
}
.l-footer:after {
  height: 100%;
  background: #5c4420;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
  z-index: -1;
}
.l-footer .p-container {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .l-footer-top {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer-btm {
  margin-top: min(80px, 8vw);
  padding-top: min(80px, 8vw);
  border-top: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .l-footer-btm {
    display: -ms-grid;
    display: grid;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer-nav {
  font-size: var(--fz-1);
}
@media screen and (max-width: 575px) {
  .l-footer-nav {
    display: -ms-grid;
    display: grid;
    gap: 1.5em;
  }
}
@media screen and (min-width: 576px) {
  .l-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-nav {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-nav {
    gap: 60px;
  }
}
.l-footer-nav__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .l-footer-nav__list {
    -ms-grid-columns: 1.1fr 1em 0.9fr;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5em 1em;
  }
}
@media screen and (min-width: 576px) {
  .l-footer-nav__list {
    gap: 1.2em;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.l-footer-nav__item {
  line-height: 1;
}
.l-footer-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-nav__link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-nav__link:hover:after {
    width: 100%;
  }
}
.l-footer-nav__link svg {
  fill: #fff;
}
.l-footer-info {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .l-footer-info {
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-info {
    gap: 30px;
  }
}
.l-footer-info p {
  font-size: var(--fz-2);
  line-height: 1.8;
}
.l-footer-logo {
  display: block;
}
@media screen and (max-width: 1199px) {
  .l-footer-logo {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-logo {
    width: 335px;
  }
}
.l-footer-notice {
  font-size: var(--fz-2);
  color: #fff;
}
.l-footer-external {
  font-size: var(--fz-1);
}
@media screen and (max-width: 767px) {
  .l-footer-external {
    display: -ms-grid;
    display: grid;
    gap: 1em;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-external {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.l-footer-external__item {
  line-height: 1;
}
.l-footer-external__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: #fff;
}
.l-footer-external svg {
  width: 12px;
  height: 11px;
  fill: #fff;
}
.l-footer-copyright {
  color: #fff;
  font-size: var(--fz-2);
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.l-aside-contact {
  grid-area: contact;
}
@media screen and (max-width: 991px) {
  .l-aside-contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr var(--gap) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-contact {
    display: block;
    margin-bottom: 10vw;
  }
}
.l-aside-contact * {
  color: #fff;
  line-height: 1;
}
.l-aside-contact__ttl {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
  .l-aside-contact__ttl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-contact__ttl {
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-contact__ttl {
    margin-bottom: 50px;
  }
}
.l-aside-contact__ttl--en {
  font-size: var(--fz-3);
  font-weight: 700;
}
.l-aside-contact__ttl--jp {
  font-size: var(--fz4);
}
.l-aside-contact__txt {
  font-size: var(--fz-1);
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .l-aside-contact__txt {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .l-aside-contact__txt {
    font-size: 0.812rem;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-contact__txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.l-aside-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: min(20px, 2.5vw);
  font-size: var(--fz4);
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1399px) {
  .l-aside-contact__tel {
    font-size: 3vw;
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact__tel {
    font-size: var(--fz4);
  }
}
.l-aside-contact__tel a {
  color: #fff;
  text-decoration: none;
}
.l-aside-contact__tel svg {
  width: 0.7em;
  aspect-ratio: 1/1;
}
.l-aside-contact__time {
  font-size: var(--fz-2);
}
.l-aside-link {
  position: relative;
  padding-block: min(80px, 10vw);
  background: #5c4420;
}
.l-aside-link svg {
  fill: #fff;
}
.l-aside-link__grid {
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
  padding-inline: var(--body-space);
  width: var(--body-width);
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-aside-link__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .l-aside-link__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-aside-link__grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 991px) {
  .l-aside-link__grid div:nth-of-type(1) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-link__grid div:nth-of-type(2) {
    display: none;
  }
}
.l-aside-link__inner {
  position: relative;
  padding-inline: var(--body-space);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-aside-link__inner {
    display: -ms-grid;
    display: grid;
    grid-column-gap: var(--gap);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr var(--gap) 1fr;
    grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "contact contact" "link01 link02";
  }
  .l-aside-contact {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-link__inner {
        grid-template-areas: "contact link01 link02";
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-aside-contact {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.l-aside-link__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 768px) {
  .l-aside-link__list {
    gap: min(20px, 2vw);
  }
}
.l-aside-link__list:nth-of-type(1) {
  grid-area: link01;
}
.l-aside-link__list:nth-of-type(2) {
  grid-area: link02;
}
@media screen and (min-width: 768px){
  .l-aside-link__list:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-aside-link__list:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 992px){
  .l-aside-link__list:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .l-aside-link__list:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.l-aside-link__list:not(:last-child) {
  margin-bottom: min(20px, 2vw);
}
.l-aside-link__item {
  line-height: 1;
}
.l-aside-link__item a, .l-aside-link__item span {
  display: block;
  position: relative;
  padding-block: 5px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-aside-link__item a, .l-aside-link__item span {
    padding-block: 10px;
  }
}
.l-aside-link__item a:before, .l-aside-link__item a:after, .l-aside-link__item span:before, .l-aside-link__item span:after {
  content: "";
  display: block;
}
.l-aside-link__item a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-aside-link__item a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) {
  .l-aside-link__item a:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-link__item > span {
    display: none;
  }
}
.l-aside-link__item ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-aside-link__item ul {
    margin-top: 10px;
  }
}
.l-aside-link__item ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
}
.l-aside-link__item ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.5em + 4px);
  left: 0;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}
.l-aside-link__item ul a {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .l-aside-link__item ul a {
    padding: 0;
    padding-block: 5px;
  }
}

.l-main {
  position: relative;
}
@media screen and (max-width: 991px) {
  .l-main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .l-main {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .l-main {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .l-main {
    padding-top: 120px;
  }
}
.l-main a {
  text-decoration: none;
}
.l-main a:not([class]) {
  color: #5c4420;
  text-decoration: underline;
}
@media (hover: hover) {
  .l-main a:not([class]):hover {
    color: #5c4420;
    text-decoration: none;
  }
}

.c-article {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.c-article-hgroup {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.c-article-hgroup__desc {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-article-hgroup__desc {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-article-hgroup__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}
.c-article-hgroup svg {
  width: 16px;
  aspect-ratio: 1/1;
}
.c-article-hgroup__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: var(--fz-2);
}
.c-article-hgroup__cat svg {
  fill: #5c4420;
}
.c-article-hgroup__cat span + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-article-hgroup__cat span + span:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #3f2f16;
}
.c-article-hgroup__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-1);
  letter-spacing: 0.05em;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .c-article-hgroup__date {
    font-size: var(--fz-2);
  }
}
.c-article-hgroup__date span {
  line-height: 0.8;
}
.c-article-hgroup__date svg {
  fill: #3f2f16;
}
.c-article-hgroup__ttl {
  font-size: var(--fz3);
  text-align: left;
  line-height: 1.5;
}
.c-article-main__eyecatch {
  overflow: hidden;
  width: 100%;
  margin-bottom: min(50px, 6vw);
  aspect-ratio: 3/2;
  border-radius: min(30px, 4vw);
}
.c-article-main__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-article-main__txt h2:not(:first-child), .c-article-main__txt h3:not(:first-child), .c-article-main__txt h4:not(:first-child) {
  margin-top: 3em;
}
.c-article-main__txt h2 + h2, .c-article-main__txt h2 + h3, .c-article-main__txt h2 + h4, .c-article-main__txt h3 + h2, .c-article-main__txt h3 + h3, .c-article-main__txt h3 + h4, .c-article-main__txt h4 + h2, .c-article-main__txt h4 + h3, .c-article-main__txt h4 + h4 {
  margin-top: 0 !important;
}
.c-article-main__txt h2 {
  margin-bottom: 1em;
  font-size: var(--fz4);
  font-weight: 700;
  line-height: 1.3;
}
.c-article-main__txt h3 {
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: var(--fz2);
  font-weight: 700;
  line-height: 1.3;
}
.c-article-main__txt h4 {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: var(--fz0);
}
.c-article-main__txt p {
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .c-article-main__txt p, .c-article-main__txt li {
    font-size: 1.125rem;
  }
}
.c-article-main__txt a:not([class]) {
  color: #ec7065;
}
.c-article-main__txt ul {
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}
.c-article-main__txt ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 15px;
  line-height: 1.6;
}
.c-article-main__txt ul li:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.8em;
  left: 0;
  width: 6px;
  margin-top: -3px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #5c4420;
}

.c-btn {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 40px;
  background: #5c4420;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-btn {
    height: 60px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 575px) {
  .c-btn {
    width: 100%;
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 70px;
    border-radius: 35px;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    background: #493619;
  }
}
.c-btn span {
  text-align: center;
}
.c-btn .c-icon svg {
  width: 12px;
  fill: #fff;
}
.c-btn--en {
  height: 60px;
}
.c-btn--en span {
  font-family: "Quicksand", sans-serif;
}
.c-btn--pnk {
  background: #ec7065;
}
.c-btn--wht {
  border-color: #5c4420;
  background: #fff;
  color: #5c4420;
}
.c-btn--wht .c-icon svg {
  fill: #5c4420;
}
@media screen and (min-width: 992px) {
  .c-btn--wht:hover {
    background: #5c4420;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-btn--sm {
    height: 50px;
    border-radius: 25px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn--sm {
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn--sm {
    height: 60px;
    border-radius: 30px;
  }
}
.c-btn--lg {
  width: 400px;
}
@media screen and (max-width: 575px) {
  .c-btn--lg {
    width: 100%;
  }
}
.c-btn--primary {
  position: relative;
  padding-left: min(40px, 5vw);
  padding-right: min(30px, 5vw);
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .c-btn--primary {
    height: 80px;
    padding-left: min(40px, 5vw);
    padding-right: min(30px, 5vw);
    border-radius: 40px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn--primary {
    height: 100px;
    padding-left: 50px;
    padding-right: 40px;
    border-radius: 50px;
  }
}
.c-btn--primary span {
  font-size: var(--fz1);
}
.c-btn-wrap {
  margin-top: min(50px, 8vw);
}
.c-btn-wrap:has(.c-btn--primary) {
  margin-top: min(80px, 10vw);
}
.c-btn-lead {
  margin-bottom: 1em;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .c-btn-list {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

/**
  @forms
---------------------------------------------------------
  elements/_forms.scss
--------------------------------------------------------- */
@media screen and (min-width: 414px) {
  body:has(.c-form) .p-page-body {
    margin-bottom: 0;
    padding-block: min(150px, 20vw);
    background: #f4f0ec;
  }
}
@media screen and (min-width: 414px) {
  body:has(.c-form) .p-page-breadcrumbs__wrap {
    background: #f4f0ec;
  }
}

@media screen and (min-width: 414px) {
  .c-form {
    width: 90vw;
    max-width: 900px;
    margin-inline: auto;
    padding: min(80px, 5vw);
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
}
.c-form__info {
  display: block;
  width: 100%;
  margin: 0;
  margin-top: 5px;
  font-weight: 500;
  font-size: clamp(0.688rem, 0.631rem + 0.24vw, 0.813rem);
}
.c-form-block {
  display: -ms-grid;
  display: grid;
  gap: min(2.6vw,15px);
  margin-bottom: 0;
}
.c-form-block:not(:first-child) {
  margin-top: min(50px, 6vw);
}
.c-form-block--privacy {
  text-align: center;
}
.c-form-block--privacy .horizontal-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto !important;
}
.c-form-block--privacy:has(.error) .horizontal-item label:after {
  border-color: #ca0e15;
}
.c-form-block--privacy label {
  height: auto !important;
  padding: 0 !important;
  border: none !important;
}
.c-form-block--privacy label:before {
  top: 5px !important;
  left: 1px !important;
}
.c-form-block--privacy label:has(input:checked):before {
  opacity: 1;
}
.c-form-block--privacy p {
  text-align: center;
  margin-bottom: 0 !important;
}
.c-form-block--privacy .error {
  margin-top: 0;
  text-align: center;
}
.c-form-hide {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.mw_wp_form_confirm .c-form-hide {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
}
.mw_wp_form_confirm .c-form-block .c-form-hide {
  margin-top: 5px;
}
.c-form-hide__inner {
  overflow: hidden;
}
.c-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__head span {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.c-form__head small {
  font-weight: 400;
  font-size: 75%;
  margin-left: 0.5em;
}
.c-form__head-icon {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4em;
  height: 2em;
  margin-right: 10px;
  border-radius: 1em;
  color: #fff;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  font-weight: 700;
  line-height: 1;
}
.c-form__head-icon--optional {
  background: #808080;
}
.c-form__head-icon--optional:before {
  content: "任意";
}
.c-form__head-icon--required {
  background: #ca0e15;
}
.c-form__head-icon--required:before {
  content: "必須";
}
.c-form__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__cnt p {
  width: 100%;
}
.c-form__cnt-img {
  display: -ms-grid;
  display: grid;
  gap: 1em;
}
.c-form__cnt-img div {
  line-height: 1;
}
.c-form__cnt-img input {
  margin-bottom: 5px;
}
.c-form__cnt-img p {
  display: block;
  margin-bottom: 5px !important;
  font-size: 0.812rem;
  line-height: 1;
}
.c-form__cnt:has(.error) input[type=text], .c-form__cnt:has(.error) input[type=tel], .c-form__cnt:has(.error) input[type=email], .c-form__cnt:has(.error) input[type=number], .c-form__cnt:has(.error) textarea, .c-form__cnt:has(.error) .c-form__select {
  border-color: #ca0e15;
  background: rgba(202, 14, 21, 0.1);
}
.c-form__cnt:has(.error) .horizontal-item label:after {
  border-color: #ca0e15;
}
@media screen and (min-width: 768px) {
  .c-form-date__cnt {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
  }
}
@media screen and (min-width: 768px) {
  .c-form-date__cnt dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
}
.c-form-date__cnt dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-form-date__cnt dd {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.c-form-date__ttl {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1;
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form select {
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form textarea, .c-form__select {
  -webkit-appearance: none;
  -webkit-transition: border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #f4f0ec;
  border: solid 1px #d9d9d9;
  border-radius: 6px;
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form textarea {
  padding: 1em;
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form textarea, .c-form select {
  cursor: pointer;
  width: 100%;
  color: #3f2f16;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  font-size: 1rem;
  vertical-align: baseline;
}
.c-form input[type=text]:focus, .c-form input[type=tel]:focus, .c-form input[type=email]:focus, .c-form input[type=number]:focus, .c-form textarea:focus, .c-form select:focus {
  outline: none;
}
.c-form select {
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 15;
  vertical-align: middle;
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: none;
}
.c-form select::-ms-expand {
  display: none;
}
.c-form textarea {
  height: clamp(100px, 25vw, 200px);
  padding: 1em;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  display: none;
}
.c-form input.short {
  width: 150px;
}
.c-form input.zip {
  width: 100px;
}
.c-form input.num {
  width: 80px;
}
.c-form-icon__hyphen {
  display: block;
  width: 10px;
  height: 1px;
  background: #d9d9d9;
  margin: 0 10px;
  line-height: 0;
}
.c-form__select {
  position: relative;
  width: 100%;
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
  border: 1px solid #d9d9d9;
  background: #f4f0ec;
  z-index: 10;
}
.c-form__select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  margin: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #d9d9d9;
  border-right: 2px solid #d9d9d9;
  z-index: 11;
}
.c-form__select select {
  padding: 0 1em;
}

/* =========================================================
 MW WP Form < error >
========================================================= */
.c-form-block .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #ca0e15;
  font-size: var(--fz-1);
  font-weight: 700;
}

/* =========================================================
 MW WP Form < radio & checkbox >
========================================================= */
.c-form__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  width: 100%;
}
.c-form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.c-form .mwform-radio-field, .c-form .mwform-checkbox-field {
  display: block;
}
.c-form .mwform-radio-field label, .c-form .mwform-checkbox-field label {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-form .mwform-radio-field label span, .c-form .mwform-checkbox-field label span {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  line-height: 1;
}
.c-form .mwform-radio-field label:before, .c-form .mwform-radio-field label:after, .c-form .mwform-checkbox-field label:before, .c-form .mwform-checkbox-field label:after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form .mwform-radio-field label:before, .c-form .mwform-checkbox-field label:before {
  position: absolute;
  opacity: 0;
  z-index: 2;
}
.c-form .mwform-radio-field label:after, .c-form .mwform-checkbox-field label:after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #d9d9d9;
  background: #fff;
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 1;
}
.c-form .mwform-radio-field label:hover:after, .c-form .mwform-checkbox-field label:hover:after {
  border-color: #5c4420;
}
.c-form .mwform-radio-field label.selected:after, .c-form .mwform-checkbox-field label.selected:after {
  border-color: #5c4420;
  background: #5c4420;
}
.c-form .mwform-radio-field label.selected:before, .c-form .mwform-checkbox-field label.selected:before {
  opacity: 1;
}
.c-form .mwform-radio-field label:has(input:checked):before, .c-form .mwform-checkbox-field label:has(input:checked):before {
  opacity: 1;
}
.c-form .mwform-radio-field label:before {
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: 7px;
  border-radius: 50%;
  background-color: #5c4420;
}
.c-form .mwform-radio-field label:after {
  border-radius: 100%;
}
.c-form .mwform-checkbox-field label:before {
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  left: 15px;
  display: block;
  width: 7px;
  height: 11px;
  margin-left: 8px;
  border-right: 3px solid #5c4420;
  border-bottom: 3px solid #5c4420;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =========================================================
 btn
========================================================= */
.c-form input.c-btn, .c-form button.c-btn {
  cursor: pointer;
  padding-inline: 0;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 413px) {
  .c-form input.c-btn, .c-form button.c-btn {
    width: 100%;
  }
}
.c-form input.c-btn:hover, .c-form button.c-btn:hover {
  background: #362813;
}
.c-form .c-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .c-form .c-btn-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 413px) {
  .c-form .c-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

/* =========================================================
 step
========================================================= */
.c-form-step__list {
  position: relative;
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .c-form-step__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 575px) {
  .c-form-step__list {
    width: 100%;
    gap: 0;
  }
}
@media screen and (min-width: 992px) {
  .c-form-step__list {
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-step__list:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 18px;
    width: 1px;
    height: 100%;
    margin-left: -1px;
    background: #eae8e4;
    z-index: -1;
  }
}
.c-form-step__item {
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .c-form-step__item {
    position: relative;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    padding-inline: 15px;
  }
}
@media screen and (min-width: 992px) {
  .c-form-step__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 991px) {
  .c-form-step__item:after {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    height: 1px;
    background: #eae8e4;
    z-index: -1;
  }
}
@media screen and (max-width: 991px) {
  .c-form-step__item:nth-of-type(1):after {
    width: 50%;
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .c-form-step__item:nth-of-type(2):after {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .c-form-step__item:nth-of-type(3):after {
    width: 50%;
    left: 0;
  }
}
.c-form-step__item.is-current i {
  background: #5c4420;
}
.c-form-step__item.is-current span {
  color: #3f2f16;
}
.c-form-step__item i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: #d3b381;
  color: #fff;
}
.c-form-step__item span {
  color: #d3b381;
}
@media screen and (max-width: 991px) {
  .c-form-step__item span {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .c-form-step__item span {
    font-size: var(--fz-1);
  }
}
@media screen and (max-width: 413px) {
  .c-form-step__item span {
    font-size: var(--fz-2);
  }
}

/* =========================================================
 confirm
========================================================= */
.mw_wp_form_confirm .c-form-block {
  padding-bottom: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
  border-bottom: 1px solid #eae8e4;
}
.mw_wp_form_confirm .c-form-block .c-form__head-icon {
  display: none;
}
.mw_wp_form_confirm .c-form-block .c-form__info, .mw_wp_form_confirm .c-form-block .txt--attention {
  display: none;
}
.mw_wp_form_confirm .c-form-block .c-form__select {
  height: auto;
  border: none;
  background: none;
}
.mw_wp_form_confirm .c-form-block .c-form__select:after {
  display: none;
}
.mw_wp_form_confirm .c-form-block .c-form__etc {
  display: block;
}
.mw_wp_form_confirm .c-form-block .c-form__etc .label {
  display: none;
}
.mw_wp_form_confirm .c-form-block .c-form__list {
  border: none;
}
.mw_wp_form_confirm .js-form-hide {
  display: block;
}
.mw_wp_form_confirm .c-form-block--privacy {
  display: none;
}
.mw_wp_form_confirm .c-form__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.mw_wp_form_confirm .c-form__date dt {
  display: none;
}
.mw_wp_form_confirm .c-form-icon__hyphen {
  background: #3f2f16;
}

/* =========================================================
 message
========================================================= */
.c-form-message p {
  line-height: 2 !important;
}
.c-form-message th {
  white-space: nowrap;
}
.c-form-message--error, .c-form-message--conf {
  display: none;
  margin-top: 1.5em;
}
.mw_wp_form_confirm .c-form-message, .c-form:has(.error) .c-form-message {
  display: none;
}
.mw_wp_form_confirm .c-form-message--conf {
  display: block;
}
.c-form:has(.error) .c-form-message--error {
  display: block;
}
.c-form:has(.error) .c-form-message--error * {
  color: #ca0e15;
  font-weight: 700;
}
.c-form-thanks h2 {
  margin-bottom: 1.5em;
  font-size: var(--fz3);
  font-weight: 700;
  text-align: center;
}
.c-form-thanks p {
  line-height: 2 !important;
}
.c-form-thanks__attention {
  padding: min(40px, 5vw);
  background: rgba(202, 14, 21, 0.1);
  border: 1px solid #ca0e15;
  border-radius: 15px;
}
.c-form-thanks__attention .c-sentence {
  color: #ca0e15;
  font-size: var(--fz0);
}
.c-form-thanks .c-btn {
  padding-inline: 20px;
}
@media (hover: hover) {
  .c-form-thanks .c-btn:hover svg {
    fill: #5c4420;
  }
}

/* =========================================================
 confirm
========================================================= */
/* =========================================================
 hide
========================================================= */
.js-form-hide {
  display: none;
}
.js-form-hide.is-show {
  display: block;
}

:root {
  --spacing: .25rem;
}

.c-grid {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .c-grid + .c-grid {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-grid + .c-grid {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid + .c-grid {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .c-grid-cols-2 {
    gap: 8vw;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-2 {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-grid-cols-2 {
    gap: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .c-grid-cols-2 {
    gap: 80px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-2.img-s {
    -ms-grid-columns: 1fr 35%;
    grid-template-columns: 1fr 35%;
  }
}
@media screen and (min-width: 576px) {
  .c-grid-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .c-grid-cols-3 {
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-3 {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-grid-col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
}
@media screen and (min-width: 768px) {
  .c-grid-col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
}
.c-grid-gap_s {
  gap: min(50px, 6vw);
}
.c-grid figure {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

i[class^=c-icon] {
  line-height: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
i[class^=c-icon] svg {
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 2;
}

.c-icon {
  line-height: 0;
}
.c-icon-arrow svg {
  width: 12px;
}
.c-icon-arrow--wht svg {
  fill: #fff;
}
.c-icon-separate {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-inline: 0.5em;
  background: #3f2f16;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  vertical-align: middle;
}
.c-icon-map {
  height: 1.5em;
  aspect-ratio: 1/1;
}
.c-icon-map svg {
  fill: #5c4420;
}
.c-icon-dot svg {
  width: 20px;
}
.c-icon-circle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 24px;
  border-radius: 12px;
  background: #5c4420;
}
.c-icon-circle--pnk {
  background: #ec7065;
}
.c-icon-circle--wht {
  background: #fff;
}
.c-icon-circle--gry {
  background: #bfbfbf;
}
.c-icon-circle svg {
  fill: #fff;
  width: 8px;
  aspect-ratio: 1/1;
}
.c-icon-blank svg {
  width: 12px;
  height: 11px;
}
a:not(:has[class]) .c-icon-blank {
  margin-inline: 5px;
  fill: #5c4420;
  vertical-align: text-top;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) {
  a:not(:has(class)):hover .c-icon-blank {
    fill: #5c4420;
  }
}
.c-icon-pdf svg {
  width: 26px;
  aspect-ratio: 1/1;
  fill: #5c4420;
}
.c-icon-badge {
  position: relative;
  width: 100px;
  background: #ffe500;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
@media screen and (max-width: 413px) {
  .c-icon-badge {
    width: 60px;
  }
}
@media screen and (min-width: 414px) {
  .c-icon-badge {
    width: 80px;
  }
}
.c-icon-badge:after {
  position: absolute;
  right: -5px;
  bottom: 10%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0px 10px 30px;
  border-color: transparent transparent transparent #ffe500;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

@-webkit-keyframes icon-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes icon-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-link-line {
  position: relative;
}
.c-link-line:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(63, 47, 22, 0.6);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .c-link-line:hover:after {
    width: 100%;
  }
}
.c-link-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #3f2f16;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .c-link-txt {
    margin-top: 20px;
  }
}
.c-link-txt:has(.c-icon-map) {
  gap: 5px;
}
.c-link-txt > span {
  overflow: hidden;
  position: relative;
  display: block;
  padding-block: 5px;
  line-height: 1.3;
}
.c-link-txt > span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #3f2f16;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-link-txt p {
  margin: 0 !important;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-link-txt:hover span:after {
    width: 100%;
  }
}
.c-link-txt .c-icon-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.c-link-txt--en span {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-1);
}
.c-link-txt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 30px;
}
.c-link-txt__list--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-link-txt__list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-link-txt__list .c-link-txt {
  margin-top: 0;
}
.c-link-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-external:hover span:after {
    width: 100%;
  }
}
.c-link-external span {
  position: relative;
}
.c-link-external span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3f2f16;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-link-external svg {
  width: 1em;
  aspect-ratio: 1/1;
}
.c-link-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  padding: 1em;
  border-radius: 10px;
  border: 1px solid #eae8e4;
  background: #fff;
}
@media screen and (max-width: 413px) {
  .c-link-pdf {
    min-height: 50px;
  }
}
@media (hover: hover) {
  .c-link-pdf:hover {
    border-color: #5c4420;
  }
}
.c-link-pdf i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #5c4420;
}
.c-link-pdf i svg {
  width: 16px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.c-link-pdf__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .c-link-pdf__list {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link-pdf__list {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
}
.c-link-pdf__list .c-link-pdf {
  width: 100%;
}
.c-link-tel {
  letter-spacing: 0.05em;
}

@-webkit-keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-list {
  display: -ms-grid;
  display: grid;
}
.c-list:has(> li) {
  gap: 0.5em;
}
.c-list:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list > li, .c-list > dt {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.c-list > li:before, .c-list > dt:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.8em;
  left: 0;
  width: 6px;
  margin-top: -3px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #5c4420;
}
.c-list dt {
  margin-bottom: 5px;
}
.c-list dt:not(:first-child) {
  margin-top: 1rem;
}
.c-list dd {
  padding-left: 15px;
}
.c-list dd ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
.c-list-num {
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
}
.c-list-num:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list-num > li, .c-list-num > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  counter-increment: calc-ex9;
  line-height: 1.6;
}
.c-list-num > li:last-child, .c-list-num > dt:last-child {
  margin-bottom: 0;
}
.c-list-num > li:before, .c-list-num > dt:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  content: counter(calc-ex9) ".";
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.c-list-num > dt {
  margin-bottom: 5px;
  line-height: 1.3;
}
.c-list-num > dd {
  padding-left: calc(2em + 5px);
}
.c-list-num > dd:not(:last-child) {
  margin-bottom: 10px;
}
.c-list-num--parenthesis > li:before, .c-list-num--parenthesis > dt:before {
  content: "（" counter(calc-ex9) "）";
}
.c-list--def dt {
  margin-bottom: 5px;
}
.c-list--def dt:not(:first-child) {
  margin-top: 1rem;
}

.c-map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/*  c-modal
--------------------------------------------- */
.c-modal {
  pointer-events: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 99999999;
}
.c-modal.is-open {
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-modal-overlay {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 99999999;
}
.c-modal-container {
  overflow: hidden;
  position: relative;
  width: 90vw;
  max-height: 90svh;
  background: #fff;
  border-radius: min(30px, 3vw);
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .c-modal-container {
    max-width: 800px;
  }
}
.c-modal-main {
  padding-bottom: min(90px, 16vw);
}
.c-modal-close {
  cursor: pointer;
  position: absolute;
  top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 90vw;
  z-index: 20;
}
@media screen and (max-width: 991px) {
  .c-modal-close {
    left: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .c-modal-close {
    max-width: 800px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-modal-close i {
  position: relative;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #5c4420;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-modal-close i {
    width: 50px;
    -webkit-transform: translate(3vw, -5vw);
            transform: translate(3vw, -5vw);
  }
}
.c-modal-close i:before, .c-modal-close i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  margin-top: -1px;
  margin-left: -25%;
  background: #fff;
}
.c-modal-close i:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal-close i:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal[aria-hidden=false] {
  -webkit-animation: mmfadeIn 0.8s cubic-bezier(0, 0.7, 0.22, 1);
          animation: mmfadeIn 0.8s cubic-bezier(0, 0.7, 0.22, 1);
}
.c-modal[aria-hidden=true] {
  -webkit-animation: mmfadeOut 0.8s cubic-bezier(0, 0.7, 0.22, 1);
          animation: mmfadeOut 0.8s cubic-bezier(0, 0.7, 0.22, 1);
}
.c-modal__overlay, .c-modal__container {
  will-change: transform;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 8px;
  padding-top: clamp(2.5rem, 1.296rem + 4.94vw, 5rem);
}
@media screen and (max-width: 575px) {
  .wp-pagenavi {
    gap: 10px 5px;
  }
}
.wp-pagenavi * {
  font-size: 0.875rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 0.8;
  text-decoration: none;
}
.wp-pagenavi span:not(.pages):not(.extend), .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  border: none;
  background: #fff;
  color: #3f2f16;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .wp-pagenavi span:not(.pages):not(.extend), .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
    width: 40px;
  }
}
.wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
  border-radius: 5px;
  border: 1px solid #eae8e4;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink):hover {
    border-color: #5c4420;
    color: #3f2f16;
  }
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a.previouspostslink:hover:before, .wp-pagenavi a.nextpostslink:hover:before {
    border-color: #5c4420;
  }
}
.wp-pagenavi a.previouspostslink:before, .wp-pagenavi a.nextpostslink:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-top: 2px solid #3f2f16;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi a.previouspostslink:before {
  border-left: 2px solid #3f2f16;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wp-pagenavi a.nextpostslink:before {
  border-right: 2px solid #3f2f16;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wp-pagenavi .pages {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--fz-2);
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
  font-size: 0.875rem;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
}
@media screen and (max-width: 575px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
    font-size: 0.75rem;
  }
}
.wp-pagenavi span.current {
  color: #fff !important;
  background: #5c4420 !important;
}

.c-sentence {
  text-align: justify;
  line-height: 1.8;
}
@media screen and (min-width: 992px) {
  .c-sentence {
    font-size: 1.125rem;
  }
}
.c-sentence:not(:last-child) {
  margin-bottom: 1.5em;
}
.c-sentence-note {
  display: -ms-grid;
  display: grid;
  margin-top: 5px;
}
.c-sentence-note p, .c-sentence-note li, .c-sentence-note dt {
  margin-left: 1em;
  text-indent: -1em;
  font-size: var(--fz-2);
  line-height: 1.6;
}
.c-sentence-note p:not(:last-child) {
  margin-bottom: 5px !important;
}
.c-sentence-note dd {
  margin-left: 1em;
  font-size: var(--fz-2);
}
.c-sentence-lead {
  color: #5c4420;
  font-size: var(--fz2);
  font-weight: 500;
}
.c-sentence-lead:not(:last-child) {
  margin-bottom: 0.8em;
}
.c-sentence-emphasis {
  margin-bottom: 0.8em;
  font-size: var(--fz1);
  font-weight: 500;
}

ul.c-sentence-note {
  gap: 5px;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid #eae8e4;
}
.c-table th, .c-table td {
  border: none;
  border-bottom: 1px solid #eae8e4;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-table th, .c-table td {
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  .c-table th, .c-table td {
    padding-block: 1.5em;
    padding-inline: 1em;
  }
}
@media screen and (min-width: 992px) {
  .c-table th, .c-table td {
    padding-inline: 1.5em;
  }
}
.c-table th {
  background: #f2f2f2;
}
@media screen and (min-width: 992px) {
  .c-table th {
    min-width: 200px;
    white-space: nowrap;
  }
}
.c-table th[scope=row] {
  white-space: nowrap;
}
.c-table td {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 413px) {
  .c-table--resp th, .c-table--resp td {
    display: block;
    padding-inline: 1em;
  }
}
@media screen and (max-width: 413px) {
  .c-table--resp th {
    width: 100%;
    border-bottom: 1px dotted #eae8e4;
    background: #f4f0ec;
  }
}
.c-table-swipe th, .c-table-swipe td {
  white-space: nowrap;
}

div:has(> .js-scrollable) {
  overflow: hidden;
}

.c-title-hgroup {
  display: -ms-grid;
  display: grid;
  margin-bottom: 1em;
}
@media screen and (max-width: 575px) {
  .c-title-hgroup {
    gap: 10px;
  }
}
@media screen and (min-width: 576px) {
  .c-title-hgroup {
    gap: 15px;
  }
}
.c-title-hgroup:has([class$="-1ry"]) {
  font-size: var(--fz4);
  text-align: center;
}
.c-title-hgroup:has([class$="-2ry"]) {
  font-size: var(--fz2);
}
.c-title-hgroup [class$="-1ry"], .c-title-hgroup [class$="-2ry"] {
  margin-bottom: 0;
}
.c-title-lead {
  color: #5c4420;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.c-title-1ry {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  margin-bottom: 1em;
  color: #5c4420;
  font-size: var(--fz4);
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 575px) {
  .c-title-1ry {
    gap: 10px;
  }
}
.c-title-1ry[data-en]:after {
  content: attr(data-en);
  color: #ec7065;
  font-size: var(--fz-1);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 575px) {
  .c-title-1ry[data-en]:after {
    font-size: var(--fz-2);
  }
}
.c-title-2ry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  margin-bottom: 0.8em;
  color: #5c4420;
  font-size: var(--fz2);
  line-height: 1.3;
}
.c-title-2ry:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  margin-top: 0.25em;
  border-radius: 100%;
  background: #ec7065;
}
.c-title-3ry {
  margin-top: 2em;
  margin-bottom: 0.8em;
  color: #5c4420;
  font-size: var(--fz1);
  line-height: 1.3;
}
h2 + .c-title-3ry, h3 + .c-title-3ry, h4 + .c-title-3ry {
  margin-top: 0;
}
.c-title-4ry {
  margin-bottom: 0.5em;
  color: #5c4420;
  font-size: var(--fz0);
}
h2 + .c-title-4ry, h3 + .c-title-4ry, h4 + .c-title-4ry {
  margin-top: 0;
}

a img {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-img-mt {
  margin-top: min(30px, 3vw) !important;
}
@media screen and (max-width: 991px) {
  .c-img-rd img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 575px) {
  .c-img-rd img {
    border-radius: 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-img-rd img {
    border-radius: 30px;
  }
}

[class^=c-img] figcaption {
  display: block;
  margin-top: 1em;
  padding-inline: 1em;
  font-size: var(--fz-1);
}

.p-page {
  position: relative;
}
.p-page-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.p-page-container--full {
  max-width: none;
}
@media screen and (min-width: 992px) {
  .p-page-container--full {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .p-page-container--full {
    padding-inline: 80px;
  }
}
.p-page-header {
  position: relative;
  background: #e9e2da;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
}
.p-page-header .p-page-container {
  position: relative;
  padding-top: min(50px, 10vw);
  padding-bottom: min(80px, 10vw);
}
.p-page-header__title {
  font-weight: 500;
  line-height: 1;
}
.p-page-header__title-jp, .p-page-header__title-en {
  translate: 0 2rem;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-loaded .p-page-header__title-jp, .is-loaded .p-page-header__title-en {
  translate: 0 0;
  opacity: 1;
}
.p-page-header__title-jp {
  font-size: var(--fz5);
  font-weight: 700;
  line-height: 1.3;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media screen and (max-width: 575px) {
  .p-page-header__title-jp {
    font-size: var(--fz4);
  }
}
.p-page-header__title-en {
  margin-top: 10px;
  color: #ec7065;
  font-size: var(--fz-1);
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  line-height: 0.8em;
  -webkit-backface-visibility: 0.05em;
          backface-visibility: 0.05em;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
@media screen and (max-width: 767px) {
  .p-page-header__title-en {
    font-size: var(--fz-2);
  }
}
@media screen and (max-width: 575px) {
  .p-page-header__title-en {
    font-size: var(--fz-3);
    line-height: 1;
  }
}
.p-page-header__title-en i img {
  width: auto;
  height: 1.5em;
}
@media screen and (max-width: 991px) {
  .p-page-breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-page-breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
    font-size: var(--fz-2);
    z-index: 10;
  }
}
.p-page-breadcrumbs br {
  display: none;
}
.p-page-breadcrumbs span, .p-page-breadcrumbs a {
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-page-breadcrumbs span {
  display: block;
}
.p-page-breadcrumbs > span:not(:last-child) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-page-breadcrumbs > span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgba(63, 47, 22, 0.5);
  text-decoration: underline;
}
.p-page-breadcrumbs > span a:after {
  content: "";
  display: block;
  font-size: 0;
  width: 10px;
  height: 1px;
  background: rgba(63, 47, 22, 0.5);
}
.p-page-breadcrumbs > span a:hover {
  text-decoration: none;
}
.p-page-body {
  position: relative;
  padding-top: min(140px, 15vw);
  padding-bottom: min(150px, 20vw);
  background: #f4f0ec;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
  line-height: 1.6;
}
.p-page-body:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(100px, 10vw);
  background: #e9e2da;
  z-index: -2;
}
.p-page-body p:not(:last-child):not([class]), .p-page-body ul:not(:last-child):not([class]), .p-page-body ol:not(:last-child):not([class]) {
  margin-bottom: 1.6em;
}
.p-page-body--single {
  padding-top: min(50px, 6vw);
}
.p-page-body--single:before {
  display: none;
}
.p-page-section + .p-page-section {
  margin-top: min(150px, 15vw);
}
.p-page-article {
  position: relative;
}
.p-page-article + .p-page-article {
  margin-top: min(80px, 10vw);
}
.p-page-article__block + .p-page-article__block {
  margin-top: min(60px, 8vw);
}
.p-page-article--short {
  max-width: 800px;
}
@media screen and (max-width: 991px) {
  .p-page-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-main {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    max-width: 850px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-aside {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-aside {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .p-page-navi, .p-page-anchor {
    background: #fff;
    padding: 30px;
    border-radius: min(20px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi, .p-page-anchor {
    position: sticky;
    top: 100px;
    left: 0;
  }
}
.p-page-navi__ttl, .p-page-anchor__ttl {
  color: #5c4420;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.8;
}
@media screen and (max-width: 991px) {
  .p-page-navi__ttl, .p-page-anchor__ttl {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi__ttl, .p-page-anchor__ttl {
    margin-bottom: 2em;
  }
}
.p-page-navi__list, .p-page-anchor__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-page-navi__list, .p-page-anchor__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-navi__list, .p-page-anchor__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi__list, .p-page-anchor__list {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .p-page-navi__item, .p-page-anchor__item {
    position: relative;
    border-top: 1px solid #eae8e4;
  }
  .p-page-navi__item:after, .p-page-anchor__item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #eae8e4;
  }
}
@media screen and (max-width: 767px) {
  .p-page-navi__item, .p-page-anchor__item {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi__item, .p-page-anchor__item {
    line-height: 1;
  }
}
.p-page-navi__link, .p-page-anchor__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .p-page-navi__link, .p-page-anchor__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding-block: 15px;
  }
}
.p-page-navi__item {
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-page-anchor__link:hover {
    opacity: 1;
  }
}
.p-page-anchor__link.is-current {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link.is-current i {
    width: 10px;
    margin-right: 10px;
  }
}
.p-page-anchor__link i {
  background: #5c4420;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 991px) {
  .p-page-anchor__link i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 18px;
    border-radius: 9px;
  }
  .p-page-anchor__link i:after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -2px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link i {
    width: 0;
    height: 8px;
    border-radius: 0 4px 4px 0;
  }
}

@media screen and (max-width: 991px) {
  .p-top-kv {
    padding-top: 5vw;
  }
}
.p-top-kv .splide__slide {
  width: min(650px, 80vw);
}
.p-top-kv a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.p-top-section {
  position: relative;
  padding-block: min(140px, 15vw);
  z-index: 10;
}
.p-top-section:before, .p-top-section:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-top-section:before {
  height: min(100px, 10vw);
  z-index: -2;
}
.p-top-section:after {
  height: 100%;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
  z-index: -1;
}
.p-top-news {
  margin-block: min(40px, 5vw);
}
.p-top-news__wrap {
  display: -ms-grid;
  display: grid;
  border-radius: min(20px, 2vw);
  background: #fff;
}
@media screen and (max-width: 991px) {
  .p-top-news__wrap {
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .p-top-news__wrap {
    padding: min(30px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__wrap {
    -ms-grid-columns: auto 30px 1fr 30px auto;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    padding-block: 20px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news__wrap {
    padding-inline: 40px;
    gap: 40px;
  }
}
.p-top-news__ttl {
  color: #5c4420;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-top-news__ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    padding-right: 30px;
    border-right: 1px solid #eae8e4;
    font-size: var(--fz1);
    white-space: nowrap;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news__ttl {
    padding-right: 40px;
  }
}
.p-top-news__main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  min-width: 0;
}
.p-top-news__main a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-news__main a {
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-news__main a {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news__main a {
    gap: 40px;
  }
}
.p-top-news__main p {
  line-height: 1.5;
}
.p-top-news__main-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: var(--fz-1);
}
.p-top-news__main-ttl {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.p-top-news__main-ttl span {
  background: linear-gradient(to top, #5c4420 2px, transparent 99%) no-repeat;
  background-position: 0% 100%;
  background-size: 0% 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  a:hover .p-top-news__main-ttl span {
    background-size: 200% 1px;
  }
}
.p-top-news__more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .p-top-news__more {
    margin-left: auto;
  }
}
.p-top-reason:before {
  background: #f4f0ec;
}
.p-top-reason:after {
  background: #e9e2da;
}
.p-top-reason__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-reason__list {
    gap: 15px;
  }
}
@media screen and (max-width: 413px) {
  .p-top-reason__list {
    grid-auto-columns: 1fr;
  }
}
.p-top-reason__item {
  padding-block: 80px;
  border: 6px solid #f4f0ec;
  background: #fff;
  border-radius: 250px;
  text-align: center;
}
.p-top-reason__item-ttl {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  line-height: 1;
}
.p-top-reason__item-ttl span {
  color: #ec7065;
  font-size: var(--fz2);
}
.p-top-reason__item-ttl small {
  font-size: var(--fz-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  .p-top-reason__item-ttl small {
    font-size: var(--fz-3);
  }
}
.p-top-reason__img {
  width: 33%;
  margin-block: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 413px) {
  .p-top-reason__img {
    width: 40%;
    margin-block: 20px;
  }
}
.p-top-reason__txt {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 413px) {
  .p-top-reason__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 0;
  }
}
.p-top-reason__txt-s {
  font-size: var(--fz1);
}
@media screen and (max-width: 767px) {
  .p-top-reason__txt-s {
    font-size: var(--fz0);
  }
}
@media screen and (max-width: 413px) {
  .p-top-reason__txt-s {
    width: 100%;
  }
}
.p-top-reason__txt-m {
  font-size: var(--fz3);
}
.p-top-reason__txt-l {
  color: #ec7065;
  font-size: var(--fz5);
}
.p-top-reason__btn {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-reason__btn {
    padding-top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn {
    padding-top: 50px;
  }
}
.p-top-reason__btn .c-btn {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-reason__btn .c-btn {
    gap: 20px;
    height: 90px;
    padding-right: 20px;
    padding-left: 40px;
    border-radius: 45px;
    font-size: var(--fz1);
  }
}
@media screen and (max-width: 575px) {
  .p-top-reason__btn .c-btn {
    gap: 10px;
    padding-left: 30px;
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn .c-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    height: 100px;
    border-radius: 50px;
    font-size: var(--fz2);
  }
  .p-top-reason__btn .c-btn br {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-top-reason__btn .c-btn {
    padding-left: 70px;
    padding-right: 40px;
  }
}
.p-top-reason__btn-baloon {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 3px;
  border: 4px solid #f4f0ec;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-reason__btn-baloon {
    height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn-baloon {
    height: 64px;
    font-size: var(--fz1);
  }
}
@media screen and (max-width: 575px) {
  .p-top-reason__btn-baloon {
    font-size: var(--fz-1);
  }
}
.p-top-reason__btn-baloon:before, .p-top-reason__btn-baloon:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
}
.p-top-reason__btn-baloon:before {
  bottom: -16px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #f4f0ec;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}
.p-top-reason__btn-baloon:after {
  bottom: 0;
  width: 50px;
  height: 15px;
  margin-left: -25px;
  background: #fff;
}
.p-top-reason__btn-baloon span {
  position: relative;
  z-index: 15;
}
.p-top-reason__btn-txt {
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-reason__btn-txt {
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn-txt:first-letter {
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-reason__btn-icon {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn-icon {
    position: relative;
    width: 70px;
    aspect-ratio: 1/1;
    margin-right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn-icon span {
    position: absolute;
    top: 52%;
    left: 50%;
    font-size: var(--fz4);
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    line-height: 0.8;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-top-reason__btn-icon svg {
  width: 100%;
  fill: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn .c-icon-arrow {
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-reason__btn .c-icon-arrow svg {
    width: 20px;
  }
}
.p-top-customer {
  overflow: hidden;
}
.p-top-customer:before {
  background: #e9e2da;
}
.p-top-customer:after {
  background: #fff;
}
.p-top-customer .splide__track {
  overflow: visible;
}
.p-top-customer__item {
  position: relative;
  overflow: hidden;
  border-radius: min(30px, 3vw);
}
@media screen and (max-width: 767px) {
  .p-top-customer__item {
    width: 50vw;
  }
}
@media screen and (min-width: 768px) {
  .p-top-customer__item {
    width: 400px;
  }
}
.p-top-customer__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.p-top-customer__img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.p-top-customer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-customer__txt {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-align: right;
  line-height: 1;
}
.p-top-customer__txt-name {
  font-size: var(--fz-1);
}
.p-top-customer__txt-car {
  font-size: 1, 125rem;
}
.p-top-ranking:before {
  background: #fff;
}
.p-top-ranking:after {
  background: #f4f0ec;
}
.p-top-ranking__wrap {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.p-top-ranking__clm {
  position: relative;
  padding-inline: 20px;
}
.p-top-ranking__clm:after {
  content: "";
  display: block;
  position: absolute;
  top: var(--fz2);
  left: 0;
  width: 100%;
  height: calc(100% - var(--fz2));
  background: #fff;
  border-radius: min(30px, 3vw);
}
.p-top-ranking__hd {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8em;
  height: 2em;
  margin-inline: auto;
  margin-bottom: 10px;
  border-radius: 1em;
  background: #ec7065;
  color: #fff;
  font-size: var(--fz2);
  font-weight: 700;
  line-height: 1;
  z-index: 10;
}
.p-top-ranking__item {
  position: relative;
  z-index: 10;
}
.p-top-ranking__item:not(:last-child) {
  border-bottom: 1px solid #eae8e4;
}
.p-top-ranking__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 5px;
  padding-block: 20px;
}
.p-top-ranking__body {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
  padding-bottom: 5px;
}
.p-top-ranking__maker {
  margin-bottom: 5px;
  font-size: var(--fz-3);
  font-weight: 500;
  line-height: 1;
}
.p-top-ranking__name {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
.p-top-ranking__price {
  margin-top: auto;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-align: right;
  line-height: 1;
  letter-spacing: 0;
}
.p-top-ranking__price em {
  font-size: 2.1875rem;
}
.p-top-ranking__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46%;
}
.p-top-ranking__img span {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
}
.p-top-ranking__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-ranking__num {
  position: absolute;
  top: 15px;
  left: -5px;
  width: 50px;
}
.p-top-safety:before {
  background: #f4f0ec;
}
.p-top-safety:after {
  background: #e9e2da;
}
.p-top-safety__wrap {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-safety__wrap {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-safety__wrap {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-safety__wrap {
    gap: 60px;
  }
}
.p-top-safety__item {
  position: relative;
  padding-inline: 20px;
  padding-bottom: min(40px, 8vw);
  text-align: center;
}
.p-top-safety__item:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--fz1) * 1.25);
  left: 0;
  width: 100%;
  height: calc(100% - var(--fz1) * 1.25);
  background: #fff;
  border-radius: min(30px, 3vw);
}
.p-top-safety__hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 70%;
  height: 2.5em;
  margin-inline: auto;
  margin-bottom: 10px;
  padding-inline: 1em;
  border-radius: 10px;
  background: #ec7065;
  color: #fff;
  font-size: var(--fz1);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-top-safety__hd {
    font-size: var(--fz-1);
  }
}
.p-top-safety__body {
  position: relative;
  z-index: 10;
}
.p-top-safety__ttl {
  margin-top: 1em;
  margin-bottom: 0.6em;
  font-size: var(--fz3);
  line-height: 1;
}
.p-top-safety__img {
  text-align: center;
}
.p-top-safety__img img {
  height: 120px;
}
.p-top-safety__txt {
  margin-top: 1.5em;
  font-size: var(--fz1);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 575px) {
  .p-top-safety__txt {
    font-size: var(--fz0);
  }
}
.p-top-safety .c-btn {
  margin-top: min(40px, 5vw);
}
.p-top-pickup:before {
  background: #e9e2da;
}
.p-top-pickup:after {
  background: #f4f0ec;
}
.p-top-pickup__wrap {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-pickup__wrap {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-pickup__wrap {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-pickup__wrap {
    gap: 60px;
  }
}
.p-top-pickup__item {
  position: relative;
  padding-inline: 20px;
  padding-inline: min(40px, 5vw);
  padding-block: min(50px, 6vw);
  background: #fff;
  border-radius: min(30px, 3vw);
}
.p-top-pickup__hd {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 1em;
  font-size: var(--fz2);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.p-top-pickup__hd:after {
  content: attr(data-en);
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-top-pickup__hd:after {
    font-size: var(--fz-3);
  }
}
.p-top-pickup__txt {
  margin-top: min(30px, 4vw);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-pickup__txt {
    margin-inline: 1em;
  }
}
.p-top-pickup .c-btn {
  margin-top: min(30px, 4vw);
}
.p-top-faq:before {
  background: #f4f0ec;
}
.p-top-faq:after {
  background: #e9e2da;
}
.p-top-faq__list {
  max-width: 900px !important;
  margin-inline: auto;
}
.p-top-shop:before {
  background: #e9e2da;
}
.p-top-shop:after {
  background: #fff;
}
.p-top-shop__wrap {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-shop__wrap {
    gap: 8vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__wrap {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 60px auto;
        grid-template-areas: "map info" "parking parking";
    gap: 60px 0;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-shop__wrap {
    gap: 80px 0;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__info {
    grid-area: info;
    padding-left: 3vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-shop__info {
    padding-left: 60px;
  }
}
.p-top-shop__info th, .p-top-shop__info td {
  padding-inline: 0;
}
.p-top-shop__info th {
  min-width: 0;
  padding-right: 2em;
  background: none;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .p-top-shop__map {
    position: relative;
    grid-area: map;
  }
}
@media screen and (max-width: 991px) {
  .p-top-shop__map-inner {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__map-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
  }
}
.p-top-shop__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .p-top-shop__parking {
    grid-area: parking;
  }
}
@media screen and (min-width: 992px){
  .p-top-shop__info {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-top-shop__map {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-top-shop__parking {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.p-top-shop__parking-wrap {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-shop__parking-wrap {
    gap: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__parking-wrap {
    -ms-grid-columns: 1fr 3vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-shop__parking-wrap {
    gap: 40px 60px;
  }
}
.p-top-shop__parking-img {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-shop__parking-img {
    gap: 3vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__parking-img {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
    -ms-grid-columns: 1fr 3vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-shop__parking-img {
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-shop__parking + .c-btn-list {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
}
.p-top-instagram:before {
  background: #fff;
}
.p-top-instagram:after {
  background: #f4f0ec;
}
.p-top-instagram .p-page-container {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 992px) {
  .p-top-instagram .p-page-container {
    -ms-grid-columns: auto 40px 1fr;
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-instagram .p-page-container {
    gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  .p-top-instagram__header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .p-top-instagram__header .c-link-txt {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-top-instagram__header .c-link-txt {
    margin-top: 40px;
  }
}
.p-top-instagram__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 1em;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz2);
  text-transform: uppercase;
  line-height: 1;
}
.p-top-instagram__ttl svg {
  width: 1.6em;
  fill: #ec7065;
}
@media screen and (max-width: 991px) {
  .p-top-instagram__main .c-link-txt {
    margin-top: 30px;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-top-instagram__main .c-link-txt {
    display: none;
  }
}

.p-page-body:has(.p-carlineup-sort) {
  padding-top: 0;
}

body:has(.p-carlineup):has(.p-page-body--single) .l-footer:before {
  background: #fff;
}

.p-carlineup .p-page-body--single {
  padding-bottom: 0;
}
.p-carlineup-sort {
  margin-bottom: min(80px, 10vw);
  background: #fff;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort {
    padding-top: min(40px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .p-carlineup-sort {
    padding-top: 80px;
  }
}
.p-carlineup-sort .p-page-container {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort .p-page-container {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__box:has(input:checked) .p-carlineup-sort__ttl-label i:after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .p-carlineup-sort__box:not(:last-child) {
    padding-bottom: 20px;
  }
}
.p-carlineup-sort__ttl {
  font-size: var(--fz-1);
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort__ttl {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__ttl-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    line-height: 1;
  }
  .p-carlineup-sort__ttl-label i {
    position: relative;
    width: 20px;
    height: 20px;
    background: #5c4420;
    border-radius: 100%;
  }
  .p-carlineup-sort__ttl-label i:before, .p-carlineup-sort__ttl-label i:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    margin-top: -1px;
    margin-left: -5px;
    background: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  .p-carlineup-sort__ttl-label i:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-carlineup-sort__body {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__body {
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
.p-carlineup-sort__body-inner {
  overflow: hidden;
}
.p-carlineup-sort__body-check {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__body:has(input:checked) {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
.p-carlineup-sort__list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__list {
    padding-top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__list--maker {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort__list--maker {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
.p-carlineup-sort__list--maker img {
  width: 40px;
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__list--type {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort__list--type {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-carlineup-sort__list--type img {
  width: 80px;
}
@media screen and (max-width: 991px) {
  .p-carlineup-sort__list--price {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-sort__list--price {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-carlineup-sort__label {
  cursor: pointer;
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  padding-block: 15px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
.p-carlineup-sort__label:before, .p-carlineup-sort__label:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-carlineup-sort__label:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #eae8e4;
}
@media (hover: hover) and (pointer: fine) {
  .p-carlineup-sort__label:hover:before {
    border-width: 2px;
  }
}
.p-carlineup-sort__label:has(input:checked):before {
  border: 2px solid #ec7065;
}
.p-carlineup-sort__label input {
  display: none;
}
.p-carlineup-sort__txt {
  font-size: var(--fz-1);
  font-weight: 500;
  line-height: 1;
}
[class$="--price"] .p-carlineup-sort__txt {
  font-size: var(--fz0);
}
.p-carlineup-sort__btn {
  margin-top: 30px;
  padding-block: 20px;
  border-top: 1px solid #eae8e4;
}
.p-carlineup-sort__btn button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-inline: auto;
  padding: 0;
  border: none;
  background: #5c4420;
  color: #fff;
  font-size: var(--fz0);
}
@media screen and (max-width: 575px) {
  .p-carlineup-sort__btn button {
    width: 160px;
    height: 50px;
    border-radius: 25px;
  }
}
@media screen and (min-width: 576px) {
  .p-carlineup-sort__btn button {
    width: 200px;
    height: 60px;
    border-radius: 30px;
  }
}
.p-carlineup-sort__btn button svg {
  width: 20px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.p-carlineup-count {
  margin-bottom: 1em;
  color: #ec7065;
  font-size: var(--fz2);
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.p-carlineup-count span {
  display: inline-block;
  margin-top: 2px;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz5);
  line-height: 0.8;
}
.p-carlineup-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.p-carlineup-list__link {
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 100%;
  padding-bottom: 30px;
  padding-top: 0;
  background: #fff;
  border-radius: min(30px, 3vw);
}
.p-carlineup-list__link:before {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: min(30px, 3vw);
  border: 2px solid #5c4420;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-carlineup-list__link:hover:before {
  opacity: 1;
}
.p-carlineup-list__img {
  width: 100%;
  aspect-ratio: 3/2;
}
.p-carlineup-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-carlineup-list__body {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  padding-top: 1em;
  border-top: 1px solid #eae8e4;
}
@media screen and (max-width: 991px) {
  .p-carlineup-list__body {
    padding-inline: 3vw;
  }
}
@media screen and (max-width: 575px) {
  .p-carlineup-list__body {
    padding-inline: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-list__body {
    padding-inline: 30px;
  }
}
.p-carlineup-list__maker {
  font-size: var(--fz-2);
  font-weight: 500;
  line-height: 1;
}
.p-carlineup-list__name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.p-carlineup-list__price {
  color: #ec7065;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: right;
  line-height: 1;
}
.p-carlineup-list__price span {
  margin-inline: 3px;
  font-size: var(--fz3);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0;
}
.p-carlineup-list__price small {
  font-size: var(--fz-1);
}
.p-carlineup-cta {
  margin-top: min(80px, 10vw);
  text-align: center;
}
.p-carlineup-cta__txt {
  font-weight: 600;
}
@media screen and (min-width: 576px) {
  .p-carlineup-cta__txt {
    font-size: var(--fz1);
  }
}
.p-carlineup-cta__txt em {
  color: #ec7065;
  font-size: var(--fz3);
}
@media screen and (max-width: 575px) {
  .p-carlineup-cta__txt small {
    font-size: var(--fz-2);
  }
}
@media screen and (min-width: 576px) {
  .p-carlineup-cta__txt small {
    font-size: var(--fz-1);
  }
}
.p-carlineup-cta__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: 0.5em;
  margin-inline: auto;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz5);
  font-weight: 500;
  line-height: 1;
}
.p-carlineup-cta__tel svg {
  width: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  fill: #ec7065;
}
.p-carlineup-single {
  padding-bottom: min(140px, 15vw);
}
.p-carlineup-detail {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-carlineup-detail {
    gap: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-detail {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-carlineup-detail {
    gap: 60px;
  }
}
.p-carlineup-detail__head {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  font-size: var(--fz4);
  font-weight: 700;
}
.p-carlineup-detail__head-maker {
  font-size: var(--fz1);
  line-height: 1;
}
.p-carlineup-detail__head-name {
  line-height: 1.3;
}
.p-carlineup-detail__main {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 991px) {
  .p-carlineup-detail__main {
    gap: min(40px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-detail__main {
    -ms-grid-columns: 52% 40px 1fr;
    grid-template-columns: 52% 1fr;
    gap: 40px;
  }
}
.p-carlineup-detail__img {
  overflow: hidden;
  border-radius: min(30px, 3vw);
}
.p-carlineup-detail__info .c-sentence-note {
  margin-top: 15px;
}
.p-carlineup-detail__info .c-sentence-note li {
  font-weight: 500;
  line-height: 1.3;
}
.p-carlineup-detail__info .c-link-external {
  margin-top: 15px;
  line-height: 1;
}
.p-carlineup-detail__contract {
  margin-bottom: 15px;
  color: #ec7065;
  font-size: var(--fz3);
  font-weight: 600;
  line-height: 1;
}
.p-carlineup-detail__price {
  color: #ec7065;
  font-weight: 600;
  line-height: 1;
}
.p-carlineup-detail__price em {
  display: inline-block;
  margin-inline: 5px;
  font-size: var(--fz4);
  letter-spacing: 0;
  line-height: 1;
}
.p-carlineup-detail__price small {
  font-size: var(--fz-1);
}
.p-carlineup-detail__message {
  color: #ec7065;
  font-size: var(--fz2);
  font-weight: 600;
  line-height: 1;
}
.p-carlineup-detail__contact {
  margin-top: 30px;
  background: #e9e2da;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-carlineup-detail__contact {
    padding: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-detail__contact {
    padding: 30px;
  }
}
.p-carlineup-detail__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 0.5em;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz4);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-carlineup-detail__tel svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #ec7065;
}
.p-carlineup-detail__benefits {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-carlineup-detail__benefits {
    gap: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-carlineup-detail__benefits {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-carlineup-detail__benefits {
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .p-carlineup-detail__benefits {
    gap: 60px;
  }
}
.p-carlineup-detail__benefits li {
  text-align: center;
}
.p-carlineup-point__video {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  margin-inline: auto;
}
.p-carlineup-point__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-carlineup-contact {
  text-align: center;
}
.p-carlineup-contact .c-sentence {
  font-weight: 500;
  text-align: center;
}
.p-carlineup-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: 0.5em;
  margin-inline: auto;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz5);
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.p-carlineup-contact__tel svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #ec7065;
}
@media screen and (min-width: 768px) {
  .p-carlineup-contact .c-btn {
    height: 80px;
    padding-inline: 50px;
    border-radius: 40px;
    font-size: var(--fz1);
  }
}
@media screen and (min-width: 1200px) {
  .p-carlineup-contact .c-btn {
    height: 100px;
    padding-inline: 60px;
    border-radius: 50px;
    font-size: var(--fz2);
  }
}
.p-carlineup-safety:before {
  background: #e9e2da;
}
.p-carlineup-safety:after {
  background: #f4f0ec;
}

body:has(.p-customer) .l-footer:before {
  background: #fff;
}
body:has(.p-customer) .p-top-shop:before {
  background: #f4f0ec;
}
body:has(.p-customer) .p-page-body {
  padding-bottom: 0;
}

.p-customer-intro__copy {
  margin-bottom: 0.5em;
  font-size: var(--fz3);
  font-weight: 700;
  text-align: center;
}
.p-customer-intro__txt {
  margin-bottom: 0 !important;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-customer-intro__txt {
    font-size: var(--fz1);
  }
}
@media screen and (min-width: 992px) {
  .p-customer-intro__txt {
    text-align: center;
  }
}
.p-customer-intro__attention {
  margin-top: 1em;
  font-size: var(--fz-2);
}
@media screen and (min-width: 992px) {
  .p-customer-intro__attention {
    text-align: center;
  }
}
.p-customer-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(40px, 5vw);
  margin-top: min(80px, 10vw);
}
.p-customer-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
.p-customer-list__img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
.p-customer-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-customer-list__comment {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: min(30px, 5vw);
  border-radius: min(30px, 3vw);
  background: #fff;
}
.p-customer-list__comment:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -5px;
  margin-left: -10px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-customer-list__txt {
  margin-bottom: 10px;
  font-weight: 500;
}
.p-customer-list__txt + [class$=name] {
  margin-top: auto;
  text-align: right;
}
.p-customer-list__name {
  font-size: var(--fz-1);
}

.p-maintenance .p-page-body {
  padding: 0;
}
.p-maintenance .p-page-breadcrumbs {
  width: auto;
  margin: 0;
  margin-inline: min(40px, 5vw);
  margin-top: 30px;
}

.maint {
  padding-bottom: min(40px, 5vw);
}
.maint p {
  font-size: 16px;
}
.maint .section {
  padding-top: min(50px, 6vw);
  padding-bottom: min(100px, 10vw);
}
.maint .section__body {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.maint .section__heading {
  color: #5c4420;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .maint .section__heading {
    font-size: 26px;
  }
}
@media screen and (min-width: 576px) {
  .maint .section__heading {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .maint .section__heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  .maint .section__heading {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .maint-lead_txt {
    text-align: center;
  }
}
.maint .txt--small {
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .maint .txt--small {
    font-size: 10px;
  }
}
.maint-bnr {
  margin-top: min(5vw, 50px);
  text-align: center;
}
.maint-bnr a {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-bnr a:hover {
  opacity: 0.7;
}
.maint-kv {
  padding-block: min(6vw, 60px);
  background: #faf3e1;
}
.maint-kv__wrap {
  position: relative;
  padding-inline: min(5vw, 50px);
}
.maint-kv__main {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .maint-kv__main {
    margin-bottom: 30px;
    text-align: center;
  }
}
.maint-kv__main_inner {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .maint-kv__main_inner {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__main_inner {
    width: 50%;
    padding-right: min(3.9vw, 90px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__slide > ul {
    height: 100%;
    margin: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__slide .slick-list, .maint-kv__slide .slick-track {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.maint-kv__slide .slick-dots {
  bottom: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.maint-kv__slide .slick-dots li {
  line-height: 0;
  width: auto;
  height: auto;
}
.maint-kv__slide .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.maint-kv__slide .slick-dots li button:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5c4420;
  border-radius: 100%;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-kv__slide .slick-dots li button:hover:before {
  opacity: 1;
}
.maint-kv__slide .slick-dots li.slick-active button:before {
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .maint-kv__ttl {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 28vw auto;
    grid-template-columns: 28vw auto;
  }
  .maint-kv__ttl span {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 576px) {
  .maint-kv__ttl {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__ttl {
    grid-area: auto;
  }
}
@media screen and (min-width: 576px) {
  .maint-kv__ttl .maint-kv__icon-campaign {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .maint-kv .maint-kv__slide + .maint-kv__icon-campaign {
    display: none;
  }
}
@media screen and (max-width: 413px) {
  .maint-kv__num {
    max-width: 300px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 576px) {
  .maint-kv__num {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__num {
    grid-area: auto;
  }
}
@media screen and (min-width: 576px) {
  .maint-kv__point {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__point {
    grid-area: auto;
  }
}
.maint-kv__icon-campaign {
  position: absolute;
  z-index: 10;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .maint-kv__icon-campaign {
    top: 15vw;
    right: 2vw;
    width: 26vw;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@media screen and (max-width: 575px) {
  .maint-kv__icon-campaign {
    top: 0;
    left: 0;
    width: 30vw;
    -webkit-transform: rotate(-10deg) translate(-3vw, -4vw);
            transform: rotate(-10deg) translate(-3vw, -4vw);
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 768px) {
  .maint-kv__icon-campaign {
    top: 0;
    left: 50%;
    width: 180px;
    -webkit-transform: rotate(10deg) translate(calc(-3.9vw - 20px), -20%);
            transform: rotate(10deg) translate(calc(-3.9vw - 20px), -20%);
  }
}
@media screen and (min-width: 1200px) {
  .maint-kv__icon-campaign {
    width: 250px;
    -webkit-transform: rotate(10deg) translate(-100px, -15%);
            transform: rotate(10deg) translate(-100px, -15%);
  }
}
.maint-kv__icon-campaign img {
  -webkit-animation: kv-icon 2s ease-out infinite;
          animation: kv-icon 2s ease-out infinite;
}
@-webkit-keyframes kv-icon {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes kv-icon {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.maint-kv_price {
  padding-inline: min(5vw, 50px);
  padding-bottom: min(5vw, 50px);
  background: #fff;
}
.maint-kv_price .section__body {
  margin-top: 0;
}
.maint-kv_price__ttl {
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.maint-kv_price__attention {
  margin-top: 5px;
  font-size: 11px !important;
}
@media screen and (max-width: 575px) {
  .maint-kv_price__attention {
    font-size: 10px !important;
  }
}
@media screen and (min-width: 1200px) {
  .maint-kv_price__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.maint-kv_price__list {
  display: -ms-grid;
  display: grid;
  gap: 5px 0;
}
@media screen and (max-width: 767px) {
  .maint-kv_price__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .maint-kv_price__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1199px) {
  .maint-kv_price__pay {
    overflow: hidden;
    margin-top: 10px;
    background: #e8ebf4;
    border-radius: 5px;
    text-align: center;
  }
}
@media screen and (min-width: 576px) {
  .maint-kv_price__pay {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .maint-kv_price__pay {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 240px;
    margin-top: 0;
  }
}
.maint-campaign {
  padding-block: min(5vw, 50px);
  padding-inline: min(5vw, 50px);
  background: #5c4420;
  text-align: center;
}
.maint-campaign .section__body {
  margin-top: 0;
}
.maint-campaign h2 {
  margin-bottom: 0.8em;
  color: #fff !important;
  line-height: 1;
}
.maint-campaign h2 small {
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .maint-campaign h2 small {
    display: block;
    margin-top: 5px;
  }
}
.maint-campaign ul {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .maint-campaign ul {
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .maint-campaign ul {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.maint-strength_list {
  display: -ms-grid;
  display: grid;
  gap: 70px 30px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .maint-strength_list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .maint-strength_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
.maint-strength_list__item {
  position: relative;
  padding: min(3.8vw, 30px);
  padding-top: 60px;
  background: #fff;
  -webkit-box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .maint-strength_list__item:nth-of-type(1), .maint-strength_list__item:nth-of-type(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 575px) {
  .maint-strength_list__item:nth-of-type(1), .maint-strength_list__item:nth-of-type(3) {
    grid-column: auto;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(1), .maint-strength_list__item:nth-of-type(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
  }
}
@media screen and (max-width: 767px) {
  .maint-strength_list__item:nth-of-type(2), .maint-strength_list__item:nth-of-type(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 575px) {
  .maint-strength_list__item:nth-of-type(2), .maint-strength_list__item:nth-of-type(4) {
    grid-column: auto;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(2), .maint-strength_list__item:nth-of-type(4) {
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-column: 4/7;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(5), .maint-strength_list__item:nth-of-type(8), .maint-strength_list__item:nth-of-type(11) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(6), .maint-strength_list__item:nth-of-type(9), .maint-strength_list__item:nth-of-type(12) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(7), .maint-strength_list__item:nth-of-type(10), .maint-strength_list__item:nth-of-type(13) {
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-column: 5/7;
  }
}
.maint-strength_list__item i {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -40px;
  padding-bottom: 10px;
  border-radius: 100%;
  background: #fff;
}
.maint-strength_list__item i img {
  width: 60px;
  height: 60px;
}
.maint-strength_list__item h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.8em;
  color: #ec7065;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .maint-strength_list__item h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 576px) {
  .maint-strength_list__item h3 {
    height: 2.6em;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .maint-strength_list__item h3 {
    font-size: 24px;
  }
}
.maint-strength_list__item h3 span, .maint-strength_list__item h3 small {
  width: 100%;
  display: block;
}
.maint-strength_list__item h3 small {
  font-size: min(3vw,16px);
}
.maint-strength_list__item:nth-of-type(-n + 4) h3 {
  margin-bottom: 1em;
}
@media screen and (max-width: 575px) {
  .maint-strength_list__item:nth-of-type(-n + 4) h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 576px) {
  .maint-strength_list__item:nth-of-type(-n + 4) h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .maint-strength_list__item:nth-of-type(-n + 4) h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 992px) {
  .maint-strength_list__item:nth-of-type(-n + 4) h3 {
    font-size: 30px;
  }
}
.maint-strength_list__item figure {
  margin-bottom: 1.5em;
}
.maint-strength_list__item p + figure {
  margin-top: 10px;
  margin-bottom: 0;
}
.maint-staff .section__heading {
  margin-bottom: 1em;
}
.maint-staff_list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .maint-staff_list {
    gap: 20px;
  }
}
@media screen and (min-width: 414px) {
  .maint-staff_list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .maint-staff_list {
    gap: 40px 30px;
  }
}
@media screen and (min-width: 992px) {
  .maint-staff_list {
    -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 45px;
  }
}
.maint-staff_list__item {
  cursor: pointer;
  background: #fff;
  -webkit-box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
  .maint-staff_list__item:hover figure:before {
    opacity: 0.5;
  }
  .maint-staff_list__item:hover .maint-staff__icon {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    background: #493619;
  }
}
.maint-staff_list figure {
  position: relative;
}
.maint-staff_list figure:before {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-staff__cnt {
  position: relative;
  padding: 30px;
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .maint-staff__cnt {
    padding: 30px 20px;
  }
}
.maint-staff__post {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #5c4420;
  color: #fff;
  font-size: var(--fz-1);
  font-weight: 600;
  line-height: 1;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .maint-staff__post {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 413px) {
  .maint-staff__post {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .maint-staff__post {
    padding-inline: 30px;
  }
}
.maint-staff__name {
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .maint-staff__name {
    font-size: 20px !important;
  }
}
@media screen and (min-width: 576px) {
  .maint-staff__name {
    font-size: 22px !important;
  }
}
.maint-staff__en {
  margin-top: 1em;
  color: #ec7065;
  font-weight: 500;
  font-size: 10px !important;
  line-height: 1;
}
.maint-staff__icon {
  position: relative;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 100%;
  background: #5c4420;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-staff__icon:before, .maint-staff__icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  margin-left: -7px;
}
.maint-staff__icon:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.maint-staff__btn {
  text-align: center;
}
@media screen and (max-width: 575px) {
  .maint-staff__btn {
    margin-top: 30px;
  }
}
@media screen and (min-width: 576px) {
  .maint-staff__btn {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .maint-staff__btn {
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .maint-staff__btn {
    margin-top: 60px;
  }
}
.maint-staff__btn a {
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-price .section__heading {
  margin-bottom: 1em;
}
.maint-price h3 {
  margin-top: 3em;
  margin-bottom: 1em;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .maint-price h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 576px) {
  .maint-price h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .maint-price h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 992px) {
  .maint-price h3 {
    font-size: 24px;
  }
}
.maint-price h2 + h3 {
  margin-top: 0;
}
.maint-price__table {
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 799px) {
  .maint-price__table:before {
    content: "※横にスクロールしてご覧いただけます";
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
  }
}
.maint-price__table:-webkit-scrollbar {
  height: 5px;
}
.maint-price__table:-webkit-scrollbar-track {
  background: #F1F1F1;
}
.maint-price__table:-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.maint-price__table--check {
  border-bottom: 1px solid #c8c8c8;
}
.maint-price table {
  width: 100%;
  background: #fff;
}
.maint-price table em {
  font-size: 24px;
}
@media screen and (max-width: 413px) {
  .maint-price table em {
    font-size: 20px;
  }
}
.maint-price table th, .maint-price table td {
  padding: 15px 10px;
  border: none;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (max-width: 413px) {
  .maint-price table th, .maint-price table td {
    padding: 10px;
  }
}
.maint-price table td {
  border-right: 1px solid #c8c8c8;
  border-top: 1px solid #c8c8c8;
  font-size: 16px;
}
@media screen and (max-width: 413px) {
  .maint-price table td {
    font-size: 14px;
  }
}
.maint-price table thead th {
  border-right: 1px solid #fff;
  background: #5c4420;
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 413px) {
  .maint-price table thead th {
    font-size: 16px;
  }
}
.maint-price table thead th:first-child {
  border-left: 1px solid #5c4420;
}
.maint-price table thead th:last-child {
  border-right: 1px solid #5c4420;
}
.maint-price table tbody tr:first-child td, .maint-price table tbody tr:first-child th {
  border-top: none;
}
.maint-price table tbody th {
  border-right: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
  border-top: 1px solid #c8c8c8;
  background: #f1e6d7;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.3;
}
.maint-price table tbody td {
  width: 180px;
}
.maint-price table tbody td small {
  font-size: 12px;
}
.maint-price table tfoot th, .maint-price table tfoot td {
  border-right: 1px solid #fff;
  background: #5c4420;
  color: #fff;
}
.maint-price table tfoot th {
  border-left: 1px solid #5c4420;
  line-height: 1.3;
}
.maint-price table tfoot td {
  border-top: none;
}
.maint-price table tfoot td:last-child {
  border-right: 1px solid #5c4420;
}
.maint-price__campaign {
  position: relative;
  margin-top: min(5vw, 30px);
  padding: min(5vw, 30px);
  border: 2px solid #5c4420;
  background: #fff;
}
.maint-price__campaign:after {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #5c4420 transparent;
}
.maint-price__campaign h4 {
  margin-bottom: 0.5em;
  color: #5c4420;
  font-size: 125%;
  line-height: 1;
}
.maint-price__campaign ul {
  display: -ms-grid;
  display: grid;
  margin-top: min(5vw, 30px);
}
@media screen and (max-width: 767px) {
  .maint-price__campaign ul {
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .maint-price__campaign ul {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.maint-flow__item {
  position: relative;
  padding: min(5vw, 30px);
  border: 3px solid #5c4420;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .maint-flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.maint-flow__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.maint-flow__item:not(:last-of-type):before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #5c4420 transparent transparent transparent;
}
@media screen and (max-width: 991px) {
  .maint-flow__head {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .maint-flow__head {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.maint-flow__head h3, .maint-flow__head i {
  font-weight: 700;
  line-height: 1;
}
.maint-flow__head i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8em;
  height: 36px;
  margin-bottom: 1em;
  background: #5c4420;
  color: #fff;
  font-size: 14px;
  border-radius: 18px;
}
@media screen and (max-width: 991px) {
  .maint-flow__head i {
    margin-inline: auto;
  }
}
.maint-flow__head h3 {
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .maint-flow__head h3 {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 992px) {
  .maint-flow__main {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .maint-flow__main.grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 150px;
    grid-template-columns: 1fr 150px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .maint-flow__main.grid {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .maint-flow__main.grid img {
    padding-top: 10px;
    margin: 0 auto;
    display: block;
    height: 150px;
  }
}
.maint-flow__reserve {
  margin-top: 20px;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .maint-flow__reserve {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .maint-flow__reserve {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .maint-flow__reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.maint-flow__reserve-tel .text-tel {
  margin-top: 0;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz4);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .maint-flow__reserve-tel .text-tel {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .maint-flow__reserve-tel .text-tel {
    text-align: left;
  }
}
.maint-flow__reserve-tel .text-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ec7065;
  text-decoration: none;
  font-weight: 600;
}
.maint-flow__reserve-tel .text-tel a span {
  letter-spacing: 0.05em;
}
.maint-flow__reserve-tel .text-tel svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #ec7065;
}
.maint-flow__reserve-time {
  margin-top: 1em;
  font-size: 12px !important;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .maint-flow__reserve-time {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .maint-flow__reserve-time {
    text-align: left;
  }
}
.maint-flow__reserve-time .attention {
  color: #ca0e15;
}
@media screen and (min-width: 768px) {
  .maint-flow__reserve-btn {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    max-width: 340px;
  }
}
.maint-flow__reserve-btn a {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .maint-flow__reserve-btn a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .maint-flow__reserve-btn a {
    font-size: 18px;
  }
}
.maint-faq .section__heading {
  margin-bottom: 1em;
}
.maint-shop .section__heading {
  margin-bottom: 1em;
}
.maint-shop .c-title-1ry {
  display: none;
}
.maint-shop th, .maint-shop td {
  background: none;
}
.maint-parking .text-heading {
  width: 100%;
  margin-bottom: 1em;
  text-align: left;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .maint-parking .text-heading {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .maint-parking {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .maint-parking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.maint-parking__txt {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .maint-parking__txt {
    width: 50%;
  }
}
.maint-parking__img {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .maint-parking__img {
    width: calc(50% - 40px);
  }
}
.maint-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 60px 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 999999;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .maint-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.maint-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.maint-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #f4f0ec;
}
.maint-modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 575px) {
  .maint-modal__content {
    height: 100%;
  }
}
.maint-modal_inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 575px) {
  .maint-modal_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
  }
}
.maint-modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 20;
  -webkit-transform: translateY(calc(-100% - 15px));
          transform: translateY(calc(-100% - 15px));
}
.maint-modal__close-btn:before, .maint-modal__close-btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 141.421356237%;
  height: 2px;
  left: 0;
  background: #5c4420;
}
.maint-modal__close-btn:before {
  top: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.maint-modal__close-btn:after {
  bottom: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.maint-modal__close-btn:hover {
  opacity: 0.8;
}
.maint-modal .swiper-button-prev, .maint-modal .swiper-button-next {
  top: inherit;
  bottom: 0;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .maint-modal .swiper-button-prev, .maint-modal .swiper-button-next {
    position: fixed;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@media screen and (min-width: 768px) {
  .maint-modal .swiper-button-prev, .maint-modal .swiper-button-next {
    -webkit-transform: translateY(calc(100% + 15px));
            transform: translateY(calc(100% + 15px));
  }
}
.maint-modal .swiper-button-prev:after, .maint-modal .swiper-button-next:after {
  color: #5c4420;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .maint-modal .swiper-button-prev {
    left: 5%;
  }
}
@media screen and (min-width: 768px) {
  .maint-modal .swiper-button-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .maint-modal .swiper-button-next {
    right: 5%;
  }
}
@media screen and (min-width: 768px) {
  .maint-modal .swiper-button-next {
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .maint-modal .swiper {
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .maint-modal .swiper-slide {
    overflow: auto;
  }
}
.maint-profile__box {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .maint-profile__box {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .maint-profile__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
.maint-profile__box dl {
  margin-top: 2em;
}
.maint-profile__box dt {
  margin-bottom: 5px;
  color: #666;
  font-size: 11px;
  line-height: 1;
}
.maint-profile__box dd {
  margin-bottom: 15px;
  font-size: 16px;
}
.maint-profile__box dd:last-child {
  margin-bottom: 0;
}
.maint-profile__blog {
  position: absolute;
  top: 0;
  right: 0;
  background: #ec7065;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.maint-profile__blog:hover {
  background: #5c4420;
}
.maint-profile__blog i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  padding-bottom: 3px;
}
.maint-profile__blog svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.maint-profile__blog span {
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
}
.maint-profile__post {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0.5em 1em;
  background: #5c4420;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.maint-profile__name {
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .maint-profile__name {
    font-size: 24px !important;
  }
}
@media screen and (min-width: 576px) {
  .maint-profile__name {
    font-size: 26px !important;
  }
}
.maint-profile__txt {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media screen and (max-width: 575px) {
  .maint-profile__img {
    width: 250px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 576px) {
  .maint-profile__img {
    width: 300px;
  }
}

.topic-path {
  padding-top: 0;
}

.layout-bottom-cta {
  height: 7.6rem;
}
@media screen and (max-width: 768px) {
  .layout-bottom-cta {
    height: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .cta-button__item {
    width: 100% !important;
  }
}
.cta-button__item a {
  width: 18rem;
  height: 5rem;
  border-radius: 25rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .cta-button__item a {
    width: 100%;
    height: 12rem;
    border-radius: 0;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-button__item a br {
    display: none;
  }
}

.p-assess .p-page-body {
  padding: 0;
}
.p-assess .p-page-breadcrumbs {
  width: auto;
  margin: 0;
  margin-inline: min(40px, 5vw);
  margin-top: 30px;
}

.assess {
  padding-bottom: min(40px, 5vw);
}
.assess p {
  font-size: 16px;
}
.assess .section {
  padding-top: min(50px, 6vw);
  padding-bottom: min(100px, 10vw);
}
.assess .section__body {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.assess .section__heading {
  margin-bottom: min(40px, 5vw);
  color: #5c4420;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .assess .section__heading {
    font-size: 26px;
  }
}
@media screen and (min-width: 576px) {
  .assess .section__heading {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .assess .section__heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  .assess .section__heading {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .assess-lead_txt {
    text-align: center;
  }
}
.assess .txt--small {
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .assess .txt--small {
    font-size: 10px;
  }
}
.assess .txt--sep {
  display: inline-block;
}
.assess-bnr {
  margin-top: min(5vw, 50px);
  text-align: center;
}
.assess-bnr a {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.assess-bnr a:hover {
  opacity: 0.7;
}
.assess-kv {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .assess-kv {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .assess-kv {
    background: url("/ageo-wp/wp-content/themes/ageo/assets/images/assess/hero-img.png") no-repeat center right;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .assess-kv {
    padding-block: 60px;
  }
}
.assess-kv__wrap {
  padding-inline: min(5vw, 50px);
}
.assess-kv__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
.assess-kv__main {
  display: -ms-grid;
  display: grid;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .assess-kv__main {
    font-size: 45%;
  }
}
@media screen and (max-width: 991px) {
  .assess-kv__main {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .assess-kv__main {
    max-width: 350px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .assess-kv__main {
    width: 50%;
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .assess-kv__main {
    gap: 40px;
  }
}
.assess-kv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 80px;
  margin-inline: auto;
  padding: 0 40px;
  border: 2px solid #5c4420;
  background: #5c4420;
  border-radius: 80px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 991px) {
  .assess-kv__btn {
    height: 70px;
    padding-inline: 30px;
    border-radius: 35px;
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .assess-kv__btn:hover {
    background: #fff;
    color: #5c4420;
  }
  .assess-kv__btn:hover svg {
    fill: #5c4420;
  }
}
.assess-kv__btn i {
  line-height: 0;
}
.assess-kv__btn svg {
  width: 30px;
  aspect-ratio: 1/1;
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .assess-kv__img {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .assess-kv__img {
    display: none;
  }
}
.assess-intro__ttl {
  display: -ms-grid;
  display: grid;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .assess-intro__ttl {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 991px) {
  .assess-intro__ttl {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .assess-intro__ttl {
    margin-bottom: 6.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .assess-intro__ttl {
    margin-bottom: 50px;
  }
}
.assess-intro__ttl-lead {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1.5em;
  padding-bottom: 15px;
  border-bottom: 2px solid #ec7065;
}
@media screen and (max-width: 1199px) {
  .assess-intro__ttl-lead {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .assess-intro__ttl-lead {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .assess-intro__ttl-lead {
    font-size: 4vw;
  }
}
@media screen and (max-width: 575px) {
  .assess-intro__ttl-lead {
    font-size: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .assess-intro__ttl-lead {
    font-size: 24px;
  }
}
.assess-intro__ttl-lead:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 1.5em;
  margin-left: 1px;
  background: #ec7065;
  -webkit-transform: translateY(70%) rotate(45deg);
          transform: translateY(70%) rotate(45deg);
}
.assess-intro__ttl-main {
  color: #ec7065;
}
@media screen and (max-width: 1199px) {
  .assess-intro__ttl-main {
    font-size: 5vw;
  }
}
@media screen and (max-width: 991px) {
  .assess-intro__ttl-main {
    font-size: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .assess-intro__ttl-main {
    font-size: 6.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .assess-intro__ttl-main {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .assess-intro__main {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .assess-intro__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.assess-intro__txt {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.assess-intro__txt p {
  font-weight: 700;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .assess-intro__txt p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 575px) {
  .assess-intro__txt p span {
    display: inline !important;
  }
}
@media screen and (min-width: 768px) {
  .assess-intro__txt p {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .assess-intro__txt p {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (min-width: 1200px) {
  .assess-intro__txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .assess-intro__img {
    width: 150px;
    margin-top: 30px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 575px) {
  .assess-intro__img {
    width: 100px;
  }
}
@media screen and (min-width: 992px) {
  .assess-intro__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.assess-reason__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .assess-reason__list {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .assess-reason__list {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .assess-reason__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .assess-reason__list {
    gap: 40px;
  }
}
.assess-reason__item {
  border-radius: 15px;
  background: #fff;
}
.assess-reason__item i {
  position: absolute;
  height: 120%;
  left: 15px;
  bottom: 0;
}
.assess-reason__item i img {
  width: auto;
  height: 100%;
}
.assess-reason__item-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  background: #ec7065;
  border-radius: 15px 15px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.assess-reason__item-ttl {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  padding-block: 20px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .assess-reason__item-ttl span:first-child {
    font-size: 12px;
  }
}
@media screen and (min-width: 576px) {
  .assess-reason__item-ttl span:first-child {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .assess-reason__item-ttl span:last-child {
    font-size: 22px;
  }
}
@media screen and (min-width: 576px) {
  .assess-reason__item-ttl span:last-child {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .assess-reason__item-ttl span:last-child {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .assess-reason__item-main {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .assess-reason__item-main {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .assess-reason__item-main {
    padding: 40px;
  }
}
.assess-reason__item-img {
  width: 150px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.assess-flow__item {
  position: relative;
  padding: min(5vw, 30px);
  border: 3px solid #5c4420;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .assess-flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.assess-flow__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.assess-flow__item:not(:last-of-type):before {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #5c4420 transparent transparent transparent;
}
@media screen and (max-width: 991px) {
  .assess-flow__head {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .assess-flow__head {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.assess-flow__head h3, .assess-flow__head i {
  font-weight: 700;
  line-height: 1;
}
.assess-flow__head i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8em;
  height: 36px;
  margin-bottom: 1em;
  background: #5c4420;
  color: #fff;
  font-size: 14px;
  border-radius: 18px;
}
@media screen and (max-width: 991px) {
  .assess-flow__head i {
    margin-inline: auto;
  }
}
.assess-flow__head h3 {
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .assess-flow__head h3 {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 992px) {
  .assess-flow__main {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__main.grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 150px;
    grid-template-columns: 1fr 150px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .assess-flow__main.grid {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .assess-flow__main.grid img {
    padding-top: 10px;
    margin: 0 auto;
    display: block;
    height: 150px;
  }
}
.assess-flow__reserve {
  margin-top: 20px;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .assess-flow__reserve {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .assess-flow__reserve {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.assess-flow__reserve-tel .text-tel {
  margin-top: 0;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz4);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .assess-flow__reserve-tel .text-tel {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__reserve-tel .text-tel {
    text-align: left;
  }
}
.assess-flow__reserve-tel .text-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ec7065;
  text-decoration: none;
  font-weight: 600;
}
.assess-flow__reserve-tel .text-tel a span {
  letter-spacing: 0.05em;
}
.assess-flow__reserve-tel .text-tel svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #ec7065;
}
.assess-flow__reserve-time {
  margin-top: 1em;
  font-size: 12px !important;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .assess-flow__reserve-time {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__reserve-time {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__reserve-btn {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    max-width: 340px;
  }
}
.assess-flow__reserve-btn a {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .assess-flow__reserve-btn a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .assess-flow__reserve-btn a {
    font-size: 18px;
  }
}
.assess-faq .section__heading {
  margin-bottom: 1em;
}
.assess-shop .section__heading {
  margin-bottom: 1em;
}
.assess-shop .c-title-1ry {
  display: none;
}
.assess-shop th, .assess-shop td {
  background: none;
}
.assess-parking .text-heading {
  width: 100%;
  margin-bottom: 1em;
  text-align: left;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .assess-parking .text-heading {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .assess-parking {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .assess-parking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.assess-parking__txt {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .assess-parking__txt {
    width: 50%;
  }
}
.assess-parking__img {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .assess-parking__img {
    width: calc(50% - 40px);
  }
}
.assess-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 60px 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .assess-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.assess-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.assess-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.assess-modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 575px) {
  .assess-modal__content {
    height: 100%;
  }
}
.assess-modal_inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 575px) {
  .assess-modal_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
  }
}
.assess-modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 20;
  -webkit-transform: translateY(calc(-100% - 15px));
          transform: translateY(calc(-100% - 15px));
}
.assess-modal__close-btn:before, .assess-modal__close-btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 141.421356237%;
  height: 2px;
  left: 0;
  background: #5c4420;
}
.assess-modal__close-btn:before {
  top: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.assess-modal__close-btn:after {
  bottom: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.assess-modal__close-btn:hover {
  opacity: 0.8;
}
.assess-modal .swiper-button-prev, .assess-modal .swiper-button-next {
  top: inherit;
  bottom: 0;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .assess-modal .swiper-button-prev, .assess-modal .swiper-button-next {
    position: fixed;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@media screen and (min-width: 768px) {
  .assess-modal .swiper-button-prev, .assess-modal .swiper-button-next {
    -webkit-transform: translateY(calc(100% + 15px));
            transform: translateY(calc(100% + 15px));
  }
}
.assess-modal .swiper-button-prev:after, .assess-modal .swiper-button-next:after {
  color: #5c4420;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .assess-modal .swiper-button-prev {
    left: 5%;
  }
}
@media screen and (min-width: 768px) {
  .assess-modal .swiper-button-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .assess-modal .swiper-button-next {
    right: 5%;
  }
}
@media screen and (min-width: 768px) {
  .assess-modal .swiper-button-next {
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .assess-modal .swiper {
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .assess-modal .swiper-slide {
    overflow: auto;
  }
}
.assess-profile__box {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .assess-profile__box {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .assess-profile__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
.assess-profile__box dl {
  margin-top: 2em;
}
.assess-profile__box dt {
  margin-bottom: 5px;
  color: #666;
  font-size: 11px;
  line-height: 1;
}
.assess-profile__box dd {
  margin-bottom: 15px;
  font-size: 16px;
}
.assess-profile__box dd:last-child {
  margin-bottom: 0;
}
.assess-profile__blog {
  position: absolute;
  top: 0;
  right: 0;
  background: #ec7065;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.assess-profile__blog:hover {
  background: #5c4420;
}
.assess-profile__blog i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  padding-bottom: 3px;
}
.assess-profile__blog svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.assess-profile__blog span {
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
}
.assess-profile__post {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0.5em 1em;
  background: #5c4420;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.assess-profile__name {
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .assess-profile__name {
    font-size: 24px !important;
  }
}
@media screen and (min-width: 576px) {
  .assess-profile__name {
    font-size: 26px !important;
  }
}
.assess-profile__txt {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media screen and (max-width: 575px) {
  .assess-profile__img {
    width: 250px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 576px) {
  .assess-profile__img {
    width: 300px;
  }
}

.layout-bottom-cta {
  height: 7.6rem;
}
@media screen and (max-width: 768px) {
  .layout-bottom-cta {
    height: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-bottom-cta .cta-button__item {
    width: 100% !important;
  }
}
.layout-bottom-cta .cta-button__item a {
  width: 30rem;
  height: 5rem;
  border-radius: 25rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .layout-bottom-cta .cta-button__item a {
    width: 100%;
    height: 12rem;
    border-radius: 0;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-bottom-cta .cta-button__item a br {
    display: none;
  }
}

.list-maker-form {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
}
.list-maker-form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 30px;
  margin: 0 !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.list-maker-form .horizontal-item {
  margin: 0 !important;
}
.list-maker-form .horizontal-item:nth-of-type(1) input {
  background-image: url("/assets/img/lineup/img_maker01.png");
}
.list-maker-form .horizontal-item:nth-of-type(2) input {
  background-image: url("/assets/img/lineup/img_maker02.png");
}
.list-maker-form .horizontal-item:nth-of-type(3) input {
  background-image: url("/assets/img/lineup/img_maker03.png");
}
.list-maker-form .horizontal-item:nth-of-type(4) input {
  background-image: url("/assets/img/lineup/img_maker04.png");
}
.list-maker-form .horizontal-item:nth-of-type(5) input {
  background-image: url("/assets/img/lineup/img_maker05.png");
}
.list-maker-form .horizontal-item:nth-of-type(6) input {
  background-image: url("/assets/img/lineup/img_maker06.png");
}
.list-maker-form .horizontal-item:nth-of-type(7) input {
  background-image: url("/assets/img/lineup/img_maker07.png");
}
.list-maker-form .horizontal-item:nth-of-type(8) input {
  background-image: url("/assets/img/lineup/img_maker08.png");
}
.list-maker-form .horizontal-item:nth-of-type(9) input {
  display: none;
}
.list-maker-form .horizontal-item:nth-of-type(9) span {
  width: 4em;
  text-align: center;
  line-height: 1.3;
}
.list-maker-form label {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (min-width: 992px) {
  .list-maker-form label:hover {
    border-color: #5c4420;
  }
}
.list-maker-form label:has(:checked) {
  border-color: #5c4420;
}
.list-maker-form label span {
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .list-maker-form label span {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .p-faq-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-faq-article .p-faq-list {
    width: 750px;
  }
}
.p-faq-ttl {
  font-size: var(--fz3);
}
@media screen and (max-width: 1199px) {
  .p-faq-ttl {
    margin-bottom: 1em;
  }
}
.p-faq-list {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  .p-faq-list {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-faq-list {
    gap: 20px;
  }
}
.p-faq-item {
  background: #fff;
  border-radius: min(20px, 2vw);
}
.p-faq-item__ttl label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  padding: min(30px, 5vw);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .p-faq-item__ttl label {
    gap: 15px;
  }
}
.p-faq-item__ttl label:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "Q";
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ec7065;
  font-size: var(--fz3);
  font-weight: 600;
  line-height: 1;
}
.p-faq-item__ttl label:has(input:checked) i:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 992px) {
  .p-faq-item__ttl label:hover {
    color: #5c4420;
  }
}
.p-faq-item__ttl label input {
  display: none;
}
.p-faq-item__ttl label span {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-top: 0.1em;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq-item__ttl label span {
    font-size: 1.125rem;
  }
}
.p-faq-item__ttl label i {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 30px;
  height: 24px;
  border-radius: 12px;
  background: #5c4420;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-faq-item__ttl label i:before, .p-faq-item__ttl label i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-faq-item__ttl label i:before {
  width: 10px;
  height: 2px;
  margin-top: -1px;
  margin-left: -5px;
}
.p-faq-item__ttl label i:after {
  width: 2px;
  height: 10px;
  margin-top: -5px;
  margin-left: -1px;
}
.p-faq-item__txt {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-inline: min(30px, 5vw);
}
.p-faq-item__ttl:has(input:checked) + .p-faq-item__txt {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.p-faq-item__ttl:has(input:checked) + .p-faq-item__txt .p-faq-item__txt-inner {
  padding-top: 30px;
  padding-bottom: 40px;
}
.p-faq-item__ttl:has(input:checked) + .p-faq-item__txt .p-faq-item__txt-inner:after {
  opacity: 1;
}
.p-faq-item__txt-inner {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .p-faq-item__txt-inner {
    gap: 15px;
  }
}
.p-faq-item__txt-inner:before {
  content: "A";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ec7065;
  font-size: var(--fz3);
  font-weight: 600;
  line-height: 1;
}
.p-faq-item__txt-inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #eae8e4;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-faq-item__txt-inner p {
  line-height: 1.8;
}

.p-area-list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .p-area-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-area-list__item {
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-area-list__item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 0;
  }
}
.p-area-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  height: 4em;
  padding-inline: 1.5em;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .p-area-list__link {
    padding-inline: 1em;
  }
}
.p-area-list__link svg {
  fill: #5c4420;
}
.p-area-intro {
  padding-bottom: min(140px, 15vw);
}
@media screen and (max-width: 767px) {
  .p-area-intro {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-area-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 900px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-area-intro__img {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-area-intro__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 300px;
  }
}
.p-area-intro__txt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-area-intro__txt p {
  line-height: 2;
}
.p-area-service {
  position: relative;
  padding-top: min(140px, 15vw);
  z-index: 10;
}
.p-area-service:before, .p-area-service:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-area-service:before {
  height: min(100px, 10vw);
  background: #fff;
  z-index: -2;
}
.p-area-service:after {
  height: 100%;
  background: #f4f0ec;
  border-top-left-radius: min(60px, 6vw);
  border-top-right-radius: min(60px, 6vw);
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .p-area-service .p-area-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-area-service .p-area-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .p-area-service .p-area-list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-shop-intro {
  max-width: 800px;
  margin-inline: auto;
}
.p-shop-intro p {
  text-align: center;
}
.p-shop-video {
  max-width: 800px;
  aspect-ratio: 16/9;
  margin-inline: auto;
}
.p-shop-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-shop-info th, .p-shop-info td {
  background: none;
}
.p-shop-info .c-btn-list {
  display: none;
}
.p-shop-staff__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
@media screen and (max-width: 991px) {
  .p-shop-staff__list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-staff__list {
    max-width: 380px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-shop-staff__list {
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-shop-staff__list {
    gap: 50px;
  }
}
.p-shop-staff__link {
  cursor: pointer;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: min(30px, 3vw);
  color: #3f2f16;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  outline: none;
  -webkit-appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-shop-staff__link:hover .c-icon-circle {
    background: #ec7065;
  }
  .p-shop-staff__link:hover img {
    opacity: 0.7;
  }
}
.p-shop-staff__img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #000;
}
.p-shop-staff__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-object-position: top center;
     object-position: top center;
}
.p-shop-staff__main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 35px 30px 30px;
}
.p-shop-staff__main .c-icon-circle {
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-shop-staff__main .c-icon-circle:before, .p-shop-staff__main .c-icon-circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  margin-top: -1px;
  margin-left: -5px;
  background: #fff;
}
.p-shop-staff__main .c-icon-circle:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-shop-staff__post {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  height: 30px;
  margin-top: -15px;
  padding-inline: 1.5em;
  background: #5c4420;
  border-radius: 0 15px 15px 0;
  color: #fff;
  font-size: var(--fz-3);
  font-weight: 600;
  line-height: 1;
}
.p-shop-staff__name {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  text-align: left;
}
.p-shop-staff__name-jp {
  font-size: var(--fz2);
  font-weight: 600;
  line-height: 1;
}
.p-shop-staff__name-en {
  color: #ec7065;
  font-size: var(--fz-3);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
}
.p-shop-modal__body {
  overflow-y: auto;
  display: -ms-grid;
  display: grid;
  max-height: 90svh;
}
@media screen and (max-width: 991px) {
  .p-shop-modal__body {
    padding: 30px 30px 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-modal__body {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-shop-modal__body {
    padding: 5vw 5vw calc(5vw + 60px);
  }
}
@media screen and (min-width: 768px) {
  .p-shop-modal__body {
    -ms-grid-columns: 250px 30px 1fr;
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-shop-modal__body {
    -ms-grid-columns: 300px 50px 1fr;
    grid-template-columns: 300px 1fr;
    padding: 40px 40px 120px;
    gap: 50px;
  }
}
.p-shop-modal__img {
  aspect-ratio: 3/4;
}
@media screen and (max-width: 767px) {
  .p-shop-modal__img {
    max-width: 250px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-shop-modal__img {
    width: 100%;
  }
}
.p-shop-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p-shop-modal__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .p-shop-modal__profile {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 576px) {
  .p-shop-modal__profile {
    margin-bottom: 30px;
  }
}
.p-shop-modal__blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 70px;
  aspect-ratio: 1/1;
  background: #ec7065;
  border-radius: 100%;
}
.p-shop-modal__blog i {
  width: 30px;
  line-height: 0;
}
.p-shop-modal__blog svg {
  width: 100%;
  aspect-ratio: 1/1;
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-shop-modal__blog span {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-3);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-shop-modal__blog:hover {
    background: #5c4420;
  }
}
.p-shop-modal__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  margin-bottom: 15px;
  padding-inline: 1.5em;
  background: #5c4420;
  border-radius: 15px;
  color: #fff;
  font-size: var(--fz-2);
  font-weight: 500;
  line-height: 1;
}
.p-shop-modal__name {
  font-size: var(--fz3);
  font-weight: 700;
  line-height: 1;
}
.p-shop-modal__name-en {
  margin-top: 10px;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-2);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
}
.p-shop-modal__comment p {
  line-height: 2;
}
.p-shop-modal__main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-shop-modal .splide__arrows {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  background: #f4f0ec;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .p-shop-modal .splide__arrows {
    height: 60px;
  }
}
@media screen and (min-width: 576px) {
  .p-shop-modal .splide__arrows {
    height: 80px;
  }
}
.p-shop-modal .c-btn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0;
  margin: 0;
  padding-inline: 30px;
}
@media screen and (max-width: 575px) {
  .p-shop-modal .c-btn {
    height: 40px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 576px) {
  .p-shop-modal .c-btn {
    height: 50px;
    border-radius: 25px;
  }
}
.p-shop-modal .c-btn i {
  position: relative;
  width: 12px;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-shop-modal .c-btn i:before, .p-shop-modal .c-btn i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
}
.p-shop-modal .c-btn i:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-shop-modal .splide__arrow {
  position: static;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  margin: 0;
  border: 2px solid #5c4420;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.p-shop-modal .splide__arrow svg {
  width: 12px;
  aspect-ratio: 1/1;
  fill: #5c4420;
}

.p-news-list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 576px) {
  .p-news-list {
    max-width: 1000px;
    margin-inline: auto;
  }
}
.p-news-list__link {
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    padding: 3vw;
  }
}
@media screen and (max-width: 575px) {
  .p-news-list__link {
    padding: 5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px;
  }
}
.p-news-list__link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-list__link:hover:after {
    left: -10px;
    width: calc(100% + 20px);
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  }
  .p-news-list__link:hover .c-icon-circle {
    background: #ec7065;
  }
}
.p-news-list__date {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-1);
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__date {
    line-height: 1.3;
  }
}
.p-news-list__date.is-new:after {
  content: "NEW";
  position: absolute;
  right: 0;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 2em;
  padding-top: 2px;
  border-radius: 1em;
  background: #ec7065;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz-3);
  line-height: 0.8;
  -webkit-transform: translate(calc(100% + 5px), -50%);
          transform: translate(calc(100% + 5px), -50%);
}
.p-news-list__ttl {
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-news-list__ttl {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    padding-left: 80px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-list__icon {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-news-list__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-news-head {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.p-news-head__ttl {
  font-size: var(--fz4);
  font-weight: 600;
}
.p-news-head__date {
  font-size: var(--fz-1);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.p-news-main {
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  border-radius: min(30px, 3vw);
}
@media screen and (max-width: 767px) {
  .p-news-main {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-news-main {
    padding: 8vw 5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-news-main {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .p-news-main {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-news-main {
    padding: 80px;
  }
}
.p-news-main h2, .p-news-main h3, .p-news-main h4 {
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 1em;
  line-height: 1.3;
}
.p-news-main h2:first-child, .p-news-main h3:first-child, .p-news-main h4:first-child {
  margin-top: 0 !important;
}
.p-news-main h2 {
  font-size: var(--fz3);
}
.p-news-main h3 {
  font-size: var(--fz2);
}
.p-news-main h4 {
  font-size: var(--fz0);
}
.p-news-main p {
  letter-spacing: 0.15em;
  line-height: 2;
}
.p-news-main p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-news-main figure + figure {
  margin-top: 15px;
}

.p-blog-sort {
  gap: 20px;
  background: #e9e2da;
  border-radius: min(30px, 3vw);
}
@media screen and (max-width: 767px) {
  .p-blog-sort {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
    padding: 3vw;
  }
}
@media screen and (max-width: 575px) {
  .p-blog-sort {
    padding: 5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-blog-sort {
    margin-bottom: 80px;
  }
}
.p-blog-sort__select {
  position: relative;
}
.p-blog-sort__ttl {
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-blog-sort__ttl {
    font-size: var(--fz1);
  }
}
.p-blog-sort__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 1.5em;
  background: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-blog-sort__current {
    width: 100%;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-sort__current {
    width: 350px;
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-sort__current span {
    font-size: 1.125rem;
  }
}
.p-blog-sort__current i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  background: #5c4420;
}
.p-blog-sort__current i:after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-blog-sort__current input {
  display: none;
}
.p-blog-sort__pd {
  position: absolute;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .p-blog-sort__pd {
    top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-sort__pd {
    top: 60px;
  }
}
.p-blog-sort__list {
  overflow: hidden;
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.p-blog-sort__item {
  position: relative;
}
.p-blog-sort__item:before, .p-blog-sort__item:after {
  content: "";
  display: block;
  position: absolute;
  background: #eae8e4;
}
.p-blog-sort__item:before {
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
}
.p-blog-sort__item:after {
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
}
.p-blog-sort__item--all {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
}
.p-blog-sort__link {
  display: block;
  padding: 1em;
}
.p-blog-sort:has(input:checked) .p-blog-sort__current i:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.p-blog-sort:has(input:checked) .p-blog-sort__pd {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.p-blog-sort:has(input:checked) .p-blog-sort__pd:before, .p-blog-sort:has(input:checked) .p-blog-sort__pd:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #eae8e4;
}
.p-blog-list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-blog-list {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px 40px;
  }
}
.p-blog-list__link {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-blog-list__link {
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-list__link {
    gap: 20px;
  }
}
.p-blog-list__thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
.p-blog-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-blog-list__body {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-blog-list__body {
    padding-inline: 10px;
  }
}
.p-blog-list__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  padding-inline: 1em;
  background: #5c4420;
  border-radius: 2em;
  color: #fff;
  font-size: var(--fz-2);
  font-weight: 500;
  line-height: 1;
}
.p-blog-list__ttl {
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-blog-list__ttl {
    font-size: 1.125rem;
  }
}
.p-blog-list__date {
  font-weight: 500;
  font-size: var(--fz-2);
  font-family: "Quicksand", sans-serif;
  line-height: 0.8;
}
.p-blog-head {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.p-blog-head__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-blog-head__ttl {
  font-size: var(--fz3);
  font-weight: 600;
}
.p-blog-head__date {
  font-size: var(--fz-1);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.p-blog-head__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  padding-inline: 1em;
  background: #5c4420;
  border-radius: 2em;
  color: #fff;
  font-size: var(--fz-2);
  font-weight: 500;
  line-height: 1;
}
.p-blog-main {
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  border-radius: min(30px, 3vw);
}
@media screen and (max-width: 767px) {
  .p-blog-main {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-blog-main {
    padding: 8vw 5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-main {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .p-blog-main {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-blog-main {
    padding: 80px;
  }
}
.p-blog-main .list-image {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-blog-main .list-image {
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-main .list-image {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-main .list-image--small {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.p-blog-main p {
  line-height: 2;
}
.p-blog-slide {
  background: #f4f0ec;
}
@media screen and (max-width: 767px) {
  .p-blog-slide {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-slide {
    margin-bottom: 70px;
  }
}
.p-blog-slide span {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}
.p-blog-slide span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-blog-slide .splide__pagination {
  padding: 0;
  bottom: 0;
  -webkit-transform: translateY(calc(100% + 10px));
          transform: translateY(calc(100% + 10px));
  gap: 10px;
}
.p-blog-slide .splide__pagination__page {
  margin: 0;
  width: 10px;
  height: 10px;
  background: #e9e2da;
  opacity: 1;
}
.p-blog-slide .splide__pagination__page.is-active {
  background: #5c4420;
}
.p-blog-slide .splide__arrow {
  border-radius: 100%;
  background: #5c4420;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .p-blog-slide .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-slide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-blog-slide .splide__arrow:hover {
    background: #ec7065;
    opacity: 1;
  }
}
.p-blog-slide .splide__arrow svg {
  fill: #fff;
}
.p-blog-slide .splide__arrow--prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-blog-slide .splide__arrow--next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/**

  @top
--------------------------------------------------------
  page/_top.scss
------------------------------------------------------ */
body:has(.p-standard) .l-footer:before {
  background: #ec7065;
}
body:has(.p-standard) .l-header-cta__item--lineup .l-header-cta__link {
  background: #d1a200;
}

.p-standard .p-page-body {
  padding: 0;
}
.p-standard .p-page-breadcrumbs {
  width: auto;
  margin: 0;
  margin-inline: min(40px, 5vw);
  margin-top: 30px;
}
.p-standard-ttl {
  margin-bottom: 1em;
  font-size: var(--fz4);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-standard-block {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-block {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .p-standard-block--bg {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-block--bg {
    padding-top: 80px;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-block__box {
    margin-bottom: 12vw;
  }
}
@media screen and (min-width: 414px) {
  .p-standard-block__box {
    margin-bottom: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-block__box {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-block__box {
    margin-bottom: 80px;
  }
}
.p-standard-block__box:last-child {
  margin-bottom: 0 !important;
}
.p-standard-kv {
  text-align: center;
  background: url("/ageo-wp/wp-content/themes/ageo/assets/images//standard/kv_bg.png") repeat top left #ec7065;
}
@media screen and (min-width: 768px) {
  .p-standard-kv__img {
    padding: 0 5vw;
    padding-top: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .p-standard-kv__img {
    padding-top: 20px;
  }
}
.p-standard-kv__type {
  position: relative;
  text-align: center;
  padding: 0 5vw;
}
@media screen and (min-width: 1200px) {
  .p-standard-kv__type {
    padding: 0;
  }
}
.p-standard-kv__type picture {
  position: relative;
  z-index: 10;
}
.p-standard-kv__type:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  background: #fff;
}
.p-standard-news {
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .p-standard-news {
    padding-block: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-standard-news__ttl {
    font-size: 5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-news__ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 50px;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-news ul {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}
.p-standard-news li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eae8e4;
  padding: 1em 0;
}
@media screen and (max-width: 575px) {
  .p-standard-news li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 5px;
  }
}
@media screen and (max-width: 991px) {
  .p-standard-news li {
    font-size: 14px;
  }
}
@media screen and (min-width: 576px) {
  .p-standard-news li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.p-standard-news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}
@media screen and (max-width: 413px) {
  .p-standard-news a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 414px) {
  .p-standard-news a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-standard-news__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8em;
}
@media screen and (max-width: 575px) {
  .p-standard-news__date {
    font-size: var(--fz-2);
  }
}
.p-standard-news img {
  margin-right: 7px;
}
.p-standard-recommended {
  text-align: center;
  background: #f4f0ec;
}
.p-standard-plan {
  background: #e9e2da;
}
.p-standard-plan__item {
  max-width: 1080px;
  margin-inline: auto;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item {
    padding: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-plan__item {
    padding: 40px;
  }
}
.p-standard-plan__item:last-child {
  margin-bottom: 0;
}
.p-standard-plan__item-expense {
  background: #f4f0ec;
  border: 2px solid #ec7065;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-expense {
    padding: 0 1.8vw 1.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-expense {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-standard-plan__item-expense span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-expense span:first-child {
    margin-left: 5px;
  }
  .p-standard-plan__item-expense span:first-child img {
    height: 11.5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-expense span:first-child {
    width: 38.1526104418%;
    margin-left: 1.2vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-expense span:first-child {
    margin-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-expense span:nth-of-type(2) {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 56.7269076305%;
    margin-right: 1.2vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-expense span:nth-of-type(2) {
    margin-right: 15px;
  }
}
.p-standard-plan__item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-standard-plan__item-main .c-sentence-note {
  padding: 1em;
  background: #f4f0ec;
  border-radius: 10px;
}
.p-standard-plan__item-main .c-sentence-note li {
  line-height: 1.3;
}
.p-standard-plan__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-img {
    width: 48%;
  }
}
.p-standard-plan__item-stock {
  padding: 0.7em 1em;
  margin-left: auto;
  margin-bottom: 15px;
  border: solid 2px #5c4420;
  border-radius: 6px;
  color: #5c4420;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-stock {
    font-size: 18px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__item-stock {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-stock {
    font-size: 20px;
  }
}
.p-standard-plan__item-txt {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-txt {
    max-width: 48%;
  }
}
.p-standard-plan__item-name {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.p-standard-plan__item-name span, .p-standard-plan__item-name small {
  display: block;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-name span {
    font-size: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__item-name span {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__item-name span {
    font-size: 9vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-name span {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-name span {
    font-size: var(--fz4);
  }
}
@media screen and (max-width: 1199px) {
  .p-standard-plan__item-name small {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-name small {
    font-size: 2vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__item-name small {
    font-size: 3vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__item-name small {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-name small {
    margin-right: 10px;
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-name small {
    font-size: 1.125rem;
  }
}
.p-standard-plan__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 10px;
  margin-bottom: 0 !important;
  font-weight: 700;
}
.p-standard-plan__item-price * {
  letter-spacing: 0;
  line-height: 1;
}
.p-standard-plan__item-price span, .p-standard-plan__item-price small {
  display: block;
}
.p-standard-plan__item-price small {
  position: relative;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-price small {
    font-size: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__item-price small {
    font-size: 6vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__item-price small {
    font-size: 8.5vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-price small {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-price small {
    font-size: var(--fz4);
  }
}
.p-standard-plan__item-price em {
  color: #ec7065;
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-price em {
    font-size: 13vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__item-price em {
    font-size: 16vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__item-price em {
    font-size: 20vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-price em {
    font-size: 10vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-price em {
    font-size: 7.75rem;
  }
}
.p-standard-plan__item-price_tax {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-price_tax {
    margin-top: -10px;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-price_tax {
    margin-top: -1.2vw;
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__item-price_tax {
    margin-top: -var(--fz-2);
    font-size: var(--fz-2);
  }
}
.p-standard-plan__item-attention {
  margin-bottom: 0;
  padding: 20px;
  background: #f4f0ec;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-attention {
    padding: 15px;
  }
}
.p-standard-plan__item-attention li {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__item-attention li {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__item-attention li {
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-plan__item-attention li {
    font-size: 13px;
  }
}
.p-standard-plan__info {
  text-align: center;
}
.p-standard-plan__info-inner {
  position: relative;
  display: inline-block;
  padding: 15px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__info-inner {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__info-inner {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__info-inner {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__info-inner {
    padding-bottom: 60px;
  }
}
.p-standard-plan__info-inner:before, .p-standard-plan__info-inner:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  aspect-ratio: 13/44;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.p-standard-plan__info-inner:before {
  left: 0;
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//standard/plan-caution-img01.png");
  -webkit-transform: translateX(calc(-100% - 30px));
          transform: translateX(calc(-100% - 30px));
}
@media screen and (max-width: 575px) {
  .p-standard-plan__info-inner:before {
    -webkit-transform: translateX(calc(-100% - 15px));
            transform: translateX(calc(-100% - 15px));
  }
}
.p-standard-plan__info-inner:after {
  right: 0;
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//standard/plan-caution-img02.png");
  -webkit-transform: translateX(calc(100% + 30px));
          transform: translateX(calc(100% + 30px));
}
@media screen and (max-width: 575px) {
  .p-standard-plan__info-inner:after {
    -webkit-transform: translateX(calc(100% + 10px));
            transform: translateX(calc(100% + 10px));
  }
}
.p-standard-plan__info p {
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-standard-plan__info p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-plan__info p {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-plan__info p {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-plan__info p {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-plan__info p {
    font-size: var(--fz3);
  }
}
.p-standard-cta {
  background: #ec7065;
}
@media screen and (max-width: 767px) {
  .p-standard-cta {
    padding: 20px 0;
  }
}
.p-standard-cta .p-page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-standard-cta .p-page-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-cta .p-page-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-cta .p-page-container {
    gap: 40px;
  }
}
.p-standard-cta .p-page-container:before {
  display: block;
  content: "";
  aspect-ratio: 86/75;
  background: url("/ageo-wp/wp-content/themes/ageo/assets/images//standard/cta-img.png") no-repeat top left;
  background-size: cover;
}
@media screen and (max-width: 413px) {
  .p-standard-cta .p-page-container:before {
    width: 20%;
  }
}
@media screen and (min-width: 414px) {
  .p-standard-cta .p-page-container:before {
    width: 15.9259259259%;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-cta .p-page-container:before {
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-cta__tel {
    margin-top: 10px;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-cta__tel {
    margin-top: 5px;
  }
}
.p-standard-cta__tel p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 !important;
  color: #fff;
  line-height: 1;
}
.p-standard-cta__tel p:first-child {
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-standard-cta__tel p:first-child {
    font-size: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-cta__tel p:first-child {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 413px) {
  .p-standard-cta__tel p:first-child {
    font-size: 9vw;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-cta__tel p:first-child {
    font-size: 5.4vw;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-cta__tel p:first-child {
    font-size: 4.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-cta__tel p:first-child {
    font-size: var(--fz5);
  }
}
.p-standard-cta__tel p:last-child {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-standard-cta__tel p:last-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-cta__tel p:last-child {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-cta__tel p:last-child {
    font-size: 11px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-cta__tel p:last-child {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-cta__tel p:last-child {
    font-size: var(--fz-1);
  }
}
.p-standard-cta__tel p a {
  color: #fff !important;
  text-decoration: none !important;
}
.p-standard-cta__tel p i {
  margin-right: 10px;
  line-height: 0;
}
@media screen and (max-width: 575px) {
  .p-standard-cta__tel p i {
    margin-bottom: 5px;
  }
}
.p-standard-cta__tel p svg {
  width: 0.7em;
  height: 0.7em;
  fill: #fff;
}
.p-standard-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffde6b;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .p-standard-cta__btn {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-standard-cta__btn {
    width: 100%;
    max-width: 400px;
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-cta__btn {
    height: 60px;
    font-size: 16px;
  }
}
@media screen and (min-width: 576px) {
  .p-standard-cta__btn {
    height: 70px;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-cta__btn {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-cta__btn {
    height: 80px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-cta__btn {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    height: 90px;
    font-size: var(--fz2);
  }
}
.p-standard-cta__btn i {
  margin-right: 10px;
  line-height: 0;
}
.p-standard-cta__btn svg {
  fill: #3f2f16;
  width: 1.5em;
}
.p-standard-voice {
  background: #f4f0ec;
}
.p-standard-voice__intro {
  position: relative;
  background: #5c4420;
}
.p-standard-voice__intro:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f4f0ec;
}
@media screen and (max-width: 991px) {
  .p-standard-voice__intro:after {
    height: 10vw;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro:after {
    height: 7vw;
  }
}
.p-standard-voice__intro * {
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro .p-page-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-standard-voice__intro .p-standard-ttl {
  margin-bottom: 0.5em;
}
.p-standard-voice__intro .txt--attention {
  font-size: var(--fz-2);
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro-inner {
    width: 50%;
  }
}
.p-standard-voice__intro-inner figure {
  position: relative;
  margin-top: 30px;
  text-align: center;
  z-index: 10;
}
.p-standard-voice__intro-inner figure img {
  max-width: 350px;
}
@media screen and (max-width: 575px) {
  .p-standard-voice__intro-inner figure img {
    max-width: 100%;
  }
}
.p-standard-voice__intro-img {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .p-standard-voice__intro-item {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro-item {
    position: relative;
    width: 42.592592%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro-item:first-child {
    display: none;
  }
}
.p-standard-voice__intro-item p {
  color: #3f2f16;
}
.p-standard-voice__intro-name {
  margin-bottom: 10px !important;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (min-width: 992px) {
  .p-standard-voice__intro-name {
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-voice__intro-name {
    font-size: var(--fz1) !important;
  }
}
.p-standard-voice__intro-comment {
  margin-bottom: 0 !important;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .p-standard-voice__intro-comment {
    font-size: 14px !important;
  }
}
.p-standard-voice__items {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-standard-voice__items {
    margin-top: 40px;
    -ms-grid-columns: 1fr 4vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }
}
@media screen and (max-width: 575px) {
  .p-standard-voice__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-voice__items {
    -ms-grid-columns: 1fr 3vw 1fr 3vw 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .p-standard-voice__items {
    gap: 45px;
    margin-top: 60px;
  }
}
.p-standard-voice__item {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}
.p-standard-voice__item-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.p-standard-voice__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-standard-voice__item-name {
  margin-bottom: 10px !important;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-standard-voice__item-name {
    font-size: 15px !important;
  }
}
@media screen and (min-width: 992px) {
  .p-standard-voice__item-name {
    font-size: 18px !important;
  }
}
.p-standard-voice__item-comment {
  margin-bottom: 0 !important;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-standard-voice__item-comment {
    font-size: 13px !important;
  }
}
@media screen and (min-width: 768px) {
  .p-standard-voice__item-comment {
    font-size: 14px !important;
  }
}
.p-standard-reason {
  background: #e9e2da;
}
.p-standard-faq {
  background: #e9e2da;
}
.p-standard-shop {
  background: #fff;
}

body:has(.p-chuko-lease) .l-footer:before {
  background: #fff;
}
body:has(.p-chuko-lease) .p-page-body {
  padding-bottom: 0;
}

.p-chuko-intro {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.p-chuko-intro__ttl {
  color: #ec7065;
}
.p-chuko-intro__lead {
  margin-bottom: 1em;
  color: #5c4420;
  font-size: var(--fz3);
  font-weight: 700;
}
.p-chuko-intro p {
  text-align: center;
}
.p-chuko-exp {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: min(40px, 5vw);
  max-width: 1000px;
  margin-inline: auto;
}
.p-chuko-exp__note {
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--fz-2);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.p-chuko-exp__item {
  padding: min(40px, 5vw);
  border: 3px solid #5c4420;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 991px) {
  .p-chuko-exp__item {
    display: -ms-grid;
    display: grid;
    gap: min(30px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-chuko-exp__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-chuko-exp__item {
    gap: 40px;
  }
}
.p-chuko-exp__img {
  max-width: 360px;
}
@media screen and (max-width: 991px) {
  .p-chuko-exp__img {
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-chuko-exp__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-chuko-exp__body {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}
.p-chuko-exp__name {
  margin-bottom: 0.5em;
  font-size: var(--fz3);
  font-weight: 600;
}
.p-chuko-exp__main {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .p-chuko-exp__main {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-chuko-exp__main {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-chuko-exp__main {
    gzp: 40px;
  }
}
@media screen and (min-width: 576px) {
  .p-chuko-exp__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-chuko-exp__price {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-chuko-exp__price dl:not(:first-child) {
    margin-top: 1em;
  }
}
.p-chuko-exp__price dt, .p-chuko-exp__price dd {
  line-height: 1;
}
.p-chuko-exp__price dt {
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-chuko-exp__price dt {
    font-size: 1.125rem;
  }
}
.p-chuko-exp__price dd {
  color: #ec7065;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-chuko-exp__price dd {
    font-size: 1.125rem;
  }
}
.p-chuko-exp__price dd em {
  margin-inline: 3px;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz4);
  letter-spacing: 0;
}
@media screen and (max-width: 575px) {
  .p-chuko-exp__spec {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media screen and (min-width: 576px) {
  .p-chuko-exp__spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.p-chuko-exp__spec dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-chuko-exp__spec dt, .p-chuko-exp__spec dd {
  line-height: 1;
}
.p-chuko-exp__spec dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6em;
  height: 2.2em;
  background: #f4f0ec;
  border-radius: 5px;
  font-size: var(--fz-1);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-chuko-exp__spec dd {
    font-size: 1.125rem;
  }
}

body:has(.p-pack) .l-footer:before {
  background: #fff;
}
body:has(.p-pack) .p-top-shop:before {
  background: #f4f0ec;
}
body:has(.p-pack) .p-page-body {
  padding-bottom: 0;
}

.p-pack-intro {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.p-pack-intro p {
  text-align: center;
}
.p-pack-trouble {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media screen and (max-width: 1199px) {
  .p-pack-trouble {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-pack-trouble {
    gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .p-pack-trouble {
    gap: 30px;
  }
}
.p-pack-trouble__item {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  border-radius: 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-pack-trouble__item {
    gap: 15px;
    padding-top: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .p-pack-trouble__item {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-pack-trouble__item {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-pack-trouble__item {
    padding-top: 40px;
  }
}
.p-pack-trouble__txt {
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-pack-trouble__txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-pack-trouble__txt {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 1200px) {
  .p-pack-trouble__txt {
    font-size: var(--fz1);
  }
}
.p-pack-trouble__icon {
  text-align: center;
}
.p-pack-trouble img {
  width: 100px;
}
.p-pack-cnt {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.p-pack-cnt__item {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  border: 3px solid #5c4420;
  background: #fff;
  border-radius: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pack-cnt__item {
    padding-top: 5vw;
    padding-bottom: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .p-pack-cnt__item {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.p-pack-cnt__item img {
  width: 80px;
}
.p-pack-cnt__txt {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-pack-cnt__txt {
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1200px) {
  .p-pack-cnt__txt {
    font-size: 1.125rem;
  }
}
.p-pack-cnt__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  border-top: 1px solid #eae8e4;
  border-left: 1px solid #eae8e4;
}
.p-pack-cnt__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5em;
  border-right: 1px solid #eae8e4;
  border-bottom: 1px solid #eae8e4;
  background: #fff;
  font-weight: 500;
}
.p-pack-cta {
  padding: min(40px, 5vw);
  background: #e9e2da;
  border-radius: min(30px, 5vw);
}
.p-pack-cta__lead {
  font-size: var(--fz1);
  font-weight: 600;
  text-align: center;
}
.p-pack-cta__lead em {
  font-size: var(--fz3);
}
.p-pack-cta__action {
  margin-block: 20px;
}
@media screen and (max-width: 991px) {
  .p-pack-cta__action {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .p-pack-cta__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.p-pack-cta__tel {
  color: #ec7065;
  font-size: var(--fz5);
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-pack-cta__tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-pack-cta__tel {
    font-size: 7vw;
  }
}
@media screen and (max-width: 575px) {
  .p-pack-cta__tel {
    font-size: 10vw;
  }
}
.p-pack-cta__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .p-pack-cta__tel-link {
    pointer-events: none;
  }
}
.p-pack-cta__tel span {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p-pack-cta__tel svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #ec7065;
}

body:has(.p-insurance) .l-footer:before {
  background: #fff;
}
body:has(.p-insurance) .p-top-shop:before {
  background: #f4f0ec;
}
body:has(.p-insurance) .p-page-body {
  padding-bottom: 0;
}

.p-insurance-intro {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.p-insurance-intro p {
  text-align: center;
}
.p-insurance-intro img {
  max-width: 300px;
}
.p-insurance-merit {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.p-insurance-merit__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  padding-bottom: 30px;
}
.p-insurance-merit__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 35px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border: 2px solid #5c4420;
  border-radius: 10px;
}
.p-insurance-merit__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 70px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  background: #5c4420;
  border-radius: 100%;
  color: #fff;
  font-weight: 500;
  z-index: 10;
}
.p-insurance-merit__icon small {
  padding-top: 2px;
  font-size: var(--fz-3);
  letter-spacing: 0;
  line-height: 1;
}
.p-insurance-merit__icon span {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz2);
  letter-spacing: 0.05em;
  line-height: 0.8;
}
.p-insurance-merit__txt {
  position: relative;
  font-weight: 600;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-insurance-merit__txt {
    font-size: 1.125rem;
  }
}
.p-insurance-cta {
  margin-top: min(80px, 8vw);
  padding: min(40px, 5vw);
  background: #e9e2da;
  border-radius: min(30px, 5vw);
}
.p-insurance-cta__lead {
  font-size: var(--fz1);
  font-weight: 600;
  text-align: center;
}
.p-insurance-cta__lead em {
  font-size: var(--fz3);
}
.p-insurance-cta .c-btn {
  margin-top: 20px;
}

@media screen and (max-width: 413px) {
  body:has(.p-contact) .l-footer:before {
    background: #fff;
  }
}

@media screen and (max-width: 413px) {
  .p-contact .p-page-body {
    background: #fff;
  }
}
.p-contact-intro {
  margin-bottom: min(50px, 6vw);
}

@media screen and (max-width: 413px) {
  body:has(.p-assessment-reservation) .l-footer:before {
    background: #fff;
  }
}

.c-form__cnt:has(.p-assessment_resv-maker) {
  display: block;
}

@media screen and (max-width: 413px) {
  .p-assessment-reservation .p-page-body {
    background: #fff;
  }
}

.p-assessment_resv-intro {
  margin-bottom: min(50px, 6vw);
}
.p-assessment_resv-maker {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
}
.p-assessment_resv-maker input {
  display: block !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 30px;
  margin: 0 !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.p-assessment_resv-maker .horizontal-item {
  margin: 0 !important;
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(1) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker01.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(2) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker02.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(3) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker03.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(4) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker04.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(5) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker05.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(6) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker06.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(7) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker07.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(8) input {
  background-image: url("/ageo-wp/wp-content/themes/ageo/assets/images//carlineup/img-maker08.png");
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(9) input {
  display: none !important;
}
.p-assessment_resv-maker .horizontal-item:nth-of-type(9) span {
  width: 4em;
  text-align: center;
  line-height: 1.3;
}
.p-assessment_resv-maker label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-assessment_resv-maker label:before, .p-assessment_resv-maker label:after {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .p-assessment_resv-maker label:hover {
    border-color: #5c4420;
  }
}
.p-assessment_resv-maker label:has(:checked) {
  border-color: #5c4420;
}
.p-assessment_resv-maker label span {
  font-size: var(--fz0);
  line-height: 1;
}
@media screen and (max-width: 413px) {
  .p-assessment_resv-maker label span {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 1200px) {
  .p-assessment_resv-maker label span {
    font-size: 13px;
  }
}

body:has(.p-guide-lease) .l-footer:before {
  background: #fff;
}
body:has(.p-guide-lease) .p-page-body {
  padding-bottom: 0;
}

.p-guide-intro {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-guide-intro {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "txt txt" "img01 img02";
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
@media screen and (max-width: 991px) {
  .p-guide-intro__txt {
    grid-area: txt;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-intro__txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-guide-intro__txt .c-sentence {
  font-size: var(--fz2);
  font-weight: 600;
}
.p-guide-intro__txt .c-sentence em {
  font-size: var(--fz4);
}
.p-guide-intro__txt .c-sentence small {
  font-size: var(--fz-1);
}
@media screen and (min-width: 992px) {
  .p-guide-intro__img01, .p-guide-intro__img02 {
    width: 120px;
  }
}
@media screen and (max-width: 991px) {
  .p-guide-intro__img01 img, .p-guide-intro__img02 img {
    width: 120px;
  }
}
@media screen and (max-width: 991px) {
  .p-guide-intro__img01 {
    grid-area: img01;
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-intro__img01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 991px) {
  .p-guide-intro__img02 {
    grid-area: img02;
    text-align: left;
  }
}
@media screen and (max-width: 991px){
  .p-guide-intro__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .p-guide-intro__img01 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-guide-intro__img02 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-intro__img02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-guide-feature {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-guide-feature {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-guide-feature {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-feature {
    -webkit-appearance: 30px;
       -moz-appearance: 30px;
            appearance: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-guide-feature {
    -webkit-appearance: 40px;
       -moz-appearance: 40px;
            appearance: 40px;
  }
}
.p-guide-feature__item {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-guide-feature__item {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-guide-feature__item {
    gap: 15px;
  }
}
.p-guide-feature__img {
  border: 1px solid #eae8e4;
}
.p-guide-feature__txt {
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .p-guide-feature__txt {
    font-size: var(--fz1);
  }
}
@media screen and (max-width: 991px) {
  .p-guide-feature__txt br {
    display: none;
  }
}
.p-guide-feature__txt em {
  color: #ca0e15;
}
@media screen and (max-width: 1199px) {
  .p-guide-feature__txt em {
    font-size: var(--fz1);
  }
}
@media screen and (min-width: 1200px) {
  .p-guide-feature__txt em {
    font-size: var(--fz2);
  }
}
.p-guide-include {
  padding-block: min(120px, 12vw);
  background: #e9e2da;
}
.p-guide-include__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 991px) {
  .p-guide-include__list {
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-include__list {
    gap: 20px;
  }
}
.p-guide-include__item {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.p-guide-include__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border: 3px solid #5c4420;
  background: #fff;
  border-radius: 100%;
}
.p-guide-include__icon img {
  width: 50%;
}
.p-guide-include__txt {
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-guide-include__txt {
    font-size: 1.125rem;
  }
}
.p-guide-reason__list {
  display: -ms-grid;
  display: grid;
  padding-top: 30px;
}
@media screen and (max-width: 991px) {
  .p-guide-reason__list {
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-guide-reason__list {
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-guide-reason__list {
    gap: 100px;
  }
}
.p-guide-reason__ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  margin-bottom: 1.5em;
  background: #ec7065;
  border-radius: 60px;
  color: #fff;
  font-size: var(--fz2);
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .p-guide-reason__ttl {
    height: 50px;
    border-radius: 25px;
  }
}
.p-guide-reason__ttl i {
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  aspect-ratio: 1/1;
  margin-top: -30px;
  margin-left: -30px;
  padding-bottom: 15px;
  background: #ec7065;
  border-radius: 100%;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
  line-height: 0.8;
}
@media screen and (max-width: 575px) {
  .p-guide-reason__ttl i {
    width: 50px;
    margin-top: -25px;
    margin-left: -25px;
  }
}
.p-guide-reason__ttl span {
  position: relative;
  display: block;
  padding-top: 8px;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .p-guide-reason__ttl span {
    padding-top: 5px;
  }
}
.p-guide-reason__lead {
  margin-bottom: 0.6em;
  font-size: var(--fz3);
  font-weight: 700;
  line-height: 1.3;
}
.p-guide-reason__img {
  text-align: center;
}
.p-guide-reason__cnt02-detail {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .p-guide-reason__cnt02-detail {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-guide-reason__cnt02-detail {
    margin-top: 40px;
    gap: 40px;
  }
}
.p-guide-reason__cnt02-detail div {
  padding: min(40px, 5vw);
  border: 1px solid #5c4420;
  background: #fff;
  border-radius: min(30px, 3vw);
  text-align: center;
}
.p-guide-reason__cnt02-detail h4 {
  margin-bottom: 0.5em;
  color: #ec7065;
  font-size: var(--fz3);
  line-height: 1;
}
.p-guide-reason__after {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-guide-reason__after {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-guide-reason__after {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-guide-reason__after {
    gap: 40px;
  }
}
.p-guide-reason__after-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-block: min(40px, 5vw);
  padding-inline: min(30px, 5vw);
  background: #fff;
  border-radius: min(30px, 3vw);
  text-align: center;
}
.p-guide-reason__after-num {
  display: block;
  margin-bottom: 0.5em;
  color: #ec7065;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fz4);
  font-weight: 700;
  line-height: 0.8;
}
.p-guide-reason__after-ttl {
  margin-bottom: 0.5em;
  color: #5c4420;
  font-size: var(--fz3);
  font-weight: 700;
  line-height: 1.3;
}
.p-guide-reason__after-img {
  max-width: 300px;
  margin-top: auto;
  margin-inline: auto;
}
.p-guide-reason__after .c-sentence {
  font-weight: 500;
}
.p-guide-reason__cnt05 .c-sentence-note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 10px;
}
.p-guide-reason__cnt05 .c-sentence-note li {
  line-height: 1;
}
.p-guide-reason__plan {
  margin-top: 1.5em;
  font-size: var(--fz3);
  font-weight: 700;
  text-align: center;
}
.p-guide-value {
  position: relative;
  padding-top: min(120px, 12vw);
  border-top: 4px solid #5c4420;
}
.p-guide-value:before, .p-guide-value:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}
.p-guide-value:before {
  width: 60px;
  aspect-ratio: 1/1;
  margin-top: -35px;
  margin-left: -30px;
  background: #f4f0ec;
  border: 4px solid #5c4420;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 575px) {
  .p-guide-value:before {
    width: 40px;
    margin-top: -25px;
    margin-left: -20px;
  }
}
.p-guide-value:after {
  width: 100px;
  height: 50px;
  background: #f4f0ec;
  margin-top: -54px;
  margin-left: -50px;
}
@media screen and (max-width: 575px) {
  .p-guide-value:after {
    height: 30px;
    margin-top: -34px;
  }
}
.p-guide-value__img {
  text-align: center;
}
.p-guide-cta {
  margin-top: min(80px, 8vw);
  padding: min(40px, 5vw);
  background: #e9e2da;
  border-radius: min(30px, 5vw);
}
.p-guide-cta__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  margin-inline: auto;
  margin-bottom: 0.5em;
  color: #5c4420;
  font-size: var(--fz2);
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-guide-cta__lead {
    font-size: var(--fz1);
  }
}
.p-guide-cta__lead:before, .p-guide-cta__lead:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #5c4420;
}
.p-guide-cta__lead:before {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  margin-right: 1em;
}
@media screen and (max-width: 575px) {
  .p-guide-cta__lead:before {
    margin-right: 10px;
  }
}
.p-guide-cta__lead:after {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  margin-left: 1em;
}
@media screen and (max-width: 575px) {
  .p-guide-cta__lead:after {
    margin-left: 10px;
  }
}
.p-guide-cta__icon svg {
  width: var(--fz2) !important;
}
.p-guide-cta .c-btn {
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fz2);
}
@media screen and (max-width: 575px) {
  .p-guide-cta .c-btn {
    width: 100%;
    font-size: var(--fz1);
    line-height: 1.3;
  }
}

.p-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60svh;
  text-align: center;
}
.p-404-ttl {
  margin-bottom: 1em;
  font-size: var(--fz3);
}
@media screen and (min-width: 576px) {
  .p-404-ttl br {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .p-404 p br {
    display: none;
  }
}

/**
  @align
---------------------------------------------------------
  utility/_align.scss
--------------------------------------------------------- */
.u-align-left {
  margin-right: auto;
  margin-left: inherit;
}
.u-align-right {
  margin-left: auto;
  margin-right: 0;
}
.u-align-center {
  margin-inline: auto;
}

/**
  @hide
---------------------------------------------------------
  utility/_hide.scss
--------------------------------------------------------- */
.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-block {
  display: block !important;
}

.u-d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 1399px) {
  .u-d-xxl-none {
    display: none !important;
  }
  .u-d-xxl-inline {
    display: inline !important;
  }
  .u-d-xlx-inline-block {
    display: inline-block !important;
  }
  .u-d-xxl-block {
    display: block !important;
  }
  .u-d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 1199px) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 991px) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 575px) {
  .u-d-sm-none {
    display: none !important;
  }
  .u-d-sm-inline {
    display: inline !important;
  }
  .u-d-sm-inline-block {
    display: inline-block !important;
  }
  .u-d-sm-block {
    display: block !important;
  }
  .u-d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 413px) {
  .u-d-xs-none {
    display: none !important;
  }
  .u-d-xs-inline {
    display: inline !important;
  }
  .u-d-xs-inline-block {
    display: inline-block !important;
  }
  .u-d-xs-block {
    display: block !important;
  }
  .u-d-xs-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
/**
  @spacing
---------------------------------------------------------
  utility/_spacing.scss
------------------------------------------------------ */
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

@media screen and (max-width: 575px) {
  .u-mt-sm-0 {
    margin-top: 0px !important;
  }
  .u-mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-sm-0 {
    padding-top: 0px !important;
  }
  .u-pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-sm-5 {
    margin-top: 5px !important;
  }
  .u-mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-sm-5 {
    padding-top: 5px !important;
  }
  .u-pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-sm-10 {
    margin-top: 10px !important;
  }
  .u-mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-sm-10 {
    padding-top: 10px !important;
  }
  .u-pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-sm-15 {
    margin-top: 15px !important;
  }
  .u-mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-sm-15 {
    padding-top: 15px !important;
  }
  .u-pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-sm-20 {
    margin-top: 20px !important;
  }
  .u-mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-sm-20 {
    padding-top: 20px !important;
  }
  .u-pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-sm-25 {
    margin-top: 25px !important;
  }
  .u-mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-sm-25 {
    padding-top: 25px !important;
  }
  .u-pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-sm-30 {
    margin-top: 30px !important;
  }
  .u-mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-sm-30 {
    padding-top: 30px !important;
  }
  .u-pb-sm-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-md-0 {
    margin-top: 0px !important;
  }
  .u-mb-md-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-md-0 {
    padding-top: 0px !important;
  }
  .u-pb-md-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-md-5 {
    margin-top: 5px !important;
  }
  .u-mb-md-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-md-5 {
    padding-top: 5px !important;
  }
  .u-pb-md-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-md-10 {
    margin-top: 10px !important;
  }
  .u-mb-md-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-md-10 {
    padding-top: 10px !important;
  }
  .u-pb-md-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-md-15 {
    margin-top: 15px !important;
  }
  .u-mb-md-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-md-15 {
    padding-top: 15px !important;
  }
  .u-pb-md-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-md-20 {
    margin-top: 20px !important;
  }
  .u-mb-md-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-md-20 {
    padding-top: 20px !important;
  }
  .u-pb-md-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-md-25 {
    margin-top: 25px !important;
  }
  .u-mb-md-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-md-25 {
    padding-top: 25px !important;
  }
  .u-pb-md-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-md-30 {
    margin-top: 30px !important;
  }
  .u-mb-md-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-md-30 {
    padding-top: 30px !important;
  }
  .u-pb-md-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 991px) {
  .u-mt-lg-0 {
    margin-top: 0px !important;
  }
  .u-mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-lg-0 {
    padding-top: 0px !important;
  }
  .u-pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-lg-5 {
    margin-top: 5px !important;
  }
  .u-mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-lg-5 {
    padding-top: 5px !important;
  }
  .u-pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-lg-10 {
    margin-top: 10px !important;
  }
  .u-mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-lg-10 {
    padding-top: 10px !important;
  }
  .u-pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-lg-15 {
    margin-top: 15px !important;
  }
  .u-mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-lg-15 {
    padding-top: 15px !important;
  }
  .u-pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-lg-20 {
    margin-top: 20px !important;
  }
  .u-mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-lg-20 {
    padding-top: 20px !important;
  }
  .u-pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-lg-25 {
    margin-top: 25px !important;
  }
  .u-mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-lg-25 {
    padding-top: 25px !important;
  }
  .u-pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-lg-30 {
    margin-top: 30px !important;
  }
  .u-mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-lg-30 {
    padding-top: 30px !important;
  }
  .u-pb-lg-30 {
    padding-bottom: 30px !important;
  }
}
/**
  @text
---------------------------------------------------------
  utility/_text.scss
--------------------------------------------------------- */
.u-text-red {
  color: #ca0e15;
}
.u-text-blu {
  color: #5c4420;
}
.u-text-gry {
  color: #999999;
}
.u-text-pnk {
  color: #ec7065;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-mid {
  font-weight: 500;
}
.u-text-bold {
  font-weight: 700;
}
.u-text-lg {
  font-size: var(--fz2);
}
.u-text-md {
  font-size: var(--fz1);
}
.u-text-small {
  font-size: var(--fz-1);
}
.u-text-xs {
  font-size: var(--fz-2);
}
.u-text-smaller {
  font-size: 70%;
}
.u-text-sep {
  display: inline-block;
}
.u-text-sup {
  font-size: 10px;
}
.u-text-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffde6b));
  background: linear-gradient(transparent 50%, #ffde6b 0%);
}

/**
  @inview
---------------------------------------------------------
  javascript/_inview.scss
--------------------------------------------------------- */
[data-slideup] {
  translate: 0 2rem;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-slideup].is-inview {
  translate: 0 0;
  opacity: 1;
}