@charset "UTF-8";
html {
  font-size: 100%;
  /* font-family: "Shippori Mincho", serif;
  font-family: "Cormorant Garamond", serif; */
  font-family: "Zen Kaku Gothic New", sans-serif;
  scroll-behavior: smooth;
}
body {
  color: #81561C;
  background-color:#FFF3E4;
}

img {
  max-width: 100%;
  height: auto;
}
section {
  overflow: hidden;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

/* --- 表示切替（要素用） --- */
.sp-only { display: none !important; }
.pc-only { display: block !important; }

/* --- 改行(br)用 --- */
br.sp-only { display: none !important; }
br.pc-only { display: inline !important; }


/* ヘッダー */
header {
  padding: 16px;
  background-color: #CD4400;
}
.logo {
  width: 160px;
  height: auto;
}
.header-menu li {
  margin-left: 40px;
}
.header-menu li a {
  font-size: 22px;
  color: #FCF2EE;
  font-family: "Cormorant Garamond";
  transition: .5s;
}
.header-menu li a:hover {
  color: #C84649;
}




/* もし無ければ追加（読み上げ用） */
.visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* nav周りの基礎 */
.header-nav{
  position: relative;
}

/* ハンバーガーボタン（PCは非表示） */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;      /* ★これ重要：縦に積む */
  justify-content: center;
  align-items: center;
  gap: 6px;                    /* 3本の間隔 */
}
.nav-toggle__bar{
  display: block;
  width: 28px;
  height: 2px;
  background: #FCF2EE;
  margin: 0;  
  transition: transform .25s ease, opacity .25s ease;
}

/* オーバーレイ（PCは不要） */
.nav-overlay{
  display: none;
}




/* メイン */
#hero {
  background-image: url(../images/rose-7903170_1280-4.png);
  background-position: center;
  background-size: cover;
  width: 100%;  
  height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-left: 200px;
  padding-bottom: 170px;
  position: relative;
  scroll-margin-top: 120px; /* ヘッダー高さ + 少し余白 */
}
#hero h1 {
  font-family: "Shippori Mincho";
  font-size: 60px;
  font-weight: 600;
  color:#FCF2EE;
  margin-bottom: 30px;
  text-shadow:
  0 2px 6px rgba(0,0,0,0.35),
  0 10px 30px rgba(0,0,0,0.25);

  opacity: 0; 
  animation: fadeInFromLeftSlow 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#hero .fv-subtitle{
  font-family: "Shippori Mincho";
  font-size: 22px;
  font-weight: 600;
  color:#FCF2EE;
  text-shadow:
  0 2px 6px rgba(0,0,0,0.35),
  0 10px 30px rgba(0,0,0,0.25);
  letter-spacing: 0.1em;
  margin-top: 10px;
  opacity: 0; 
  animation: fadeInFromLeftSlow 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#hero .fv-contact-btn {
  position: absolute;
  right: 90px;
  bottom: 160px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FD944D, #CD4400);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;

  opacity: 0;
  animation: fadeInFromLeftSlow 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.6s;
}

/* ホバーされていないみたいなので後で見直すこと */
.fv-contact-btn:hover{
  background: #FCF2EE;
  transform: translateY(-2px);
 
}

/* お花の作業風景をふわっと出す演出 */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* h1を左からゆっくり出す */
@keyframes fadeInFromLeftSlow {
  0% {
    opacity: 0;
    transform: translateX(-90px); /* ← 今よりしっかり左 */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Aboutセクション */
#about {
  background: linear-gradient(to bottom, #CD4400 30%, #FD944D 100%);
  padding: 90px 0 160px 0;
}
/* Aboutのタイトル */
#about .title {
  width: 240px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
/* Aboutの画像と文 */
.about-body {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  padding-top: 40px;

}
#about .about-image {
  width: 400px;
  height: auto;
  flex-shrink: 0; /* 画像が潰れない */
}

.about-text {
  color: #FCF2EE;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.5px;
  width: calc((100% - 40px) / 2 );
}


/* Galleryセクション */
#gallery {
  padding: 80px 0 120px 0;
}
/* Galleryのタイトル */
#gallery .title,
#service .title {
  width:300px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
