/* ベースリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

/* 背景・フォント */
body {
  /* 文字まわり */
  font-family: 'Quicksand', 'Noto Sans JP', sans-serif;
  color: #5b4033;
  text-align: center;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  /* 背景アニメーション（今まで通り） */
  background-color: #72E0F7;           /* 初期色 */
  animation: bgRainbow 28s ease-in-out infinite;

   /* ★ イラスト2枚 ★ */
  background-image:
  url("../img_2/ことちゃん.png"),      /* ① 右側の子 */
  url("../img_2/琵琶ちゃん.png");     /* ② 左側の子 */

background-repeat:
  no-repeat,
  no-repeat;

background-position:
right 100px top 140px,       /* ① 右上 */
left 100px top 240px;     /* ② 左下（お好みで） */

background-size:
  220px auto,      /* ① の大きさ */
  220px auto;      /* ② の大きさ（変えたければ数値変更） */
}

@keyframes bgRainbow {
  0%   { background-color: rgba(255,   0,   0, 0.2); }
  14%  { background-color: rgba(255, 165,   0, 0.2); }
  28%  { background-color: rgba(255, 255,   0, 0.2); }
  42%  { background-color: rgba(0,   255,   0, 0.2); }
  56%  { background-color: rgba(0,     0, 255, 0.2); }
  70%  { background-color: rgba(75,    0, 130, 0.2); }
  84%  { background-color: rgba(238, 130, 238, 0.2); }
  100% { background-color: rgba(255,   0,   0, 0.2); }
}

/* タイトル */

/* =========================
   サイトヘッダー（タイトルまわり）
   ========================== */

   .site-header {
    padding: 1.2rem 0 0.4rem;  /* 上の余白を少なめに */
  }
  
  /* タイトル＆タグラインのまとまり */
  .site-title-wrapper {
    text-align: center;
    padding: 0.5rem 1rem 0.3rem;
  }
  
 
  
  /* スマホ用の微調整 */
  @media (max-width: 600px) {
    .site-header {
      padding: 0.8rem 0 0.3rem;
    }
  
    .site-title-wrapper {
      padding: 0.4rem 0.8rem 0.2rem;
    }
  
    .site-tagline {
      font-size: 0.85rem;
    }
  }


/* Google Fonts を読み込み（HTMLの<head>に） */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');




/* フェードインアニメーション */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-wrapper {
  display: none; /* ← まずは全ページで非表示にする */
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
}

.services-scroll {
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 147, 0.3);
  border-radius: 1.5rem 1.5rem 0 0;
  height: 100vh;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
  height: 100vh; /* またはスクロールが発生する高さ */
}

/* スクロールバー非表示（WebKit系ブラウザ用） */
.services-scroll::-webkit-scrollbar {
  display: none;
}

.nav-toggle {
  width: 56px;
  height: 56px;
  background-color: #fff0f5;
  color: #444;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-toggle:hover {
  background-color: #ffe0eb;
  color: #d94c8c;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 5.5rem;
  right: 2rem;
  background-color: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 1rem 1rem 1rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: right;
  width: 180px;
  z-index: 1000;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0.8rem 0;
  text-align: left;
  white-space: nowrap;
}

.nav-menu a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #d94c8c;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

.nav-menu.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out forwards;
}

.nav-menu.hide {
  animation: fadeOut 0.3s ease-in-out forwards;
}

/* =========================
   タイトルまわり（かな箱ロゴ）
   ========================== */

   .site-header {
    padding: 1.2rem 0 0.4rem;  /* ページ上からの余白 */
  }
  
  /* タイトル＆タグラインをまとめる箱 */
  .site-title-wrapper {
    text-align: center;
    padding: 0.4rem 1rem 0.2rem;
  }
  
  /* 「かな箱」ロゴテキスト */
  .site-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Zen Kurenaido', sans-serif; /* もう読み込み済みでOK */
    color: #ffffff;
    margin: 0 0 0.1rem 0;  /* ← 下の余白をかなり小さく */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  }
  
  /* 下のキャッチコピー */
  .site-tagline {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    line-height: 1.3;  /* 行間も少しだけ */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  }
  
  /* スマホ用調整 */
  @media (max-width: 600px) {
    .site-header {
      padding: 0.8rem 0 0.3rem;
    }
  
    .site-title-wrapper {
      padding: 0.3rem 0.8rem 0.1rem;
    }
  
    .site-title {
      font-size: 2.1rem;
    }
  
    .site-tagline {
      font-size: 0.9rem;
      line-height: 1.4;
    }
  }

