header.l-header {
  height: 0;
}
.menu-body.is-active{padding-top: 50px;}
.lp-wrap{
  background: #000;
  position: relative;
}
:root{
  /* Color */
  --brand-main:#68d28d;     /* ミント */
  --brand-sub:#def0d0;     /* 薄いミント */
  --brand-bg:#f2fde8;     /* 背景ミント */
  --brand-accent:#3D7153;   /* 深緑 */
  --brand-pink:#F6A9A3;     /* 差し色 */
  --ink:#222;               /* 本文色 */
  --muted:#666;             /* 補足文 */
  --bg:#FAFAF6;             /* ページ背景 */

  --lp-max-pc:500px;     /* PCでのLP上限幅 */
  --gap: 24px;

  /* Typography（clampでSP→PC） */
  --fz-xs: clamp(11px, 2.3vw, 12px);
  --fz-sm: clamp(12px, 2.6vw, 13px);
  --fz-md: clamp(14px, 3vw, 16px);
  --fz-lg: clamp(18px, 4vw, 22px);
  --fz-xl: clamp(22px, 6vw, 28px);
  --fz-xxl: clamp(30px, 8vw, 34px);
  --lh: 1.7;

  /* Spacing scale */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;

  /* Radius / Shadow / Motion */
  --radius: 16px;
  --radius-sm: 10px;
  --easing: cubic-bezier(.2,.7,.2,1);
  --dur: .24s;
}
/* 1) 画面全体は固定（外側スクロールを消す） */
html, body{
  height: 100%;
  overflow: hidden;   /* ← 外側のスクロールバーを出さない */
  margin: 0;
  background: #cfe6d7; /* 背景色（左右の画像の下地） */
}
body{
  overflow: auto;
}