.gallery-inner,
.service-inner {
  position: relative;
  width: 100%;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;  
  padding-bottom: 240px;
}
.service-inner {
  padding: 50px 0;
}

.gallery-bg {
  width: 630px;
  height: 650px;
  background: #FAF9F5;
  border-radius: 4px;

  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  z-index: -1;
}



.gallery-slider {
  position: relative;
  z-index: 2;
  width: 500px;           /* 画像サイズに合わせる */
  height: 500px;
  transform: translateY(-90px); /* いまの位置調整をここへ移動 */
}

/* 1枚だけ見せる窓 */
.gallery-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;

}

/* 横並びトラック */
.gallery-track {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.6s ease; /* スライド速度 */
}

  

/* ドラッグ中はtransitionを切って指に追従 */
.gallery-track.is-dragging{
  transition: none !important;
}

/* 1枚ぶん */
.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 画像の見た目（今の設定を維持） */
.gallery-slide img {
  width: 440px;
  height: 440px;
  object-fit: cover;
  border-radius: 55% 45% 53% 47% / 55% 50% 45% 50%;
  display: block;
  margin-top: 50px;
}


/* Gallery 矢印ボタン：Order-Flowと統一 */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.gallery-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
/* 位置（左右・上下中央） */
.gallery-arrow--prev { left: -110px; }
.gallery-arrow--next { right: -110px; }
.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}



.gallery-text {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  text-align: left;
  margin-top: 220px;
  line-height: 2;
  letter-spacing: 0.1em;
  z-index: 3;

  /* ▼待機（アニメはまだしない） */
  opacity: 0;
  transform: translateY(30px);
}

.gallery-leaf {
  position: absolute;
  width: 80%;
  height: auto;
  top: 60%;
  z-index: 2;

  /* ▼待機（アニメはまだしない） */
  opacity: 0;
  transform: translateY(30px);
}
/* 表示用クラスが付いたらアニメーション */
.gallery-text.is-show {
  animation: fadeUp 1.2s ease-out forwards;
}
.gallery-leaf.is-show {
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.6s;
}


/* ▼ドット（ページネーション） */
.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: -46px; /* スライダーの下に出す。好みで調整 */
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 6;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(129, 86, 28, 0.25); /* #81561C を薄く */
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gallery-dot.is-active {
  background: rgba(129, 86, 28, 0.9);
  transform: scale(1.2);
}


/* Serviceセクション */

#service {
  padding: 50px 0 120px 0;
}
.service-bg {
  width: 1060px;
  height:770px;
  background: #FAF9F5;
  margin: 0 auto;
  border-radius: 4px;
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg); 
  z-index: -1;
}
.service-text-1 {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-top: -20px; 
  line-height: 1.6;
  z-index: 3;
  max-width: 840px;
}

/* ステッチ風点々線 */
.service-text-1::after {
  content: "";
  display: block;
  width: 420px;
  height: 2px;
  margin: 30px auto 0;
  background-image: repeating-linear-gradient(
    to right,
    #B28A4A,
    #B28A4A 6px,
    transparent 6px,
    transparent 12px
  );
}
.sp-only {
  display: inline;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.service-items li {
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}

.service-items .emphasis {
  margin-top: 24px;
  font-weight: 500;
}
.service-text-2 {
  position: relative;
  font-size: 18px;
  /* font-weight: 500; */
  /* text-align: center; */
  line-height: 2;
  z-index: 3;
  max-width: 650px;
}
.service-text-3 {
 max-width: 450px;
 width: 100%; /* これを入れるとPCサイズで450pxが確保される */
 background-color: hsl(0, 0%, 90%);
 /* align-self: flex-start;
 margin-left: 220px; */
 letter-spacing:  0.1em;
  
}

/* Order-Flowセクション */

/* Order-Flowのタイトル */
#order-flow {
  padding-top: 70px;
  margin-bottom: 160px;
}
#order-flow .title {
  width:340px;
  height: 80px;
  display: block;
  margin: 0 auto;
  margin-bottom: 80px;
}




/* 見える範囲（ここからはみ出た分は隠す） */
#order-flow .of-viewport {
  overflow: hidden;
}

