/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  color: #333;
  background-color: #CF92BD;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Layout
   ======================================== */
.header,
.main {
  width: 100%;
}

.header__inner,
.main > section > div {
  max-width: 46.875rem; /* 750px */
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Header
   ======================================== */
.header {
  background-color: #CF92BD;
}

.header__inner {
  padding: 0;
  position: relative;
}

.header__logo {
  position: fixed;
  top: 1.5rem;
  left: max(1.5rem, calc((100vw - 46.875rem) / 2 + 1.5rem));
  z-index: 1000;
}

.header__logo-link {
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.header__logo-link:hover {
  opacity: 0.7;
}

.header__logo-image {
  width: 9.375rem; /* 150px */
  height: auto;
  display: block;
}

.header__title {
  margin: 0;
  line-height: 1;
}

.header__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Main
   ======================================== */
.main {
  background-color: #CF92BD;
}

/* ========================================
   Price Section
   ======================================== */
.price-section {
  background-color: #CF92BD;
}

.price-section__inner {
  padding: 0;
  position: relative;
}

.price-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.price-section__buttons {
  position: absolute;
  bottom: 13.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 76%;
}

.price-section--secondary .price-section__buttons {
  bottom: 18%;
  width: 76%;
}

.price-section--tertiary .price-section__buttons {
  bottom: 16%;
  width: 76%;
}

.price-section--final .price-section__buttons {
  bottom: 30%;
  width: 76%;
}

.price-section__button {
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.price-section__button:hover {
  opacity: 0.7;
}

.price-section__button-image {
  width: 100%;
  height: auto;
  display: block;
}

.price-section--secondary {
  margin-top: 0;
}

.price-section--tertiary {
  margin-top: 0;
}

.price-section--final {
  margin-top: 0;
}

/* ========================================
   Trouble Section
   ======================================== */
.trouble-section {
  background-color: #CF92BD;
}

.trouble-section__inner {
  padding: 0;
}

.trouble-section__title {
  margin: 0;
  line-height: 1;
}

.trouble-section__content {
  margin-top: 0;
}

.trouble-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Suggestion Section
   ======================================== */
.suggestion-section {
  background-color: #CF92BD;
}

.suggestion-section__inner {
  padding: 0;
}

.suggestion-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Point Section
   ======================================== */
.point-section {
  background-color: #CF92BD;
}

.point-section__inner {
  padding: 0;
}

.point-section__title {
  margin: 0;
  line-height: 1;
}

.point-section__item {
  margin-top: 0;
}

.point-section__item-title {
  margin: 0;
  line-height: 1;
}

.point-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Difference Section
   ======================================== */
.difference-section {
  background-color: #CF92BD;
}

.difference-section__inner {
  padding: 0;
}

.difference-section__title {
  margin: 0;
  line-height: 1;
}

.difference-section__content {
  margin-top: 0;
}

.difference-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   BA Section (Before/After)
   ======================================== */
.ba-section {
  background-color: #CF92BD;
}

.ba-section__inner {
  padding: 0;
  position: relative;
}

.ba-section__title {
  margin: 0;
  line-height: 1;
}

.ba-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.ba-section__slider-container {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.ba-swiper {
  width: 87%;
  height: auto;
  margin: 0 auto;
}

.ba-swiper .swiper-wrapper {
  height: 100%;
}

.ba-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  /* align-items: flex-start; */
  /* width: 40.625rem; */
  /* height: 100%; */
  /* background-color: #9f4985; */
  /* padding: 1.5rem 3.125rem; */
}

.ba-section__slide-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation Buttons */
.ba-section__button-prev,
.ba-section__button-next {
  position: absolute;
  top: 50%;
  width: 12%;
  max-width: 5.625rem; /* 90px */
  height: auto;
  aspect-ratio: 90 / 120;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.ba-section__button-prev:hover,
.ba-section__button-next:hover {
  opacity: 0.7;
}

.ba-section__button-prev {
  left: 0;
  transform: translateY(-50%);
}

.ba-section__button-next {
  right: 0;
  transform: translateY(-50%) rotate(180deg) scaleY(-1);
}

.ba-section__button-prev img,
.ba-section__button-next img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Pagination */
.ba-swiper__pagination {
  position: absolute !important;
  left: 50% !important;
  width: 100% !important;
  transform: translate(-50%) !important;
  justify-content: center !important;
  top: 69% !important;
  display: flex !important;
  gap: 1rem !important; /* 16px */
  z-index: 10 !important;
}

.ba-swiper__pagination .swiper-pagination-bullet {
  width: 0.625rem; /* 10px */
  height: 0.625rem; /* 10px */
  border-radius: 50%;
  background-color: transparent;
  border: 0.125rem solid #fff; /* 2px */
  opacity: 1;
  margin: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.ba-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #ffa4df;
  border-color: #ffa4df;
}

/* ========================================
   Caution Section
   ======================================== */
.caution-section {
  background-color: #CF92BD;
}

.caution-section__inner {
  padding: 0;
}

.caution-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background-color: #CF92BD;
}

.about-section__inner {
  padding: 0;
}

.about-section__title {
  margin: 0;
  line-height: 1;
}

.about-section__item {
  margin-top: 0;
}

.about-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Item Section
   ======================================== */
.item-section {
  background-color: #CF92BD;
}

.item-section__inner {
  padding: 0;
}

.item-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Step Section
   ======================================== */
.step-section {
  background-color: #CF92BD;
}

.step-section__inner {
  padding: 0;
}

.step-section__title {
  margin: 0;
  line-height: 1;
}

.step-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Information Section
   ======================================== */
.information-section {
  background-color: #CF92BD;
}

.information-section__inner {
  padding: 0;
}

.information-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Q&A Section
   ======================================== */
.qa-section {
  background-color: #CF92BD;
}

.qa-section__inner {
  padding: 0;
}

.qa-section__title {
  margin: 0;
  line-height: 1;
}

.qa-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Doctor Section
   ======================================== */
.doctor-section {
  background-color: #CF92BD;
}

.doctor-section__inner {
  padding: 0;
}

.doctor-section__title {
  margin: 0;
  line-height: 1;
}

.doctor-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Clinic Section
   ======================================== */
.clinic-section {
  background-color: #CF92BD;
}

.clinic-section__inner {
  padding: 0;
  position: relative;
}

.clinic-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.clinic-section__map {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 89.33%;
  max-width: 41.875rem;
  aspect-ratio: 1 / 1;
  border: 0.9375rem solid #6A6E75;
}

.clinic-section__map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.clinic-section__button {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 89%;
}

.clinic-section__button-link {
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.clinic-section__button-link:hover {
  opacity: 0.7;
}

.clinic-section__button-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Message Section
   ======================================== */
.message-section {
  background-color: #CF92BD;
}

.message-section__inner {
  padding: 0;
}

.message-section__image {
  width: 100%;
  height: auto;
}

/* ========================================
   Fixed Bottom Navigation
   ======================================== */
.fixed-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 46.875rem; /* 750px */
  z-index: 1000;
}

.fixed-nav__inner {
  display: flex;
  width: 100%;
}

.fixed-nav__button {
  flex: 1;
  display: block;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.fixed-nav__button:hover {
  opacity: 0.9;
}

.fixed-nav__button-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Performance Optimization
   ======================================== */
img {
  content-visibility: auto;
}
