@charset "utf-8";

/* -----------------------
   初期設定
----------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1em; /* 16px 相当 */
}

body {
  color: #707070;
  background-color: #fff;
  font-family:  "Noto Serif JP", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
p {
  margin: 0;
} 


/* -----------------------
   共通スタイル
----------------------- */


.wrapper {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.bg_corlo {
  background-color: #F8F6F2;
  padding: 3rem 0;
}

.titel-box {
  margin-top: 8rem;
  margin-bottom: 5rem;
}

.section-title {
  position: relative;
  padding-left: 3rem; /* 線の分だけ余白 */
  color: #E0CEB5;
  font-size: 1.5rem;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight:100;
  font-style: normal;
  letter-spacing: 0.1rem;

}

.titel-box {
  width: fit-content;
  text-align: left;
}

.title-top {
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;      /* 線の長さ */
  height: 1px;      /* 線の太さ */
  background-color: #707070;
}

.option_price .tax {
  font-size: 0.8em;
  opacity: 0.7;
}

/* 共有ボタン */

.btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 20em;        /* ボタンの横幅 */
  margin-top: 8em;
  margin-bottom: 6em;
  padding: 1em;
  background-color: #E0C5A7;
  border-radius: 3em;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.2em;
}

.btn a {
  text-decoration: none;
  font-size: 1.2em;
  color: #ffffff;
  font-weight: bold;
}


/* -----------------------
   グローバルメニュー_pc
----------------------- */

.blanc_global_nav {
  padding: 10px;
}

.blanc_globalmenu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blanc_global_nav ul{
  display: flex;
  list-style: none;
  gap : 3rem;

}

.blanc_global_nav li {
font-size: 0.8rem;
}

.blanc_global_nav a {
  text-decoration: none;
  color: #707070;
  transition: 0.3s;
} 


/* -----------------------
   メインビジュアル全体_pc
----------------------- */

.mv {
  position: relative;
  overflow: hidden; 
}

.mv_pattern {
  position: absolute;
  top: 40%;
  right: -1%;
  transform: translateY(-50%);
  width: clamp(500px, 60vw, 1000px);
  height: 90%; 
  object-fit: cover;
  opacity: 0.2;
  z-index: -1;
}

.mv_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5rem;
}

.mv_logo {
  width: clamp(140px, 12vw, 200px);
}

.mv_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  
}

.mv_text_inner {
  text-align: left;
}

.mv_text h1 {
  color: #A09182;
  margin-top: 2rem;
  font-size: clamp(24px, 2.5vw, 35px);
  font-weight: 100;
  line-height: 1.6;
  letter-spacing: 0.3rem;
  text-align: left;
  text-shadow: 0 6px 6px #a0918266;
}

.mv_slider {
  position: relative;
  width: 50%;
  max-width: 700px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.mv_slider img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1s;
}

.mv_slider img.active {
  opacity: 1;
}

/* -----------------------
   コンセプト_pc
----------------------- */

.concept {
  position: relative;
  padding-top: 120px; /* ライン分ちょい余白多め */
}

.concept::before {
  content: "";
  position: absolute;
  top: -30px;        /* 上に伸ばす */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;     /* 線の長さ */
  background: #000000;
}

.concept_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  z-index: 1;
}

.concept_box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; 
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: -1;        
}

.concept_text h2 {
  color: #C7AF8E;
  font-size: 1.7rem;
  font-weight: 400;
}

.concept_text {
  width: 50%;
  padding-left: 5rem;
}

.concept_text p {
  color: #6F6C77;
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  line-height: 2.1rem;
}

.concept_box img {
  position: relative;
  width: 50%;
  height: auto;
  z-index: 1;
}


/* -----------------------
   ギャラリー_pc
----------------------- */

 .gallery_img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;;
}

.gallery_img img:nth-child(3n) {
  grid-column: span 1;
}

.gallery_img img:nth-child(5n) {
  grid-row: span 4;
}
.gallery_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* -----------------------
   プラン一覧_pc
----------------------- */

.plan_box {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 50px;
}

.plan_item {
  width: 100%;
  height: auto;
  background-color: #fff;
  text-align: center;
  box-shadow: 6px 6px 6px #c7af8e2e;
}

.plan_head {
  display: block;
  width: 100%;
  height: 1rem;
  background-color: #E0C5A7;
}

.plan-card {
  padding: 3rem 1rem;
  font-weight: 200;
}

