@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-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-menu {
  padding: 11rem 2rem 0;
  background: url("../img/common/bg_common_wall.webp") no-repeat center/cover;
}

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

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

.p-menu__content + .p-menu__content {
  margin-top: 10rem;
}

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

.p-menu__content--eyebrow .p-menu__submenu {
  background: url("../img/price/pic_menu_eyebrow_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .p-menu__content--eyebrow .p-menu__submenu {
    background: url("../img/price/pic_menu_eyebrow_sp.webp") no-repeat center/cover;
  }
}

.p-menu__content--lip .p-menu__submenu {
  background: url("../img/price/pic_menu_lip_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .p-menu__content--lip .p-menu__submenu {
    background: url("../img/price/pic_menu_lip_sp.webp") no-repeat center/cover;
  }
}

.p-menu__content--eyeline .p-menu__submenu {
  background: url("../img/price/pic_menu_eyeline_pc.webp") no-repeat center/cover;
}

@media screen and (width <= 780px) {
  .p-menu__content--eyeline .p-menu__submenu {
    background: url("../img/price/pic_menu_eyeline_sp.webp") no-repeat center/cover;
  }
}

.p-menu__submenu {
  padding: 3.8rem 4rem;
  font-size: 8rem;
  color: #fff;
  letter-spacing: 1rem;
  text-shadow: 0.2rem 0.2rem 0.5rem rgb(0 0 0 / 80%);
  font-weight: 100;
}

@media screen and (width <= 780px) {
  .p-menu__submenu {
    padding: 11rem 6rem;
    font-size: 11rem;
  }
}

.p-menu__inner {
  margin-top: 5rem;
}

.p-menu__table {
  width: 100%;
  margin-top: 3rem;
  font-size: 2rem;
  border-spacing: 0.3rem 0.5rem;
}

@media screen and (width <= 780px) {
  .p-menu__table {
    margin: 5rem auto 0;
    width: 84%;
    font-size: 2.6rem;
  }
}

.p-menu__table thead {
  color: #fff;
}

.p-menu__table thead th {
  padding: 2rem;
  background-image: linear-gradient(90deg, #000, #474747 40%);
}

.p-menu__table tbody {
  position: relative;
}

.p-menu__table tbody + tbody::before {
  display: block;
  content: "";
  width: 100%;
  height: 0.2rem;
}

.p-menu__table th,
.p-menu__table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border: 0.1rem solid #000;
  box-shadow: 0.4rem 0.4rem 0.2rem 0 rgb(29 29 29 / 40%);
  font-weight: 400;
}

.p-menu__table td {
  background: #fff;
}

.p-menu__table--plan {
  width: 38%;
}

@media screen and (width <= 780px) {
  .p-menu__table--plan {
    width: 30%;
  }
}

.p-menu__table--count {
  width: 24%;
}

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

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

.p-artist__content {
  max-width: 80rem;
  margin: auto;
  position: relative;
}

.p-artist__caption {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.8rem;
  font-weight: 400;
}

@media screen and (width >= 780.1px) and (width <= 1024px) {
  .p-artist__caption {
    font-size: 2.5rem;
  }
}

@media screen and (width <= 780px) {
  .p-artist__caption {
    text-align: center;
    top: -13rem;
    right: 0;
    margin: auto;
    font-size: 3.6rem;
  }
}

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

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

.p-artist__acdn[open] .p-artist__trigger::before {
  transform: rotate(0);
  opacity: 0;
}

.p-artist__trigger {
  width: 16rem;
  margin: 0 0 0 auto;
  padding: 0.8rem 2.6rem 0.8rem 0;
  text-align: center;
  position: relative;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 3rem;
}

@media screen and (width <= 780px) {
  .p-artist__trigger {
    width: 30rem;
    margin: 14rem auto 0;
    padding: 1rem 2.6rem 1rem 0;
    font-size: 2.4rem;
  }
}

