/* =========================================
           Reset & Base
           ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
}

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* =========================================
           PC Background & SP Wrapper Settings
           ========================================= */

/* Default (SP) - No specific wrapper constraints */
#sp-wrapper {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff; /* Ensure content background is white */
}
#sp-wrapper::before {
  position: absolute;
  width: 150px;
  height: 70px;
  content: "";
  top: 15px;
  left: 15px;
  background-image: url("./img/andus_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}
#sp-wrapper::after {
  position: fixed;
  width: 200px;
  height: 90px;
  content: "";
  bottom: 0;
  left: 46vw;
  background-image: url("./img/andus_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}

@media screen and (max-width: 1648px) {
  #sp-wrapper::after {
    left: 40vw;
  }
}

@media screen and (max-width: 1431px) {
  #sp-wrapper::after {
    left: 35vw;
  }
}

@media screen and (max-width: 1302px) {
  #sp-wrapper::after {
    left: 30vw;
  }
}

@media screen and (max-width: 1169px) {
  #sp-wrapper::after {
    left: 22vw;
  }
}

@media screen and (max-width: 1030px) {
  #sp-wrapper::after {
    left: 17vw;
  }
}

@media screen and (max-width: 946px) {
  #sp-wrapper::after {
    display: none; /* コンテンツと被るため非表示 */
  }
}

/* PC View (Large Screen) Settings */
@media screen and (min-width: 768px) {
  body {
    background-image: url("./img/pc_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #f7efea; /* Fallback color */
  }

  #sp-wrapper {
    position: relative;
    max-width: 430px;
    margin: 0 15% 0 auto;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); /* Drop shadow for depth */
    overflow-x: hidden;
  }
}

/* =========================================
           Component: FV (First View)
           ========================================= */
.Concealer-fv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: #fffdea;
}

