/* =======================================
   Reset CSS（軽量・実務向け）
======================================= */
@charset "UTF-8";
/* 基本のリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mv,
.df-whitebox,
.df-bluebox,
.df-concept,
.df-worries,
.df-bluebox__head,
.faq-list,.item-img,
.df-bluebox__inner {
  position: relative;
}
/* HTML全体の設定 */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px; /* 基準 */
}
html, body {
  overflow-x: hidden;
}
/* 画像 */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

/* リストのデフォルト装飾を削除 */
ul,
ol {
  list-style: none;
  padding-left: 0;
}

/* アンカー */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
/* ボタン */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出しサイズを全て通常化（後で自由に設定したいため） */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* iframeの隙間を消す */
iframe {
  border: 0;
}

/* フォーム要素のiOS丸角を解除 */
input,
textarea {
  border-radius: 0;
}

/* 強調タグ */
strong {
  font-weight: bold;
}
.fontsize40{font-size: 40%;}
.visually-hidden{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
/* ================================
   カラー変数
================================ */
:root {
  --primary-1: #4fb9c9;
  --primary-2: #ff7088;
  --sub-1: #ffcdd5;
  --sub-2: #bee6ec;
  --text: #333;
  --bg: #ffffff;
  --contents_w:1200px;

}
@media (max-width: 1250px) {
:root{
  --contents_w:100%;
}
display: visibility: ;;
}
/* ================================
   ドロップシャドウ（2種類）
================================ */
/* Photoshop：87f0ff, 透明度27% 距離0 スプレッド24% サイズ57% */
.shadow-blue {
  box-shadow: 0 0 35px var(--primary-1);
}

/* Photoshop：ffa4b3, 透明度27% 距離0 スプレッド24% サイズ57% */
.shadow-pink {
  box-shadow: 0 0 35px #ff70886b;
}

/* ================================
   ベース設定
================================ */
body {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 600;
  
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--contents_w);
  margin: 0 auto;
  padding: 0 16px;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 1s;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 1s;
}
.fade-left.is-visible {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s, transform 1s;
}
.fade-right.is-visible {
  opacity: 1;
  transform: none;
}
/* ------------------------------
   ヘッダー
------------------------------ */
.l-header {
  opacity: 0;
  display: none;
  visibility: hidden;
  pointer-events: none;
}

/* SP 共通（ヘッダー本体） */
@media (max-width: 768px) {
  .l-header {
    position: fixed;
    padding: 0;
  }
}

/* .l-header.fixed */
.l-header.fixed {
  opacity: 1;
  display: block;
  position: fixed;
  padding: 15px 0;
  background: var(--primary-2);
  visibility: visible;
  pointer-events: auto;
  width: 100%;

  padding: 15px 0;
  z-index: 999;
}

@media (max-width: 768px) {
  .l-header.fixed {
    padding: 0;
    background: transparent;
  }
}

/* ハンバーガーボタン */
.l-header .open-btn {
  display: none;
}

@media (max-width: 768px) {
  .l-header .open-btn {
    display: block;
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 5px 5px 10px rgba(169, 35, 77, 0.4);
  }

  .l-header .open-btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 12px;
    height: 1px;
    background: #9d0735;
    width: 17px;
  }

  .l-header .open-btn span:nth-of-type(1) {
    top: 15px;
    width: 17px;
  }

  .l-header .open-btn span:nth-of-type(2) {
    top: 20px;
    width: 13px;
  }

  .l-header .open-btn span:nth-of-type(3) {
    top: 25px;
    width: 9px;
  }

  .l-header .open-btn.active {
    background: transparent;
    box-shadow: none;
  }

  .l-header .open-btn.active span {
    left: 10px;
  }

  .l-header .open-btn.active span:nth-of-type(1) {
    width: 20px;
    transform: translateY(5px) rotate(45deg);
  }

  .l-header .open-btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .l-header .open-btn.active span:nth-of-type(3) {
    width: 20px;
    transform: translateY(-5px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .l-header-nav {
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100svh;
    background: #fff;
    transition: 0.4s;
    visibility: hidden;
  }
}


@media (max-width: 768px) {
  .l-header-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .l-header-nav.active::before {
    width: 100%;
    position: absolute;
    content: "";
    mix-blend-mode: multiply;
    background: no-repeat center / contain;
    left: -8%;
    top: -50px;
    width: 70%;
    height: auto;
    aspect-ratio: 589 / 288;
  }
}

/* .l-header-wrap */
.l-header-nav .l-header-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
  }
}