.hero {
  padding: 1rem 1rem 0 1rem;  /* ← 上に6rem確保 */
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: left;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.hero-description {
  line-height: 1.6;
  color: #5b4033;
  text-align: left;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  padding-left: 70px;
  margin-bottom: 5.5rem;
}

.hero-tagline,
.hero-copy,
.hero-subcopy {
    text-align: center;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 0.95rem;
    color: #0077aa;
}

.hero-copy {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0077aa;;
}

.hero-subcopy {
    font-size: 1rem;
    color: #0077aa;
    margin-bottom: 5.5rem;
}



.hero-title {
  font-size: 1.98rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  text-align: left;
}

/* 動画 */
.hero-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 30px;
  height: 0;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px; /* ⬅ 角を丸くする */
  object-fit: cover;   /* ⬅ 黒い帯を目立たなくする */
}

.hero-video-outer {
  position: relative;
  width: 100%;
  max-width: 800px; /* 必要に応じて */
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9アスペクト比 */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.house-frame {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.roof {
  width: 0;
  height: 0;
  border-left: 410px solid transparent;
  border-right: 410px solid transparent;
  border-bottom: 60px solid #FAF4E1; /* 屋根の色（クリーム） */
  margin: 0 auto -10px auto;
}

.hero-video-outer {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #FAF4E1; /* 枠の色（家の壁） */
  background-color: #fff8ee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-video-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.hero-video-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* 通常は改行を非表示 */
.mobile-br {
  display: none;
}


.services {
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1.2rem;
  padding: 1.5rem;
  margin: 0 auto 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 860px;
  text-align: left;
  font-family: 'Quicksand', sans-serif;
  color: #5b4033;
}

.service-card h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #5b4033;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5b4033;
  margin-bottom: 50px;
  padding: 0 0.5rem;
  text-align: left;
}

 /* サービスカード内の画像は、比率を保ったまま縮むだけにする */
/* サービスカード内の画像：比率を保って、枠に合わせて縮むだけ */
.service-card img {
  display: block;
  width: 100%;          /* 横幅をカードにフィット */
  height: auto;         /* 高さは自動 → 比率維持 */
  max-width: 750px;
  margin: 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  object-fit: contain;  /* 念のため切り抜かない */
}


.btn-gallery {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  background-color: #ffffff;
  border: 1px solid #bbb;
  font-size: 0.9rem;
  color: #5b4033;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-gallery:hover {
  background-color: #fdf4f8;
  border-color: #d97caa;
  color: #d94c8c;
}

/* お問い合わせCTA全体 */
.contact-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);      /* やわらかい白カード */
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);/* ふんわり影 */
  text-align: center;
  color: #5b4033;                             /* 文章の色は他と同じブラウン */
}

/* 説明文 */
.contact-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* お問い合わせボタン（aタグ） */
.contact-cta a {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  border-radius: 999px;       /* まん丸ボタン */
  background-color: #ff99cc;  /* かな箱ピンク系 */
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease,
              box-shadow 0.2s ease;
}