/* 実際に動く列 */
#order-flow .of-track {
  display: flex;
  transition: transform 1s ease-out;
  will-change: transform;
}

/* 1枚（＝1ステップ分）を「ビューポート幅100%」にする */
#order-flow .of-slide {
  flex: 0 0 50%;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 8px 0;
  
}

#order-flow .of-step {
  max-width: 300px; /* step01画像の大きさに合わせて調整 */
  width: 100%;
  height: auto;
}

#order-flow .of-circle {
  width: 210px; /* 丸画像の大きさ */
  height: auto;
  display: block;
}
#order-flow .step-text {
  font-size: 24px;
  text-align: center;
  line-height: 1.6;

  min-height: 120px;
  display: grid;
  place-items: start center;
  margin: 30px 0 0;
}


#order-flow .step-main {
  display: block;
  margin-bottom: 36px; /* ← ここで間隔調整 */
}

#order-flow .step-sub {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  font-weight: 500;
}

#order-flow .step-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.6em;
  background: rgba(253, 148, 77, 0.35); 
  z-index: -1;
  border-radius: 2px;
}
/* スライダー枠 */
#order-flow .of-slider {
  margin-top: 24px;
  align-items: center;
  gap: 12px;

  display: block; /* flexではなくしました */
  max-width: 770px; /* 基本は幅はmax-widthで考える */
  padding: 0 50px; /* ボタンの居場所を作ってあげる */
  margin: 0 auto;
  position: relative;
}

/* ボタン */
#order-flow .of-btn {
  width: 70px;
  height: 70px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  align-self: center; 

  position:absolute;
  top:calc(50% - 35px);
  z-index:5;
}
/* 左右ボタンの配置 */
#order-flow .of-btn--prev {
    left: 2px;
}
#order-flow .of-btn--next {
    right: 2px;
}

#order-flow .of-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
#order-flow .of-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
/* 非表示用 */
#order-flow .of-btn.is-hidden {
  visibility: hidden; /* レイアウトは保持したまま消す */
  pointer-events: none;
  opacity: 0;
}


/* priceセクション */
#price {
  padding-top: 90px;
  position: relative; 
}
#price .price-row{
  display: flex;
  align-items: center;      /* 縦位置を中央に */
  justify-content: space-between;
  gap: clamp(24px, 6vw, 300px);
  position: relative;
}

#price .title {
  width:235px;
  height: 80px;
  display: block;
  margin: 0;              /* ここ重要：中央寄せを解除 */
  margin-left: 10px;
  flex: 0 0 auto;
  position: relative;
  left: -20px;
}

#price .price-list{
  /* font-family: "Zen Kaku Gothic New", sans-serif; */
  font-size: 26px;
  /* font-weight: 300; */
  column-gap: 120px;    
  display: grid;
  row-gap: 10px;     
  color: #FCF2EE;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(24px, 5vw, 120px);
  
}

.price-list dt {
  margin: 0;
  font-weight: 400;
}
.price-list dd {
  margin: 0;
  text-align: left;
  white-space: nowrap;
  font-weight: 400;
}

/* 右側全体（dl＋注釈） */
#price .price-right{
  flex: 1;
  min-width: 0; /* ← これがないと縮まないことが多い */
  /* width: calc((100% - 40px) / 2 ); */
}


#price .price-note{
  font-size: 26px;
  margin: 14px 0 0;
  text-align: right;         /* 写真みたいに右寄せ */
  color: #FCF2EE;
}

#price .price-note--right{
  max-width:1080px;   
  margin: 44px auto 0;
  text-align: right;
  color: #FCF2EE;
}
.price-contact-btn{
  position: absolute;
  right: 110px;
  bottom: 180px;

  padding: 14px 28px;
  background: rgba(252, 242, 238, 0.9); /* 少し透ける白 */
  color: #81561C;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;

  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.price-contact-btn:hover{
  background: #FCF2EE;
  transform: translateY(-2px);
}


/* profilセクション */

#profile .profile-row{
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 160px;         
}

#profile .title{
  width: 255px;      
  height: 80px;
  /* margin: 0; */
  margin-left: 70px;
  flex: 0 0 auto;
  position: relative;
  left: -20px;         /* Priceと同じく左に寄せたいなら */
}

