/* ===============================
   Premium FV 確実ズームCSS版
   JSなし・imgなし・疑似要素のみ
================================ */

/* ===== Swipe Container ===== */
.v-swipe{
  height:100svh;
  overflow-y:auto;
  scroll-snap-type:y mandatory;
  scroll-behavior:smooth;
}

/* 各セクション */
.v-swipe > section{
  scroll-snap-align:start;
  scroll-snap-stop:always;
  min-height:100svh;
}

/* ===== FV本体 ===== */
.premium-fv {
  position: relative;
  height: 100svh; 
  overflow: hidden;

  display: flex;
  align-items: flex-start;  /* ← 中央やめる */
  justify-content: center;

  padding-top: 15vh;        /* ← ここで位置を決める */
  padding-bottom: 10vh;     /* 下にも余白 */

  background: #081226;
  color: #f5f7fa;
  font-family: "Noto Sans JP", sans-serif;
}

/* ===== 背景（SPデフォルト） ===== */
.premium-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("/wp-content/themes/ystandard-child/image/premium_fv_bg_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform-origin: center center;

  animation: premiumZoom 5s ease-in-out infinite alternate;
}


/* ===== PC用に差し替え ===== */
@media (min-width:1024px){

  .premium-fv::before{
    background-image: url("/wp-content/themes/ystandard-child/image/premium_fv_bg_pc.webp");
  }

}


/* ===== ズームアニメーション ===== */
@keyframes premiumZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.3); }
}

/* ===== テキスト ===== */
.premium-fv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: premiumFadeUp 1s ease forwards;
}

@keyframes premiumFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.premium-fv-name{
  font-size: clamp(34px, 4.2vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin-top: 0!important;

  font-weight: 600;

  color: #d6c7a3;

  text-transform: uppercase;

  text-shadow: 0 0 18px rgba(214,199,163,0.18);
}
.premium-fv-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 30px;
}

.premium-fv-sub {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 40px;
}

.premium-fv-label {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom : 0px!important;
}
.premium-fv-name{
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 0.08em; /* ← 詰める */
  margin-top: 0!important;

  font-weight: 600;

  /* 高級感のある淡いゴールド */
  color: #d6c7a3;

  /* ほんのり光を出す */
  text-shadow: 0 0 10px rgba(214,199,163,0.15);
}

/* ===== Premium FV 明朝設定 ===== */

/* 明朝フォント指定（Windows / Mac 両対応） */
.premium-fv-title,
.premium-fv-label,
.premium-fv-name {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "MS Mincho",
    serif;
}

/* タイトルは少しだけ品を出す */
.premium-fv-title {
  font-weight: 500; /* 400だと少し弱いので */
}

/* Premium LP は少し強め */
.premium-fv-name {
  font-weight: 600;
}

/* PCのみ セクション間の白帯消す */
@media (min-width:1024px){

  .premium-intro{
    margin-bottom:0 !important;
  }

  .premium-worry{
    margin-top:0 !important;
  }

}

.premium-fv-cta{
  display:inline-block;
  margin-top:24px;
  padding:12px 24px;
  border:1px solid rgba(255,255,255,.6);
  border-radius:30px;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:.3s;
}

.premium-fv-cta:hover{
  background:rgba(255,255,255,.15);
}

/* ==================================================
   Premium Section Base（1セクション＝1画面）
================================================== */

.premium-section{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:14vh 20px 10vh;
  color:#f5f7fa;
  overflow:hidden;
  background:#081226;
}

.premium-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.premium-inner{
  position:relative;
  z-index:2;
}

/* ==================================================
   SP 背景
================================================== */

.premium-intro::before{
  background:
    linear-gradient(rgba(8,18,38,0.25), rgba(8,18,38,0.35)),
    url("/wp-content/themes/ystandard-child/image/premium_intro_sp.webp")
    center bottom / cover no-repeat;
}

