@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
body {
  padding-top: unset;
}

/* ローディング
---------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: var(--colorTextMain);
  -webkit-animation-name: fadeOutLoading;
          animation-name: fadeOutLoading;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#loading .loadingLogo {
  width: 190px;
  height: 106px;
  -webkit-animation-name: fadeInLoadingLogo;
          animation-name: fadeInLoadingLogo;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#loading.hidden {
  display: none;
}

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

@keyframes fadeInLoadingLogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutLoading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutLoading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* トップページ限定ヘッダー
---------------------------------------------- */
#header #headerInner {
  position: relative;
  background-color: var(--colorBackGround);
}

/* スクロールで動くロゴとリード文
---------------------------------------------- */
main {
  position: relative;
}

#scrollLead {
  z-index: 1000;
  width: 100%;
  height: 100svh;
}
#scrollLead .scrollLeadInner {
  position: relative;
  width: 100%;
  height: 100%;
}
#scrollLead .scrollLeadInner #scrollContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#scrollLead .scrollLeadInner #scrollContents .symbol {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #scrollLead .scrollLeadInner #scrollContents .symbol {
    width: 200px;
    height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  #scrollLead .scrollLeadInner #scrollContents .symbol {
    width: 300px;
    height: 300px;
  }
}
#scrollLead .scrollLeadInner #scrollContents .symbol #initialSymbol {
  opacity: 0.4;
}
#scrollLead .scrollLeadInner #scrollContents .symbol #fadeSymbol {
  position: absolute;
  top: 0;
  left: 0;
}
#scrollLead .scrollLeadInner #scrollContents .leadTitleJP {
  position: relative;
  z-index: 10;
  color: var(--colorTextSub);
  font-family: var(--fontJP);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.32em;
  white-space: nowrap;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  #scrollLead .scrollLeadInner #scrollContents .leadTitleJP {
    font-size: var(--size20px);
  }
}
@media screen and (min-width: 1024px) {
  #scrollLead .scrollLeadInner #scrollContents .leadTitleJP {
    font-size: var(--size32px);
  }
}
#scrollLead .scrollLeadInner #scrollContents .leadTitleEn {
  color: #D6C4AE;
  font-family: var(--fontEN);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  #scrollLead .scrollLeadInner #scrollContents .leadTitleEn {
    font-size: var(--size12px);
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #scrollLead .scrollLeadInner #scrollContents .leadTitleEn {
    font-size: var(--size14px);
    margin-top: 24px;
  }
}

/* メインイメージ
---------------------------------------------- */
#mainVisual {
  width: 100%;
  height: 100svh;
  position: relative;
  z-index: -10;
}
#mainVisual .mainVisualVideo {
  position: fixed;
  width: 100%;
  height: 100%;
}
#mainVisual .mainVisualVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#mainVisual .mainVisualVideo .mask {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-color: #B79167;
  mix-blend-mode: multiply;
}

.scrollDown {
  position: absolute;
  bottom: 0;
  z-index: 10;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 1023px) {
  .scrollDown {
    left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .scrollDown {
    left: 24px;
  }
}
.scrollDown::before {
  background-color: #FFFFFF;
  bottom: -175px;
  content: "";
  height: 160px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
  -webkit-animation-name: scrollDown;
          animation-name: scrollDown;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scrollDown::after {
  background-color: #B79167;
  bottom: -175px;
  content: "";
  height: 160px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
.scrollDown span {
  color: #D6CFAE;
  font-family: var(--fontEN);
}
@media screen and (max-width: 1023px) {
  .scrollDown span {
    font-size: var(--size12px);
  }
}
@media screen and (min-width: 1024px) {
  .scrollDown span {
    font-size: var(--size16px);
  }
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* 固定リード文
---------------------------------------------- */
#lead {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #lead {
    padding-bottom: calc(96px + 8%);
  }
}
@media screen and (min-width: 1024px) {
  #lead {
    padding-top: 320px;
    padding-bottom: calc(200px + 7.8125%);
  }
}
#lead .gradientMask {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(64%, rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5) 64%);
}
#lead .leadText {
  position: relative;
  z-index: 100;
  color: var(--colorTextSub);
  font-family: var(--fontJP);
  text-align: center;
  line-height: 2.6;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 1023px) {
  #lead .leadText {
    padding-top: 48px;
  }
}
@media screen and (min-width: 1024px) {
  #lead .leadText {
    font-size: var(--size20px);
    padding-top: 96px;
  }
}