/* .l-header-list */
.l-header-nav .l-header-wrap .l-header-list {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  gap: 3.2%;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .l-header-list {
    display: block;
    margin-inline: auto;
    text-align: center;
  }
}

/* .l-header-list-item */
.l-header-nav .l-header-wrap .l-header-list-item {
  width: 11%;
  text-align: center;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .l-header-list-item {
    width: 100%;
  }

  .l-header-nav .l-header-wrap .l-header-list-item:nth-child(n+2) {
    margin-top: 10px;
  }
}

/* gnav 内リンク */
.l-header-nav .l-header-wrap .l-header-list-item a {
  transition: opacity 0.3s;
}

.l-header-nav .l-header-wrap .l-header-list-item a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .l-header-list-item a:hover {
    opacity: 1;
  }
}

/* .gnav-title */
.l-header-nav .l-header-wrap .l-header-list-item .gnav-title {
  color: #fff;
  display: block;
  height: 22px;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .l-header-list-item .gnav-title {
    color: var(--primary-2);
    font-size: 20px;
  }
}


/* .gnav-txt */
.l-header-nav .l-header-wrap .l-header-list-item .gnav-txt {
  display: block;
  margin-top: 7px;
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .l-header-list-item .gnav-txt {
    margin-top: 5px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
  }
}

/* .reservation-btn */
.l-header-nav .l-header-wrap .reservation-btn {
  width: 160px;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .reservation-btn {
    width: auto;
    margin: 35px auto 0;
    text-align: center;
  }
}

/* .reservation-btn a */
.l-header-nav .l-header-wrap .reservation-btn a {
  position: relative;
  display: block;
  padding: 15px 25px 15px 43px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-2);
  border-radius: 50px;
  box-shadow: 5px 5px 10px rgba(181, 0, 42, 0.2);
  transition: opacity 0.3s;
  line-height: 1;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .reservation-btn a {
    display: inline-block;
    padding: 16px 35px 18px 60px;
    background: rgb(253, 118, 150);
    background: linear-gradient(
      0deg,
      rgb(253, 118, 150) 0%,
      rgb(253, 130, 158) 50%,
      rgb(250, 142, 158) 100%
    );
    color: #fff;
    font-size: 18px;
    box-shadow: none;
  }
}

/* .reservation-btn a::before */
.l-header-nav .l-header-wrap .reservation-btn a::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  background: url(https://www.bridal-vision.com/assets/img/reservation-icon.png) no-repeat center / contain;
}

@media (max-width: 768px) {
  .l-header-nav .l-header-wrap .reservation-btn a::before {
    left: 23px;
    width: 20px;
    height: 20px;
  }
}

/* ホバー時 */
.l-header-nav .l-header-wrap .reservation-btn a:hover {
  opacity: 0.7;
}


/* ------------------------------
   メインビジュアル
------------------------------ */
.mv {
  /* 背景画像（両サイドのポリゴン＋白中央） */
  background: url("imgdress/main_bg.webp") no-repeat center top;
  background-size: cover;
  
}

