@charset "UTF-8";

/* media query
------------------------------ */

/* font
------------------------------ */

/* setting
------------------------------ */

:root {
  /* color */
  --base-color: #505050;
  --base-color-rgb: 80, 80, 80;
  --base-color02: #43392D;
  --base-color02-rgb: 67, 57, 45;
  --bg-color: #f1f1f1;
  --bg-color02: #F9F7F3;
  --line-color: #e3e3e3;
  --point-color: #F1A100;
  --tel-color: #F1C46B;
  --snsLine-color: #06C755;
  --beige-color: #C2A475;
  --beige-color-rgb: 192, 139, 59;
  --beige-color02: #D1A455;
  --brown-color: #908376;
  --brown-color-rgb: 144, 131, 118;
  --darkBrown-color: #43392D;
  --orange-color: #F0BD57;
  --orange-color02: #F0AD26;
  --gold-color: linear-gradient(90deg, #F7DB8E, #DBB264, #CD9D4E, #BF8939);
  /* transition */
  --base-transition: 0.2s ease-out;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

@-webkit-keyframes linerContents {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes linerContents {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes transformLeftRight02 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes transformLeftRight02 {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes transformRightLeft02 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}

@keyframes transformRightLeft02 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}

@-webkit-keyframes arrowLeftRight {
  0% {
    left: 1px;
  }

  100% {
    left: 20px;
  }
}

@keyframes arrowLeftRight {
  0% {
    left: 1px;
  }

  100% {
    left: 20px;
  }
}

@-webkit-keyframes arrowRightLeft {
  0% {
    left: -10px;
  }

  100% {
    left: 1px;
  }
}

@keyframes arrowRightLeft {
  0% {
    left: -10px;
  }

  100% {
    left: 1px;
  }
}

@-webkit-keyframes arrowLeftRight02 {
  0% {
    right: 2px;
  }

  100% {
    right: -10px;
  }
}

@keyframes arrowLeftRight02 {
  0% {
    right: 2px;
  }

  100% {
    right: -10px;
  }
}

@-webkit-keyframes arrowRightLeft02 {
  0% {
    right: 18px;
  }

  100% {
    right: 2px;
  }
}

@keyframes arrowRightLeft02 {
  0% {
    right: 18px;
  }

  100% {
    right: 2px;
  }
}

@-webkit-keyframes lineLeftRight {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@keyframes lineLeftRight {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes lineRightLeft {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

@keyframes lineRightLeft {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

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

*:focus-visible {
  outline: 2px solid var(--point-color);
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-size: 1.4rem;
  line-height: 1.875;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

section {
  position: relative;
  padding: 50px 0;
}

main {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

p.txt {
  line-height: 2;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  cursor: pointer;
}

input {
  color: var(--base-color);
}

select {
  background-color: #fff;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

.ib {
  display: inline-block;
}

.en {
  font-family: "optima-lt-pro", sans-serif;
}

.caution {
  color: red;
}

.pc__contents {
  z-index: -100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/common/pc/bg.webp) no-repeat center center/cover;
}

.pc__contents .en {
  position: absolute;
  top: -1.042vw;
  left: 0;
  width: calc(100% - 580px);
  font-size: 8.333vw;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  mix-blend-mode: color-burn;
}

.pc__contents__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 580px);
  height: 33.472vw;
  margin: auto;
}

.pc__contents__img .img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 30.278vw;
  height: 100%;
  margin: auto;
}

.pc__contents__img .img::after {
  z-index: -1;
  position: absolute;
  top: 32px;
  left: -37px;
  width: 100%;
  height: 100%;
  background: url(../img/common/pc/bg-img02.svg) no-repeat center center/contain;
  content: "";
  mix-blend-mode: color-burn;
}

.pc__contents__img .txt {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -3.125vw;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brown-color);
  font-size: 2.778vw;
  font-family: "Shippori Mincho", serif;
  white-space: nowrap;
}

.sp__contents {
  -webkit-box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-right: 0;
  margin-left: auto;
  overflow: hidden;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.07);
}

.sp__contents::before {
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 580px;
  height: 100%;
  background: url(../img/common/bg.webp) no-repeat center center/cover;
  content: "";
}

.error__contents {
  padding-top: 20px;
  padding-bottom: 100px;
}

.error__title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.error .txt {
  text-align: center;
}

.error .c-btn01 {
  margin-top: 30px;
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 10px;
}

.c-title01 .jp {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 20px;
  color: var(--brown-color);
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.c-title01 .jp::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon-title.svg) no-repeat center center/contain;
  content: "";
}

.c-title01 .en {
  color: var(--beige-color);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.c-title01__center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.c-title01__center .jp {
  margin: 0 auto;
}

.c-title02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-title02 .en {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  text-shadow: 0 4px 4px rgba(var(--base-color-rgb), 0.25);
}

.c-title02 .jp {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  text-shadow: 0 4px 4px rgba(var(--base-color-rgb), 0.25);
}

/* button
------------------------------ */

.c-btn01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  margin: 50px auto 0;
  padding: 0 40px;
  border: solid 1px rgba(var(--base-color-rgb), 0.3);
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.6rem;
}

.c-btn01::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  opacity: 0.4;
  transition: var(--base-transition);
}

/* c-heading
------------------------------ */

.c-heading {
  padding: 80px 0 50px;
}

.c-heading__title {
  position: relative;
  padding-left: 25px;
  color: var(--brown-color);
  font-size: 2.8rem;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}

.c-heading__title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/common/icon-title.svg) no-repeat center center/contain;
  content: "";
}

.c-heading__bg {
  margin-top: -10px;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  mix-blend-mode: color-burn;
  position: relative;
  z-index: -1;
}

.c-heading__txt {
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
}

/* c-pageLink
------------------------------ */

.c-pageLink {
  padding-bottom: 50px;
}