/* 右側 */
#profile .profile-right { 
  flex: 1;
  position: relative;
}
#profile .profile-photo {
  width: 160px;
  border-radius: 50%;
  margin: 20px 0;
}

#profile .profile-name {
  font-size: 40px;
  margin-bottom: 30px;
  color: #FCF2EE;
  letter-spacing: 0.1em;
}
#profile .profile-career,
#profile .profile-message1,
#profile .profile-message2  {
  font-size: 20px;
  margin-bottom: 40px;
  color: #FCF2EE;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

#profile .profile-message2 {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  font-weight: 500;
  margin: 0;
  z-index: 2;
}
/* 葉っぱを重ねる */
#profile .profile-leaf{
  position: absolute;
  left: 20px;  
  top: 570px;  
  width: 600px;   
  height: auto;
  z-index: 1;     /* メッセージより後ろに */
  pointer-events: none;
}

/* Instagramセクション */
#instagram .title{
  width: 330px;
  height: 80px;
  display: block;
  margin: 0 auto 100px;
}

/* 写真を横並び */
#instagram .instagram-gallery{
  display: flex;
  justify-content: center; 
  gap: 150px;               
}

/* 写真サイズ調整 */
#instagram .instagram-photo{
  width: 200px;         
  height: auto;
  display: block;
}
             
#instagram .instagram-more{
  display: flex;
  align-items: center;
  justify-content: center; /* 中央に置きたい場合 */
  gap: 38px;                /* 文字とアイコンの間隔 */
  margin-top: 150px;
}

#instagram .instagram-more-text{
  margin: 0;               /* pの余白を消す */
  font-size: 24px;
  color: #FCF2EE;
}

#instagram .instagram-more-link{
  font-size: 50px;         /* アイコン少し大きめ */
  color: #FCF2EE;       
}


#price,
#profile,
#instagram{
  margin-bottom: 0;
  padding-bottom: 300px; /* 余白はpaddingで */
}

.section-gradient{
  background: linear-gradient(
    to bottom,
    #F38531 0%,
    #CD4400 100%
  );
}

/* Contactセクション */

/* Contact全体（スクショのベージュ） */
#contact{
  padding: 80px 0;
  background: #FFF3E4; 
}

.contact-inner{
  width: min(600px, 92%);
  margin: 0 auto;
}
#contact .title {
  width:255px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

/* リード文 */
.contact-lead{
  margin: 48px 0 28px 0 ;
}

.contact-lead__main{
  font-size: 20px;
  font-weight: 600;
  /* color: #222; */
  margin-bottom: 8px;
}

.contact-lead__sub{
  font-size: 20px;
  /* color: #222; */
  margin-bottom: 8px;
}

.contact-lead__required{
  font-size: 16px;
  color: #D13A3A; /* 赤 */
  font-weight: 700;
}

/* フォーム */
.contact-form{
  display: grid;
  gap: 24px;
}

/* 1項目（白いカード） */
.form-item{
  background: #fffbfa;
  border-radius: 6px;
  padding: 16px 16px 12px;
}

/* ラベル */
.form-label{
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  /* color: #222; */
  margin-bottom: 10px;
}

.req{
  color: #D13A3A;
  font-weight: 700;
}

.opt { font-size: 13px; opacity: .5; }

/* 下線だけの入力 */
.form-input,
.form-textarea{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  /* color: #222; */
  padding: 6px 2px 10px;
  border-bottom: 1px solid #CFCFCF;
}

/* テキストエリアの高さ調整 */
.form-textarea{
  resize: vertical;
  min-height: 90px;
}

/* プレースホルダー色 */
.form-input::placeholder,
.form-textarea::placeholder{
  color: #9A9A9A;
}

/* 送信ボタン（スクショのグレー） */
.form-submit{
  width: 220px;
  padding: 8px 0;
  text-align: center;
  border: 1px solid #BFBFBF;
  background: #FFE4D1;
  /* color: #222; */
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  margin: 60px auto; 
}

.form-submit:hover{
  filter: brightness(1.2);
}

/* トップへ戻るボタン */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 70px;
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FFF3E4;
  color: #81561C;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);

  z-index: 1000;
}

/* 表示状態 */
.to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-2px);
}