.premium-worry::before{
  background:
    linear-gradient(rgba(8,18,38,0.25), rgba(8,18,38,0.35)),
    url("/wp-content/themes/ystandard-child/image/premium_worry_sp.webp")
    center bottom / cover no-repeat;
}

.premium-risk::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(
      180deg,
      rgba(8,18,38,0.25) 0%,
      rgba(8,18,38,0.35) 40%,
      rgba(8,18,38,0.75) 75%,
      rgba(8,18,38,0.9) 100%
    ),
    url("/wp-content/themes/ystandard-child/image/premium_risk_sp.webp")
    center bottom / cover no-repeat;
}

.premium-flow::before{
  background:
    linear-gradient(rgba(8,18,38,0.25), rgba(8,18,38,0.35)),
    url("/wp-content/themes/ystandard-child/image/premium_intro_sp.webp")
    center bottom / cover no-repeat;
}

/* ==================================================
   PC 背景
================================================== */

@media (min-width:1024px){

  .premium-intro::before{
    background:
      linear-gradient(rgba(8,18,38,0.22), rgba(8,18,38,0.32)),
      url("/wp-content/themes/ystandard-child/image/premium_intro_pc.webp")
      center bottom / cover no-repeat;
  }

  .premium-worry::before{
    background:
      linear-gradient(rgba(8,18,38,0.22), rgba(8,18,38,0.32)),
      url("/wp-content/themes/ystandard-child/image/premium_worry_pc.webp")
      center bottom / cover no-repeat;
  }
  .premium-flow::before{
    background:
      linear-gradient(rgba(8,18,38,0.22), rgba(8,18,38,0.32)),
      url("/wp-content/themes/ystandard-child/image/premium_intro_pc.webp")
      center bottom / cover no-repeat;
  }
	

@media (min-width:1024px){
  .premium-risk::before{
    background:
      linear-gradient(
        180deg,
        rgba(8,18,38,0.22) 0%,
        rgba(8,18,38,0.32) 40%,
        rgba(8,18,38,0.75) 75%,
        rgba(8,18,38,0.9) 100%
      ),
      url("/wp-content/themes/ystandard-child/image/premium_risk_pc.webp")
      center bottom / cover no-repeat;
}
}
}

/* ==================================================
   Heading
================================================== */

.premium-heading{
  font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN","MS Mincho",serif;
  font-size:clamp(30px,3.2vw,52px);
  font-weight:500;
  letter-spacing:0.05em;
  line-height:1.4;
  margin-bottom:35px;
  color:#d4c29a;
  text-align:center;
  opacity:0;
  transform:translateY(30px);
  animation:fadeUpHeading 1.2s ease forwards;
}

.premium-heading::after{
  content:"";
  display:block;
  width:90px;
  height:1px;
  margin:24px auto 0;
  background:rgba(212,194,154,0.7);
}

@keyframes fadeUpHeading{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ==================================================
   Body Text
================================================== */

.premium-text{
  max-width:760px;
  margin:0 auto;
  text-align:left;
}

.premium-text p{
  font-size:clamp(16px,1.2vw,20px);
  line-height:2.1;
  font-weight:300;
  margin-bottom:26px;
  color:rgba(245,247,250,0.92);
}

/* ==================================================
   Worry Section
================================================== */

.premium-worry{
  position:relative;
  padding:60px 20px;
  color:#fff;
}

.premium-worry::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.45) 100%
  );
}

.premium-worry__inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  text-align:left;
}

/* =====================================
   WORRY 装飾完全復元
===================================== */

.premium-worry__inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

