/* pores.css — 毛穴治療ページ専用スタイル */

/* ---- カラー変数 ---- */
:root {
  --pores-pink:      #e17373;
  --pores-pink-bg:   #FCF0F0;
  --pores-pink-pale: #FAE8E8;
  --pores-dark:      #1E1E2C;
  --pores-gold:      #7A6328;
  --pores-gold-bg:   #F5F0E8;
  --pores-text:      #333333;
  --pores-white:     #FFFFFF;
}

/* =========================================
   01: FV (KV)
   ========================================= */
#kv.pores-kv {
  position: relative;
  overflow: hidden;
  background: url('../img/pores/pores-fv-bg.webp') no-repeat center / cover;
  padding: clamp(30px, calc(70 / 1440 * 100vw), 70px) 0;
}
#kv.pores-kv::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  max-width: 460px;
  aspect-ratio: 460 / 520;
  background: url('../img/pores/pores-fv-model.webp') no-repeat bottom left / contain;
  pointer-events: none;
}
#lpWrap #kv.pores-kv .pores-kv__heading {
  font-family: var(--font-ZenMaruGothic);
  font-size: clamp(32px, calc(64 / 1440 * 100vw), 64px);
  font-weight: 700;
  color: #6c3030;
  line-height: 1.3;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  margin: 0 0 20px;
}
#lpWrap #kv.pores-kv .pores-kv__heading span {
  font-size: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  display: block;
  letter-spacing: 0.05em;
}
#lpWrap #kv.pores-kv .pores-kv__heading::after {
  position: absolute;
  content: "";
  width: min(490px, 120%);
  bottom: -12%;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: min(1vw, 10px) dotted #e17373;
}
.pores-kv__text {
  position: relative;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.pores-kv__lead {
  font-size: clamp(16px, calc(40 / 1440 * 100vw), 40px);
  font-family: serif;
  font-weight: 700;
  color: var(--pores-text);
  line-height: 1.4;
  margin: clamp(15px, calc(30 / 1440 * 100vw), 30px) 0 clamp(10px, calc(20 / 1440 * 100vw), 20px);
}
.pores-kv__icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.pores-kv__icon-item img {
  width: min(244 / 1440 * 100vw, 244px);
  height: min(244 / 1440 * 100vw, 244px);
  object-fit: contain;
}
.pores-kv__note {
  font-size: clamp(12px, calc(20 / 1440 * 100vw), 20px);
  margin: 0;
}
@media screen and (max-width: 767px) {
  #kv.pores-kv {
    min-height: 260px;
  }
  #kv.pores-kv::before {
    width: 50%;
    max-width: 220px;
  }
  .pores-kv__text {
    margin-left: 20%;
    margin-right: 5%;
    padding: 20px 0;
    gap: 6px;
  }
  #lpWrap #kv.pores-kv .pores-kv__heading {
    display: block;
  }
  .pores-kv__icons {
    gap: 8px;
    flex-wrap: wrap;
  }
  .pores-kv__icon-item img {
    width: 95px;
    height: 95px;
  }
}

/* =========================================
   02: おすすめメニュー
   ========================================= */
.pores-menu {
  padding: 0 15px;
  background: url(../img/acne_acne_scar_treatment/bg.jpg) repeat-y;
  background-size: cover;
  width: 100%;
}
#lpWrap .pores-menu .wrapAll {
  padding: clamp(80px, calc(160 / 1440 * 100vw), 160px) 0;
}
.pores-menu__flex {
  display: flex;
  gap: clamp(40px, calc(80 / 1440 * 100vw), 80px);
  justify-content: center;
  flex-wrap: wrap;
}
.pores-menu__item {
  flex: 1;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(14px, calc(28 / 1440 * 100vw), 28px);
}
.pores-menu__tag {
  width: 100%;
  font-family: var(--font-ZenMaruGothic);
  background: var(--pores-pink);
  color: var(--pores-white);
  font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
  line-height: 1.6;
  font-weight: bold;
  border-radius: 5px;
  margin: 0;
}
.pores-menu__img-wrap {
  width: 100%;
}
.pores-menu__img-wrap img {
  width: 100%;
  object-fit: contain;
}
.pores-menu__name {
  font-family: var(--font-ZenMaruGothic);
  font-size: clamp(20px, calc(28 / 1440 * 100vw), 28px);
  font-weight: bold;
  color: var(--pores-text);
  margin: 0;
}
.pores-menu__price-box {
  width: 100%;
  border: 1px solid var(--pores-pink);
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}
.pores-menu__area, 
.pores-menu__price {
  font-family: var(--font-ZenMaruGothic);
  font-size: clamp(20px, calc(28 / 1440 * 100vw), 28px);
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .pores-menu {
    padding: 40px 15px;
  }
  .pores-menu__flex {
    flex-direction: column;
    align-items: center;
  }
  .pores-menu__item {
    max-width: 100%;
    width: 100%;
  }
}