.Concealer-fv::before {
  position: absolute;
  width: 150px;
  height: 350px;
  content: "";
  top: 15px;
  right: -25px;
  background-image: url("./img/MV_moji1.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
  animation: fadeIn 1.2s ease-out 2s forwards;
  opacity: 0; /* 初期状態は透明 */
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Concealer-fv::after {
  position: absolute;
  width: 300px;
  height: 150px;
  content: "";
  bottom: 15px;
  left: 15px;
  background-image: url("./img/MV_moji_2.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}

.Concealer-fv__video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画面いっぱいに広げる */
  object-position: center;
  z-index: 1;
}

/* 既存のスタイル */
.fv_two {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none; /* クリックを透過させる場合 */
  z-index: 101; /* ビデオより手前に */
}

/* 画像ごとの配置例 (必要に応じて追加) */
.fv_two img {
  position: absolute;
  top: 10%;
  left: 0;
  width: 380px; /* サイズは適宜 */
  animation: dropDown 1.2s ease-out 0.5s forwards;
  opacity: 0; /* 初期状態は透明 */
}
/* 上から落ちてくるアニメーション */
@keyframes dropDown {
  0% {
    transform: translateY(-80px); /* 上に80pxの位置から */
    opacity: 0;
  }
  100% {
    transform: translateY(0); /* 定位置へ */
    opacity: 1;
  }
}

@media screen and (min-width: 376px) {
  .Concealer-fv {
    height: 700px;
  }
}
@media screen and (max-width: 430px) {
  .Concealer-fv {
    height: 100svh;
  }
  .fv_two img {
    top: 17%;
  }
  .Concealer-fv::before {
    width: 180px;
    height: 410px;
  }
}
@media screen and (max-width: 390px) {
  .Concealer-fv::before {
    width: 180px;
    height: 420px;
  }
}
@media screen and (max-width: 376px) {
  .fv_two img {
    top: 12%;
    width: 82%;
    height: auto;
  }
  .Concealer-fv::before {
    width: 130px;
    height: 320px;
  }
  .Concealer-fv::after {
    width: 300px;
    height: 100px;
  }
}

/* =========================================
           Concealer Section
           ========================================= */
.concealer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fffdea;
}

.concealer-section__container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.concealer-section__title {
  color: #e2a094;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 21px;
  margin-bottom: 40px;
}

.concealer-section__title--accent {
  color: #e2a094;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  display: inline-block;
  /* APPLIED FROM SP STYLES */
  font-size: 24px;
}

.concealer-section__title--accent::before {
  content: "";
  position: absolute;
  bottom: -5px; /* 下からの位置。微調整してください */
  left: 0;
  width: 100%;
  height: 35px; /* 線の高さ（画像の高さに合わせて調整してください） */
  background-image: url("./img/sen_pink.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1; /* 文字の後ろに配置 */
}

.concealer-section__products {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* APPLIED FROM SP STYLES */
  gap: 15px;
  flex-direction: row;
}

.product-card {
  position: relative;
}

.product-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  /* APPLIED FROM SP STYLES */
  width: 150px;
  height: 150px;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.product-card__name {
  font-size: 16px;
  color: #b8a494;
  letter-spacing: 0.1em;
}

.concealer-section__product-name {
  font-size: 23px;
  color: #e2a094;
  margin-bottom: 0px;
  letter-spacing: 0.15em;
}

.concealer-section__price {
  color: #e2a094;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 28px;
}

.concealer-section__price-tax {
  font-size: 16px;
  color: #e2a094;
  margin-left: 5px;
}

.concealer-section__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.button {
  display: block;
  max-width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  /* APPLIED FROM SP STYLES */
  width: 280px;
  font-size: 15px;
}

.button--primary {
  background-color: #d9a199;
  color: #ffffff;
}

.button--primary:hover {
  background-color: #c98f87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 161, 153, 0.3);
}

.button--secondary {
  background-color: #d9a199;
  color: #ffffff;
}

.button--secondary:hover {
  background-color: #c98f87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 181, 170, 0.3);
}

/* =========================================
           Checklist Section
           ========================================= */
.checklist-section {
  background-color: #e8e0d0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
    url("./img/33600157_m.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
  /* APPLIED FROM SP STYLES */
  padding: 60px 20px;
}

.checklist-section__container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.checklist-section__tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 100%;
  /* APPLIED FROM SP STYLES */
  flex-direction: column;
  align-items: center;
  margin-bottom: -60px;
}

.checklist-section__tab {
  /* APPLIED FROM SP STYLES */
  width: 100%;
  padding: 0;
}

.checklist-section__tab-img {
  width: 100%;
  height: auto;
  display: block;
  /* APPLIED FROM SP STYLES */
  max-width: 550px;
}

.checklist-section__card {
  background-color: #fffdea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 60px;
  /* APPLIED FROM SP STYLES */
  padding: 50px 25px 30px;
}

.checklist-section__card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #d9d0c0 transparent transparent transparent;
}

.checklist-section__list {
  list-style: none;
}

.checklist-section__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 2px dashed #d9c9b9;
}

.checklist-section__item:last-child {
  border-bottom: none;
}

.checklist-section__icon {
  width: 28px;
  height: 28px;
  background-color: #e49a8d;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checklist-section__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}

.checklist-section__text {
  flex: 1;
  color: #e49a8d;
  line-height: 1.4;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 16.5px;
}

.checklist-section__recommend {
  text-align: center;
}

.checklist-section__recommend-text {
  color: #8a7a6a;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 19px;
}

.checklist-section__recommend-product {
  margin-bottom: 20px;
  transform: translateY(-5px) !important;
  position: relative;
}

.checklist-section__product-img {
  height: auto;
  display: inline-block;
  pointer-events: none;
  /* APPLIED FROM SP STYLES */
  max-width: 229px;
}

/* =========================================
           Point 01 Section
           ========================================= */
.point01-section {
  background-color: #fffdea;
  position: relative;
  overflow: hidden;
  /* APPLIED FROM SP STYLES */
  padding: 80px 0px;
}

.point01-section__container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.point01-section__number {
  color: #a89482;
  letter-spacing: 0.15em;
  /* APPLIED FROM SP STYLES */
  font-size: 18px;
  margin-bottom: 10px;
}

.point01-section__heading {
  background-color: #e8b5aa;
  /* APPLIED FROM SP STYLES */
  padding: 20px 20px;
  margin-bottom: 30px;
}

.point01-section__heading-text {
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 22px;
}

.point01-section__description {
  color: #8a7a6a;
  line-height: 1.6;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 14px;
  margin-bottom: 40px;
}

.point01-section__video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.point01-section__video {
  width: 100%;
  height: auto;
  background-color: black;
  /* APPLIED FROM SP STYLES */
  max-width: 360px;
  height: 400px; /* kept from original but responsive on SP */
}

/* =========================================
           Point Accent
           ========================================= */
.point-accent {
  position: relative;
  z-index: 100;
}

.point-accent::before {
  content: "";
  background-image: url("./img/motif_1.png");
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
  /* APPLIED FROM SP STYLES */
  right: 15%;
  width: 200px;
  height: 350px;
  z-index: 100;
  transform: rotate(25deg) translate(80px, -150px);
}

/* =========================================
           Point 02 Section
           ========================================= */
.point02-section {
  background-color: #fffdea;
  overflow: hidden;
  /* APPLIED FROM SP STYLES */
  padding: 80px 0;
}

.point02-section__container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.point02-section__brush {
  position: relative;
  z-index: 100;
  left: 0;
}

.point02-section__brush::before {
  content: "";
  background-image: url("./img/motif_2.png");
  position: absolute;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
  /* APPLIED FROM SP STYLES */
  width: 500px;
  height: 350px;
  transform: rotate(12deg) translate(8px, 150px);
  z-index: 100;
}

.point02-section__number {
  color: #a89482;
  letter-spacing: 0.15em;
  /* APPLIED FROM SP STYLES */
  font-size: 18px;
  margin-bottom: 10px;
}

.point02-section__heading {
  background-color: #e8b5aa;
  /* APPLIED FROM SP STYLES */
  padding: 20px 10px;
  margin-bottom: 40px;
}

.point02-section__heading-text {
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 19px;
}

@media screen and (max-width: 768px) {
  .point02-section__heading-text {
    font-size: 17px;
  }
}

.point02-section__description {
  color: #8a7a6a;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  /* APPLIED FROM SP STYLES */
  font-size: 13px;
  margin-bottom: 0;
}

.point02-section__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  /* APPLIED FROM SP STYLES */
  gap: 0px;
}

.point02-section__text-block {
  flex: 1;
  /* APPLIED FROM SP STYLES */
  min-width: 250px;
}

.point02-section__concerns {
  background-color: #f1ecd6;
  margin-top: 40px;
  position: relative;
  /* APPLIED FROM SP STYLES */
  padding: 30px 20px;
}

.point02-section__concerns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("./img/wave-top.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-90%);
}

.point02-section__concerns::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("./img/wave-bottom.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(100%);
}

.point02-section__concerns-title {
  color: #d9a199;
  letter-spacing: 0.05em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 21px;
  margin-bottom: 25px;
}

.point02-section__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  /* APPLIED FROM SP STYLES */
  gap: 0;
  max-width: 400px;
}