/* さつき整骨院の特長
---------------------------------------------- */
#features {
  position: relative;
  z-index: 100;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  #features {
    background-image: url("../top/images/features_bg_sp.webp");
    padding-top: calc(80px + 7.8125%);
    padding-bottom: calc(80px + 7.8125%);
    margin-top: -8%;
  }
}
@media screen and (min-width: 1024px) {
  #features {
    background-image: url("../top/images/features_bg_pc.webp");
    padding-top: calc(80px + 7.8125%);
    padding-bottom: calc(160px + 7.8125%);
    margin-top: -7.8125%;
  }
}
#features .featuresInner {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  #features .featuresInner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresInner {
    max-width: 1840px;
    margin: 0 auto;
  }
}
#features .featuresContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1023px) {
  #features .featuresContainer {
    gap: 64px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresContainer {
    gap: 120px;
  }
}
#features .featuresBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #features .featuresBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.2%;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox.imageLeft {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-right: 10%;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox.imageLeft .areaImage {
    width: 31%;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox.imageRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-left: 10%;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox.imageRight .areaImage {
    width: 41%;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox .areaText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#features .featuresBox .areaText .number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: var(--colorMain);
  font-size: 1.375rem;
  font-family: var(--fontEN);
  line-height: 1;
  -webkit-text-stroke: 1px var(--colorMain);
}
#features .featuresBox .areaText .number::before {
  content: "";
  display: block;
  width: 32px;
  position: absolute;
  top: 50%;
  right: -1em;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-top: 3px solid var(--colorBorder);
}
#features .featuresBox .areaText .number::after {
  content: "";
  display: block;
  width: 120px;
  position: absolute;
  top: 50%;
  right: -1em;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-top: 1px solid var(--colorBorder);
}
#features .featuresBox .areaText .title {
  color: var(--colorTextMain);
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  #features .featuresBox .areaText .title {
    font-size: var(--size24px);
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox .areaText .title {
    font-size: var(--size28px);
    margin-top: 48px;
  }
}
@media screen and (max-width: 1023px) {
  #features .featuresBox .areaText .text {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox .areaText .text {
    margin-top: 48px;
  }
}
#features .featuresBox .areaText .imageAward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 589px) {
  #features .featuresBox .areaText .imageAward {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 16px;
  }
}
@media screen and (min-width: 590px) and (max-width: 1023px) {
  #features .featuresBox .areaText .imageAward {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox .areaText .imageAward {
    margin-top: 36px;
  }
}
@media screen and (max-width: 1023px) {
  #features .featuresBox .areaText .imageAward .image {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  #features .featuresBox .areaText .imageAward .image {
    width: calc((100% - 48px) / 4);
  }
}