/* =========================================
   03: CTA
   ========================================= */
.pores-cta {
  background: linear-gradient(45deg, #FFEAEA, #FFD3D3);
}
.pores-cta .lp-cta {
  transform: translateY(-30px);
  padding: 0;
}

/* =========================================
   04: このようなお悩みはありませんか？
   ========================================= */
#lpWrap.pores__trouble #co02Wrap {
  background-size: cover;
  aspect-ratio: 1200 / 540;
  background-position: center center;
}

/* =========================================
   05: 毛穴のタイプ
   ========================================= */
.pores-type__triangle {
  width: clamp(200px, calc(400 / 1440 * 100vw), 400px);
  height: clamp(40px, calc(80 / 1440 * 100vw), 80px);
  background-color: #CBC3AF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 60px auto 30px;
}
.pores-yours__title {
  font-size: clamp(23px, calc(46 / 1440 * 100vw), 46px);
  font-weight: bold;
  color: var(--pores-pink);
  text-align: center;
  margin: 0 0 40px;
}
.pores-yours__flex {
  display: flex;
  gap: clamp(20px, calc(40 / 1440 * 100vw), 40px);
  justify-content: center;
  padding: 20px;
}
.pores-yours__img-wrap {
  flex: 1;
  max-width: 500px;
}
.pores-yours__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .pores-yours {
    padding: 48px 0;
  }
  .pores-yours__title {
  }
  .pores-yours__flex {
    flex-direction: column;
  }
  .pores-yours__img-wrap {
    max-width: 100%;
  }
}

/* =========================================
   08: 毛穴タイプに合わせた治療
   ========================================= */