.point02-section__icon-item {
  text-align: center;
}

.point02-section__icon-img {
  width: 100%;
  height: auto;
  /* APPLIED FROM SP STYLES */
  max-width: 150px;
}

/* =========================================
           Point 03 Section
           ========================================= */
.point03-section {
  background-color: #fffdea;
  position: relative;
  /* APPLIED FROM SP STYLES */
  padding: 60px 20px 80px;
}

.point03-section__arrow-down {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 35px;
  z-index: 10;
  line-height: 0;
  font-size: 0;
  /* APPLIED FROM SP STYLES */
  border-width: 20px 25px 0 25px;
}

.point03-section__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.point03-section__title-area {
  margin-bottom: 50px;
}

.point03-section__title-main {
  color: #f2b46f;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: inline-block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 24px;
}

.point03-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  gap: 15px;
}

.point03-section__star {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  width: 40px;
}

.point03-section__star-img {
  width: 100%;
  height: auto;
  animation: twinkle 3s infinite ease-in-out;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.point03-section__product {
  width: 100%;
  position: relative;
  /* APPLIED FROM SP STYLES */
  max-width: 180px;
}

.point03-section__product-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* =========================================
           Type Select Section
           ========================================= */
.type-select {
  width: 100%;
  overflow: hidden;
}

.type-select__header {
  background-color: #dab56e;
  text-align: center;
  position: relative;
  color: #ffffff;
  /* APPLIED FROM SP STYLES */
  padding: 15px 0;
}

.type-select__title {
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 20px;
  gap: 15px;
  padding: 0;
}

.type-select__title::before,
.type-select__title::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.8;
}

.type-select__header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #dcb365 transparent transparent transparent;
  z-index: 2;
}