/* ホバー時のちょっとだけ浮く感じ */
.contact-cta a:hover {
  background-color: #ffb3d8;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

/* スマホ用、少しだけ詰める */
@media (max-width: 600px) {
  .contact-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.2rem;
  }

  .contact-cta p {
    font-size: 0.95rem;
  }

  .contact-cta a {
    width: 100%;
    max-width: 260px;
  }

.btn-gallery {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background-color: #ffffff;
  border: 1px solid #bbb;
  font-size: 0.95rem;
  color: #5b4033;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-gallery:hover {
  background-color: #fdf4f8;
  border-color: #d97caa;
  color: #d94c8c;
}

.btn-contact {
  display: inline-block;
  background-color: #ff99cc;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
}

/* upボタン */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #fff0f5;
  color: #444;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 999;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}


.site-footer {
  margin-top: auto;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #5b4033;
}

  /* ★ スマホではイラストだけ消す ★ */
  body {
    background-image: none !important;
  }

  .hero {
    padding: 2rem 1rem 1.5rem; /* かなり圧縮 */
    margin-bottom: 0.5rem;
  }

  .hero-tagline {
    margin-bottom: 0.5rem;
  }

  .hero-copy {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .hero-subcopy {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-logo {
    width: 140px;       /* スマホ用に少し小さく */
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
  }

  .mobile-br {
    display: inline;
  }

  .site-title-wrapper {
    padding: 0.5rem 1rem 0.5rem;
    margin: 0;
    animation: none;
    opacity: 1;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .services {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .service-card p {
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    padding: 1rem;
  }

  .contact-cta p {
    font-size: 0.95rem;
  }

  .btn-gallery,
  .btn-contact {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

  .nav-menu {
    width: 160px;
    top: 5.5rem;
    right: 1rem;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 64px;
    height: 64px;
    font-size: 1rem;
    padding: 1rem;
    touch-action: manipulation;
  }

}



/* === 以下、services.css のスタイルを統合 === */

  /* menu_btn */
  .nav-wrapper {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
  }

  /* ジャンプボタン */
  .service-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    flex-wrap: wrap;
  }
  
  .service-nav a {
    background-color: #fef6e4;
    color: #333;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .service-nav a:hover {
    background-color: #ffe6eb;
    color: #d94c8c;
  }
  

  .price-nav {
    text-align: center;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .price-nav a {
    background-color: #ffefef;
    color: #444;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
  }
  
  .price-nav a:hover {
    background-color: #ffd0d0;
    color: #d94c8c;
  }
  
  .price-link {
    text-align: center;
    margin-top: 2rem;
  }
  
  .price-link a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #eaf4ff;
    color: #333;
    border-radius: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .price-link a:hover {
    background-color: #d0e9ff;
  }
  
  
  .nav-toggle {
    width: 56px;
    height: 56px;
    background-color: #fff0f5;
    color: #444;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .nav-toggle:hover {
    background-color: #ffe0eb;
    color: #d94c8c;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #ffffff;
    padding: 1rem 1.2rem;
    border-radius: 1rem 0 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: right;
    width: 180px;
  }
  
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    margin: 0.8rem 0;
    text-align: left;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: #7c003c;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: #d94c8c;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
  }
  
  .nav-menu.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out forwards;
  }
  
  .nav-menu.hide {
    animation: fadeOut 0.3s ease-in-out forwards;
  }

  /* header */
 .services-header {
    text-align: center;
    padding-top: 4rem;
    margin-bottom: 2rem;
  }
  
  .services-header h1 {
    font-size: 1.8rem;
    color: #5b4033;
    margin-bottom: 1rem;
  }
  
  .services-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  
  /* メインの縦帯 */
  .services-scroll {
    margin: 4rem auto;
    padding: 3rem 2rem;
    max-width: 800px;
    height: 80vh; /* 高さを指定してスクロール可能に */
    overflow-y: auto; /* 縦方向のスクロールを有効に */
    border-radius: 1.5rem;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.05);
    background-color: #fffdf3;
  }

  .services-scroll::-webkit-scrollbar {
    display: none;
  }
  

  /* 各セクション */
  .service-content {
    display: block; /* ← flexを解除して縦並びに */
    align-items: flex-start;
    gap: 2rem; /* テキストと画像の間のスペース */
    flex-wrap: wrap; /* スマホ時に折り返し可能に */
  }
  
  .service-content p {
    flex: 1;
    min-width: 240px;
  }
  
  .service-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 1.5rem auto 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .service-section {
    padding: 4rem 1.5rem;
    color: #444;
    background-size: 40px 40px;
    text-align: center;
  }
  
  

  /* Web制作：淡いピンク＋斜め下にカット */
.web-section {
  background-color: #ffeef2;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
  z-index: 1;
}
.web-section {
  padding: 3rem 1rem 4rem; /* 上2rem 左右1rem 下4remに拡張 */
  background-color: #ffeef2; /* ピンク背景（すでにあると思います） */
  border-radius: 1rem;
}

.site-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-top: 2rem;
  margin-bottom: 2rem; /* ←追加して下の余白もゆったり */
  padding: 0 1rem;
  text-align: left;
}


.btn-link {
  display: inline-block;
  background-color: #7c003c;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

.btn-link:hover {
  background-color: #a24c72;
}



/* 動画制作：淡い水色＋斜め上にカット */
.video-section {
  background-color: #e6f8fc;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  z-index: 2;
}

.btn-youtube {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #ff0000;
  color: #fff;
  border-radius: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-youtube:hover {
  background-color: #cc0000;
}

.video-embed {
  position: relative;
  width: 70%;             /* 横幅を70%に */
  margin: 2rem auto;      /* 上下に余白を取りつつ中央寄せ */
  padding-bottom: 39.375%; /* 16:9比率に合わせて（70% × 0.5625） */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
}

.hero-video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1rem;
}



/* 印刷物：淡いミントグリーン */
.print-section {
  background-color: #e4f9f3;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  z-index: 3;
}
  
  .service-section h2 {
    font-size: 1.5rem;
    color: #5b4033;
    margin-bottom: 1rem;
  }
  
  .service-section p {
    font-size: 1rem;
    color: #333;
  }

  .service-image {
    display: block;
    max-width: 50%;
    height: auto;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .print-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .print-item {
    width: calc(50% - 1rem);
    text-align: left;
    background-color: #f5fff2;
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* ふんわり影 */
  }
  
  
  .service-image {
    width: auto;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  }
  
  .print-title {
    font-size: 1rem;
    color: #5b4033;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .print-caption {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
  }

  /* =========================
   料金セクション（price-section）
   ========================== */

/* セクション全体 */
.price-section {
  padding: 4rem 1.5rem;
  background: #fdfaf4;
  text-align: center;
}

/* 一番上の「料金のご案内」 */
.price-section > h2 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: #00008b;
}

/* 各ジャンル見出し（Web制作の料金 / 動画制作の料金 / 印刷物デザインの料金） */
#web-price > h2,
#video-price > h2,
#print-price > h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1.5rem;
  color: #5b4033;
}

/* セクション間の区切り線 */
.section-divider {
  margin: 3.5rem auto;
  max-width: 800px;
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* -------------------------
   冒頭メッセージ（price-message）
   -------------------------- */

.price-message {
  background: #fdfaf4;
  padding: 2.5rem 1.5rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.8;
  color: #444;
  border-radius: 1rem;
}

.price-message p {
  max-width: 720px;
  margin: 0 auto 1.2rem;
}

/* -------------------------
   料金カード（price-list / price-card）
   -------------------------- */

.price-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* 各プランカード */
.price-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  text-align: left;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.price-card .price {
  font-size: 1.1rem;
  color: #d97c00;
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}

.price-card ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #555;
}

.price-card ul li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  top: 0;
}