/* セクションタイトル：初期状態 */
.title {
  opacity: 0;
  transform: translateY(30px);
}

/* 表示されたら */
.title.is-show {
  animation: fadeUp 1.6s ease-out forwards;
}
/* ふわっと表示（待機） */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* 表示 */
.js-reveal.is-show {
  animation: fadeUp 1.2s ease-out forwards;
}

/* 遅らせたい要素用（文章とか） */
.js-reveal.js-delay-1.is-show {
  animation-delay: 0.25s;
}
.about-image.js-reveal {
  transform: translateX(-20px);
}
.about-image.js-reveal.is-show {
  animation: fadeInLeft 1.2s ease-out forwards;
}



/* フッター */
.footer-bar {
  background: #CD4400;
  padding: 18px 0 12px;
  color: #FCF2EE;
}

/* 中身：左右に分ける */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 120px ;
}

/* 左：ロゴ */
.footer-logo {
  width: 160px; /* お好みで */
  height: auto;
  display: block;
}

/* 右：連絡先 */
.footer-contact {
  text-align: right;
  line-height: 1.4;
  font-family: "Cormorant Garamond";
}

.footer-contact a {
  display: block;
  color: #FCF2EE;
  text-decoration: none;
  font-size: 20px;  /* お好みで */
  letter-spacing: 0.02em;
  transition: 0.3s;
}

.footer-contact a:hover {
  opacity: 0.8;
}

/* © */
.footer-copy {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
  letter-spacing: 0.06em;
}



/* 下からふわっと演出 */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/* スマホサイズ */

@media (max-width: 768px){
  #instagram .instagram-gallery{
    flex-direction: column;
    align-items: center;
  }


 .inner{
  max-width: 500px;  /* 500〜600くらいで好み */
  padding: 0 16px;   
 }
 .sp-only { display: block !important; }
 .pc-only { display: none !important; }

  br.sp-only { display: inline !important; }
  br.pc-only { display: none !important; }

 header .inner{
    padding: 0;  
  }

  /* ロゴとボタンを横並びに（上段） */
  header .inner.flex{
    flex-wrap: nowrap;
    align-items: center;
  }

  .logo{
    width: 90px;
  }

  /* SPではflexのメニューは使わない（ドロワーにする） */
  .header-menu.flex{
    display: block;
  }

  /* ハンバーガー表示 */
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* メニュー：右から出るドロワー */
  .header-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    height: 100vh;
    padding: 70px 22px 22px; /* 上はヘッダー分 */
    /* background: #DC5411; */
    background: linear-gradient(to bottom, #D94800 0%, #FD944D 100%);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1200;

    /* liの余白調整 */
    margin: 0;
    list-style: none;
  }

  .header-menu li{
    margin: 0;
    border-bottom: 1px solid rgba(252,242,238,0.18);
  }

  .header-menu li a{
    display: block;
    padding: 14px 0;
    font-size: 18px;
    color: #FCF2EE;
  }

  /* オーバーレイ */
  .nav-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 1100;
  }

  /* 開いてる状態（bodyにクラス付与） */
  body.is-nav-open .header-menu{
    transform: translateX(0);
  }
  body.is-nav-open .nav-overlay{
    opacity: 1;
    pointer-events: auto;
  }

  /* ハンバーガー → × に変形 */
  body.is-nav-open .nav-toggle__bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  body.is-nav-open .nav-toggle__bar:nth-child(2){
    opacity: 0;
  }
  body.is-nav-open .nav-toggle__bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  


  #hero{
    position: relative;
    height: 80vh;
    padding: 20px 16px;
    display: flex;
    align-items: center;  
  }

  #hero .fv-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* h1はabsoluteをやめる */
  #hero h1{
    position: static;
    font-size: 26px;
    margin: 0;
  }

  #hero .fv-subtitle{
    position: static;
    font-size: 15px;
    margin: 0;
  }

  /* ボタンだけ右下固定 */
  #hero .fv-contact-btn{
    position: absolute;
    right: 18px;
    bottom: 54px;
    font-size: 14px;
    padding: 12px 20px;
  }




 /* Aboutセクション */
 #about {
  padding: 40px 10px 80px ;
 }

 #about .title {
  width: 124px;
  height: 44px;
 }
 /* Aboutの画像と文 */
 .about-body {
  flex-direction: column;
  gap: 32px; 
  padding-top: 40px;

 }
 #about .about-image {
  width: 100%;
  max-width: 320px;
  /* height: auto; */
  /* flex-shrink: 0;  */
 }

 .about-text {
  font-size: 18px;
  width: 100%;
  text-align: left;
 }


 /* Galleryセクション */
 #gallery {
  padding: 40px 0 30px 0;
 }

 .gallery-inner{
  padding-bottom: 60px;
}
 /* Galleryのタイトル */
 #gallery .title,
 #service .title {
  width:140px;
  height: 44px;
 }
 .gallery-bg {
  width: 270px;
  height: 350px;
 }
 .gallery-slider {
  width: 210px;          
  height: 210px;
  transform: translateY(-40px); 
 }
 /* 画像の見た目（今の設定を維持） */
 .gallery-slide img {
  width: 210px;
  height: 210px;
  margin-top: 0px;
 }

 /* Gallery 矢印ボタン：Order-Flowと統一 */
 .gallery-arrow {
  width: 50px;
  height: 50px;
  border: none;
 }

 /* 位置（左右・上下中央） */
 .gallery-arrow--prev { left: -50px; }
 .gallery-arrow--next { right: -50px; }


 .gallery-text {
  font-size: 20px;
  margin-top: 100px;
  margin-left: 30px;
 }

 .gallery-dot {
  width: 6px;
  height: 6px;
 }
