html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  padding: 100px 0 0; /* ← これなら上書きなし！ */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  width: 100%;
}

.notice {
width: 100%;
}

.notice-bar {
  background: #f7f2ec; /* Solacielっぽい柔らかいベージュ */
  
  margin-bottom: 10px;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.notice-text-top {
  padding-left: 5px;
}
/* -------------------------------------------------*/
/*                   ヘッダー全体                    */
/* -------------------------------------------------*/
header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;               /* PC用高さを明示 */
  background-color: #73B5F1;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

/* --- ヘッダー中身 --- */
.header-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0;
}

/* --- ロゴ --- */
.logo {
  margin: 0 auto;
  display: flex;
  align-items: left;
  justify-content: center;
  width: 180px;
  height: auto;
  position: static; 
}



/* --- ナビゲーション --- */
.nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.7;
}

/* --- ハンバーガーアイコン --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 15px;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #858585;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5px, -0.5px);
}



/* スマホ表示（例: 768px 以下） */
@media (max-width: 768px) {
  .header {
    height: 80px; /* モバイル用高さ */
  }

  .header-content {
    justify-content: center; /* ロゴ中央 */
  }

  .logo {
    margin: 0 auto; /* ロゴ中央 */
    justify-content: center;
  }

  .header-inner {
    justify-content: space-between; /* ハンバーガー右端 */
  }

  .hamburger {
    display: flex; /* ハンバーガーを表示 */
    position: absolute;
    right: 30px; /* 右端に固定 */
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* ハンバーガー開閉用 nav */
  .nav {
    position: fixed;       /* 画面に固定 */
    top: 60px;             /* ヘッダーの下から */
    left: 0;
    width: 100%;          /* 画面幅いっぱい */
    height: 100vh;         /* 画面いっぱいに */
    background-color: #73B5F1;
    display: none;         /* デフォルトは非表示 */
    flex-direction: column;
    align-items: center;   /* リンクを中央寄せ */
    justify-content: flex-start;
    padding-top: 40px;     /* ヘッダーとの間隔 */
    z-index: 5000; /* ヘッダーより上に */
  }

  /* 表示状態の切り替え（JSでクラス付与） */
  .nav.active {
    display: flex;
  }

  /* ナビリンク */
  .nav-links {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;   /* リンクを中央寄せ */
    width: 100%;           /* 横幅いっぱい */
    text-align: center;
    
  }

  .nav-links a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin: 15px 0;        /* リンク間の縦間隔 */
  }


}






/* -------------------------------------------------*/
/*               コンテンツ全体制御                   */
/* -------------------------------------------------*/
section {
  scroll-margin-top: 130px; /* ← ヘッダーの高さに合わせて調整（例：80px） */
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

/* 文章部分の読みやすさをさらに調整するなら */
p {
  max-width: 800px;
  margin: 0 auto 1.5em;
  text-align: left;
  font-size: 16px;
}

/* --- コンテナ --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;   /* ←これが絶対必要！ */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  box-sizing: border-box;
}




/* -------------------------------------------------*/
/*              Hero(About)セクション                */
/* -------------------------------------------------*/
.about {
  display: flex;
  flex-wrap: wrap; /* 狭くなると縦並び */
  align-items: flex-start;
  justify-content: center;
  gap: 10%;
  width: 100%;
}

.topImage {
  width: 40%;
  object-fit: cover;
  margin-top: 20px;
}

.aboutText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  text-align: left;
}

.aboutTitleLine1 {
  font-size: 2rem;
  letter-spacing: 1.5px;
  margin: 0;
}

.aboutTitleLine2 {
  font-size: 3rem;
  margin: 0;
  margin-top: -10px;
}

.stars {
  width: 25%;
  margin-top: 10px;
  margin-left: -5px;
}

/* --- about本文 --- */
.about p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin: 20px 0 0 0;
}




/* -------------------------------------------------*/
/*                Galleryセクション                  */
/* -------------------------------------------------*/

.gallerySection {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  background: #fff;
}

.gallery-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

/* ====== Grid Layout ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* ====== Card ====== */
.gallery-card {
  border-radius: 18px;
  padding: 40px;
  background: #fafafa;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* ====== Image Area (2 Columns) ====== */
.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Each image block */
.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* Images */
.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Label (Original / Doll) */
.gallery-image .label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  color: #444;
  font-weight: 300;
  backdrop-filter: blur(4px);
}

.gallery-image {
  position: relative;   /* 絶対配置の基準 */
  overflow: hidden;
  border-radius: 14px;
}

/* ドール・オリジナル画像 */
.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* ラベル表示 */
.gallery-image .label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  color: #444;
  font-weight: 300;
  backdrop-filter: blur(4px);
}

