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

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

body {
  background-color: var(--base);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  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);
  }
}
/*----------------------------------
  mv-title
----------------------------------*/
@-webkit-keyframes mvTitle {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes mvTitle {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  background-color: var(--text);
}
@media (max-width: 768px) {
  .header {
    background-color: var(--text2);
  }
}
.header_sticky {
  position: fixed;
}
.header_sticky .header__logo {
  max-width: 50px;
}
@media (max-width: 768px) {
  .header_sticky .header__logo {
    max-width: 186px;
  }
}
.header_sticky .header__logo-link {
  top: 4px;
}
.header__inner {
  height: 56px;
  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-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-right: clamp(0.9375rem, -1.569485842rem + 5.21609538vw, 3.125rem);
  padding-left: clamp(0.9375rem, -2.7155365127rem + 7.6005961252vw, 4.125rem);
}
@media (max-width: 768px) {
  .header__inner {
    height: 38px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: clamp(0.5625rem, 0.2046755725rem + 1.5267175573vw, 0.9375rem);
    padding-left: clamp(0.75rem, 0.5710877863rem + 0.7633587786vw, 0.9375rem);
  }
}
.header__logo {
  max-width: clamp(4rem, 1.2065014903rem + 5.8122205663vw, 6.4375rem);
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 186px;
  }
}
.header__logo-link {
  width: 100%;
  position: absolute;
  top: clamp(0.9375rem, 0.0063338301rem + 1.9374068554vw, 1.75rem);
}
@media (max-width: 768px) {
  .header__logo-link {
    position: static;
  }
}
.header__menu {
  max-width: clamp(35.5625rem, -0.4664679583rem + 74.9627421759vw, 67rem);
  width: 100%;
  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-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .header__menu {
    max-width: 63px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__icons {
  max-width: clamp(7.5rem, 5.3511549925rem + 4.4709388972vw, 9.375rem);
  width: 100%;
  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-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-bottom: 1px;
}
@media (max-width: 768px) {
  .header__icons {
    max-width: 18px;
  }
}
.header__icon {
  max-width: 40px;
  width: 100%;
  aspect-ratio: 1/1;
  margin-top: auto;
}
@media (max-width: 768px) {
  .header__icon {
    max-width: 18px;
    margin-top: 0;
  }
}
.header__icon-link {
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: var(--white);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .header__icon-link {
    background-color: transparent;
    border-radius: 0;
  }
}
.header__icon-link::after {
  content: "";
  aspect-ratio: 1/1;
  background-color: #222;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.header__icon-link_tel::after {
  width: 18px;
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
}
@media (max-width: 768px) {
  .header__icon-link_tel::after {
    background-color: var(--white);
  }
}
@media (max-width: 768px) {
  .header__icon-link_insta {
    display: none;
  }
}
.header__icon-link_insta::after {
  width: 20px;
  -webkit-mask-image: url(../images/icon-insta.svg);
          mask-image: url(../images/icon-insta.svg);
}
@media (max-width: 768px) {
  .header__icon-link_line {
    display: none;
  }
}
.header__icon-link_line::after {
  width: 20px;
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
}

@media (hover: hover) and (pointer: fine) {
  .header__icon-link {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__icon-link::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__icon-link:hover {
    background-color: var(--text2);
  }
  .header__icon-link:hover::after {
    background-color: var(--white);
  }
}
.header-nav {
  max-width: clamp(27.3125rem, -1.9834202683rem + 60.9538002981vw, 52.875rem);
  width: 100%;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.header-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-nav__item:not(:first-child) {
  margin-left: -14px;
}
.header-nav__link {
  position: relative;
  isolation: isolate;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: clamp(0.75rem, 0.4634873323rem + 0.5961251863vw, 1rem);
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.125em;
}
.header-nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--text);
  -webkit-transform: skewX(-15deg);
      -ms-transform: skewX(-15deg);
          transform: skewX(-15deg);
}
.header-nav__link_current {
  color: var(--text);
}
.header-nav__link_current::before {
  background-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .header-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .header-nav__link::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header-nav__link:hover, .header-nav__link:focus {
    color: var(--text);
  }
  .header-nav__link:hover::before, .header-nav__link:focus::before {
    background-color: var(--white);
  }
}
/*###################################################################
  footer（module）
###################################################################*/
.footer {
  background-color: #222;
}
.footer__inner {
  max-width: 1174px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 107px 30px 98px;
  color: var(--white);
}
@media (max-width: 1280px) {
  .footer__inner {
    padding: clamp(4.375rem, 2.1684160305rem + 9.4147582697vw, 6.6875rem) clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem) 98px;
  }
}
.footer__body {
  max-width: 1104px;
  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;
  gap: 46px 15px;
}
@media (max-width: 768px) {
  .footer__body {
    -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;
  }
}
.footer__info-wrapper {
  max-width: clamp(23.625rem, 4.9484924623rem + 33.1658291457vw, 27.75rem);
  width: 100%;
  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;
  gap: 32px 10px;
}
@media (max-width: 900px) {
  .footer__info-wrapper {
    max-width: 251px;
    -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;
  }
}
.footer__logo {
  max-width: 110px;
  width: 100%;
  display: inline-block;
  margin-top: 41px;
}
@media (max-width: 900px) {
  .footer__logo {
    margin-top: 0;
  }
}
.footer__info {
  max-width: 251px;
  width: 100%;
}
.footer__shop-name {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 2rem;
  font-weight: bold;
}
.footer__address {
  font-size: 0.875rem;
  line-height: 1.45;
  white-space: pre-line;
  letter-spacing: 0.1428571429em;
  margin-top: 32px;
}
.footer__text1 {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  white-space: pre-line;
  letter-spacing: 0.1428571429em;
  margin-top: 11px;
}
.footer__text2 {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.1428571429em;
  margin-top: 11px;
}
.footer__more {
  background-color: var(--white) !important;
  color: var(--accent) !important;
  letter-spacing: 0 !important;
  margin-top: 30px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer__more {
    margin-top: 39px;
  }
}
.footer__more::after {
  background-color: var(--accent) !important;
}
.footer__menu {
  max-width: 437px;
  width: 100%;
  margin-top: 46px;
}
@media (max-width: 768px) {
  .footer__menu {
    max-width: clamp(18.75rem, 10.3260869565rem + 33.6956521739vw, 26.5rem);
    margin-top: 0;
  }
}
.footer__tel {
  max-width: clamp(18.75rem, 10.3260869565rem + 33.6956521739vw, 26.5rem);
  display: grid;
  grid-template-columns: clamp(3.5625rem, 2.1358695652rem + 5.7065217391vw, 4.875rem) 1fr;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer__tel {
    margin-right: auto;
  }
}
.footer__tel-icon {
  max-width: clamp(3.125rem, 2.0380434783rem + 4.347826087vw, 4.125rem);
  aspect-ratio: 1/1;
  background: url(../images/icon-tel-w.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .footer__tel-icon {
    margin-top: clamp(-0.375rem, -0.7826086957rem + 1.6304347826vw, 0rem);
  }
}
.footer__tel-note {
  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: clamp(0.625rem, -0.0543478261rem + 2.7173913043vw, 1.25rem);
     -moz-column-gap: clamp(0.625rem, -0.0543478261rem + 2.7173913043vw, 1.25rem);
          column-gap: clamp(0.625rem, -0.0543478261rem + 2.7173913043vw, 1.25rem);
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
  white-space: nowrap;
}
.footer__tel-note::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--white);
}
.footer__tel-num {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2rem, 0.9130434783rem + 4.347826087vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.0625em;
  margin-top: 3px;
}
@media (max-width: 768px) {
  .footer__tel-num {
    margin-top: 4px;
  }
}
@media (max-width: 400px) {
  .footer__tel-num {
    letter-spacing: 0.09375em;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 23px;
}
@media (max-width: 768px) {
  .footer__sns {
    margin-top: 35px;
  }
}
.footer__sns-icon {
  width: 40px;
}
.footer__sns-link {
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--white);
}
.footer__sns-link::after {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-color: #222;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer__sns-link_insta::after {
  -webkit-mask-image: url(../images/icon-insta.svg);
          mask-image: url(../images/icon-insta.svg);
}
.footer__sns-link_line::after {
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
}
.footer__nav {
  margin-top: 31px;
}
.footer__copy {
  height: 35px;
  display: grid;
  place-items: center;
  background-color: #111;
  color: var(--white);
  font-size: 0.875rem;
}