.pc-only {
  display: none;
}

/* Serviceセクション */
#service {
  padding: 50px 0 120px 0;
}

.service-inner {
  max-width: 270px;
  margin: 0 auto;
  position: relative;
}
.service-bg {
  width: 290px;
  height:850px;
  /* background: #FAF9F5; */
  /* margin: 0 auto; */
  /* border-radius: 4px; */
  /* position: absolute; */
  /* top: -3%; */
  /* left: 50%; */
  transform: translateX(-50%); 
  /* z-index: -1; */
}
.service-text-1 {
  /* position: relative; */
  font-size: 15px;
  /* font-weight: 400; */
  text-align: left;
  /* margin-top: -20px;  */
  line-height: 1.4;
  /* z-index: 3; */
}

/* ステッチ風点々線 */
.service-text-1::after {
  /* content: "";
  display: block; */
  width: 200px;
  height: 2px;
  /* margin: 30px auto 0; */
  background-image: repeating-linear-gradient(
    to right,
    #B28A4A,
    #B28A4A 3px,
    transparent 3px,
    transparent 6px
  );
}
.sp-only {
  display: none;
}

.service-list {
  grid-template-columns: 1fr; /* ← 2列→1列 */
  gap: 0px;             
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.service-items li {
  font-size: 18px;
  /* font-weight: 500;
  line-height: 2; */
}

.service-items .emphasis {
  margin-top: 18px;
  /* font-weight: 600; */
}
.service-text-2 {
  position: relative;
  font-size: 15px;
  /* font-weight: 500; */
  /* text-align: center; */
  line-height: 1.6;
  /* z-index: 3; */
}
.service-text-3{
    margin-left: 0;        /* ← これが最重要 */
    font-size: 10px;
    margin-top: -20px;
    letter-spacing: 0.05em;
  }

/* Order-Flowセクション */

/* Order-Flowのタイトル */
#order-flow {
  padding-top: 0px;
  margin-bottom: 160px;
}
#order-flow .title {
  width:200px;
  height: 44px;
  /* display: block;
  margin: 0 auto; */
  margin-bottom: 0px;
}


/* 見える範囲（ここからはみ出た分は隠す） */
/* #order-flow .of-viewport {
  overflow: hidden;
} */

/* 実際に動く列 */
/* #order-flow .of-track {
  display: flex;
  transition: transform 1s ease-out;
  will-change: transform;
} */

/* 1枚（＝1ステップ分）を「ビューポート幅100%」にする */
#order-flow .of-slide {
  flex: 0 0 100%;
  /* display: grid;
  justify-items: center;
  gap: 16px;
  padding: 8px 0; */
  
}