.c-pageLink__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.c-pageLink a {
  position: relative;
  padding: 10px 25px 10px 10px;
  border-bottom: solid 1px var(--line-color);
  text-align: center;
}

.c-pageLink a::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(-45deg);
  border-bottom: solid 1px var(--beige-color);
  border-left: solid 1px var(--beige-color);
  content: "";
}

.header {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  left: inherit;
  width: 100%;
  max-width: 580px;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 0 40px;
}

.header__logo {
  width: 130px;
}

.header__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  gap: 5px;
  background-color: var(--orange-color);
  transition: var(--base-transition);
}

.header__info_icon {
  width: 30px;
  height: 30px;
}

.header__info_txt {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.header__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--point-color);
}

.header__btn_inn {
  position: relative;
  width: 40px;
  height: 30px;
}

.header__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:nth-of-type(2) {
  top: 14px;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__infoNav {
  -webkit-transition: var(--base-transition);
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: var(--base-transition);
}

.header__infoNav.active {
  opacity: 1;
  pointer-events: all;
}

.header__infoNav_bg {
  z-index: -1;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

.header__infoNav_contents {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  padding: 35px 20px 100px;
  overflow-y: scroll;
  background-color: #fff;
}

.header__infoNav_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  gap: 10px;
  background-color: var(--orange-color);
  transition: var(--base-transition);
}

.header__infoNav_btn .icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.header__infoNav_btn .icon::before,
.header__infoNav_btn .icon::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.header__infoNav_btn .icon::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header__infoNav_btn .icon::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.header__infoNav_btn .txt {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.header__infoNav_label {
  padding: 15px 0;
  border-bottom: solid 1px rgba(var(--brown-color-rgb), 0.45);
  color: var(--base-color02);
  font-weight: 500;
  font-size: 1.6rem;
}

.header__infoNav_list + .header__infoNav_label {
  margin-top: 20px;
}

.header__infoNav_item a {
  position: relative;
  padding: 10px 0;
  font-size: 1.4rem;
}

.header__infoNav_item a::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px var(--darkBrown-color);
  border-bottom: solid 1px var(--darkBrown-color);
  content: "";
}

.header__nav {
  -webkit-transition: var(--base-transition);
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: var(--base-transition);
}

.header__nav.active {
  opacity: 1;
  pointer-events: all;
}

.header__nav_head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 40px;
}

.header__nav_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  gap: 10px;
  background-color: var(--point-color);
  transition: var(--base-transition);
}

.header__nav_btn .icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.header__nav_btn .icon::before,
.header__nav_btn .icon::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.header__nav_btn .icon::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header__nav_btn .icon::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.header__nav_btn .txt {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.header__nav_contents {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
  gap: 60px;
}

.header__nav .js-header-swiper {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  overflow: hidden;
}

.header__nav .swiper-navigation {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.header__nav .swiper-navigation__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__nav .swiper-button-prev,
.header__nav .swiper-button-next {
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 40px;
  height: 40px;
  margin: 0;
  border: solid 1px var(--beige-color);
  border-radius: 50%;
}

.header__nav .swiper-button-prev::after,
.header__nav .swiper-button-next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.header__nav .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.header__nav .swiper-pagination {
  position: relative;
  bottom: inherit;
  text-align: right;
}

.header__nav .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background-color: var(--beige-color);
}

.header__nav .swiper-pagination-bullet-active {
  position: relative;
}

.header__nav .swiper-pagination-bullet-active::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--beige-color);
  border-radius: 50%;
  content: "";
}

.header__nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 40px;
}

.header__nav_list {
  width: 100%;
}

.header__nav_item {
  width: 100%;
  max-width: 280px;
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.2);
}

.header__nav_link {
  position: relative;
  padding: 20px 0;
  font-weight: 500;
}

.header__nav_link::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px var(--base-color);
  border-bottom: solid 1px var(--base-color);
  content: "";
}

.header__nav .sub-list {
  padding-bottom: 20px;
  opacity: 0.7;
}

.header__nav .sub-list a {
  position: relative;
  padding: 10px 0 10px 30px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.header__nav .sub-list a::before {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px var(--base-color);
  border-bottom: solid 1px var(--base-color);
  content: "";
}

.header__nav_sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 200px 0 0;
  gap: 10px;
}

.info {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  padding: 100px 0;
  background-color: #fff;
}

.info__table {
  width: 100%;
}

.info__table table {
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.info__table thead th {
  padding: 10px 0;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.info__table thead th:first-of-type {
  width: 19.5%;
  text-align: left;
}

.info__table thead th:not(:first-of-type) {
  width: 11.5%;
}

.info__table td {
  padding: 10px 0;
  border-bottom: solid 1px var(--line-color);
}

.info__table td:not(:first-of-type) {
  text-align: center;
}

.info__table_caution {
  margin-top: 20px;
  font-size: 1.2rem;
}

.info__table_caution + .info__table_caution {
  margin-top: 0;
}

.info__address {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  gap: 10px;
}

.info__address_txt {
  font-size: 1.4rem;
}

.info__address a {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 10px 4px 28px;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.2rem;
}

.info__address a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url(../img/common/icon-map.svg) no-repeat center center/contain;
  content: "";
}

.info__access {
  line-height: 1.8;
  font-family: 1.2rem;
}

.info__access .icon {
  color: var(--beige-color);
}

.info__contact {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 50px;
  gap: 10px 7px;
}

.info__contact_button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 4px);
  min-width: 280px;
  height: 50px;
  margin: 0 auto;
  gap: 8px;
  color: #fff;
  font-weight: 500;
}