@media (hover: hover) and (pointer: fine) {
  .footer__more::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__more:hover, .footer__more:focus {
    background-color: var(--accent) !important;
    color: var(--white) !important;
  }
  .footer__more:hover::after, .footer__more:focus::after {
    background-color: var(--white) !important;
  }
  .footer__sns-link {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__sns-link::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__sns-link:hover {
    background-color: var(--accent);
  }
  .footer__sns-link:hover::after {
    background-color: var(--white);
  }
}
.footer-nav__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;
}
@media (max-width: 600px) {
  .footer-nav__items {
    max-width: 113px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 19px;
    margin-inline: auto;
  }
}
.footer-nav__link {
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
}

@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);
  }
}
/*###################################################################
  c-link（module）
###################################################################*/
.c-link-more {
  max-width: 228px;
  width: 100%;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  background-color: var(--accent);
  color: var(--white);
  font-family: "Stick No Bills", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  letter-spacing: 0.0625em;
  border: 2px solid var(--accent);
}
.c-link-more::after {
  content: "";
  width: 8px;
  aspect-ratio: 8/13;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--white);
  -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;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-more {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .c-link-more::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .c-link-more:hover, .c-link-more:focus {
    background-color: var(--white);
    color: var(--accent);
  }
  .c-link-more:hover::after, .c-link-more:focus::after {
    background-color: var(--accent);
  }
}
/*###################################################################
  c-title（module）
###################################################################*/
.c-title-1 {
  width: 100%;
  height: 118px;
  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-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;
  row-gap: 14px;
  position: relative;
  border-top: 2px solid #919191;
  border-bottom: 2px solid #919191;
}
.c-title-1::before, .c-title-1::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #d8d8d8;
}
.c-title-1::before {
  top: -7px;
}
.c-title-1::after {
  bottom: -7px;
}
.c-title-1__jp {
  font-size: 0.875rem;
  letter-spacing: 0.0714285714em;
}
.c-title-1__en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.75rem;
  font-weight: bold;
  letter-spacing: 0.0454545455em;
}

