@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap"); /* modern-css-reset を採用*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}
.mb64 {
  margin-bottom: 64px;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #211918;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

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

a {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
@media (min-width: 751px) {
  a[href^="tel:"] {
    cursor: default;
/*    pointer-events: none;*/
  }
}
li,
dd {
  list-style-type: none;
}

h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 950px) {
  .is-tab {
    display: block;
  }
}

/* スクロールすると下からふわっとさせるためのコード */
.fadeUp {
  /* 要素を透明にする */
  opacity: 0;
  /* 50px下げる */
  transform: translateY(50px);
  /* 2秒かけて、変化させる */
  transition: transform 1s, opacity 1s;
}

.fadeUp.show {
  opacity: 1;
  transform: translateY(0);
}

.top-fadeUp {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: top-fadeUp;
  opacity: 0;
}

@keyframes top-fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bg_brown {
  background-color: #2D2522;
}

.bg_beige {
  background-color: #E1DDDC;
}

.l-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 15px;
  }
}
.c-section-title {
  text-align: center;
}
.c-section-title__en {
  color: #E1368D;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 14px;
}
.c-section-title__hikaku {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 14px;
}
.mt60 {
  margin-top: 60px;
}
.mt80 {
  margin-top: 80px;
}
.mt42 {
  margin-top: 42px;
}
.mb24 {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-section-title__en {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  .c-section-title__hikaku {
    font-size: 14px;
  }
}
.c-section-title__ja {
  display: inline-block;
  font-size: 4.4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.c-section-title__ja span {
  color: #E1368D;
}
@media screen and (max-width: 768px) {
  .c-section-title__ja {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.c-section-title .white {
  color: #fff;
}

.c-btn {
  display: block;
  line-height: 1;
  max-width: 450px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 280px;
  }
}
.c-btn__link {
  align-items: center;
  border-radius: 40px;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  justify-content: center;
  min-height: 78px;
  padding: 24px;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .c-btn__link {
    font-size: 15px;
    min-height: 48px;
    padding: 15px 15px;
  }
}
@media (any-hover: hover) {
  .c-btn__link:hover {
    opacity: 1;
  }
}
.c-btn__link.reserve {
  background-color: #E1368D;
  border: 2px solid #E1368D;
}
.c-btn__link.reserve2 {
  background-color: #476FD3;
  border: 2px solid #476FD3;
}
.c-btn__link.reserve .c-btn__icon {
  -webkit-mask: url("../img/icon_calendar.svg") no-repeat center/contain;
  mask: url("../img/icon_calendar.svg") no-repeat center/contain;
}
.c-btn__link.reserve2 .c-btn__icon {
  -webkit-mask: url("../img/icon_calendar.svg") no-repeat center/contain;
  mask: url("../img/icon_calendar.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .c-btn__link.reserve:hover {
    background-color: #fff;
    color: #E1368D;
  }
  .c-btn__link.reserve2:hover {
    background-color: #fff;
    color: #476FD3;
  }
  .c-btn__link.reserve:hover .c-btn__icon {
    background: #E1368D;
  }
  .c-btn__link.reserve2:hover .c-btn__icon {
    background: #476FD3;
  }
  .c-btn__link.reserve:hover::after {
    background: #E1368D;
  }
  .c-btn__link.reserve2:hover::after {
    background: #476FD3;
  }
}
.c-btn__link.contact {
  background-color: #2D2522;
  border: 2px solid #2D2522;
}
.c-btn__link.contact .c-btn__icon {
  -webkit-mask-image: url("../img/icon_tel.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon_tel.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media (any-hover: hover) {
  .c-btn__link.contact:hover {
    background-color: #fff;
    color: #2D2522;
  }
  .c-btn__link.contact:hover .c-btn__icon {
    background: #2D2522;
  }
  .c-btn__link.contact:hover::after {
    background: #2D2522;
  }
}
.c-btn__link::after {
  -webkit-mask: url("../img/icon_right.svg") no-repeat center/contain;
  background: #fff;
  content: "";
  height: 16px;
  mask: url("../img/icon_right.svg") no-repeat center/contain;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
}
@media screen and (max-width: 768px) {
  .c-btn__link::after {
    height: 10px;
    right: 16px;
    width: 6px;
  }
}
.c-btn__icon {
  background: #fff;
  content: "";
  height: 24px;
  left: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .c-btn__icon {
    height: 15px;
    left: 26px;
    width: 15px;
  }
}

.c-faq-item {
  cursor: pointer;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-faq-item {
    font-size: 1.6rem;
  }
}
.c-faq-item__head {
  border-bottom: 1px solid #1C0402;
  letter-spacing: 0.05em;
  padding: 18px 20px 18px 20px;
}
@media screen and (max-width: 768px) {
  .c-faq-item__head {
    padding: 15px 10px;
  }
}
.c-faq-item__head .c-faq-item__question {
  font-weight: bold;
  padding-left: 44px;
  padding-right: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-faq-item__head .c-faq-item__question {
    padding-left: 36px;
    padding-right: 24px;
  }
}
.c-faq-item__head .c-faq-item__question.is-open::after {
  background: transparent url(../img/icon_minus.svg) no-repeat center center/contain;
}
.c-faq-item__head .c-faq-item__question::before {
  background-color: #2D2522;
  border-radius: 50%;
  color: #fff;
  content: "Q";
  font-weight: 500;
  height: 28px;
  left: 0;
  line-height: 1;
  padding-top: 3px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}
@media screen and (max-width: 768px) {
  .c-faq-item__head .c-faq-item__question::before {
    height: 25px;
    width: 25px;
  }
}
.c-faq-item__head .c-faq-item__question::after {
  background: transparent url(../img/icon_plus.svg) no-repeat center center/contain;
  content: "";
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
@media screen and (max-width: 768px) {
  .c-faq-item__head .c-faq-item__question::after {
    height: 14px;
    width: 14px;
  }
}
.c-faq-item__body {
  display: none;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding: 18px 54px 18px 20px;
}
@media screen and (max-width: 768px) {
  .c-faq-item__body {
    padding: 15px 10px;
  }
}
.c-faq-item__body .c-faq-item__answer {
  padding-left: 44px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-faq-item__body .c-faq-item__answer {
    padding-left: 36px;
  }
}
.c-faq-item__body .c-faq-item__answer::before {
  background-color: #fff;
  border-radius: 50%;
  content: "A";
  height: 28px;
  left: 0;
  line-height: 1;
  padding-top: 3px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 28px;
}
@media screen and (max-width: 768px) {
  .c-faq-item__body .c-faq-item__answer::before {
    height: 25px;
    width: 25px;
  }
}

.p-mv {
  /* background-color: #2D2522; */
  padding: 150px 0 87px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding: 200px 0 24px;
  }
}
.p-mv__logo {
  left: 40px;
  max-width: 152px;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-mv__logo {
    left: 0;
    max-width: 100px;
    top: 40px;
    width: 100%;
    pointer-events: none;
  }
}
.p-mv__inner {
  margin: 0 auto;
  max-width: 1140px;
  /* padding: 0 20px; */
  position: relative;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-mv__inner {
    padding: 0 15px;
    position: relative;
  }
}
.p-mv__icon {
  max-width: 290px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-mv__icon {
    max-width: 179px;
    width: 100%;
  }
}
.p-mv__main {
  color: #fff;
  font-size: 46px;
  font-weight: bold;
  margin-top: 2px;
  text-shadow: 0 4px 4px rgba(22, 22, 22, 0.16);
}
.p-mv__main .small {
  font-size: 46px;
}
.p-mv__main .small-a {
  font-size: 94px;
  text-shadow: 2px 4px 4px #000000;
}
.p-mv__main .small-b {
  font-size: 152px;
  line-height: 1;
  text-shadow: 2px 4px 4px #000000;
}
/* .p-mv__main .bg_pink {
  background-color: #E1368D;
  padding: 0 1rem;
} */
rt.cta-rt {
    position: absolute;
    font-size: 18px;
    top: 167px;
}
.p-mv__main .bg_gold {
  background: linear-gradient(65deg, #AC7725 0%, #EECA49 56%, #AC7725 100%);
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .p-mv__main {
    font-size: 22px;
    line-height: 1.5;
  }
  .p-mv__main .small {
    font-size: 22px;
  }
  .p-mv__main .small-a {
  font-size: 46px;
  text-shadow: 0px 2px 4px #000000;
}
.p-mv__main .small-b {
  font-size: 62px;
  line-height: 1;
  text-shadow: 0px 2px 4px #000000;
  /* position: relative; */
}
}
.p-mv__sub {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-mv__sub {
    font-size: 13px;
    margin-top: 8px;
  }
}
.p-mv__sub .bg_white {
  background-color: #fff;
  /* background-color: yellow; */
  padding: 5px 13px 4px;
  color: #E1368D;
}
p.case__text {
    text-align: center;
    margin: 80px 0 40px;
}
@media screen and (max-width: 768px) {
  .p-mv__sub .bg_white {
    padding: 4px 9px;
  }
  p.case__text {
    margin: 24px 0 32px;
    font-size: 14px;
}
}
@-moz-document url-prefix() {
  .p-mv__sub rt {
    position: relative;
    top: 0.5em;
  }
}
.p-mv__akasaka {
  animation: offer 3s infinite ease-in-out;
  border-bottom: 2px solid #E50012;
  color: #fff;
  display: inline-block;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
.p-mv__note {
    color: #fff;
    margin-top: 24px;
    font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-mv__akasaka {
    margin-top: 144px;
  }
  .p-mv__note {
    font-size: 10px;
}
rt.cta-rt {
    font-size: 12px;
    top: 63px!important;
}
}
@media screen and (max-width: 376px) {
  rt.cta-rt {
    font-size: 12px;
    top: 63px!important;
}
}
.p-mv__akasaka a {
  font-size: 22px;
  line-height: 1;
  padding-bottom: 9px;
  padding-right: 26px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv__akasaka a {
    font-size: 14px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 24px;
  }
}
.p-mv__akasaka a::after {
  background: url("../img/icon_down.svg") no-repeat center center/contain;
  content: "";
  height: 6px;
  position: absolute;
  right: 6px;
  top: 45%;
  transform: translateY(-50%);
  width: 12px;
}
@media screen and (max-width: 768px) {
  .p-mv__akasaka a::after {
    height: 4px;
    right: 10px;
    width: 8px;
  }
}
.p-mv__offer {
  animation: offer 3s infinite ease-in-out;
  bottom: -60px;
  position: absolute;
  right: 200px;
}
.p-mv__offer-yellow {
  animation: offer 3s infinite ease-in-out;
  bottom: -60px;
  position: absolute;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .p-mv__offer {
    bottom: 76px;
    right: 122px;
  }
  .p-mv__offer-yellow {
  bottom: 79px;
  right: 3px;
}
}
@media screen and (max-width: 350px) {
  .p-mv__offer {
    bottom: -40px;
  }
}
.p-mv__offer a {
  background: url("../img/bg_stripe.webp") no-repeat center/cover;
  background-color: rgba(225, 54, 141, 0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding: 30px 41px 44px;
  position: relative;
  text-align: center;
  text-align: center;
}
.p-mv__offer-yellow a {
  background: url("../img/bg_stripe.webp") no-repeat center/cover;
  background-color: rgba(246, 204, 58, 0.85);
  border-radius: 50%;
  color: #211918;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding: 30px 28px 44px;
  position: relative;
  text-align: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-mv__offer a {
    font-size: 12px;
    padding: 17px 23px 26px;
  }
}
.p-mv__offer a::after {
  background: url("../img/icon_down.svg") no-repeat center center/contain;
  bottom: 20px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 12px;
}
@media screen and (max-width: 768px) {
  .p-mv__offer a::after {
    bottom: 11px;
    height: 4px;
    width: 7px;
  }
}
.p-mv__offer span {
  color: #FFD232;
  font-size: 24px;
  line-height: 1.2;
}
.p-mv__offer-yellow span {
    color: #E1368D;
    font-size: 24px;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-mv__offer span {
    font-size: 16px;
  }
.p-mv__offer-yellow span {
    font-size: 14px;
}
}
.p-mv__image {
  background: url("../img/img_mv.webp") no-repeat top right/cover;
  /* border-radius: 100px 0 0 0; */
  height: 100%;
  /* max-width: 80vw; */
  position: absolute;
  right: 0;
  top: 0;
  /* width: calc(50vw + 400px); */
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .p-mv__image {
    background: url("../img/img_mv.webp") no-repeat top right 18%/cover;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__image {
    background: url("../img/img_mv.webp") no-repeat top right 20%/cover;
    /* border-radius: 80px 0 0 0; */
    /* height: 434px; */
    max-width: 100%;
    top: 0px;
    width: 100%;
  }
}

@keyframes offer {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
_:lang(x) + _:-webkit-full-screen-document, .mv-rt {
  position: relative;
  top: 0.5em;
}

_::-webkit-full-page-media, _:future, :root .mv-rt {
  position: relative;
  top: 0.5em;
}

.p-mv-btn {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-mv-btn {
    padding: 23px 0;
  }
}
.p-mv-btn__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 890px) {
  .p-mv-btn__contents {
    align-items: center;
    flex-direction: column;
  }
}
.p-mv-btn .c-btn:nth-child(even) {
  margin-left: 30px;
}
@media screen and (max-width: 890px) {
  .p-mv-btn .c-btn:nth-child(even) {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-mv-btn .c-btn:nth-child(even) {
    margin: 16px auto 0;
  }
}

.p-media {
  padding: 116px 0 70px;
  position: relative;
}
.p-media::before {
  background-color: #E1DDDC;
  border-radius: 0 80px 0 0;
  bottom: 0;
  content: "";
  height: 78%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-media::before {
    border-radius: 0 60px 0 0;
    height: 88%;
    width: calc(100% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .p-media {
    padding: 47px 0 45px;
  }
}
.p-media__contents {
  margin-top: 26px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-media__contents {
    margin-top: 34px;
    padding-right: 8px;
  }
}
.p-media__ttl {
  position: relative;
  text-align: center;
}
.p-media__ttl::before {
  background: url("../img/img_book.webp") no-repeat center center/contain;
  content: "";
  height: 75px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-media__ttl::before {
    height: 8.533vw;
    top: -4px;
    width: 12.267vw;
  }
}
.p-media__ttl::after {
  background: url("../img/img_camera.webp") no-repeat center center/contain;
  content: "";
  height: 142px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 102px;
  z-index: -1;
}
@media screen and (min-width: 550px) and (max-width: 768px) {
  .p-media__ttl::after {
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-media__ttl::after {
    height: 17.867vw;
    width: 12.8vw;
  }
}
@media screen and (max-width: 549px) {
  .p-media__ttl::after {
    top: 0;
  }
}
.p-media__ttl-main {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-media__ttl-main {
    font-size: 4.8vw;
    margin-top: 1px;
  }
}
.p-media__ttl-main span {
  font-size: 64px;
}
@media screen and (max-width: 768px) {
  .p-media__ttl-main span {
    font-size: 6.933vw;
  }
}
.p-media__ttl-sub {
  background: linear-gradient(transparent 70%, #f6cc3a 70%);
  display: inline-block;
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-media__ttl-sub {
    font-size: 4.8vw;
  }
}
.p-media__ttl-sub span {
  color: #E1368D;
}

.p-offer {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  .p-offer {
    padding: 0 0 50px;
  }
}
.p-offer__heading {
  color: #E1368D;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-offer__heading {
    font-size: 22px;
  }
}
.p-offer__heading p {
  display: inline-block;
  line-height: 1;
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-offer__heading p {
    padding: 0 36px;
  }
}
.p-offer__heading p::before, .p-offer__heading p::after {
  bottom: -10px;
  content: "";
  height: 65px;
  position: absolute;
  width: 49px;
}
@media screen and (max-width: 768px) {
  .p-offer__heading p::before, .p-offer__heading p::after {
    bottom: -3px;
    height: 35px;
    width: 26px;
  }
}
.p-offer__heading p::before {
  background: url("../img/offer-h-left.webp") no-repeat center center/contain;
  left: 0;
}
.p-offer__heading p::after {
  background: url("../img/offer-h-right.webp") no-repeat center center/contain;
  right: 0;
}
.p-offer__image {
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .p-offer__image {
    margin: 3px auto 0;
    max-width: 320px;
  }
}
.p-offer__note {
  line-height: 1.5;
  margin-top: 26px;
  text-align: center;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .p-offer__note {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-offer__code {
  margin-top: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-offer__code {
    margin-top: 10px;
  }
}
.p-offer__code p {
  background-color: #2D2522;
  color: #F6CC3A;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 7px 36px;
}
@media screen and (max-width: 768px) {
  .p-offer__code p {
    font-size: 14px;
    padding: 3px 15px;
  }
}

.p-cta {
  background: url("../img/bg_cta.webp") no-repeat center right/cover;
  padding: 116px 20px 90px;
}
@media screen and (max-width: 768px) {
  .p-cta {
    background: url("../img/bg_cta_sp.webp") no-repeat top right/cover;
    padding: 210px 15px 50px;
  }
}
.p-cta__inner {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
.p-cta__copy {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.p-cta__copy span {
  font-size: 50px;
}
.p-cta__copy rt {
  font-size: 16px;
}
@-moz-document url-prefix() {
  .p-cta__copy rt {
    position: relative;
    top: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .p-cta__copy {
    font-size: 25px;
    line-height: 1.5;
  }
  .p-cta__copy span {
    font-size: 28px;
  }
  .p-cta__copy rt {
    font-size: 10px;
  }
}
.p-cta__btns {
  display: flex;
  flex-direction: column;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .p-cta__btns {
    margin-top: 26px;
  }
}
.p-cta__reserve p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-cta__reserve p {
    font-size: 13px;
  }
}
.p-cta .c-btn {
  margin: 0 auto;
}
.p-cta .c-btn .reserve {
  margin-top: 5px;
}
.p-cta .c-btn:last-child {
  margin: 32px auto 0;
}
@media screen and (max-width: 768px) {
  .p-cta .c-btn:last-child {
    margin-top: 18px;
  }
}
.p-cta__offer {
  background: url("../img/bg_stripe.webp") no-repeat center/cover;
  background-color: rgba(225, 54, 141, 0.9);
  border-radius: 50%;
  left: 20px;
  padding: 45px 9px 33px;
  position: absolute;
  text-align: center;
  top: -80px;
}
@media screen and (max-width: 1000px) {
  .p-cta__offer {
    top: -220px;
  }
}
@media screen and (max-width: 768px) {
  .p-cta__offer {
    left: 0;
    padding: 23px 6px;
    top: -180px;
  }
}
.p-cta__message {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-cta__message {
    font-size: 15px;
  }
}
.p-cta__code {
  color: #FFD232;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-cta__code {
    font-size: 15px;
    line-height: 1.2;
    margin-top: 5px;
  }
}
.p-cta__reserve2 {
	text-align: center;
	font-weight: bold;
}

_:lang(x) + _:-webkit-full-screen-document, .cta-rt {
  position: relative;
  top: 0.8em;
}

_::-webkit-full-page-media, _:future, :root .cta-rt {
  position: relative;
  top: 0.8em;
}

.p-about {
  background: url("../img/bg_about.webp") no-repeat center left/cover;
  overflow: hidden;
  padding: 120px 0;
}
.p-about__maguma {
  background: url("../img/dots.webp") no-repeat center left/cover;
  overflow: hidden;
  padding: 120px 0;
}
.bg_gray {
  background: #F3F3F3;
  overflow: hidden;
  padding: 120px 0;
}
.p-media__other.p-about__magumaplate {
    margin-left: -100px;
}
.p-about__photo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 50px 0;
  }
  .p-about__photo {
    max-width: 220px;
}
.bg_gray {
    padding: 50px 0;
}
.p-media__other.p-about__magumaplate {
    margin-left: -15px;
}
.mt42 {
    margin-top: 24px;
}
.mt60 {
    margin-top: 14px;
}
.mt80 {
    margin-top: 32px;
}
}
.p-about__contents {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-about__contents {
    margin-top: 17px;
  }
}
.p-about__lead {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}
.p-about__lead span {
  color: #E1368D;
}
@media screen and (max-width: 768px) {
  .p-about__lead {
    font-size: 16px;
    text-align: left;
  }
}
.p-about__item {
  align-items: center;
  display: flex;
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-about__item {
    min-height: 495px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__item {
    flex-direction: column;
    margin-top: 36px;
  }
}
@media screen and (min-width: 769px) {
  .p-about__item:nth-of-type(1) {
    justify-content: flex-end;
  }
  .p-about__item:nth-of-type(1) .p-about__image {
    border-radius: 0 80px 0 0;
    margin-right: -280px;
    right: 50%;
  }
  .p-about__item:nth-of-type(4) {
    justify-content: flex-start;
  }
  .p-about__item:nth-of-type(4) .p-about__image {
    border-radius: 80px 0 0 0;
    left: 50%;
    margin-left: -280px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__item:nth-of-type(1) .p-about__image {
    border-radius: 0 60px 0 0;
  }
  .p-about__item:nth-of-type(4) .p-about__image {
    border-radius: 60px 0 0 0;
  }
}
.p-about__image {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-about__image {
    height: 100%;
    min-height: 450px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50vw + 280px);
  }
}
@media screen and (max-width: 768px) {
  .p-about__image {
    min-height: 180px;
    width: 100%;
  }
}
.p-about__image img {
  -o-object-fit: cover;
  -o-object-position: left bottom;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__image img {
    min-height: 180px;
  }
}
.p-about__text {
  background-color: #fff;
  box-shadow: rgba(137, 137, 137, 0.28) 2px 2px 20px 0px;
  max-width: 500px;
  padding: 50px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-about__text {
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .p-about__text {
    max-width: 100%;
    padding: 22px 28px;
  }
}
.p-about__desc {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
.p-about__desc span {
  color: #E1368D;
}
@media screen and (max-width: 768px) {
  .p-about__desc {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-about__gallery {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-about__gallery {
    gap: 18px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 50px;
  }
}
.p-about__sub-ttl {
  margin-bottom: 50px;
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__sub-ttl {
    margin-bottom: 28px;
    margin-top: 50px;
  }
}
.p-about__sub-ttl p {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about__sub-ttl p {
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-about__sub-ttl p span {
  color: #E1368D;
}
.p-about__sub-ttl h3 {
  background-color: #E1368D;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  margin-top: 6px;
  padding: 19px 96px 23px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about__sub-ttl h3 {
    font-size: 20px;
    margin-top: 8px;
    padding: 10px 47px;
  }
}
.p-about__sub-ttl h3::after {
  border: 1px solid #fff;
  content: "";
  height: calc(100% - 12px);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 12px);
}
@media screen and (max-width: 768px) {
  .p-about__sub-ttl h3::after {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
  }
}
.p-about__sub-ttl h3 span {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .p-about__sub-ttl h3 span {
    font-size: 26px;
  }
}
.p-about__video-wrapper {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-about__video-wrapper {
    margin-top: 34px;
  }
}
.p-about__video {
  aspect-ratio: 16/9;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.p-about__video video {
  height: 100%;
  width: 100%;
}
.p-about__effects {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 92px;
}
@media screen and (max-width: 768px) {
  .p-about__effects {
    gap: 53px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 60px;
  }
}
.p-about__effect {
  background-color: #fff;
  box-shadow: rgba(137, 137, 137, 0.28) 2px 2px 20px 0px;
  padding: 60px 30px 30px;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-about__effect {
    font-size: 14px;
    margin: 0 auto;
    max-width: 87%;
    padding: 50px 28px 34px;
  }
}
.p-about__icon {
  background-color: #E1368D;
  border-radius: 50%;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  left: 50%;
  line-height: 1;
  padding: 13px 16px 19px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-about__icon {
    font-size: 42px;
    padding: 12px 14px 16px;
  }
}
span.p-about__subttle {
    margin-left: 20px;
}
.p-effect {
  overflow: hidden;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-effect {
    padding: 50px 0;
  }
}
.p-effect__inner {
  position: relative;
}
.p-effect__inner::before {
  background: url("../img/bg_effect_01.webp") no-repeat center center/contain;
  content: "";
  height: 120px;
  left: -109px;
  position: absolute;
  top: -53px;
  width: 120px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-effect__inner::before {
    height: 64px;
    left: 7px;
    top: -44px;
    width: 64px;
  }
}
.p-effect__inner::after {
  background: url("../img/bg_effect_03.webp") no-repeat center center/contain;
  bottom: -39px;
  content: "";
  height: 120px;
  left: -128px;
  position: absolute;
  width: 120px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-effect__inner::after {
    bottom: -37px;
    height: 64px;
    left: auto;
    right: 15px;
    width: 64px;
  }
}
@media screen and (max-width: 768px) {
  .p-effect .c-section-title__ja {
    line-height: 1.5;
  }
}
.p-effect__contents {
  margin-top: 50px;
  position: relative;
}
.p-effect__contents::before {
  background: url("../img/bg_effect_02.webp") no-repeat center center/contain;
  content: "";
  height: 120px;
  position: absolute;
  right: -170px;
  top: 31%;
  width: 120px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-effect__contents::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-effect__contents {
    margin-top: 28px;
  }
}
.p-effect__lead {
  font-size: 22px;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-effect__lead {
    font-size: 16px;
    text-align: left;
  }
}
.p-effect__lead span {
  color: #E1368D;
}
.p-effect__list {
  counter-reset: li;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 87px;
}
@media screen and (max-width: 768px) {
  .p-effect__list {
    flex-direction: column;
    margin-top: 43px;
  }
}
.p-effect__item {
  counter-increment: li;
  position: relative;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .p-effect__item {
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
    width: 100%;
  }
}
.p-effect__item::before {
  content: counter(li, decimal-leading-zero);
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  right: 14px;
  top: -30px;
}
@media screen and (max-width: 768px) {
  .p-effect__item::before {
    font-size: 48px;
    right: 7px;
    top: -31px;
  }
}
.p-effect__item:nth-of-type(2), .p-effect__item:nth-of-type(3), .p-effect__item:nth-of-type(5) {
  margin-left: 5%;
}
@media screen and (max-width: 768px) {
  .p-effect__item:nth-of-type(2), .p-effect__item:nth-of-type(3), .p-effect__item:nth-of-type(5) {
    margin-left: auto;
  }
}
.p-effect__item:nth-of-type(4), .p-effect__item:nth-of-type(5) {
  margin-top: 84px;
}
@media screen and (max-width: 768px) {
  .p-effect__item:not(:first-child) {
    margin-top: 41px;
  }
}
.p-effect__image img {
  border-radius: 60px 0 0 0;
}
.p-effect__text {
  font-size: 24px;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-effect__text {
    font-size: 2rem;
    margin-top: 13px;
  }
}

.p-produce {
  overflow: hidden;
  padding: 120px 0 170px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-produce {
    padding: 50px 0 18.6vw;
  }
}
.p-produce::after {
  bottom: 0;
  color: #fff;
  content: "SUGOI SAUNA for women";
  font-size: 84px;
  font-weight: bold;
  left: 50%;
  letter-spacing: 0.14em;
  opacity: 0.1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-produce::after {
    bottom: 16px;
    font-size: 5.8vw;
  }
}
@media screen and (max-width: 900px) {
  .p-produce .c-section-title__ja {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .p-produce .c-section-title__ja {
    font-size: 24px;
    line-height: 1.5;
  }
}
.p-produce__contents {
  color: #fff;
  display: flex;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  justify-content: center;
}
.p-produce .p-produce__contents .p-produce__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-produce .p-produce__contents .p-produce__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-produce__contents {
    gap: 50px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 24px;
  }
}
.p-produce__text {
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .p-produce__text {
    margin-top: 18px;
  }
}
.p-produce__desc {
  color: #E1368D;
}
@media screen and (max-width: 768px) {
  .p-produce__desc {
    font-size: 14px;
    padding: 0 10px;
  }
}
.p-produce__name {
  border-bottom: 1px solid #fff;
  font-size: 28px;
  line-height: 1;
  margin-top: 10px;
  padding-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .p-produce__name {
    font-size: 20px;
    margin-top: 8px;
    padding: 0 10px 16px;
  }
}
.p-produce__comment {
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .p-produce__comment {
    font-size: 14px;
    margin-top: 14px;
    padding: 0 10px;
  }
}

.p-facility {
  overflow: hidden;
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .p-facility {
    padding: 50px 0;
  }
  span.p-about__subttle {
    margin-left: 16px;
    font-size: 13px;
}
}
.p-facility__contents {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-facility__contents {
    margin-top: 18px;
  }
}
.p-facility__item {
  align-items: center;
  display: flex;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-facility__item {
    min-height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__item {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .p-facility__item:nth-child(odd) {
    justify-content: flex-end;
  }
  .p-facility__item:nth-child(odd) .p-facility__image {
    border-radius: 0 80px 0 0;
    margin-right: -80px;
    right: 50%;
  }
  .p-facility__item:nth-child(even) {
    justify-content: flex-start;
  }
  .p-facility__item:nth-child(even) .p-facility__image {
    border-radius: 80px 0 0 0;
    left: 50%;
    margin-left: -80px;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__item:nth-child(odd) .p-facility__image {
    border-radius: 0 60px 0 0;
  }
  .p-facility__item:nth-child(even) .p-facility__image {
    border-radius: 60px 0 0 0;
  }
}
.p-facility__item:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-facility__item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-facility__item:nth-of-type(4) .p-facility__image img {
  -o-object-position: left top;
  object-position: left top;
}
.p-facility__item:nth-of-type(5) .p-facility__image img {
  -o-object-position: right top;
  object-position: right top;
}
.p-facility__image {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-facility__image {
    height: 100%;
    min-height: 450px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50vw + 80px);
  }
}
@media screen and (max-width: 768px) {
  .p-facility__image {
    width: 100%;
  }
}
.p-facility__image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-facility__text {
  background-color: #fff;
  box-shadow: rgba(137, 137, 137, 0.28) 2px 2px 20px 0px;
  max-width: 500px;
  padding: 50px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-facility__text {
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .p-facility__text {
    max-width: 100%;
    padding: 22px 28px;
  }
}
.p-facility__ttl {
  border-left: 3px solid #E1368D;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 3px 6px 6px 15px;
}
@media screen and (max-width: 768px) {
  .p-facility__ttl {
    font-size: 20px;
    padding: 3px 6px 5px 15px;
  }
}
.p-facility__desc {
  line-height: 1.6;
  margin-top: 22px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-facility__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 12px;
  }
}

.p-flow {
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 50px 0;
  }
}
.p-flow__contents {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-flow__contents {
    margin-top: 54px;
  }
}
.p-flow__list {
  display: grid;
  gap: 80px 50px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1099px) {
  .p-flow__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    max-width: 84%;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    gap: 54px;
    grid-template-columns: repeat(1, 1fr);
    max-width: 280px;
  }
}
.p-flow__item {
  align-items: center;
  background-color: #fff;
  border-radius: 40px 0 0 0;
  counter-increment: flow-li;
  display: flex;
  flex-direction: column;
  padding: 58px 30px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    padding: 42px 20px 28px;
  }
}
.p-flow__item::before {
  background-color: #2D2522;
  border-radius: 50%;
  color: #fff;
  content: counter(flow-li, decimal-leading-zero);
  font-size: 28px;
  font-weight: bold;
  left: 50%;
  line-height: 1;
  padding: 14px 13px 18px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}
.p-flow__item:not(:first-child)::after {
  background: url("../img/icon_tri-right.svg") no-repeat center center/contain;
  content: "";
  height: 30px;
  left: -17px;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 16px;
}
@media screen and (max-width: 768px) {
  .p-flow__item:not(:first-child)::after {
    content: none;
  }
}
.p-flow__image {
  max-width: 230px;
}
.p-flow__text {
  font-size: 2rem;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__text {
    margin-top: 12px;
  }
}
.p-flow__text span {
  display: block;
  font-size: 13px;
  line-height: 2;
}

.p-voice {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 50px 0;
  }
}
.p-voice__contents {
  margin-top: 86px;
}
@media screen and (max-width: 768px) {
  .p-voice__contents {
    margin-top: 38px;
  }
}
.p-voice .c-section-title__ja {
  line-height: 1.5;
}
.p-voice__list {
  display: grid;
  gap: 90px 60px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    gap: 44px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-voice__item {
  border-bottom: 1px solid #211918;
  border-top: 1px solid #211918;
  position: relative;
}
.p-voice__item::before, .p-voice__item::after {
  background-color: #211918;
  border-radius: 50%;
  content: "";
  height: 5px;
  position: absolute;
  top: 0;
  width: 5px;
}
.p-voice__item::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.p-voice__item::after {
  right: 0;
  transform: translate(50%, -50%);
}
.p-voice__text {
  height: 100%;
  padding: 40px 30px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-voice__text {
    padding: 30px 22px 28px;
  }
}
.p-voice__text::before, .p-voice__text::after {
  background-color: #211918;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 5px;
  position: absolute;
  width: 5px;
}
.p-voice__text::before {
  left: 0;
  transform: translate(-50%, 50%);
}
.p-voice__text::after {
  right: 0;
  transform: translate(50%, 50%);
}
.p-voice__ttl {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl {
    font-size: 16px;
  }
}
.p-voice__ttl span {
  color: #E1368D;
}
.p-voice__star {
  margin-top: 10px;
  max-width: 118px;
}
@media screen and (max-width: 768px) {
  .p-voice__star {
    margin-top: 7px;
    max-width: 87px;
  }
}
.p-voice__desc {
  margin-top: 17px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-voice__desc {
    font-size: 14px;
    margin-top: 12px;
  }
}
.p-voice__image {
  content: "";
  height: 60px;
  position: absolute;
  right: 67px;
  top: 0;
  transform: translate(50%, -30%);
  width: 60px;
}
@media screen and (max-width: 768px) {
  .p-voice__image {
    height: 44px;
    right: 50px;
    width: 44px;
  }
}
.p-voice__item:nth-child(odd) .p-voice__image {
  background: url("../img/icon_voice_01.webp") no-repeat center center/contain;
}
.p-voice__item:nth-child(even) .p-voice__image {
  background: url("../img/icon_voice_02.webp") no-repeat center center/contain;
}

.p-faq {
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 50px 0;
  }
}
.p-faq__contents {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .p-faq__contents {
    margin-top: 22px;
  }
}
.p-faq__list {
  margin: 0 auto;
  max-width: 900px;
}
.p-faq .c-faq-item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-faq .c-faq-item:not(:first-child) {
    margin-top: 16px;
  }
}
.p-faq .c-faq-item:first-child .c-faq-item__body {
  display: block;
}

.p-price {
  padding: 120px 0 120px;
}
@media screen and (max-width: 768px) {
  .p-price {
    padding: 50px 0;
  }
}
.p-price__contents {
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .p-price__contents {
    margin-top: 20px;
  }
}
.p-price__box {
  border-radius: 40px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-price__box {
    border-radius: 40px 0 0 0;
  }
}
.p-price__box.base {
  background-color: #E1DDDC;
}
.p-price__box.option {
  background-color: #f0eeed;
}

.p-price__head {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding: 16px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-price__ttl {
    font-size: 20px;
    margin: 0 20px;
    padding: 19px 0;
  }
}
.p-price__body {
  padding: 34px 20px;
}
.p-price__item {
  padding: 42px 20px 36px;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-price__item {
    padding: 30px 20px 27px;
    width: 100%;
  }
}
.p-price__member {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  min-width: 150px;
  padding: 7px 28px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-price__member {
    font-size: 16px;
    min-width: 130px;
    padding: 8px 24px;
  }
}
.p-price__member::after {
  border: 1px solid #fff;
  content: "";
  height: calc(100% - 4px);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
}
@media screen and (max-width: 768px) {
  .p-price__member::after {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
  }
}
.p-price__item:nth-of-type(1) .p-price__member {
  background-color: #E1368D;
}
.p-price__item:nth-of-type(2) {
  position: relative;
}
.p-price__item:nth-of-type(2)::after {
  background-color: #fff;
  content: "";
  height: 77%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-of-type(2)::after {
    height: 2px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 88%;
  }
}
.p-price__item:nth-of-type(2) .p-price__member {
  background-color: #2D2522;
}
.p-price__num {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 27px;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .p-price__num {
    font-size: 20px;
    margin-bottom: 18px;
    margin-top: 18px;
  }
}
.p-price__num span {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .p-price__num span {
    font-size: 32px;
  }
}
.p-price__desc {
  margin-top: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-price__desc {
    font-size: 14px;
    margin-top: 5px;
  }
}
.p-price__image {
  height: 80px;
}
.p-price__image img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}
.p-price__option {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-price__option {
    font-size: 18px;
    margin-top: 20px;
  }
}
.p-price__option span {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-price__option span {
    display: block;
    font-size: 14px;
  }
}
.p-price__price {
  font-weight: bold;
  line-height: 1;
  margin-top: 15px;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-price__price {
    margin-top: 15px;
  }
}

.p-access {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-access {
    padding: 50px 0;
  }
}
.p-access__contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-access__contents {
    margin-top: 22px;
  }
}

.p-shop {
  display: grid;
  gap: 6%;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-shop {
    gap: 14px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-shop__map {
  height: 0;
  padding-top: 65.5%;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-shop__map {
    padding-top: 65.5%;
  }
}
.p-shop__map iframe {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.p-shop__info {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-shop__info {
    font-size: 14px;
  }
}
.p-shop dt {
  float: left;
  font-weight: bold;
}
.p-shop dd {
  margin-left: 95px;
}
@media screen and (max-width: 768px) {
  .p-shop dd {
    margin-left: 80px;
  }
}
.p-shop dd li {
  padding-left: 1em;
  position: relative;
}
.p-shop dd li::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.p-shop dd:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-shop dd:not(:last-of-type) {
    margin-bottom: 18px;
  }
}

.p-akasaka {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-akasaka {
    padding: 50px 0;
  }
}
.p-akasaka__sub-title {
  margin-bottom: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-akasaka__sub-title {
    margin-bottom: 5px;
  }
}
.p-akasaka__sub-title span {
  background-color: #476FD3;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 8px 24px;
}
@media screen and (max-width: 768px) {
  .p-akasaka__sub-title span {
    font-size: 13px;
    padding: 6px 10px;
  }
}
.p-akasaka .c-section-title__ja {
  line-height: 1.5;
}
.p-akasaka__contents {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-akasaka__contents {
    margin-top: 28px;
  }
}
.p-akasaka .p-shop__info {
  color: #211918;
}

.p-footer {
  padding: 24px 0 140px;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 20px 0 91px;
  }
}
.p-footer__inner {
  text-align: center;
}
.p-footer__copy {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 13px;
  }
}

.p-footer-cta {
  background-color: rgba(225, 221, 220, 0.7);
  bottom: 0;
  left: 0;
  opacity: 0;
  opacity: 1;
  padding: 20px 20px;
  pointer-events: none; /* 非表示時のクリックイベントを無効化 */
  position: fixed;
  text-align: center;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
  z-index: 20;
}
.p-footer-cta.visible {
  opacity: 1;
  pointer-events: auto; /* 表示時のクリックイベントを有効化 */
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .p-footer-cta {
    padding: 10px 15px;
  }
}

.u-separate {
  margin: 24px 0;
}

/* 20240912 */
/* 予約の流れ */
.p-offer__note span{
  font-size: 14px;
  line-height: 1.5;
}
.p-offer__flow{
  margin-top: 60px;
}
.c-re-flow-item__head{
  border-top: #E1368D 1px solid;
  border-bottom: #E1368D 1px solid;
  padding: 28px 30px;
  line-height: 1;
  font-size: 2.4rem;
  color: #E1368D;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.c-re-flow-item__head .c-re-flow-item__ttl{
  position: relative;
}
.c-re-flow-item__head .c-re-flow-item__ttl::after{
  background: transparent url(../img/icon_plus_pink.svg) no-repeat center center / contain;
  content: "";
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
.c-re-flow-item__head .c-re-flow-item__ttl.is-open::after{
  background: transparent url(../img/icon_minus_pink.svg) no-repeat center center / contain;
}
.c-re-flow-item__body{
  background-color: #FDF6F3;
  padding: 80px 100px 0;
  display: none;
}
.p-re-flow__web{
  padding-bottom: 60px;
}
.p-re-flow__step:not(:first-child){
  margin-top: 60px;
}
.p-re-flow__heading{
  text-align: center;
  line-height: 1;
}
.p-re-flow__num{
  background-color: #E1368D;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  padding: 8px 24px;
  border-radius: 36px;
  display: inline-block;
  letter-spacing: 0.1em;
}
.p-re-flow__category{
  font-weight: bold;
  font-size: 2rem;
  margin-left: 16px;
  letter-spacing: 0.06em;
}
.p-re-flow__list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px 70px;
  margin-top: 32px;
}
.p-re-flow__item:not(:first-child) .p-re-flow__image{
  position: relative;
}
.p-re-flow__item:not(:first-child) .p-re-flow__image::after{
  background: url(../img/icon_tri-right.svg) no-repeat center center / contain;
  content: "";
  height: 30px;
  left: -27px;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 16px;
}
.p-re-flow__text{
  margin-top: 20px;
}
.p-re-flow__note{
  margin-top: 40px;
  color: #E1368D;
  line-height: 1.8;
}
.p-re-flow__note p{
  position: relative;
  padding-left: 16px;
}
.p-re-flow__note p::before{
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}
.p-re-flow__other{
  border-top: 1px solid #211918;
  padding: 60px 20px;
}
.p-re-flow__other-heading{
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-re-flow__icon{
  background-color: #E1368D;
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
}
.p-re-flow__icon.pointing{
  padding: 5.5px;
}
.p-re-flow__other-contents{
  max-width: 650px;
  width: 100%;
  margin: 24px auto 0;
}
.p-re-flow__tel{
  display: flex;
  justify-content: center;
}
.p-re-flow__tel-image{
  max-width: 260px;
  border-radius: 30px 0 0 0;
  overflow: hidden;
}
.p-re-flow__tel-text{
  margin-left: 30px;
}
.p-re-flow__tel-bold{
  font-weight: bold;
}
.p-re-flow__tel-list{
  margin-top: 10px;
}
@media screen and (max-width:900px){
  .p-re-flow__list{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width:600px){
  .c-re-flow-item__body{
    padding: 40px 15px 10px;
  }
  .p-re-flow__list{
    grid-template-columns: repeat(1,1fr);
    gap: 56px;
    margin: 23px auto;
  }
  .p-re-flow__item{
    max-width: 220px;
    margin: auto;
  }
  .p-re-flow__text{
    font-size: 14px;
    margin-top: 12px;
  }
  .p-re-flow__item:not(:first-child) .p-re-flow__image::after{
    display: none;
  }
  .p-re-flow__item:not(:last-child){
    position: relative;
  }
  .p-re-flow__item::after{
    background: url(../img/icon_tri-bottom.svg) no-repeat center center / contain;
    content: "";
    height: 16px;
    left: 50%;
    position: absolute;
    bottom: -20px;
    transform: translate(-50%, 100%);
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-offer__note span{
    font-size: 12px;
    margin-top: 8px;
    display: block;
  }
  .p-offer__code{
    margin-top: 8px;
  }
  .p-offer__flow{
    margin-top: 30px;
  }
  .c-re-flow-item__head{
    padding: 18px 10px;
    font-size: 16px;
  }
  .c-re-flow-item__head .c-re-flow-item__ttl::after{
    height: 14px;
    width: 14px;
  }
  .p-re-flow__heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p-re-flow__num{
    font-size: 16px;
    max-width: 96px;
    padding: 6px 19px;
  }
  .p-re-flow__category{
    margin-left: 0;
    font-size: 16px;
    margin-top: 13px;
  }
  .p-re-flow__step:not(:first-child){
    margin-top: 40px;
  }
  .p-re-flow__note{
    font-size: 14px;
    margin-top: 24px;
  }
  .p-re-flow__web{
    padding-bottom: 26px;
  }
  .p-re-flow__other{
    padding: 30px 0;
  }
  .p-re-flow__other .p-re-flow__category{
    margin-left: 10px;
    margin-top: 0;
  }
  .p-re-flow__icon{
    width: 28px;
    height: 28px;
  }
  .p-re-flow__other-contents{
    margin-top: 20px;
    font-size: 14px;
  }
  .p-re-flow__tel{
    flex-direction: column;
  }
  .p-re-flow__tel-image{
    max-width: 100%;
  }
  .p-re-flow__tel-text{
    margin-left: 0;
    margin-top: 14px;
  }
}

/* 料金 */
.p-price__sub-ttl{
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
.p-price__sub-ttl:not(:first-child){
  margin-top: 80px;
}
.p-price__sub-ttl h3{
  font-size: 30px;
  display: inline-block;
  position: relative;
  padding: 0 60px;
}
.p-price__sub-ttl h3::before,
.p-price__sub-ttl h3::after{
  background-color: #211918;
  width: 40px;
  height: 1px;
  position: absolute;
  content: "";
  top: 50%;
}
.p-price__sub-ttl h3::before{
  left: 0;
}
.p-price__sub-ttl h3::after{
  right: 0;
}
.p-price__box{
  overflow: hidden;
}
.p-price__box-wrapper{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  margin-top: 27px;
}
.p-price__head{
  background-color: #E1DDDC;
}
.p-price__head.ap{
  background-color: #E1368D;
  color: #fff;
  font-size: 24px;
  padding: 23px 0;
}
.p-price__head.ge{
  background-color: #3D322F;
  color: #fff;
  font-size: 24px;
  padding: 23px 0;
}
.p-price__box table{
  max-width: 361px;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  line-height: 1;
}
.p-price__box table .large{
  font-size: 40px;
}
.p-price__box table th,
.p-price__box table td{
  padding-top: 16px;
  padding-bottom: 16px;
}
.p-price__box table th{
  padding-left: 36px;
}
.p-price__box table td{
  padding-right: 36px;
}
.p-price__box table tr:first-child th,
.p-price__box table tr:first-child td{
  padding-top: 0;
}
.p-price__box table th{
  text-align: left;
}
.p-price__box table td{
  text-align: right;
}
.p-price__box table tr:not(:last-child) th,
.p-price__box table tr:not(:last-child) td{
  border-bottom: 1px solid #fff;
}
.p-price__note{
  margin-top: 12px;
  text-align: center;
}
.p-price__note p {
  text-align: left;
  position: relative;
  padding-left: 16px;
  display: inline-block;
}
.p-price__note p::before{
  position: absolute;
  content: "※";
  left: 0;
  display: inline-block;
}
.p-price__box.option .p-price__body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 52px);
}
@media screen and (max-width:768px){
  .p-price__sub-ttl:not(:first-child){
    margin-top: 40px;
  }
  .p-price__sub-ttl h3{
    font-size: 21px;
    padding: 0 38px;
  }
  .p-price__sub-ttl h3::before,
  .p-price__sub-ttl h3::after{
    width: 28px;
    height: 0.7px;
  }
  .p-price__box-wrapper{
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
    margin-top: 20px;
  }
  .p-price__head{
    padding: 20px 0;
  }
  .p-price__head.ap,
  .p-price__head.ge{
    font-size: 20px;
    padding: 20px 0;
  }
  .p-price__body{
    padding: 26px 20px;
  }
  .p-price__box table{
    font-size: 20px;
    max-width: 250px;
    margin-bottom: 12px;
  }
  .p-price__box table .large{
    font-size: 32px;
  }
  .p-price__box table th,
  .p-price__box table td{
    padding: 17px 18px;
  }
  .p-price__note p{
    font-size: 14px;
    padding-left: 14px;
  }
  .p-price__price{
    font-size: 20px;
    margin-top: 20px;
  }
  .p-price__box.option .p-price__body{
    height: calc(100% - 60px);
  }
}

.top-solution__text {
    position: relative;
    padding: 2rem 0;
    background: #E1368D;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 46px;
}
.top-solution__text::after {
    position: absolute;
    right: 50%;
    bottom: 0;
    border-top: 1.5625rem solid #E1368D;
    border-right: 1.5625rem solid transparent;
    border-bottom: 0;
    border-left: 1.5625rem solid transparent;
    content: "";
    transform: translate(50%, 100%);
}
@media screen and (max-width:768px){
.top-solution__text {
    font-size: 24px;
}
}
a.mensday {
    border-bottom: 1px solid;
    animation: offer 3s infinite ease-in-out;
}