.plan_item h3 {
  display: block;
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.2rem;
}

.price {
  font-size: 1.8rem;
  padding: 1rem 0;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #707070;
}

.item {
  padding: 1rem 0;
  border-bottom: 1px solid #707070 ;
}

.item h4 {
  font-size: 1.3rem;
  font-weight: 100;
  letter-spacing: 0.2rem;
}

.item p {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

.plan_text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}

.plan-card .item:last-child {
  border-bottom: none;
}

/* -----------------------
   ドレス一覧_pc
----------------------- */

.dress_list {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin: 0 auto;
  margin-bottom: 10rem;
}

.dress_item {
  margin-top: 1rem;
}

.dress_item img {
  display: block;
  width: 100%;
  height: auto;

}

.dress_name {
  position: relative;
  padding:1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 200;
}

.dress_name::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 52%;
  transform: translateY(-50%);
  width: 1px;      /* 線の長さ */
  height: 20px;      /* 線の太さ */
  background-color: #707070;
}

/* -----------------------
   オプション_pc
----------------------- */


 
.option-list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.option_inner {
  background-color: #fff;
  padding: 4rem;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 200;
  color: #666;
}

.option_name {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.dot {
  flex: 1;
  border-bottom: 2.5px dotted #aaa;
  margin: 0 8px;
}

.option_price {
  margin-left: auto;
}


/* -----------------------
   おすすめポイント_pc
----------------------- */

.point_inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-bottom: 8rem;
}

.point_item {
  padding: 1rem;
  text-align: center;
  background-color: #FCFAFA;
}

.point_item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.point_item p {
 font-size: 1rem;
}

/* -----------------------
   撮影前の流れ_pc
----------------------- */

.step {
  text-align: center;
  margin-bottom: 3rem;
}

.step-label {
  display: inline-block; 
  width: 100%;
  max-width: 900px; 
  padding: 1rem 0;
  background: #fff;
  font-size: 1.2rem;
  position: relative;
}

.step-label .sub {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  color: #666;
  letter-spacing: 0.1rem;
}

.step-label::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 1px;
  height: 20px;
  background: #ccc;
}

.step:last-child .step-label::after {
  display: none;
}


/* -----------------------
   問い合わせ_pc
----------------------- */

.contact_titel-box {
  position: relative;
  color: #000;
  width: 100%;
  padding: 8rem 0;
  text-align: center;
  background: url("/images/blanc_img/contact_bg.jpg") no-repeat center / cover;
}

.contact_titel-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;  
  opacity: 0.4; 
}

.title-sbu {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}

.section-contact_title {
  font-size: 3rem;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight:100;
  font-style: normal;
}

.contact-intro {
  text-align: center;
  padding: 80px 20px;
}