/* 複数画像トリガーアイコン */
.slider-trigger {
    position: absolute;
    top: 10px; /* 右上から10px */
    right: 10px; /* 右上から10px */
    z-index: 10;
    
    /* アイコンのデザイン */
    background-color: #ffffff; /* 目立つ色 */
    color: #565656;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* 丸くする */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.slider-trigger:hover {
    transform: scale(1.1);
}

/* ====== スライダーモーダル (新規追加) ====== */
.slider-modal {
    display: none; /* 初期状態では非表示 */
    position: fixed; 
    z-index: 9999; /* 確実に最前面に表示 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); 
}

.modal-content {
    position: relative;
    margin: 5vh auto; /* 画面中央付近に配置 */
    width: 90%; 
    max-width: 900px;
    /* モーダル内の背景は透明にして画像だけを見せる */
}

.close-btn {
    color: #94a4a8;
    font-size: 50px;
    font-weight: 300;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

.close-btn:hover {
    color: #abb6bb;
}

/* Swiperコンテナの高さ調整 */
.swiper {
    width: 100%;
    height: auto;
    background-color: #000; /* 背景を黒くして画像を見やすく */
    border-radius: 10px;
}

.swiper-slide {
    text-align: center;
    /* 画面全体を使って画像を表示するためのスタイル */
}

.swiper-slide img {
    width: auto; /* 幅は画像サイズに合わせる */
    max-height: 90vh; /* 画面の高さに応じて最大高さを設定 */
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 左右矢印の色変更 */
/* モーダル内の矢印であることを明記 */
.slider-modal .swiper-button-prev,
.slider-modal .swiper-button-next {
  color: #cabdb9 !important; /* または、!importantを使わずに詳細度を上げる */
}

/* 未アクティブ（薄い点） */
.slider-modal .swiper-pagination-bullet {
  background: #dcd3cf; 
  opacity: 1;
}

/* アクティブ（現在のスライドの点） */
.slider-modal .swiper-pagination-bullet-active {
  background: #907e78;
}

/* ====== Text Area ====== */
.gallery-info {
  margin-top: 30px;
  text-align: center;
}

.gallery-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #333;
}

.gallery-description {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .gallery-card {
    padding: 30px 20px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 2rem;
  }
}




/* -------------------------------------------------*/
/*                  Voicesセクション                 */
/* -------------------------------------------------*/

/* 既存のスタイルを維持 */
.voices-section {
  width: 100%; 
  max-width: 1200px;
  text-align: center;
  padding: 50px 20px; /* 画面端に余裕を持たせる */
  margin: 0 auto; /* 中央寄せ */
  background-color: #fefefe;
}

/* Swiperコンテナの幅と高さの設定 */
.voices-swiper {
  width: 100%;
  max-width: 1000px; /* スライダー本体の最大幅を少し狭める */
  margin: 0 auto; /* 中央寄せ */

  position: relative; 
  z-index: 1;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px; /* 上下の矢印のスペース確保 */
  padding-bottom: 20px;
  margin: 0 20px 50px; /* ページネーションのための余白を確保 */
  box-shadow: none;
}


/* スライド（カード）のスタイル */
.swiper-slide.voice-card {
  height: auto; /* Swiperはheight: auto;を推奨 */
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: left;
  box-sizing: border-box;
  margin: 0;           /* カード間のマージンをリセット */
  box-shadow: none;    /* ギャップが目立たないように */
  display: flex;
  flex-direction: column;
}

.voice-text {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  color: #666 !important; /* ボタンの色をご要望に合わせて調整 */
  opacity: 0.5;
  z-index: 10; /* カードよりも確実に前面へ */
  transition: all 0.3s;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}


/* ホバー時のスタイル */
.swiper-button-prev:hover {
  color: #000;
  opacity: 1;
  transform: scale(1.1);
  transform: translate(-5px, 0);
}

.swiper-button-next:hover {
  color: #000;
  opacity: 1;
  transform: scale(1.1);
  transform: translate(5px, 0);
}

.swiper {
  overflow: clip;
}

/* 左右の矢印位置 */
.swiper-button-prev {  
  transform: translate(-5px, 0);
}
.swiper-button-next { 
  transform: translate(5px, 0);
}

/* 矢印アイコン自体のサイズ調整 */
.swiper-button-prev::after,
.swiper-button-next::after {
   font-size: 20px !important;
}


/* アバターとヘッダー */
.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
}

.avatar {
  width: 50px; /* 例えば50px */
  height: 50px; /* widthと同じ値にする */
  border-radius: 50%; /* これで正円になる */
  object-fit: cover; /* 画像がはみ出さないように、中央を基準に切り抜き */
  float: left; /* これは引き続き使用してもOKです */
  margin-right: 10px;
}