/*###################################################################
  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;
  }
}
@media (max-width: 768px) {
  .br-sp-n {
    display: none;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 22px;
  height: 8px;
  display: inline-block;
  position: relative;
  z-index: 30;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger[aria-expanded=true] {
  min-width: 40px;
  height: 40px;
  -webkit-transform: translate(-11px, 11px);
      -ms-transform: translate(-11px, 11px);
          transform: translate(-11px, 11px);
  background-color: var(--text2);
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(-4px) rotate(150deg);
      -ms-transform: translateY(-4px) rotate(150deg);
          transform: translateY(-4px) rotate(150deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(4px) rotate(-150deg);
      -ms-transform: translateY(4px) rotate(-150deg);
          transform: translateY(4px) rotate(-150deg);
}
.hamburger__line {
  width: 22px;
  height: 1px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: transparent;
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--white);
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  bottom: 4px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .hamburger:hover {
    opacity: 0.7;
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 100%;
  max-width: 375px;
  height: 100vh;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: visibility 0.5s, -webkit-transform 0.5s;
  transition: visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, visibility 0.5s;
  transition: transform 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  background-color: var(--white);
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0;
}
.drawer__inner {
  padding-bottom: 100px;
}
.drawer__top {
  width: 100%;
  height: 54px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 1;
}
.drawer__items {
  max-width: 350px;
  margin-inline: auto;
}
.drawer__item {
  border-bottom: 1px solid #bbb;
}
.drawer__item:first-of-type {
  border-top: 1px solid #bbb;
}
.drawer__link {
  height: 4.3375rem;
  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;
  color: var(--text2);
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
  padding-left: 28px;
}
.drawer__tel {
  width: 300px;
  min-height: 50px;
  display: block;
  position: relative;
  color: var(--text2);
  text-decoration: none;
  margin-top: 53px;
  margin-inline: auto;
}
.drawer__tel-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icon-tel-b.svg) no-repeat center center/contain;
  margin-top: -3px;
}
.drawer__tel-text {
  width: 240px;
  position: absolute;
  top: 0;
  left: 60px;
}
.drawer__tel-text::before {
  content: "";
  width: 150px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: var(--text2);
}
.drawer__tel-note {
  position: absolute;
  top: 2px;
  left: 162px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
  white-space: nowrap;
}
.drawer__tel-num {
  position: absolute;
  top: 21px;
  left: 0;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.09375em;
  white-space: nowrap;
}
.drawer__icons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin: 38px auto 0;
}
.drawer__icon {
  width: 40px;
}
.drawer__icon-link {
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #222;
}
.drawer__icon-link::after {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-color: var(--white);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.drawer__icon-link_insta::after {
  -webkit-mask-image: url(../images/icon-insta.svg);
          mask-image: url(../images/icon-insta.svg);
}
.drawer__icon-link_line::after {
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
}

.is-drawer-active {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__link {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .drawer__link:hover, .drawer__link:focus {
    background-color: var(--text2);
    color: var(--white);
  }
  .drawer__icon-link {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .drawer__icon-link:hover {
    background-color: #555;
  }
}
.drawer-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*###################################################################
  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 {
  padding-top: 56px;
}
@media (max-width: 768px) {
  .lower-mv {
    padding-top: 38px;
  }
}
.lower-mv__body {
  height: clamp(8.125rem, 4.3838028169rem + 15.9624413146vw, 18.75rem);
  display: grid;
  place-items: center;
  background: url(../images/lower-mv-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
}
.lower-mv__title {
  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: clamp(0.5rem, 0.411971831rem + 0.3755868545vw, 0.75rem);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  font-weight: bold;
  letter-spacing: 0.0416666667em;
  margin-top: calc(clamp(1.1875rem, 0.0651408451rem + 4.7887323944vw, 4.375rem) * -1);
}
.lower-mv__title::before {
  content: "";
  max-width: clamp(6.8125rem, 5.6241197183rem + 5.0704225352vw, 10.1875rem);
  width: 100%;
  aspect-ratio: 163/57;
  background: url(../images/lower-mv-title-deco.webp) no-repeat center center/contain;
  background-image: -webkit-image-set(url(../images/lower-mv-title-deco.webp) 1x, url(../images/lower-mv-title-deco@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-title-deco.webp) 1x, url(../images/lower-mv-title-deco@2x.webp) 2x);
}

/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
/*###################################################################
  top（page）
###################################################################*/
.top-mv {
  container-type: inline-size;
}
.top-mv_pos {
  padding-top: 56px;
}
@media (max-width: 768px) {
  .top-mv_pos {
    padding-top: 0;
  }
}
.top-mv__body {
  position: relative;
}
.top-mv__box {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .top-mv__box {
    row-gap: 5.3333333333cqw;
  }
}
.top-mv__title {
  color: var(--white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 2.2222222222cqw;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.0625em;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .top-mv__title {
    font-size: 6.4cqw;
  }
}
.top-mv__title-1 {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: mvTitle 1s ease-in 1.4s forwards;
          animation: mvTitle 1s ease-in 1.4s forwards;
}
.top-mv__title-2 {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: mvTitle 1s ease-in 2.4s forwards;
          animation: mvTitle 1s ease-in 2.4s forwards;
}
.top-mv__logo {
  max-width: 24.3055555556cqw;
  width: 100%;
}
@media (max-width: 768px) {
  .top-mv__logo {
    max-width: 53.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-group {
  overflow: hidden;
  padding-top: clamp(3.875rem, 0.7738549618rem + 13.2315521628vw, 7.125rem);
  padding-bottom: clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
}
@media (max-width: 768px) {
  .top-group {
    background-color: var(--white);
  }
}
.top-group__title-wrapper {
  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: clamp(1.6875rem, 1.2700381679rem + 1.7811704835vw, 2.125rem);
}
.top-group__title-wrapper::before {
  content: "";
  width: clamp(8.1875rem, 6.5176526718rem + 7.1246819338vw, 9.9375rem);
  aspect-ratio: 159/71;
  background: url(../images/top-group-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-group-deco-1.webp) 1x, url(../images/top-group-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/top-group-deco-1.webp) 1x, url(../images/top-group-deco-1@2x.webp) 2x);
}
.top-group__title {
  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: clamp(0.75rem, 0.2729007634rem + 2.0356234097vw, 1.25rem);
     -moz-column-gap: clamp(0.75rem, 0.2729007634rem + 2.0356234097vw, 1.25rem);
          column-gap: clamp(0.75rem, 0.2729007634rem + 2.0356234097vw, 1.25rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0057251908rem + 0.5089058524vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.top-group__title::before, .top-group__title::after {
  content: "";
  width: clamp(3.125rem, 2.7075381679rem + 1.7811704835vw, 3.5625rem);
  height: 2px;
  background-color: #444;
  margin-top: calc(clamp(-0.25rem, -0.3692748092rem + 0.5089058524vw, -0.125rem) * -1);
}

.top-title1 {
  width: 100%;
  height: 118px;
  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-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;
  row-gap: 14px;
  position: relative;
  border-top: 2px solid #919191;
  border-bottom: 2px solid #919191;
}
.top-title1::before, .top-title1::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #d8d8d8;
}
.top-title1::before {
  top: -7px;
}
.top-title1::after {
  bottom: -7px;
}
.top-title1__jp {
  font-size: 0.875rem;
  letter-spacing: 0.0714285714em;
}
.top-title1__en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.75rem;
  font-weight: bold;
  letter-spacing: 0.0454545455em;
}

.top-concept_pos {
  margin-top: 43px;
}
@media (max-width: 768px) {
  .top-concept_pos {
    margin-top: 61px;
  }
}
.top-concept__outer {
  max-width: 1440px;
  margin-inline: auto;
}
.top-concept__body {
  max-width: 1310px;
  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;
  gap: 65px 15px;
  margin-left: auto;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .top-concept__body {
    -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;
    padding-left: 0;
  }
}
.top-concept__box {
  max-width: 550px;
  width: 100%;
  margin-top: clamp(0rem, -1.5102818854rem + 3.1423290203vw, 1.0625rem);
}
@media (max-width: 768px) {
  .top-concept__box {
    max-width: 610px;
    padding: 0 clamp(0.78125rem, -0.2624045802rem + 4.4529262087vw, 1.875rem);
  }
}
.top-concept__deco {
  max-width: clamp(8.5625rem, 4.831215342rem + 7.7634011091vw, 11.1875rem);
  width: 100%;
  aspect-ratio: 179/70;
  position: absolute;
  top: calc(clamp(2.0625rem, 0.8187384473rem + 2.5878003697vw, 2.9375rem) * -1);
  left: 0;
  background: url(../images/top-concept-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-concept-deco.webp) 1x, url(../images/top-concept-deco@2x.webp) 2x);
  background-image: image-set(url(../images/top-concept-deco.webp) 1x, url(../images/top-concept-deco@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-concept__deco {
    max-width: clamp(6.25rem, 2.3958333333rem + 16.4444444444vw, 8.5625rem);
    top: calc(clamp(1.6875rem, 1.0625rem + 2.6666666667vw, 2.0625rem) * -1);
  }
}
.top-concept__text {
  line-height: 1.875;
  white-space: pre-line;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .top-concept__text {
    line-height: 2.1875;
  }
}
.top-concept__more {
  margin-top: 20px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-concept__more {
    margin-top: 40px;
  }
}
.top-concept__img {
  max-width: 700px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-concept__img {
    max-width: 100%;
  }
}

.top-menu_pos {
  margin-top: clamp(3.125rem, 0.3125rem + 12vw, 7.8125rem);
}
.top-menu__outer {
  max-width: 1440px;
  margin-inline: auto;
}
.top-menu__body {
  max-width: 1310px;
  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;
  gap: 82px 15px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .top-menu__body {
    -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;
    padding-right: 0;
  }
}
.top-menu__box {
  max-width: 550px;
  width: 100%;
  margin-top: clamp(0rem, -1.5102818854rem + 3.1423290203vw, 1.0625rem);
}
@media (max-width: 768px) {
  .top-menu__box {
    max-width: 610px;
    padding: 0 clamp(0.78125rem, -0.2624045802rem + 4.4529262087vw, 1.875rem);
  }
}
.top-menu__deco {
  max-width: clamp(5rem, 3.2231977819rem + 3.696857671vw, 6.25rem);
  width: 100%;
  aspect-ratio: 100/103;
  position: absolute;
  top: calc(clamp(2.0625rem, 0.8187384473rem + 2.5878003697vw, 2.9375rem) * -1);
  top: -44px;
  right: clamp(1.375rem, 0.5416666667rem + 3.5555555556vw, 1.875rem);
  background: url(../images/top-menu-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-menu-deco.webp) 1x, url(../images/top-menu-deco@2x.webp) 2x);
  background-image: image-set(url(../images/top-menu-deco.webp) 1x, url(../images/top-menu-deco@2x.webp) 2x);
}
.top-menu__text {
  line-height: 1.875;
  white-space: pre-line;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .top-menu__text {
    line-height: 2.1875;
  }
}
.top-menu__links {
  max-width: 506px;
  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;
  gap: 20px 5px;
  margin-top: 45px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-menu__links {
    -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: 40px;
  }
}
.top-menu__img {
  max-width: 700px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-menu__img {
    max-width: 100%;
  }
}

.top-calendar {
  position: relative;
}
.top-calendar::before, .top-calendar::after {
  content: "";
  width: 100%;
  position: absolute;
}
@media (max-width: 768px) {
  .top-calendar::before, .top-calendar::after {
    content: none;
  }
}
.top-calendar::before {
  max-width: 239px;
  aspect-ratio: 239/432;
  top: 0;
  left: 0;
  background: url(../images/top-calendar-deco-l.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-calendar-deco-l.webp) 1x, url(../images/top-calendar-deco-l@2x.webp) 2x);
  background-image: image-set(url(../images/top-calendar-deco-l.webp) 1x, url(../images/top-calendar-deco-l@2x.webp) 2x);
}
.top-calendar::after {
  max-width: 200px;
  aspect-ratio: 200/414;
  bottom: 0;
  right: 0;
  background: url(../images/top-calendar-deco-r.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-calendar-deco-r.webp) 1x, url(../images/top-calendar-deco-r@2x.webp) 2x);
  background-image: image-set(url(../images/top-calendar-deco-r.webp) 1x, url(../images/top-calendar-deco-r@2x.webp) 2x);
}
.top-calendar__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 117px 30px 46px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .top-calendar__inner {
    padding: clamp(3.3125rem, 0.9125rem + 10.24vw, 7.3125rem) clamp(0.78125rem, -0.2624045802rem + 4.4529262087vw, 1.875rem) 46px;
  }
}
.top-calendar__body {
  max-width: 750px;
  margin-top: clamp(2.1875rem, 1.2929389313rem + 3.8167938931vw, 3.125rem);
  margin-inline: auto;
}
.top-calendar__iframe {
  width: 100%;
  height: clamp(18.75rem, 9.804389313rem + 38.1679389313vw, 28.125rem);
}