.info__contact_button::before {
  width: 21px;
  height: 21px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.info__contact .tel {
  background-color: var(--tel-color);
}

.info__contact .tel::before {
  background-image: url(../img/common/icon-tel.svg);
}

.info__contact .line {
  background-color: var(--snsLine-color);
}

.info__contact .line::before {
  background-image: url(../img/common/icon-line02.svg);
}

.info .eo-fullcalendar {
  -webkit-filter: sepia(0.1);
  filter: sepia(0.1);
}

.info .eo-fullcalendar .category-closed {
  border-color: var(--beige-color) !important;
  background-color: var(--beige-color) !important;
}

.footer {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  padding-top: 80px;
  background-color: #DACFBA;
}

.footer__inner {
  padding: 0 40px;
}

.footer__logo {
  width: 130px;
  margin: 0 auto 42px;
}

.footer__nav {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.footer__item {
  width: calc(50% - 10px);
}

.footer__item:has(.sub-list) {
  width: 100%;
}

.footer__link {
  position: relative;
  padding: 15px 30px 15px 0;
  color: var(--base-color02);
  font-weight: 500;
}

.footer__link .arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  overflow: hidden;
  opacity: 0.5;
}

.footer__link .arrow::before,
.footer__link .arrow::after {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.footer__link .arrow::after {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.footer .sub-list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.footer .sub-list li {
  width: 50%;
}

.footer .sub-list a {
  position: relative;
  padding: 10px 10px 10px 30px;
  color: var(--base-color02);
  font-weight: 500;
  font-size: 1.4rem;
  opacity: 0.7;
}

.footer .sub-list a .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 15px;
  height: 15px;
  margin: auto;
  overflow: hidden;
}

.footer .sub-list a .arrow::before,
.footer .sub-list a .arrow::after {
  -webkit-transform: rotate(-45deg);
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px var(--base-color02);
  border-bottom: solid 1px var(--base-color02);
  content: "";
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.footer .sub-list a .arrow::after {
  left: -10px;
}

.footer__bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.footer__bottom a {
  color: rgba(var(--base-color02-rgb), 0.7);
  font-size: 1.2rem;
}

.footer__bottom_link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__bottom_link a[target=_blank] {
  position: relative;
  padding-right: 22px;
}

.footer__bottom_link a[target=_blank]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/common/icon-tab.svg) no-repeat center center/contain;
  content: "";
}

.footer__sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__sns li {
  -webkit-filter: sepia(100%);
  width: 30px;
  height: 30px;
  filter: sepia(100%);
}

.footer__copy {
  margin-top: 120px;
  padding: 20px 0;
  border-top: solid 1px rgba(var(--base-color-rgb), 0.1);
  color: var(--base-color02);
  font-size: 1rem;
  text-align: center;
}

.about .reason {
  padding-bottom: 10px;
}

.about .reason__wrap + .reason__wrap {
  margin-top: 80px;
}

.about .reason__wrap:nth-of-type(odd) .reason__title {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}

.about .reason__wrap:nth-of-type(odd) .reason__img img {
  margin-right: -20px;
  margin-left: 0;
}

.about .reason__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
}

.about .reason__title .num {
  color: var(--beige-color);
  font-size: 2rem;
  line-height: 1;
}

.about .reason__img {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

.about .reason__img img {
  width: calc(100% + 20px);
  max-width: inherit;
  margin-left: -20px;
}

.about .reason__img_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 8rem;
  line-height: 1;
  white-space: nowrap;
  mix-blend-mode: color-burn;
  opacity: 0.4;
}

.about .staff {
  padding-bottom: 100px;
}

.about .staff__title {
  margin-bottom: 20px;
  color: var(--beige-color);
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
}

.about .staff__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}

.about .staff__job {
  margin: 10px 0 0;
  font-size: 1.2rem;
  font-family: "Shippori Mincho", serif;
}

.about .staff__name {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.guide .flow__wrapper {
  padding: 40px 20px;
  overflow: hidden;
  background-color: var(--bg-color02);
}

.guide .flow .js-flow-swiper {
  position: relative;
}

.guide .flow .swiper-button-prev,
.guide .flow .swiper-button-next {
  -webkit-transition: var(--base-transition);
  top: 0;
  width: 40px;
  height: 40px;
  margin-top: calc(40% - 20px);
  border: solid 1px var(--beige-color);
  border-radius: 50%;
  transition: var(--base-transition);
}

.guide .flow .swiper-button-prev::after,
.guide .flow .swiper-button-next::after {
  width: 16px;
  height: 16px;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.guide .flow .swiper-button-prev {
  left: -10px;
}

.guide .flow .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.guide .flow .swiper-button-next {
  right: -10px;
}

.guide .flow__img {
  position: relative;
  padding: 0 10px;
}

.guide .flow__pagination {
  position: absolute;
  right: 0;
  bottom: -15px;
  color: var(--beige-color);
  font-size: 3.6rem;
  line-height: 1;
  mix-blend-mode: multiply;
}

.guide .flow__title {
  margin: 10px 0;
  color: var(--brown-color);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.guide .reserve__title {
  position: relative;
  margin-top: 40px;
  padding-left: 18px;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.guide .reserve__title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url(../img/common/icon-title.svg) no-repeat center center/contain;
  content: "";
}

.guide .reserve__btn {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  height: 50px;
  margin: 20px auto 0;
  gap: 0 5px;
  color: #fff;
  font-weight: 500;
}

.guide .reserve__btn.line {
  background-color: var(--snsLine-color);
  font-size: 1.6rem;
}

.guide .reserve__btn.line::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-line02.svg) no-repeat center center/contain;
  content: "";
}

.guide .reserve__btn.tel {
  background-color: var(--tel-color);
}

.guide .reserve__btn.tel .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 5px;
  font-size: 1.6rem;
  line-height: 1;
}