.voice-header .avatar {
    /* float: left; を削除し、マージンのみに */
    margin: 0 10px 0 0; 
}


/* アバターと名前のエリアをフレックスコンテナにする */
.voice-card h3 {
    margin: 0;
}

/* ページネーションをカードの下に押し出すため、スライダーコンテナの下に余白を追加 */
.voices-swiper {
    /* (中略) */
    margin-bottom: 80px; /* ★追記: ページネーションのための余白 */
}

/* ページネーション自体の位置調整 */
.swiper-pagination {
    width: 100%;
    text-align: center;
}

/* ページネーション（ドット）の色調整 */
.swiper-pagination-bullet-active {
    background: #73B5F1 !important; /* アクティブなドットの色 */
}


/* スマホ表示（例: 768px 以下） */
@media (max-width: 768px) {
  .swiper-wrapper{
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
  .voices-swiper,
  .voices-section {
    overflow-x: hidden;
    width:100%;
  }
}


/* -------------------------------------------------*/
/*                  Shop セクション                  */
/* -------------------------------------------------*/

.shop {
  display: flex;
  flex-direction: column; /* ← タイトル → コンテンツの縦並び */
  width: 100%;
  margin-top: 50px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.shopTitle {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* --- 画像＋文章をまとめたコンテナ --- */
.shopContainer {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;   /* ← これで中央に固定される！ */
  align-items: center;
  justify-content: center;
}

.tax-info-toggle {
  color: #1a73e8; /* リンク色 */
  text-decoration: underline;
  cursor: pointer;
}

.tax-info {
  display: none; /* 最初は非表示 */
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  font-size: 0.95em;
}

.tax-info p {
  margin: 0; /* 上下の余白を消す */
}

.shopImage {
  width: 40%;
  object-fit: cover;
}

.shopText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  text-align: left;
}

.shopTitleLine1 {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin: 0;
}

.shopTitleLine2 {
  font-size: 3rem;
  margin-top: -12px;
  margin-bottom: -12px;
}

/* --- shop本文 --- */

.stars {
  width: 20%;
}

.price {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
  margin-bottom: 0;
}

.shop p.smallText {
  font-size: 0.8rem;
  margin-top: 0px;
  color: gray;
}

ul{
  list-style:none;
  padding-left:0;
  margin-bottom: 5px;
}

.list {
  color: #73B5F1;
  font-weight: bold;
}

.size-buttons {
  margin-top: 0px;
}

.size-btn {
  font-family: 'Source Sans 3', sans-serif;
  padding: 5px 20px;
  padding-bottom: 8px;
  margin-right: 5px;
  font-size: 1.0rem;
  background-color: #ebe8e8;
  border-width: 0px;
  cursor: pointer;
  transition: 0.2s;
}

.size-btn:hover {
  background: #d6dfe7;
}

.size-btn.active {
  background: #73B5F1;
  color: white;
  border-color: #333;
}

.inquire {
  font-family: 'Source Sans 3', sans-serif;
  padding: 7px 20px;
  margin-top: 15px;
  font-size: 1.0rem;
  cursor: pointer;
  transition: 0.2s;
  background: #73B5F1;
  color: white;
  border-width: 0px;
}

.inquire:hover {
  background: #4d9dee;
}

.notice-shop {
  margin-top: 15px;
  background: #f7f2ec; /* Solacielっぽい柔らかいベージュ */
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 5px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.notice-text {
  padding-left: 5px;
}

.notice-text2 {
  padding-left: 25px;
}

/* --- スマホでは縦並びに --- */
@media (max-width: 768px) {
  .shopContainer {
    flex-direction: column;
    text-align: center;
  }
}


/* ------------------------- FAQ セクション ------------------------- */
.faq {
  margin-top: 130px;
  width: 75%;
  padding: 0 50px; /* 横に余白を少し残す場合 */
  box-sizing: border-box;
}

.faqTitle {
  text-align: center;
}

.qanda {
    width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qanda summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qanda summary::before,
.qanda p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qanda summary::before {
    color: #73B5F1;
    content: "Q";
}

.qanda summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qanda[open] summary::after {
    transform: rotate(225deg);
}

.qanda p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qanda[open] p {
    transform: none;
    opacity: 1;
}

.qanda p::before {
    /* color: #ff8d8d; */
    color: #c7c169;
    line-height: 1.2;
    content: "A";
}

.faqSmallTitle {
  padding-left: 25px;
}

.qandaList {
  list-style-type:disc;
  padding-left: 48px;
}


/* ------------------------- Artist セクション ------------------------- */
.artist {
  margin-top: 130px;
}

.artistImg {
  width: 150px; /* サイズを指定（例） */
  height: 150px;
  margin: 0 auto; /* 中央寄せしたい場合 */
}

.artistImg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← 丸の中にきれいに収める */
  display: block;
}

.artistTitle {
  text-align: center;
}

.artistContents {
  max-width: 800px; /* 横幅を制限して読みやすくする */
  margin: 0 auto; /* ← ブロック全体を中央寄せ */
  text-align: left; /* ← 文字は左揃え */
  line-height: 1.8; /* 行間を広げて読みやすく */
  font-size: 16px;
  color: #333;
  padding: 20px; /* 少し余白をつけて見栄え良く */
}

/* ------------------------- Contact セクション ------------------------- */

.contact {
  width: 70%;
  margin-top: 80px;
}

.contactTitle {
  text-align: center;
  width: 100%;
}

.contactForm {
  width: 60%;         /* 画面幅いっぱい */
  max-width: 400px;    /* ← PCではここまで広がる */
  margin: 0 auto;      /* 中央寄せ */
  position: relative;
}

/* 入力行 */
.formLines1,
.formLines2,
.formLines3 {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}

/* 入力欄 */
.inputText1,
.inputText2,
.inputText3 {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: none;
  border-radius: 4px;
  box-sizing: border-box;
}

.inputText3 {
  resize: vertical; /* 好みで。右下から高さ調整できるようにするなら残す */
  vertical-align: top; /* カーソルを常に上段から開始 */
}

/* ラベル（最初の位置） */
.label1,
.label2,
.label3 {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 16px;
  color: #888;
  pointer-events: none;
  transition: 0.3s ease;
  background-color: #fff;
  padding: 0 4px;
}

/* ラベルを浮かせる条件 */
.formLines1:focus-within label,
.formLines2:focus-within label,
.formLines3:focus-within label,
.formLines1 input:not(:placeholder-shown) ~ label,
.formLines2 input:not(:placeholder-shown) ~ label,
.formLines3 input:not(:placeholder-shown) ~ label,
.formLines1 textarea:not(:placeholder-shown) ~ label,
.formLines2 textarea:not(:placeholder-shown) ~ label,
.formLines3 textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #73B5F1;
}

/* 入力済み → フォーカス外でもラベルを浮かせる */
.inputText1:not(:placeholder-shown) + label,
.inputText2:not(:placeholder-shown) + label,
.inputText3:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #73B5F1;
}

.submitButton {
  text-align: center;
  margin-top: 15px;
}

.submit-btn {
  padding: 8px 24px;
  color: #fff;
  background-color: #73B5F1;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease; /* ← これがフワッと感の鍵 */
}

/* Hover 時の優しい光の気配 */
.submit-btn:hover {
  background-color: #8DC9FF; /* ほんのり明るく */
  transform: translateY(-2px); /* ふわっと持ち上がる */
  box-shadow: 0 6px 12px rgba(115, 181, 241, 0.4); /* 溶けるような光 */
}

/* クリック時にスッと戻る */
.submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.form-status {
  text-align: center;      /* 横方向中央 */
  margin-top: 10px;        /* 上の余白 */
  font-weight: bold;       /* 強調 */
}


/* ------------------------- フッター ------------------------- */

/* --- フッター全体 --- */
.site-footer {
  margin-top: 100px;
  width: 100%;
  background-color: #73B5F1;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: sans-serif;
}

/* コンテナ */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* リンクリスト */
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links li a:hover {
  text-decoration: underline;
}

/* SNSリンク */
.footer-social {
  text-align: center;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-social a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 28px;   /* ここでサイズ調整 */
  height: auto;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0px;
}



/* ------------------------- 個別ページ ------------------------- */
/* mainを中央寄せ */
main {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px;
}

/* h1, h2の左位置も揃える */
main h1,
main h2,
main p,
main ul {
  margin-left: 0;
  padding-left: 0;
}

.strongPart {
  font-weight: 600;
}

/* ------------------------- Order Form ------------------------- */
.orderform-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px;
}

.orderform-title {
  text-align: center;
}

.drop-zone {
    border: 2px dashed #aaa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.drop-zone.dragover { 
  background-color: #f8f8f8; 
}

.preview img { 
  max-width: 100px; 
  margin: 5px; 
  border-radius: 5px; 
}

.section-divider {
  width: 100%;
}

/* ------------------------- Order Flow ------------------------- */
.order-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow {
  width: 800px;
  max-width: 1200px;
}

.quicknotes {
  width: 800px;
  max-width: 1200px;
}

.FromOrderTitle {
  margin-bottom: 40px;
}