.mv *{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;

}
.mv-inner {
  max-width: var(--contents_w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  align-items: flex-end;
  position: relative;
}

/* 左側テキストエリア */
.mv-copy {
  color: var(--text);
  z-index: 2;
  padding-bottom:120px;
  position: relative;
}

/* キャッチコピー（小さい赤文字２行） */
.mv-catch {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-shadow: 
    0 0 8px rgb(255, 112, 136),
    0 0 12px rgb(255, 0, 43),
    0 0 12px rgb(255, 0, 43),
    0 0 20px rgb(255, 0, 43);
  line-height: 1.5em;
  text-indent: 0.1em;
  margin: 0 0 -30px 10px;
}

/* タイトル画像 */
.mv-title-img {
  max-width: 150%;
  height: auto;
  display: block;
  
}

/* サブテキスト（青い帯のところは後で画像に差し替えでもOK） */
.mv-subtext {
  display: inline-block;
  margin-top: 5px;
  font-size: 17px;
  color: #fff;
  padding: 5px 15px;
  background-color: var(--primary-1);
  line-height: 2.2; /* ← ここを調整すると行間が広がる */

}


/* 右側の花嫁写真 */
.mv-bride {
  justify-self: center;
  z-index: 1;
}

.mv-bride-img {
  display: block;
}

/* ================================
   セクション（超ベース）
================================ */
.section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  color: var(--primary-2);
}