.guide .reserve__btn.tel .num::before {
  width: 21px;
  height: 21px;
  background: url(../img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.guide .reserve__btn.tel .txt {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.guide .reserve__cancel {
  margin-top: 60px;
  padding: 20px;
  background-color: var(--bg-color);
}

.guide .reserve__cancel_title {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.guide .reserve__cancel_list li {
  position: relative;
  margin-top: 15px;
  padding-left: 20px;
}

.guide .reserve__cancel_list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.guide .price__item {
  padding: 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.guide .price__item + .price__item {
  margin-top: -1px;
}

.guide .price__title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0;
}

.guide .price__default {
  text-decoration: line-through;
}

.guide .price__wrap {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.guide .price__discount {
  color: var(--orange-color02);
  font-weight: 500;
  line-height: 1.2;
}

.guide .price__num {
  font-weight: 700;
  font-size: 2.4rem;
}

.guide .price__tax {
  font-size: 1.4rem;
}

.guide .price__tag {
  padding: 6px 11px;
  border-radius: 3px;
  background-color: var(--orange-color02);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.guide .payment {
  padding-bottom: 100px;
}

.guide .payment__wrap {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--bg-color);
}

.c-menu__price {
  -webkit-box-shadow: 0 4px 4px rgba(var(--beige-color-rgb), 0.3);
  padding: 15px 12px;
  border: solid 1px var(--beige-color02);
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(var(--beige-color-rgb), 0.3);
}

.c-menu__price.small .c-menu__price_title {
  font-size: 1.6rem;
}

.c-menu__price.small02 .c-menu__price_title {
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
}

.c-menu__price_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-bottom: 10px;
  background: var(--gold-color);
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  text-shadow: 0 2px 4px rgba(var(--base-color-rgb), 0.3);
}

.c-menu__price_wrap {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.c-menu__price .tag {
  padding: 2px 15px;
  background-color: var(--beige-color02);
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}

.c-menu__price .price {
  color: var(--beige-color02);
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
}

.c-menu__price .unit {
  font-size: 1.2rem;
}

.c-menu__price_contact {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
  gap: 10px 7px;
}

.c-menu__price_contact a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 4px);
  min-width: 280px;
  height: 50px;
  margin: 0 auto;
  gap: 8px;
  color: #fff;
  font-weight: 500;
}

.c-menu__price_contact a::before {
  width: 21px;
  height: 21px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.c-menu__price_contact .tel {
  background-color: var(--tel-color);
}

.c-menu__price_contact .tel::before {
  background: url(../img/common/icon-tel.svg) no-repeat center center/contain;
}

.c-menu__price_contact .line {
  background-color: var(--snsLine-color);
}

.c-menu__price_contact .line::before {
  background: url(../img/common/icon-line02.svg) no-repeat center center/contain;
}

.c-menu .intro__title {
  position: relative;
  width: 265px;
  margin: 0 auto 40px;
  padding-top: 40px;
}

.c-menu .intro__title::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/common/icon-title.svg) no-repeat center center/contain;
  content: "";
}

.c-menu .voice .js-voice-swiper {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.c-menu .voice__title {
  margin-bottom: 10px;
  color: var(--beige-color);
  font-size: 2.4rem;
}

.c-menu .voice__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  padding: 20px;
  gap: 20px;
  background-color: var(--bg-color02);
}

.c-menu .voice__compare .en {
  color: var(--beige-color);
  font-size: 1.6rem;
  text-align: center;
}

.c-menu .voice .swiper-navigation {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-top: 30px;
  gap: 10px;
}

.c-menu .voice .swiper-button-prev,
.c-menu .voice .swiper-button-next {
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 40px;
  height: 40px;
  margin: 0;
  border: solid 1px var(--beige-color);
  border-radius: 50%;
}

.c-menu .voice .swiper-button-prev::after,
.c-menu .voice .swiper-button-next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.c-menu .voice .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.c-menu .worries__title {
  margin-bottom: 40px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.c-menu .worries__list {
  position: relative;
  padding-bottom: 190px;
}

.c-menu .worries__list::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 180px;
  background: url(../img/small-face/img-worries.webp) no-repeat center center/contain;
  content: "";
}

.c-menu .worries__list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.4rem;
}

.c-menu .worries__list li + li {
  margin-top: 15px;
}

.c-menu .worries__list li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/common/icon-check.svg) no-repeat center center/contain;
  content: "";
}

