/* -----------------------------
  基本設定
----------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #fdfdfd; /* 少し温かみのある白 */
  line-height: 1.6;
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.mobile-br {
  display: none;
}


/* -----------------------------
  ヘッダー専用コンテナ
----------------------------- */
.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -----------------------------
  ヘッダー
----------------------------- */
.site-header {
  width: 100%;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* サイトタイトルのスタイリング */
.site-title a {
  color: #333;                /* 文字色：濃いグレー */
  text-shadow: 
     1px 1px 0 #979797,         /* 上下左右に薄いグレーの影で外枠を表現 */
    -1px -1px 0 #979797,
     1px -1px 0 #979797,
    -1px 1px 0 #979797;
  font-weight: bold;          /* 好みで太字に */
  text-decoration: none;      /* 下線を消す */
}

.menu-toggle .menu-icon {
  display: inline-block;
}
.menu-toggle .menu-text {
  display: none;
}

/* ===============================================
  言語スイッチャー
=============================================== */

.lang-switcher {
  display: inline-flex;       /* 横並び */
  align-items: center;        /* 縦中央揃え */
  gap: 8px;                   /* 言語間のスペース */
  margin-left: 15px;          /* サイトタイトルとの距離 */
  font-size: 0.9rem;
}

.lang-switcher a {
  color: #000;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.lang-switcher a:hover {
  background: rgba(128,0,128,0.1);  /* 軽く背景色 */
}


/* ===============================================
  ハンバーガーボタン
=============================================== */

.menu-wrapper {
  position: relative;
}

/* ハンバーガー本体 */
.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed;
  top: 30px;
  right: 20px;   
  cursor: pointer;
  z-index: 100;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #7a7a7a;
  border-radius: 2px;
  transition: 0.4s;
}

/* Xに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 90;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体 */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 95;
  opacity: 0;
}

/* ドット専用レイヤー */
.menu::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, rgba(255,255,255,0.1) 4px, transparent 5px);

  background-size: 26px 26px;

  -webkit-mask-image: linear-gradient(to top, black 45%, transparent 100%);
  mask-image: linear-gradient(to top, black 45%, transparent 80%);

  pointer-events: none;
}

#menu-toggle:checked ~ .menu {
  transform: translateX(0);
  opacity: 1;
}

.menu ul {
  list-style: none;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 100px 40px;
  box-sizing: border-box;
}

.menu li {
  margin: 50px 0;
  position: static !important;
  display: block !important;
}

.menu a {
  position: relative;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;   /* ← 白に変更 */
  font-size: 2rem;
  transition: color 0.3s;
}
.menu a:hover {
  color: #ccc;   /* ← ホバーは少しグレー */
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.5s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-sns {
  display: flex;
  flex-direction: column; /* 上下に並べる */
  align-items: center;    /* 全体中央揃え */
  gap: 20px;              /* 上下の間隔 */
}

.sns-row {
  display: flex;
  justify-content: center; /* 各行中央揃え */
  gap: 40px;               /* 各アイコン間 */
}

.sns-item {
  display: flex;
  flex-direction: column; /* 上下に並べる */
  align-items: center;    /* 横方向中央揃え */
  gap: 6px;               /* アイコンと案内文字の間隔 */
}


.menu-sns a {
  position: relative; /* 子要素の文字を重ねるため */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(128, 128, 128, 0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.menu-sns a span {
  position: absolute;
  color: #000;          /* 黒文字 */
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;           /* 初期は非表示 */
  transition: opacity 0.3s ease;
  pointer-events: none; /* 文字にマウスイベントが行かないように */
  text-align: center;
  width: 100%;
}

.menu-sns a:hover span {
  opacity: 1;
}

.menu-sns a img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.3s ease; /* なめらかに変化 */
}

.menu-sns a:hover img {
  opacity: 0.2; /* ホバーで20%の透明度に */
}

.sns-item .label {
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;        /* 白文字 */
  text-align: center;
}


/* -----------------------------
  セクション
----------------------------- */
.site-main {
  max-width: 1200px;
  margin: auto;
}
.section {
  padding: 60px 0;
  text-align: center;   /* 中央寄せ */
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;    /* コンテンツの最大幅 */
  margin: 0 auto;        /* 横中央揃え */
  padding-left: 20px;    /* 左右の余白 */
  padding-right: 20px;
  box-sizing: border-box; /* パディング込みで幅を計算 */
}

/* -----------------------------
  スライダー
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  max-width: 1200px; /* サイトのメイン幅 */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 550px; /* スライド高さ */
}

/* 前後ボタン */
.next, .prev {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;           /* スライダーの高さの中央 */
  transition: all 0.7s;
  z-index: 10;
  cursor: pointer;
}

.next { right: 0; }
.prev { left: 0; }

/* 矢印 */
.next::after, .prev::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px #828282;
  border-right: solid 3px #828282;
  position: absolute;
  top: 10px;
}