.section-content {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

/* レスポンシブ：PCで2カラムにしたい時の例 */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================
   予約セクション
================================ */
/* セクション全体 */
.reservation-section {
  padding: 100px 0;
  text-align: center;
}

.reservation-inner {
  max-width: 700px;
  margin: 0 auto;
  font-size: 40px;
}

/* 日付（画像そのまま） */
.reservation-date img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* 会場テキスト */
.reservation-venue {
  margin-top: 12px;
  font-weight: 500;
}

/* 「事前予約特典付き」 */
.reservation-caption {
  margin: 50px 0 0px;
  font-size: 80%;
  color: var(--primary-1);
  letter-spacing: 0.08em;
}

/* 予約ボタン部分のラッパー */
.reservation-cta-wrap {
  position: relative;
}

/* 水色ボタン */
.reservation-cta {
  display: block;
  max-width: 700px;
  margin: 0 auto;
  padding: 18px 20px;
  background-color: var(--primary-1);
  color: #fff;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 999px;
}

/* 参加無料ハートバッジ */
.reservation-badge {
  position: absolute;
  right: 10px;
  top: -44px;
  width: 90px;
}

.reservation-badge img {
  width: 100%;
  display: block;
}


 .pink .df__title{
  color: var(--primary-2);
 }
 .blue .df__title{
  color: var(--primary-1);
 }


 .pink .df__eyecatch{
  color: var(--sub-1);
 }
 .blue .df__eyecatch{
  color: var(--sub-2);
 }


/* ================= CONCEPT ================= */
.df-concept,.df-point{
    width: 100%;
    margin-top:100px;
}

.df-whitebox__inner {
  max-width: var(--contents_w);
  margin: 0 auto;
  padding: 50px 0;
  border-radius: 32px;
  z-index: 5;
  position: relative;
}

.df-whitebox__bg{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 10%;
  transition: left 1.2s ease-in-out;
  z-index: 1;
  background:
    url("imgdress/concept_bk01.webp") top right /420px auto no-repeat,
    url("imgdress/concept_bk02.webp") left 10% bottom/380px auto no-repeat;
  background-color: #fff;
  border-radius: 50px;
  z-index: 1;
}


.df-whitebox__head {
  text-align: center;
  z-index: 2;
}
.df__title{
  font-size: 40px;
  margin: 0 auto 10px;
    text-align: center;
}

.df-concept .df__title {
  font-size: 60px;
  margin-top: 50px;
}
.df-point .df__title {
  margin-top: 50px;
  letter-spacing: 0.2em;
}

.df-concept__subtitle{
    font-size: 20px;
}

.df__eyecatch {
  font-family: "Times New Roman", serif;
  font-size: 110px;
  font-weight: 100;
  z-index: 2;
}
.df-whitebox__inner .df__eyecatch {
    position: absolute;
    top:-10px;
    left: -10px;
  margin-top: -90px;
}
.df-concept__thumbs {
  margin: 32px auto 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 1000px;
  z-index: 2;
}

.df-concept__item {
  width: 100%;
}

.df-concept__item img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

.df-concept__item figcaption {
  padding: 8px 4px 10px;
  text-align: center;
  font-size: 15px;
  background-color: #ff7088e1;
  width: 95%;
  margin: -20px auto 0;
  z-index: 5;
  font-weight: bold;
  position: relative;
}

.df-concept__text {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  z-index: 2;
  margin-bottom: 50px;
}

.df-brand{
    padding: 100px 0;
}

.df-brand .df__eyecatch{
    text-align: center;
    color: var(--sub-1);
}

.df-brand .df__title{
    color: #de2c66;
}

.df-brand-box{
    width: 100%;
    position: relative;
}
.df-brand-box-inner{
    width: var(--contents_w);
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
    z-index: 4;
    position: relative;
    }
.df-brand-box-inner > div{
    width: 40%;
    text-align: center;
}

.df-brand-box img{margin: 20px auto;}

.df-brand-box-img{
    max-height: 650px;
    width: auto;
    box-shadow: 0 0 30px var(--sub-1);
}


.df-brand-box::before{
    position: absolute;
    top: -30px;
    content: "";
    height: 400px;
    width: 100%;
    background-color:#ffeaed;
    z-index: 1;
}
.df-brand-logo{
  height: 150px;
  max-width: 300px;
  margin: auto;
  display: flex;              /* これだけでOK */
  justify-content: center;    /* 横中央 */
  align-items: center;        /* 縦中央 */
}
.df-brand-logo img{
  max-height: 150px;
  width: auto;
  display: block;
}


/* ================= worries ================= */
.df-worries{
    width: 100%;
    margin-top: 50px;    
}

.df-bluebox__inner {
  max-width: var(--contents_w);
  margin: 0 auto;
  padding: 50px 0;
  background: #fff;
  border-radius: 32px;
}

.df-bluebox__bg{
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 1;
  background-color: #fff;
  border-radius: 50px 0 0 50px;
  overflow-x: hidden;   /* 横だけ隠す */
  overflow-y: visible;  /* 縦は隠さない */
}


.df-bluebox__head {
  text-align: center;
  z-index: 2;
}
.df__title{
  font-size: 40px;
  margin: 0 auto 10px;
    text-align: center;
}

.df-bluebox .df__title {
  margin-top: 50px;
  margin-left: 15%;
}


.df-bluebox .df__eyecatch{
    position: absolute;
    top:-10px;
    left: -10px;
  margin-top: -90px;

}
.df-worries__thumbs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.df-worries__thumbs img{
    width: 25%;
    height: auto;
    margin: 30px 30px 60px;
    z-index: 3;
}


.df-reason{
    margin-top: -300px;
    padding: 400px 0 150px;
  background: url("imgdress/reason.webp") no-repeat left top;
}

.df-reason-contents{
    width: var(--contents_w);
    padding: 0 50px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;

}
.df-reason-contents h3{
    color: var(--primary-2);
    font-size: 30px;
}
.df-reason-contents-img{
  grid-column:2/3;
   grid-row: 1/3;
}
.df-reason-contents-text01{
  grid-column: 1/2;
  grid-row: 1/2;
}
.df-reason-contents-text02{
  grid-column: 1/2;
  grid-row: 2/3;
}
.df-reason-contents-text03{
  grid-column: 1/3;
  grid-row: 3/4;
}


.bg-title{
    width: 100%;
    z-index: 2;
}
.bg-title img{
    width: 100%;
}

/* ================= dress ================= */

.df-dress,.df-weddingstyle{
    background: url("imgdress/dress-r_top.webp") no-repeat right top -10px,
                url("imgdress/reason.webp") no-repeat left bottom -10px;
    z-index: 1;
}
.df-dress-inner,.df-weddingstyle-inner{
    width: var(--contents_w);
    padding: 100px 50px;
    margin: auto;
    }
.df-dress-head,.df-weddingstyle-inner{
    font-size: 120%;
    text-align: left;
}
.df-dress .df__title, .df-weddingstyle .df__title{
    text-align: left;
    text-indent: -.2em;
    font-size: 60px;
}
.df-dress-row{
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.df-dress-thume img{
  border-radius: 15px;
}

.df-dress-lead{
    color: #ffa4b3;
}
.df-weddingstyle-lead{
    color: #7bcad6;
}
.wedding-style{
  width: 100%;
  margin: 50px auto;
}
.col3-list{
    margin-top: 50px;
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 50px;
    text-align: center;
}

.item-img img{border-radius: 15px;}
.item-txt{font-size: 80%;}

.resort-category{
            position: absolute;
            top: 10px;
            left: 10px;
            display: grid;
            place-items: center;
            width: 60px;
            height: 60px;
            padding: 5px;
            font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
            font-size:15px;
            background: rgb(27, 205, 213, 0.85);
            color: #fff;
            border-radius: 50px;
 }

.style-subttl{text-align: center;}
.style-hotel .style-subttl{
  color: #52baaa;}
.style-house .style-subttl{
  color: #52ba6d;}
.style-resort .style-subttl{
  color: #5ccbe7;}
 .style-subttl-en{
  font-size: 120px;
  display: block;
  opacity: 0.3;
  font-weight: 300;
  margin: 30px auto -50px;
 }
 .style-subttl-jp{
  font-size: 60px;
 }

 .df-contents{
  width: var(--contents_w);
  margin: 100px auto;

 }
 .df-contents-pickup{
  width: 1000px;
   display: grid;
  grid-template-columns: repeat(2, 1fr);
   margin: 50px auto 50px;
   gap: 50px;
 }
 .df-contents-pickup.grid-reverse{

  grid-auto-flow: column;
  direction: rtl;
 }
 
@media (max-width: 1100px) {
 .df-contents-pickup{
  width: 100%;
  padding: 50px;
 }  
}
 .df-contents-pickup
.grid-reverse{
  direction: rtl;
}
.grid-reverse *{
  direction: ltr;  
}
.df-contents-pickup-text h3{
  color: #ff7088;
  font-size: 30px;
}

.df-contents-pickup-text p{
  margin-bottom: 0.8em;
}
 .df-contents-all .df__title{
  margin-bottom: 50px;
 }
 .df-contents-all-detail{
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   padding: 0 40px 0 50px;
 }
 .df-contents-all-detail figure{
  width: calc(20% - 20px);
  margin-bottom: 15px;
  margin-right: 20px;
 }
 .df-contents-all-detail  figcaption{
  text-align: center;
 }


.df-point{margin: 200px auto 100px;}

 .df-point__thumbs{
  display: flex;
  justify-content: space-between;
  z-index: 3;
  width: 800px;
  margin: 50px auto;
 }
 .df-point__thumbs figure{
  width: 15%;
  text-align: center;
 }

 .df-faq{
  margin: 200px auto 0;
 }

 .faq-list {
  padding: 50px 0 100px;
  font-size: 24px;
  z-index: 3;
}

.faq-list .faq-q,
.faq-list .faq-a {
  display: grid;
  grid-template-columns: 50px 1fr; /* 左にQ/A、右に本文 */
  margin: 1em 0;
  font-size: 20px;
}

.faq-list .faq-q{
  color: var(--primary-2);
}
.faq-list .faq-a{
  color: var(--primary-1);
}

.faq-list dd,.faq-list dt{
  align-items:center;
}
.faq-list dd::before,.faq-list dt::before{
  font-size: 2em;
  font-weight: 700;

}
/* Q */
.faq-list .faq-q::before {
  content: "Q";
  color: var(--sub-1);
}

/* A */
.faq-list .faq-a::before {
  content: "A";
  color: var(--sub-2);
}

.last-reserv{
  width: 100%;
  background: url("imgdress/dress-r_top.webp") no-repeat right top;
  padding-top: 100px;

}
.last-reserv .reservation-inner{max-width:100%;}

.last-reserv .df__eyecatch{font-size: 80px;margin-bottom: 50px;}
.reservation-date img,.reservation-cta-wrap{width: 700px;margin: auto;}
.reservation-section iframe{
  width: 100%;
  height: 500px;
  margin: 50px 0 0;
}

.reservation-spbtn{
  display: none;
}
.reservation-spbtn a{
  background: var(--primary-1);
  font-size: 20px;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  z-index: 999;
  line-height: 1em;
}
.reservation-spbtn a span{
  display: block;
  font-size: 70%;
  color: #fcffd5;
  letter-spacing: 0.25em;
}


/* ============ レスポンシブ ============ */

@media (max-width: 1600px) {
  .faq-list,.df-worries__thumbs{
    margin-left: 15%;
  }
  .df-bluebox .df__eyecatch{
    left: 150px;
  }
}

@media (max-width: 1300px) {
  .df-whitebox__bg{
    right: 5%;
    background: url("imgdress/concept_bk01.webp") top right /300px auto no-repeat,
    url("imgdress/concept_bk02.webp") left 5% bottom/280px auto no-repeat;
  }
  .df-whitebox__inner{
    width: 70%;
  }
  .df-concept__thumbs {
    width:100%;
  }
}
@media (max-width: 1300px) {
  
.mv-inner{padding: 50px 50px 0;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
}
}


@media (max-width: 1100px) {
  
  .df-whitebox__inner{
    width: calc(100% - 50px);
    padding: 50px;
  }
  
    .df-whitebox__bg{
    right: 5%;
    background: url("imgdress/concept_bk01.webp") top right /250px auto no-repeat,
    url("imgdress/concept_bk02.webp") left 5% bottom/150px auto no-repeat;
  }
.style-subttl-en{
  font-size: clamp(32px, 10vw, 64px);
}
  .df-brand .df__eyecatch{
    font-size: clamp(28px, 9vw, 56px);
  }
  .df-brand .df__title{
  font-size: clamp(20px, 5vw, 32px);
  }
  .df-bluebox__bg{
    width: calc(100% - 50px);
    left: 50px;
  }
    .df-bluebox .df__title{
  font-size: clamp(20px, 5vw, 32px);
    }
    
 .df-point__thumbs{
  width: 100%;
 }
 .df-point__thumbs figure{
  width: 18%;

 }
}

@media (max-width: 1050px) {

  
  .mv-inner{
    display: block;
    padding: 50px;
  }
  .mv-copy{
    padding-bottom: 0;
  }

  .mv-title-img{
    width: 80%;
  }
  .mv-bride{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
  }
}


@media (max-width: 960px) {
  .df-concept__inner {
    padding: 36px 20px 40px;
  }
  .df-worries__thumbs img{
    margin: 10px 10px 60px;
  }
}

/* スマホ時のバッジ位置調整 */
@media (max-width: 799px) {
  
  .mv-badge {
    position: absolute;
    right: 10%;
    top: 10%;
    width: 90px;
  }
  
  .mv-catch{
    font-size: clamp(16px, 3vw, 22px);
  }
  .df-point__thumbs{
    flex-wrap: wrap;
    justify-content: center;
  }
  .df-point__thumbs figure{
    width: 30%;
  }
}
@media (max-width: 760px) {
  .reservation-date img, .reservation-cta-wrap{
    width: 80%;
  }
  .df-concept .df__title{
    font-size:  clamp(24px, 7vw, 48px);
  }
  .df-concept__thumbs {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .df-concept__subtitle{
    font-size: clamp(18px, 3.5vw, 26px);
  }
    .df-whitebox__bg{
    width: calc(100% + 20px);
    right: 20px;
    background: url("imgdress/concept_bk01.webp") top right /250px auto no-repeat,
    url("imgdress/concept_bk02.webp") left 20px bottom/150px auto no-repeat;
  }
  .df-whitebox__inner{
    padding: 20px 20px 50px 0;
  }
  .df-dress,.df-weddingstyle{
    background: url("imgdress/dress-r_top.webp")  right top -10px / 40% no-repeat,
                url("imgdress/reason.webp") left bottom -10px / 50% no-repeat;
    z-index: 1;
}

  .df-reason{
    background-position:left bottom -10px;
    background-size: 30%;
  }
  .df-reason-contents{
    display: block;
  }
  .df-reason-contents h3{
    margin-top: 20px;
  }
  .df-reason-contents h3 br{
    display: none;
  }

  .df-dress-row,.col3-list{
    grid-template-columns:1fr 1fr;
    gap: 20px;
  }
  .style-subttl-jp{
    font-size: clamp(22px, 6vw, 44px);
  }
  
  .df-contents-all-detail {
   padding: 0 40px 0 50px;}

  .df-contents-all-detail figure{
    width: calc(25% - 10px);
    margin-right: 10px;}

}

@media (max-width: 640px) {

.mv-inner{
  padding: 20px
}
  
  .df-whitebox__inner .df__eyecatch{
    font-size: clamp(48px, 18vw, 120px);
  }
  .df-reason .df__title{
    font-size: clamp(22px, 6vw, 44px);
  }
  
  .reservation-section{
    padding: 50px 0;
  }
  .reservation-venue {
  font-size: clamp(20px, 5vw, 32px);
  }
  .reservation-venue.fontsize40{
    font-size: 3vw;
  }
  .reservation-caption {
  font-size: clamp(16px, 3vw, 24px);
  }
  .reservation-cta {
  font-size: clamp(20px, 5vw, 32px);
    padding: 14px 16px;
  }
  .reservation-badge {
    right: -20px;
    top: -50px;
    width: 100px;
  }

  .df-concept {
    padding: 0 12px 70px;
  }
  .df-bluebox .df__eyecatch{
    font-size:  clamp(40px, 14vw, 100px);
        top: 30px;
  }

  .df-worries__thumbs img{
    width: 40%;
  }

  .df-reason-contents img{
    width: 100%;
    float: inherit;
  }
  .df-reason-contents p br{
    display: none;
  }
  .last-reserv .df__eyecatch{
    font-size:clamp(36px, 12vw, 90px);
  }
  .last-reserv {
    background: url(imgdress/dress-r_top.webp) right top /200px no-repeat;
}
.df-contents-pickup{
  display: block;
  padding: 0 50px;
}
.style-subttl-en{
  margin-bottom: -20px;
}
}

@media (min-width: 600px) {
.sp_visible{
  display: none;
}
}
@media (max-width: 600px) {
.sp_visible{
  display: block;
}
.pc_visible{
  display: none;
}
.mv {
  /* 背景画像（両サイドのポリゴン＋白中央） */
  background: url("imgdress/sp_mv_bk.webp") no-repeat center top / cover;
  overflow: hidden;
}

.mv-subtext{
  font-size: 15px;
  padding: 5px 10px;
  display:table;
}    

.mv-subtext.pc_visible{
  display: none;
}
.mv-catch {
   font-size: clamp(18px, 5vw, 27px);
   margin-bottom: 0;
    }
.mv-title-img{
  width: 100%;
  margin-bottom: 50px;
}
  .mv-bride{
    width: 75%;
    margin-right: -20px;
  }
  .df-brand p{
  font-size: clamp(14px, 4vw, 26px);
    text-align: justify;
  }
  
  .df-brand p br{
    display: none;
  }
  .df-dress-inner, .df-weddingstyle-inner{
    padding: 20px 20px 60px;
  }
  .df-dress .df__title, .df-weddingstyle .df__title{
    font-size: clamp(32px, 10vw, 64px);
  }
  
}
@media (max-width: 430px) {
  
  p{
  font-size: 1rem;        /* =16px */
  line-height: 1.8;       /* 読みやすい */
  }
  .reservation-section{
    padding: 30px 0;
  }
  .reservation-badge{
    top: -30px;
    width: 70px;
  }
  .reservation-caption{
    margin-top: 30px;
  }
  .df-whitebox__inner .df__eyecatch{
    position: inherit;
    margin: 80px 0 0 20px;
    font-size: clamp(44px, 15vw, 110px);
    line-height: 0.5em;
  }
  .df-concept{
    margin-top: 50px;
  }
  .df-brand{
    padding-top: 50px;
  }
  .df-concept .df__title{
    margin-top: 0;
  }
  .df-concept__subtitle{
     font-size: clamp(18px, 5vw, 28px);
  }
  .df-concept__text{
    text-align: justify;
  }
  .df-concept__text br{
    display: none;
  }
  .df-concept{padding-bottom: 20px;}
  .df-brand-box-inner{
    padding: 0 10px;
  }
  .df-brand-box-inner > div{
    width: calc(50% - 20px);
  }

  .df-bluebox__bg{
    width: calc(100% - 20px);
    left: 20px;
  }
  .df-bluebox__inner{
    padding: 0 0 20px;
  }
  .df-bluebox .df__eyecatch{
    position: relative;
    top: 20px;
    text-align: center;
    left: 0;
    margin-left: 20px;
  }
  .df-bluebox .df__title{
    margin-top: 10px;
  }
  
  .faq-list, .df-worries__thumbs{
    margin-left: 40px;
  }
  .df-worries__thumbs img{
    width: 45%;
    margin: 0 0 30px;
  }

  .df-reason-contents{
    padding:  0 20px;
  }
  .df-reason-contents h3{
  font-size: clamp(20px, 5vw, 32px);
    text-align: center;
  }

   .df-dress-row,.col3-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;

  /* iOSの慣性スクロール */
  -webkit-overflow-scrolling: touch;
}


/* 各ドレス */
.df-dress-row > div,.col3-list-item {
  flex: 0 0 auto;        /* 折り返さない */
  width: 180px;          /* 好きな幅に調整 */
}

.df-dress-row img ,.col3-list-item img{
  width: 100%;
  height: auto;
  display: block;
}
.df-contents-pickup{
  padding: 0 20px;
}
.df-contents-pickup-text h3{
  font-size: clamp(20px, 5vw, 32px);
}
.df-contents-all .df__title{
  font-size: clamp(22px, 6vw, 36px);
}
.df-contents-all-detail{
  padding: 0 20px;
}
.df-contents-all-detail{
  justify-content: space-between;
}
.df-contents-all-detail figure{
  width: calc(50% - 5px);
  margin:0 0 15px;
}
.df-contents-all-detail figcaption{
  font-size: 15px;
}

.df-point{
  margin-top: 50px;
}
.df-whitebox__inner .df__eyecatch{
  text-align: center;
}
.df-point .df__title{
  margin-top: 0;
}
.df-point__thumbs{
  justify-content: space-between;
}
.df-point__thumbs figure{
  width: 50%;
  font-size: clamp(14px, 4vw, 26px);
}
    .df-whitebox__bg {
        background: url(imgdress/concept_bk01.webp) top right / 150px auto no-repeat, 
        url(imgdress/concept_bk02.webp) left 20px bottom / 100px auto no-repeat;
    }
.faq-list{
  padding-top: 0;
  padding-right: 20px;
}
.faq-list .faq-q, .faq-list .faq-a{
  font-size: 18px;
  grid-template-columns: 2.5em 1fr;
}

.last-reserv .df__eyecatch{
  font-size: clamp(26px, 8vw, 56px);
  margin:60px auto 0;
}
}