.c-menu .worries__txt {
  margin-top: 60px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-menu .flow {
  margin-top: 40px;
  padding: 30px 20px 40px;
  overflow: hidden;
  background-color: var(--bg-color02);
}

.c-menu .flow__title {
  margin-bottom: 20px;
  text-align: center;
}

.c-menu .flow__title .en {
  color: var(--beige-color);
  font-size: 2.4rem;
}

.c-menu .flow__title .jp {
  color: var(--brown-color);
  font-size: 1.4rem;
}

.c-menu .flow .js-flow-swiper {
  position: relative;
}

.c-menu .flow .js-flow-swiper .txt {
  font-size: 1.4rem;
}

.c-menu .flow .swiper-button-prev,
.c-menu .flow .swiper-button-next {
  -webkit-transition: var(--base-transition);
  top: 0;
  width: 40px;
  height: 40px;
  margin-top: calc(40% - 20px);
  border: solid 1px var(--beige-color);
  border-radius: 50%;
  transition: var(--base-transition);
}

.c-menu .flow .swiper-button-prev::after,
.c-menu .flow .swiper-button-next::after {
  width: 16px;
  height: 16px;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.c-menu .flow .swiper-button-prev {
  left: -10px;
}

.c-menu .flow .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.c-menu .flow .swiper-button-next {
  right: -10px;
}

.c-menu .flow__img {
  position: relative;
  padding: 0 10px;
}

.c-menu .flow__pagination {
  position: absolute;
  right: 0;
  bottom: -15px;
  color: var(--beige-color);
  font-size: 3.6rem;
  line-height: 1;
  mix-blend-mode: multiply;
}

.c-menu .flow__item_title {
  margin: 20px 0 10px;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-menu .feature__item {
  display: grid;
  grid-template-columns: 40px auto;
  place-items: center;
  padding: 20px;
  gap: 10px 5px;
  background-color: var(--bg-color02);
}

.c-menu .feature__item + .feature__item {
  margin-top: 20px;
}

.c-menu .feature__item .txt {
  grid-row: 2/3;
  grid-column: 1/3;
  width: 100%;
}

.c-menu .feature__item small {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
}

.c-menu .feature__icon {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 40px;
  height: 40px;
}

.c-menu .feature__title {
  grid-row: 1/2;
  grid-column: 2/3;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
}

.c-menu .recommend {
  padding-bottom: 100px;
}

.c-menu .recommend__intro {
  padding-bottom: 100px;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-menu .recommend__txt {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-menu .recommend__wrapper {
  margin: 50px 0;
  padding: 40px 20px 60px;
  background-color: var(--bg-color02);
}

.c-menu .recommend__wrapper_title {
  padding-bottom: 5px;
  border-bottom: solid 1px var(--beige-color);
  color: var(--beige-color);
  font-size: 2.2rem;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.c-menu .recommend__wrapper_title02 {
  margin: 60px 0 10px;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--line-color);
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.c-menu .recommend__wrapper_txt {
  margin: 8px 0 0;
  color: var(--brown-color);
  text-align: center;
}

.c-menu .recommend__wrapper .img {
  margin: 20px 0;
}

.c-menu .recommend__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  gap: 20px 10px;
}

.c-menu .recommend__wrap_title {
  position: relative;
  grid-row: 1/2;
  grid-column: 1/3;
  padding-left: 20px;
  color: var(--brown-color);
  font-size: 1.4rem;
}

.c-menu .recommend__wrap_title::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: var(--brown-color);
  content: "";
}

.c-menu .recommend .c-menu__price {
  margin-top: 20px;
}

.c-menu .faq {
  padding: 100px 0;
  background-color: var(--bg-color02);
}

.c-menu .faq__item {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.c-menu .faq__item + .faq__item {
  margin-top: -1px;
}

.c-menu .faq__item button {
  position: relative;
  width: 100%;
  padding: 20px 55px 20px 30px;
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
}

.c-menu .faq__item button::before,
.c-menu .faq__item button::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 13px;
  height: 1px;
  margin: auto;
  background-color: var(--beige-color);
  content: "";
  transition: var(--base-transition);
}

.c-menu .faq__item button::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.c-menu .faq__item button .txt {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 10px;
}

.c-menu .faq__item button .txt::before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -5px;
  content: "Q.";
  color: var(--beige-color);
  font-size: 2rem;
  font-family: "optima-lt-pro", sans-serif;
}

.c-menu .faq__item button.active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.c-menu .faq .js-accordion__wrap {
  display: none;
}

.c-menu .faq__wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: flex-start;
  padding: 20px 30px;
  gap: 10px;
  background-color: rgba(var(--brown-color-rgb), 0.06);
}

.c-menu .faq__wrap::before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -5px;
  content: "A.";
  color: var(--brown-color);
  font-size: 2rem;
  font-family: "optima-lt-pro", sans-serif;
}

.fractional .recommend,
.beauty-acupuncture .recommend,
.photo-facial .recommend,
.beauty-serum .recommend {
  padding: 50px 0;
}

.fractional .recommend__wrapper,
.beauty-acupuncture .recommend__wrapper,
.photo-facial .recommend__wrapper,
.beauty-serum .recommend__wrapper {
  margin: 0;
  padding-bottom: 20px;
}

.fractional .recommend__wrapper_title02:first-of-type,
.beauty-acupuncture .recommend__wrapper_title02:first-of-type,
.photo-facial .recommend__wrapper_title02:first-of-type,
.beauty-serum .recommend__wrapper_title02:first-of-type {
  margin-top: 0;
}

.fractional .feature,
.beauty-acupuncture .feature,
.photo-facial .feature,
.beauty-serum .feature {
  padding: 50px 0 100px;
}

.fractional .feature .c-menu__price,
.beauty-acupuncture .feature .c-menu__price,
.photo-facial .feature .c-menu__price,
.beauty-serum .feature .c-menu__price {
  margin-top: 20px;
}

.hydra-facial .recommend__wrapper_title02:first-of-type {
  margin-top: 0;
}

.hydra-facial .worries + .recommend {
  padding-bottom: 50px;
}

.hydra-facial .worries + .recommend .recommend__wrapper {
  margin: 0;
  padding-bottom: 20px;
}

.hydra-facial .feature + .recommend .recommend__wrapper {
  padding-bottom: 40px;
}

.news__archive {
  padding-bottom: 100px;
}

.news__archive .news__list {
  border-top: solid 1px var(--line-color);
}

.news__archive .news__item {
  border-bottom: solid 1px var(--line-color);
}

.news__archive .news__item a {
  padding: 30px 0;
}

.news__archive .news__item_head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  color: var(--beige-color);
  font-size: 1.2rem;
  line-height: 1;
}

.news__archive .news__item .category {
  padding-right: 8px;
  border-right: solid 1px var(--beige-color);
}

.news__archive .news__item_title {
  overflow: hidden;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news__pager {
  margin-top: 60px;
}

.news__pager .pager_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news__pager .pager_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--beige-color);
}

.news__pager .pager_item a,
.news__pager .pager_item .current {
  display: grid;
  position: relative;
  place-content: center;
  width: 100%;
  height: 100%;
  color: var(--beige-color);
  font-size: 2rem;
  font-family: "optima-lt-pro", sans-serif;
  opacity: 0.5;
}

.news__pager .pager_item .current {
  opacity: 1;
}

.news__pager .pager_item .current::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  margin: auto;
  background-color: var(--beige-color);
  content: "";
}

