@charset "UTF-8";
/* 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 {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
}

/* 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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-header: calc(var(--zIndex) * 2);
  --zIndex-overlay: calc(var(--zIndex) * 3);
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #116ACC;
  --color-brown: #A88C6C;
  --color-navy: #021F3E;
  --color-red: #D32304;
  --background-white: #fff;
  --background-red-gr: linear-gradient(90deg, #E02200, #B3270E);
  --fontFamily-base: "Zen Kaku Gothic New", sans-serif;
  --fontFamily-din: "din-2014", sans-serif;
  --lineHeight-base: 1.6;
  --fontSize-base: 2.4rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontWeight-black: 900;
  --fontColor-base: #000;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-medium);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
  background-color: #979EAB;
}

a {
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body {
  background-color: var(--background-white);
}
.l-body.noScroll {
  overflow: hidden;
}

/* l-content */
.l-content {
  max-width: 75rem;
  margin: 0 auto;
  background-color: var(--color-white);
  position: relative;
}

/* l-header */
.l-header__logo {
  width: 30rem;
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  margin: auto;
}
.l-header__logo img {
  width: 100%;
}

/* l-footer */
.l-footer {
  color: var(--color-white);
  padding: 8rem 0;
  background-color: var(--color-navy);
}
.l-footer__link {
  display: block;
  color: var(--color-white);
  font-weight: var(--fontWeight-medium);
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: underline;
  text-align: center;
}
.l-footer__copyright {
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  margin-top: 4rem;
}

/* c-btn */
.c-btn {
  width: 100%;
  max-width: 60rem;
  padding: 3rem 2rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  color: #fff;
}
.c-btn::before, .c-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-btn::before {
  background: #fff;
  transform: translate(-50%, -50%) skew(-8deg, 0deg);
}
.c-btn::after {
  background: var(--background-red-gr);
  transform: translate(calc(-50% - 2rem), calc(-50% - 2rem)) skew(-8deg, 0deg);
  transition: transform 0.3s ease-in-out;
}
.c-btn:hover:after {
  transform: translate(-50%, -50%) skew(-8deg, 0deg);
}
.c-btn:hover > span {
  transform: translate(0, 0);
}
.c-btn > span {
  display: block;
  z-index: 1;
  width: 100%;
  text-align: center;
  transform: translate(-2rem, -2rem);
  transition: transform 0.3s ease-in-out;
}
.c-btn__text {
  position: relative;
}
.c-btn__text::after {
  content: "";
  display: block;
  width: 2.7rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transition: transform 0.3s ease-in-out;
}
.c-btn__small {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.7em;
}

/* c-acdn */
@media (prefers-reduced-motion: no-preference) {
  .c-acdn::details-content {
    transition-duration: 200ms;
    transition-property: content-visibility, opacity;
    transition-behavior: allow-discrete;
  }
}
.c-acdn:not([open])::details-content {
  opacity: 0;
}
.c-acdn__trigger {
  position: relative;
  cursor: pointer;
  list-style: none;
}