/*施術メニュー
---------------------------------------------- */
#menu {
  position: relative;
  z-index: 100;
  padding-top: 80px;
  background-color: var(--colorBackGroundPale);
}
@media screen and (max-width: 1023px) {
  #menu {
    padding-bottom: calc(80px + 7.8125%);
  }
}
@media screen and (min-width: 1024px) {
  #menu {
    padding-bottom: calc(168px + 7.8125%);
  }
}
#menu::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 7.8125%;
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-image: url("../top/images/menu_wave_top.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
#menu .menuLeadContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #menu .menuLeadContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuLeadContainer {
    gap: 12%;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1366px) {
  #menu .menuLeadContainer {
    margin-right: 100px;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuLeadContainer .areaLead {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#menu .menuLeadContainer .areaLead .leadText {
  font-family: var(--fontJP);
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  #menu .menuLeadContainer .areaLead .leadText {
    font-size: var(--size18px);
  }
}
#menu .menuLeadContainer .areaLead .menuNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  #menu .menuLeadContainer .areaLead .menuNavList {
    gap: 16px 16px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuLeadContainer .areaLead .menuNavList {
    gap: 16px 16px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1366px) {
  #menu .menuLeadContainer .areaLead .menuNavList {
    gap: 32px 4%;
  }
}
@media screen and (max-width: 1023px) {
  #menu .menuLeadContainer .areaLead .menuNavList .menuNavListItem {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuLeadContainer .areaLead .menuNavList .menuNavListItem {
    width: calc((100% - 32px) / 3);
  }
}
@media screen and (min-width: 1366px) {
  #menu .menuLeadContainer .areaLead .menuNavList .menuNavListItem {
    width: 22%;
  }
}
#menu .menuLeadContainer .areaLead .menuNavList .linkText {
  width: 100%;
  min-width: unset;
}
@media screen and (max-width: 1023px) {
  #menu .menuLeadContainer .areaLead .menuNavList .linkText a {
    font-size: var(--size14px);
  }
}
#menu .menuContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1366px) {
  #menu .menuContainer {
    gap: 96px 6.5%;
  }
}
#menu .menuContainer .menuBox {
  background-color: var(--colorBackGroundDeep);
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.imageLeft {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.imageRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer .menuBox.pcTwinColumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.pcTwinColumn {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1366px) {
  #menu .menuContainer .menuBox.pcTwinColumn {
    width: 46.75%;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.pcTwinColumn .areaText {
    padding: 40px 7%;
  }
}
#menu .menuContainer .menuBox.pcSingleColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer .menuBox.pcSingleColumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.pcSingleColumn {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.pcSingleColumn .areaImage {
    width: 52%;
  }
}
#menu .menuContainer .menuBox.pcSingleColumn .areaImage .image {
  height: 100%;
}
#menu .menuContainer .menuBox.pcSingleColumn .areaImage .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox.pcSingleColumn .areaText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 32px 6.5%;
  }
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer .menuBox .areaText {
    padding: 32px 7%;
  }
}
#menu .menuContainer .menuBox .label {
  color: var(--colorMain);
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
#menu .menuContainer .menuBox .label span {
  font-size: 1.5em;
}
#menu .menuContainer .menuBox .label.iconCrown::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 17px;
  -webkit-mask-image: url("../top/images/menu_labelIcon_crown.svg");
          mask-image: url("../top/images/menu_labelIcon_crown.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--colorMain);
  margin-right: 0.5em;
}
#menu .menuContainer .menuBox .menuHeader {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer .menuBox .menuHeader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox .menuHeader {
    gap: 24px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 900px) and (max-width: 1600px) {
  #menu .menuContainer .menuBox .menuHeader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
#menu .menuContainer .menuBox .menuHeader::before {
  content: "";
  display: block;
  width: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 3px solid var(--colorBorder);
}
#menu .menuContainer .menuBox .menuHeader::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 1px;
  left: 0;
  border-top: 1px solid var(--colorBorder);
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox .menuHeader .title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#menu .menuContainer .menuBox .menuHeader .title .main {
  font-weight: 700;
  font-family: var(--fontJP);
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  #menu .menuContainer .menuBox .menuHeader .title .main {
    font-size: var(--size24px);
  }
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox .menuHeader .title .main {
    font-size: var(--size28px);
  }
}
#menu .menuContainer .menuBox .menuHeader .title .sub {
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  #menu .menuContainer .menuBox .menuHeader .title .sub {
    font-size: var(--size18px);
    margin-top: 8px;
  }
}
#menu .menuContainer .menuBox .menuHeader .title .sub.enText {
  font-size: var(--size14px);
}
#menu .menuContainer .menuBox .price {
  font-family: var(--fontJP);
  font-weight: 700;
  font-size: var(--size18px);
}
#menu .menuContainer .menuBox .price.onSpTab {
  margin-top: 24px;
}
#menu .menuContainer .menuBox .price.onPc {
  text-align: right;
}
#menu .menuContainer .menuBox .menuText {
  margin-top: 24px;
}
#menu .menuContainer .menuBox .menuSubList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
#menu .menuContainer .menuBox .menuSubList .menuSubListItem {
  color: var(--colorTextSub);
  background-color: var(--colorMain);
  padding: 0 8px;
  letter-spacing: 0.04em;
}