.lead {
  font-size: 0.9rem;
  color: #000;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.tel-text {
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.tel-number {
  font-size: 2.7rem;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight:100;
  font-style: normal;
  margin: 20px 0;
}

.info {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.form-group {
  margin-bottom: 40px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.required {
  background: #d2c2a9;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  margin-left: 10px;
}

input,
textarea {
  width: 100%;
  padding: 18px;
  border: none;
  background: #eee;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

input:focus,
textarea:focus {
  outline: none;
  background: #e5e5e5;
}

.note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 10px;
  line-height: 1.8;
}

.form-btn {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 7rem;
}


/* -----------------------
   フッダー_pc
----------------------- */


iframe {
  width: 100%;
  height: 500px;
}

.footer_box {
  background-color: #F3EFE4;
  padding-top: 3rem;
}


.footer_inner img {
  display: block;
  width: 120px;
  margin: 0 auto;
}

.footer_inner {
  text-align: center;
}

.footer_tel {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer_info {
  margin-top: 1.5rem;
  line-height: 2remrem;
}

.footer_info p {
  font-size: 0.8rem;
}

/* -----------------------
   フッダーメニュー_pc
----------------------- */

.footer_global_nav {
  padding: 10px;
}

.footer_globalmenu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_global_nav ul{
  display: flex;
  list-style: none;
  gap : 3rem;

}

.footer_global_nav li {
font-size: 0.8rem;
}

.footer_global_nav a {
  text-decoration: none;
  color: #707070;
  transition: 0.3s;
} 

.footer_info {
  line-height: 1.2rem;
  margin-bottom: 2rem;
}


.footer_privacy {
  background-color: #fff;
  padding: 0.2rem 1.5rem;
}

.privacy_nav{
  display: flex;
  justify-content: right;
  list-style: none;
  gap: 1rem;
}

.privacy_nav li a {
  color: #98979C;
  font-size: 0.7rem;
  text-decoration: none;
}

.copyright_wrap {
  padding: 0.3rem 0;
  font-size: 0.5rem;
  text-align: center;
}


  /* タブレット */
@media screen and (max-width: 1024px) {



  /* -----------------------
   ハンバーガーボタン1024
  ----------------------- */


.blanc_globalmenu {
  justify-content: right;
}

.blanc_global_nav ul {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  right: 20px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blanc_global_nav ul.active {
  display: flex;
}

.hamburger {
  display: block;
  width: 1rem;
  height: 25px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}


.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }


button {
  background: #cbb08c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

  /*----ギャラリー1024----*/


  /*----プラン1024----*/
.plan_box {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}


  /*----フッダーメニュー1024----*/

  .footer_globalmenu {
    margin-bottom: 2rem;
  }

  .footer_global_nav ul {
  flex-direction: column;
  gap: 0.7rem;
  }

}


  /* スマホ */
@media screen and (max-width: 768px) {

  /*----共通768----*/


  /*----メインビジュアル768----*/

  .mv {
    position: relative;
    height: 100vh;
  }

  .mv_inner {
    flex-direction: column;
    gap: 30px;
  }

  .mv_logo {
    width: 165px;
    flex-shrink: 0;
    filter: 
      drop-shadow(0 0 10px rgba(255,255,255,10))
      drop-shadow(0 0 25px rgba(255,255,255,10));
  }
  

  .mv_text {
    position: absolute;
    top: 675px;
    left: 0;
    width: 90%;
    padding: 2rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-radius: 0 3rem;
  }

  .mv_text h1 {
    font-size: 2rem;
  }

  .mv_text_inner {
    display: flex;
    align-items: flex-start; 
    gap: 3rem;
  }

  .mv_slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
    overflow-x: visible;
  }

  .mv_slider img {
    width: 100%;
    height: auto;
    display: block;
  }


  
  /*----コンセプト768----*/

  .concept_box {
    flex-direction: column;
  }

  .concept_text,
  .concept_box img {
    width: 100%;
    padding : 0 1.5rem;
  }

  .concept_text br {
    display: none;
  }

  .concept_box {
    gap: 30px;
  }


    /*----ギャラリー768----*/

  .gallery_img {
    grid-template-columns: repeat(2, 1fr);
  }

    /*----プラン768----*/

  .plan_box {
    grid-template-columns:  repeat(2, 1fr);
    gap: 1rem;
  }

    /*----ドレス768----*/
    .dress_list {
      gap: 2rem;
    }
  

}

  /* スマホ */
  @media screen and (max-width: 550px) {



   .mv_text {
    top : 615px;
    padding: 2rem 1rem;
   } 

   .mv_text h1 {
    font-size: 1.9rem;
   }

   .plan_box {
    grid-template-columns: 1fr;
   }


    /*----オプション550----*/
  

   .option_inner {
    padding: 2rem 1rem;
   }
    
   .option_name {
    font-size: 0.8rem;
   }



  
  }



  /* スマホ */
@media screen and (max-width: 400px) {

   /*----共通スタイル400----*/



  .btn {
    width: 100%;
  }

  .wrapper {
    padding: 0 1rem;
  }

  /*----メインビジュアル400----*/

  .mv {
    height : 80vh; 
  }

  .mv_logo {
    width: 150px;
  }

  .mv_text {
    top: 525px;
  }

  .mv_text {
    width: 95%;
  }

  .mv_text h1 {
    font-size: 1.5rem;
  }

  .mv_text_inner {
    gap : 1rem;
  }

  /*----コンテンツ400----*/

  .concept_text p br {
    display: none;
  }

  /*----オプション400----*/


   

   /*----おすすめ400----*/
   .point_inner {
    gap: 1rem;
  }


   /*----コンタクト400----*/
  .contact_titel-box {
    padding: 4rem 0;
  }

   .contact-form {
    padding: 0;
   }

   .contact-intro {
    padding: 4rem 0.5rem;
   }

   .tel-number {
    font-size: 2.2rem;
   }

   /*----フッダー400----*/
   .footer_info {
    padding: 0 1rem;
   }

   .privacy_nav li a {
    font-size: 0.48rem;
   }
}