.next::after { transform: rotate(45deg); right: 15px; }
.prev::after { transform: rotate(-135deg); left: 15px; }

.next:hover, .prev:hover {
  background-color: #fff;
}

/* スライダー本体 */
.slider {
  display: flex;
  width: 1000%; /* 10枚分 */
  transition: transform 1.5s ease;
}

/* スライド1枚の幅 */
.content {
  width: 10%; /* 100% ÷ 10枚 */
  height: 520px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
}




.content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;  /* ブロック化で擬似要素が重なる */
}
  /* 各画像微調整 */
  .content1 img {
    object-position: center top;
  }
  .content2 img {
    object-position: center calc(0% - 100px);
  }
  .content3 img {
    object-position: center calc(0% - 200px);
  }
  .content4 img {
    object-position: center calc(0% - 450px);
  }
  .content5 img {
    object-position: center calc(0% - 200px);
  }
  .content6 img {
    object-position: center calc(0% - 200px);
  }
  .content7 img {
    object-position: center calc(0% - 100px);
  }
  .content8 img {
    object-position: center calc(0% - 50px);
  }
  .content9 img {
    object-position: center calc(0% - 200px);
  }
  .content9 img {
    object-position: center calc(0% - 200px);
  }
  .content10 img {
    object-position: center top;
  }


/* インジケーター */
.indicator {
  width: 100%;
  position: absolute;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.slider-indicator li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  list-style: none;
  background-color: transparent; /* 非アクティブは透明 */
  border: 1px solid #3399ff;     /* 青枠 */
  margin: 0 10px;
  cursor: pointer;
}
.slider-indicator li.active {
  background-color: rgba(51, 153, 255, 0.7); /* 透過70%で濃い青 */
  border-color: #3399ff;                    /* 枠は濃い青のまま */                 /* 枠は濃い青 */
}

.slider-indicator li:after {
  display: none;
}

/* -----------------------------
  ABOUTももやまかねちち
----------------------------- */
/* 見出しを大きく */
.section.about h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.section.about h2 br {
  display: none; /* デフォルトは非表示 */
}


/* コンテンツ横並び */
.about-content {
  display: flex;
  align-items: center;       /* 縦方向中央揃え */
  justify-content: flex-start; /* 左寄せにして間隔を調整 */
  gap: 40px;                 /* 左右の余白 */
  max-width: 900px;          /* 横幅を制限 */
  margin: 0 auto;            /* 中央寄せ */
  flex-wrap: wrap;           /* スマホで縦並び */
}

/* 左側テキスト */
.about-text {
  flex: 1 1 500px;    /* 最小500pxで伸縮 */
  text-align: left;
  padding: 0 20px; /* 上下は0、左右に20px */
}

.about-icon {
  flex: 0 0 200px;    /* 固定サイズ */
  text-align: center;
}

.about-icon img {
  width: 180px;
  height: 180px;
  border-radius: 50%; /* 丸く切り抜き */
  object-fit: cover;
}
/* SNSアイコン */
.about-sns {
  margin-top: 8px;       /* アイコン下の余白 */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-sns a img {
  width: 24px;            /* 小さく表示 */
  height: 24px;
  display: block;
}
/* SNSアイコンホバーで少し拡大 */
.about-sns a img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.2s ease;  /* スムーズに拡大 */
}

.about-sns a img:hover {
  transform: scale(1.2);  /* 1.2倍に少し拡大 */
}

/* -----------------------------
  Commission
----------------------------- */

.commission-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.more-details {
  display: inline-flex;           /* inline-block → inline-flex */
  align-items: center;            /* 垂直中央 */
  justify-content: center;        /* 水平中央 */
  background: linear-gradient(135deg, #2c3e50, #4b0082); /* ネイビーパープル */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  line-height: normal;            /* flex なので不要 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.more-details:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #ffd700, #ffea50); /* イエロー系グラデ */
  color: #333; /* コントラスト調整 */
}
.commission-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.commission-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
}