/* 施術症例
---------------------------------------------- */
#case {
  position: relative;
  z-index: 100;
  padding-top: 80px;
  background-color: var(--colorBackGroundDeep);
}
@media screen and (max-width: 1023px) {
  #case {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  #case {
    padding-bottom: 240px;
  }
}
#case::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 7.8125%;
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-image: url("../top/images/case_wave_top.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
#case .caseContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #case .caseContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox:nth-of-type(1) {
    padding-right: 8%;
    border-right: 1px solid #D6C7B3;
  }
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox:nth-of-type(2) {
    padding-left: 8%;
  }
}
#case .caseContainer .caseBox .imageContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
#case .caseContainer .caseBox .imageContainer .image {
  position: relative;
  width: calc((100% - 16px) / 2);
}
#case .caseContainer .caseBox .imageContainer .image .label {
  position: absolute;
  color: var(--colorTextSub);
  font-family: var(--fontEN);
  line-height: 1;
  border: 1px solid var(--colorTextSub);
}
@media screen and (max-width: 589px) {
  #case .caseContainer .caseBox .imageContainer .image .label {
    top: 8px;
    left: 8px;
    font-size: var(--size16px);
    padding: 4px 8px;
  }
}
@media screen and (min-width: 590px) {
  #case .caseContainer .caseBox .imageContainer .image .label {
    top: 16px;
    left: 16px;
    font-size: var(--size20px);
    padding: 8px 16px;
  }
}
#case .caseContainer .caseBox .captionContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  #case .caseContainer .caseBox .captionContainer {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox .captionContainer {
    margin-top: 24px;
  }
}
#case .caseContainer .caseBox .captionContainer .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  #case .caseContainer .caseBox .captionContainer .title {
    font-size: var(--size20px);
  }
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox .captionContainer .title {
    font-size: var(--size24px);
  }
}
#case .caseContainer .caseBox .captionContainer .number {
  font-family: var(--fontJP);
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  #case .caseContainer .caseBox .text {
    margin-top: 16px;
  }
}

/* お客様の声
---------------------------------------------- */
#voice {
  overflow-x: hidden;
  background-color: var(--colorBackGroundDeep);
}
@media screen and (max-width: 1023px) {
  #voice {
    padding-bottom: calc(80px + 7.8125%);
  }
}
@media screen and (min-width: 1024px) {
  #voice {
    padding-bottom: calc(160px + 7.8125%);
  }
}
#voice .voiceSwiperWrap {
  position: relative;
}
#voice .swiper {
  position: unset;
  margin-right: calc(50% - 50vw);
}
#voice .swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--colorBackGroundPale);
}
@media screen and (max-width: 1023px) {
  #voice .swiper .swiper-slide {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  #voice .swiper .swiper-slide {
    padding: 24px 40px 56px;
  }
}
#voice .swiper .swiper-slide .swiper-slide-item {
  height: 100%;
}
#voice .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#voice .swiper .swiper-button-next,
#voice .swiper .swiper-button-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--colorTextMain);
  left: unset;
  right: 0;
}
@media screen and (max-width: 1023px) {
  #voice .swiper .swiper-button-next,
  #voice .swiper .swiper-button-prev {
    top: -40px;
  }
}
@media screen and (min-width: 1024px) {
  #voice .swiper .swiper-button-next,
  #voice .swiper .swiper-button-prev {
    top: -80px;
  }
}
#voice .swiper .swiper-button-next svg,
#voice .swiper .swiper-button-prev svg {
  display: none;
}
#voice .swiper .swiper-button-next .arrow,
#voice .swiper .swiper-button-prev .arrow {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#voice .swiper .swiper-button-next .arrow::before,
#voice .swiper .swiper-button-prev .arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--colorTextMain);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#voice .swiper .swiper-button-prev {
  -webkit-transform: translate(calc(-100% - 16px), -100%) rotate(180deg);
          transform: translate(calc(-100% - 16px), -100%) rotate(180deg);
}
#voice .swiper .swiper-button-next {
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
#voice .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--colorTextSub);
  font-family: var(--fontJP);
  font-weight: 700;
  padding: 0 8px;
  background-color: var(--colorMain);
}
@media screen and (min-width: 1024px) {
  #voice .label {
    font-size: var(--size18px);
  }
}
#voice .label span {
  font-size: var(--size14px);
}
@media screen and (max-width: 1023px) {
  #voice .image {
    width: 200px;
    margin: 8px auto 0;
  }
}
@media screen and (min-width: 590px) {
  #voice .image {
    width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  #voice .image {
    margin: 24px auto 0;
  }
}
#voice .text {
  margin-top: 24px;
}
#voice .author {
  text-align: right;
  margin-top: 16px;
}

