@charset "UTF-8";
/*###################################################################
※※※※ 直接編集禁止 ※※※※
このCSSファイルはSassから生成されていますので直接編集しないようご注意ください。
  編集は拡張子「.scss」ファイルを編集して当ファイルにコンパイルしてください。
  もしくは別途cssファイルを作成して読み込ませてください。
###################################################################*/
:root {
  --base: #fff;
  --main: #5a8093;
  --accent: #534731;
  --accent2: #cadae2;
  --bg: #e9f0f0;
  --text: #5a8093;
}

/*###################################################################
  base（共通設定）
###################################################################*/
/*----------------------------------
  html
----------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  container-type: inline-size;
  background-color: var(--bg);
  color: var(--text);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

img {
  width: 100%;
  height: auto;
}

/*###################################################################
  animation（共通設定）
###################################################################*/
/*----------------------------------
  zoom
----------------------------------*/
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*----------------------------------
  header-in
----------------------------------*/
@-webkit-keyframes header-in {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes header-in {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--bg);
  padding-top: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .header {
    padding-top: 0;
  }
}
.header_sticky {
  position: fixed;
  -webkit-animation: header-in 0.4s ease;
          animation: header-in 0.4s ease;
}
.header__title {
  width: 1px;
  height: 1px;
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
          clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  position: absolute;
  border: 0;
  padding: 0;
}
.header__inner {
  max-width: 88.8888888889cqw;
  width: 100%;
  height: 5.5555555556cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1.0416666667cqw;
     -moz-column-gap: 1.0416666667cqw;
          column-gap: 1.0416666667cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .header__inner {
    max-width: 89.3333333333cqw;
    height: 13.3333333333cqw;
  }
}
.header__logo {
  display: none;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 27.4666666667cqw;
    width: 100%;
    display: block;
  }
}
.header__nav {
  max-width: 45.9722222222cqw;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  width: 100%;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8333333333cqw;
     -moz-column-gap: 0.8333333333cqw;
          column-gap: 0.8333333333cqw;
}
.header__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.2777777778cqw;
  white-space: nowrap;
}
.header__en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(1.1111111111cqw, 0.6875rem);
  font-weight: bold;
}
.header__jp {
  font-size: max(0.9722222222cqw, 0.625rem);
  font-weight: 500;
}
.header__buttons {
  max-width: max(30.5555555556cqw, 275px);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(0.6944444444cqw, 6.25px);
     -moz-column-gap: max(0.6944444444cqw, 6.25px);
          column-gap: max(0.6944444444cqw, 6.25px);
}
@media (max-width: 768px) {
  .header__buttons {
    display: none;
  }
}
.header__tel {
  max-width: max(13.1944444444cqw, 118.75px);
  width: 100%;
  height: max(2.7777777778cqw, 25px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: max(0.3472222222cqw, 3.125px);
     -moz-column-gap: max(0.3472222222cqw, 3.125px);
          column-gap: max(0.3472222222cqw, 3.125px);
  background-color: var(--main);
  color: var(--base);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(1.0416666667cqw, 0.625rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-radius: 5px;
}
.header__tel::before {
  content: "";
  min-width: max(1.25cqw, 11.25px);
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.header__web {
  max-width: max(9.7222222222cqw, 87.5px);
  width: 100%;
  height: max(2.7777777778cqw, 25px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: max(0.3472222222cqw, 3.125px);
     -moz-column-gap: max(0.3472222222cqw, 3.125px);
          column-gap: max(0.3472222222cqw, 3.125px);
  background-color: var(--main);
  color: var(--base);
  font-size: max(1.0416666667cqw, 0.625rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-radius: 5px;
}
.header__web::before {
  content: "";
  min-width: max(0.8333333333cqw, 7.5px);
  aspect-ratio: 12/18;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.header__line {
  min-width: max(2.7777777778cqw, 25px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__line::before {
  content: "";
  width: 100%;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.header__instagram {
  min-width: max(2.7777777778cqw, 25px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__instagram::before {
  content: "";
  width: 100%;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-instagram.svg);
          mask-image: url(../images/icon-instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .header__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .header__link:hover, .header__link:focus {
    color: var(--accent);
  }
  .header__tel, .header__web {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .header__tel::before, .header__web::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__tel:hover, .header__tel:focus, .header__web:hover, .header__web:focus {
    background-color: var(--accent);
  }
  .header__line::before, .header__instagram::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__line:hover::before, .header__line:focus::before, .header__instagram:hover::before, .header__instagram:focus::before {
    background-color: var(--accent);
  }
}
/*###################################################################
  footer（module）
###################################################################*/
.footer-contact {
  background: url(../images/footer-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/footer-bg.webp) 1x, url(../images/footer-bg@2x.webp) 2x);
  background-image: image-set(url(../images/footer-bg.webp) 1x, url(../images/footer-bg@2x.webp) 2x);
  margin-top: 6.9444444444cqw;
  padding-block: 4.1666666667cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .footer-contact {
    background-image: -webkit-image-set(url(../images/footer-bg_sp.webp) 1x, url(../images/footer-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/footer-bg_sp.webp) 1x, url(../images/footer-bg_sp@2x.webp) 2x);
    margin-top: 10.6666666667cqw;
    padding: 8cqw 5.3333333333cqw;
  }
}
.footer-contact__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .footer-contact__inner {
    row-gap: 5.3333333333cqw;
  }
}
.footer-contact__text {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--base);
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-contact__text {
    font-size: 3.4666666667cqw;
  }
}
.footer-contact__buttons {
  max-width: max(27.7777777778cqw, 346.667px);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(0.6944444444cqw, 8.667px);
     -moz-column-gap: max(0.6944444444cqw, 8.667px);
          column-gap: max(0.6944444444cqw, 8.667px);
}
@media (max-width: 768px) {
  .footer-contact__buttons {
    max-width: 100%;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
  }
}
.footer-contact__tel {
  max-width: max(13.8888888889cqw, 173.333px);
  width: 100%;
  height: max(2.7777777778cqw, 34.667px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(0.3472222222cqw, 4.333px);
     -moz-column-gap: max(0.3472222222cqw, 4.333px);
          column-gap: max(0.3472222222cqw, 4.333px);
  color: var(--base);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(1.0416666667cqw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 2px solid var(--base);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .footer-contact__tel {
    max-width: 42.6666666667cqw;
    height: 10.6666666667cqw;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
    font-size: 3.4666666667cqw;
  }
}
.footer-contact__tel::before {
  content: "";
  min-width: max(1.25cqw, 15.6px);
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .footer-contact__tel::before {
    min-width: 4.8cqw;
  }
}
.footer-contact__web {
  max-width: max(9.7222222222cqw, 121.333px);
  width: 100%;
  height: max(2.7777777778cqw, 34.667px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(0.3472222222cqw, 4.333px);
     -moz-column-gap: max(0.3472222222cqw, 4.333px);
          column-gap: max(0.3472222222cqw, 4.333px);
  color: var(--base);
  font-size: max(1.0416666667cqw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 2px solid var(--base);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .footer-contact__web {
    max-width: 32cqw;
    height: 10.6666666667cqw;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
    font-size: 3.4666666667cqw;
  }
}
.footer-contact__web::before {
  content: "";
  min-width: max(0.8333333333cqw, 10.4px);
  aspect-ratio: 12/18;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .footer-contact__web::before {
    min-width: 3.2cqw;
  }
}
.footer-contact__line {
  min-width: max(2.7777777778cqw, 34.667px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer-contact__line {
    min-width: 10.6666666667cqw;
  }
}
.footer-contact__line::before {
  content: "";
  width: 100%;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact__tel, .footer-contact__web {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .footer-contact__tel::before, .footer-contact__web::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer-contact__tel:hover, .footer-contact__tel:focus, .footer-contact__web:hover, .footer-contact__web:focus {
    background-color: var(--base);
    color: var(--main);
  }
  .footer-contact__tel:hover::before, .footer-contact__tel:focus::before, .footer-contact__web:hover::before, .footer-contact__web:focus::before {
    background-color: var(--main);
  }
  .footer-contact__line::before {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .footer-contact__line:hover::before, .footer-contact__line:focus::before {
    opacity: 0.7;
  }
}
.footer__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4.1666666667cqw;
}
@media (max-width: 768px) {
  .footer__main {
    margin-top: 10.6666666667cqw;
  }
}
.footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.1666666667cqw;
     -moz-column-gap: 4.1666666667cqw;
          column-gap: 4.1666666667cqw;
}
.footer__logo {
  max-width: 16.6666666667cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 36.5333333333cqw;
  }
}
.footer__instagram {
  min-width: 4.1666666667cqw;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .footer__instagram {
    min-width: 10.6666666667cqw;
    margin-top: 5.3333333333cqw;
  }
}
.footer__instagram::before {
  content: "";
  width: 100%;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-instagram.svg);
          mask-image: url(../images/icon-instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer__copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #d4e1e1;
  margin-top: 4.1666666667cqw;
  padding: 2.0833333333cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .footer__copy {
    margin-top: 5.3333333333cqw;
    padding: 8cqw 2.6666666667cqw 32cqw;
  }
}
.footer__copy-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(0.9722222222cqw, 0.6875rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer__copy-text {
    font-size: 3.2cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer__logo {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .footer__logo:hover, .footer__logo:focus {
    opacity: 0.7;
  }
  .footer__instagram::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__instagram:hover::before, .footer__instagram:focus::before {
    background-color: var(--accent);
  }
}
@media (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.7777777778cqw;
     -moz-column-gap: 2.7777777778cqw;
          column-gap: 2.7777777778cqw;
}
.footer-nav__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.2777777778cqw;
  line-height: 1.2;
  white-space: nowrap;
}
.footer-nav__en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(1.1111111111cqw, 0.6875rem);
  font-weight: 500;
}
.footer-nav__jp {
  font-size: max(0.9722222222cqw, 0.625rem);
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .footer-nav__link:hover, .footer-nav__link:focus {
    color: var(--accent);
  }
}
.footer-sp-nav {
  display: none;
}
@media (max-width: 768px) {
  .footer-sp-nav {
    max-width: 74.6666666667cqw;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2.6666666667cqw;
       -moz-column-gap: 2.6666666667cqw;
            column-gap: 2.6666666667cqw;
    position: fixed;
    bottom: 5.3333333333cqw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 5;
  }
}
.footer-sp-nav__tel {
  min-width: 10.6666666667cqw;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--main);
  border-radius: 5px;
}
.footer-sp-nav__tel::before {
  content: "";
  min-width: 4.8cqw;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer-sp-nav__web {
  max-width: 34.6666666667cqw;
  width: 100%;
  height: 10.6666666667cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3333333333cqw;
     -moz-column-gap: 1.3333333333cqw;
          column-gap: 1.3333333333cqw;
  background-color: var(--main);
  color: var(--base);
  font-size: 3.4666666667cqw;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-radius: 5px;
}
.footer-sp-nav__web::before {
  content: "";
  min-width: 2.6666666667cqw;
  aspect-ratio: 10/15;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer-sp-nav__line {
  min-width: 10.6666666667cqw;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  background: -webkit-linear-gradient(var(--base), var(--base)) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  background: linear-gradient(var(--base), var(--base)) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  border-radius: 22.5%;
}
.footer-sp-nav__line::before {
  content: "";
  width: 100%;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer-sp-nav__instagram {
  min-width: 10.6666666667cqw;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  background: -webkit-linear-gradient(var(--base), var(--base)) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  background: linear-gradient(var(--base), var(--base)) no-repeat center center/calc(100% - 2px) calc(100% - 2px);
  border-radius: 30%;
}
.footer-sp-nav__instagram::before {
  content: "";
  width: 100%;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-instagram.svg);
          mask-image: url(../images/icon-instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

/*###################################################################
  c-title（module）
###################################################################*/
.c-title-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .c-title-1 {
    row-gap: 5.3333333333cqw;
  }
}
.c-title-1_white {
  color: var(--base);
}
.c-title-1_white .c-title-1__en::after {
  background-color: var(--base);
}
.c-title-1_nowrap .c-title-1__en {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-title-1_nowrap .c-title-1__en {
    font-size: 7.4666666667cqw;
  }
}
.c-title-1__en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.3888888889cqw;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(3.3333333333cqw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .c-title-1__en {
    row-gap: 5.3333333333cqw;
    font-size: 8.5333333333cqw;
  }
}
.c-title-1__en::after {
  content: "";
  width: 2.0833333333cqw;
  height: 2px;
  background-color: var(--main);
}
@media (max-width: 768px) {
  .c-title-1__en::after {
    width: 8cqw;
  }
}
.c-title-1__jp {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .c-title-1__jp {
    font-size: 4cqw;
  }
}

.c-title-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.3888888889cqw;
  font-size: max(2.7777777778cqw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-title-2 {
    row-gap: 5.3333333333cqw;
    font-size: 6.9333333333cqw;
  }
}
.c-title-2::after {
  content: "";
  width: 2.0833333333cqw;
  height: 2px;
  background-color: var(--main);
}
@media (max-width: 768px) {
  .c-title-2::after {
    width: 8cqw;
  }
}

/*###################################################################
  c-link（module）
###################################################################*/
.c-link-1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 3.8194444444cqw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.6944444444cqw;
     -moz-column-gap: 0.6944444444cqw;
          column-gap: 0.6944444444cqw;
  position: relative;
  background-color: var(--accent);
  color: var(--base);
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 5px;
  padding-inline: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .c-link-1 {
    height: 12cqw;
    -webkit-column-gap: 2.6666666667cqw;
       -moz-column-gap: 2.6666666667cqw;
            column-gap: 2.6666666667cqw;
    font-size: 4cqw;
    padding-inline: 5.3333333333cqw;
  }
}
.c-link-1::before {
  content: "";
  min-width: 2.8472222222cqw;
  aspect-ratio: 41/4;
  position: absolute;
  top: 50%;
  right: 2.7083333333cqw;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow.svg);
          mask-image: url(../images/icon-link-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .c-link-1::before {
    min-width: 8.2666666667cqw;
    right: 5.3333333333cqw;
  }
}
.c-link-1::after {
  content: "";
  min-width: 2.4305555556cqw;
  aspect-ratio: 1/1;
  border: 1px solid var(--base);
  border-radius: 50%;
  margin-right: 1.4583333333cqw;
}
@media (max-width: 768px) {
  .c-link-1::after {
    min-width: 6.6666666667cqw;
    margin-right: 4.8cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-link-1 {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .c-link-1:hover, .c-link-1:focus {
    background-color: var(--main);
  }
}
/*###################################################################
  br（module）
###################################################################*/
.br-1000-b {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000-b {
    display: block;
  }
}
.br-900-b {
  display: none;
}
@media (max-width: 900px) {
  .br-900-b {
    display: block;
  }
}
.br-800-b {
  display: none;
}
@media (max-width: 800px) {
  .br-800-b {
    display: block;
  }
}
.br-sp-b {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-b {
    display: block;
  }
}
.br-600-b {
  display: none;
}
@media (max-width: 600px) {
  .br-600-b {
    display: block;
  }
}
.br-500-b {
  display: none;
}
@media (max-width: 500px) {
  .br-500-b {
    display: block;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 8cqw;
  height: 5.0666666667cqw;
  position: relative;
  z-index: 30;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(2.1333333333cqw) rotate(45deg);
      -ms-transform: translateY(2.1333333333cqw) rotate(45deg);
          transform: translateY(2.1333333333cqw) rotate(45deg);
  background-color: var(--base);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(-2.1333333333cqw) rotate(-45deg);
      -ms-transform: translateY(-2.1333333333cqw) rotate(-45deg);
          transform: translateY(-2.1333333333cqw) rotate(-45deg);
  background-color: var(--base);
}
.hamburger__line {
  width: 100%;
  height: 0.8cqw;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  background-color: var(--main);
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 0.8cqw;
  position: absolute;
  top: -2.1333333333cqw;
  left: 0;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease, -webkit-transform 0.5s ease;
  background-color: var(--main);
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 0.8cqw;
  position: absolute;
  bottom: -2.1333333333cqw;
  left: 0;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease, -webkit-transform 0.5s ease;
  background-color: var(--main);
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .hamburger:hover, .hamburger:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  background-color: var(--main);
  overscroll-behavior-y: contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 769px) {
  .drawer {
    display: none;
  }
}
.drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.drawer__nav {
  padding-block: 26.6666666667cqw 16cqw;
}
.drawer__items {
  max-width: 33.6cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10.6666666667cqw;
  margin-inline: auto;
}
.drawer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.0666666667cqw;
  color: var(--base);
  white-space: nowrap;
}
.drawer__en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 4.2666666667cqw;
  font-weight: bold;
}
.drawer__jp {
  font-size: 3.7333333333cqw;
  font-weight: 500;
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}

/*###################################################################
  hover（module）
###################################################################*/
@media (hover: hover) and (pointer: fine) {
  .op {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op:hover, .op:focus {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fn {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fn:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-im {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-im:hover, .op-im:focus {
    opacity: 0.7 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fnim {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fnim:hover {
    opacity: 0.7 !important;
  }
}
/*###################################################################
  lower（module）
###################################################################*/
.lower-mv {
  max-width: 94.4444444444cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .lower-mv {
    max-width: 89.3333333333cqw;
  }
}
.lower-mv_pos {
  margin-top: 8.3333333333cqw;
}
@media (max-width: 768px) {
  .lower-mv_pos {
    margin-top: 18.6666666667cqw;
  }
}
.lower-mv__img {
  overflow: hidden;
  border-radius: 0 40px 40px 0;
}
@media (max-width: 768px) {
  .lower-mv__img {
    aspect-ratio: 335/200;
  }
  .lower-mv__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.lower-mv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 0.6944444444cqw;
  margin-top: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .lower-mv__title {
    row-gap: 1.3333333333cqw;
    margin-top: 4cqw;
  }
}
.lower-mv__en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(4.4444444444cqw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .lower-mv__en {
    font-size: 9.6cqw;
  }
}
.lower-mv__jp {
  font-size: max(1.6666666667cqw, 0.875rem);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .lower-mv__jp {
    font-size: 4cqw;
  }
}

/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
.mce-content-body {
  display: flow-root;
  zoom: 1;
  color: var(--text);
  line-height: 1.875;
  word-break: break-word;
}
.mce-content-body > * {
  margin-top: 1.5em;
}
.mce-content-body .wp-block-columns,
.mce-content-body .wp-block-group,
.mce-content-body .wp-block-buttons,
.mce-content-body .wp-block-cover,
.mce-content-body .wp-block-media-text,
.mce-content-body .wp-block-file,
.mce-content-body .wp-block-details {
  margin-top: 1.5em;
}
.mce-content-body > *:first-child {
  margin-top: 0;
}
.mce-content-body > .wp-block-spacer {
  margin-top: 0;
}
.mce-content-body .wp-block-column > *:first-child,
.mce-content-body .wp-block-group > *:first-child,
.mce-content-body .wp-block-cover__inner-container > *:first-child,
.mce-content-body .wp-block-media-text__content > *:first-child,
.mce-content-body .wp-block-details > *:first-child {
  margin-top: 0;
}
.mce-content-body.acf_content {
  overflow: auto;
}
.mce-content-body h1 {
  font-size: inherit;
  font-weight: normal;
}
.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4,
.mce-content-body h5,
.mce-content-body h6 {
  font-weight: bold;
  line-height: 1.75;
  margin: 3em 0 1.5em;
  clear: both;
}
.mce-content-body h2 {
  font-size: 1.375rem;
  border-left: 5px solid var(--main);
  padding: 2px 0 2px 10px;
}
.mce-content-body h3 {
  font-size: 1.375rem;
  border-bottom: 2px solid var(--main);
  padding-bottom: 10px;
}
.mce-content-body h4 {
  font-size: 1.25rem;
}
.mce-content-body h5 {
  font-size: 1.125rem;
}
.mce-content-body h6 {
  font-size: 1rem;
}
.mce-content-body p {
  line-height: 1.8;
  margin-top: 1.5em;
}
.mce-content-body em {
  font-style: italic;
}
.mce-content-body pre {
  overflow: auto;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-top: 1.5em;
  padding: 7px 12px;
}
.mce-content-body blockquote {
  color: #777;
  border-left: 5px solid #ddd;
  margin: 1.5em 0;
  padding: 0.5em 0 0.5em 10px;
}
.mce-content-body blockquote > *:first-child {
  margin-top: 0;
}
.mce-content-body ul,
.mce-content-body ol {
  margin-top: 1.5em;
  padding-left: 0;
  clear: both;
}
.mce-content-body ul ul,
.mce-content-body ul ol,
.mce-content-body ol ul,
.mce-content-body ol ol {
  margin-top: 0;
}
.mce-content-body ul {
  list-style-type: disc;
}
.mce-content-body ol {
  list-style-type: decimal;
}
.mce-content-body li {
  margin-left: 1.5em;
}
.mce-content-body a {
  color: #0000ee;
  text-decoration: underline;
}
.mce-content-body img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.mce-content-body figure {
  margin-top: 1.5em;
}
.mce-content-body figcaption {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: center;
  margin-top: 0.5em;
}
.mce-content-body hr {
  margin-top: 1.5em;
  clear: both;
}
.mce-content-body .aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.mce-content-body .aligncenter:not([class*=wp-block-]) {
  display: block;
}
.mce-content-body .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.mce-content-body .alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.mce-content-body .alignwide,
.mce-content-body .alignfull {
  max-width: 100%;
  margin-inline: 0;
}
.mce-content-body .wp-caption,
.mce-content-body [class*=wp-image] {
  max-width: 100% !important;
  display: block;
  text-align: center;
  margin-top: 1.5em;
}
.mce-content-body .wp-caption-text {
  margin-top: 0;
}
.mce-content-body .wp-block-image a {
  display: inline-block;
}
.mce-content-body div.wp-block-image {
  display: contents;
}
.mce-content-body .wp-block-table {
  overflow-x: auto;
}
.mce-content-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.mce-content-body .wp-block-table th,
.mce-content-body .wp-block-table td {
  border: 1px solid #ddd;
  padding: 10px;
}
.mce-content-body .wp-block-table th {
  background-color: var(--bg);
}
.mce-content-body .wp-block-embed.aligncenter {
  text-align: center;
}
.mce-content-body .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.mce-content-body .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.mce-content-body .wp-block-embed iframe {
  max-width: 100%;
}
.mce-content-body .wp-block-button__link {
  background-color: var(--main);
  color: var(--base);
  text-decoration: none;
  border-radius: 0;
}
.mce-content-body .wp-block-file {
  font-size: 1rem;
  line-height: 1.75;
}
.mce-content-body .wp-block-file .wp-block-file__button {
  background-color: var(--main);
  color: var(--base);
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0;
}
.mce-content-body::after {
  content: "";
  display: block;
  clear: both;
}

@media (hover: hover) and (pointer: fine) {
  .mce-content-body .wp-block-button__link,
  .mce-content-body .wp-block-file__button {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .mce-content-body .wp-block-button__link:hover, .mce-content-body .wp-block-button__link:focus,
  .mce-content-body .wp-block-file__button:hover,
  .mce-content-body .wp-block-file__button:focus {
    background-color: var(--accent);
  }
}
/*###################################################################
  top（page）
###################################################################*/
.top-mv {
  position: relative;
}
@media (max-width: 768px) {
  .top-mv {
    padding-bottom: 16.5333333333cqw;
  }
}
.top-mv_pos {
  margin-top: 8.3333333333cqw;
}
@media (max-width: 768px) {
  .top-mv_pos {
    margin-top: 18.6666666667cqw;
  }
}
.top-mv__swiper {
  max-width: 83.3333333333cqw;
  width: 100%;
  overflow: hidden;
  border-radius: 0 40px 40px 0;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .top-mv__swiper {
    max-width: 89.3333333333cqw;
  }
}
.top-mv__logo {
  max-width: 22.2222222222cqw;
  width: 100%;
  position: absolute;
  top: 5.5555555556cqw;
  right: 5.5555555556cqw;
  z-index: 3;
}
@media (max-width: 768px) {
  .top-mv__logo {
    max-width: 50.6666666667cqw;
    top: 104.5333333333cqw;
    right: 5.3333333333cqw;
  }
}
.top-mv .swiper-slide-active img,
.top-mv .swiper-slide-duplicate-active img,
.top-mv .swiper-slide-prev img {
  -webkit-animation: zoom 7s linear 0s normal both;
          animation: zoom 7s linear 0s normal both;
}

.top-news_pos {
  margin-top: 4.1666666667cqw;
}
@media (max-width: 768px) {
  .top-news_pos {
    margin-top: 37.8666666667cqw;
  }
}
.top-news__inner {
  width: 100%;
  padding-inline: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .top-news__inner {
    padding-inline: 5.3333333333cqw;
  }
}
.top-news__items {
  max-width: 55.5555555556cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.0416666667cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-news__items {
    max-width: 100%;
    row-gap: 4cqw;
    margin-top: 5.3333333333cqw;
  }
}
.top-news__item {
  border-bottom: 1px solid var(--main);
  padding-bottom: 1.0416666667cqw;
}
@media (max-width: 768px) {
  .top-news__item {
    padding-bottom: 4cqw;
  }
}
.top-news__link {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 2.7777777778cqw;
     -moz-column-gap: 2.7777777778cqw;
          column-gap: 2.7777777778cqw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.0416666667cqw, 0.75rem);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-news__link {
    -webkit-column-gap: 2.6666666667cqw;
       -moz-column-gap: 2.6666666667cqw;
            column-gap: 2.6666666667cqw;
    font-size: 3.4666666667cqw;
  }
}
.top-news__link_empty {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-news__date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.top-news__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .top-news__button {
    margin-top: 8cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-news__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .top-news__link:hover, .top-news__link:focus {
    color: var(--accent);
  }
}
.top-reservation_pos {
  margin-top: 5.2083333333cqw;
}
@media (max-width: 768px) {
  .top-reservation_pos {
    margin-top: 9.3333333333cqw;
  }
}
.top-reservation__link {
  max-width: 37.2916666667cqw;
  width: 100%;
  aspect-ratio: 537/209;
  display: block;
  position: relative;
  background: url(../images/top-reservation-bg.webp) no-repeat center center/cover;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 52, 56, 0.4)), to(rgba(43, 52, 56, 0.4))), image-set(url(../images/top-reservation-bg.webp) 1x, url(../images/top-reservation-bg@2x.webp) 2x);
  background-image: -webkit-linear-gradient(rgba(43, 52, 56, 0.4), rgba(43, 52, 56, 0.4)), -webkit-image-set(url(../images/top-reservation-bg.webp) 1x, url(../images/top-reservation-bg@2x.webp) 2x);
  background-image: linear-gradient(rgba(43, 52, 56, 0.4), rgba(43, 52, 56, 0.4)), image-set(url(../images/top-reservation-bg.webp) 1x, url(../images/top-reservation-bg@2x.webp) 2x);
  border-radius: 20px;
  padding: 1.8055555556cqw 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-reservation__link {
    max-width: 89.3333333333cqw;
    border-radius: 12px;
    padding: 4.2666666667cqw 6.6666666667cqw;
  }
}
.top-reservation__link::before {
  content: "";
  min-width: 2.4305555556cqw;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 1.8055555556cqw;
  left: 2.7777777778cqw;
  border: 1px solid var(--base);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .top-reservation__link::before {
    min-width: 5.8666666667cqw;
    bottom: 4.2666666667cqw;
    left: 6.6666666667cqw;
  }
}
.top-reservation__link::after {
  content: "";
  min-width: 2.8472222222cqw;
  aspect-ratio: 41/4;
  position: absolute;
  bottom: 2.8819444444cqw;
  left: 3.8888888889cqw;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow.svg);
          mask-image: url(../images/icon-link-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .top-reservation__link::after {
    min-width: 6.9333333333cqw;
    bottom: 6.9333333333cqw;
    left: 9.3333333333cqw;
  }
}
.top-reservation__text {
  color: var(--base);
  font-size: max(2.2222222222cqw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 4px 4px 14px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .top-reservation__text {
    font-size: 5.3333333333cqw;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.8);
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-reservation__link {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .top-reservation__link:hover, .top-reservation__link:focus {
    opacity: 0.8;
  }
}
.top-about {
  position: relative;
}
@media (max-width: 768px) {
  .top-about {
    overflow-x: clip;
  }
}
.top-about_pos {
  margin-top: 9.7222222222cqw;
}
@media (max-width: 768px) {
  .top-about_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-about__deco {
  max-width: 10.6944444444cqw;
  width: 100%;
  position: absolute;
  top: -4.1666666667cqw;
}
@media (max-width: 768px) {
  .top-about__deco {
    max-width: 24cqw;
    top: 2.6666666667cqw;
  }
}
.top-about__deco_left {
  left: 8.3333333333cqw;
}
@media (max-width: 768px) {
  .top-about__deco_left {
    left: -6.6666666667cqw;
  }
}
.top-about__deco_right {
  right: 8.3333333333cqw;
}
@media (max-width: 768px) {
  .top-about__deco_right {
    right: -4cqw;
  }
}
.top-about__text {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-about__text {
    font-size: 3.4666666667cqw;
    margin-top: 5.3333333333cqw;
  }
}
.top-about__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5694444444cqw;
}
@media (max-width: 768px) {
  .top-about__button {
    margin-top: 4.2666666667cqw;
  }
}

.top-feature_pos {
  margin-top: 8.8888888889cqw;
}
@media (max-width: 768px) {
  .top-feature_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-feature__items {
  max-width: 88.8888888889cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.7777777778cqw;
     -moz-column-gap: 2.7777777778cqw;
          column-gap: 2.7777777778cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-feature__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: 1fr;
    row-gap: 5.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.top-feature__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--base);
  border: 2px solid var(--main);
  border-radius: 30px;
  padding-block: 1.25cqw;
}
@media (max-width: 768px) {
  .top-feature__item {
    padding-block: 4.8cqw;
  }
}
.top-feature__img {
  max-width: 25cqw;
  width: 100%;
  aspect-ratio: 360/240;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .top-feature__img {
    max-width: 78.6666666667cqw;
    aspect-ratio: 295/200;
  }
}
.top-feature__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-feature__body {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .top-feature__body {
    row-gap: 2.6666666667cqw;
  }
}
.top-feature__num {
  color: var(--accent2);
  font-family: "Allison", cursive;
  font-size: max(6.6666666667cqw, 3rem);
}
@media (max-width: 768px) {
  .top-feature__num {
    font-size: 12.8cqw;
  }
}
.top-feature__title {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .top-feature__title {
    font-size: 4.8cqw;
  }
}
.top-feature__text {
  max-width: 25cqw;
  width: 100%;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .top-feature__text {
    max-width: 78.6666666667cqw;
    font-size: 3.4666666667cqw;
  }
}
.top-feature__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .top-feature__button {
    margin-top: 5.3333333333cqw;
  }
}

.top-insta_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .top-insta_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-insta__feed {
  max-width: 88.5416666667cqw;
  width: 100%;
  margin-top: 2.6388888889cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-insta__feed {
    max-width: 78.6666666667cqw;
    margin-top: 9.8666666667cqw;
  }
}
.top-insta__feed #sb_instagram.sbi {
  padding-bottom: 0 !important;
}
.top-insta__feed #sb_instagram.sbi #sbi_images {
  padding-block: 0;
}
@media (max-width: 768px) {
  .top-insta__feed #sb_instagram.sbi #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-insta__banner {
  max-width: 53.3333333333cqw;
  width: 100%;
  display: block;
  margin-top: 2.6388888889cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-insta__banner {
    max-width: 89.3333333333cqw;
    margin-top: 9.8666666667cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-insta__banner {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .top-insta__banner:hover, .top-insta__banner:focus {
    opacity: 0.8;
  }
}
.top-menu {
  position: relative;
}
.top-menu_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .top-menu_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-menu__img {
  max-width: 77.7777777778cqw;
  width: 100%;
  aspect-ratio: 1120/400;
  overflow: hidden;
  border-radius: 30px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-menu__img {
    max-width: 89.3333333333cqw;
    aspect-ratio: 335/200;
  }
}
.top-menu__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-menu .c-title-1 {
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .top-menu .c-title-1 {
    margin-top: 5.3333333333cqw;
  }
}
.top-menu__text {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-menu__text {
    font-size: 3.4666666667cqw;
    margin-top: 4.8cqw;
  }
}
.top-menu__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.3888888889cqw;
     -moz-column-gap: 1.3888888889cqw;
          column-gap: 1.3888888889cqw;
  margin-top: 2.7777777778cqw;
}
@media (max-width: 768px) {
  .top-menu__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 4.5333333333cqw;
    margin-top: 4.5333333333cqw;
  }
}
@media (max-width: 768px) {
  .top-menu__buttons .c-link-1 {
    max-width: 64cqw;
    width: 100%;
  }
  .top-menu__buttons .c-link-1::before {
    right: 8.8cqw;
  }
}
.top-menu__deco {
  max-width: 12.6388888889cqw;
  width: 100%;
  position: absolute;
  top: 51.6666666667cqw;
}
@media (max-width: 768px) {
  .top-menu__deco {
    max-width: 16.2666666667cqw;
    top: 70.4cqw;
  }
}
.top-menu__deco_left {
  left: 5.4861111111cqw;
}
@media (max-width: 768px) {
  .top-menu__deco_left {
    left: 5.3333333333cqw;
  }
}
.top-menu__deco_right {
  right: 5.4861111111cqw;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (max-width: 768px) {
  .top-menu__deco_right {
    right: 5.3333333333cqw;
  }
}

.top-reviews_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .top-reviews_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-reviews__link {
  max-width: 37.2916666667cqw;
  width: 100%;
  aspect-ratio: 537/209;
  display: block;
  position: relative;
  background: url(../images/top-reviews-bg.webp) no-repeat center center/cover;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 52, 56, 0.4)), to(rgba(43, 52, 56, 0.4))), image-set(url(../images/top-reviews-bg.webp) 1x, url(../images/top-reviews-bg@2x.webp) 2x);
  background-image: -webkit-linear-gradient(rgba(43, 52, 56, 0.4), rgba(43, 52, 56, 0.4)), -webkit-image-set(url(../images/top-reviews-bg.webp) 1x, url(../images/top-reviews-bg@2x.webp) 2x);
  background-image: linear-gradient(rgba(43, 52, 56, 0.4), rgba(43, 52, 56, 0.4)), image-set(url(../images/top-reviews-bg.webp) 1x, url(../images/top-reviews-bg@2x.webp) 2x);
  border-radius: 20px;
  padding: 1.8055555556cqw 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-reviews__link {
    max-width: 89.3333333333cqw;
    border-radius: 12px;
    padding: 4.2666666667cqw 6.6666666667cqw;
  }
}
.top-reviews__link::before {
  content: "";
  min-width: 2.4305555556cqw;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 1.8055555556cqw;
  right: 4.2361111111cqw;
  border: 1px solid var(--base);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .top-reviews__link::before {
    min-width: 5.8666666667cqw;
    bottom: 4.2666666667cqw;
    right: 10.1333333333cqw;
  }
}
.top-reviews__link::after {
  content: "";
  min-width: 2.8472222222cqw;
  aspect-ratio: 41/4;
  position: absolute;
  bottom: 2.8819444444cqw;
  right: 2.7777777778cqw;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow.svg);
          mask-image: url(../images/icon-link-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 768px) {
  .top-reviews__link::after {
    min-width: 6.9333333333cqw;
    bottom: 6.9333333333cqw;
    right: 6.6666666667cqw;
  }
}
.top-reviews__text {
  color: var(--base);
  font-size: max(2.2222222222cqw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .top-reviews__text {
    font-size: 5.3333333333cqw;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.8);
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-reviews__link {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .top-reviews__link:hover, .top-reviews__link:focus {
    opacity: 0.8;
  }
}
.top-item_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .top-item_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-item__text {
  max-width: 77.7777777778cqw;
  width: 100%;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-item__text {
    max-width: 89.3333333333cqw;
    font-size: 3.4666666667cqw;
    margin-top: 4.8cqw;
  }
}
.top-item__items {
  max-width: 76.3888888889cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3888888889cqw;
  margin-top: 3.8194444444cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-item__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: repeat(2, 1fr);
    gap: 4cqw;
    margin-top: 10.1333333333cqw;
  }
}
.top-item__item {
  aspect-ratio: 260/240;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .top-item__item {
    aspect-ratio: 1/1;
  }
}
.top-item__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-item__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.7222222222cqw;
}
@media (max-width: 768px) {
  .top-item__button {
    margin-top: 5.3333333333cqw;
  }
}

.top-salon_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .top-salon_pos {
    margin-top: 10.6666666667cqw;
  }
}
.top-salon__list {
  max-width: 55.5555555556cqw;
  width: 100%;
  display: grid;
  grid-template-columns: 13.1944444444cqw 41.6666666667cqw;
  -webkit-column-gap: 0.6944444444cqw;
     -moz-column-gap: 0.6944444444cqw;
          column-gap: 0.6944444444cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-salon__list {
    max-width: 89.3333333333cqw;
    grid-template-columns: 29.3333333333cqw 58.6666666667cqw;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
    margin-top: 4.8cqw;
  }
}
.top-salon__term {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border-bottom: 1px solid var(--main);
  padding: 1.3888888889cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .top-salon__term {
    font-size: 3.4666666667cqw;
    padding: 5.3333333333cqw 2.6666666667cqw;
  }
}
.top-salon__desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid var(--main);
  padding: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .top-salon__desc {
    font-size: 3.4666666667cqw;
    padding: 5.3333333333cqw 2.6666666667cqw;
  }
}
@media (max-width: 768px) {
  .top-salon__desc_multi {
    line-height: 1.6;
  }
}
.top-salon__map {
  max-width: 77.7777777778cqw;
  width: 100%;
  height: auto;
  aspect-ratio: 1120/480;
  display: block;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-salon__map {
    max-width: 89.3333333333cqw;
    aspect-ratio: 335/400;
    margin-top: 5.0666666667cqw;
  }
}

/*###################################################################
  news（page）
###################################################################*/
.news-list_pos {
  margin-top: clamp(3.125rem, 0.7396449704rem + 8.875739645vw, 5rem);
}
.news-list__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .news-list__inner {
    padding: 0 clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem);
  }
}
@media (max-width: 600px) {
  .news-list__inner {
    max-width: 400px;
  }
}
.news-list__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1.875rem, -0.3571428571rem + 5.9523809524vw, 2.5rem);
}
@media (max-width: 600px) {
  .news-list__items {
    row-gap: 50px;
  }
}
.news-list__post-link {
  display: grid;
  grid-template-columns: clamp(11.25rem, -4.375rem + 41.6666666667vw, 15.625rem) 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
     -moz-column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
          column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
  background-color: var(--base);
  border: 1px solid #75778d;
}
@media (max-width: 600px) {
  .news-list__post-link {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.news-list__thumbnail {
  max-width: 300px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .news-list__thumbnail {
    max-width: 100%;
  }
}
.news-list__thumbnail img {
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list__text-box {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 600px) {
  .news-list__text-box {
    padding-top: 0;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
  }
}
.news-list__date {
  display: block;
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
}
.news-list__post-title {
  font-size: clamp(1.125rem, 0.6785714286rem + 1.1904761905vw, 1.25rem);
  line-height: 1.75;
  text-align: start;
  word-break: break-all;
  padding-right: 15px;
}
@media (max-width: 600px) {
  .news-list__post-title {
    padding-right: 0;
  }
}
.news-list__no-post {
  height: 200px;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: 1.25rem;
  font-weight: 500;
}
.news-list__pagination {
  font-size: 1.25rem;
  margin-top: 150px;
}
@media (max-width: 768px) {
  .news-list__pagination {
    margin-top: 80px;
  }
}
.news-list__pagination ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.125rem, -0.875rem + 8vw, 2.125rem);
  margin-inline: auto;
}
.news-list__pagination ul.page-numbers li {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.news-list__pagination ul.page-numbers li .page-numbers {
  --spacing: 0;
}
.news-list__pagination .page-numbers.current {
  color: var(--main);
}

@media (hover: hover) and (pointer: fine) {
  .news-list__post-link {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .news-list__post-link:hover .news-list__thumbnail img, .news-list__post-link:focus .news-list__thumbnail img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .news-list__post-link:hover .news-list__post-title, .news-list__post-link:focus .news-list__post-title {
    color: var(--main);
    text-decoration: underline;
  }
  .news-list__thumbnail img {
    -webkit-transition: -webkit-transform ease 0.4s;
    transition: -webkit-transform ease 0.4s;
    transition: transform ease 0.4s;
    transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  }
  .news-list__post-title {
    -webkit-transition: color ease 0.4s;
    transition: color ease 0.4s;
    -webkit-text-decoration-color: var(--main);
            text-decoration-color: var(--main);
  }
  .news-list__pagination a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .news-list__pagination a:hover, .news-list__pagination a:focus {
    opacity: 0.7;
  }
}
.news-post_pos {
  margin-top: clamp(3.125rem, 0.7396449704rem + 8.875739645vw, 5rem);
}
.news-post__inner {
  max-width: 840px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .news-post__inner {
    padding: 0 clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem);
  }
}
.news-post__bg {
  background-color: var(--base);
  border: 1px solid #75778d;
  padding: 50px 20px 100px;
}
@media (max-width: 768px) {
  .news-post__bg {
    padding: 50px clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem) 100px;
  }
}
.news-post__date {
  display: block;
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-post__date {
    font-size: 1.125rem;
  }
}
.news-post__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75;
  word-break: break-all;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .news-post__title {
    font-size: 1.375rem;
    margin-top: 10px;
  }
}
.news-post__thumbnail {
  margin-top: 40px;
}
.news-post__editor {
  margin-top: 40px;
}
.news-post__page-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 1rem;
  margin-top: 40px;
}
.news-post__page-links a {
  color: var(--main);
  text-decoration: underline;
}

.news-post-pager {
  background-color: var(--base);
  border: 1px solid #75778d;
}
.news-post-pager_pos {
  max-width: 840px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .news-post-pager_pos {
    margin-top: 60px;
  }
}
.news-post-pager__nav {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
  font-size: clamp(1rem, 0.1071428571rem + 3.8095238095vw, 1.25rem);
  font-weight: 500;
  padding-right: clamp(0rem, -4.4642857143rem + 19.0476190476vw, 1.25rem);
  padding-left: clamp(0rem, -4.4642857143rem + 19.0476190476vw, 1.25rem);
}
.news-post-pager__link {
  --spacing: 0;
}
.news-post-pager__blank {
  min-width: 106px;
  min-width: clamp(5.4375rem, 0.5267857143rem + 20.9523809524vw, 6.8125rem);
}

@media (hover: hover) and (pointer: fine) {
  .news-post-pager__link {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .news-post-pager__link:hover, .news-post-pager__link:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  guide（page）
###################################################################*/
.guide1 {
  background: url(../images/guide1-bg.webp) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/guide1-bg.webp) no-repeat center top/100% auto, -webkit-linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/guide1-bg.webp) no-repeat center top/100% auto, linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background-image: image-set(url(../images/guide1-bg.webp) 1x, url(../images/guide1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base)));
  background-image: -webkit-image-set(url(../images/guide1-bg.webp) 1x, url(../images/guide1-bg@2x.webp) 2x), -webkit-linear-gradient(var(--base), var(--base));
  background-image: image-set(url(../images/guide1-bg.webp) 1x, url(../images/guide1-bg@2x.webp) 2x), linear-gradient(var(--base), var(--base));
}
.guide1_pos {
  margin-top: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .guide1_pos {
    margin-top: 5.3333333333cqw;
  }
}
.guide1__inner {
  width: 100%;
  padding: 4.1666666667cqw 2.0833333333cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .guide1__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 13.3333333333cqw;
  }
}
.guide1__steps {
  max-width: 66.6666666667cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .guide1__steps {
    max-width: 89.3333333333cqw;
    padding-left: 12cqw;
    margin-top: 5.3333333333cqw;
  }
}
.guide1__step {
  max-width: 27.7777777778cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6944444444cqw;
  position: relative;
}
@media (max-width: 768px) {
  .guide1__step {
    max-width: 100%;
    row-gap: 2.6666666667cqw;
  }
}
.guide1__step::before {
  content: "";
  width: 2.7777777778cqw;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: -6.9444444444cqw;
  z-index: 1;
  background-color: var(--base);
  border: 0.6944444444cqw solid var(--main);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .guide1__step::before {
    width: 8cqw;
    left: -12cqw;
    border-width: 2cqw;
  }
}
.guide1__step::after {
  content: "";
  width: 2px;
  height: calc(100% + 4.1666666667cqw);
  position: absolute;
  top: 1.3888888889cqw;
  left: -5.625cqw;
  background-color: var(--accent2);
}
@media (max-width: 768px) {
  .guide1__step::after {
    height: calc(100% + 8cqw);
    top: 4cqw;
    left: -8.2666666667cqw;
  }
}
.guide1__step_1 {
  margin-left: auto;
}
@media (max-width: 768px) {
  .guide1__step_1 {
    margin-left: 0;
  }
}
.guide1__step_2 {
  position: absolute;
  top: 16.7361111111cqw;
  left: 0;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .guide1__step_2 {
    position: relative;
    top: auto;
    left: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 8cqw;
  }
}
.guide1__step_2::before {
  left: auto;
  right: -6.9444444444cqw;
}
@media (max-width: 768px) {
  .guide1__step_2::before {
    right: auto;
    left: -12cqw;
  }
}
.guide1__step_2::after {
  display: none;
}
@media (max-width: 768px) {
  .guide1__step_2::after {
    display: block;
  }
}
.guide1__step_3 {
  margin-top: 4.1666666667cqw;
  margin-left: auto;
}
@media (max-width: 768px) {
  .guide1__step_3 {
    margin-top: 8cqw;
    margin-left: 0;
  }
}
.guide1__step_3::after {
  display: none;
}
.guide1__num {
  color: var(--accent2);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(3.3333333333cqw, 1.5rem);
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .guide1__num {
    font-size: 8.5333333333cqw;
  }
}
.guide1__img {
  width: 100%;
  aspect-ratio: 400/240;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .guide1__img {
    border-radius: 12px;
  }
}
.guide1__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guide1__step-title {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .guide1__step-title {
    font-size: 4.8cqw;
  }
}
.guide1__text {
  width: 100%;
  font-size: max(1.0416666667cqw, 0.6875rem);
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .guide1__text {
    font-size: 3.4666666667cqw;
  }
}
.guide1__tel {
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .guide1__tel {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .guide1__tel:hover, .guide1__tel:focus {
    opacity: 0.6;
  }
}
.guide2_pos {
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .guide2_pos {
    margin-top: 10.6666666667cqw;
  }
}
.guide2__inner {
  width: 100%;
  padding-inline: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .guide2__inner {
    padding-inline: 5.3333333333cqw;
  }
}
.guide2__items {
  max-width: 88.8888888889cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7777777778cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .guide2__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: 1fr;
    gap: 5.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.guide2__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 1.4583333333cqw;
  background-color: var(--base);
  border-radius: 20px;
  padding: 2.7777777778cqw 1.3888888889cqw;
}
@media (max-width: 768px) {
  .guide2__item {
    row-gap: 4cqw;
    border-radius: 12px;
    padding: 6.6666666667cqw 5.3333333333cqw;
  }
}
.guide2__item-title {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  border-left: 4px solid var(--main);
  padding-left: 0.7638888889cqw;
}
@media (max-width: 768px) {
  .guide2__item-title {
    font-size: 4.8cqw;
    padding-left: 2.9333333333cqw;
  }
}
.guide2__text {
  width: 100%;
  font-size: max(1.0416666667cqw, 0.6875rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .guide2__text {
    font-size: 3.4666666667cqw;
  }
}

.guide3_pos {
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .guide3_pos {
    margin-top: 10.6666666667cqw;
  }
}
.guide3__inner {
  width: 100%;
  padding-inline: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .guide3__inner {
    padding-inline: 5.3333333333cqw;
  }
}
.guide3__items {
  max-width: 77.7777777778cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.7777777778cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .guide3__items {
    max-width: 89.3333333333cqw;
    row-gap: 5.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.guide3__summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3888888889cqw;
     -moz-column-gap: 1.3888888889cqw;
          column-gap: 1.3888888889cqw;
  list-style: none;
  border-bottom: 1px solid var(--main);
  padding: 0 1.3888888889cqw 1.3888888889cqw;
  cursor: pointer;
}
@media (max-width: 768px) {
  .guide3__summary {
    -webkit-column-gap: 2.6666666667cqw;
       -moz-column-gap: 2.6666666667cqw;
            column-gap: 2.6666666667cqw;
    padding: 0 2.6666666667cqw 3.2cqw;
  }
}
.guide3__summary::-webkit-details-marker {
  display: none;
}
.guide3__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.3472222222cqw;
     -moz-column-gap: 0.3472222222cqw;
          column-gap: 0.3472222222cqw;
}
@media (max-width: 768px) {
  .guide3__question {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
  }
}
.guide3__mark {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .guide3__mark {
    font-size: 4.8cqw;
  }
}
.guide3__question-text {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .guide3__question-text {
    font-size: 3.7333333333cqw;
    line-height: 1.6;
  }
}
.guide3__plus {
  min-width: 1.25cqw;
  aspect-ratio: 18/10.4;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .guide3__plus {
    min-width: 3.7333333333cqw;
  }
}
.guide3__plus::before {
  content: "";
  width: 0.8819444444cqw;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0.0486111111cqw;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
}
@media (max-width: 768px) {
  .guide3__plus::before {
    width: 2.64cqw;
    top: 0.1333333333cqw;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
  }
}
.guide3__answer {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.guide3__answer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 0.3472222222cqw;
     -moz-column-gap: 0.3472222222cqw;
          column-gap: 0.3472222222cqw;
  padding-inline: 1.3888888889cqw;
  margin-top: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .guide3__answer-inner {
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
    padding-inline: 2.6666666667cqw;
    margin-top: 3.2cqw;
  }
}
.guide3__answer-text {
  font-size: max(1.0416666667cqw, 0.6875rem);
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .guide3__answer-text {
    font-size: 3.4666666667cqw;
  }
}
.guide3__item[open] .guide3__plus {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*###################################################################
  trimming（page）
###################################################################*/
.trimming1 {
  background: url(../images/trimming1-bg.webp) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/trimming1-bg.webp) no-repeat center top/100% auto, -webkit-linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/trimming1-bg.webp) no-repeat center top/100% auto, linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background-image: image-set(url(../images/trimming1-bg.webp) 1x, url(../images/trimming1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base)));
  background-image: -webkit-image-set(url(../images/trimming1-bg.webp) 1x, url(../images/trimming1-bg@2x.webp) 2x), -webkit-linear-gradient(var(--base), var(--base));
  background-image: image-set(url(../images/trimming1-bg.webp) 1x, url(../images/trimming1-bg@2x.webp) 2x), linear-gradient(var(--base), var(--base));
}
.trimming1_pos {
  margin-top: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .trimming1_pos {
    margin-top: 5.3333333333cqw;
  }
}
.trimming1__inner {
  width: 100%;
  padding: 4.1666666667cqw 2.0833333333cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .trimming1__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 13.3333333333cqw;
  }
}
.trimming1__items {
  max-width: 77.7777777778cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.7777777778cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .trimming1__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: 1fr;
    gap: 5.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.trimming1__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 1.4583333333cqw;
  background-color: var(--base);
  border: 2px solid var(--main);
  border-radius: 20px;
  padding: 2.6388888889cqw 1.25cqw;
}
@media (max-width: 768px) {
  .trimming1__item {
    row-gap: 4cqw;
    border-radius: 12px;
    padding: 6.1333333333cqw 4.8cqw;
  }
}
.trimming1__item-title {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  border-left: 4px solid var(--main);
  padding-left: 0.7638888889cqw;
}
@media (max-width: 768px) {
  .trimming1__item-title {
    font-size: 4.8cqw;
    padding-left: 2.9333333333cqw;
  }
}
.trimming1__list-item {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .trimming1__list-item {
    font-size: 3.7333333333cqw;
  }
}

.trimming2_pos {
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .trimming2_pos {
    margin-top: 10.6666666667cqw;
  }
}
.trimming2__inner {
  width: 100%;
  padding-inline: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .trimming2__inner {
    padding-inline: 5.3333333333cqw;
  }
}
.trimming2__table {
  max-width: 77.7777777778cqw;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .trimming2__table {
    max-width: 89.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.trimming2__table tbody tr:nth-child(odd) .trimming2__td {
  background-color: var(--base);
}
.trimming2__table tbody tr:nth-child(even) .trimming2__td {
  background-color: var(--bg);
}
.trimming2__th {
  width: 22.2222222222cqw;
  background-color: var(--bg);
  font-size: max(1.3888888889cqw, 0.875rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  padding: 1.3888888889cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .trimming2__th {
    width: 28%;
    font-size: 3.2cqw;
    line-height: 1.6;
    padding: 3.2cqw 1.3333333333cqw;
  }
}
.trimming2__th:first-child {
  width: 33.3333333333cqw;
}
@media (max-width: 768px) {
  .trimming2__th:first-child {
    width: 44%;
  }
}
.trimming2__td {
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  padding: 1.3888888889cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .trimming2__td {
    font-size: 3.2cqw;
    line-height: 1.6;
    padding: 3.2cqw 1.3333333333cqw;
  }
}
.trimming2__td_multi {
  line-height: 1.6;
}
.trimming2__note {
  max-width: 77.7777777778cqw;
  width: 100%;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .trimming2__note {
    max-width: 89.3333333333cqw;
    font-size: 3.2cqw;
    margin-top: 5.3333333333cqw;
  }
}

/*###################################################################
  option（page）
###################################################################*/
.option1 {
  background: url(../images/option1-bg.webp) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center bottom/100% calc(100% - 4.5138888889cqw);
  background: url(../images/option1-bg.webp) no-repeat center top/100% auto, -webkit-linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.5138888889cqw);
  background: url(../images/option1-bg.webp) no-repeat center top/100% auto, linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.5138888889cqw);
  background-image: image-set(url(../images/option1-bg.webp) 1x, url(../images/option1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base)));
  background-image: -webkit-image-set(url(../images/option1-bg.webp) 1x, url(../images/option1-bg@2x.webp) 2x), -webkit-linear-gradient(var(--base), var(--base));
  background-image: image-set(url(../images/option1-bg.webp) 1x, url(../images/option1-bg@2x.webp) 2x), linear-gradient(var(--base), var(--base));
}
.option1__inner {
  width: 100%;
  padding: 8.3333333333cqw 2.0833333333cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .option1__inner {
    padding: 13.3333333333cqw 5.3333333333cqw 13.3333333333cqw;
  }
}
.option1__items {
  max-width: 77.7777777778cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .option1__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: 1fr;
    gap: 5.3333333333cqw;
  }
}
.option1__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 1.4583333333cqw;
  background-color: var(--base);
  border: 2px solid var(--main);
  border-radius: 20px;
  padding: 2.6388888889cqw 1.25cqw;
}
@media (max-width: 768px) {
  .option1__item {
    row-gap: 4cqw;
    border-radius: 12px;
    padding: 6.1333333333cqw 4.8cqw;
  }
}
.option1__item-title {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  border-left: 4px solid var(--main);
  padding-left: 0.7638888889cqw;
}
@media (max-width: 768px) {
  .option1__item-title {
    font-size: 4.8cqw;
    padding-left: 2.9333333333cqw;
  }
}
.option1__price {
  font-size: max(1.3888888889cqw, 0.875rem);
  font-weight: 700;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .option1__price {
    font-size: 4.2666666667cqw;
  }
}
.option1__body {
  width: 100%;
}
.option1__text {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .option1__text {
    font-size: 3.7333333333cqw;
  }
}
.option1__list-item {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .option1__list-item {
    font-size: 3.7333333333cqw;
  }
}
.option1__list-item::before {
  content: "・";
}

.option2_pos {
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .option2_pos {
    margin-top: 10.6666666667cqw;
  }
}
.option2__inner {
  width: 100%;
  padding-inline: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .option2__inner {
    padding-inline: 5.3333333333cqw;
  }
}
.option2__table {
  max-width: 77.7777777778cqw;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .option2__table {
    max-width: 89.3333333333cqw;
    margin-top: 5.3333333333cqw;
  }
}
.option2__table tbody tr:nth-child(odd) .option2__td {
  background-color: var(--bg);
}
.option2__table tbody tr:nth-child(even) .option2__td {
  background-color: var(--base);
}
.option2__td {
  width: 50%;
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  padding: 1.3888888889cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .option2__td {
    font-size: 3.7333333333cqw;
    line-height: 1.6;
    padding: 3.2cqw 1.3333333333cqw;
  }
}
.option2__td_multi {
  line-height: 1.6;
}
.option2__td_tall {
  line-height: 1.6;
}
.option2__note {
  max-width: 77.7777777778cqw;
  width: 100%;
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 2.4;
  margin-top: 2.4305555556cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .option2__note {
    max-width: 89.3333333333cqw;
    font-size: 3.2cqw;
    margin-top: 5.3333333333cqw;
  }
}

/*###################################################################
  item（page）
###################################################################*/
.item1 {
  background: url(../images/item1-bg.webp) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/item1-bg.webp) no-repeat center top/100% auto, -webkit-linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/item1-bg.webp) no-repeat center top/100% auto, linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background-image: image-set(url(../images/item1-bg.webp) 1x, url(../images/item1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base)));
  background-image: -webkit-image-set(url(../images/item1-bg.webp) 1x, url(../images/item1-bg@2x.webp) 2x), -webkit-linear-gradient(var(--base), var(--base));
  background-image: image-set(url(../images/item1-bg.webp) 1x, url(../images/item1-bg@2x.webp) 2x), linear-gradient(var(--base), var(--base));
}
.item1_pos {
  margin-top: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .item1_pos {
    margin-top: 5.3333333333cqw;
  }
}
.item1__inner {
  width: 100%;
  padding: 4.1666666667cqw 2.0833333333cqw 4.1666666667cqw;
}
@media (max-width: 768px) {
  .item1__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 13.3333333333cqw;
  }
}
.item1__text {
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(0.9027777778cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .item1__text {
    width: 100%;
    font-size: 3.2cqw;
    text-align: left;
    margin-top: 5.3333333333cqw;
  }
}

.item2__inner {
  width: 100%;
  padding: 5.5555555556cqw 2.0833333333cqw 1.3888888889cqw;
}
@media (max-width: 768px) {
  .item2__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 5.3333333333cqw;
  }
}
.item2__items {
  max-width: 88.8888888889cqw;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7777777778cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .item2__items {
    max-width: 89.3333333333cqw;
    grid-template-columns: repeat(2, 1fr);
    gap: 4cqw;
    margin-top: 5.3333333333cqw;
  }
}
.item2__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.3888888889cqw;
  background-color: var(--base);
  border-radius: 30px;
  padding: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .item2__item {
    row-gap: 3.2cqw;
    border-radius: 18px;
    padding: 2.6666666667cqw;
  }
}
.item2__img {
  width: 100%;
  aspect-ratio: 360/240;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .item2__img {
    border-radius: 12px;
  }
}
.item2__link {
  width: 100%;
  height: 100%;
  display: block;
}
.item2__link img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item2__body {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .item2__body {
    row-gap: 2.1333333333cqw;
  }
}
.item2__name {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .item2__name {
    font-size: 3.7333333333cqw;
  }
}
.item2__price {
  font-size: max(1.25cqw, 0.8125rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .item2__price {
    font-size: 3.7333333333cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .item2__link img {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .item2__link:hover img, .item2__link:focus img {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}
/*###################################################################
  salon（page）
###################################################################*/
.salon1 {
  background: url(../images/salon1-bg.webp) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base))) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/salon1-bg.webp) no-repeat center top/100% auto, -webkit-linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background: url(../images/salon1-bg.webp) no-repeat center top/100% auto, linear-gradient(var(--base), var(--base)) no-repeat center bottom/100% calc(100% - 4.7916666667cqw);
  background-image: image-set(url(../images/salon1-bg.webp) 1x, url(../images/salon1-bg@2x.webp) 2x), -webkit-gradient(linear, left top, left bottom, from(var(--base)), to(var(--base)));
  background-image: -webkit-image-set(url(../images/salon1-bg.webp) 1x, url(../images/salon1-bg@2x.webp) 2x), -webkit-linear-gradient(var(--base), var(--base));
  background-image: image-set(url(../images/salon1-bg.webp) 1x, url(../images/salon1-bg@2x.webp) 2x), linear-gradient(var(--base), var(--base));
}
.salon1_pos {
  margin-top: 0.6944444444cqw;
}
@media (max-width: 768px) {
  .salon1_pos {
    margin-top: 5.3333333333cqw;
  }
}
.salon1__inner {
  width: 100%;
  padding: 4.1666666667cqw 2.0833333333cqw 5.5555555556cqw;
}
@media (max-width: 768px) {
  .salon1__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 13.3333333333cqw;
  }
}
.salon1__greeting {
  max-width: 83.3333333333cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 2.7777777778cqw;
  margin-left: 3.4722222222cqw;
}
@media (max-width: 768px) {
  .salon1__greeting {
    max-width: 89.3333333333cqw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 5.3333333333cqw;
    margin-top: 5.3333333333cqw;
    margin-inline: auto;
  }
}
.salon1__box {
  max-width: 33.3333333333cqw;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 2.0833333333cqw;
}
@media (max-width: 768px) {
  .salon1__box {
    max-width: 100%;
    row-gap: 4cqw;
  }
}
.salon1__text {
  font-size: max(0.9027777778cqw, 0.625rem);
  font-weight: 500;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .salon1__text {
    font-size: 3.2cqw;
  }
}
.salon1__owner {
  font-size: max(1.6666666667cqw, 1rem);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .salon1__owner {
    font-size: 4.8cqw;
  }
}
.salon1__owner-label {
  font-size: max(1.3888888889cqw, 0.875rem);
}
@media (max-width: 768px) {
  .salon1__owner-label {
    font-size: 4cqw;
  }
}
.salon1__img {
  max-width: 44.4444444444cqw;
  width: 100%;
  aspect-ratio: 640/320;
  overflow: hidden;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .salon1__img {
    max-width: 100%;
    border-radius: 18px;
  }
}
.salon1__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.salon2__inner {
  width: 100%;
  padding: 5.5555555556cqw 2.0833333333cqw 1.3888888889cqw;
}
@media (max-width: 768px) {
  .salon2__inner {
    padding: 10.6666666667cqw 5.3333333333cqw 5.3333333333cqw;
  }
}
.salon2__list {
  max-width: 55.5555555556cqw;
  width: 100%;
  display: grid;
  grid-template-columns: 13.1944444444cqw 41.6666666667cqw;
  -webkit-column-gap: 0.6944444444cqw;
     -moz-column-gap: 0.6944444444cqw;
          column-gap: 0.6944444444cqw;
  margin-top: 2.7777777778cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .salon2__list {
    max-width: 89.3333333333cqw;
    grid-template-columns: 29.3333333333cqw 58.6666666667cqw;
    -webkit-column-gap: 1.3333333333cqw;
       -moz-column-gap: 1.3333333333cqw;
            column-gap: 1.3333333333cqw;
    margin-top: 4.8cqw;
  }
}
.salon2__list_2 {
  grid-template-columns: 21.5277777778cqw 33.3333333333cqw;
}
@media (max-width: 768px) {
  .salon2__list_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .salon2__list_2 .salon2__term {
    white-space: normal;
    line-height: 1.6;
  }
}
.salon2__term {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--main);
  padding: 1.3888888889cqw 0.6944444444cqw;
}
@media (max-width: 768px) {
  .salon2__term {
    font-size: 3.4666666667cqw;
    padding: 5.3333333333cqw 2.6666666667cqw;
  }
}
.salon2__desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(1.1111111111cqw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid var(--main);
  padding: 1.3888888889cqw;
}
@media (max-width: 768px) {
  .salon2__desc {
    font-size: 3.4666666667cqw;
    padding: 5.3333333333cqw 2.6666666667cqw;
  }
}
.salon2__desc_multi {
  line-height: 1.6;
}
@media (max-width: 768px) {
  .salon2__desc_sp-multi {
    line-height: 1.6;
  }
}
.salon2__tel {
  color: inherit;
}
.salon2__sub-title {
  letter-spacing: 0.1em;
  margin-top: 5.5555555556cqw;
}
@media (max-width: 768px) {
  .salon2__sub-title {
    margin-top: 10.6666666667cqw;
  }
}
.salon2__map {
  max-width: 77.7777777778cqw;
  width: 100%;
  height: auto;
  aspect-ratio: 1120/480;
  display: block;
  margin-top: 5.5555555556cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .salon2__map {
    max-width: 89.3333333333cqw;
    aspect-ratio: 335/400;
    margin-top: 10.6666666667cqw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .salon2__tel {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .salon2__tel:hover, .salon2__tel:focus {
    opacity: 0.6;
  }
}
/*###################################################################
  page-404（page）
###################################################################*/
.page-404_pos {
  margin-top: 6.9444444444cqw;
}
@media (max-width: 768px) {
  .page-404_pos {
    margin-top: 16cqw;
  }
}
.page-404__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 8.3333333333cqw;
}
@media (max-width: 768px) {
  .page-404__inner {
    padding: 0 5.3333333333cqw 21.3333333333cqw;
  }
}
.page-404__title {
  font-size: max(1.6666666667cqw, 1.0625rem);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 768px) {
  .page-404__title {
    font-size: 4.8cqw;
  }
}
.page-404__text {
  max-width: 52.3611111111cqw;
  width: 100%;
  font-size: max(1.1111111111cqw, 0.75rem);
  line-height: 2;
  text-align: center;
  white-space: pre-line;
  margin-top: 2.0833333333cqw;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .page-404__text {
    max-width: 600px;
    font-size: 3.7333333333cqw;
    line-height: 1.8;
    text-align: left;
    margin-top: 5.3333333333cqw;
  }
}
.page-404__button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.1666666667cqw;
}
@media (max-width: 768px) {
  .page-404__button-wrapper {
    margin-top: 10.6666666667cqw;
  }
}

/*###################################################################
  js-（js制御用）
###################################################################*/