@charset "UTF-8";

/* リンク 非アクティブ */

.c-link-inactive,
.p-global-nav__link.c-link-inactive,
.p-global-nav__item.c-link-inactive,
.c-link-inactive .p-global-nav__link {
  pointer-events: none;
  color: #afb2bd;
}
.c-link-inactive .js-toggle-head::before {
  background: #afb2bd;
}
.c-link-inactive .p-global-nav__link::after {
  border-top: 0.125rem solid #afb2bd;
  border-right: 0.125rem solid #afb2bd;
}

.p-footer-nav__item.c-link-inactive > span {
  color: #afb2bd;
  border-bottom: 1px solid #afb2bd;
}

/* header */

.p-header {
  background-color: var(--black-100);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.p-header.is-fixed {
  z-index: 1000;
}

.p-global-nav {
  background-color: var(--black-100);
}

@media screen and (min-width: 768px) {
  .p-global-nav {
    height: 46px;
  }
  /*.is-fixed .p-global-nav {
    height: 80px;
  }*/
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 12.8vw;
    padding: 2.133vw 5vw;
  }
  /*.is-fixed .p-global-nav {
    height: 80px;
  }*/
}

.p-global-nav__container {
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  height: calc(100vh - 12.8vw);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  background: #4f4f4f;
  z-index: 101;
}