.top-sns {
  background: #ddd;
}
.top-sns_pos {
  margin-top: clamp(0.25rem, -3.0300572519rem + 13.9949109415vw, 3.6875rem);
}
.top-sns__inner {
  max-width: 950px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 103px 30px 100px;
  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;
  gap: 43px 15px;
}
@media (max-width: 1280px) {
  .top-sns__inner {
    padding: clamp(2.6875rem, 0.4375rem + 9.6vw, 6.4375rem) clamp(0.78125rem, -0.2624045802rem + 4.4529262087vw, 1.875rem) clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
  }
}
@media (max-width: 768px) {
  .top-sns__inner {
    -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;
  }
}
.top-sns__body {
  max-width: 450px;
  width: 100%;
}
.top-sns__title {
  border-color: #888;
}
.top-sns__title::before, .top-sns__title::after {
  width: 88.8888888889%;
  background-color: #bbb;
}
@media (max-width: 768px) {
  .top-sns__title::before, .top-sns__title::after {
    width: 85.7142857143%;
  }
}
.top-sns__text {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 39px;
}
.top-sns__link {
  max-width: 224px;
  height: 40px;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--white);
  margin-top: 34px;
  margin-inline: auto;
}
.top-sns__link::after {
  content: "";
  width: 8px;
  aspect-ratio: 8/13;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--white);
  -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;
}
.top-sns__link_line {
  background-color: #06c755;
}
.top-sns__link_insta {
  background: -webkit-gradient(linear, left top, right top, from(#fed475), color-stop(35.1%, #f28969), color-stop(69.71%, #da5d78), to(#9c38bb));
  background: -webkit-linear-gradient(left, #fed475 0%, #f28969 35.1%, #da5d78 69.71%, #9c38bb 100%);
  background: linear-gradient(90deg, #fed475 0%, #f28969 35.1%, #da5d78 69.71%, #9c38bb 100%);
}
.top-sns__link-text {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
}
.top-sns__link-text::before {
  content: "";
  width: 17px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--white);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.top-sns__link-text_line::before {
  left: -23px;
  -webkit-mask-image: url(../images/icon-line.svg);
          mask-image: url(../images/icon-line.svg);
}
.top-sns__link-text_insta::before {
  left: -24px;
  -webkit-mask-image: url(../images/icon-insta.svg);
          mask-image: url(../images/icon-insta.svg);
}

.top-map__gmap {
  width: 100%;
  height: clamp(18.75rem, 9.804389313rem + 38.1679389313vw, 28.125rem);
}

/*###################################################################
  concept（page）
###################################################################*/
.concept1 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.concept1__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}
.concept1__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/concept-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/concept-bg.webp) 1x, url(../images/concept-bg@2x.webp) 2x);
  background-image: image-set(url(../images/concept-bg.webp) 1x, url(../images/concept-bg@2x.webp) 2x);
}
.concept1__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 100px 30px 200px;
  color: var(--white);
}
@media (max-width: 1280px) {
  .concept1__inner {
    padding: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) clamp(7.5rem, 4.5rem + 12.8vw, 12.5rem);
  }
}
.concept1__title {
  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: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.0229007634rem + 2.0356234097vw, 2rem);
  line-height: 1.71875;
  text-align: center;
  letter-spacing: 0.0625em;
  white-space: pre-line;
}
.concept1__title::after {
  content: "";
  max-width: 213px;
  width: 100%;
  aspect-ratio: 213/23;
  background: url(../images/concept-deco-1.webp) no-repeat center center/contain;
  background-image: -webkit-image-set(url(../images/concept-deco-1.webp) 1x, url(../images/concept-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/concept-deco-1.webp) 1x, url(../images/concept-deco-1@2x.webp) 2x);
}
.concept1__items {
  max-width: 990px;
  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;
  gap: 30px 15px;
  margin-inline: auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .concept1__items {
    -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;
  }
}
.concept1__item {
  max-width: 310px;
  width: 100%;
  height: 85px;
  display: grid;
  place-items: center;
  font-size: clamp(1rem, 0.6696735395rem + 0.6872852234vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.1111111111em;
  text-align: center;
  white-space: pre-line;
  border: 1px solid var(--white);
}
@media (max-width: 768px) {
  .concept1__item {
    font-size: 1.125rem;
  }
}
.concept1__text {
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 2.2222222222;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.75rem, 0.65rem + 8.96vw, 6.25rem);
}
@media (max-width: 768px) {
  .concept1__text {
    text-align: left;
  }
}