.type-select__body {
  background: linear-gradient(90deg, #d5bfa8 50%, #dcd0da 50%);
  display: flex;
  justify-content: center;
  /* APPLIED FROM SP STYLES */
  padding-top: 30px;
  padding-bottom: 40px;
  flex-direction: row;
}

.type-select__column {
  width: 50%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* APPLIED FROM SP STYLES */
  padding: 0 10px;
}

.type-select__balloon {
  background-color: #ffffff;
  position: relative;
  width: 100%;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* APPLIED FROM SP STYLES */
  padding: 8px 5px;
  margin-bottom: 15px;
  border-radius: 30px;
}

.type-select__balloon-text {
  color: #87786a;
  /* APPLIED FROM SP STYLES */
  font-size: 13px;
}

.type-select__balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
}

.type-select__column--right .type-select__balloon-text {
  color: #b7a4c1;
}

.type-select__image-wrapper {
  width: 100%;
  max-width: 250px;
  position: relative;
  pointer-events: none;
  /* APPLIED FROM SP STYLES */
  margin-bottom: 10px;
}

.type-select__img {
  width: 70%;
  margin: 0 auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.type-select__name {
  color: #948174;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* APPLIED FROM SP STYLES */
  font-size: 16px;
  margin-bottom: 20px;
}

.type-select__column--right .type-select__name {
  color: #b9a5c6;
}

.type-select__link {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: opacity 0.3s;
  position: relative;
  border: 1px solid transparent;
  /* APPLIED FROM SP STYLES */
  padding: 8px 0;
  font-size: 15px;
  max-width: 140px;
}

.type-select__link:hover {
  opacity: 0.8;
}

.type-select__column--left .type-select__link {
  background-color: #958274;
}

.type-select__column--right .type-select__link {
  background-color: #bdaed6;
}

/* =========================================
           Type Section (Toggle)
           ========================================= */
.type-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 0;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.type-section.theme-effect {
  background-color: #d5bfa8;
}

.type-section.theme-cover {
  background-color: #dcd0da;
}

.type-section__header {
  background-color: #fffdea;
  text-align: center;
  position: relative;
  /* APPLIED FROM SP STYLES */
  padding: 40px 20px 30px;
}

.type-section__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: #fcf8f2 transparent transparent transparent;
}

.type-section__title-en {
  font-size: 24px;
  color: #8a7a6a;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.type-section__title-ja {
  font-size: 18px;
  color: #8a7a6a;
  margin-bottom: 40px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.type-section__tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 10px 10px 0 0;
}

.type-section__tab {
  text-align: center;
  cursor: pointer;
  border: none;
  background-color: #e0e0e0;
  color: #fff;
  position: relative;
  transition: all 0.3s;
  /* APPLIED FROM SP STYLES */
  font-size: 16px;
  padding: 12px 0;
  width: 50%;
  max-width: none;
}

.type-section__tab[data-target="effect"] {
  background-color: #d5bfa8;
  color: #948075;
  border-radius: 10px 0 0 0;
}

.type-section__tab[data-target="cover"] {
  background-color: #dcd0da;
  color: #fff;
  border-radius: 0 10px 0 0;
}

.type-section__container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0 0;
  display: none;
}

.type-section__container.is-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.type-section__content-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  /* APPLIED FROM SP STYLES */
  padding: 0 20px;
}

.type-section__top-area {
  display: flex;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  gap: 15px;
  margin-bottom: 30px;
}

.type-section__top-img-box {
  flex-shrink: 0;
  /* APPLIED FROM SP STYLES */
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.type-section__top-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 5px;
  pointer-events: none;
}

.type-section__top-info {
  flex: 1;
  color: #fff;
  text-align: center;
}

.type-section__product-title {
  letter-spacing: 0.05em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 18px;
  margin-bottom: 10px;
}

.type-section__product-desc {
  line-height: 1.8;
  /* APPLIED FROM SP STYLES */
  font-size: 0.86rem;
  margin-bottom: 15px;
}

.type-section__btn {
  display: inline-block;
  background-color: #958274;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s;
  /* APPLIED FROM SP STYLES */
  padding: 8px 15px;
  font-size: 14px;
}

.type-section__btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.type-section__middle-area {
  /* APPLIED FROM SP STYLES */
  margin-bottom: 40px;
}

.type-section__howto-img-box {
  width: 100%;
  background-color: transparent;
}