/* --- 枠付きラベル --- */
.premium-worry__kicker{
  display:inline-block;
  margin:0 auto 24px;
  padding:8px 20px;
  font-size:13px;
  letter-spacing:.08em;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

/* --- 見出し中央 --- */
.premium-worry__title{
  margin:0 auto 30px;
  font-size:23px;
  line-height:1.4;
  max-width:18em;
  text-align:center;
}

/* --- リード文 --- */
.premium-worry__lead{
  margin:0 auto 20px;
  font-size:15px;
  line-height:1.9;
  max-width:42em;
  text-align:left;
  color:rgba(255,255,255,.92);
}

/* --- グリッド --- */
.premium-worry__grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-left : -15px;
}

/* --- カード --- */
.premium-worry__card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:10px 18px;
  text-align:left;
}

/* --- 小見出し（小さい文字） --- */
.premium-worry__cardTitle{
  font-size:12px;
  letter-spacing:.08em;
  margin:0 0 8px;
  color:rgba(255,255,255,.65);
}

/* --- 本文 --- */
.premium-worry__cardText{
  font-size:15px;
  font-weight:700;
  line-height:1.5;
  margin:0;
}

/* ==================================================
   Risk Section
================================================== */

.premium-risk{
  position:relative;
  padding:30px 20px!important;
  color:#fff;
  overflow:hidden;
}

.premium-risk__title{
	font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN","MS Mincho",serif;
  margin:0 auto 30px;
  font-size:30px;
  line-height:1.4;
  max-width:18em;
  text-align:center;
}

.premium-risk__inner{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.premium-risk__lead{
  text-align : left;
}
.premium-risk__bottom{
  margin-top : 40px;
}

/* リスト全体：左寄せ */
.premium-risk__list{
  list-style:none;
  padding:0;
  margin:0 auto 40px;
  max-width:500px;
  text-align:left;
  margin-left : -15px;
}

/* 各項目 */
.premium-risk__list li{
  position:relative;
  padding:12px 0 12px 28px; /* ← 左に余白確保 */
  border-bottom:1px solid rgba(255,255,255,.15);
  font-size:15px;
}

/* チェックマーク */
.premium-risk__list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:12px;
  font-size:14px;
  color:#d4c29a; /* ゴールド系 */
}

/* ===============================
   スマホ用：チェック強調
================================== */
@media (max-width:768px){

  .premium-risk__list li{
    padding:14px 0 14px 34px;
  }

  .premium-risk__list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:14px;
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
    color:#fff;
	  background:#9c8851; /* 目立つ色（変更OK） */
    border-radius:50%;
  }

}

/* ===============================
   セクション別背景（introと同構成）
================================== */
.premium-solution{
  position: relative;
  overflow: hidden;
  color: #fff;
}

.premium-solution::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;

  background-image:
    url("/wp-content/themes/ystandard-child/image/premium_solution_sp.webp");

  background-size:cover;
  background-position:center bottom;
  background-repeat:no-repeat;

  /* 少しだけ暗く（明るすぎ対策） */
  filter: brightness(0.88);
}

.premium-points li{
	margin-bottom : 10px;
}

/* ===============================
   PC用に差し替え
================================== */
@media (min-width:1024px){
  .premium-solution::before{
    background-image:
      url("/wp-content/themes/ystandard-child/image/premium_solution_pc.webp");
  }
}

/* 中身を前面へ */
.premium-solution .premium-inner{
  position: relative;
  z-index: 1;
}

.premium-case{
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  background: rgba(0,0,0,.3);
}
.premium-case-label{
	color : #ffff00;
	font-weight : 600;
	font-size : 15px;
	margin-bottom : 12px;
	opacity : .7;
}

.premium-case-label span{
  font-size: 17px;
}

/* 内側ボックス：左線なし */
.premium-case-inner{
  /* border-left: 2px solid rgba(255,255,255,.5); ← 削除 */
  padding: 0; /* 左余白も不要ならゼロに */
}

.premium-case-summary{
  margin: 0 0 8px;
	font-size: 16px!important;
	font-weight: 700;
	line-height : 1.6!important;
}

.premium-case-detail{
	font-size: 16px!important;
	font-weight: 700;
	line-height : 1.6!important;
}
/* ==================================================
   PREMIUM セクション共通
================================================== */