/* 画像のインサート
---------------------------------------------- */
.insert {
  margin-top: -7.8125%;
}

/* 院長メッセージ
---------------------------------------------- */
#message {
  overflow-x: hidden;
  background-color: var(--colorBackGroundPale);
  margin-top: -7.8125%;
}
@media screen and (max-width: 1023px) {
  #message {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  #message {
    padding-top: calc(80px + 7.8125%);
    padding-bottom: 240px;
  }
}
#message .messageContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #message .messageContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #message .messageContainer {
    gap: 6.5%;
  }
}
@media screen and (min-width: 1024px) {
  #message .messageContainer .areaImage {
    width: 46%;
  }
}
#message .messageContainer .areaText {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #message .messageContainer .areaText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#message .messageContainer .areaText::before {
  content: "";
  display: block;
  width: 1537px;
  height: 864px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -420px);
          transform: translate(50%, -420px);
  background-image: url("../top/images/message_textBg.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#message .messageContainer .areaText .post {
  font-size: var(--size18px);
  font-family: var(--fontJP);
  text-align: right;
}
@media screen and (max-width: 1023px) {
  #message .messageContainer .areaText .post {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #message .messageContainer .areaText .post {
    margin-top: 32px;
  }
}
#message .messageContainer .areaText .name {
  font-weight: 700;
  font-family: var(--fontJP);
  text-align: right;
}
@media screen and (max-width: 1023px) {
  #message .messageContainer .areaText .name {
    font-size: var(--size20px);
  }
}
@media screen and (min-width: 1024px) {
  #message .messageContainer .areaText .name {
    font-size: var(--size28px);
  }
}
#message .messageContainer .areaText .name span {
  font-size: 0.64em;
  margin-right: 16px;
}

/* 店舗情報
---------------------------------------------- */
#information {
  background-color: var(--colorBackGroundPale);
}
@media screen and (max-width: 1023px) {
  #information {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  #information {
    padding-bottom: 240px;
  }
}
#information .informationContainer {
  display: grid;
}
@media screen and (max-width: 589px) {
  #information .informationContainer {
    grid-template-areas: "areaText" "areaMap" "areaTable";
  }
}
@media screen and (min-width: 590px) and (max-width: 1023px) {
  #information .informationContainer {
    grid-template-areas: "areaText areaMap" "areaTable areaTable";
    grid-template-columns: auto 52%;
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
    row-gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #information .informationContainer {
    grid-template-areas: "areaText areaMap" "areaTable areaMap";
    grid-template-columns: auto 52%;
    -webkit-column-gap: 6.5%;
       -moz-column-gap: 6.5%;
            column-gap: 6.5%;
    row-gap: 40px;
  }
}
#information .informationContainer .areaText {
  grid-area: areaText;
}
@media screen and (min-width: 1024px) {
  #information .informationContainer .areaText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#information .informationContainer .areaText .title {
  font-family: var(--fontJP);
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  #information .informationContainer .areaText .title {
    font-size: var(--size28px);
  }
}
#information .informationContainer .areaText address * {
  font-family: var(--fontJP);
}
#information .informationContainer .areaText address .googleMapLink {
  display: inline-block;
  text-decoration: underline;
}
#information .informationContainer .areaText .text {
  font-family: var(--fontJP);
}
#information .informationContainer .areaTable {
  grid-area: areaTable;
}
@media screen and (max-width: 1023px) {
  #information .informationContainer .areaTable {
    margin-top: 24px;
  }
}
#information .informationContainer .areaTable .table {
  width: 100%;
  font-family: var(--fontJP);
}
@media screen and (max-width: 1023px) {
  #information .informationContainer .areaTable .table {
    max-width: 420px;
    margin-right: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #information .informationContainer .areaTable .table {
    max-width: 480px;
  }
}
#information .informationContainer .areaTable .table tr {
  border-bottom: 1px solid var(--colorBorder);
}
#information .informationContainer .areaTable .table tr th,
#information .informationContainer .areaTable .table tr td {
  padding: 16px 0;
  line-height: 1;
}
#information .informationContainer .areaTable .table tr th {
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  #information .informationContainer .areaTable .table tr th:not(:first-of-type) {
    width: 36px;
  }
}
@media screen and (min-width: 1024px) {
  #information .informationContainer .areaTable .table tr th:not(:first-of-type) {
    width: 48px;
  }
}
#information .informationContainer .areaTable .table tr td.time {
  font-size: var(--size18px);
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  #information .informationContainer .areaTable .table tr td.time {
    font-size: var(--size14px);
  }
}
#information .informationContainer .areaMap {
  grid-area: areaMap;
}
#information .informationContainer .areaMap .googleMap {
  width: 100%;
}
@media screen and (max-width: 589px) {
  #information .informationContainer .areaMap .googleMap {
    height: 320px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 590px) and (max-width: 1023px) {
  #information .informationContainer .areaMap .googleMap {
    height: 320px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  #information .informationContainer .areaMap .googleMap {
    height: 100%;
  }
}
#information .informationContainer .areaMap .googleMap iframe {
  width: 100%;
  height: 100%;
}