#order-flow .of-step {
  max-width: 300px; /* step01画像の大きさに合わせて調整 */
  width: 100%;
  height: auto;
}

#order-flow .of-circle {
  width: 180px; /* 丸画像の大きさ */
  height: auto;
  display: block;
}
#order-flow .step-text {
  font-size: 16px;
  /* text-align: center;
  line-height: 1.6;

  min-height: 120px;
  display: grid;
  place-items: start center;
  margin: 30px 0 0; */
}


#order-flow .step-main {
  display: block;
  margin-bottom: 36px; /* ← ここで間隔調整 */
}

#order-flow .step-sub {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  font-weight: 500;
}

#order-flow .step-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.6em;
  background: rgba(253, 148, 77, 0.35); 
  z-index: -1;
  border-radius: 2px;
}
/* スライダー枠 */
#order-flow .of-slider {
  /* margin-top: 24px;
  align-items: center;
  gap: 12px;

  display: block;  */
  max-width: 300px; 
  padding: 56px 16px 0; /* 上にボタン置くスペース */
  margin: 0 auto;
  position: relative;
}

/* ボタン */
#order-flow .of-btn {
  width: 50px;
  height: 50px;
  /* top: 8px;  */
  /* border: none; */
  /* background: transparent; */
  /* padding: 0; */
  /* cursor: pointer; */
  /* transition: opacity 0.3s ease; */
  /* align-self: center;  */

  position:absolute;
  top: 184px;
  z-index:5;
}
/* 左右ボタンの配置 */
#order-flow .of-btn--prev {
    left: 0px;
}
#order-flow .of-btn--next {
    right: 0px;
}

#order-flow .of-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
#order-flow .of-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
/* 非表示用 */
#order-flow .of-btn.is-hidden {
  visibility: hidden; /* レイアウトは保持したまま消す */
  pointer-events: none;
  opacity: 0;
}


/* priceセクション */
#price {
  padding-top: 90px;
  /* position: relative;  */
}
#price .inner.price-row {
  padding: 0;
}
#price .price-row{
  /* display: flex;
  align-items: center;      
  justify-content: space-between;
  gap: clamp(24px, 6vw, 300px);
  position: relative; */
  display: block;
  max-width: 280px;
}

#price .title {
  width:124px;
  height: 44px;
  /* display: block; */
  margin: 0 auto 24px;             
  /* margin-left: 10px; */
  /* flex: 0 0 auto; */
  /* position: relative; */
  /* left: -20px; */
  left: 0;
}

#price .price-list{
  /* font-family: "Zen Kaku Gothic New", sans-serif; */
  font-size: 16px;
  column-gap: 16px;    
  /* display: grid; */
  row-gap: 12px;     
  /* color: #FCF2EE; */
  grid-template-columns: 1fr auto;
  /* column-gap: clamp(24px, 5vw, 120px); */
  
}

.price-list dt {
  /* margin: 0;
  font-weight: 400; */
  text-align: left;
}
.price-list dd {
  /* margin: 0; */
  text-align: right;
  /* white-space: nowrap; */
  /* font-weight: 400; */
}

/* 右側全体（dl＋注釈） */
#price .price-right{
  /* font-size: 16px; */
  /* flex: 1;
  min-width: 0;  */
  /* margin: 16px auto 0;
  max-width: 92%;
  text-align: right; */
  width: 100%;

 
}


#price .price-note{
  font-size: 16px;
  margin: 12px 0 0;
  text-align: right;        
}

#price .price-note--right{
  font-size: 14px;
  margin: 16px auto 0;
  max-width: 260px;
  /* max-width:1080px;    */
  /* margin: 44px auto 0; */
  text-align: left;
  /* color: #FCF2EE; */
}
.price-contact-btn{
  /* position: absolute; */
  right: 18px;
  bottom: 20px;
  padding: 12px 20px;
  /* background: rgba(252, 242, 238, 0.9);  */
  /* color: #81561C; */
  font-size: 14px;
  /* font-weight: 600;
  border-radius: 30px;
  text-decoration: none; */

  /* box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease; */

   top: 530px;          
   bottom: auto;        
   left: auto;

}


/* profilセクション */