.type-section__howto-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.type-section__bottom-area {
  background-color: #ad8168;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  /* APPLIED FROM SP STYLES */
  padding: 20px 20px;
}

.type-section__bottom-inner {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.type-section.theme-cover .type-section__bottom-inner {
  color: #fff;
}

.type-section__bulb-box {
  display: flex;
  justify-content: right;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  width: 20%;
}

.type-section__bulb-img {
  height: auto;
  pointer-events: none;
  /* APPLIED FROM SP STYLES */
  width: 50px;
}

.type-section__bottom-text-box {
  text-align: left;
  /* APPLIED FROM SP STYLES */
  width: 80%;
  padding-left: 10px;
}

.type-section__bottom-text {
  line-height: 1.6;
  text-align: center;
  /* APPLIED FROM SP STYLES */
  font-size: 15px;
}

.type-section__bottom-highlight {
  color: #f5e376;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 16px;
}

.type-section.theme-effect .type-section__btn {
  background-color: #958274;
}
.type-section.theme-effect .type-section__bottom-area {
  background-color: #ad8168;
}

.type-section.theme-cover .type-section__btn,
.type-section.theme-cover .type-section__bottom-area {
  background-color: #aca2c7;
}

.type-section.theme-cover .type-section__btn {
  background-color: #b9a3c7;
}
.type-section.theme-cover .type-section__bottom-area {
  background-color: #baa4c8;
}

/* =========================================
           How To Use Section
           ========================================= */
.htu-section {
  background-color: #fffdea;
  text-align: center;
  overflow: hidden;
  /* APPLIED FROM SP STYLES */
  padding: 60px 0;
}

.htu-section__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  /* APPLIED FROM SP STYLES */
  padding: 0 20px;
  box-sizing: border-box;
}

.htu-section__title {
  color: #938070;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 24px;
  margin-bottom: 30px;
}

.htu-section__subtitle {
  color: #948174;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  display: block;
  background: transparent;
  padding: 0;
  font-size: 18px;
  margin-bottom: 5px;
}

.htu-section__subtitle::after {
  content: "";
  display: block;
  width: 80%;
  margin: 15px auto 0;
  border-top: 2px dashed #e0d9bf;
  margin-bottom: 45px;
}

.htu-swiper {
  width: 100%;
  padding-bottom: 40px;
  overflow: visible;
  margin-bottom: 60px;
}
.htu-swiper:last-of-type {
  margin-bottom: 0;
}

.htu-section__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  touch-action: pan-y;
}

.htu-section__card {
  border: 1px solid #c4b2a6;
  border-radius: 120px 120px 0 0;
  background-color: #f7efea;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  /* APPLIED FROM SP STYLES */
  max-width: 83%;
  min-height: 340px;
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
}

.htu-section__number {
  font-size: 32px;
  color: #948174;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.05em;
  line-height: 1;
}

.htu-section__image-box {
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* APPLIED FROM SP STYLES */
  width: 75%;
  height: 75%;
}

.htu-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.htu-section__desc {
  color: #948174;
  line-height: 1.4;
  text-align: center;
  word-break: break-all;
  margin: 0;
  /* APPLIED FROM SP STYLES */
  font-size: 15px;
}

.htu-section__arrow {
  display: none;
}

.htu-section__note {
  font-size: 12px;
  color: #bfb9a6;
  margin-top: 30px;
  margin-bottom: 25px;
}

.swiper-pagination-bullet {
  background: #dcdcdc;
  opacity: 1;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background: #948174;
}

/* =========================================
           Staff Section
           ========================================= */
.staff-section {
  background-color: #f7efea;
  text-align: center;
  position: relative;
  /* APPLIED FROM SP STYLES */
  padding: 30px 20px;
}

.staff-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("./img/staff-bottom.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(100%);
}

.staff-section__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.staff-section__title {
  color: #938070;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 28px;
  margin-bottom: 20px;
}

.staff-section__desc {
  color: #938070;
  line-height: 2;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 14px;
  text-align: center;
}

.new-staff-section {
  position: relative;
  background-color: #f1ecd6;
  padding: 60px 0 80px;
  /* overflow: hidden; */
}

.new-staff-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(./img/wave-top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-90%);
}

.new-staff-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url(./img/wave-bottom.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(100%);
}