/* インスタグラム
---------------------------------------------- */
#instagram {
  background-color: var(--colorBackGroundPale);
}
@media screen and (max-width: 1023px) {
  #instagram {
    padding-bottom: 104px;
  }
}
@media screen and (min-width: 1024px) {
  #instagram {
    padding-bottom: 200px;
  }
}
#instagram .instagramContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #instagram .instagramContainer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
@media screen and (min-width: 1024px) {
  #instagram .instagramContainer {
    gap: 1.6%;
  }
}
#instagram .instagramContainer .instagramBox {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  #instagram .instagramContainer .instagramBox {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  #instagram .instagramContainer .instagramBox {
    width: 23.8%;
  }
}
#instagram .instagramContainer .instagramBox a {
  width: 100%;
  height: 100%;
}
#instagram .instagramContainer .instagramBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#instagram .linkText {
  margin: 40px 0 0 auto;
}

/* ご予約方法
---------------------------------------------- */
#reservation {
  background-color: var(--colorBackGroundPale);
}
@media screen and (max-width: 1023px) {
  #reservation {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  #reservation {
    padding-bottom: 240px;
  }
}
#reservation .reservationInnerBox {
  background-color: var(--colorBackGroundDeep);
  background-image: url("../top/images/reservation_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  #reservation .reservationInnerBox {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #reservation .reservationInnerBox {
    padding-top: 88px;
    padding-bottom: 104px;
  }
}
#reservation .textBox .text {
  font-size: var(--size18px);
  font-family: var(--fontJP);
}
@media screen and (min-width: 1024px) {
  #reservation .textBox .text {
    text-align: center;
  }
}
#reservation .reservationContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  #reservation .reservationContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #reservation .reservationContainer {
    gap: 5.9%;
  }
}
@media screen and (min-width: 1024px) {
  #reservation .reservationContainer .reservationBox {
    width: 31.3666666667%;
    margin-top: 56px;
  }
}
#reservation .reservationContainer .reservationBox a {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  grid-template-areas: "img subText" "img mainText";
  padding: 24px 16px;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#reservation .reservationContainer .reservationBox a:hover {
  opacity: 0.7;
}
#reservation .reservationContainer .reservationBox a .icon {
  grid-area: img;
}
#reservation .reservationContainer .reservationBox a .subText {
  grid-area: subText;
  color: var(--colorTextSub);
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1.5;
}
#reservation .reservationContainer .reservationBox a .mainText {
  grid-area: mainText;
  color: var(--colorTextSub);
  font-size: var(--size24px);
  font-family: var(--fontJP);
  font-weight: 700;
  line-height: 1.5;
}
#reservation .reservationContainer .reservationBox.boxTel a {
  background-color: #8D7861;
}
#reservation .reservationContainer .reservationBox.boxLine a {
  background-color: #76A146;
}
#reservation .reservationContainer .reservationBox.boxInternet a {
  background-color: var(--colorMain);
}/*# sourceMappingURL=index.css.map */