.news__pager .pager_item.prev,
.news__pager .pager_item.next {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news__pager .pager_item.prev a,
.news__pager .pager_item.next a {
  border: solid 1px var(--beige-color);
  border-radius: 50%;
}

.news__pager .pager_item.prev a::after,
.news__pager .pager_item.next a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.news__pager .pager_item.prev a::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.news__detail {
  padding: 20px 0 100px;
}

.news__detail .news__title {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--line-color);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
}

.news__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  color: var(--beige-color);
  font-size: 1.2rem;
  line-height: 1;
}

.news__head .category {
  padding-right: 8px;
  border-right: solid 1px var(--beige-color);
}

.news__pagination {
  margin-top: 60px;
}

.news__pagination_head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news__pagination_line {
  width: 1px;
  height: 50px;
  background-color: var(--line-color);
}

.news__pagination_btn {
  width: calc(50% - 1px);
}

.news__pagination_btn.prev .news__pagination_arrow::before {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.news__pagination_btn.next a {
  grid-template-columns: auto 40px;
}

.news__pagination_btn.next .news__pagination_txt {
  text-align: right;
}

.news__pagination_btn a {
  display: grid;
  grid-template-columns: 40px auto;
  place-items: center;
  gap: 14px;
}

.news__pagination_txt {
  width: 100%;
}

.news__pagination_arrow {
  position: relative;
  width: 40px;
  height: 40px;
  border: solid 1px var(--beige-color);
  border-radius: 50%;
}

.news__pagination_arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.news__pagination .c-btn01 {
  margin-top: 0;
}

.top .mv .js-mv-swiper {
  position: relative;
}

.top .mv .swiper-pagination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 24px;
  bottom: 0;
  left: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 16px;
  margin: auto;
  gap: 14px;
}

.top .mv .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background-color: #fff;
  opacity: 0.4;
}

.top .mv .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.top .mv .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: solid 1px #fff;
  border-radius: 50%;
  content: "";
}

.top .latest {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.top .latest .js-latest-swiper {
  position: relative;
  height: 80px;
  padding: 0 60px 0 0;
  overflow: hidden;
}

.top .latest .swiper-navigation {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.top .latest .swiper-button-prev,
.top .latest .swiper-button-next {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 30px;
  height: 20px;
  margin: 0;
}

.top .latest .swiper-button-prev::after,
.top .latest .swiper-button-next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.4);
  border-left: solid 1px rgba(var(--base-color-rgb), 0.4);
  content: "";
}

.top .latest .swiper-button-prev::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.top .latest .swiper-button-next::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.top .latest a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  gap: 10px;
}

.top .latest__date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--beige-color);
  font-weight: 700;
}

.top .latest__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .campaign .js-campaign-swiper {
  position: relative;
  overflow: hidden;
}

.top .campaign .swiper-pagination {
  position: relative;
  padding-top: 24px;
}

.top .campaign .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background-color: var(--beige-color);
}

.top .campaign .swiper-pagination-bullet-active {
  position: relative;
}

.top .campaign .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--beige-color);
  border-radius: 50%;
  content: "";
}

.top .lead__title {
  margin-bottom: 30px;
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}

.top .slide {
  padding: 50px 0;
}

.top .slide__inner {
  -webkit-animation: linerContents 20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1740px;
  animation: linerContents 20s linear infinite;
}

.top .slide img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 870px;
}

.top .menu__wrap {
  padding-top: 60px;
}

.top .menu__wrap + .menu__wrap {
  margin-top: 60px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.top .menu__wrap_title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
}

.top .menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 15px;
}

.top .menu__title {
  margin-top: 5px;
  color: var(--brown-color);
  font-weight: 500;
  font-size: 1.4rem;
}

.top .menu__panel {
  display: none;
}

.top .menu__panel.active {
  display: block;
}

.top .menu__panel .txt + .menu__panel_link {
  margin-top: 40px;
}

.top .menu__panel_link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

.top .menu__panel_title {
  position: relative;
  padding-left: 18px;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.top .menu__panel_title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url(../img/common/icon-title.svg) no-repeat center center/contain;
  content: "";
}

.top .menu__panel_arrow {
  -webkit-transition: var(--base-transition);
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border: solid 1px var(--beige-color);
  border-radius: 50%;
  transition: var(--base-transition);
}

.top .menu__panel_arrow::before,
.top .menu__panel_arrow::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: var(--beige-color);
  content: "";
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

.top .menu__panel_arrow::after {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}

.top .menu__button {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 12px 20px;
}

.top .menu__button input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.top .menu__button input:checked + span::after {
  opacity: 1;
}

.top .menu__button_txt {
  position: relative;
  padding-left: 25px;
  color: var(--brown-color);
  font-weight: 500;
  font-size: 1.2rem;
  cursor: pointer;
}

.top .menu__button_txt::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: solid 1px #e6e6e6;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.top .menu__button_txt::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--orange-color);
  content: "";
  opacity: 0;
}

.top .menu__txt {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.top .menu__tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 30px;
  gap: 10px;
}

.top .menu__tag li {
  font-size: 1.2rem;
  opacity: 0.5;
}

.top .cta a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 245px;
  overflow: hidden;
}

.top .cta__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top .cta__bg img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.top .news__list {
  border-top: solid 1px var(--line-color);
}

.top .news__item {
  border-bottom: solid 1px var(--line-color);
}

.top .news__item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.top .news__category {
  color: var(--beige-color);
  font-size: 1.2rem;
}

.top .news__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .news__button {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin: 20px 0 0;
}

.top .news__button a {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 30px 10px 0;
  overflow: hidden;
  font-weight: 500;
  font-size: 1.2rem;
}

.top .news__button a::before,
.top .news__button a::after {
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--base-color-rgb), 0.4);
  content: "";
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.top .news__button a::after {
  left: -100%;
}

.top .news__button a .arrow {
  position: absolute;
  top: 4px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
}