@media screen and (min-width: 768px) {
  .p-global-nav__container {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
    transform: unset;
    width: unset;
    height: inherit;
    overflow: unset;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-global-nav__container::-webkit-scrollbar {
  display: none;
}

.p-global-nav__items {
  margin-left: auto;
  margin-right: auto;
  max-width: 343px;
  max-width: 21.4375rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-global-nav__items {
    margin-left: 0;
    margin-right: 0;
    height: inherit;
    margin-top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: unset;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__item {
    /*position: relative;*/
    text-align: center;
    height: inherit;
  }

  .is-fixed .p-global-nav__item:nth-of-type(1) {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-global-nav__item {
    border-bottom: 1px solid #d9d9d9;
  }
}
.p-global-nav__link {
  display: inline-block;
  width: 100%;
  padding: 24px 0 16px;
  padding: 1.5rem 0 1rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3125;
  text-transform: uppercase;
}

/*.p-global-nav__item:nth-last-of-type(-n + 2) .p-global-nav__link {
  font-weight: 400;
  font-size: 16px;
}*/

.is-fixed .p-global-nav__item:nth-last-of-type(-n + 2) .p-global-nav__link {
  font-weight: 700;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .p-global-nav__link {
    padding: 1.375rem 0 1.375rem;
    position: relative;
    height: inherit;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.1428571429;
    border-bottom: none;
    cursor: pointer;
  }

  .p-global-nav__item:not(:nth-last-of-type(1)) {
    padding-right: 3rem;
  }

  .p-global-nav__item:not(:nth-last-of-type(1)) {
    padding-right: 1.5rem;
    margin-right: 1.5rem;
  }
  .p-global-nav__item:nth-of-type(1),
  .p-global-nav__item:nth-of-type(2) {
    padding-right: 0;
    margin-right: 0;
  }
  .p-global-nav__item:nth-of-type(2) {
    margin-left: 3rem;
    padding-bottom: 16px;
    position: relative;
  }
  .p-global-nav__item:nth-of-type(2):after {
    content: "";
    width: 200px;
    height: 16px;
    position: absolute;
    bottom: -16px;
    left: -3rem;
    background: transparent;
  }
  .p-global-nav__item:nth-of-type(3) {
    padding-left: 1.5rem;
    margin-left: 1.5rem;
  }
  .p-global-nav__item:nth-of-type(5),
  .p-global-nav__item:nth-of-type(6),
  .p-global-nav__item:nth-of-type(7) {
    padding-bottom: 16px;
    position: relative;
  }
  .p-global-nav__item:nth-of-type(5):after,
  .p-global-nav__item:nth-of-type(6):after,
  .p-global-nav__item:nth-of-type(7):after {
    content: "";
    width: 200px;
    height: 16px;
    position: absolute;
    bottom: -16px;
    left: -3rem;
    background: transparent;
  }
}

/* @media screen and (min-width: 768px) {
  ::-webkit-full-page-media,
  :future,
  :root .p-global-nav__item:not(:nth-last-of-type(1)),
  ::-webkit-full-page-media,
  :future,
  :root .p-global-nav__item:not(:nth-of-type(1)) {
    padding-right: 3rem;
  }
  ::-webkit-full-page-media,
  :future,
  :root .p-global-nav__item:not(:nth-last-of-type(1)) {
    padding-right: 3rem;
  }
  ::-webkit-full-page-media,
  :future,
  :root .p-global-nav__item:nth-of-type(1) {
    padding-right: 0;
  }
  ::-webkit-full-page-media,
  :future,
  :root .p-global-nav__item:nth-of-type(3) {
    padding-left: 3rem;
  }
} */

@media screen and (min-width: 768px) {
  .is-fixed .p-global-nav__link {
    font-size: 14px;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__link::before {
    display: block;
    content: none;
    width: 1px;
    height: 1rem;
    background-color: #333333;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__link--hover::after {
    margin-left: 0.375rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid #ffffff;
    border-right: 0.125rem solid #ffffff;
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__link--events {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__item--hover.is-active .p-global-nav__hovers {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation: nav-hover-Animate 0.1s linear forwards;
    animation: nav-hover-Animate 0.1s linear forwards;
  }
}

@-webkit-keyframes nav-hover-Animate {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  1% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes nav-hover-Animate {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

  1% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__item--hover.is-close .p-global-nav__hovers {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: nav-notHover-Animate 0.1s linear forwards;
    animation: nav-notHover-Animate 0.1s linear forwards;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-global-nav__hovers::-webkit-scrollbar {
    display: none;
  }
}

@-webkit-keyframes nav-notHover-Animate {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  99% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

@keyframes nav-notHover-Animate {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  99% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

.p-global-nav__hovers {
  padding: 12px 12px 0;
  padding: 0.75rem 0.75rem 0;
}

@media screen and (min-width: 768px) {
  .p-global-nav__hovers {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    position: absolute;
    top: 32px;
    left: 0rem;
    right: 0;
    margin: auto;
    padding: 8px 0 0;
    text-align: left;
    min-width: initial;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    z-index: 1;
  }
  .p-global-nav__hovers.c-plan__hover {
    left: -3rem;
    top: 40px;
    padding: 20px;
    width: 213px;
    background-color: #fdf4e9;
  }
  .p-global-nav__hovers.c-plan__hover.benefits {
    padding: 16px 20px;
  }
  .p-global-nav__hovers.c-plan__hover.benefits .p-global-nav__hover a {
    padding: 0;
  }
  .p-global-nav__hovers.c-plan__hover.doctor {
    left: 16rem;
  }
  .p-global-nav__hovers.c-plan__hover.beginner {
    padding: 20px;
  }
  .p-global-nav__hovers.p-nav-operation {
    max-width: 948px;
    background: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-global-nav__hover {
    margin-top: unset;
  }

  .p-global-nav__border {
    width: calc(100% - 1rem);
    height: 1px;
    background-color: #4f4f4f;
    display: block;
    margin: 0.5rem auto;
  }
}

.p-global-nav__hover--sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-global-nav__hover--sp {
    display: block;
  }
}

.p-global-nav__hover a {
  padding: 12px;
  padding: 0.75rem;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
}
.p-global-nav__hover-txtpink a {
  color: #e55f9f;
}

@media screen and (min-width: 768px) {
  .p-global-nav__hover a {
    padding: 0.5rem 0.5rem 6px;
    color: #4f4f4f;
    white-space: nowrap;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
  }
  .p-global-nav__hover-txtpink a {
    color: #e55f9f;
  }
}
@media screen and (max-width: 767px) {
  .p-global-nav__hover {
    color: #afb2bd;
    font-size: 0.875rem;
    line-height: 1.2857142857;
    white-space: nowrap;
  }
  .p-global-nav__hover a {
    padding: 0.5rem;
    line-height: 1.2857142857;
    color: #ffffff;
    white-space: nowrap;
  }

  .p-global-nav__hovers .p-operation-list-items:not(:nth-last-of-type(1)) {
    margin-bottom: 0;
  }
  .p-global-nav__hover-txtpink a {
    color: #e55f9f;
  }
}

.p-global-nav__cta-wrap {
  position: absolute;
  top: -80%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transform: translateY(-50%);
}

@media screen and (max-width: 1280px) {
  /*  .p-global-nav__cta-wrap {
    position: absolute;
    top: -5.666vw;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }*/
}

@media screen and (min-width: 768px) {
  /* .is-fixed .p-global-nav__cta-wrap {
    position: relative;
    top: auto;
    right: auto;
  }*/

  .p-global-nav__cta-catch {
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 13px 12px;
    background: #f6f6f6;
    width: 136px;
    flex-basis: 136px;
    flex-shrink: 0;
    margin-right: 25px;
  }

  .p-global-nav__cta-catch::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 18px solid #f6f6f6;
    position: absolute;
    top: 0;
    right: -16px;
    bottom: 0;
    margin: auto;
  }
}

.p-global-nav__cta-items {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.6875rem;
  -moz-column-gap: 0.6875rem;
  column-gap: 0.6875rem;
}
.p-global-nav__cta-item {
  width: 100%;
  height: 100%;
  border-radius: 48px;
}
.p-cta-header-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-global-nav__cta-items {
    margin-top: unset;
    -webkit-column-gap: unset;
    -moz-column-gap: unset;
    column-gap: unset;
    position: relative;
    border-radius: 0;
    gap: 8px;
  }
}

@media screen and (max-width: 1200px) {
  .p-global-nav__cta-catch {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-global-nav__items {
    margin-top: 2.133vw;
    display: flex;
    flex-direction: column;
  }

  .p-global-nav__link {
    padding: 6.4vw 0;
  }

  .p-global-nav__link,
  .is-fixed .p-global-nav__item:nth-last-of-type(-n + 2) .p-global-nav__link {
    font-size: 4.266vw;
  }
  .p-global-nav__cta-wrap {
    display: none;
  }
  .p-cta-header-sp {
    display: block;
  }

  .p-global-nav__cta-catch::before {
    content: none;
  }

  .p-global-nav__cta-lead {
    margin: 24px auto 16px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .p-global-nav__cta-item {
    width: 100%;
    max-height: 92px;
  }

  .p-global-nav__cta-wrap .p-global-nav__cta-items {
    margin-top: 8.533vw;
  }
  /* ハンバーガー内の並び順 */
  .p-global-nav__item:nth-child(1) {
    order: 1;
  }
  .p-global-nav__item:nth-child(2) {
    order: 2;
  }
  .p-global-nav__item:nth-child(3) {
    order: 3;
  }
  .p-global-nav__item:nth-child(4) {
    order: 4;
  }
  .p-global-nav__item:nth-child(5) {
    order: 5;
  }
  .p-global-nav__item:nth-child(6) {
    order: 6;
  }
  .p-global-nav__item:nth-child(7) {
    order: 7;
  }
  .p-global-nav__item:nth-child(8) {
    order: 8;
  }
  .p-global-nav__item:nth-child(9) {
    order: 9;
  }
}
.c-cta-header-text {
  display: none;
}
@media screen and (min-width: 1240px) {
  .p-global-nav__cta-lead {
    display: none;
  }

  .p-cta-footer .p-global-nav__cta-item:not(:nth-last-of-type(1)) {
    margin-right: 16px;
  }
  .c-cta-header-text {
    color: #fff;
    font-family: "Zen Kaku Gothic New";
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: 154px;
    position: absolute;
    left: -170px;
  }
  .c-cta-header-text img {
    width: 36px;
    height: 13px;
  }
}

.p-cta-header .c-cta-item {
  width: 155px;
  height: 44px;
}
.p-cta-header .c-cta-item.c-header-reserve-btn {
  width: 194px;
  height: 44px;
}
.p-cta-header .c-cta-item.c-header-wechat-btn {
  width: calc(155px + 2px);
  height: calc(44px + 2px);
}
.p-cta-footer .c-cta-item {
  width: 163px;
  height: 56px;
}
.p-cta-mv .c-cta-item {
  width: 151px;
  height: 56px;
}

.p-global-nav__cta-link {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-global-nav__cta-link {
    position: relative;
    height: inherit;
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 1280px) {
  /*  .p-global-nav__cta-link {
    position: relative;
    height: inherit;
    width: auto;
    height: 46px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }*/
}

@media screen and (max-width: 767px) {
  .p-global-nav__cta-link {
    height: 100%;
  }
}

.p-global-nav__close {
  margin-top: 64px;
  margin-top: 4rem;
  margin-bottom: 99px;
  margin-bottom: 6.1875rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-global-nav__close {
    display: none;
  }
}

.p-global-nav__link--close {
  border: 2px solid #262626;
  padding: 20px 0;
  padding: 1.25rem 0;
  width: 100%;
}

.p-header__upside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.p-header__upside:after {
  content: "";
  width: calc(100% - 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-header__upside {
    min-height: 62px;
    padding: 12px 32px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__upside:after {
    content: none;
  }
}

/* ----------------------------------------------------------------------
 ハンバーガー
 ---------------------------------------------------------------------- */

.c-drawer,
.c-drawer span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-color: #ffffff;
}

.c-drawer {
  position: relative;
  width: 8.533vw;
  height: 8.533vw;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-drawer span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 5px;
}

.c-drawer span:nth-of-type(1) {
  top: 30%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.c-drawer span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.c-drawer span:nth-of-type(3) {
  top: 70%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.c-drawer[aria-expanded="true"] span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-30deg) scale(0.8);
  transform: translate3d(-50%, -50%, 0) rotate(-30deg) scale(0.8);
}

.c-drawer[aria-expanded="true"] span:nth-of-type(2) {
  opacity: 0;
}

.c-drawer[aria-expanded="true"] span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(30deg) scale(0.8);
  transform: translate3d(-50%, -50%, 0) rotate(30deg) scale(0.8);
}

/* ----------------------------------------------------------------------
 ハンバーガー
 ---------------------------------------------------------------------- */

.p-header__title {
  z-index: 100;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .p-header__title {
  }
}

.p-header__title a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column-reverse;
  height: inherit;
  gap: 8px;
}

.p-header__id {
  max-width: 55%;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}
.p-header__id br {
  display: contents;
}

@media screen and (max-width: 767px) {
  .p-header__id {
    display: none;
  }
}

.p-header__logo {
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-top: 0rem;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    padding-top: 0;
  }
}

.p-header__img {
  width: 420px;
}

@media screen and (min-width: 768px) {
  .p-header__img {
    width: 336px;
    flex-basis: 336px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__img {
    width: 66.666vw;
  }
}

.p-header__title span {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-header__title span {
    display: block;
    padding-left: 1rem;
    font-family: "League Spartan", sans-serif;
    color: inherit;
    font-size: 0.75rem;
    font-weight: 400;
  }
}

.p-header__menu {
  z-index: 100;
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .p-header__menu {
    display: none;
  }
}

.p-header__nav {
  padding-left: 20px;
  padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.p-page-head__wrapper {
  position: relative;
  height: 96px;
  background-color: #f5907a;
}
@media screen and (max-width: 767px) {
  .p-page-head__wrapper {
    height: 92px;
  }
}

.p-page-head__img {
  width: 100%;
}

.p-page-head__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  padding: 0;
}
/* .p-page-head__title span.u-hidden-pc {
  white-space: nowrap;
} */
@media screen and (min-width: 768px) {
  .p-page-head__title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    padding: 0;
  }
}

/* ----------------------------------------------------------------------
 メガメニュー
 ---------------------------------------------------------------------- */

.p-wrap-operaton-lists {
  display: flex;
}
.c-operation-lists-term {
  padding: 32px;
  width: 160px;
  flex-basis: 160px;
  flex-shrink: 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: #f6e9dd;
  border-radius: 16px 0 0 16px;
}
.c-operation-lists-items {
  padding: 32px;
  background: #fdf4e9;
  border-radius: 0 16px 16px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-global-nav__hovers {
    max-height: 76vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  /*.p-global-nav__hovers::-webkit-scrollbar{
  display: none;
}*/
}

.c-nav-operation-list-item-term {
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  border-bottom: 1px solid #4f4f4f;
}
.c-nav-operation-list-item-term.c-link-inactive {
  border-bottom: 1px solid #afb2bd;
}
.c-nav-operation-list-item-term .c-txt-small {
  font-size: 0.75em;
}
.c-nav-operation-list-item-list-item {
  font-size: 12px;
  font-size: 0.75rem;
  color: #afb2bd;
  line-height: 1.4;
  position: relative;
}
.c-nav-operation-list-item-list-item:not(:nth-last-of-type(1)) {
  margin-bottom: 14px;
}
.p-operation-list-items {
  max-width: 220px;
  flex-basis: 220px;
  /* flex-shrink: 0; */
}
.c-nav-operation-list-item-list-item a {
  color: #ffffff;
}
.p-global-nav__item .c-nav-operation-list-item-list-item a {
  color: #4f4f4f;
}
@media screen and (max-width: 767px) {
  .p-operation-list-items {
    max-width: 100%;
  }
  .p-global-nav__item .c-nav-operation-list-item-list-item a {
    color: #ffffff;
  }
  .p-global-nav__item .c-nav-operation-list-item-list-item:not(:last-child) a {
    display: block;
    padding-bottom: 20px;
  }
}

header .c-nav-operation-list-item-list-item::before {
  display: block;
  content: "";
  position: absolute;
  width: 7px; /* 四角形の幅 */
  height: 7px; /* 四角形の高さ */
  background-color: transparent !important; /* 矢印の色 */
  transform: rotate(45deg) translateY(-50%);
  transform-origin: center;
  color: #4f4f4f;
  border-top: solid 2px;
  border-right: solid 2px;
  border-radius: 1px;
  right: 6px;
  top: 50%;
  transition-duration: 0.2s;
}
header .c-nav-operation-list-item-list-item:not(:has(a))::before {
  color: #afb2bd;
}
header .c-nav-operation-list-item-list-item.u-hidden-before {
  color: #4f4f4f;
}
header .c-nav-operation-list-item-list-item.u-hidden-before::before {
  display: none;
}
@media screen and (max-width: 767px) {
  header .c-nav-operation-list-item-list-item.u-hidden-before {
    color: #ffffff;
  }
}

.p-operation-lists {
  display: flex;
  gap: 32px;
}

.p-nav-operation-list-item:not(:nth-last-of-type(1)) {
  margin-bottom: 32px;
}
footer .p-nav-operation-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 30px;
}
.p-nav-operation-list-item.add-arrow {
  position: relative;
}
.p-nav-operation-list-item.add-arrow::before {
  position: absolute;
  top: 6px;
  right: 4px;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #afb2bd;
  border-top: 2px solid #afb2bd;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .c-nav-operation-list-item-term__link-sp {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-global-nav__hovers {
    padding: 0 0 6.4vw;
  }
  .p-wrap-operaton-lists {
    flex-flow: column;
  }
  .c-operation-lists-term {
    display: none;
  }
  .p-operation-lists {
    flex-flow: column;
    gap: 3.2vw;
  }
  .c-operation-lists-items {
    padding: 0;
    background: transparent;
  }
  .p-operation-list-items {
    width: 100%;
    flex-basis: auto;
  }
  .c-nav-operation-list-item-term {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    border-bottom: none;
  }
  .c-nav-operation-list-item-term br {
    display: none;
  }
  .c-nav-operation-list-item-term.c-link-inactive {
    color: #afb2bd;
  }
  .p-nav-operation-list-item {
    padding: 3.2vw 3.2vw 3.2vw 4.266vw;
    border: 1px solid #ffffff;
    border-radius: 8px;
  }
  .p-nav-operation-list-item.c-inactive {
    border: 1px solid #afb2bd;
  }
  .c-nav-operation-list-item-list-item {
    font-size: 3.733vw;
  }
  .p-nav-operation-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 3.2vw;
  }
  footer   .p-nav-operation-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 3.2vw;
  }
  .c-nav-operation-list-item-term.c-link-inactive {
    border-bottom: none;
  }
  .p-nav-operation-list-item.add-arrow::before {
    display: none;
  }
  .c-nav-operation-list-item-term__link-sp
    + .c-nav-operation-list-item-list-wrap {
    display: none;
  }
}

/* ----------------------------------------------------------------------
 HEADER CTA
 ---------------------------------------------------------------------- */

.c-header-reserve-btn {
  background-color: #f6544a;
  border-radius: 48px;
}

@media screen and (min-width: 768px) {
  /* .c-header-reserve-btn {
    border-radius: 8px 0px 0px 8px;
  }*/
}

.c-header-reserve-btn a {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  border-radius: 48px;
}

@media screen and (min-width: 768px) {
  .c-header-reserve-btn a {
    padding: 0;
    text-align: center;
  }
}

.c-header-reserve-btn img {
  width: 32px;
  width: 2rem;
}

@media screen and (min-width: 768px) {
  .c-header-reserve-btn img {
    margin-left: auto;
    margin-right: auto;
    width: 1.5rem;
  }
}

.c-header-reserve-btn__text {
  color: #fff;
}

.c-header-wechat-btn {
  background-color: #fff;
  border: 1px solid #07C160;
}

.c-header-wechat-btn__text {
  color: #07c160;
}

@media screen and (min-width: 768px) {
  .c-header-reserve-btn__text,
  .c-header-wechat-btn__text {
    display: block;
  }
}

.c-header-line-btn {
  background-color: #06c755;
}

.c-header-line-btn__text {
  color: #fff;
}

.c-header-line-btn img {
  width: 32px;
  width: 2rem;
}

@media screen and (min-width: 768px) {
  .c-header-line-btn img {
    margin-left: auto;
    margin-right: auto;
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}

/* 電話予約ボタン */
.c-header-tel-btn {
  background-color: #fdf4e9;
  box-sizing: border-box;
}
.c-header-tel-btn a {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-header-tel-btn a {
  padding: 0;
  text-align: center;
}
.c-header-tel-btn img {
  width: 35px;
  width: 2.1875rem;
}

.p-cta-mv .p-global-nav__cta-items {
  gap: 4px;
}

.p-cta-mv .c-header-tel-btn {
  background-color: #fdf4e9;
  border: 1px solid #4f4f4f;
  box-sizing: border-box;
}
.p-cta-mv .c-header-tel-btn .c-header-tel-btn__text {
  color: #4f4f4f;
}
.p-cta-mv .c-header-reserve-btn {
  background: #06c755;
}
.p-cta-mv .c-header-web-btn {
  background: #f6544a;
}

@media screen and (min-width: 768px) {
  .c-header-tel-btn img {
    margin-right: 2px !important;
  }
}

/* .c-header-tel-btn__wrapper {
  padding-left: 4px;
  padding-left: 0.25rem;
} */

@media screen and (min-width: 768px) {
  .c-header-tel-btn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 1280px) {
  .p-global-nav__cta-item a {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1280px) {
  .c-header-tel-btn__wrapper,
  .c-header-line-btn__wrapper,
  .c-header-reserve-btn__text,
  .c-header-wechat-btn__text {
    padding-left: 0;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .c-header-tel-btn__text,
  .c-header-line-btn__text,
  .c-header-reserve-btn__text,
  .c-header-wechat-btn__text {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-header-tel-btn__text,
  .c-header-line-btn__text,
  .c-header-reserve-btn__text,
  .c-header-wechat-btn__text {
    display: block;
  }

  .c-header-tel-btn__wrapper,
  .c-header-line-btn__wrapper,
  .c-header-reserve-btn__text,
  .c-header-wechat-btn__text {
    padding-left: 0;
  }

  .p-global-nav__cta-item a {
    padding: 0 10px;
    font-size: 3.733vw;
  }
}

@media screen and (min-width: 1101px) {
  .p-global-nav__cta-item a {
    font-size: 14px;
  }
  .p-global-nav__cta-item a img {
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
  }
   .p-global-nav__cta-item.c-header-wechat-btn a img {
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-global-nav__cta-item a {
    font-size: 14px;
  }
  .p-global-nav__cta-item a img {
    width: 24px;
    height: 24px;
    margin: 0;
  }
   .p-global-nav__cta-item.c-header-wechat-btn a img {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

.c-header-tel-btn__number {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .c-header-tel-btn__number {
    display: none;
  }
}

.p-section-cta {
  background-color: #f6f6f6;
}

.p-section-cta__inner {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .p-section-cta__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.p-section-cta__title {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-section-cta__title {
    font-size: 2rem;
  }
}

.p-section-cta__wrapper {
  margin-top: 0;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-section-cta__wrapper {
    margin-top: 2.5rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

.p-section-cta__btn {
  width: 106px;
  width: 6.625rem;
  height: 56px;
  height: 3.5rem;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-section-cta__btn {
    width: 24rem;
    height: 92px;
    height: 5.75rem;
  }
}

.c-top__cta-catch {
  margin-top: 2.133vw;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}

/* ----------------------------------------------------------------------
 FOOTER
 ---------------------------------------------------------------------- */

.p-footer {
  background-color: var(--beige-200);
}

.p-footer__top__inner {
  display: flex;
  flex-direction: column;
}

.p-footer-icon__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-footer-icon__inner {
    max-width: unset;
  }
}

.p-footer-icon__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-footer-icon__item {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer-info {
  max-width: 500px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid var(--black-100);
}

@media screen and (min-width: 768px) {
  .p-footer-info {
    max-width: 1200px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-info {
    max-width: 500px;
    width: 89.333vw;
    padding-right: 0;
    padding-left: 0;
  }
  .p-footer-info__supplement {
    margin: 8.533vw -5.333vw 0;
    padding: 4.266vw 0;
  }
  .p-footer__top__inner {
    flex-flow: column;
    align-items: flex-start;
  }
}
.p-footer-info__lists {
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-footer-info__lists {
    max-width: 850px;
    max-width: 53.125rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.p-footer-info__lists > .p-footer-info__list + .p-footer-info__list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer-info__lists > .p-footer-info__list + .p-footer-info__list {
    margin-top: 1rem;
  }
}

.p-footer-info__list {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer-info__list {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}

.p-footer-info__list dt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5714285714;
}

@media screen and (min-width: 768px) {
  .p-footer-info__list dt {
    width: 84px;
  }
}

.p-footer-info__list dd {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
}

@media screen and (min-width: 768px) {
  .p-footer-info__list dd {
    margin-top: unset;
  }

  .p-footer-info__list dd .u-newline {
    margin-left: 0.5em;
  }
}

.p-footer-nav {
  background-color: var(--beige-200);
}

.p-footer-nav__inner {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer-nav {
    padding: 40px 0;
  }
  .p-footer-nav__inner {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-nav__items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-flow: column;
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
    row-gap: 1.5625em;
  }
  .p-footer-nav__bottom-block {
    width: 100%;
  }
  .p-footer-nav__bottom-items {
    width: 100%;
    display: flex;
    gap: 3.2%;
    justify-content: space-between;
  }
  .p-footer-nav__bottom-items.p-two-items {
    gap: 2.2%;
  }
  .p-footer-nav__bottom-items .p-footer-nav__items {
    min-height: 58px;
    margin-bottom: 8px;
    display: flex;
  }
  .p-footer-nav__bottom-wraps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .p-footer-nav__bottom-wraps .p-footer-nav__items {
    min-height: initial;
    width: 100%;
  }
  .p-footer__nav-first {
    height: 58px;
    margin-bottom: 8px;
  }
  .p-footer-nav__bottom-items .c-nav-operation-list-item-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 3rem;
  }
  .p-footer-nav__bottom-items
    .c-nav-operation-list-item-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 0;
  }
  .p-footer-nav__item-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  footer .c-nav-operation-list-item-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-nav__bottom-items {
    display: contents;
  }
  .p-footer-nav__item-wrap {
    margin-bottom: 18px;
  }
}
.p-footer-nav__item {
  width: 100%;
}
.p-wrap-footer-operaton-lists .p-operation-lists {
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-wrap-footer-operaton-lists .p-operation-lists {
    gap: unset;
  }
}
.p-wrap-footer-operaton-lists {
  width: 100%;
}
.c-footer-operation-lists-term {
  padding-bottom: 8px;
  margin-bottom: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2857142857;
  color: #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
}
.c-footer-operation-lists-items .c-nav-operation-list-item-term {
  margin-bottom: 12px;
  padding-bottom: 0;
  font-size: 14px;
  border: none;
}
.c-footer-operation-lists-items .p-operation-list-items {
  max-width: 312px;
  width: 100%;
  flex-basis: 312px;
  flex-shrink: 0;
}
.p-footer__nav-operation .c-nav-operation-list-item-list-item a {
  color: #4f4f4f;
}
.p-footer__nav-operation .c-nav-operation-list-item-list-item .c-nav-operation-list-item-p {
  color: #4f4f4f;
}
@media screen and (max-width: 1080px) {
  .c-footer-operation-lists-items .p-operation-list-items {
    flex-basis: content;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-operation-lists-items .p-operation-list-items {
    display: contents;
  }
  .c-footer-operation-lists-items .c-nav-operation-list-item-term {
    font-size: clamp(15px, 4.266vw, 16px);
    color: #4f4f4f;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-nav__item {
    white-space: nowrap;
  }
}
.p-footer-nav__item .c-nav-operation-list-item-list-item a {
  color: #4f4f4f;
}
@media screen and (max-width: 767px) {
  .p-footer-info__list {
    text-align: left;
  }

  .p-footer__nav-operation .p-nav-operation-list-item {
    border: 1px solid #4f4f4f;
  }
  .p-footer__nav-operation-lists .c-nav-operation-list-item-term {
    color: #4f4f4f;
  }
  .p-footer__nav-operation .c-nav-operation-list-item-list-item a {
    color: #4f4f4f;
  }

  .p-footer__nav-operation .p-nav-operation-list-item.c-inactive {
    border: 1px solid #afb2bd;
  }
  .p-footer__nav-operation .c-nav-operation-list-item-term.c-link-inactive {
    color: #afb2bd;
  }

  .c-footer-operation-lists-term {
    margin: 0;
    padding: 6.4vw 0;
    border-bottom: none;
  }
  .c-footer-operation-lists-term {
    font-size: 4.2666vw;
  }
  .p-footer__nav-operation {
    margin-bottom: 0;
    border-bottom: 1px solid #4f4f4f;
  }
  .p-footer__nav-operation .p-operation-lists {
    /*padding-top: 4.266vw;*/
    padding-top: 0;
    padding-bottom: 6.4vw;
  }
  .c-footer-operation-lists-items .c-nav-operation-list-item-term {
    margin-bottom: 0;
  }
  .p-footer__nav-operation .p-nav-operation-list-item {
    padding: 16px;
  }
  .p-operation-list-items:not(:nth-last-of-type(1)) {
    margin-bottom: 3.2vw;
  }
  .c-nav-operation-list-item-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 5.333vw;
  }
  .c-nav-operation-list-item-list-items {
    margin-top: 5.333vw;
    margin-bottom: 2.1333vw;
  }
  .p-operation-list-items dd {
    margin-bottom: 8px;
  }
  .p-operation-list-items.only-sp-flex {
    display: flex;
    flex-direction: column;
  }
  .c-footer-operation-lists-items:first-of-type
    .p-operation-list-items.only-sp-order {
    order: 0;
  }
  .c-footer-operation-lists-items:nth-of-type(2)
    .p-operation-list-items.only-sp-order {
    order: -1;
  }
  .p-nav-operation-list-item.only-sp-order {
    order: 1;
    margin: 3.2vw 0 0;
  }
  .p-nav-operation-list-item__genitalia.only-sp-order {
    margin: 0;
  }
  .p-footer-nav .js-toggle-head::before,
  .p-footer-nav .js-toggle-head::after {
    background-color: #4f4f4f;
  }
  .c-inactive .js-toggle-head::before,
  .c-inactive .js-toggle-head::after {
    background-color: #afb2bd;
  }
  .p-footer-nav__inner {
    display: flex;
    flex-flow: column;
  }
  .p-footer-nav__inner:nth-child(2) {
    padding-top: 0;
  }
}

.p-footer-nav__item > a,
.p-footer-nav__item > span {
  display: block;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2857142857;
  color: #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
}
.c-nav-operation-list-item-list-items {
  margin-top: 0.75rem;
}
.p-footer-nav__bottom-items .c-nav-operation-list-item-list-items {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer-nav__item > a,
  .p-footer-nav__item > span {
    padding-top: 6.4vw;
    padding-bottom: 6.4vw;
    font-size: 4.266vw;
  }
}
@media screen and (min-width: 768px) {
  .p-footer-nav__item > a,
  .p-footer-nav__item > span {
    padding-top: unset;
    padding-bottom: 8px;
    line-height: 1.5714285714;
    color: #4f4f4f;
  }
}

.p-footer-nav__hover a {
  padding: 24px 24px 0;
  padding: 1.5rem 1.5rem 0;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #4f4f4f;
}

@media screen and (min-width: 768px) {
  .p-footer-nav__hover a {
    padding: 1rem 0 0;
    font-size: 0.75rem;
  }
}

.p-footer-toTOP a {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #595956;
}

.p-footer-toTOP a::before {
  margin-right: 8px;
  margin-right: 0.5rem;
  display: inline-block;
  content: "";
  background-image: url(../images/common/top-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  width: 0.625rem;
  height: 16px;
  height: 1rem;
}

.p-footer__icon {
  position: relative;
  margin-top: 32px;
  margin-top: 2rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-footer__icon {
    margin-top: 3rem;
  }
}

.p-footer__logo {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
  margin-top: 2.375rem;
  max-width: 310px;
  max-width: 19.375rem;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 5rem;
    max-width: 31.25rem;
  }
}

.p-footer__link {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.0625rem;
  -moz-column-gap: 1.0625rem;
  column-gap: 1.0625rem;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .p-footer__link {
    margin-top: 40px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
}

.p-footer__link a {
  padding: 10px;
  padding: 0.625rem;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
}

@media screen and (min-width: 768px) {
  /* .p-footer__link a {
    color: #AFB2BD;
  } */
}

.p-footer__copy {
  margin-top: 10.666vw;
}

@media screen and (min-width: 768px) {
  .p-footer__copy {
    margin-top: 40px;
  }
}

.p-footer__copy small {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  display: block;
  text-align: center;
  background-color: var(--black-100);
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5833333333;
  color: #fff;
}

/* FOOTER CTA */

.p-footer__top {
  position: relative;
  padding: 64px 0 80px;
  background: var(--black-100);
}

.p-section-cta .c-section-title {
  font-size: 56px;
  font-weight: 300;
  text-align: left;
}
.p-section-cta .c-section-title .c-section-title-en {
  font-size: 64px;
  font-weight: 300;
  text-align: left;
  color: #ffffff;
  padding-top: 0;
}

.p-footer .p-section-cta {
  background: transparent;
}

.p-footer .p-section-cta__inner {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
  display: flex;
  flex-flow: column;
}

.p-footer .p-section-cta p.c-cta-lead {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-footer .p-section-cta .p-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer .c-tel-btn__number {
  padding: 0;
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
}

.p-footer .c-line-btn__text,
.p-footer .c-reserve-btn__text {
  padding-left: 8px;
  padding-left: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
}
footer .p-section-cta .p-section-cta__btn a {
  padding: 16px 0;
  width: 100%;
  height: 100%;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .c-txt-cta-lead br {
    display: none;
  }
  .p-footer__top {
    padding: 12.8vw 0;
  }
  .p-section-cta .c-section-title .c-section-title-en {
    font-size: 48px;
  }

  .p-footer .p-section-cta__btn {
    width: 100%;
    height: 24.533vw;
  }

  .p-footer .p-section-cta__btn:not(:nth-of-type(1)) {
    margin-bottom: 4.266vw;
  }

  .p-cta-footer .c-header-line-btn img {
    width: 5.333vw;
    margin-right: 1.066vw;
  }
  .p-footer-icon__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
    width: 100%;
  }
  .p-footer-icon__items {
    justify-content: space-between;
  }

  .p-footer__link {
    margin-top: 10.666vw;
    flex-flow: column;
    align-items: start;
  }
  .p-footer__link a {
    padding: 0 5.333vw;
  }
  .p-footer__link a:not(:nth-last-of-type(1)) {
    padding-bottom: 5.333vw;
  }
}

.footer-clinic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: var(---beige-100, #fdf4e9);
}

@media screen and (max-width: 767px) {
  .footer-clinic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 32px 20px;
  }
}
@media screen and (max-width: 374px) {
  .footer-clinic {
    padding: 14px;
  }
}

.footer-clinic__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

@media screen and (max-width: 767px) {
  .footer-clinic__title {
    margin-bottom: 16px;
  }
}

.footer-clinic__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .footer-clinic__others {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
}

.footer-clinic__item {
  padding: 8px 12px;
  display: inline-block;
  border-right: 1px solid #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--4, 4px);
  border: 1px solid var(---black-100, #4f4f4f);
}

@media screen and (max-width: 767px) {
  .footer-clinic__items {
    margin: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer-clinic__others {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .footer-clinic__shibuya {
    width: 100%;
  }

  .footer-clinic__item {
    padding: 8px 12px;
    width: 100%;
    text-align: center;
    display: inline-block;
    border-radius: var(--4, 4px);
    border: 1px solid var(---black-100, #4f4f4f);
  }
}

@media screen and (max-width: 374px) {
  .footer-clinic__title {
    margin-bottom: 10px;
  }
  .c-txt-cta-lead br {
    display: block;
  }
}

/*----------------------------------------------------------------------------
 BTN TOP
----------------------------------------------------------------------------*/

.p-btn-footer-wrap {
  margin: 16px auto 0;
}

.p-btn-footer-top {
  width: 120px;
  height: 120px;
  margin: auto 0 0 0;
}

.p-btn-footer-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/btn_pagetop.svg) no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .p-btn-footer-wrap {
    margin: 10.666vw 0 0;
  }

  .p-btn-footer-top {
    margin: auto;
    width: 24vw;
    height: 24vw;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-cta-header .c-cta-item {
    width: 44px;
  }
  .p-cta-header .c-cta-item.c-header-reserve-btn {
    width: 44px;
  }
  .p-cta-header .c-cta-item.c-header-wechat-btn {
    width: calc(44px + 2px);
    height: calc(44px + 2px);
  }
}

@media screen and (max-width: 767px) {
  .p-cta-header .c-cta-item {
    width: 28.266vw;
    height: 12.266vw;
  }
  .p-cta-footer .c-cta-item {
    width: 28.266vw;
    height: 12.266vw;
  }
  .p-cta-mv .c-cta-item {
    width: 40vw;
    height: 14.4vw;
  }
  .c-header-line-btn img {
    width: 5.333vw;
    margin-right: 1.066vw;
  }
}
/*----------------------------------------------------------------------------
 CTA
----------------------------------------------------------------------------*/

.p-section-cta .c-section-title {
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
}

.p-section-cta .c-section-title::before {
  content: none;
}

.p-section-cta .c-section-title::after {
  content: none;
}

.p-section-cta .c-section-title span.c-txt-small {
  font-size: 75%;
  display: inline-block;
}

.p-section-cta .c-section-title span {
  padding-top: 16px;
  padding-top: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-section-cta__title {
  text-align: center;
  color: #333333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.c-txt-cta-lead {
  margin: 8px 0 38px;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .p-section-cta .c-section-title {
    font-size: 80px;
    font-size: 5rem;
  }

  .p-section-cta .c-section-title span.c-txt-small {
    font-size: 70%;
  }

  .p-section-cta__title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-txt-cta-lead {
    margin: 8px 0 19px;
    padding: 0;
    font-size: 14px;
    font-size: 0.8745rem;
  }
}

@media screen and (max-width: 767px) {
  .js-toggle-head::before,
  .js-toggle-head::after {
    background-color: #ffffff;
  }
}

/*----------------------------------------------------------------------------
 JS BUTTN SCROLL
----------------------------------------------------------------------------*/

.p-btn-scroll-top {
  opacity: 0;
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.p-btn-scroll-top.is-fixed {
  opacity: 1;
}
.p-btn-scroll-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/btn_totop.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-btn-scroll-top {
    width: 10.666vw;
    height: 10.666vw;
    bottom: 18.933vw;
    right: 4vw;
  }
}

/* 202405 ハンバーガー,フッターメニュー改修 */
@media screen and (max-width: 767px) {
  .p-global-nav__container {
    height: calc(100dvh - 40px);
  }
  .p-cta-header-sp {
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    max-width: 343px;
    max-width: 21.4375rem;
    width: 100%;
  }
  .p-sns-icons-sp ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    row-gap: 16px;
  }
  .p-cta-header-sp .p-cta-items-sp {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ffffff30;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .p-cta-header-sp .p-cta-items-sp li {
    width: 100%;
    padding: 16px 0;
    border-radius: 8px;
  }
  .c-header-tel-btn__text-sp,
  .c-header-line-btn__text-sp,
  .c-header-web-btn__text-sp,
  .c-header-wechat-btn__text-sp {
    font-size: clamp(14px, 3.733vw, 16px);
    text-align: center;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
  }
  .c-header-tel-btn__text-sp {
    color: #4f4f4f;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-tel-btn-sp {
    background: #f6e9dd;
    color: #4f4f4f;
    padding-bottom: 8px;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-line-btn-sp {
    background: #06c755;
    color: #fff;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-web-btn-sp {
    background: #f6544a;
    color: #fff;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-wechat-btn-sp {
    border-radius: 8px;
    border: 1px solid #07C160;
    background: #FFF;
    color: #07C160;
    padding: 15px 0;
  }
  .p-cta-header-sp .p-cta-items-sp li p {
    font-size: clamp(19px, 5.33vw, 21px);
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-tel-btn-sp p {
    font-size: clamp(28px, 8vw, 32px);
    font-weight: 500;
    font-family: "League Spartan";
    padding-top: 5.5px;
    position: relative;
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-tel-btn-sp p::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 49%;
    font-size: clamp(11px, 3.2vw, 12px);
    letter-spacing: -1.2px;
    font-weight: 400;
    font-family: "Zen Kaku Gothic New";
  }
  .p-cta-header-sp .p-cta-items-sp li.c-header-tel-btn-sp p::after {
    content: "";
    position: absolute;
    top: -7px;
    right: 18%;
    font-size: clamp(11px, 3.2vw, 12px);
    letter-spacing: -2.04px;
    font-weight: 400;
    font-family: "Zen Kaku Gothic New";
  }
  .p-cta-header-sp .p-cta-items-sp li p img {
    width: 7.16vw;
    max-width: 26px;
    height: 7.16vw;
    max-height: 26px;
  }
  .c-header-tel-btn__text {
    font-size: clamp(13px, 4.18vw, 15px);
    margin-bottom: clamp(12px, 3.88vw, 14px);
  }
}

/*footer*/
.p-section-cta__wrapper.p-cta-footer {
  margin: 0 auto;
  max-width: 1000px;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
}

.p-footer__cta-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.p-footer__cta-items::before {
  position: absolute;
  content: "";
  width: 406px;
  height: 190px;
  background: url(../images/common/footer-cta-staff_02.png) no-repeat top/cover;
  top: -210px;
  right: -22px;
}
.p-footer__cta-items li {
  width: 33.333%;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}
.p-footer__cta-items li.c-footer-wechat-btn {
  width: calc(33.333% - 2px);
}
.p-footer__cta-items li p {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.c-footer-reserve-btn-item span {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-footer-web-btn__text {
    letter-spacing: -0.56px;
  }
}
.p-footer__cta-item img {
  width: 24px;
  height: 24px;
}
.p-footer__cta-item .c-footer-tel-btn__wrapper img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}
.c-footer-tel-btn {
  background: #f6e9dd;
  padding: 12px 0 8px;
  color: #4f4f4f;
}
.c-footer-line-btn {
  background: #06c755;
  padding: 14px 0;
  color: #fff;
}
.c-footer-web-btn {
  background: #f6544a;
  padding: 14px 0;
  color: #fff;
}
.c-footer-wechat-btn {
  background: #fff;
  padding: 14px 0;
  color: #07C160;
  border: 1px solid #07C160;
}

.p-footer__cta-items li.c-footer-tel-btn p {
  font-size: 28px;
  margin-top: 4px;
  position: relative;
  font-family: "League Spartan";
  align-items: flex-end;
}
.p-footer__cta-items li.c-footer-tel-btn p span.c-footer-tel-number {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-top: 14px;
  margin-right: 7px;
}
.p-footer__cta-items li.c-footer-line-btn p {
  font-size: 20px;
}
.p-footer__cta-items li.c-footer-web-btn p {
  font-size: 20px;
}
.p-footer__cta-items li.c-footer-wechat-btn p {
  font-size: 20px;
}
.p-footer__cta-items li.c-footer-tel-btn p::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 111px;
  font-size: 12px;
  letter-spacing: -1.2px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New";
}
.p-footer__cta-items li.c-footer-tel-btn p::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 13px;
  font-size: 12px;
  letter-spacing: -2.04px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New";
}

@media screen and (max-width: 1000px) {
  .p-section-cta__wrapper.p-cta-footer {
    display: contents;
  }
  .c-footer-tel-btn {
      padding: 13px 0 8px;
  }
  .c-footer-line-btn {
    padding: 15px 0;
  }
  .c-footer-web-btn {
    padding: 15px 0;
  }
   .c-footer-wechat-btn {
    padding: 15px 0;
  }
  .p-footer__cta-items {
    flex-direction: column;
    width: 89%;
    margin: 172px auto 0;
    gap: 12px;
  }
  .p-footer__cta-items li {
    width: 100%;
  }
  .p-footer__cta-items li.c-footer-wechat-btn {
    width: 100%;
  }
  .p-footer__cta-items li.c-footer-tel-btn p span.c-footer-tel-number {
    font-size: 30px;
  }
  .p-footer__cta-items::before {
    width: 309.797px;
    height: 172px;
    top: -172px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-footer__cta-items li.c-footer-tel-btn p::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 49%;
    font-size: clamp(11px, 3.2vw, 12px);
    letter-spacing: -1.2px;
    font-weight: 400;
  }
  .p-footer__cta-items li.c-footer-tel-btn p::after {
    content: "";
    position: absolute;
    top: 1px;
    right: clamp(3.438rem, -6.892rem + 44.07vw, 20.625rem); /* 375→999px・55→340px */
    font-size: clamp(11px, 3.2vw, 12px);
    letter-spacing: -2.04px;
    font-weight: 400;
  }
  .c-footer-tel-btn__text,
  .c-footer-line-btn-item span,
  .c-footer-reserve-btn-item span,
  .c-footer-wechat-item span {
    font-size: 14px;
  }
  .p-footer-nav__inner {
    /* display: contents; */
  }
  .p-footer-nav {
    display: flex;
    flex-direction: column;
  }
  .p-footer-nav__item > a.is-open,
  .p-footer-nav__item > span.is-open {
    border-bottom: none;
  }

  /* SPの並び順 */
  .p-footer-nav .p-footer-nav__items {
    display: contents;
  }
  .p-footer-nav .p-footer-nav__items.u-hidden-sp {
    display: none;
  }
  .p-footer-nav__item.to-top {
    order: 8;
  }
  .p-footer-nav__item.offers {
    order: 4;
  }
}

.p-operation-list-items:not(:has(dt)) .c-nav-operation-list-item-list-items {
  margin-top: 0;
}

@media (max-width: 767px) {
  .p-footer-nav__item > a,
  .p-footer-nav__item > span {
    border-bottom: none;
  }
  .p-footer-nav__item {
    border-bottom: 1px solid #4f4f4f;
  }

  .p-footer-nav__item .c-nav-operation-list-item-list-items {
    margin-top: 0;
    margin-bottom: 6.4vw;
  }
  .p-footer__nav-operation.p-footer__nav-specialty {
    order: 1;
  }
  .p-footer-nav__inner > .p-footer-nav__items.p-footer__nav-first {
    order: 2;
  }
  .p-operation-list-items:not(:has(dt)) .c-nav-operation-list-item-list-items {
    display: contents;
  }
  .c-footer-operation-lists-items:first-of-type
    .p-operation-list-items.only-sp-order {
    display: contents;
  }
  .c-nav-operation-list-item-list-item.order-item {
    order: 1;
  }
  .p-operation-list-items:not(:nth-last-of-type(1)) {
    margin-bottom: 0;
  }
  .c-nav-operation-list-item-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 0;
  }
  .p-footer__nav-operation .p-operation-lists {
    gap: 18px;
  }
  .p-footer .p-nav-operation-list-item:not(:nth-last-of-type(1)) {
    margin-bottom: 0;
  }
  .c-nav-operation-list-item-list-item.mb-6:not(:nth-last-of-type(1)) {
    margin-bottom: 18px;
  }
  .c-nav-operation-list-item-list-item.mb-10 {
    padding-left: 8px;
  }
  .c-nav-operation-list-item-list-item.mb-10:not(:nth-last-of-type(1)) {
    margin-bottom: 20px;
  }
}