.new-staff-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-repeat: repeat-x;
  background-size: 80px 40px;
  z-index: 1;
}

.new-staff-wave--top {
  top: -1px;
  background-image: radial-gradient(
    circle at 40px -15px,
    transparent 40px,
    #f1ecd6 41px
  );
  transform: rotate(180deg);
}

.new-staff-wave--bottom {
  bottom: -1px;
  background-image: radial-gradient(
    circle at 40px -15px,
    transparent 40px,
    #f1ecd6 41px
  );
}

.new-staff-section__container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.new-staff-section__title {
  color: #938070;
  letter-spacing: 0.1em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-size: 31px;
  margin-bottom: 20px;
}

.new-staff-section__desc {
  color: #938070;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Staff List Container */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 60px; /* カード間の余白 */
  width: 100%;
}

.staff-card {
  width: 100%;
}

/* Profile Header (横並びに修正) */
.staff-card__header {
  display: flex;
  flex-direction: row; /* 横並び */
  align-items: center;
  justify-content: center; /* 全体を中央寄せ */
  gap: 15px;
  margin-bottom: 20px;
}

.staff-card__icon-wrap {
  width: 70px; /* サイズ調整 */
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.staff-card__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__info {
  text-align: left; /* テキストは左揃え */
}

.staff-card__shop {
  font-size: 15px;
  color: #938070;
  line-height: 1.4;
  margin-bottom: 5px;
}

.staff-card__name-row {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 左寄せ */
  gap: 10px;
  flex-wrap: wrap;
}

.staff-card__name {
  font-size: 24px;
  color: #938070;
  line-height: 1;
  letter-spacing: 0.05em;
}

.staff-card__insta {
  background-color: #938070; /* インスタタグ風 */
  color: #fff;
  font-size: 15px;
  padding: 3px 10px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Body Content (Video + Bubble) - 横並びレイアウト */
.staff-card__body {
  display: flex;
  align-items: stretch;
  gap: 15px;
  justify-content: center;
}

/* 左側：動画 */
.staff-card__video-col {
  width: 45%; /* 動画の幅 */
}

.staff-card__video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177%; /* 9:16比率 */
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.staff-card__video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.staff-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
}

.staff-card__play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

/* 右側：吹き出し */
.staff-card__bubble-col {
  width: 55%; /* 吹き出しの幅 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-card__bubble {
  background-color: #fdf5f2; /* ピンクっぽい白 */
  border: 1px solid #ddb8aa;
  border-radius: 10px;
  padding: 15px 12px;
  position: relative;
  text-align: left;
  height: 100%; /* 動画と同じ高さにする */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上下に分散 */
}

/* 吹き出しのしっぽ（左向き） */
.staff-card__bubble::after {
  content: "";
  position: absolute;
  transform: scaleX(-1);
  bottom: -15px; /* 位置調整 */
  left: 10px; /* 左へ飛び出す */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 15px 0;
  border-color: transparent #ddb8aa transparent transparent;
}

/* 吹き出しの中身 */
.staff-card__bubble-title {
  font-size: 20px;
  color: #938070;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 700;
}

.staff-card__bubble-line {
  width: 100%;
  height: 1px;
  background-color: #ddb8aa;
  margin-bottom: 8px;
  opacity: 0.5;
}

.staff-card__bubble-text {
  font-size: 15px;
  color: #938070;
  line-height: 1.6;
  margin-bottom: 10px;
  flex-grow: 1;
}

.staff-card__modal-btn {
  background-color: #f4b982; /* オレンジ */
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.staff-card__modal-btn:hover {
  opacity: 0.8;
}

/* video タグ */
.staff-card__video-wrap {
  cursor: pointer;
}

.staff-card__video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 動画なし：吹き出し横100% */
.staff-card__bubble--full {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  justify-content: flex-start;
  gap: 10px;
}

/* しっぽを上向きに */
.staff-card__bubble--full::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 40px;
  bottom: auto;
  transform: none;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #ddb8aa transparent;
}

/* ボタン幅を抑える */
.staff-card__bubble--full .staff-card__modal-btn {
  width: auto;
  padding: 8px 40px;
}

/* =========================================
           Modal
           ========================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  /* APPLIED FROM SP STYLES */
  padding: 0;
}

.modal.is-active {
  display: flex;
}