.top .news__button a .arrow::before,
.top .news__button a .arrow::after {
  -webkit-transform: rotate(-45deg);
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  position: absolute;
  top: 0;
  right: 2px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px rgba(var(--base-color-rgb), 0.4);
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.4);
  content: "";
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

.top .news__button a .arrow::after {
  right: 18px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  body {
    font-size: 1.6rem;
  }

  section {
    padding: 60px 0;
  }

  .inner {
    padding: 0 40px;
  }

  .c-title01 {
    margin-bottom: 40px;
  }

  .c-title01 .jp {
    padding-left: 30px;
    font-size: 1.6rem;
  }

  .c-title01 .jp::before {
    width: 20px;
    height: 20px;
  }

  .c-title01 .en {
    font-size: 5rem;
  }

  .c-title02 .en {
    font-size: 4rem;
  }

  .c-title02 .jp {
    font-size: 2rem;
  }

  .c-btn01 {
    height: 70px;
  }

  .info {
    max-width: 580px;
    padding: 120px 0;
  }

  .info__contact_button {
    min-width: inherit;
  }

  .footer {
    max-width: 580px;
  }

  .about .reason__wrap:nth-of-type(odd) .reason__img img {
    margin-right: -40px;
  }

  .about .reason__img img {
    width: calc(100% + 40px);
    margin-left: -40px;
  }

  .c-menu__price {
    padding: 20px;
  }

  .c-menu__price.small .c-menu__price_title {
    font-size: 2.4rem;
  }

  .c-menu__price.small02 .c-menu__price_title {
    height: 70px;
    font-size: 2.4rem;
  }

  .c-menu__price_title {
    height: 44px;
    font-size: 2.4rem;
  }

  .c-menu__price_wrap {
    gap: 14px;
  }

  .c-menu__price .tag {
    font-size: 2rem;
  }

  .c-menu__price .price {
    font-size: 4.8rem;
  }

  .c-menu__price .unit {
    font-size: 1.8rem;
  }

  .c-menu__price_contact a {
    min-width: inherit;
  }

  .c-menu .intro__title {
    width: 380px;
    padding-top: 50px;
  }

  .c-menu .intro__title::before {
    width: 30px;
    height: 30px;
  }

  .c-menu .voice__title {
    font-size: 3.2rem;
  }

  .c-menu .voice__compare .en {
    font-size: 2rem;
  }

  .c-menu .voice .swiper-button-prev,
  .c-menu .voice .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .c-menu .voice .swiper-button-prev::after,
  .c-menu .voice .swiper-button-next::after {
    width: 18px;
    height: 18px;
  }

  .c-menu .worries__title {
    font-size: 3rem;
  }

  .c-menu .worries__list {
    padding-bottom: 93px;
  }

  .c-menu .worries__list::after {
    width: 170px;
    height: 255px;
  }

  .c-menu .worries__txt {
    margin-top: 80px;
    font-size: 3rem;
  }

  .c-menu .flow {
    padding: 40px;
  }

  .c-menu .flow__title {
    margin-bottom: 40px;
  }

  .c-menu .flow__title .en {
    font-size: 3.2rem;
  }

  .c-menu .flow__title .jp {
    font-size: 1.6rem;
  }

  .c-menu .flow .swiper-button-prev,
  .c-menu .flow .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: calc(40% - 25px);
  }

  .c-menu .flow .swiper-button-prev::after,
  .c-menu .flow .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .c-menu .flow__img {
    padding: 0 20px;
  }

  .c-menu .flow__pagination {
    font-size: 5rem;
  }

  .c-menu .flow__item_title {
    font-size: 2rem;
  }

  .c-menu .feature__item {
    grid-template-columns: 60px auto;
    gap: 15px 10px;
  }

  .c-menu .feature__icon {
    width: 60px;
    height: 60px;
  }

  .c-menu .feature__title {
    font-size: 2rem;
  }

  .c-menu .recommend {
    padding-bottom: 120px;
  }

  .c-menu .recommend__intro {
    padding-bottom: 120px;
    font-size: 3rem;
  }

  .c-menu .recommend__txt {
    font-size: 2rem;
  }

  .c-menu .recommend__wrapper {
    margin: 50px 0 60px;
  }

  .c-menu .recommend__wrapper_title {
    font-size: 3rem;
  }

  .c-menu .recommend__wrapper_title02 {
    font-size: 2rem;
  }

  .c-menu .recommend__wrapper_txt {
    margin-bottom: 40px;
  }

  .c-menu .recommend__wrap {
    margin-top: 50px;
    gap: 20px;
  }

  .c-menu .recommend__wrap_title {
    font-size: 1.6rem;
  }

  .c-menu .recommend__wrap_title::before {
    top: 9px;
  }

  .c-menu .faq {
    padding: 120px 0;
  }

  .c-menu .faq__item button {
    font-size: 1.6rem;
  }

  .c-menu .faq__item button::before,
  .c-menu .faq__item button::after {
    width: 17px;
  }

  .c-menu .faq__item button .txt::before {
    margin-top: -10px;
    font-size: 2.4rem;
  }

  .c-menu .faq__wrap::before {
    font-size: 2.4rem;
  }

  .fractional .recommend,
  .beauty-acupuncture .recommend,
  .photo-facial .recommend,
  .beauty-serum .recommend {
    padding: 60px 0;
  }

  .fractional .feature,
  .beauty-acupuncture .feature,
  .photo-facial .feature,
  .beauty-serum .feature {
    padding: 60px 0 120px;
  }

  .hydra-facial .worries + .recommend {
    padding-bottom: 60px;
  }

  .news__archive .news__item_title {
    font-size: 1.6rem;
  }

  .top .mv .swiper-pagination {
    right: 40px;
  }

  .top .menu__wrap_title {
    font-size: 2.4rem;
  }

  .top .menu__title {
    margin-top: 10px;
    font-size: 1.6rem;
  }

  .top .menu__panel_title {
    padding-left: 22px;
    font-size: 2rem;
  }

  .top .menu__panel_title::before {
    width: 16px;
    height: 16px;
  }

  .top .menu__button_txt {
    font-size: 1.4rem;
  }

  .top .menu__txt {
    font-size: 2rem;
  }

  .top .cta a {
    height: 380px;
  }

  .top .news__category {
    font-size: 1.4rem;
  }

  .top .news__button {
    margin: 30px 0 0;
  }
}

