@charset "UTF-8";

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
legend,
pre,
blockquote {
  margin: unset;
  padding: unset;
  font-feature-settings: "pkna";
}

button,
input,
label {
  line-height: 1.1;
}

p,
span,
summary {
  line-height: 1.5;
  margin: unset;
  padding: unset;
  font-weight: unset;
}

h1,
h2,
h3,
h4 {
  font-weight: 200;
  letter-spacing: 0.3rem;
}

p {
  font-weight: 400;
  letter-spacing: 0.3rem;
}

th,
td {
  font-weight: 400;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: -1px;
}

img,
input[type="image"] {
  max-width: 100%;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  border: 0;
  margin: 0 auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video,
picture {
  display: block;
}

summary {
  list-style: none !important;
}

/* button基本のリセット */
button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit; /* フォント系は継承 */
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  border-radius: 0; /* iOS/Safari の角丸を無効化 */
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* アクセシビリティ：フォーカス可視は必ず残す（上書き推奨） */
button:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

/* 無効状態 */
button:disabled,
button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Firefox 独自のインナーパディング対策（ほぼ不要だが保険） */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
  word-break: break-all;
}

ol,
ul {
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

@media screen and (width <= 780px) {
  html {
    font-size: 1.2820512821vw;
  }
}

body {
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: Inter, "Zen Kaku Gothic Antique", "Helvetica Neue", arial, sans-serif;
  color: #000;
}

body {
  color: #000;
  margin: 0 auto;
}

main {
  display: block;
  color: #000;
}

.l-sec__bg-hospital {
  max-height: 95rem;
  padding: 12rem 4rem 25rem;
  background: url("../img/common/bg_pic_hospital.webp") no-repeat center/cover;
  overflow-y: scroll;
}

@media screen and (width <= 780px) {
  .l-sec__bg-hospital {
    max-height: 140rem;
    padding: 16rem 0 25rem;
  }
}

.l-sec__inner {
  max-width: 102.4rem;
  margin: auto;
}

@media screen and (width >= 780.1px) {
  html {
    min-height: 100vh;
  }

  body {
    min-height: 100vh;
  }
}

.l-header {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 1000;
}

@media (width >= 781px) {
  .l-header {
    height: 6.25vw;
    padding: 0 4.6875vw;
  }
}

@media (width >= 1281px) {
  .l-header {
    height: 80px;
    padding: 0 60px;
  }
}

@media (width <= 780px) {
  .l-header {
    height: 15.3846153846vw;
    padding: 0 7.6923076923vw;
  }

  .l-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
  }
}

.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (width >= 1281px) {
  .l-header__inner {
    max-width: 1280px;
    margin-inline: auto;
  }
}

.l-header__logo {
  position: relative;
  z-index: 1001;
}

.l-header__logo img {
  display: block;
  height: auto;
}

@media (width >= 781px) {
  .l-header__logo img {
    width: 9.375vw;
  }
}

@media (width >= 1281px) {
  .l-header__logo img {
    width: 120px;
  }
}

@media (width <= 780px) {
  .l-header__logo img {
    width: 30.7692307692vw;
  }
}