/*###################################################################
  mens（page）
###################################################################*/
.mens-c {
  color: var(--text2);
}

.mens1_pos {
  margin-top: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem);
}
.mens1__inner {
  max-width: 1060px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .mens1__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.mens1__text {
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 2.5;
  letter-spacing: 0.1111111111em;
  white-space: pre-line;
}

.mens2_pos {
  margin-top: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem);
}
.mens2__title {
  height: clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
  display: grid;
  place-items: center;
  background: url(../images/mens2-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/mens2-bg.webp) 1x, url(../images/mens2-bg@2x.webp) 2x);
  background-image: image-set(url(../images/mens2-bg.webp) 1x, url(../images/mens2-bg@2x.webp) 2x);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 1.8rem + 1.92vw, 3rem);
  font-weight: bold;
  letter-spacing: 0.0416666667em;
}
.mens2__inner {
  max-width: 1080px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: clamp(2.5rem, -0.2rem + 11.52vw, 7rem);
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .mens2__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 100px;
  }
}
.mens2__menu-group {
  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;
  gap: 50px 15px;
}
@media (max-width: 768px) {
  .mens2__menu-group {
    -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;
  }
}
.mens2__menu-group_2 {
  margin-top: 62px;
}
.mens2__menu {
  max-width: 500px;
  width: 100%;
}
.mens2__menu-title {
  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: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  border-bottom: 2px solid var(--text2);
  padding-bottom: 16px;
}
.mens2__menu-title::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 6px;
  background-color: var(--text2);
}
.mens2__jp {
  font-size: 1.125rem;
  letter-spacing: 0.1111111111em;
}
.mens2__en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 0.6954177898rem + 3.2345013477vw, 3rem);
  font-weight: bold;
}
.mens2__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: 16.7px;
  margin-top: 45px;
}
.mens2__item {
  display: grid;
  grid-template-columns: 1fr clamp(4.6875rem, 2.7442722372rem + 4.0431266846vw, 5.625rem);
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(0.9375rem, 0.5488544474rem + 0.8086253369vw, 1.125rem);
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 11px;
}
@media (max-width: 900px) {
  .mens2__item_name-long {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mens2__item_name-long {
    grid-template-columns: 1fr 75px;
  }
}
@media (max-width: 430px) {
  .mens2__item_name-long {
    grid-template-columns: 1fr;
  }
}
.mens2__menu-name {
  line-height: 1.75;
  letter-spacing: 0.1111111111em;
}
.mens2__fee {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.09em;
}
.mens2__note {
  font-size: 0.875rem;
  letter-spacing: 0.1428571429em;
  text-align: right;
  margin-top: 14px;
}

/*###################################################################
  ladys（page）
###################################################################*/
.mens-c {
  color: var(--text2);
}

.ladys1_pos {
  margin-top: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem);
}
.ladys1__inner {
  max-width: 1060px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .ladys1__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.ladys1__text {
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 2.5;
  letter-spacing: 0.1111111111em;
  white-space: pre-line;
}
.ladys1__banner {
  max-width: 800px;
  display: block;
  margin-top: clamp(2.5rem, 1.9036259542rem + 2.5445292621vw, 3.125rem);
  margin-inline: auto;
}

.ladys2_pos {
  margin-top: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem);
}
.ladys2__title {
  height: clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
  display: grid;
  place-items: center;
  background: url(../images/ladys2-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/ladys2-bg.webp) 1x, url(../images/ladys2-bg@2x.webp) 2x);
  background-image: image-set(url(../images/ladys2-bg.webp) 1x, url(../images/ladys2-bg@2x.webp) 2x);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 1.8rem + 1.92vw, 3rem);
  font-weight: bold;
  letter-spacing: 0.0416666667em;
}
.ladys2__course_1 {
  margin-top: clamp(3.125rem, 0.143129771rem + 12.7226463104vw, 6.25rem);
}
.ladys2__course_2 {
  margin-top: clamp(3.75rem, 1.3645038168rem + 10.1781170483vw, 6.25rem);
}
.ladys2__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) {
  .ladys2__inner {
    max-width: 600px;
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.ladys2__inner_2 {
  padding-bottom: clamp(7.5rem, 5.7108778626rem + 7.6335877863vw, 9.375rem);
}
.ladys2__course-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: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 21px;
}
.ladys2__jp {
  letter-spacing: 0.125em;
}
.ladys2__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: clamp(1rem, 0.2247137405rem + 3.3078880407vw, 1.8125rem);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.ladys2__en::before {
  content: "";
  max-width: 53px;
  width: 100%;
  aspect-ratio: 53/45;
  background: url(../images/icon-comb.svg) no-repeat center center/contain;
}
.ladys2__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: 50px;
  margin-top: clamp(3.125rem, 0.7395038168rem + 10.1781170483vw, 5.625rem);
}