.pores-treatment {
  background: var(--pores-pink-bg);
  padding: 0 15px;
}
#lpWrap .pores-treatment .wrapAll {
  padding-bottom: 100px;
}
.pores-treatment__lead {
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, calc(20 / 1440 * 100vw), 20px);
  margin-bottom: clamp(30px, calc(60 / 1440 * 100vw), 60px);
}
.pores-treatment__wrap {
  border-radius: 5px;
  border: 1px solid var(--pores-pink);
  background-color: #fff;
}
.pores-treatment__subtitle {
  text-align: center;
  font-size: clamp(20px, calc(32 / 1440 * 100vw), 32px);
  font-family: var(--font-ZenMaruGothic);
  font-weight: bold;
  color: var(--pores-white);
  background: var(--pores-pink);
}
.pores-tcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
  padding: 20px;
}
.pores-tcard {
  background: var(--pores-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pores-pink);
  align-self: stretch;
}
.pores-tcard__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px 16px;
}
.pores-tcard__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pores-pink);
  color: var(--pores-white);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ZenMaruGothic);
  margin-bottom: 12px;
  position: relative;
}
.pores-tcard__num::before {
  content:'';
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50px;
}
.pores-tcard__name {
  font-family: var(--font-ZenMaruGothic);
  font-size: clamp(20px, calc(24 / 1440 * 100vw), 24px);
  font-weight: 700;
  color: var(--pores-gold);
  line-height: 1.5;
  margin: 0;
}
.pores-tcard__img-wrap {
  padding: 0 16px 16px;
}
.pores-tcard__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.15);
}
.pores-tcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px 24px;
}
.pores-tcard__badge {
  align-self: center;
  font-family: var(--font-ZenMaruGothic);
  background: var(--pores-pink);
  color: var(--pores-white);
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pores-tcard__target {
  font-family: var(--font-ZenMaruGothic);
  text-align: center;
  color: var(--pores-gold);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}
.pores-tcard__desc {
  background: #F5F3EB;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--pores-text);
  margin: 0 0 16px;
  text-align: left;
}
.pores-tcard__detail {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.pores-tcard__detail-item {
  padding: 10px 0;
}
.pores-tcard__detail-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.pores-tcard__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.pores-tcard__detail-label {
  font-family: var(--font-ZenMaruGothic);
  font-weight: 700;
  color: var(--pores-pink);
}
.pores-tcard__detail-text {
  font-family: var(--font-ZenMaruGothic);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--pores-text);
  text-align: left;
  margin: 0;
  padding-left: 26px;
}
.pores-tcard__catch {
  text-align: center;
  color: var(--pores-pink);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: #FFF4F4;
  border-radius: 8px;
  padding: 12px 6px;
  margin: 20px 0 0;
}
@media (max-width: 991px) {
  .pores-tcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pores-tcard-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

/* =========================================
   09: その他の毛穴治療 / 10: 補助治療・ホームケア（共通）
   ========================================= */
.pores-other__wrap,
.pores-homecare__wrap {
  border-radius: 5px;
  background-color: #fff;
  margin: 50px auto 0;
}
.pores-other__title,
.pores-homecare__title {
  text-align: center;
  font-size: clamp(20px, calc(32 / 1440 * 100vw), 32px);
  font-family: var(--font-ZenMaruGothic);
  font-weight: bold;
}
.pores-other__flex,
.pores-homecare__flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 15px;
}
.pores-other__item,
.pores-homecare__item {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--pores-white);
  border-radius: 8px;
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pores-other__name,
.pores-homecare__name {
  font-family: var(--font-ZenMaruGothic);
  font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
  font-weight: bold;
  color: var(--pores-gold);
  margin: 0;
}
.pores-other__badge,
.pores-homecare__badge {
  font-family: var(--font-ZenMaruGothic);
  font-weight: bold;
  padding: 3px 14px;
  border-radius: 20px;
  margin: 0;
}
.pores-other__desc,
.pores-homecare__desc {
  font-family: var(--font-ZenMaruGothic);
  font-weight: bold;
  color: var(--pores-gold);
  margin: 0;
  flex: 1;
}
.pores-other__btn,
.pores-homecare__btn {
  display: flex;
  width: 100%;
  max-width: 220px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--pores-gold);
  padding: 8px 16px;
  font-weight: bold;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s;
}
.pores-other__btn span, 
.pores-homecare__btn span {
  color: var(--pores-gold);
}
.pores-other__btn:hover,
.pores-homecare__btn:hover {
  background: #f5f0e8;
}

/* --- 09: その他の毛穴治療 固有 --- */
.pores-other__wrap { border: 1px solid var(--pores-gold); }
.pores-other__title { color: var(--pores-white); background: var(--pores-gold); }
.pores-other__item { border: 1.5px solid var(--pores-gold); }
.pores-other__badge { background: var(--pores-gold); color: #fff; }

/* --- 10: 補助治療・ホームケア 固有 --- */
.pores-homecare__wrap { border: 1px solid #CBC3AF; }
.pores-homecare__title { background: #CBC3AF; }
.pores-homecare__item { border: 1.5px solid #CBC3AF; }
.pores-homecare__badge { background: #E0D5C5; color: #5A4A35; }

@media screen and (max-width: 767px) {
  .pores-other { padding: 40px 0; }
  .pores-homecare { padding: 40px 0; }
  .pores-other__flex,
  .pores-homecare__flex {
    flex-direction: column;
    align-items: center;
  }
  .pores-other__item,
  .pores-homecare__item {
    max-width: 100%;
    width: 100%;
  }
}