.commission-icon img {
  width: 40px; /* 小さく表示 */
  height: 40px;
  border-radius: 50%; /* 丸く */
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

.commission-icon:hover img {
  transform: scale(1.1);
}

/* -----------------------------
  Follow Me セクション専用
----------------------------- */
.follow-me {

}
.follow-me-intro {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000;             /* 黒文字 */
  text-align: center;
  margin-bottom: 30px;     /* アイコンとの間隔 */
}

.follow-me-menu {
  display: flex;
  flex-wrap: wrap;       /* スマホでは折り返す */
  justify-content: center;
  gap: 20px;             /* アイコン間の余白 */
  padding: 40px 0;         /* 上下に余白を追加 */
}

.follow-me-row {
  display: flex;
  justify-content: center;
  gap: 40px;             /* アイコン間 */
  flex-wrap: wrap;        /* 小さい画面でも折り返す */
}

.follow-me-item {
  width: 100px;
  flex: 0 0 auto;      /* 高さはアイコンとテキストに合わせる */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.follow-me-item a {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(128,128,128,0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.follow-me-item a img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.follow-me-item a span {
  position: absolute;
  color: #000;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  width: 100%;
}

.follow-me-item a:hover img {
  opacity: 0.2;
}

.follow-me-item a:hover span {
  opacity: 1;
}

.follow-me-item .label {
  font-size: 0.85rem;
  font-weight: bold;
  color: #000; 
  text-align: center;
}





/* -----------------------------
  コンタクトボタン
----------------------------- */
.contact-btn-wrapper {
  text-align: center; /* 中央配置 */
  margin-top: 30px;   /* 上余白 */
}

.contact-btn {
  display: inline-block;
  padding: 18px 50px;       /* 高さと横幅を大きめに */
  font-size: 1.2rem;        /* 文字大きめ */
  font-weight: bold;
  color: #fff;               /* 白文字 */
  background-color: #111;    /* 黒背景 */
  border-radius: 12px;       /* 角丸 */
  text-decoration: none;     /* 下線消す */
  transition: background-color 0.3s, transform 0.2s;
}

.contact-btn:hover {
  background: linear-gradient(to bottom, #34495e, #8e5fc6); /* ホバーで少し明るめ */
  transform: scale(1.05);    /* ちょっと拡大 */
  text-decoration: none; /* ホバー時もアンダーラインなし */
}

/* -----------------------------
  フローティングボタン
----------------------------- */
.floating-btn {
  position: fixed;
  bottom: 130px;
  right: 20px;
  background-color: #111;
  color: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 1000;
  transform: scale(1);
  transform: scale(1); /* 初期位置 */
  transition: transform 0.2s ease, background-color 0.3s ease-out;
  opacity: 0.8; /* 常に表示 */
}

.floating-btn:hover {
  text-decoration: none;
  background-color: #1a1a1a;
  transform: scale(1.1); /* 10%拡大 */
}

.floating-btn:active {
  transform: scale(0.98); /* 押したときに少し縮む */
}
/* -----------------------------
  無料お見積もりボタン
----------------------------- */
.estimate-btn {
  bottom: 210px;  /* 位置を上に */
  background-color: #4B0082;
  font-weight: 700;
}

.estimate-btn:hover {
  text-decoration: none;
  background-color: #6A0DAD;
  transform: scale(1.1);
}


/* -----------------------------
  トップに戻るボタン
----------------------------- */
.top-btn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 9999;
  opacity: 0;               /* 初期は透明 */
  pointer-events: none;     /* 非表示時はクリック不可 */
  transition: opacity 0.3s ease;
}
.top-btn.show {
  opacity: 1;               /* 表示時 */
  pointer-events: auto;     /* クリック可能 */
}

.btn-floating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-floating .arrow {
  font-size: 1rem;
}

.btn-floating .label {
  font-size: 0.75rem;
  margin-top: 2px;
}

#scroll-top {
  text-decoration: none;  /* アンダーラインを消す */
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  background-color: rgba(255,255,255,0.2); /* 白背景30%透過 */
  color: #000;                   /* 黒文字 */
  border: 2px solid #000;        /* 黒枠 */
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;         /* アンダーラインなし */
}

/* ホバー時 */
#scroll-top:hover {
  background-color: rgba(0,0,0,0.1); /* 薄くグレー透過 */
  color: #000;
  border-color: #000;
}

/* クリック時 */
#scroll-top:active {
  transform: translateY(0) scale(0.95);
}

/* -----------------------------
-----------------------------
  ご依頼についてのページ
  -----------------------------
----------------------------- */

#production-main img {
  height: auto;
  display: block;
  margin: 0 auto; /* 中央寄せにしたい場合 */
}