/* c-scroll-hint */
.c-scroll-hint {
  display: none;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 50%;
  height: auto;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-scroll-hint {
    display: block;
  }
}
.c-scroll-hint:hover {
  opacity: 0;
  visibility: hidden;
}
.c-scroll-hint.is-show {
  opacity: 0;
  visibility: hidden;
}
.c-scroll-hint-icon {
  animation: sway 2s ease-in-out infinite;
}
@keyframes sway {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* p-fv */
.p-fv img {
  width: 100%;
}

/* p-counseling */
.p-counseling {
  color: #fff;
}
.p-counseling img {
  width: 100%;
}
.p-counseling__inner {
  padding: 6rem 5rem 4rem;
  background: url(../images/counseling_bg.webp) no-repeat center top/cover;
}
.p-counseling__hdg {
  text-align: center;
  font-size: 5.4rem;
  font-style: italic;
}
.p-counseling__btns {
  width: 96%;
  margin: 5rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
.p-counseling__btn::after {
  transform: translate(calc(-50% - 1rem), calc(-50% - 1rem)) skew(-8deg, 0deg);
}
.p-counseling__btn > span {
  transform: translate(-1rem, -1rem);
}
.p-counseling__btn .c-btn__text {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 0.2rem solid #fff;
}
.p-counseling__btn .c-btn__text::after {
  width: 2.3rem;
  top: 70%;
}
.p-counseling__btn .c-btn__small {
  font-size: 2.6rem;
}
.p-counseling__btn--tel {
  width: 70%;
  color: #000;
}
.p-counseling__btn--tel::before {
  background: #C7C7C7;
}
.p-counseling__btn--tel::after {
  background: #fff;
}
.p-counseling__btn--tel .c-btn__text {
  padding-left: 1rem;
  text-align: left;
  border-top: 0.2rem solid #000;
}
.p-counseling__btn--tel .c-btn__text::after {
  width: 2rem;
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
}
.p-counseling__btn--cta {
  padding: 3rem 3.5rem;
  font-size: 4.8rem;
}
.p-counseling__text {
  margin-top: 2rem;
  font-size: 2rem;
}
.p-counseling__bottom {
  padding: 6rem 6rem 4rem;
  background: var(--color-navy);
}
.p-counseling__clinic {
  padding-bottom: 8rem;
}

/* p-support */
.p-support img {
  width: 100%;
}
.p-support__intro {
  padding: 4rem 5rem 52rem;
  background: url(../images/support_bg_01.webp) no-repeat center top/cover;
}
.p-support__contents {
  margin-top: -12rem;
  padding: 14rem 0 23rem;
  background: url(../images/support_bg_02.webp) no-repeat center top/cover;
}
.p-support__subhdg {
  text-align: center;
  color: var(--color-navy);
  font-size: 4.2rem;
  font-style: italic;
}
.p-support__subhdg .large {
  font-size: 1.3em;
}
.p-support__text {
  margin-top: 4rem;
  text-align: center;
  font-size: 2.6rem;
}
.p-support__list {
  margin-top: 7rem;
  padding-top: 7rem;
  overflow: hidden;
}
.p-support__item {
  width: 96%;
  position: relative;
  background: #fff;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
.p-support__item + .p-support__item {
  margin-top: 40rem;
}
.p-support__item-num {
  color: #AFAFAF;
  font-size: 8rem;
  font-weight: bold;
  font-style: italic;
  font-family: var(--fontFamily-din);
  text-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -6rem;
  left: 8rem;
  z-index: 2;
}
.p-support__item-img {
  width: 63rem;
  top: -24rem;
  position: absolute;
}
.p-support__item-hdg {
  font-size: 4.5rem;
  color: var(--color-navy);
  font-style: italic;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}
.p-support__item-hdg .middle {
  font-size: 5.5rem;
}
.p-support__item-hdg .large {
  font-size: 8rem;
}
.p-support__item-text {
  margin-top: 4rem;
  font-size: 2.5rem;
}
.p-support__item--01 {
  transform: skewX(-8deg) translateX(-5%);
}
.p-support__item--01 .p-support__item-inner {
  padding: 6rem 22rem 6rem 9rem;
  transform: skewX(8deg);
}
.p-support__item--01 .p-support__item-img {
  width: 28rem;
  top: -6rem;
  right: -5rem;
}
.p-support__item--02 {
  transform: skewX(4deg) translateX(8%);
}
.p-support__item--02 .p-support__item-inner {
  padding: 16rem 8rem 6rem 6rem;
  transform: skewX(-4deg);
}
.p-support__item--02 .p-support__item-img {
  left: -6rem;
}
.p-support__item--02 .p-support__item-num {
  top: 3rem;
  left: 6rem;
}
.p-support__item--03 {
  transform: skewX(-4deg) translateX(-5%);
}
.p-support__item--03 .p-support__item-inner {
  padding: 16rem 8rem 6rem 9rem;
  transform: skewX(4deg);
}
.p-support__item--03 .p-support__item-img {
  right: -7rem;
}
.p-support__item--03 .p-support__item-num {
  top: 3rem;
  left: 9rem;
}
.p-support__item--03 .p-support__item-hdg .middle {
  display: inline-block;
  margin-right: 1rem;
  letter-spacing: -0.4rem;
}

/* p-payment */
.p-payment {
  margin-top: -11rem;
}
.p-payment img {
  width: 100%;
}
.p-payment__inner {
  padding: 20rem 3rem 12rem;
  background: url(../images/payment_bg.webp) no-repeat center top/cover;
}
.p-payment__img {
  margin-bottom: -11rem;
  display: block;
  position: relative;
  z-index: 1;
}
.p-payment__subhdg {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0rem 2rem;
  background: #fff;
  font-size: 3.4rem;
  font-weight: bold;
  color: var(--color-navy);
  transform: skew(-10deg);
}
.p-payment__hdg {
  margin-top: 4rem;
  text-align: center;
  font-size: 7rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.3rem;
  line-height: 1;
}
.p-payment__hdg .middle {
  font-size: 9rem;
}
.p-payment__hdg .large {
  font-size: 12rem;
}
.p-payment__table {
  margin-top: 7rem;
}
.p-payment__message {
  margin-top: 4rem;
  text-align: center;
  font-size: 7rem;
  font-style: italic;
  color: #fff;
}
.p-payment__message .large {
  line-height: 1;
  padding-top: 5rem;
  font-size: 10rem;
}
.p-payment__message .large.font-din {
  margin-top: -1rem;
  display: inline-block;
  font-family: var(--fontFamily-din);
  font-size: 16rem;
}
.p-payment__message-baloon {
  position: relative;
  display: block;
  font-size: 4.6rem;
}
.p-payment__message-baloon .large {
  margin-right: 1rem;
  font-size: 5rem;
}
.p-payment__message-baloon::before {
  display: block;
  content: "";
  background: url(../images/payment_baloon.webp) no-repeat center bottom/contain;
  width: 38rem;
  height: 3rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
}
.p-payment__message-inner {
  position: relative;
  right: -1rem;
}
.p-payment__message-maximum {
  width: 4.5rem;
  padding: 0.2rem 0rem 0.2rem 0.4rem;
  text-align: left;
  position: absolute;
  bottom: 1rem;
  left: -5rem;
  font-size: 3rem;
  color: var(--color-navy);
  background: #fff;
  transform: skewX(-8deg);
  font-size: 3rem;
  line-height: 1.2;
}
.p-payment__bottom {
  margin-top: 7.5rem;
}
.p-payment__text {
  text-align: center;
  color: #fff;
  font-size: 3rem;
}
.p-payment__btn {
  margin-top: 3.5rem;
}

/* p-beforeafter */
.p-beforeafter {
  padding: 11rem 0 25rem;
  background: #fff;
  scroll-margin-top: -10rem;
}
.p-beforeafter img {
  width: 100%;
}
.p-beforeafter__inner {
  padding: 0 4rem;
}
.p-beforeafter__subhdg {
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 4rem;
  background: var(--color-navy);
  transform: skew(-10deg);
}
.p-beforeafter__subhdg .large {
  font-size: 1.2em;
  color: #FFEA65;
}
.p-beforeafter__hdg {
  text-align: center;
  color: var(--color-navy);
  font-size: 8rem;
  font-style: italic;
  line-height: 1.2;
}
.p-beforeafter__hdg .small {
  font-size: 3.6rem;
}
.p-beforeafter__hdg .large {
  font-size: 10rem;
}
.p-beforeafter__baloon {
  width: 30rem;
  margin: 5rem auto 0;
}
.p-beforeafter__tab {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.p-beforeafter__tab input[name=tab_item] {
  display: none;
}
.p-beforeafter__tab input:not(:checked) + .p-beforeafter__tab-item {
  cursor: pointer;
}
.p-beforeafter__tab input:not(:checked) + .p-beforeafter__tab-item:hover {
  transform: translate(1%, 1%);
  box-shadow: none;
}
.p-beforeafter__tab input:checked + .p-beforeafter__tab-item {
  background-color: var(--color-navy);
  color: #fff;
}
.p-beforeafter__tab input:checked + .p-beforeafter__tab-item[for=m-shape] {
  background-image: url(../images/beforeafter_icon_01-on.webp);
}
.p-beforeafter__tab input:checked + .p-beforeafter__tab-item[for=hairline] {
  background-image: url(../images/beforeafter_icon_02-on.webp);
}
.p-beforeafter__tab input:checked + .p-beforeafter__tab-item[for=top-of-head] {
  background-image: url(../images/beforeafter_icon_03-on.webp);
}
.p-beforeafter__tab input:checked + .p-beforeafter__tab-item[for=frontal-region] {
  background-image: url(../images/beforeafter_icon_04-on.webp);
}
.p-beforeafter__tab #m-shape:checked ~ #m-shape_content,
.p-beforeafter__tab #hairline:checked ~ #hairline_content,
.p-beforeafter__tab #top-of-head:checked ~ #top-of-head_content,
.p-beforeafter__tab #frontal-region:checked ~ #frontal-region_content,
.p-beforeafter__tab #ope:checked ~ #ope_content {
  display: block;
}
.p-beforeafter__tab-item {
  width: 33.3333333333%;
  max-width: 20rem;
  display: block;
  float: left;
  text-align: center;
  position: relative;
  padding: 4rem 2rem 4rem 9rem;
  font-size: 2.6rem;
  background: #DBE6F3;
  color: var(--color-navy);
  border-radius: 0.6rem;
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
  transition: 0.2s all ease;
  background-repeat: no-repeat;
  background-size: 7rem;
  background-position: 1.5rem 2.5rem;
}
.p-beforeafter__tab-item[for=m-shape] {
  background-image: url(../images/beforeafter_icon_01.webp);
  background-position: 2rem 2.5rem;
}
.p-beforeafter__tab-item[for=hairline] {
  background-image: url(../images/beforeafter_icon_02.webp);
}
.p-beforeafter__tab-item[for=top-of-head] {
  background-image: url(../images/beforeafter_icon_03.webp);
}
.p-beforeafter__tab-item[for=frontal-region] {
  background-image: url(../images/beforeafter_icon_04.webp);
}
.p-beforeafter__tab-item[for=ope] {
  padding: 4rem 2rem;
}
.p-beforeafter__tab-content {
  display: none;
  clear: both;
  width: 100%;
  padding-top: 12rem;
  overflow: hidden;
}
.p-beforeafter__tab-content#ope_content {
  padding-top: 4rem;
}
.p-beforeafter__detail {
  color: var(--color-navy);
}
.p-beforeafter__detail + .p-beforeafter__detail {
  margin-top: 9rem;
}
.p-beforeafter__detail.no-thumb .p-beforeafter__detail-from {
  margin: -4rem 4rem 0 0;
  text-align: right;
}
.p-beforeafter__detail.no-thumb .p-beforeafter__detail-from .small {
  display: inline-block;
}
.p-beforeafter__detail.no-thumb .p-beforeafter__detail-from .large {
  margin-left: 0;
}
.p-beforeafter__detail.no-thumb .p-beforeafter__detail-img {
  margin: 3rem auto 0;
}
.p-beforeafter__detail-top {
  padding: 5rem 4rem 0;
  position: relative;
  font-style: italic;
  z-index: 2;
}
.p-beforeafter__detail-top::before {
  display: block;
  content: "";
  width: 75rem;
  height: 84%;
  position: absolute;
  left: -7rem;
  top: 0;
  background: #E8ECF0;
  z-index: -1;
  transform: skewX(-10deg);
}
.p-beforeafter__detail-thumb {
  max-width: 42rem;
  position: absolute;
  top: -8rem;
  right: 0;
  z-index: 2;
}
.p-beforeafter__detail-age {
  width: 45%;
  font-size: 3.6rem;
  border-bottom: 0.2rem solid var(--color-navy);
}
.p-beforeafter__detail-from {
  margin-top: 1rem;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
}
.p-beforeafter__detail-from .small {
  display: block;
  font-size: 4rem;
  line-height: 2;
}
.p-beforeafter__detail-from .large {
  display: inline-block;
  margin-left: 5rem;
  font-size: 13rem;
  line-height: 0.6;
}
.p-beforeafter__detail-img {
  display: block;
  width: 95%;
  margin: 5rem auto 0;
  position: relative;
  z-index: 3;
}
.p-beforeafter__detail-box {
  width: 85%;
  margin: 4rem auto 0;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  border: 0.3rem solid var(--color-navy);
  font-size: 3rem;
  line-height: 1;
}
.p-beforeafter__detail-menu {
  line-height: 1.4;
}
.p-beforeafter__detail-stock .large {
  font-size: 8rem;
  font-family: var(--fontFamily-din);
}
.p-beforeafter__detail-costs {
  width: 65%;
  margin: 5rem auto 0;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 0.2rem solid;
}
.p-beforeafter__detail-costs::before {
  display: block;
  content: "+";
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-beforeafter__detail-cost {
  text-align: center;
  font-size: 3.2rem;
}
.p-beforeafter__detail-label {
  width: 21rem;
  text-align: center;
  background: #E8ECF0;
}
.p-beforeafter__detail-label--stock {
  padding-bottom: 0.2rem;
  font-size: 4rem;
  line-height: 1.35;
}
.p-beforeafter__detail-label--stock .unit {
  font-size: 3.2rem;
}
.p-beforeafter__detail-label--basic {
  line-height: 1.95;
}
.p-beforeafter__detail-price {
  font-size: 5rem;
}
.p-beforeafter__detail-price .unit {
  font-size: 3.2rem;
}
.p-beforeafter__detail-totalprice {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: var(--color-red);
  line-height: 1;
}
.p-beforeafter__detail-totalprice .large {
  font-size: 8rem;
  font-family: var(--fontFamily-din);
}
.p-beforeafter__detail-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  font-style: italic;
}
.p-beforeafter__detail-notion {
  width: 65%;
  margin: 2rem auto 0;
  font-size: 2rem;
}
.p-beforeafter__button {
  display: block;
  max-width: 42rem;
  margin: 5rem auto 0;
  padding: 2rem;
  position: relative;
  background: var(--color-navy);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border: 0.3rem solid var(--color-navy);
  transition: 0.2s all ease;
  transform: skewX(-10deg);
}
.p-beforeafter__button:hover {
  color: var(--color-navy);
  background: #fff;
}
.p-beforeafter__button:hover::before {
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
}
.p-beforeafter__button::before {
  content: "";
  display: block;
  width: 2.3rem;
  height: 2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transition: transform 0.3s ease-in-out;
  transform: skewX(10deg) rotate(-90deg);
}
.p-beforeafter__button-inner {
  display: block;
  transform: skewX(10deg);
}
.p-beforeafter__staff {
  margin-top: 15rem;
  padding: 0 5rem;
}
.p-beforeafter__staff-hdg {
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: 4rem;
  border-left: 1rem solid var(--color-navy);
  transform: skewX(-10deg);
}
.p-beforeafter__staff-hdg-inner {
  display: block;
  transform: skewX(10deg);
}
.p-beforeafter__staff-text {
  margin-top: 5rem;
  font-size: 2.8rem;
  font-weight: bold;
}
.p-beforeafter__staff-img {
  display: block;
  margin-top: 3rem;
}
.p-beforeafter__staff-table {
  width: 100%;
  margin-top: 1rem;
  font-size: 2.2rem;
  border-spacing: unset;
}
.p-beforeafter__staff-table th {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
.p-beforeafter__staff-table td {
  font-weight: 400;
}
.p-beforeafter__staff-table th,
.p-beforeafter__staff-table td {
  padding: 1.5rem 1rem 1.5rem 1.5rem;
}
.p-beforeafter__staff-table tr:nth-child(even) th,
.p-beforeafter__staff-table tr:nth-child(even) td {
  background: #F3F4F9;
}

/* p-conclusion */
.p-conclusion {
  margin-top: -12rem;
  padding: 14.5rem 4rem 17rem;
  background: url(../images/conclusion_bg.webp) no-repeat center top/cover;
}
.p-conclusion img {
  width: 100%;
}
.p-conclusion__hdg {
  text-align: center;
  font-size: 6rem;
  color: var(--color-navy);
  transform: skewX(-10deg);
  line-height: 1.7;
}
.p-conclusion__hdg .small {
  font-size: 4rem;
}
.p-conclusion__hdg .large {
  display: inline-block;
  margin-right: 1rem;
  padding: 0 2rem 1rem;
  line-height: 1.2;
  font-size: 10rem;
  background: var(--color-navy);
  color: #fff;
}
.p-conclusion__img {
  display: block;
  margin-top: 4rem;
  padding: 0 1rem;
}
.p-conclusion__inner {
  margin-top: 5rem;
}
.p-conclusion__subhdg {
  text-align: center;
  font-size: 3.6rem;
  color: var(--color-navy);
  transform: skewX(-10deg);
  line-height: 1;
}
.p-conclusion__subhdg .large {
  font-size: 6rem;
  line-height: 1;
}
.p-conclusion__detail {
  position: relative;
  color: var(--color-navy);
}
.p-conclusion__detail + .p-conclusion__detail {
  margin-top: 8rem;
}
.p-conclusion__detail .swiper {
  padding: 5rem 0 10rem;
}
.p-conclusion__detail .swiper-button-prev,
.p-conclusion__detail .swiper-button-next {
  width: 4.5rem;
  top: -10rem;
  bottom: 0;
  margin: auto;
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
  z-index: 111;
}
.p-conclusion__detail .swiper-button-prev {
  left: -1.5rem;
  transform: scale(-1, 1);
}
.p-conclusion__detail .swiper-button-next {
  right: -1.5rem;
}
.p-conclusion__detail .swiper-button-next.swiper-button-disabled,
.p-conclusion__detail .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.p-conclusion__detail .swiper-pagination {
  bottom: 0;
  counter-reset: number 0;
}
.p-conclusion__detail .swiper-pagination-bullet {
  width: 4rem;
  height: 4rem;
  color: var(--color-navy);
  background: #fff;
  font-size: 2rem;
  opacity: 1;
  transition: 0.2s all ease;
}
.p-conclusion__detail .swiper-pagination-bullet::before {
  display: block;
  line-height: 1.9;
  counter-increment: number 1;
  content: counter(number) "";
}
.p-conclusion__detail .swiper-pagination-bullet-active {
  width: 6rem;
  height: 6rem;
  color: #fff;
  background: var(--color-navy);
  font-size: 3rem;
}
.p-conclusion__detail .swiper-pagination-bullet-active::before {
  line-height: 1.8;
}
.p-conclusion__detail .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-conclusion__detail .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.8rem;
}
.p-conclusion__detail-slide {
  margin: 1rem;
  padding: 5.5rem 5rem;
  position: relative;
  background: #fff;
  border-left: 1rem solid var(--color-navy);
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.4);
}
.p-conclusion__detail-top {
  position: absolute;
  top: -6rem;
  left: 3rem;
  font-size: 4rem;
  font-weight: bold;
  color: #6B829B;
  transform: skewX(-10deg);
}
.p-conclusion__detail-top .large {
  display: inline-block;
  margin-left: 1rem;
  font-size: 7rem;
  font-family: var(--fontFamily-din);
}
.p-conclusion__detail-hdg {
  font-size: 5rem;
  line-height: 1.3;
  transform: skewX(-11deg);
}
.p-conclusion__detail-hdg .large {
  font-size: 6rem;
}
.p-conclusion__detail-hdg .small {
  font-size: 4.5rem;
  text-shadow: none;
}
.p-conclusion__detail-text {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 2.5rem;
}
.p-conclusion__detail-inner {
  margin-top: 4.5rem;
}
.p-conclusion__detail-point {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.5rem 2rem 1.2rem;
  font-size: 3rem;
  font-weight: bold;
  background: var(--color-navy);
  color: #fff;
  line-height: 1;
  transform: skewX(-10deg);
}
.p-conclusion__detail-subhdg {
  height: 15.6rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 4rem;
  transform: skewX(-10deg);
  line-height: 1.3;
}
.p-conclusion__detail-img {
  display: block;
  margin-top: 2rem;
}
.p-conclusion__detail-caption {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.p-conclusion__detail-item {
  width: 50%;
  height: 29rem;
  padding: 2rem;
  font-size: 2.4rem;
  line-height: 1.5;
}
.p-conclusion__detail-item--left {
  background: #E9EBEE;
  color: #556577;
}
.p-conclusion__detail-item--right {
  background: #E7F3FF;
}
.p-conclusion__detail-label {
  margin-top: 2rem;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  border: 0.2rem solid var(--color-navy);
  transform: skewX(-10deg);
}
.p-conclusion__detail-notion {
  margin: 3rem auto -1rem;
  text-align: center;
  font-size: 2.4rem;
}
.p-conclusion__message {
  margin-top: 9.5rem;
  text-align: center;
  color: var(--color-navy);
  font-weight: bold;
  font-style: italic;
  font-size: 4.6rem;
  line-height: 2;
}
.p-conclusion__message-box {
  display: inline-block;
  padding: 1rem 2rem 1.5rem;
  position: relative;
  background: var(--color-navy);
  color: #fff;
  font-size: 7.8rem;
  font-style: normal;
  line-height: 1;
  transform: skewX(-10deg);
}
.p-conclusion__message-box:first-child::before {
  display: block;
  content: "×";
  height: -moz-fit-content;
  height: fit-content;
  font-size: 4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4rem;
  margin: auto;
  color: var(--color-navy);
  transform: skewX(10deg);
}
.p-conclusion__message-box + .p-conclusion__message-box {
  margin-left: 5rem;
}
.p-conclusion__message .u-txt-underline {
  font-size: 5.2rem;
  font-weight: bold;
  text-shadow: 0.1rem 0.1rem 0 var(--color-navy);
}

/* p-price */
.p-price {
  margin-top: -11rem;
  padding: 17.5rem 6rem 12rem;
  background: url(../images/price_bg.webp) no-repeat center top/cover;
}
.p-price img {
  width: 100%;
}
.p-price__hdg {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 3rem;
  margin: auto;
  font-size: 7rem;
  line-height: 1;
  color: var(--color-navy);
  background: #fff;
  transform: skewX(-10deg);
}
.p-price__box {
  margin-top: 7rem;
}
.p-price__box + .p-price__box {
  margin-top: 11.5rem;
}
.p-price__intro {
  text-align: center;
  font-size: 3.4rem;
  font-style: italic;
  color: #fff;
}
.p-price__intro .u-txt-yellow {
  display: block;
  padding-bottom: 2.2rem;
  font-style: normal;
  font-size: 3rem;
  line-height: 1;
}
.p-price__plan {
  margin-top: 1rem;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 5.4rem;
  line-height: 1.4;
  color: #fff;
  border: 0.2rem solid #fff;
  transform: skewX(-10deg);
}
.p-price__overview {
  margin-top: 5.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-price__overview::before {
  display: block;
  content: "+";
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3.2rem;
  position: absolute;
  top: 0.6rem;
  left: -7rem;
  right: 0;
  margin: auto;
  color: #fff;
}
.p-price__overview-item {
  width: 32rem;
}
.p-price__overview-item:first-child {
  width: 25rem;
}
.p-price__overview-hdg {
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 3.4rem;
  background: #fff;
  color: var(--color-navy);
}
.p-price__overview-cost {
  margin-top: 2rem;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.p-price__overview-cost .large {
  font-size: 8rem;
  font-family: var(--fontFamily-din);
}
.p-price__overview-cost .small {
  font-size: 2.6rem;
}
.p-price__example {
  margin-top: 5rem;
  padding: 3rem 5.4rem 6rem;
  background: #E9F2FF;
}
.p-price__example-hdg {
  text-align: center;
  color: var(--color-navy);
  font-size: 4rem;
}
.p-price__example-inner {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-price__example-inner::before {
  display: block;
  content: "+";
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3rem;
  position: absolute;
  top: 10rem;
  left: -2rem;
  right: 0;
  margin: auto;
  color: var(--color-navy);
}
.p-price__example-item {
  width: 43%;
}
.p-price__example-item:last-child {
  width: 47%;
}
.p-price__example-item:last-child .p-price__example-costs {
  padding: 2.4rem 2.6rem;
}
.p-price__example-subhdg {
  text-align: center;
  font-size: 2.2rem;
}
.p-price__example-costs {
  margin-top: 1rem;
  padding: 5.4rem 2rem;
  background: #fff;
}
.p-price__example-stock {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-bottom: 0.2rem solid var(--color-navy);
  font-size: 2.2rem;
  line-height: 1;
}
.p-price__example-stock::before {
  display: block;
  content: "+";
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2rem;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  color: var(--color-navy);
}
.p-price__example-stock .large {
  font-size: 3.8rem;
  font-family: var(--fontFamily-din);
}
.p-price__example-total_cost {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1;
}
.p-price__example-total_cost .large {
  font-size: 4.6rem;
  font-family: var(--fontFamily-din);
}
.p-price__example-all_total_cost {
  margin-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  position: relative;
  font-size: 5rem;
  line-height: 1;
  border-bottom: 0.3rem solid var(--color-navy);
}
.p-price__example-all_total_cost .large {
  margin: 0 1rem;
  font-family: var(--fontFamily-din);
  font-size: 10rem;
  color: var(--color-red);
  text-shadow: 0.1rem 0.1rem 0 var(--color-red);
}
.p-price__example-all_total_cost .tax {
  position: absolute;
  top: 1.8rem;
  right: 2.2rem;
  font-size: 2rem;
}
.p-price__example-notion {
  margin-top: 2rem;
  font-size: 2.2rem;
}
.p-price__option {
  margin-top: 13rem;
}
.p-price__option-hdg {
  padding-bottom: 4rem;
  text-align: center;
  font-size: 5rem;
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  background: url(../images/price_baloon.webp) no-repeat center bottom/contain;
}
.p-price__option-inner {
  margin-top: 4rem;
}
.p-price__option-subhdg {
  text-align: center;
  font-size: 2.6rem;
  color: #fff;
}
.p-price__option-list {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.p-price__option-item {
  width: calc(33.3333333333% - 1rem);
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 0.5rem;
}
.p-price__option-img img {
  max-height: 12rem;
  width: auto;
  margin: auto;
}
.p-price__option-text {
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
  color: var(--color-navy);
}
.p-price__option-notion {
  margin-top: 1rem;
  padding-left: 11rem;
  font-size: 1.8rem;
  color: #fff;
}
.p-price__text {
  margin-top: 10rem;
  text-align: center;
  font-size: 3rem;
  color: #fff;
}
.p-price__btn {
  margin-top: 4rem;
}
.p-price__system {
  width: 82%;
  margin: 13rem auto 0;
  padding: 4rem 3rem 7rem;
  color: #fff;
  border: 0.2rem solid #fff;
}
.p-price__system-img {
  display: block;
  width: 10rem;
  margin: auto;
}
.p-price__system-hdg {
  text-align: center;
  font-size: 5rem;
}
.p-price__system-text {
  margin-top: 3rem;
  font-size: 2.8rem;
  line-height: 1.8;
  white-space: nowrap;
}
.p-price__system-text .u-txt-yellow {
  margin: 0 0.5rem;
  font-size: 3.6rem;
}
.p-price__system-notion {
  margin-top: 3rem;
  padding-left: 1rem;
  font-size: 1.8rem;
}

/* p-ladies-hair */
.p-ladies-hair {
  padding: 8rem 0 0;
  background: url("../images/ladies-hair_bg_01.webp") no-repeat top right/45rem;
  overflow: hidden;
}
.p-ladies-hair img {
  width: 100%;
}
.p-ladies-hair__hdg {
  width: 86%;
  margin: auto;
  padding-left: 2rem;
  font-size: 4rem;
  color: var(--color-navy);
  border-left: 1rem solid var(--color-navy);
  transform: skewX(-8deg);
  line-height: 1.3;
}
.p-ladies-hair__hdg .large {
  font-size: 6rem;
}
.p-ladies-hair__inner {
  margin-top: 7rem;
}
.p-ladies-hair__acdn-about[open] .p-ladies-hair__trigger-about {
  background: #fff;
  color: var(--color-navy);
}
.p-ladies-hair__acdn-about[open] .p-ladies-hair__trigger-about::before {
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
  transform: translate(0, -50%) skewX(10deg) rotate(-90deg);
}
.p-ladies-hair__acdn-faq {
  position: relative;
  background: #fff;
}
.p-ladies-hair__acdn-faq::before {
  display: block;
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 0;
  background: #EDEDED;
}
.p-ladies-hair__acdn-faq[open] .p-ladies-hair__trigger-faq::before {
  transform: rotate(0);
  opacity: 0;
}
.p-ladies-hair__acdn-faq + .p-ladies-hair__acdn-faq {
  margin-top: 4rem;
}
.p-ladies-hair__trigger-about {
  max-width: 53%;
  margin: 0 auto 7rem;
  padding: 2rem 4rem;
  border: 0.3rem solid var(--color-navy);
  background: var(--color-navy);
  color: #fff;
  font-size: 2.4rem;
  transform: skewX(-10deg);
  transition: 0.2s all ease;
}
.p-ladies-hair__trigger-about > span {
  display: block;
  transform: skewX(10deg);
}
.p-ladies-hair__trigger-about::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translate(0, -50%) skewX(10deg) rotate(90deg);
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transition: 0.2s all ease;
}
.p-ladies-hair__trigger-about:hover {
  background: #fff;
  color: var(--color-navy);
}
.p-ladies-hair__trigger-about:hover::before {
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
}
.p-ladies-hair__trigger-faq {
  padding: 2rem 0 2rem 2rem;
}
.p-ladies-hair__trigger-faq + .p-ladies-hair__acdn-faq {
  margin-top: 4rem;
}
.p-ladies-hair__trigger-faq::before, .p-ladies-hair__trigger-faq::after {
  display: inline-block;
  content: "";
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  top: 4.8rem;
  right: 3.5rem;
  margin: auto;
  background: #000;
}
.p-ladies-hair__trigger-faq::before {
  transform: rotate(90deg);
  transition: 0.3s;
}
.p-ladies-hair__contents {
  font-size: 2.6rem;
}
.p-ladies-hair__contents-inner {
  padding: 0 5rem 4rem;
}
.p-ladies-hair__box {
  margin-top: 3rem;
  padding: 3rem 6rem;
  background: #E3F2F9;
}
.p-ladies-hair__box-inner {
  width: 100%;
}
.p-ladies-hair__box-inner + .p-ladies-hair__box-inner {
  margin-top: 2rem;
  padding: 0 2.8rem;
}
.p-ladies-hair__box-text {
  text-align: center;
}
.p-ladies-hair__box-hdg {
  font-size: 2.8rem;
  border-bottom: 0.2rem solid var(--color-navy);
}
.p-ladies-hair__box-img {
  display: block;
  margin-top: 1rem;
}
.p-ladies-hair__box-list {
  margin-top: 1rem;
  font-size: 2.4rem;
}
.p-ladies-hair__box-item {
  padding-left: 1em;
  text-indent: -1em;
}
.p-ladies-hair__box-item::before {
  content: "■";
  color: var(--color-navy);
  font-size: 1.4rem;
  margin-right: 1rem;
}
.p-ladies-hair__box-item + .p-ladies-hair__box-item {
  margin-top: 0.5rem;
}
.p-ladies-hair__case {
  margin-top: 10rem;
  color: var(--color-navy);
}
.p-ladies-hair__case-hdg {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem 3rem;
  text-align: center;
  position: relative;
  font-size: 4rem;
  color: #fff;
  background: var(--color-navy);
  transform: translateY(3rem) skewX(-10deg);
  line-height: 1;
  z-index: 3;
}
.p-ladies-hair__case-top {
  padding-top: 6rem;
  position: relative;
  z-index: 2;
}
.p-ladies-hair__case-top::before {
  display: block;
  content: "";
  width: 75rem;
  height: 84%;
  position: absolute;
  left: -14rem;
  top: 0;
  background: #E8ECF0;
  z-index: -1;
  transform: skewX(-10deg);
}
.p-ladies-hair__case-thumb {
  max-width: 42rem;
  position: absolute;
  top: -8rem;
  right: -5rem;
  z-index: 2;
}
.p-ladies-hair__case-age {
  width: 45%;
  font-size: 3.6rem;
  border-bottom: 0.2rem solid var(--color-navy);
  font-style: italic;
}
.p-ladies-hair__case-from {
  margin-top: 1rem;
  font-size: 6rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}
.p-ladies-hair__case-from .small {
  display: block;
  font-size: 4rem;
  line-height: 2;
}
.p-ladies-hair__case-from .large {
  display: inline-block;
  margin-left: 5rem;
  font-size: 13rem;
  line-height: 0.6;
}
.p-ladies-hair__case-img {
  display: block;
  width: 95%;
  margin: 5rem auto 0;
  position: relative;
  z-index: 3;
}
.p-ladies-hair__case-notion {
  width: 96%;
  margin: 2rem auto 0;
  font-size: 1.8rem;
}
.p-ladies-hair__faq {
  padding: 13rem 0 10rem;
  background: url("../images/ladies-hair_bg_02.webp") no-repeat top center/cover;
}
.p-ladies-hair__faq-hdg {
  padding: 0 6rem;
  font-size: 6rem;
  font-style: italic;
  color: #fff;
}
.p-ladies-hair__faq-subhdg {
  display: block;
  font-size: 0.45em;
}
.p-ladies-hair__faq-list {
  margin-top: 4rem;
  padding: 0 6rem;
}
.p-ladies-hair__faq-label {
  font-size: 5rem;
  font-family: var(--fontFamily-din);
  color: #ADADAD;
  line-height: 1.1;
}
.p-ladies-hair__faq-inner {
  padding-right: 10rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  font-size: 3rem;
}
.p-ladies-hair__faq--answer {
  padding: 4rem 5rem;
  font-size: 2.4rem;
  border-top: 0.4rem solid var(--color-navy);
}
.p-ladies-hair__message {
  margin-top: 6rem;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-style: italic;
}
.p-ladies-hair__message .large {
  display: block;
  margin-top: 2rem;
  font-size: 3.6rem;
}
.p-ladies-hair__cta {
  margin-top: 5rem;
  padding: 0 4rem;
  text-align: center;
  font-family: var(--fontFamily-serif);
}
.p-ladies-hair__cta-text {
  color: #fff;
  font-size: 3rem;
}
.p-ladies-hair__cta-btn {
  margin-top: 4rem;
}

/* p-faq */
.p-faq {
  margin-top: -12rem;
  padding: 15rem 6rem 0;
  background: url(../images/faq_bg.webp) no-repeat center top/cover;
}
.p-faq__hdg {
  font-size: 6rem;
  font-style: italic;
  color: #fff;
}
.p-faq__lead {
  margin-top: 1rem;
  font-size: 2.6rem;
  font-style: italic;
  color: #fff;
}
.p-faq__inner {
  margin-top: 5.5rem;
}
.p-faq__inner + .p-faq__inner {
  margin-top: 7.5rem;
}
.p-faq__subhdg {
  padding: 1rem 0 1rem 2rem;
  font-size: 3rem;
  transform: skewX(-10deg);
  color: #fff;
  border-left: 1rem solid #fff;
}
.p-faq__acdn {
  margin-top: 3.5rem;
  position: relative;
  color: #000;
  background: #fff;
  overflow: hidden;
}
.p-faq__acdn::before {
  display: block;
  content: "";
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 0;
  background: #EDEDED;
}
.p-faq__acdn[open] .p-faq__acdn-trigger::before {
  transform: rotate(0);
  opacity: 0;
}
.p-faq__acdn-trigger {
  padding: 2.5rem 9rem 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 3rem;
}
.p-faq__acdn-trigger::before, .p-faq__acdn-trigger::after {
  display: inline-block;
  content: "";
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  top: 4.8rem;
  right: 3.7rem;
  margin: auto;
  background: #000;
}
.p-faq__acdn-trigger::before {
  transform: rotate(90deg);
  transition: 0.3s;
}
.p-faq__acdn-label {
  font-size: 5rem;
  font-family: var(--fontFamily-din);
  color: #ADADAD;
  line-height: 1;
}
.p-faq__acdn-contents {
  padding: 4rem 5rem;
  font-size: 2.6rem;
  position: relative;
  background: #fff;
  border-top: 0.4rem solid var(--color-navy);
  z-index: 2;
}

/* p-doctor */
.p-doctor {
  padding: 10rem 6rem 23rem;
  background: linear-gradient(180deg, #EDF0F9, #C7CAD3);
}
.p-doctor img {
  width: 100%;
}
.p-doctor__hdg {
  text-align: center;
  font-size: 7rem;
  font-style: italic;
  color: var(--color-navy);
}
.p-doctor__inner {
  padding: 0 5rem;
}
.p-doctor__intro {
  margin-top: 3.8rem;
}
.p-doctor__text {
  font-size: 2.6rem;
}
.p-doctor__text + .p-doctor__text {
  margin-top: 3rem;
}
.p-doctor__message {
  margin-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  color: var(--color-blue);
}
.p-doctor__list {
  margin-top: 12rem;
}
.p-doctor__item {
  padding: 3rem 4rem 5rem;
  position: relative;
  color: var(--color-navy);
  background: #fff;
  border-left: 1rem solid var(--color-navy);
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.4);
}
.p-doctor__item + .p-doctor__item {
  margin-top: 8rem;
}
.p-doctor__img {
  width: 28rem;
  position: absolute;
  top: -4rem;
  right: 2rem;
}
.p-doctor__profile {
  width: 45%;
  font-weight: bold;
  font-style: italic;
}
.p-doctor__official {
  font-size: 1.8rem;
}
.p-doctor__name {
  font-size: 5rem;
  line-height: 1.2;
}
.p-doctor__expert {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.2rem solid var(--color-navy);
  text-align: right;
  font-size: 2.6rem;
}
.p-doctor__acdn[open] .p-doctor__acdn-trigger {
  background: var(--color-navy);
  color: #fff;
}
.p-doctor__acdn[open] .p-doctor__acdn-trigger::before {
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transform: translate(0, -50%) skewX(10deg) rotate(-90deg);
}
.p-doctor__acdn-trigger {
  width: 42rem;
  margin: 4rem auto 0;
  padding: 2rem 4rem;
  position: relative;
  color: var(--color-navy);
  background: #fff;
  border: 0.2rem solid var(--color-navy);
  font-size: 2.4rem;
  cursor: pointer;
  list-style: none;
  transform: skewX(-10deg);
  transition: 0.2s all ease;
}
.p-doctor__acdn-trigger::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translate(0, -50%) skewX(10deg) rotate(90deg);
  background: url(/assets/images/common/icon_arrow.png) no-repeat center center/contain;
  transition: 0.2s all ease;
}
.p-doctor__acdn-trigger > span {
  display: block;
  transform: skewX(10deg);
}
.p-doctor__acdn-trigger:hover {
  background: var(--color-navy);
  color: #fff;
}
.p-doctor__acdn-trigger:hover::before {
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
}
.p-doctor__acdn-contents {
  width: 100%;
  margin: 5rem auto 0;
  font-size: 2.4rem;
}
.p-doctor__acdn-contents + .p-doctor__acdn-contents {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 0.2rem solid var(--color-navy);
}
.p-doctor__acdn-table th,
.p-doctor__acdn-table td {
  text-align: left;
  font-size: 2.4rem;
  vertical-align: top;
}
.p-doctor__acdn-table th {
  width: 22%;
}
.p-doctor__acdn-text--small {
  font-size: 0.8em;
}

/* p-flow */
.p-flow {
  padding: 18rem 6rem 10rem;
  background: url(../images/flow_bg.webp) no-repeat center bottom/cover;
  position: relative;
}
.p-flow img {
  width: 100%;
}
.p-flow__hdg {
  font-size: 6rem;
  color: #fff;
  line-height: 1.3;
}
.p-flow__swiper {
  max-width: 67rem;
  margin: 4rem auto 0;
  position: relative;
  color: var(--color-navy);
}
.p-flow .swiper-button-prev-flow,
.p-flow .swiper-button-next-flow {
  width: 4.5rem;
  height: 4rem;
  top: 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  background: url(../images/icon_arrow_gray.webp) no-repeat center center/contain;
  z-index: 111;
  cursor: pointer;
}
.p-flow .swiper-button-prev-flow {
  left: -2rem;
  transform: scale(-1, 1);
}
.p-flow .swiper-button-next-flow {
  right: -2rem;
}
.p-flow .swiper-button-next-flow.swiper-button-disabled,
.p-flow .swiper-button-prev-flow.swiper-button-disabled {
  display: none;
}
.p-flow__inner {
  margin-top: 3rem;
  padding: 5rem;
  background: #fff;
  border-left: 1rem solid #C4CDDF;
}
.p-flow__step {
  position: absolute;
  top: -3rem;
  left: 5rem;
  font-size: 7rem;
  font-family: var(--fontFamily-din);
  font-weight: bold;
  font-style: italic;
  color: #C4CDDF;
}
.p-flow__subhdg {
  font-size: 4rem;
  font-style: italic;
}
.p-flow__img {
  margin-top: 2rem;
  display: block;
}
.p-flow__text {
  margin-top: 2rem;
}
.p-flow__page {
  display: block;
  text-align: right;
  margin-top: 2rem;
  font-size: 3.4rem;
  font-style: italic;
  font-family: var(--fontFamily-din);
  font-weight: bold;
}
.p-flow__page-total {
  color: #C4CDDF;
  font-size: 2.8rem;
}

.clinicAcd__stateName {
  position: relative;
  text-align: left;
  font-size: 3.8rem;
  line-height: 3.4em;
  color: #fff;
  border-bottom: 0.5rem solid #fff;
  background: var(--color-navy);
  cursor: pointer;
  padding-left: 6rem;
}
.clinicAcd__stateName.ladies {
  background: #155091;
}
.clinicAcd__stateName::before, .clinicAcd__stateName::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5rem;
  margin: auto;
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.085em;
  background: #fff;
}
.clinicAcd__stateName::before {
  transform: rotate(90deg) translate(-5%, 240%);
  transition: 0.3s;
}
.clinicAcd__stateName::after {
  transform: translate(-0.23em, -50%);
}
.clinicAcd__stateName.active::before {
  transform: rotate(0) translate(-28%, 0);
  opacity: 0;
}
.clinicAcd__clinicContainer {
  height: 0;
  overflow: hidden;
  transition: 0.25s;
}
.clinicAcd__clinicList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5%;
  padding: 3rem 6rem;
}
.clinicAcd__clinicListItem {
  flex-shrink: 0;
  width: calc(50% - 1rem);
}
.clinicAcd__clinicListItem.kokura .clinicAcd__clinicListName.active {
  margin-bottom: 15.5%;
}
.clinicAcd__clinicListName {
  margin-bottom: 5.5%;
  padding-block: 8%;
  width: 100%;
  text-align: center;
  font-size: 4rem;
  color: #fff;
  background: #58708A;
  transition: 0.2s;
  cursor: pointer;
  font-weight: bold;
  border: 0.3rem solid #58708A;
}
.clinicAcd__clinicListName small {
  display: block;
  font-size: 0.6em;
  line-height: 1;
}
.clinicAcd__clinicListName.active {
  color: var(--color-navy);
  background: #fff;
  border: 0.3rem solid var(--color-navy);
}
.clinicAcd__clinicList .clinicAcd__clinicListItem:nth-child(2n) .clinicAcd__clinicInfo {
  transform: translateX(-51.4%);
}
.clinicAcd__clinicInfo {
  width: clamp(0px, 89.6vw, 63.2rem);
  height: 0;
  overflow-y: hidden;
  margin-bottom: 1.8rem;
}
.clinicAcd__clinicInfoInner {
  margin-bottom: 6%;
  padding: 3rem 0 6rem;
  color: var(--color-navy);
  background: #fff;
  border: 0.3rem solid var(--color-navy);
  border-top: unset;
}
.clinicAcd__clinicInfoLabel {
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  gap: 2rem;
}
.clinicAcd__clinicInfoLabel.no01 {
  margin-top: 4%;
}
.clinicAcd__clinicInfoLabel:nth-child(even) {
  background: #F3F4F9;
}
.clinicAcd__clinicInfoSummay {
  flex-shrink: 0;
  display: grid;
  place-items: flex-start;
  width: 21.9%;
  min-height: 2.8em;
  text-align: left;
  font-size: clamp(0px, 3.47vw, 2.6rem);
  padding: 1.5rem 0;
}
.clinicAcd__clinicInfoDetail {
  font-size: clamp(0px, 3.47vw, 2.6rem);
  padding: 1.5rem 0;
}
.clinicAcd__clinicInfoCv {
  position: relative;
  display: block;
  margin: 4.5rem auto 6rem;
  padding: 2rem 3.6rem;
  width: 100%;
  max-width: 42rem;
  z-index: 1;
  font-size: 3rem;
  color: #fff;
  background: var(--background-red-gr);
  border: 0.3rem solid var(--background-red-gr);
  transform: skewX(-10deg);
}
.clinicAcd__clinicInfoCv > span {
  display: block;
  transform: skewX(10deg);
}
.clinicAcd__clinicInfoCv::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%) skewX(10deg);
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transition: transform 0.3s ease-in-out;
}
.clinicAcd__clinicInfoNotice {
  text-align: center;
  display: block;
  margin-top: -10px;
  margin-bottom: clamp(0px, 4vw, 30px);
  font-size: clamp(0px, 2.66vw, 2rem);
}
.clinicAcd__clinicInfoMap {
  aspect-ratio: 2/1;
}
.clinicAcd__clinicInfoMap-wrapper {
  padding: 0 5rem;
}
.clinicAcd__clinicName {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  border-left: 0.3rem solid var(--color-navy);
  border-right: 0.3rem solid var(--color-navy);
}
.clinicAcd__clinicBrandName {
  margin-top: 3rem;
  color: var(--color-navy);
}
.clinicAcd__addInfo {
  padding: 0.4rem 0;
  background: var(--color-navy);
  color: #fff;
}
.clinicAcd__clinicPlaceName {
  display: block;
  font-size: 4rem;
  line-height: 1.3;
}
.clinicAcd__clinicNotice {
  padding: 3rem 3rem 0;
  color: var(--color-navy);
  border-left: 0.3rem solid var(--color-navy);
  border-right: 0.3rem solid var(--color-navy);
}
.clinicAcd__clinicNoticeInner {
  padding: 2.5rem 4rem 3rem;
  background: #F3F4F9;
}
.clinicAcd__clinicNoticeTop {
  text-align: center;
  font-size: 2.6rem;
}
.clinicAcd__clinicNoticeDetail {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 2.6rem;
  text-align: left;
  border-top: 0.2rem solid var(--color-navy);
}
.clinicAcd__doctorInfo {
  padding-inline: 3.3%;
}
.clinicAcd__doctorName {
  display: flex;
  align-items: end;
  margin-bottom: 2.3em;
}
.clinicAcd__doctorName span {
  flex-shrink: 0;
  margin-right: 1.7em;
  font-size: clamp(0px, 3.47vw, 2.6rem);
  line-height: 2.2em;
}
.clinicAcd__doctorName img {
  flex-shrink: 0;
  width: 50%;
  pointer-events: none;
}
.clinicAcd__doctorHistory dl {
  display: flex;
  gap: 0.5em;
  font-weight: 300;
  font-size: clamp(0px, 3.47vw, 2.6rem);
  color: #000;
}
.clinicAcd__doctorHistory dt {
  white-space: nowrap;
}
.clinicAcd__doctorHistory dd {
  letter-spacing: 0.02em;
}