.p-artist__trigger::before,
.p-artist__trigger::after {
  display: inline-block;
  content: "";
  width: 1.6rem;
  height: 0.16rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  background: #fff;
}

@media screen and (width <= 780px) {
  .p-artist__trigger::before,
  .p-artist__trigger::after {
    width: 2rem;
    right: 4rem;
  }
}

.p-artist__trigger::before {
  transform: rotate(90deg);
  transition: 0.3s;
}

.p-artist__list {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 0.1rem solid #000;
}

@media screen and (width <= 780px) {
  .p-artist__list {
    margin-top: 4rem;
    padding-top: 6rem;
  }
}

.p-artist__item {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

@media screen and (width <= 780px) {
  .p-artist__item {
    display: block;
    position: relative;
  }
}

.p-artist__item + .p-artist__item {
  margin-top: 5rem;
}

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

.p-artist__img {
  width: 34%;
  max-width: 71rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (width <= 780px) {
  .p-artist__img {
    width: 48rem;
    left: -8rem;
  }
}

.p-artist__name {
  min-width: 12rem;
  padding: 0.5rem 1rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  text-align: center;
  background-image: linear-gradient(90deg, #000, #474747 40%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 200;
  z-index: 2;
  transform: skewX(-8.5deg);
}

@media screen and (width <= 780px) {
  .p-artist__name {
    min-width: 26rem;
    padding: 0.5rem 4rem;
    bottom: 2rem;
    font-size: 2rem;
    transform: skewX(-15deg);
  }
}

.p-artist__name-item {
  display: inline-block;
  transform: skewX(8.5deg);
}

@media screen and (width <= 780px) {
  .p-artist__name-item {
    transform: skewX(15deg);
  }
}

.p-artist__inner {
  width: 66%;
  font-size: 1.6rem;
}

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

.p-artist__achievement {
  display: inline-block;
  border-bottom: 0.1rem solid #000;
}

@media screen and (width <= 780px) {
  .p-artist__achievement {
    width: 50%;
    position: absolute;
    right: -38rem;
    top: 20rem;
    left: 0;
    margin: auto;
    font-size: 2.4rem;
  }
}

@media screen and (width <= 780px) {
  .p-artist__achievement--top {
    display: block;
  }
}

.p-artist__achievement--large {
  font-size: 4rem;
}

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

.p-artist__text,
.p-artist__skill {
  margin-top: 1rem;
}

@media screen and (width <= 780px) {
  .p-artist__text,
  .p-artist__skill {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}

.p-artist__skill-text {
  margin-right: 1rem;
}

.p-artist__amount {
  min-width: 28rem;
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border: 0.1rem solid;
  text-align: center;
  font-weight: 300;
}

@media screen and (width <= 780px) {
  .p-artist__amount {
    display: block;
    width: 70%;
    min-width: 40rem;
    margin: 2rem 0 0 auto;
    padding: 2rem;
    font-size: 2.4rem;
  }
}

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

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

.p-payment__content {
  max-width: 102.4rem;
  margin: auto;
  background: #fff;
  border: 0.1rem solid #000;
  box-shadow: 0.4rem 0.4rem 0.2rem 0 rgb(29 29 29 / 40%);
}

.p-payment__hdg {
  padding: 0.8rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(90deg, #000, #606060);
  font-size: 2.4rem;
}

@media screen and (width <= 780px) {
  .p-payment__hdg {
    padding: 2.5rem;
    font-size: 3rem;
  }
}

.p-payment__inner {
  padding: 3.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (width <= 780px) {
  .p-payment__inner {
    flex-direction: column;
  }
}

.p-payment__text-box {
  width: 87%;
}

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

.p-payment__text {
  font-size: 1.6rem;
}

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

.p-payment__text + .p-payment__text {
  margin-top: 2rem;
}

.p-payment__logo {
  display: block;
  max-width: 42rem;
}

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