.modal-content {
  background-color: #f3eeea;
  max-width: 800px;
  border-radius: 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #c1b5a9;
  /* APPLIED FROM SP STYLES */
  padding: 30px 20px;
  width: 95%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  color: #938070;
  cursor: pointer;
  z-index: 10;
}

.modal-body {
  display: flex;
  /* APPLIED FROM SP STYLES */
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.modal-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modal-profile-area {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 10px;
  /* APPLIED FROM SP STYLES */
  margin-bottom: 20px;
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-profile-text {
  text-align: left;
}

.modal-shop-name {
  font-size: 13px;
  color: #938070;
  line-height: 1.4;
  margin-bottom: 5px;
}

.modal-user-name {
  font-size: 28px;
  color: #938070;
  line-height: 1;
  margin-bottom: 5px;
}

.modal-insta-tag {
  display: inline-block;
  background-color: #938070;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.modal-bubble {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  flex-grow: 1;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.modal-bubble::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #fff transparent;
}

.modal-title {
  font-size: 24px;
  color: #938070;
  margin-bottom: 10px;
}

.modal-stars {
  font-size: 18px;
  color: #938070;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.modal-line {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 15px;
  color: #938070;
  line-height: 1.8;
}

.modal-right-col {
  width: 45%;
  max-width: 320px;
  /* APPLIED FROM SP STYLES */
  display: none;
}

.modal-video-wrapper {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  /* APPLIED FROM SP STYLES */
  min-height: 300px;
  aspect-ratio: 9/16;
}

.modal-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* =========================================
           Final CTA
           ========================================= */
.final-cta {
  background-color: #fffdea;
  text-align: center;
  color: #938070;
  /* APPLIED FROM SP STYLES */
  padding: 60px 20px;
}

.final-cta__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.final-cta__title {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* APPLIED FROM SP STYLES */
  font-size: 31px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.final-cta__desc {
  /* APPLIED FROM SP STYLES */
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}

.final-cta__card {
  background-color: #e6d2c1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* APPLIED FROM SP STYLES */
  padding: 40px 20px;
  border-radius: 15px;
}

.final-cta__products {
  display: flex;
  justify-content: center;
  /* APPLIED FROM SP STYLES */
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.final-cta__item {
  display: block;
  transition: opacity 0.3s;
  /* APPLIED FROM SP STYLES */
  width: 100%;
  max-width: 240px;
}

.final-cta__image-box {
  width: 100%;
  margin-bottom: 15px;
  pointer-events: none;
}

.final-cta__img {
  width: 100%;
  height: auto;
  display: block;
}

.final-cta__item-name {
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  /* APPLIED FROM SP STYLES */
  font-size: 16px;
}

.final-cta__product-name {
  color: #fff;
  letter-spacing: 0.1em;
  /* APPLIED FROM SP STYLES */
  font-size: 18px;
}

.final-cta__price {
  color: #fff;
  letter-spacing: 0.05em;
  /* APPLIED FROM SP STYLES */
  font-size: 20px;
  margin-bottom: 30px;
}

.final-cta__tax {
  font-size: 14px;
  margin-left: 5px;
}

.final-cta__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.final-cta__buttons a {
  text-decoration: none;
}

.final-cta__btn {
  display: block;
  width: 100%;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  /* APPLIED FROM SP STYLES */
  font-size: 17px;
  padding: 12px 0;
  max-width: 280px;
}

.final-cta__btn:hover {
  opacity: 0.8;
}

.final-cta__btn--cart {
  background-color: #a38c7d;
}

.final-cta__btn--page {
  background-color: #a38c7d;
}

/* =========================================
           Footer Section
           ========================================= */
.footer-section {
  background-color: #938070;
  text-align: center;
  color: #ffffff;
  /* APPLIED FROM SP STYLES */
  padding: 50px 20px;
}

.footer-section__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  gap: 30px;
}

.footer-section__logo {
  /* APPLIED FROM SP STYLES */
  width: 150px;
  max-width: 100%;
}

.footer-section__logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-section__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  /* APPLIED FROM SP STYLES */
  gap: 30px;
}

.footer-section__sns-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  /* APPLIED FROM SP STYLES */
  font-size: 20px;
}

.footer-section__sns-link img {
  width: 100%;
  height: 75%;
  object-fit: contain;
}

.footer-section__sns-link:hover {
  opacity: 0.7;
}