/* p-clinic */
.p-clinic {
  padding: 10rem 0 0;
}
.p-clinic__hdg {
  text-align: center;
  font-size: 4.8rem;
  font-style: italic;
}
.p-clinic__message {
  margin: 0 auto;
  padding: 19rem 4rem 3rem;
  text-align: center;
  color: var(--color-navy);
  font-weight: bold;
  background: url(../images/clinic_message_bg.webp) no-repeat center bottom/75rem;
}
.p-clinic__message-label {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.8rem 2rem 1.4rem;
  font-size: 3.6rem;
  color: #fff;
  background: var(--color-navy);
  transform: skewX(-10deg);
  line-height: 1;
  letter-spacing: 0.1rem;
}
.p-clinic__message-label .large {
  margin: 0 0.6rem;
  font-size: 5rem;
}
.p-clinic__message-inner {
  margin-top: 1rem;
  font-size: 4.8rem;
  font-style: italic;
}
.p-clinic__message-inner .large {
  font-size: 6.4rem;
  text-shadow: 0.1rem 0.1rem 0px var(--color-navy);
}
.p-clinic__message-notion {
  margin-top: 3rem;
  text-align: left;
  font-size: 1.9rem;
}

.p-clinic__clinic-wrap {
  max-width: 67rem;
  margin: 0 auto;
}