@media screen and (max-width: 1023px) {
  main {
    margin-top: 60px;
  }

  .pc__contents .en {
    display: none;
  }

  .pc__contents__img {
    display: none;
  }

  .sp__contents {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  }

  .sp__contents::before {
    left: 0;
    margin: auto;
  }

  .header {
    left: 0;
    height: 60px;
    margin: auto;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__logo {
    width: 114px;
  }

  .header__info {
    width: 60px;
    height: 60px;
  }

  .header__info_icon {
    width: 25px;
    height: 25px;
  }

  .header__btn {
    width: 60px;
    height: 60px;
  }

  .header__btn_inn {
    width: 30px;
    height: 20px;
  }

  .header__btn_line:nth-of-type(2) {
    top: 9px;
  }

  .header__infoNav_btn {
    width: 60px;
    height: 60px;
  }

  .header__nav_head {
    height: 60px;
    padding-left: 20px;
  }

  .header__nav_btn {
    width: 60px;
    height: 60px;
  }

  .header__nav_contents {
    height: calc(100vh - 60px);
    padding-top: 20px;
    padding-bottom: 100px;
    overflow-y: scroll;
  }

  .header__nav .js-header-swiper {
    display: none;
  }

  .header__nav_menu {
    display: block;
  }

  .header__nav_item {
    max-width: inherit;
  }

  .header__nav .sub-list a {
    font-size: 1.2rem;
  }

  .header__nav_sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 40px 0 0;
  }

  .info {
    margin-right: auto;
  }

  .footer {
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp__contents {
    max-width: inherit;
  }

  .sp__contents::before {
    max-width: inherit;
  }

  .header {
    max-width: inherit;
  }

  .info .eo-fullcalendar .fc-title {
    display: inline-block;
    font-size: 1rem;
    text-align: center;
  }

  .footer__inner {
    padding: 0 20px;
  }

  .footer__nav {
    gap: 0;
  }

  .footer__item:has(.sub-list):nth-of-type(2) {
    margin: 20px 0;
  }

  .footer__item {
    width: 100% !important;
  }

  .footer__link {
    padding: 10px 30px 10px 0;
  }

  .footer__link .arrow {
    width: 15px;
    height: 15px;
  }

  .footer .sub-list li {
    width: 100%;
  }

  .footer .sub-list a {
    padding: 5px 10px 5px 30px;
    font-size: 1.2rem;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 75px;
    gap: 30px;
  }

  .footer__copy {
    margin-top: 80px;
  }

  .news__pagination .c-btn01 {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover {
    background-color: #fff;
  }

  .c-btn01:hover::after {
    right: 15px;
  }

  .header__info:hover {
    background-color: var(--orange-color02);
  }

  .header__infoNav_btn:hover {
    background-color: var(--orange-color02);
  }

  .header__nav_btn:hover {
    background-color: var(--orange-color02);
  }

  .footer__link:hover .arrow::before {
    -webkit-animation-name: transformRightLeft;
    animation-name: transformRightLeft;
  }

  .footer__link:hover .arrow::after {
    -webkit-animation-name: transformLeftRight;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    animation-name: transformLeftRight;
  }

  .footer .sub-list a:hover .arrow::before {
    -webkit-animation-name: arrowLeftRight;
    animation-name: arrowLeftRight;
  }

  .footer .sub-list a:hover .arrow::after {
    -webkit-animation-name: arrowRightLeft;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    animation-name: arrowRightLeft;
  }

  .footer__bottom_link a:hover {
    opacity: 0.7;
  }

  .footer__sns a:hover {
    opacity: 0.7;
  }

  .guide .flow .swiper-button-prev:hover,
  .guide .flow .swiper-button-next:hover {
    background-color: #fff;
  }

  .c-menu .flow .swiper-button-prev:hover,
  .c-menu .flow .swiper-button-next:hover {
    background-color: #fff;
  }

  .news__archive .news__item a:hover {
    opacity: 0.5;
  }

  .news__pager .pager_item.prev a:hover,
  .news__pager .pager_item.next a:hover {
    opacity: 1;
  }

  .top .menu__panel_link:hover .menu__panel_arrow {
    background-color: var(--beige-color);
  }

  .top .menu__panel_link:hover .menu__panel_arrow::before {
    -webkit-animation-name: transformRightLeft02;
    background-color: #fff;
    animation-name: transformRightLeft02;
  }

  .top .menu__panel_link:hover .menu__panel_arrow::after {
    -webkit-animation-name: transformLeftRight02;
    -webkit-animation-delay: 0.3s;
    background-color: #fff;
    animation-delay: 0.3s;
    animation-name: transformLeftRight02;
  }

  .top .cta a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .top .news__button a:hover::before {
    -webkit-animation-name: lineLeftRight;
    animation-name: lineLeftRight;
  }

  .top .news__button a:hover::after {
    -webkit-animation-name: lineRightLeft;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    animation-name: lineRightLeft;
  }

  .top .news__button a:hover .arrow::before {
    -webkit-animation-name: arrowLeftRight02;
    animation-name: arrowLeftRight02;
  }

  .top .news__button a:hover .arrow::after {
    -webkit-animation-name: arrowRightLeft02;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    animation-name: arrowRightLeft02;
  }
}
/*# sourceMappingURL=style.css.map */