/* commission section */
.commission-section .goirai-content {
  display: flex;              /* 横並びにする */
  align-items: center;        /* 縦方向の中央揃え */
  justify-content: space-between; /* 左右に余白を作る */
  gap: 2rem;                  /* テキストと画像の間の余白 */
  flex-wrap: wrap;            /* 画面が狭くなったら折り返す */
}

.commission-section .goirai-content .text {
  flex: 1 1 400px;            /* 最小幅400px、必要に応じて縮小 */
}

.commission-section .goirai-content .image {
  flex: 1 1 300px;            /* 最小幅300px、必要に応じて縮小 */
}

.commission-section .goirai-content .image img {
  width: 100%;                /* 画像を親要素に合わせる */
  height: auto;               /* 高さは自動 */
  display: block;             /* 余白の隙間をなくす */
}

/* examples-section 全体 */
.examples-section .container {
  text-align: center;
}

/* 上段・下段共通 */
.examples-section .example-images-top,
.examples-section .example-images-bottom {
  padding: 40px 0; /* 上下50px */
  display: flex;
  justify-content: space-between; /* 均等割 */
  flex-wrap: nowrap;              /* 折り返さない */
  gap: 10px;                      /* 画像間隔 */
  align-items: center;            /* 上下中央揃え */
}
.examples-section .example-images-top .image,
.examples-section .example-images-bottom .image {
  flex: 1 1 0;  /* 均等幅にする */
}

.examples-section .example-images-top .image img,
.examples-section .example-images-bottom .image img {
  width: 100%;        /* 親幅いっぱいに */
  height: auto;       /* 縦横比維持 */
  display: block;
}

.examples-section .image,
.flow-section .image {
  text-align: center;
}

.examples-section .caption,
.flow-section .caption {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  font-weight: bold;   /* これで太文字に */
}
.examples-section .caption a {
  color: #007acc;        /* わかりやすい青 */
  font-weight: bold;     /* 太字でさらに目立たせる */
  text-decoration: none; /* 下線を消す場合 */
}

/* ホバー時に少し変化させるとさらにわかりやすく */
.examples-section .caption a:hover,
.examples-section .caption a:focus,
.examples-section .caption a:active {
  text-decoration: none; /* ホバーやクリック後も下線なし */
  color: #005fa3;
}

/* 2段目：テキスト */
.examples-section .example-text p {
  text-align: center;
  max-width: 800px; /* テキスト幅制限 */
  margin: 1rem auto;
  line-height: 1.6;
  font-size: 1rem;
}

/* 制作の流れセクション */
/* フロー図全体 */
.flow-diagram {
  display: flex;
  justify-content: space-between; /* 均等に配置 */
  align-items: center;
  gap: 40px; /* ステップ間の距離 */
  margin-top: 40px;
}