.fade-in {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fade-in.on {
  transform: translateY(0);
  opacity: 1.0;
}

.fade-in.plus4 {
  transition: 1.2s ease-in-out;
}
.fade-in.plus6 {
  transition: 1.6s ease-in-out;
}
/* 2) 左右背景は position:fixed で常にビューポート高にフィット */
.bg{
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.bg-left  { left: 0;  background-image: url('../../img/nls/nl2026_side-left.jpg');opacity: 0.5; 
  /* 右側を引いた残り全部 */
  width: calc(
    100vw - max(500px, calc((100vw - var(--lp-max-pc)) / 2)) - var(--lp-max-pc)
  );
}
/* 既存の固定背景 */
.bg-right{
  right:0;
  /* 最低260pxを確保しつつ、画面が広いときはこれまで通り */
  width:  max(500px, calc((100vw - var(--lp-max-pc)) / 2));
  background: #5d987b; /* 下地色：必要なら背景画像のままでもOK */
  background-size: cover; background-position:center;
  display:flex; justify-content:center; /* 中身の横センタリング */
  pointer-events: auto;                 /* 右パネルを操作可能に */
}

/* 3) LPは中央に固定幅で配置して、LPだけ縦スクロール */
.lp{
  position: relative;
  z-index: 1;
  width: min(100%, var(--lp-max-pc));  /* 500px上限 */
  height: 100dvh;           /* 端末依存なら 100vh/100svh も併記可 */
  /* 右パネルぶんだけ右マージンを取る */
  margin-left: auto;
  margin-right: max(
    500px,
    calc((100vw - var(--lp-max-pc)) / 2)
  );
  background: #fff;
  box-shadow: 0 12px 40px rgba(1, 182, 97, 0.705);
  overflow-y: auto;         /* ← LPだけ縦スクロール */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* バウンスで外側に影響させない */
  scrollbar-width: none;          /* Firefox：スクロールバー非表示 */
}
.lp::-webkit-scrollbar{ display: none; } /* Blink/Safari：スクロールバー非表示 */


/* ベース適用 */
body{ color:var(--ink); background:var(--bg); line-height:var(--lh);margin: 0; }
.lp-wrap h1{ font-size:var(--fz-xl); color:var(--brand-accent); }
.lp-wrap h2{ font-size:var(--fz-xxl); color:var(--brand-accent); }
.lp-wrap p,.lp-wrap li{ font-size:var(--fz-md);margin: 10px 0;font-weight: 600; }
.lp-wrap p span{ font-size:var(--fz-sm); }
.lp-wrap .muted{ color:var(--muted); }
.lp-wrap *{box-sizing: border-box;}
.lp-wrap img{ max-width:100%; height:auto; display:block; margin: auto;} /* 基本 */
.lp-wrap .photo{ width:100%; } 
.lp-wrap figure{ margin: 0;  padding: 0;  border: 0;  display: block;}
.lp-wrap ul{padding-inline-start: 0;}
.lp-wrap ul li{list-style: none;}

.lp-wrap .btn:not(.notlpbtn){
  display:inline-block; background:var(--brand-main); color:#fff;
  padding:10px 18px; border-radius:999px; text-decoration:none;
  transition: transform var(--dur);
  border:none;
  font-size: var(--fz-md);
  margin: 10px 0;
}
.lp-wrap .btn:not(.notlpbtn) a{color:#fff;text-decoration:none;}
.lp-wrap .btn:active:not(.notlpbtn){ transform: translateY(1px); }



/* MV（前と同じ。位置は微調整して） */
.hero{ position: relative; aspect-ratio:9 / 14; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-title{
  position:absolute; inset:auto 0 48%; margin:auto; width:min(86%, 420px);
}
.hero-grant{
  position:absolute; inset:auto 0 13%; margin:auto;   width:min(88%, 460px);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.18));
}

/* 視覚的に非表示（clip非使用の推奨パターン） */
.visually-hidden{
  position:absolute !important;
  inline-size:1px; block-size:1px;
  margin:-1px; padding:0; border:0;
  overflow:hidden; white-space:nowrap;
  clip-path: inset(50%);   /* ← clip ではなく clip-path を使用 */
}
.campaign-period {
  position:absolute; 
  bottom:3%;
  width: 100%;
  background: var(--brand-main);
  color: #222;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.campaign-period strong,
.campaign-period dt {
  font-weight: 700;
  margin-right: 0.5em;
}
/* 全セクション共通*/
.section {
  max-width: 800px;
  margin: 0 auto;
}
.common-title{
  font-size: var(--fz-xl);
  margin: 60px 0 40px;
  text-align: center;
  font-size: var(--fz-xxl);
  background: linear-gradient(90deg, #37c49e 20%,#94d252 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
#news .common-title{
  letter-spacing: normal;
}
.common-title span{
  display: block;
  font-size: var(--fz-md);
  color: var(--brand-main);
}

/* リード文専用の調整 */
.section-lead {
  padding: 60px 20px;
  line-height: 2;
  font-weight: 600;
  color: #333;
  text-align: center; /* or left, depending on design */
}
.section-lead p + p {
  margin-top: 3em;
}
.lp-wrap .section-lead span{font-size: 120%;background:linear-gradient(transparent 60%, #ff6 60%);}
.section-bonus{
  background: var(--brand-bg);
  text-align:center;
  padding-bottom: var(--space-6);
}
.bonus-head{
  width: 100%;
  padding: var(--space-4);
  background: var(--brand-sub);
  --DOTS_COLOR: #c6e6ae;
  --DOTS_SIZE: 14px;
  --DOTS_POSITION: 22%;
  background-image:
    radial-gradient(var(--DOTS_COLOR) var(--DOTS_POSITION), transparent var(--DOTS_POSITION)),
    radial-gradient(var(--DOTS_COLOR) var(--DOTS_POSITION), transparent var(--DOTS_POSITION));
  background-size: var(--DOTS_SIZE) var(--DOTS_SIZE);
  background-position: 0 0, calc(var(--DOTS_SIZE) / 2) calc(var(--DOTS_SIZE) / 2);
}
.bonus-title{
  color: #203c2d;
  margin-top: var(--space-4);
  line-height: 1.4;
}

.bonus-title p{
  font-size: var(--fz-xl);
  margin: 0;
}
.bonus-title p span{
  font-size: var(--fz-lg);
}
.bonus-title img{
  width: 100%;
}

.lp-wrap .attention{font-size: var(--fz-xs);text-align: center;}
.card{
  background:#fff; border-radius:var(--radius);
  padding:var(--space-5); box-shadow:0 0 15px var(--brand-sub);}

.bonus-card{
  width: 90%;
  margin:var(--space-4) 5% 50px;
}
.bonus-card h3{
  background: var(--brand-main);
  font-size: var(--fz-xl);
  font-weight: bold;
  color: #333;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  margin: 0 0 var(--space-4);
}
.bonus-card > img:last-child{width: 90%;}

/*対象*/
.eligible_couple p,.eligible_products p{
  font-weight: bold;
}
.eligible_couple .common-title,.eligible_products .common-title{
  margin: 70px auto 30px;
}
.eligible_couple img{width: 50%;}

/*対象商品*/
/* 対象商品 */
.eligible_products { text-align:center; }
.eligible_products h3{font-size: 1.5em; margin: 10px auto; font-weight: bold;}
/* スライダー */


/* レールははみ出し非表示のまま */
.ep-carousel{ position:relative; overflow:hidden; margin:0 auto; max-width:var(--lp-max-pc); }
.eligible_products .btn{font-size: var(--fz-md); padding: 10px 40px;}
/* アイテム幅を“500pxで3枚並び”に決め打ち（gap=12px） */


.ep-track{margin: 0;
  padding: 0;
  list-style: none;}
/* スマホ（狭い時）は1枚=70%で見やすく、500px近辺では3枚固定 */
.ep-item{ background:#fff; border:1px solid #e6efe6; border-radius:12px; padding:10px;margin: 10px 5px!important;}

.ep-item img{ width:100%; display:block; }
.ep-item figcaption{ color:#2e5f44; font-weight:700; margin-top:8px;min-height: 3em; line-height: 1.5em;}

/* ホバー/タッチで一時停止 */
.ep-carousel:hover  #epTrack,
.ep-carousel:active #epTrack,
#epTrack:focus-within{ animation-play-state:paused; }

/* モーダル */
.ep-dialog{ border:none; padding:0; width:min(92vw,720px); border-radius:16px;margin: auto;}
.ep-dialog::backdrop{ background:rgba(0,0,0,.45); }
.ep-dialog-inner{ padding:20px; text-align:left; }
.ep-dialog-inner h3{text-align: center;}
.ep-list{ columns:2; gap:24px; padding-left:18px; }
.ep-excl{ color:#666; margin-top:8px; }
.ep-dialog-actions{ text-align:center; margin-top:16px; }

/*キャンペーン期間*/
.campaign_period div{
  width: 80%;margin: 0 auto 30px;
}
.campaign_period div p{
font-size: 21px;
  font-feature-settings: "palt";
  letter-spacing: 2;
  margin: 10px auto 0;
  font-weight: 600;
}
.campaign_period img{
  width: 30%;
}

/*お知らせ*/
.section-news {
  padding: 40px var(--space-5) 60px;
  background: #fff;
}

.news-list {
  border-top: 1px solid #d9ead9;
  margin-top: 16px;
}

.news-item {
  padding: 14px 0;
  border-bottom: 1px solid #d9ead9;
}

.news-date {
  display: block;
  color: var(--brand-accent);
  font-size: var(--fz-sm);
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.news-title a{
  font-size: var(--fz-md);
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}

.news-more {
  text-align: center;
  margin-top: var(--space-5);
}
.news-more .btn {
  background: var(--brand-main);
  color: #fff;
  font-size: var(--fz-sm);
  padding: 10px 24px;
}

/*申し込みの流れ*/
.section-apply{
  background: var(--brand-bg);
  padding: 40px 5%;
}

.section-apply .card{
  width: 100%;
  padding: 20px 10px 20px 20px;
}

.section-apply ul li{
  margin-bottom: 30px;
  border-bottom: 2px solid var(--brand-main);
  padding-bottom: var(--space-4);
  position: relative;
}
.section-apply ul li:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 17px solid #FFF;
  z-index: 2;
}
.section-apply ul li::after {
  content: "";
  position: absolute;
    bottom: -34px;
    left: 50%;
    margin-left: -18px;
    border: 15px solid transparent;
  border-top: 18px solid var(--brand-main);
  z-index: 1;
}
.section-apply ul dt{
  display: flex;
  justify-content: flex-start;
  width: 100%;
  font-size:  clamp(18px, 3.5vw, 20px);
  font-weight: bold;
  align-items: flex-start;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.section-apply ul dt img{
  margin: 0 10px 0 0;
  width: 80px;
}

.section-apply ul dd{
  margin-left: 90px;
  font-size: var(--fz-sm);
  
}


.section-apply ul li:nth-child(3) dd{
  margin-left: 0;
  text-align: center;
} 
.section-apply ul li dd button{
  margin: 20px auto;
  width: 80%;
}

.section-apply ul dl{
  position: relative;
}
.section-apply ul dl dd img{
  position: absolute;
  right: 0;
}

.section-apply ul li:nth-child(4) dl dd img{
  max-width: 120px;
  bottom:0;
}
.section-apply ul li:nth-child(5) dl dd img{
  max-width: 240px;
  top: -20px;
}

.section-apply ul li:last-child,.section-apply ul li:last-child::before,.section-apply ul li:last-child::after{
  border: none;
}

.section-partner{
  padding-bottom: var(--space-6);
}

.section-partner ul{
  display: flex;
  justify-content: space-around;
  padding: var(--space-4);
  align-items: center;
  }
.section-partner ul li{
  width: 40%;
}
/*よくある質問*/
.section-faq{
  background: var(--brand-bg);
  padding: 50px;
}
.faq-list {
  margin: 0 auto;
}
.faq {
  padding: 16px 0;
}
.q, .a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  line-height: 1.8;
}
.q {
  font-weight: 700;
}
.a {
  margin-top: 6px;
  color: var(--brand-accent);
}
.qpill, .apill {
  
  display: flex;
  flex: 0 0 40px;  /* ← これが最重要。絶対に広がらない */
  font-size: 13px;
  letter-spacing: .06em;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #C9E5B8;
  border-radius: 50%;
  font-weight: bold;
}
.qpill {
  background: var(--brand-main);
  color: #fff;
}
.apill {
  background:#94d252;
  color: var(--bg);
  width: 32px;
}


/* 右パネルの箱 */
.side-panel{
  /* .bg-right の子に置く想定。固定は親で担保されているため相対でOK */
  width: 100%;
  height: 100%;
  overflow: auto; /* 右パネルが縦に長くなったらここだけスクロール */
}
.side-inner{
  width: min(92%, 600px);
  margin-inline: auto;
  padding: 50px 20px 0;
}
.side-logo{ width:80%; height:auto; display:block; margin: 0 auto 18px; }

/* メニュー */
.side-nav ul{ list-style:none; padding:0; margin: 50px auto 28px; display:grid; gap:10px;width: 14em;  }
.side-nav li{
  display:flex; align-items:center; gap:10px;
  color:#fff; font-weight:700; letter-spacing:.02em;
  cursor:pointer; user-select:none;
  margin: 0;
}
.side-nav li:hover{
  color: var(--brand-sub);
}
.side-nav .bullet{
  inline-size: 22px; block-size:2px;
  background:#fff; border-radius:2px; flex:0 0 22px;
  transition: background-color .25s ease, inline-size .25s ease;
}
.side-nav li.is-active .bullet{ background: #f6ffa4; inline-size: 28px; }


.side-button ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    margin: 10px auto 30px;
    text-align: center;
    font-size: 120%;
    padding: 15px;
    border: 3px solid #fff;
    width: 60%;
}

.side-button ul li a:hover {
  background: #fff;
  color: var(--brand-accent);
}

/* 対象商品ミニカード */
.side-eligible{
  background: #fff;
  padding: var(--space-4);
  border-radius: 10px;
  text-align: center;
}
.side-eligible h3{
  margin: 0 auto 20px;
  font-size: 1.5em;
  font-weight: bold;
}

.side-eligible-body{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:5px;
}

.side-product-list{
  list-style:none;
  margin:0;
  padding:0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 5px; /* 行間×列間 */
}
.side-product-list li{
  text-align: left;
  font-size:var(--fz-sm);
  color:var(--brand-accent);
  cursor:pointer;
  margin: 0;
}
.side-product-list li:hover,
.side-product-list li:focus-visible{
  color: var(--brand-main);
}
.side-product-list li.is-active{
  color:var(--brand-main);
}
/* プレビュー画像 */
.side-product-view{
  margin:0;
  padding:4px;
}
.side-product-view img{
  display:block;
  width:100%;
  height:auto;
  border-radius:8px;
}


/*フッター*/
#reservation,#reservation .wrap,footer .wrap{
  width: 100%;
  padding: 10px;
}
.reservation-tel__item.-item01,.reservation-tel__item .tel__item-body,.reservation-tel_block__body{flex-wrap: wrap;}
    .reservation-head:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 162px;
        transform: translateY(-26px);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: auto 162px;
        background-image: url(https://hiroshima-bridalbox.jp/assets/img/top/deco-ttl_reservation_sp.png);
    }
.tel__item-body__item{width: 100%;}
    .reservation-head {
        position: relative;
        background-image: none;
        padding-top: 145px;
        padding-bottom: 35px;
    }
.reservation-web_block, .reservation-line_block{flex:  0 0 100%;}
.reservation-tel__item.-item01{border: none;min-height: auto;margin-bottom: 40px;}

@media (min-width: 767px) {
  body{min-width: 100%;}
  .reservation-tel__item.-item01{padding-right: 0;}
  .reservation-tel__item.-item02,.tel__item-body__item{margin-left:0;}
  
  
}
@media (max-width: 1200px) {
  .bg-left {display: none;}
  .lp{margin-left: 0;}
  .bg-right{width:calc((100vw - var(--lp-max-pc)) - 80px)};
}
@media (max-width: 1160px) {
  .contents{min-width: 100%;}
}@media (max-width: 1000px) {
  .bg-right{width:calc((100% - 500px));}
}
@media (max-width: 800px) {
  .side-eligible-body{  grid-auto-flow:row;grid-template-columns: auto;  }
  .side-product-list{grid-template-columns: auto;}
  .side-product-list li{font-size: var(--fz-md);}
}
@media (max-width: 767px) {
  .bg{ display:none; }
  .lp{width: 100%;}
  .hero{aspect-ratio: 13 / 14;}

.humberger{top: 50px;}
.btn-instagram{top:33px;}
}

@media (max-width: 600px) {
  .hero{aspect-ratio: 9 / 14;}
.humberger{top: 40px;}
.btn-instagram{top:22px;}
}

@media (max-width: 450px){
  .section-lead p{
    font-size: 3.5vw;
  }
.campaign_period div{
  width: 90%;
}
.section-apply ul li:nth-child(4) dl dd img{
  width: 28%;
}
.section-apply ul li:nth-child(5) dl dd img{
  width: 50%;
}
.apill{
  width: 40px;
}
}
@media (max-width: 400px) {
  .section-lead{
    padding: 60px 10px;
  }
  .section-lead p{
    font-size: 12px;
  }
.campaign_period div p{
    font-size:18px;  
}
.section-apply ul li:nth-child(4) dl dd img{
  width: 20%;
}
.section-apply ul li:nth-child(5) dl dd img{
  width: 45%;
}
.section-apply ul li:nth-child(1) dt br,
.section-apply ul li:nth-child(2) dt br,
.section-apply ul li:nth-child(3) dt br{
  display: none;
}
.apill{
  width: 40px;
}
}

.l-top_reservation{margin-top: 0;}