.premium-production,
.premium-plan-intro,
.premium-plan-overview,
.premium-plan-detail{
  position:relative;
  overflow:hidden;
  color:#fff;
}

.premium-production .premium-inner,
.premium-plan-intro .premium-inner,
.premium-plan-overview .premium-inner,
.premium-plan-detail .premium-inner{
  position:relative;
  z-index:1;
}


/* ==================================================
   Production 背景
================================================== */

.premium-production::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:url("/wp-content/themes/ystandard-child/image/premium_production_sp.webp") center bottom / cover no-repeat;
  filter:brightness(.88);
}

@media (min-width:1024px){
  .premium-production::before{
    background-image:url("/wp-content/themes/ystandard-child/image/premium_production_pc.webp");
  }
}


/* ==================================================
   Plan Intro 背景
================================================== */

.premium-plan-intro::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:url("/wp-content/themes/ystandard-child/image/premium_plan_sp.webp") center bottom / cover no-repeat;
  filter:brightness(.9);
}

@media (min-width:1024px){
  .premium-plan-intro::before{
    background-image:url("/wp-content/themes/ystandard-child/image/premium_plan_pc.webp");
  }
}


/* ==================================================
   Plan Overview 背景
================================================== */

.premium-plan-overview::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:url("/wp-content/themes/ystandard-child/image/premium_intro_sp.webp") center bottom / cover no-repeat;
}

@media (min-width:1024px){
  .premium-plan-overview::before{
    background-image:url("/wp-content/themes/ystandard-child/image/premium_intro_pc.webp");
  }
}


/* ==================================================
   Plan Overview デザイン
================================================== */

.premium-plan-overview .premium-inner{
  text-align:center;
}

.premium-plan-overview-wrap{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:60px;
}

.premium-plan-overview-name{
	font-size:16px;
	text-align : center;
  letter-spacing:3px;
  opacity:.75;
  margin-bottom:0!important;
}

.premium-plan-overview-price{
	font-size:28px!important;
	text-align : center;
  font-weight:600;
  letter-spacing:2px;
  margin:10px 0 0;
}
.premium-plan-overview-price spsan{
	font-size : 15px;
}

.premium-plan-overview-note{
  margin-top:70px;
  font-size:14px;
  opacity:.7;
}


/* ==================================================
   Plan Detail デザイン
================================================== */

.premium-plan-detail .premium-inner{
  max-width:720px;
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}

.premium-plan-detail .premium-heading{
  font-size:26px;
  letter-spacing:3px;
  margin-bottom:24px;
}

.premium-plan-detail-list{
  list-style:none;
  padding:0;
  margin:0 auto;
  max-width:560px;
  text-align:left;
	margin-left : -20px;
}

.premium-plan-detail-list li{
  font-size:16px;
  line-height:2;
  margin-bottom:16px;
  opacity:.9;
	border-bottom : 1px dotted #fff;
}
.premium-note{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}


/* ==================================================
   その他
================================================== */

.premium-next{
  margin-top:28px;
  font-size:14px;
  opacity:.8;
  letter-spacing:.5px;
}

.premium-note p{
  font-size:clamp(16px,1.2vw,20px);
  line-height:2.1;
  font-weight:300;
  margin-bottom:26px;
  color:rgba(245,247,250,0.92);
}

.premium-plan-detail-price{
	font-size:28px!important;
	font-weight:700;
	text-align:center;
	margin : 0 0 30px 0!important;
}

.premium-plan-detail-price small{
  font-size:18px;
  font-weight:400;
  opacity:.7;
  margin-left:0px;
}


/* ==================================================
   Responsive
================================================== */

@media(max-width:900px){
  .premium-section{
    padding:7vh 20px 12vh;
  }
}

@media(min-width:1024px){
  .premium-risk__lead{
    text-align:center;
  }
}