/* 印刷物・Web制作セクションなどで使う画像の共通スタイル */
.service-image {
  display: block;
  width: auto;          /* 親の幅にフィット */
  max-width: 480px;     /* PCでの最大幅（お好みで調整） */
  height: 100%;         /* 比率キープ */
  margin: 1.5rem auto 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain;  /* 切り抜きではなく全体表示 */
}


/* -------------------------
   オプション一覧
   -------------------------- */

.option-section {
  margin-top: 3rem;
  background-color: #fefaf4;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}

.option-section h3 {
  text-align: center;
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.option-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.option-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
  font-size: 0.95rem;
}

/* 「※」などの注釈 */
.note {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  max-width: 720px;
  margin: 2rem auto 0;
}

/* -------------------------
   ご相談について（consult-section）
   -------------------------- */

.consult-section {
  margin: 3rem auto 1rem;
  max-width: 780px;
  text-align: left;
  background: #fffaf0;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border-left: 6px solid #d97c00;
}

.consult-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #5b4033;
}

.consult-section h4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 1.5rem 0;
  color: #444;
}

.consult-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.8rem;
}

/* -------------------------
   レスポンシブ調整
   -------------------------- */

@media screen and (max-width: 768px) {
  .price-section {
    padding: 3rem 1rem;
  }

  .price-section > h2 {
    font-size: 1.5rem;
  }

  #web-price > h2,
  #video-price > h2,
  #print-price > h2 {
    font-size: 1.4rem;
  }

  .price-message {
    padding: 2rem 1rem;
  }

  .price-card {
    max-width: 100%;
  }

  .consult-section {
    padding: 1.8rem 1.2rem;
  }
}

/* upボタン */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #fff0f5;
  color: #444;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 999;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}



  
  @media screen and (max-width: 600px) {
    .services-scroll {
      padding: 2rem 1rem;
      margin: 2rem 1rem;
    }
  
    .service-section h2 {
      font-size: 1.3rem;
    }

    .print-item {
      width: 100%;
    }

  }