/* 各ステップ */
.flow-step {
  flex: 1 1 0;            /* 均等幅にする */
  text-align: center;      /* 中央揃え */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ステップの枠 */
.step-box {
  border: 2px solid #888;
  border-radius: 10px;
  padding: 20px;
  background: #f9f9f9;
  display: inline-block; 
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

/* 制作内の画像群 */
.step-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.step-images .image {
  text-align: center;
}

.step-images .image img {
  width: 100px; /* 好きなサイズに調整 */
  height: auto;
  display: block;
}

/* 矢印 */
/* 真ん中のflow-stepだけ左右に矢印 */
.flow-step:nth-child(2)::before,
.flow-step:nth-child(2)::after {
  content: "▶︎";         /* 矢印文字 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #888;
}

/* 左矢印 */
.flow-step:nth-child(2)::before {
  left: -40px;           /* 左側のボックスとの距離 */
}

/* 右矢印 */
.flow-step:nth-child(2)::after {
  right: -40px;          /* 右側のボックスとの距離 */
}


/* 料金についてセクション */
.pricing-section .price-list {
  max-width: 390px;   /* テキスト枠の幅 */
  margin: 0 auto;     /* 左右中央寄せ */
  text-align: left;   /* テキストは左揃え */
}
.price-list + p {
  margin-top: 1em; /* 上の段落との間にスペース */
}

.highlight-link {
  color: #1da1f2; /* Rinちゃんリンク色と同じ */
  text-decoration: none; /* 下線なし */
  font-weight: 700;      /* 太文字 */
}

.highlight-link:hover {
  text-decoration: underline; /* ホバー時に下線 */
}
/* 料金カード */
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}

.price-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.price-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 6px;
}

.price-card .note {
  font-size: 0.8rem;
  line-height: 1.2;  /* 行間も少し詰める */
  margin-top: 4px;   /* 上余白を少し減らす */
  color: #555;
}

/* -----------------------------
  フッター
----------------------------- */
.site-footer {
  padding: 40px 0;
  background: #f8f8f8;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
}

.footer-sns {
  display: flex;
  gap: 16px;
}

.footer-sns a {
  color: #111;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.6;
}

/* -----------------------------
  レスポンシブ
----------------------------- */
@media (max-width: 600px) {
  /* スライダー */
    .wrapper {
    height: auto;      /* 固定解除 */
  }

  .content {
    height: auto;      /* 画像サイズに合わせる */
  }

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

  .indicator {
    position: relative;   /* 絶対配置やめる */
    bottom: auto;
    margin-top: 10px;
  }

  .slider .content img {
  width: 100%;         /* 横幅いっぱい */
  height: auto;        /* 高さ自動 */
  object-fit: contain; /* 縦横比維持 */
  object-position: center; /* PCでの微調整を無効化 */
  }
  
  .slide-caption {
  font-size: 0.95rem;
  bottom: 20px;   /* 0 → 10px にする */
  padding: 8px 10px;
}

  /* ABOUT */
  .section.about h2 br {
    display: inline; /* スマホでは改行表示 */
  }
   .about-text {
    flex: 1 1 auto;  /* 最小幅制限を外す */
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    gap: 15px;       /* アイコンとテキストの間隔を縮める */
  }

  .about-icon img {
    width: 160px;
    height: 160px;   /* アイコン少し小さく */
  }

   /* Commission */

  .commission-links {
    flex-direction: column;
  }

  .commission-icons {
    flex-direction: row;
    justify-content: center;
  }
    .more-details {
    width: calc(100% - 40px); /* 左右20pxずつの余白 */
    max-width: 300px;         /* ボタンが大きくなりすぎないよう制限 */
    margin: 0 auto;           /* 中央寄せ */
  }

   /* Follow me */


  /* フローティングボタン類 */
  .floating-btn {
    width: 80px;
    height: 70px;
    padding: 0;
    font-size: 0.8rem;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* 強制改行で2段に */
    white-space: normal;
    text-align: center;
    line-height: 1.5em;

    /* PCで横長だった文字を2段に分ける */
    word-break: break-word;
     
    /* 黒背景80%透過 */
    background-color: rgba(0, 0, 0, 0.75);
    
  }

  /* スマホ版は適宜スケールも維持 */
  .floating-btn:hover {
    transform: scale(1.1);
  }
  .estimate-btn {
  background-color: #4B0082;
  }

.estimate-btn:hover {
  text-decoration: none;
  background-color: #6A0DAD;
  transform: scale(1.1);
}

  /*ご依頼についてのページ */

  /*全体 */

  .production-page-main p {
  font-size: 14px;
  line-height: 1.6;
}

  
  /* 作品紹介セクションの画像 */
  .examples-section .example-images-top,
  .examples-section .example-images-bottom {
    flex-direction: column;  /* 縦並びに変更 */
    gap: 10px;               /* 上下の間隔 */
  }

  /* 画像が横幅いっぱいに広がるように調整 */
  .examples-section .image img,
  .flow-section .flow-images .image img {
    width: 100%;
    height: auto;
  }
  
  
  /* 制作の流れ */
  .flow-section .flow-images {
    flex-direction: column;  /* 縦並びに変更 */
    gap: 10px;               /* 上下の間隔 */
  }

  /* フロー全体を縦並びに */
  .flow-diagram {
    flex-direction: column;
    gap: 20px; /* 上下の間隔 */
  }

  /* 矢印は非表示にして見やすく */
  .flow-step:nth-child(2)::before,
  .flow-step:nth-child(2)::after {
    display: none;
  }
  

  /* ステップ内の枠も中央揃えのまま */
  .step-box {
    width: 80%; /* 横幅を少し絞る */
    min-width: unset;
  }

  /* 制作内画像は縦並びに */
  .step-images {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .step-images .image img {
    width: 100%; /* 親幅いっぱいに */
    max-width: 300px; /* 任意で最大幅を制限 */
  }

  /* 料金セクション*/
  .mobile-br {
  display: inline;
  }


  /* フッター*/

  .footer-inner {
    flex-direction: column;
    align-items: flex-start; /* 左寄せにする場合 */
    gap: 10px; /* 上下の間隔 */
  }

  .footer-sns {
    gap: 10px; /* アイコン間隔を少し狭める */
  }

  .footer-sns a {
    font-size: 0.7rem; /* 文字を小さく */
  }

  
}
  