.ladys-list__details[open] .ladys-list__icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ladys-list__summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  position: relative;
  cursor: pointer;
  font-size: clamp(1.125rem, 0.9166666667rem + 0.8888888889vw, 1.25rem);
  border-bottom: 2px solid var(--text2);
  padding-bottom: 18px;
}
.ladys-list__summary::-webkit-details-marker {
  display: none;
}
.ladys-list__summary::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--text2);
  position: absolute;
  bottom: 6px;
}
.ladys-list__title {
  letter-spacing: 0.1em;
}
.ladys-list__group {
  display: grid;
  grid-template-columns: 1fr 48px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.ladys-list__fee {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0.1em;
}
.ladys-list__tax {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  letter-spacing: 0.125em;
}
.ladys-list__icon {
  width: 19px;
  aspect-ratio: 19/11;
  background: url(../images/icon-course-arrow.svg) no-repeat center center/contain;
  -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;
  margin-right: 9px;
  margin-left: auto;
}
.ladys-list__body {
  min-height: 489px;
  position: relative;
  background-color: #e0e0e0;
  font-size: clamp(0.875rem, 0.5446735395rem + 0.6872852234vw, 1rem);
  border-bottom: 2px solid var(--text2);
  padding: 40px 20px 38px;
}
@media (max-width: 768px) {
  .ladys-list__body {
    font-size: 1rem;
  }
}
.ladys-list__body::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--text2);
  position: absolute;
  bottom: -10px;
  left: 0;
}
.ladys-list__body-inner {
  max-width: 924px;
  margin-inline: auto;
}
.ladys-list__body-top {
  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;
  gap: clamp(0.9375rem, -0.625rem + 6.6666666667vw, 1.875rem) 15px;
}
@media (max-width: 768px) {
  .ladys-list__body-top {
    -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;
  }
}
.ladys-list__text {
  max-width: 644px;
  width: 100%;
  line-height: 2.5;
  white-space: pre-line;
}
.ladys-list__img {
  max-width: 250px;
  width: 100%;
}
.ladys-list__bottom {
  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;
  gap: 30px 15px;
  margin-top: clamp(1.875rem, -0.5208333333rem + 10.2222222222vw, 3.3125rem);
}
@media (max-width: 768px) {
  .ladys-list__bottom {
    -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;
  }
}
.ladys-list__cat {
  width: 100%;
}
.ladys-list__cat_1col {
  max-width: 400px;
}
.ladys-list__cat_2col {
  max-width: 400px;
}
.ladys-list__cat_3col-1 {
  max-width: 300px;
}
@media (max-width: 768px) {
  .ladys-list__cat_3col-1 {
    max-width: 400px;
  }
}
.ladys-list__cat_3col-2 {
  max-width: 250px;
}
@media (max-width: 768px) {
  .ladys-list__cat_3col-2 {
    max-width: 400px;
  }
}
.ladys-list__cat_3col-3 {
  max-width: 306px;
}
@media (max-width: 768px) {
  .ladys-list__cat_3col-3 {
    max-width: 400px;
  }
}
.ladys-list__cat-title {
  position: relative;
  border-bottom: 1px solid var(--text2);
  padding-bottom: 8px;
}
.ladys-list__cat-title::before {
  content: "";
  max-width: 100px;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: var(--text2);
}
.ladys-list__cat-title_course::before {
  max-width: 150px;
}
.ladys-list__items {
  margin-top: 21px;
  list-style-position: inside;
}
.ladys-list__items_course {
  list-style-type: decimal;
  padding-left: 4px;
}
.ladys-list__items_dot {
  list-style-type: disc;
  padding-left: 4px;
}
.ladys-list__item {
  line-height: 1.875;
  letter-spacing: 0.125em;
}
.ladys-list__item_op {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}
.ladys-list__op-fee {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0.13em;
  margin-left: auto;
}