@media (width >= 781px) {
  .l-header__nav {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

@media (width <= 780px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgb(0 0 0 / 80%);
    backdrop-filter: blur(5px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
    overflow-y: auto;
  }
}

@media (width >= 781px) {
  .l-header__nav-inner {
    display: contents;
  }
}

@media (width <= 780px) {
  .l-header__nav-inner {
    min-height: 100%;
    padding: calc(15.3846153846vw + 20.5128205128vw) 0 22.5641025641vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.2564102564vw;
  }
}

.l-header__nav-list {
  display: flex;
}

@media (width >= 781px) {
  .l-header__nav-list {
    gap: 2.34375vw;
  }
}

@media (width >= 1281px) {
  .l-header__nav-list {
    gap: 30px;
  }
}

@media (width <= 780px) {
  .l-header__nav-list {
    display: contents;
  }
}

.l-header__nav-item {
  font-family: sans-serif;
}

@media (width >= 781px) {
  .l-header__nav-item {
    font-size: 1.171875vw;
    white-space: nowrap;
  }
}

@media (width >= 1281px) {
  .l-header__nav-item {
    font-size: 15px;
  }
}

@media (width <= 780px) {
  .l-header__nav-item {
    font-size: 5.1282051282vw;
    letter-spacing: 0.05em;
    font-weight: lighter;
  }
}

.l-header__nav-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (width >= 781px) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}

.l-header__btn-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (width >= 781px) {
  .l-header__btn-wrap {
    gap: 2.34375vw;
    margin-left: 2.34375vw;
  }
}

@media (width >= 1281px) {
  .l-header__btn-wrap {
    gap: 30px;
    margin-left: 30px;
  }
}

@media (width <= 780px) {
  .l-header__btn-wrap {
    display: contents;
  }
}

@media (width <= 780px) {
  .l-header__btn-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.l-header__btn-item.is-reserve {
  height: 100%;
}

@media (width <= 780px) {
  .l-header__btn-item.is-reserve {
    order: -1;
  }
}

@media (width <= 780px) {
  .l-header__btn-item.is-contact {
    order: 10;
  }
}

.l-header__btn-contact {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

@media (width >= 781px) {
  .l-header__btn-contact {
    font-size: 1.171875vw;
    padding: 0.78125vw 1.5625vw;
  }

  .l-header__btn-contact:hover {
    background: #fff;
    color: #000;
    transition:
      background-color 0.5s,
      color 0.5s;
  }
}

@media (width >= 1281px) {
  .l-header__btn-contact {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (width <= 780px) {
  .l-header__btn-contact {
    width: 100%;
    max-width: 69.2307692308vw;
    padding: 1.9230769231vw;
    font-size: 5.1282051282vw;
    letter-spacing: 0.05em;
    font-weight: lighter;
  }
}

.l-header__btn-reserve {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

@media (width >= 781px) {
  .l-header__btn-reserve {
    padding: 0 2.34375vw;
    font-size: 1.71875vw;
  }

  .l-header__btn-reserve:hover::before {
    background-color: rgb(249.1870967742 245.7677419355 239.6129032258);
  }
}

@media (width >= 1281px) {
  .l-header__btn-reserve {
    padding: 0 30px;
    font-size: 22px;
  }
}

@media (width <= 780px) {
  .l-header__btn-reserve {
    width: 100%;
    max-width: 69.2307692308vw;
    padding: 1.6666666667vw 0;
    font-size: 5.1282051282vw;
    letter-spacing: 0.05em;
    background: transparent;
  }
}

.l-header__btn-reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee4d2;
  transform: skewX(-10deg);
  z-index: -1;
  transition: background-color 0.4s ease;
}

@media (width <= 780px) {
  .l-header__btn-reserve::before {
    display: block;
  }
}

.l-header__btn-reserve::after {
  content: "RESERVATION";
  display: block;
}

@media (width >= 781px) {
  .l-header__btn-reserve::after {
    font-size: 1.09375vw;
    margin-top: -0.625vw;
  }
}

@media (width >= 1281px) {
  .l-header__btn-reserve::after {
    font-size: 14px;
    margin-top: -5px;
  }
}

@media (width <= 780px) {
  .l-header__btn-reserve::after {
    font-size: 2.5641025641vw;
    margin-top: -1.0256410256vw;
  }
}

.l-header__hamburger {
  display: none;
}

@media (width <= 780px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1.9230769231vw;
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }
}

.l-header__hamburger-line {
  display: block;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.l-header__hamburger-line:nth-child(1) {
  width: 7.6923076923vw;
}

.l-header__hamburger-line:nth-child(2) {
  width: 6.4102564103vw;
}

.l-header__hamburger-line:nth-child(3) {
  width: 5.1282051282vw;
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
}

.l-header.is-active .l-header__hamburger-line {
  width: 5.1282051282vw;
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-header.is-active .l-header__hamburger-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.l-header.is-active .l-header__hamburger-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header {
  /* --- アニメーション設定（SPのみ） --- */
}

@media (width <= 780px) {
  .l-header__nav-item,
  .l-header__btn-item {
    opacity: 0;
    transform: translateY(2.5641025641vw);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__btn-item.is-reserve {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.46s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.54s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.62s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.78s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(7) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.86s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__nav-item:nth-child(8) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.94s;
  }
}

@media (width <= 780px) {
  .l-header.is-active .l-header__btn-item.is-contact {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
  }
}

.l-footer {
  width: 100%;
}

.l-footer__inner-wrap {
  background: #000;
  margin-inline: auto;
  width: 100%;
  padding: 0 4.6875vw;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media (width >= 1281px) {
  .l-footer__inner-wrap {
    padding: 0 60px;
  }
}

@media (width <= 780px) {
  .l-footer__inner-wrap {
    padding: 12.8205128205vw 7.6923076923vw;
  }
}

.l-footer__inner-top {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (width <= 780px) {
  .l-footer__inner-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.4102564103vw;
  }
}

.l-footer__logo {
  width: 9.375vw;
  height: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (width >= 1281px) {
  .l-footer__logo {
    width: 120px;
  }
}

@media (width <= 780px) {
  .l-footer__logo {
    width: 32.0512820513vw;
  }
}

.l-footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-footer__nav-list {
  display: flex;
  align-items: center;
  gap: 2.34375vw;
}

@media (width >= 1281px) {
  .l-footer__nav-list {
    gap: 30px;
  }
}

@media (width <= 780px) {
  .l-footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5641025641vw;
  }
}

.l-footer__nav-item {
  font-size: 1.171875vw;
  font-family: Inter, "Zen Kaku Gothic Antique", "Helvetica Neue", arial, sans-serif;
  font-weight: medium;
}

@media (width >= 1281px) {
  .l-footer__nav-item {
    font-size: 15px;
  }
}

@media (width <= 780px) {
  .l-footer__nav-item {
    font-size: 2.8205128205vw;
    font-weight: 200;
    letter-spacing: 0.05em;
    line-height: 2.1818181818;
  }
}

.l-footer__nav-link {
  color: #fff;
  transition: opacity 0.3s;
}

@media (width >= 781px) {
  .l-footer__nav-link:hover {
    opacity: 0.7;
  }
}

.l-footer__btn-contact {
  font-size: 1.171875vw;
  font-family: Inter, "Zen Kaku Gothic Antique", "Helvetica Neue", arial, sans-serif;
  color: #fff;
  border: 0.1rem solid #fff;
  padding: 0.78125vw 1.484375vw;
}

@media (width >= 781px) {
  .l-footer__btn-contact:hover {
    background: #fff;
    color: #000;
    transition:
      background-color 0.5s,
      color 0.5s;
  }
}

@media (width >= 1281px) {
  .l-footer__btn-contact {
    font-size: 15px;
    padding: 10px 19px;
  }
}

@media (width <= 780px) {
  .l-footer__btn-contact {
    font-size: 2.8205128205vw;
    padding: 1.2820512821vw;
  }
}

.l-footer__btn-wrap {
  margin-left: 1.953125vw;
  height: 100%;
}

@media (width <= 780px) {
  .l-footer__btn-wrap {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
  }
}

.l-footer__btn-reserve {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 12.5vw;
  height: 7.421875vw;
  font-size: 1.71875vw;
  font-family: Inter, "Zen Kaku Gothic Antique", "Helvetica Neue", arial, sans-serif;
  color: #000;
}

@media (width >= 1281px) {
  .l-footer__btn-reserve {
    width: 160px;
    height: 95px;
    font-size: 22px;
  }
}

@media (width <= 780px) {
  .l-footer__btn-reserve {
    width: 38.4615384615vw;
    height: 12.1794871795vw;
    font-size: 3.8461538462vw;
  }
}

.l-footer__btn-reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee4d2;
  transform: skewX(-10deg);
  z-index: -1;
  transition: background-color 0.4s ease;
}

@media (width >= 781px) {
  .l-footer__btn-reserve:hover::before {
    background-color: rgb(249.1870967742 245.7677419355 239.6129032258);
  }
}

.l-footer__btn-reserve::after {
  content: "RESERVATION";
  display: block;
  font-size: 1.09375vw;
  margin-top: -0.390625vw;
}

@media (width >= 1281px) {
  .l-footer__btn-reserve::after {
    font-size: 14px;
    margin-top: -5px;
  }
}

@media (width <= 780px) {
  .l-footer__btn-reserve::after {
    font-size: 2.5641025641vw;
  }
}

.l-footer__inner-bottom {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-inline: auto;
}

@media (width <= 780px) {
  .l-footer__inner-bottom {
    margin-top: 7.6923076923vw;
    justify-content: flex-start;
  }
}

.l-footer__bottom-list {
  display: flex;
  gap: 2.34375vw;
  margin: 2.734375vw 5.3125vw 2.34375vw 0;
}

@media (width >= 1281px) {
  .l-footer__bottom-list {
    margin-right: 68px;
  }
}

@media (width <= 780px) {
  .l-footer__bottom-list {
    margin: 0;
  }
}

.l-footer__copy {
  background: #dfdfdf;
  text-align: center;
  place-items: center;
  padding: 0.78125vw 0;
}

@media (width >= 1281px) {
  .l-footer__copy {
    padding: 10px 0;
  }
}

@media (width <= 780px) {
  .l-footer__copy {
    padding: 3.8461538462vw 0;
  }
}

.l-footer__copy-txt {
  font-size: 0.9375vw;
  font-family: Inter, "Zen Kaku Gothic Antique", "Helvetica Neue", arial, sans-serif;
  color: #000;
  vertical-align: middle;
}

@media (width >= 1281px) {
  .l-footer__copy-txt {
    font-size: 12px;
  }
}

@media (width <= 780px) {
  .l-footer__copy-txt {
    font-size: 2.0512820513vw;
    line-height: 3;
  }
}

@media screen and (width <= 780px) {
  .pc_disp {
    display: none;
  }
}

@media screen and (width >= 780.1px) {
  .sp_disp {
    display: none;
  }
}

.c-button {
  display: block;
  width: 100%;
  max-width: 45rem;
  padding: 2rem 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  font-size: 2rem;
  color: #fff;
  background: #383838;
  outline: 0.1rem solid #fff;
  outline-offset: -0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0.1rem 0.1rem 0.8rem 0.1rem rgb(29 29 29 / 20%);
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .c-button {
    padding: 2rem 8rem 2rem 4rem;
    font-size: 1.8rem;
  }
}

@media screen and (width <= 780px) {
  .c-button {
    width: 100%;
    max-width: 600px;
    padding: 3rem 2rem 3rem 4rem;
    font-size: 3rem;
  }
}

.c-button::before {
  display: block;
  content: "";
  width: 6rem;
  height: 0.9rem;
  background: url("../img/common/btn_arrow_white.webp") no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.2rem;
  margin: auto;
  transition: all 0.3s ease;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .c-button::before {
    width: 5rem;
  }
}

@media screen and (width <= 780px) {
  .c-button::before {
    width: 8rem;
    height: 1.2rem;
  }
}

.c-button--white {
  color: #000;
  background: #fff;
  outline: 0.1rem solid #000;
}

.c-button--white::before {
  background: url("../img/common/btn_arrow_black.webp") no-repeat center/contain;
}

.c-button:hover::before {
  transform: translateX(20%);
}

.c-button__text-small {
  display: block;
  font-size: 0.7em;
}

.c-hdg {
  text-align: center;
  font-size: 5.6rem;
  letter-spacing: 1.5rem;
  line-height: 1.3;
}

.c-hdg--white {
  color: #fff;
}

.c-hdg__sub {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.4rem;
}

.c-slider {
  position: relative;
}

.c-slider .swiper-pagination-bullet {
  width: 3rem;
  height: 1rem;
  background: #000;
  border-radius: 3rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.c-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 6rem;
  background: #ebeae7;
}

.c-modal-trigger {
  display: block;
  margin: auto;
  cursor: pointer;
}

.c-modal .c-modal-overlay {
  align-items: center;
  background: rgb(0 0 0 / 60%);
  inset: 0;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

.c-modal-wrapper {
  width: 90%;
  max-width: 45.2rem;
  position: relative;
}

.c-modal-wrapper .c-modal-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  top: -2.4rem;
  right: 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  z-index: 111;
}

.c-modal-wrapper .c-modal-close::before {
  content: "✕";
}

.c-modal .c-modal-container {
  width: 100%;
  max-height: 80vh;
  max-width: 45.2rem;
  background-color: #fff;
  position: relative;
  overflow: auto;
}

@media (width <= 780px) {
  .c-modal .c-modal-container {
    max-height: 70vh;
  }
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.c-modal.micromodal-slide {
  display: none;
}

.c-modal.micromodal-slide.is-open {
  display: block;
}

.c-modal.micromodal-slide[aria-hidden="false"] .c-modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.micromodal-slide[aria-hidden="false"] .c-modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.micromodal-slide[aria-hidden="true"] .c-modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.micromodal-slide[aria-hidden="true"] .c-modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.c-modal.micromodal-slide .c-modal-container,
.c-modal.micromodal-slide .c-modal-overlay {
  will-change: transform;
}

.c-fv {
  padding: 8rem;
  background: url("../img/common/fv_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .c-fv {
    padding: 12rem 6rem;
    background: url("../img/common/fv_sp.webp") no-repeat center/cover;
  }
}

.c-fv__inner {
  max-width: 104rem;
  margin: auto;
}

.c-fv__ttl {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0.2rem 0.2rem 0.5rem rgb(0 0 0 / 80%);
}

.c-cost {
  background: url("../img/common/cost/bg_cost_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .c-cost {
    background: url("../img/common/cost/bg_cost_sp.webp") no-repeat center/cover;
  }
}

.c-cost__inner {
  max-width: 102.4rem;
  margin: auto;
  padding: 13rem 0 15rem;
  position: relative;
}

@media screen and (width <= 780px) {
  .c-cost__inner {
    width: 84%;
    padding: 16rem 0;
  }
}

.c-cost__hdg {
  padding-left: 1.5rem;
  font-size: 9.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.5rem;
}

.c-cost__hdg--small {
  display: block;
  font-size: 0.4em;
}

.c-cost__box {
  max-width: 58rem;
  margin-top: 3rem;
  padding: 5rem 6rem;
  background: rgb(255 255 255 / 85%);
  border: 0.1rem solid #000;
  box-shadow: 1rem 1rem 0 0 rgb(29 29 29 / 30%);
}

@media screen and (width <= 780px) {
  .c-cost__box {
    max-width: 100%;
  }
}

.c-cost__box-label {
  min-width: 13rem;
  height: fit-content;
  padding: 0.8rem;
  text-align: center;
  background-image: linear-gradient(90deg, #000, #474747 70%);
  color: #fff;
  border: 0.1rem solid #000;
  border-radius: 3rem;
}

.c-cost__box-label--second {
  background: unset;
  color: #000;
}

.c-cost__box-price {
  position: relative;
  right: -1rem;
  padding-right: 4.5rem;
  font-size: 8rem;
  font-weight: 300;
  text-align: right;
  line-height: 1;
}

@media screen and (width <= 780px) {
  .c-cost__box-price {
    font-size: 8.4rem;
  }
}

.c-cost__box-price + .c-cost__box-price {
  margin-top: 2rem;
}

.c-cost__box-price--yen {
  position: absolute;
  right: 0;
  bottom: -0.7rem;
  font-size: 4rem;
  font-weight: 300;
}

.c-cost__box-price--tax {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (width <= 780px) {
  .c-cost__box-price--tax {
    font-size: 1.8rem;
    top: 0.6rem;
    right: 0;
  }
}

.c-cost__box-price--period {
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (width <= 780px) {
  .c-cost__box-price--period {
    font-size: 1.8rem;
  }
}

.c-cost__box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  position: relative;
}

.c-cost__box-top::before {
  display: block;
  content: "";
  width: 100%;
  height: 0.3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/common/cost/img_cost_line.webp") no-repeat center/contain;
}

.c-cost__box-bottom {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}

.c-cost__box-bottom .c-cost__box-price {
  padding-right: 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 5rem;
  font-weight: 200;
}

@media screen and (width <= 780px) {
  .c-cost__box-bottom .c-cost__box-price {
    padding-right: 4.8rem;
    font-size: 6rem;
  }
}

.c-cost__box-bottom .c-cost__box-price--yen {
  right: 0.2rem;
  font-size: 3rem;
}

.c-cost__box-bottom .c-cost__box-price--tax {
  font-size: 1.2rem;
  top: 0.3rem;
  right: 0.4rem;
}

@media screen and (width <= 780px) {
  .c-cost__box-bottom .c-cost__box-price--tax {
    font-size: 1.6rem;
    top: 0;
    right: 0;
  }
}

.c-cost__button {
  position: absolute;
  right: -10rem;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .c-cost__button {
    right: 1rem;
  }
}

@media screen and (width <= 780px) {
  .c-cost__button {
    margin: 9rem auto 0;
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
  }
}

.c-gallery {
  position: relative;
  background: #ebeae7;
  padding-bottom: 12rem;
}

.c-gallery::before {
  display: block;
  content: "";
  width: 100%;
  height: 9rem;
  position: absolute;
  top: -6rem;
  background: url("../img/common/bg_wave_pc.svg") repeat-x center/contain;
}

@media screen and (width <= 780px) {
  .c-gallery::before {
    height: 13rem;
    background: url("../img/common/bg_wave_sp.svg") no-repeat center/cover;
  }
}

.c-gallery__hdg {
  position: absolute;
  left: 32rem;
  top: -8rem;
  z-index: 2;
}

@media screen and (width <= 780px) {
  .c-gallery__hdg {
    top: -5rem;
    left: 0;
    right: 0;
  }
}

@media screen and (width <= 780px) {
  .c-gallery__list {
    margin-top: 8rem;
  }
}

.c-gallery__swiper {
  max-width: 140rem;
  padding-bottom: 2rem;
}

.c-gallery__swiper .swiper-wrapper {
  align-items: flex-end;
}

.c-gallery__item {
  pointer-events: none;
  cursor: auto;
  filter: grayscale(100%);
}

.c-gallery__item-inner {
  transition: all 1s ease-in;
  transform: scale(0.8) translateY(14%);
}

.c-gallery__item-trigger {
  position: relative;
}

.c-gallery__item-trigger::before,
.c-gallery__item-trigger::after {
  display: block;
  content: "";
  position: absolute;
}

.c-gallery__item-trigger::before {
  width: 100%;
  height: 100%;
  right: -0.5rem;
  bottom: -0.5rem;
  background: #fff;
  box-shadow: 0.2rem 0.2rem 0.6rem 0 rgb(29 29 29 / 30%);
  z-index: 1;
}

.c-gallery__item-img {
  display: block;
  position: relative;
  z-index: 2;
}

.c-gallery__item.swiper-slide-active {
  pointer-events: auto;
  cursor: pointer;
  filter: grayscale(0);
}

.c-gallery__item.swiper-slide-active .c-gallery__item-inner {
  transform: scale(1) translateY(0);
}

.c-gallery__item.swiper-slide-active .c-gallery__item-trigger::before {
  right: -1rem;
  bottom: -1rem;
}

.c-gallery__item.swiper-slide-active .c-gallery__item-trigger::after {
  width: 8rem;
  height: 8rem;
  inset: 0;
  margin: auto;
  background: url("../img/common/gallery/icon_movie_gallery.webp") no-repeat center/cover;
  z-index: 2;
}

@media screen and (width <= 780px) {
  .c-gallery__modal .c-modal-wrapper {
    max-width: 60rem;
  }
}

.c-gallery__modal .c-modal-container {
  text-align: center;
  margin: 1rem 0;
  background: unset;
}

@media screen and (width <= 780px) {
  .c-gallery__modal .c-modal-container {
    max-width: 60rem;
  }
}

.c-gallery__modal .c-modal-close::before {
  margin-right: 0.8rem;
}

@media screen and (width <= 780px) {
  .c-gallery__modal .c-modal-close {
    top: -5rem;
    font-size: 4rem;
  }
}

.c-case {
  padding: 0 0 12rem;
  background: #ebeae7;
}

@media screen and (width <= 780px) {
  .c-case .l-sec__inner {
    width: 84%;
  }
}

.c-case__list {
  margin-top: 4.5rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

@media screen and (width <= 780px) {
  .c-case__list {
    padding: 0;
  }
}

.c-case__item {
  padding: 1rem;
  background: #fff;
  border: 0.1rem solid #000;
  box-shadow: 0.1rem 0.1rem 0.5rem 0.1rem rgb(29 29 29 / 20%);
}

@media screen and (width <= 780px) {
  .c-case__item--hideSp {
    display: none;
  }
}

.c-case__item-hdg {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}

.c-case__item-img {
  display: block;
  margin-top: 1rem;
}

.c-case__button {
  margin: 5rem auto 0;
}

.c-artist {
  padding: 12rem 0;
  position: relative;
  background-image: linear-gradient(90deg, #000 60%, #474747);
  overflow: hidden;
}

@media screen and (width <= 780px) {
  .c-artist {
    padding: 15rem 0 20rem;
  }
}

.c-artist::before,
.c-artist::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
}

.c-artist::before {
  width: 77rem;
  height: 50rem;
  top: 2rem;
  right: -29rem;
  background: url("../img/common/bg_illust_01.webp") no-repeat center/contain;
}

@media screen and (width <= 780px) {
  .c-artist::before {
    top: -12rem;
    right: -60rem;
  }
}

.c-artist::after {
  width: 70rem;
  height: 60rem;
  bottom: -36rem;
  left: -8rem;
  background: url("../img/common/bg_illust_02.webp") no-repeat center/contain;
}

@media screen and (width <= 780px) {
  .c-artist::after {
    bottom: -15rem;
    left: -36rem;
  }
}

.c-artist__inner {
  max-width: 144rem;
  margin: 6rem auto 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (width <= 780px) {
  .c-artist__inner {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.c-artist__hdg {
  letter-spacing: 0.5rem;
}

.c-artist__text {
  width: 42%;
  max-width: 45rem;
  position: absolute;
  top: 32rem;
  left: 55%;
  margin: auto;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (width <= 780px) {
  .c-artist__text {
    width: 100%;
    max-width: 65rem;
    height: fit-content;
    inset: 15rem 0 0;
    margin: auto;
    font-size: 2.2rem;
  }
}

.c-artist__item {
  width: 100%;
  max-width: 90rem;
  position: relative;
}

@media screen and (width <= 780px) {
  .c-artist__item {
    width: 73rem;
  }
}

.c-artist__item::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/common/artist/img_artist_frame_pc.webp") no-repeat center/contain;
  z-index: 1;
}

@media screen and (width <= 780px) {
  .c-artist__item::before {
    background: url("../img/common/artist/img_artist_frame_sp.webp") no-repeat center/contain;
  }
}

.c-artist__item:nth-child(odd) {
  margin-left: -10rem;
}

@media screen and (width <= 780px) {
  .c-artist__item:nth-child(odd) {
    margin-left: -6rem;
  }
}

.c-artist__item:nth-child(odd)::before {
  top: -14rem;
  left: -1rem;
}

@media screen and (width <= 780px) {
  .c-artist__item:nth-child(odd)::before {
    top: -2rem;
    left: -0.5rem;
  }
}

.c-artist__item:nth-child(even) {
  margin: 26rem -10rem 0 0;
}

@media screen and (width <= 780px) {
  .c-artist__item:nth-child(even) {
    margin: 26rem -6rem 0 0;
  }
}

.c-artist__item:nth-child(even)::before {
  top: 1rem;
  right: 1rem;
}

@media screen and (width <= 780px) {
  .c-artist__item:nth-child(even)::before {
    top: 1rem;
    right: -0.5rem;
    transform: scale(-1);
  }
}

.c-artist__button {
  position: absolute;
  left: -35rem;
  right: 0;
  bottom: 12rem;
  margin: auto;
  z-index: 2;
}

@media screen and (width <= 780px) {
  .c-artist__button {
    width: 84%;
    left: -3rem;
    bottom: -5rem;
  }
}

.c-flow {
  margin-top: 12rem;
}

.c-flow__slider {
  margin-top: 3rem;
}

@media screen and (width <= 780px) {
  .c-flow__slider {
    margin-top: 6rem;
  }
}

.c-flow__slider .swiper-wrapper {
  padding-bottom: 3rem;
}

.c-flow__pagination.swiper-pagination-horizontal {
  bottom: -5rem;
}

@media screen and (width <= 780px) {
  .c-flow__pagination.swiper-pagination-horizontal {
    bottom: -3rem;
  }
}

.c-flow__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
}

.c-flow__list {
  height: 52rem;
  position: relative;
  display: flex;
}

@media screen and (width <= 780px) {
  .c-flow__list {
    height: auto;
    flex-direction: column;
  }
}

.c-flow__list-inner {
  width: 100%;
  max-width: 53rem;
  padding: 12rem 8% 4% 6%;
  margin-right: -10rem;
  position: relative;
  background: #ebeae7;
  z-index: 1;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .c-flow__list-inner {
    padding: 12rem 15% 4% 6%;
  }
}

@media screen and (width <= 780px) {
  .c-flow__list-inner {
    width: 83%;
    height: 56rem;
    padding: 13rem 4rem 4rem 6rem;
  }
}

.c-flow__list-inner::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: -8rem;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8rem solid #ebeae7;
  border-bottom: 52rem solid transparent;
  z-index: 1;
}

@media screen and (width <= 780px) {
  .c-flow__list-inner::before {
    right: -7rem;
    border-bottom: 60rem solid transparent;
  }
}

.c-flow__list-hdg {
  position: relative;
  font-size: 3.5rem;
}

.c-flow__list-num {
  position: absolute;
  top: -8rem;
  left: 0;
  font-size: 5rem;
  font-weight: 200;
}

@media screen and (width <= 780px) {
  .c-flow__list-num {
    font-size: 6rem;
  }
}

.c-flow__list-text {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (width <= 780px) {
  .c-flow__list-text {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.c-flow__list-img {
  width: 100%;
  max-width: 60rem;
  margin-top: 10rem;
  position: relative;
  z-index: 2;
}

@media screen and (width <= 780px) {
  .c-flow__list-img {
    width: 72rem;
    margin: -4rem 0 0 auto;
  }
}

.c-question {
  padding: 5.5rem 11% 10rem;
  background: #000;
  border: 0.1rem solid #fff;
  position: relative;
}

@media screen and (width <= 780px) {
  .c-question {
    margin: 0 6rem;
    padding: 5.5rem 5rem 10rem;
  }
}

.c-question__button {
  position: absolute;
  right: 3rem;
  bottom: 0;
  transform: translateY(50%);
}

@media screen and (width <= 780px) {
  .c-question__button {
    left: 0;
    right: 0;
    bottom: -12rem;
    margin: auto;
  }
}

.c-question__inner {
  margin-top: 3rem;
}

.c-question__list {
  background: #fff;
  color: #000;
}

.c-question__list + .c-question__list {
  margin-top: 2rem;
}

@media (prefers-reduced-motion: no-preference) {
  .c-question__list::details-content {
    transition-duration: 200ms;
    transition-property: content-visibility, opacity;
    transition-behavior: allow-discrete;
  }
}

.c-question__list:not([open])::details-content {
  opacity: 0;
}

.c-question__list[open] .c-question__list-trigger::before {
  transform: rotate(0);
  opacity: 0;
}

.c-question__list-trigger {
  padding: 2rem 6rem 2rem 3rem;
  display: flex;
  gap: 3rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}

@media screen and (width <= 780px) {
  .c-question__list-trigger {
    padding: 3rem 6rem 3rem 3rem;
    font-size: 2.4rem;
  }
}

.c-question__list-trigger::before,
.c-question__list-trigger::after {
  display: inline-block;
  content: "";
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
  background: #000;
}

.c-question__list-trigger::before {
  transform: rotate(90deg);
  transition: 0.3s;
}

.c-question__list-inner {
  margin: 0 3rem;
  padding: 3rem 0;
  display: flex;
  gap: 2.5rem;
  font-size: 1.5rem;
  border-top: 0.1rem solid #ebeae7;
}

@media screen and (width <= 780px) {
  .c-question__list-inner {
    font-size: 2.2rem;
  }
}

.c-question__list-question,
.c-question__list-answer {
  font-size: 3rem;
  font-weight: 200;
  line-height: 0.8;
}

@media screen and (width <= 780px) {
  .c-question__list-question,
  .c-question__list-answer {
    line-height: 1.2;
  }
}

.c-information {
  padding: 1rem 0 10rem;
  position: relative;
  background: #ebeae7;
}

@media screen and (width <= 780px) {
  .c-information {
    padding: 8rem 0 15rem;
  }
}

.c-information::before {
  display: block;
  content: "";
  width: 100%;
  height: 12rem;
  position: absolute;
  top: -8rem;
  background: url("../img/common/bg_wave_pc.svg") repeat-x center/contain;
  z-index: 10;
}

@media screen and (width <= 780px) {
  .c-information::before {
    height: 13rem;
    background: url("../img/common/bg_wave_sp.svg") no-repeat center/cover;
  }
}

.c-information__hdg {
  max-width: 115rem;
  margin: auto;
  padding: 0 2rem;
  text-align: left;
  position: relative;
  z-index: 11;
}

@media screen and (width <= 780px) {
  .c-information__hdg {
    padding: 0 6rem;
  }
}

.c-information__inner {
  max-width: 128rem;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 5rem;
}

@media screen and (width <= 780px) {
  .c-information__inner {
    margin: 3rem auto 0;
    padding: 0 2rem;
    flex-direction: column;
  }
}

.c-information__img {
  width: 60%;
  margin-left: -6rem;
  position: relative;
}

@media screen and (width <= 780px) {
  .c-information__img {
    width: 100%;
    margin: auto;
  }
}

.c-information__img::before {
  display: block;
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 2.5rem;
  width: 89%;
  height: 100%;
  border: 0.1rem solid #000;
  transform: skewX(-9deg);
  z-index: 1;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .c-information__img::before {
    left: 2rem;
  }
}

@media screen and (width <= 780px) {
  .c-information__img::before {
    left: 3rem;
  }
}

.c-information__detail {
  width: 50%;
}

@media screen and (width <= 780px) {
  .c-information__detail {
    width: 72%;
  }
}

.c-information__subhdg {
  padding-bottom: 1rem;
  font-size: 3rem;
  font-weight: 300;
  border-bottom: 0.1rem solid #000;
}

@media screen and (width <= 780px) {
  .c-information__subhdg {
    font-size: 4rem;
  }
}

.c-information__table {
  border-spacing: 0;
}

.c-information__table th,
.c-information__table td {
  padding: 2.5rem 0;
  text-align: left;
  font-size: 1.6rem;
  border-bottom: 0.1rem solid #000;
  vertical-align: top;
}

@media screen and (width <= 780px) {
  .c-information__table th,
  .c-information__table td {
    font-size: 2.4rem;
  }
}

.c-information__table th {
  width: 35%;
}

@media screen and (width <= 780px) {
  .c-information__table th {
    width: 26%;
  }
}

.c-information__table td {
  padding: 2.5rem 7rem 2.5rem 0;
}

@media screen and (width <= 780px) {
  .c-information__table td {
    padding: 2.5rem 10rem 2.5rem 0;
  }
}

.c-information__table tr:last-child th,
.c-information__table tr:last-child td {
  border-bottom: none;
}

.c-detail {
  padding: 9rem 2rem;
  background: url("../img/common/detail/bg_detail_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .c-detail {
    padding: 9rem 6rem;
    background: url("../img/common/detail/bg_detail_sp.webp") no-repeat center/cover;
  }
}

.c-detail__button {
  max-width: 50rem;
  margin: 0 0 0 auto;
  text-align: left;
}

@media screen and (width <= 780px) {
  .c-detail__button {
    max-width: 100%;
    padding: 3rem 2rem 3rem 8rem;
  }
}

.p-intro {
  padding: 11rem 2rem 0;
  background: url("../img/common/bg_common_wall.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .p-intro {
    padding: 13rem 0 0;
  }
}

.p-intro__inner {
  max-width: 102.4rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  margin-top: 5rem;
}

@media screen and (width <= 780px) {
  .p-intro__inner {
    padding: 0 12rem;
    flex-direction: column;
  }
}

.p-intro__content {
  width: 50%;
  margin-top: 1rem;
}

@media screen and (width <= 780px) {
  .p-intro__content {
    width: 100%;
  }
}

.p-intro__img {
  width: 50%;
  max-width: 45rem;
  height: fit-content;
  box-shadow: 0.5rem 0.5rem 0 0 #000;
}

@media screen and (width <= 780px) {
  .p-intro__img {
    width: 100%;
    max-width: 100%;
  }
}

.p-intro__hdg {
  padding: 0 0 1.5rem 1rem;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 0.1rem solid #000;
}

@media screen and (width <= 780px) {
  .p-intro__hdg {
    padding: 0 0 1rem;
    text-align: center;
    font-size: 3rem;
  }
}

.p-intro__text {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (width <= 780px) {
  .p-intro__text {
    font-size: 2.2rem;
  }
}

.p-intro__text + .p-intro__text {
  margin-top: 1rem;
}

@media screen and (width <= 780px) {
  .p-intro__text + .p-intro__text {
    margin-top: 3rem;
  }
}

.p-technique {
  padding: 10rem 2rem 12rem;
  background: url("../img/common/bg_common_wall.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .p-technique {
    padding: 14rem 0 16rem;
  }
}

.p-technique__inner {
  max-width: 102.4rem;
  margin: auto;
}

@media screen and (width <= 780px) {
  .p-technique__inner {
    padding: 0 6rem;
  }
}

.p-technique__tab {
  margin-top: 4.5rem;
}

@media screen and (width <= 780px) {
  .p-technique__tab {
    margin-top: 5.5rem;
  }
}

.p-technique__tab-item {
  width: 50%;
  max-width: 50rem;
  padding: 1.6rem 2rem 4rem;
  display: block;
  float: left;
  text-align: center;
  position: relative;
  font-size: 2.6rem;
  border-bottom: 0.2rem solid #000;
  letter-spacing: 0.3rem;
  opacity: 0.4;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-technique__tab-item {
    width: 48%;
  }
}

@media screen and (width <= 780px) {
  .p-technique__tab-item {
    width: 48%;
  }
}

.p-technique__tab-item::before {
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.2rem solid #000;
  border-right: 0.2rem solid #000;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin: auto;
}

.p-technique__tab-item[for="powder_brow"] {
  margin-left: 2rem;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-technique__tab-item[for="powder_brow"] {
    margin-left: 2.5rem;
  }
}

@media screen and (width <= 780px) {
  .p-technique__tab-item[for="powder_brow"] {
    margin-left: 2.6rem;
  }
}

.p-technique__tab input[name="tab_item"] {
  display: none;
}

.p-technique__tab input:not(:checked) + .p-technique__tab-item {
  cursor: pointer;
}

.p-technique__tab input:checked + .p-technique__tab-item {
  opacity: 1;
}

.p-technique__tab-ja {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7em;
}

.p-technique__tab-content {
  display: none;
  clear: both;
  padding-top: 4rem;
}

.p-technique #silk_brow:checked ~ #silk_brow_content,
.p-technique #powder_brow:checked ~ #powder_brow_content {
  display: block;
}

.p-technique__box {
  padding: 6rem 2rem 8rem;
  background: #fff;
  border-radius: 5rem 0;
  box-shadow: 0.2rem 0.2rem 0.6rem 0 rgb(29 29 29 / 30%);
}

@media screen and (width <= 780px) {
  .p-technique__box {
    padding: 8rem 6rem 10rem;
  }
}

.p-technique__illust {
  display: block;
  max-width: 41rem;
  margin: auto;
  padding-bottom: 1rem;
}

@media screen and (width <= 780px) {
  .p-technique__illust {
    padding-bottom: 4rem;
  }
}

.p-technique__text {
  text-align: center;
  font-size: 2rem;
  line-height: 1.7;
}

@media screen and (width <= 780px) {
  .p-technique__text {
    font-size: 2.4rem;
  }
}

.p-technique__check {
  max-width: 80rem;
  margin: 4rem auto 0;
  padding: 4rem 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  border: 0.1rem solid #000;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-technique__check {
    padding: 4rem 8%;
  }
}

@media screen and (width <= 780px) {
  .p-technique__check {
    padding: 5rem 11%;
    flex-direction: column;
    gap: 4rem;
  }
}

.p-technique__check-list {
  width: calc(50% - 2rem);
  display: flex;
  gap: 2rem;
  font-size: 2rem;
}

@media screen and (width <= 780px) {
  .p-technique__check-list {
    width: 100%;
    gap: 2.8rem;
    font-size: 2.4rem;
  }
}

.p-technique__check-icon {
  display: block;
  width: 2.3rem;
}

@media screen and (width <= 780px) {
  .p-technique__check-icon {
    width: 3.3rem;
  }
}

.p-technique__table {
  width: 100%;
  max-width: 80rem;
  margin: 9rem auto 0;
  border-spacing: 0.4rem;
}

.p-technique__table caption {
  padding-bottom: 4rem;
  font-size: 2.8rem;
  font-weight: 500;
}

.p-technique__table th,
.p-technique__table td {
  padding: 1.9rem 1rem;
  text-align: center;
  font-size: 2rem;
  border-bottom: 0.1rem dashed #888;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-technique__table th,
  .p-technique__table td {
    font-size: 1.7rem;
  }
}

.p-technique__table thead .p-technique__table-specific {
  font-size: 3rem;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-technique__table thead .p-technique__table-specific {
    font-size: 2.6rem;
  }
}

.p-technique__table tbody th,
.p-technique__table tbody td {
  padding: 2.4rem 1rem;
}

.p-technique__table tbody th {
  width: 18%;
}

@media screen and (width <= 780px) {
  .p-technique__table tbody th {
    width: 20%;
  }
}

.p-technique__table tbody td {
  width: 41%;
}

.p-technique__table-normal {
  background: #efeeeb;
}

.p-technique__table-specific {
  background-image: linear-gradient(90deg, #000, #474747);
  color: #fff;
}

@media screen and (width <= 780px) {
  .p-menu-detail .l-sec__bg-hospital {
    padding: 16rem 0 40rem;
  }
}

.p-menu-detail .c-flow {
  margin-top: 0;
}

.p-menu-detail .c-question {
  margin-top: 20rem;
}