.p-clinic__clinic-wrap + .p-clinic__clinic-wrap {
  margin-top: 6rem;
}

.p-clinic__clinic-wrap:last-of-type {
  margin-bottom: 10rem;
}

.p-clinic__clinic-img {
  position: relative;
  z-index: 1;
}

.p-clinic__clinic-inner {
  margin: -3% auto 0;
  background: #fff;
  padding: 4rem 4rem 0;
  position: relative;
}

.p-clinic__ttl1 {
  max-width: 50rem;
  margin: 0 auto 5rem;
}

.p-clinic__clinic-inner.is-open .clinicAcd__clinicInfoLabel.noBorder {
  border-bottom: 1px solid #d3c5b5 !important;
}

.p-clinic__info {
  max-width: 62rem;
  margin: 0 auto;
}

.p-clinic__link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1rem 0 5rem;
  max-width: 67rem;
  place-content: center;
}

.p-clinic__mapArea {
  max-width: 20rem;
}

.p-clinic__link {
  max-width: 37rem;
  margin: 0 auto;
}
.p-clinic__link a {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-clinic__link a img {
  width: auto;
  display: block;
}

.p-clinic {
  background: url(../images/clinic_bg.webp) no-repeat right top/43rem;
}
.p-clinic__info {
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-clinic__info + .p-clinic__info {
  margin-top: 10rem;
}
.p-clinic__info-acdn {
  flex-shrink: 0;
  width: calc(50% - 1rem);
}
.p-clinic__info-acdn .c-acdn[open] .p-clinic__info-trigger {
  color: var(--color-navy);
  background: #fff;
  border: 0.3rem solid var(--color-navy);
}
.p-clinic__info-acdn:nth-of-type(2n) .p-clinic__info-inner {
  transform: translateX(-50%);
}
.p-clinic__info-trigger {
  margin-bottom: 5.5%;
  padding-block: 8%;
  width: 100%;
  text-align: center;
  font-size: 4rem;
  color: #fff;
  background: #58708A;
  transition: 0.2s;
  cursor: pointer;
  font-weight: bold;
  border: 0.3rem solid #58708A;
}
.p-clinic__info-trigger .stretch {
  display: block;
  line-height: 1;
}
.p-clinic__info-trigger .small {
  display: block;
  font-size: 0.6em;
}
.p-clinic__info-inner {
  width: clamp(0px, 89.6vw, 63.2rem);
}
.p-clinic__info-hdg {
  padding-bottom: 5rem;
  text-align: center;
  font-size: 4.6rem;
  font-style: italic;
}
.p-clinic__info-hdg > span {
  display: block;
  margin-top: 1rem;
  font-size: 0.6em;
}
.p-clinic__info-subhdg {
  margin-top: 5rem;
  padding: 0.5rem 0 0.5rem 1rem;
  color: var(--color-navy);
  border-left: 1rem solid var(--color-navy);
  font-size: 3.6rem;
  transform: skewX(-10deg);
}
.p-clinic__info-subhdg > span {
  display: block;
  transform: skewX(10deg);
}
.p-clinic__info-subhdg .small {
  font-size: 0.7em;
}
.p-clinic__info .clinicAcd__clinicInfoInner {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-clinic__info-link {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.p-clinic__info-link .clinicAcd__clinicInfoCv {
  margin: 0;
}
.p-clinic__info-link--map {
  padding: 2rem 3.5rem;
  text-align: center;
  color: var(--color-navy);
  background: #fff;
  transform: skewX(-10deg);
  border: 0.3rem solid var(--color-navy);
  transition: 0.2s all ease;
}
.p-clinic__info-link--map > span {
  transform: skewX(10deg);
}
.p-clinic__info-link--map:hover {
  color: #fff;
  background: var(--color-navy);
}
.p-clinic__ladies {
  margin: 5.5rem auto;
}
.p-clinic__ladies--btn {
  width: 100%;
  max-width: 42rem;
  margin: auto;
  padding: 2rem 3.6rem;
  position: relative;
  display: block;
  font-size: 2.4rem;
  color: #fff;
  background: #E04677;
  transform: skewX(-10deg);
  cursor: pointer;
  transition: 0.2s all ease;
}
.p-clinic__ladies--btn::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translate(0, -50%) skewX(10deg) rotate(90deg);
  background: url(/assets/images/common/icon_arrow2.png) no-repeat center center/contain;
  transition: 0.2s all ease;
}
.p-clinic__ladies--btn > span {
  display: block;
  transform: skewX(10deg);
}
.p-clinic__ladies--btn.active::before {
  transform: translate(0, -50%) skewX(10deg) rotate(-90deg);
}

#lady_clinic {
  height: 0;
  overflow: hidden;
  transition: 0.25s;
}

.clinicAcd__accordionContent {
  display: none;
}

.clinicAcd__accordionBtn {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 1.5rem 0 6rem;
  outline: none;
  display: inline-block;
}

.clinicAcd__accordionBtn.active {
  margin-top: 0;
}

.clinicAcd__accordionBtn img.is-open {
  display: none;
}

.clinicAcd__accordionBtn.active img.is-close {
  display: none;
}

.clinicAcd__accordionBtn.active img.is-open {
  display: inline;
}

.p-clinic__camino-link {
  display: block;
  margin: 3rem 0 auto;
  text-align: center;
  color: #155091;
  text-decoration: underline;
  font-size: clamp(10px, 2.93vw, 22px);
  position: relative;
  z-index: 111;
}

/* p-info */
.p-info {
  margin-top: 5rem;
  padding-bottom: 5rem;
  color: #000;
}
.p-info__inner {
  max-width: 64rem;
  margin: 0 auto;
}
.p-info__box {
  margin-top: 7rem;
}
.p-info__box + .p-info__box {
  margin-top: 3.5rem;
}
.p-info__hdg {
  font-size: 3rem;
  line-height: 1.4;
  padding: 1rem 0 1rem 2rem;
  border-left: 1rem solid var(--color-navy);
  transform: skewX(-10deg);
}
.p-info__hdg > span {
  display: block;
  transform: skewX(10deg);
}
.p-info__text {
  margin-top: 1rem;
  font-size: 2.3rem;
}

/* u-txt */
.u-txt-underline {
  position: relative;
  z-index: 1;
}
.u-txt-underline::before {
  display: block;
  content: "";
  position: absolute;
  width: 98%;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  margin: auto;
  height: 2rem;
  background: #FFEA65;
  transform: skewX(-10deg);
  z-index: -1;
}

.u-txt-yellow {
  color: #FFEA65;
}/*# sourceMappingURL=style.css.map */