#profile .profile-header{
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}
#profile .profile-row{
  /* display: flex; */
  display: block;
  max-width: 350px;
  /* gap: 0; */
  /* align-items: center;
  justify-content:flex-start;
  gap: 160px;          */
}
  #profile .profile-photo--sp{
    width: 90px;
    margin: 0;
    border-radius: 50%;
  }
/* タイトル＋写真を横並び */
#profile .inner.profile-row {
  padding: 0 20px;
}

#profile .title{
  width: 124px;      
  height: 44px;
  /* margin: 0 ; */
  /* left: 0; */
  /* margin: 0; */
  margin-left: 30px;
  /* flex: 0 0 auto; */
  /* position: relative; */
  /* left: -20px;        */
}

/* 右側 */
#profile .profile-right { 
  position: relative;
}

  /* #profile .title,
  #profile .profile-photo {
    display: inline-block;
    vertical-align: middle;
  } */


#profile .profile-photo {
  width: 100px;
  margin-left: 20px;
  border-radius: 50%;
}
/* 名前はその下 */
#profile .profile-name {
  font-size: 20px;
  margin: 16px 0 12px;
}




#profile .profile-message1,
#profile .profile-message2{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px; 
}


/* 葉っぱを重ねる */
#profile .profile-leaf {
  width: 260px;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
}




/* Instagramセクション */
#instagram .title{
  width: 168px;
  height: 44px;
  /* display: block;
  margin: 0 auto 100px; */
  margin-bottom: 60px;
}
/* 写真を横並び */
#instagram .instagram-gallery{
  display: flex;
  flex-direction: row;
  gap: 15px;               
}

/* 写真サイズ調整 */
#instagram .instagram-photo{
  width: 90px;         
  /* height: auto;
  display: block; */
}
             
#instagram .instagram-more{
  /* display: flex;
  align-items: center;
  justify-content: center; 
  gap: 38px;                 */
  margin-top: 60px;
  margin-bottom: 0;
}

#instagram .instagram-more-text{
  /* margin: 0;               */
  font-size: 16px;
  /* color: #FCF2EE; */
}

#instagram .instagram-more-link{
  font-size: 25px;         
}
#price {
  padding-bottom: 250px; 
}

#profile {
  padding-bottom: 150px; 
}

#instagram {
  padding-bottom: 100px; 
}



/* Contactセクション */

/* Contact全体（スクショのベージュ） */
#contact{
  padding: 60px 0;
}

/* .contact-inner{
  width: min(600px, 92%);
  margin: 0 auto;
} */
#contact .title {
  width:150px;
  height: 44px;
  /* display: block;
  margin: 0 auto; */
}

/* リード文 */
.contact-lead{
  margin: 48px 0 28px 0 ;
}

.contact-lead__main{
  font-size: 18px;
  /* font-weight: 600; */
  /* color: #222; */
  /* margin-bottom: 8px; */
}

.contact-lead__sub{
  font-size: 16px;
  /* margin-bottom: 8px; */
}

/* フォーム */
.contact-form{
  /* display: grid; */
  gap: 20px;
}

/* 1項目（白いカード） */
.form-item{
  /* background: #fffbfa;
  border-radius: 6px; */
  padding: 12px 12px 8px;
}
/* ラベル */
.form-label{
  display: inline-block;
  font-size: 14px;
  /* font-weight: 600; */
  /* color: #222; */
  /* margin-bottom: 10px; */
}


/* フッター */
.footer-bar {
  /* background: #CD4400; */
  padding: 12px 4px ;
  /* color: #FCF2EE; */
}

/* 中身：左右に分ける */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 12px ;
}

/* 左：ロゴ */
.footer-logo {
  width: 90px; 
  /* height: auto; */
  /* display: block; */
}

/* 右：連絡先 */
.footer-contact {
  text-align: right;
  line-height: 1.4;
  font-family: "Cormorant Garamond";
}

.footer-contact a {
  font-size: 18px;  
  /* letter-spacing: 0.02em; */
  /* transition: 0.3s; */
}

/* © */
.footer-copy {
  /* display: block; */
  /* text-align: center; */
  /* margin-top: 10px; */
  font-size: 12px;
  /* opacity: 0.9; */
  letter-spacing: 0.04em;
}




}