/*###################################################################
  salon-info（page）
###################################################################*/
.salon-c__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) {
  .salon-c__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}

.salon1_pos {
  margin-top: clamp(3.75rem, 1.1855916031rem + 10.941475827vw, 6.4375rem);
}
.salon1__text {
  max-width: 936px;
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 2.2222222222;
  letter-spacing: 0.1111111111em;
  white-space: pre-line;
  margin-top: clamp(2.5rem, 1.6054389313rem + 3.8167938931vw, 3.4375rem);
  margin-inline: auto;
}

.salon2_pos {
  margin-top: clamp(3.75rem, 1.1855916031rem + 10.941475827vw, 6.4375rem);
}
.salon2__body {
  max-width: 750px;
  margin-top: clamp(2.5rem, 1.6054389313rem + 3.8167938931vw, 3.4375rem);
  margin-inline: auto;
}
.salon2__iframe {
  width: 100%;
  height: clamp(18.75rem, 9.804389313rem + 38.1679389313vw, 28.125rem);
}

.salon3_pos {
  margin-top: clamp(3.75rem, 1.1855916031rem + 10.941475827vw, 6.4375rem);
}
.salon3__body {
  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;
  gap: 40px 15px;
  margin-top: clamp(2.5rem, 1.6054389313rem + 3.8167938931vw, 3.4375rem);
  margin-top: 55px;
}
@media (max-width: 768px) {
  .salon3__body {
    -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;
  }
}
.salon3__dl {
  max-width: 441px;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(6.75rem, -6.95854811rem + 28.5223367698vw, 11.9375rem) 1fr;
  font-size: clamp(1rem, 0.6696735395rem + 0.6872852234vw, 1.125rem);
  line-height: 2.2222222222;
  letter-spacing: 0.0555555556em;
}
@media (max-width: 768px) {
  .salon3__dl {
    grid-template-columns: clamp(7.125rem, -7.3125rem + 61.6vw, 11.9375rem) 1fr;
  }
}
.salon3__dt {
  font-weight: 500;
  border-bottom: 1px solid #bbb;
  padding: 7px 0;
}
.salon3__dd {
  border-bottom: 1px solid #bbb;
  padding: 7px 0;
}
.salon3__img {
  max-width: 490px;
  width: 100%;
}
.salon3__gmap {
  width: 100%;
  height: clamp(18.75rem, 9.804389313rem + 38.1679389313vw, 28.125rem);
}

.salon4_pos {
  margin-top: clamp(3.75rem, 1.1855916031rem + 10.941475827vw, 6.4375rem);
}
.salon4__title {
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1111111111em;
  text-decoration: underline;
}
.salon4__map {
  margin-top: clamp(2.5rem, 1.6054389313rem + 3.8167938931vw, 3.4375rem);
}
.salon4__gmap {
  width: 100%;
  height: clamp(18.75rem, 9.804389313rem + 38.1679389313vw, 28.125rem);
}

/*###################################################################
  page-404（page）
###################################################################*/
.page-404_pos {
  margin-top: clamp(3.75rem, 2.0833333333rem + 6.6666666667vw, 6.25rem);
}
.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: 120px;
}
@media (max-width: 768px) {
  .page-404__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) 120px;
  }
}
.page-404__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75;
}
.page-404__text {
  line-height: 2;
  white-space: pre-line;
  margin-top: 40px;
}
.page-404__button {
  margin: 54px auto 0;
}

@media (hover: hover) and (pointer: fine) {
  .page-404__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .page-404__button:hover, .page-404__button:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  js-（js制御用）
###################################################################*/