
    :root {
      --blue-200: #bbdefb;
      --blue-700: #1565c0;
      --emerald: #bfffa0;
      --yellow-100: #fffde7;
      --yellow-300: #fff176;
      --yellow-500: #ffeb3b;
      --white: #ffffff;
      --text-dark: #1a1a1a;
      --subtext: #555555;
      --radius: 8px;
      --border-light: rgba(0,0,0,0.05);
    }
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0; padding: 0;
    }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--white) repeating-linear-gradient(
        135deg, var(--border-light) 0, var(--border-light) 1px,
        transparent 1px, transparent 20px
      );
      color: var(--text-dark);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    img, iframe {
      width: 100%; display: block; border-radius: var(--radius);
    }
    .container {
      width: 90%; max-width: 1200px; margin: 0 auto;
    }
    .fade-in {
      opacity: 0; transform: translateY(20px);
      transition: opacity .8s ease-out, transform .8s ease-out;
    }
    .fade-in.visible {
      opacity: 1; transform: translateY(0);
    }
    section { padding: 4rem 0; }
    section h2 {
      font-size: 2.5rem; text-align: center; color: var(--blue-700);
      margin-bottom: 1rem;
      text-shadow:
        -2px -2px 4px var(--white),
         2px -2px 4px var(--white),
        -2px  2px 4px var(--white),
         2px  2px 4px var(--white);
    }
    section h2::after {
      content: ""; display: block; width: 60px; height: 4px;
      background: var(--yellow-500); margin: 8px auto 0;
      border-radius: 2px;
    }

    /* 1. ヒーロー画像 */
/* 1. ヒーロー画像 */
.hero-image {
  position: relative;
  overflow: hidden;
}

/* オーバーレイ：テキストをまとめて中央配置 */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}


/* ヒーロー画像領域 */
.hero-image {
  position: relative;
  overflow: hidden;
}

/* 小見出し */
.hero-subtitle {
  position: absolute;
  top: 35%;                   /* こちらを上下調整 */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 300;
  color: #0181e9;
  
  white-space: nowrap;
}

/* メイン見出し */
.hero-title {
  position: absolute;
  top: 40%;                   /* ここを少し上げて調整 */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  color: #0181e9;
  font-weight: 700;

  
  /* ←ここから白フチ設定 */
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;


  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 95vw;
  white-space: nowrap;
}










/* アニメーション定義 */
@keyframes fadeUpTitle {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}








    
    /* 2. リードセクション（昨日の最終デザインに復元） */
      .lead-box {
    position: relative;
    background: linear-gradient(135deg, #e0f7fa 0%, #90caf9 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
    color: var(--text-dark);
  }
  .lead-box::after {
    content: "";
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
  }
  .lead-box h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-700);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  .lead-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.lead-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--blue-200);
  border-left: 6px solid var(--blue-700);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
}

.lead-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.lead-list .material-icons {
  font-size: 2rem;
  color: var(--blue-700);
  margin-right: 0.75rem;
}

.lead-list li span,
.lead-list li {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
  .lead-list .material-icons {
    font-size: 1.4rem;
    color: var(--blue-700);
    margin-right: 0.5rem;
  }


.lead-note {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;

}



  .lead-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .lead-cta {
     font-size: 2rem;
    display: inline-block;
    background: var(--yellow-300);
    color: var(--text-dark);
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: background .3s, color .3s;
      transform: scale(1.05);
  }
  .lead-cta:hover {
    background: var(--blue-700);
    color: var(--white);
  }


    /* 3. 弊社のおススメPoint! */
    .difference { background: var(--white); }
    .difference .description {
      background: var(--white);
      border: 2px dashed var(--blue-700);
      padding: 1.5rem; border-radius: var(--radius);
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      font-size: 1.25rem; text-align: center;
      margin-bottom: 2rem;
    }
    .difference ul {
  list-style: none;      /* マーカーを消去 */
  margin: 0;             /* ul のデフォルト余白をリセット */
  padding: 0;            /* ul のデフォルトパディングをリセット */
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
    .difference li {
      background: var(--yellow-300);
      padding: 1.5rem; border-radius: var(--radius);
      box-shadow: 0 2px 4px var(--border-light);
      text-align: center;
    }
    .difference li::before {
      content: "✔"; display: block; font-size: 2rem;
      color: var(--blue-700); margin-bottom: .5rem;
    }
    .difference li p {
      font-size: .875rem; color: var(--subtext);
      text-align: left; line-height: 1.4; margin-top: .75rem;
    }

.description p {
  margin-bottom: 1.5rem;
}

.description-strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.6;
}

.description-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--subtext);
  line-height: 1.6;
}

.underline-yellow {
  /* アンダーラインの色と太さを指定 */
  text-decoration-line: underline;
  text-decoration-color: #fcff3b;    /* 黄色 */
  text-decoration-thickness: 8px;    /* 太さ */
  text-decoration-skip-ink: none;    /* フォントのインクスキップを無効化 */
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.6;

}




    /* 4. 動画制作の現場風景 */
    .method {
      background: linear-gradient(135deg, #e0f7fa 0%, #90caf9 100%);
    }
    .method-grid {
      display: grid; gap: 1rem;
      grid-template-columns: repeat(2,1fr);
    }
    .method-item {
      background: var(--yellow-100);
      border-radius: var(--radius);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .method-item img {
      display: block; width: 100%;
    }
    .method-item .caption {
      padding: .75rem; text-align: center;
      background: var(--yellow-300);
      font-weight: bold; font-size: 1.125rem;
    }
    @media (max-width:767px) {
      .method-grid { grid-template-columns: 1fr; }
    }

    /* 5. ご相談から納品までの流れ */
    .flow {
  background: var(--white);
}
.flow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.flow-item {
  background-color: #e0f7fa;        /* 薄い水色 */
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.flow-item:hover { transform: translateY(-5px); }
.icon-wrap {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: var(--blue-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 1.5rem;
}
.icon-wrap .material-icons {
  font-size: 32px; color: var(--blue-700);
}
.text-wrap .number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow-500);
  margin-bottom: .5rem;
}
.text-wrap h3 {
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: .5rem;
}
.text-wrap p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.flow-arrow {
  color: var(--blue-700);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-arrow .material-icons { animation: bounce 2s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* 6. 動画制作実例 */
.examples {
  background: linear-gradient(135deg, #e0f7fa 0%, #90caf9 100%);
  padding: 2rem 0;
}

.examples .videos {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .examples .videos {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────── */
/* 動画部：アスペクト比 16:9 を維持 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 9/16*100 */
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--yellow-100);
}

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

/* ────────────────────────────── */
/* テキスト部 */
.video-item .genre,
.video-item .title,
.video-item .price-record {
  text-align: center;
  margin: 0.75rem 0;
  position: relative;
  z-index: 1;
}

.video-item .genre {
  font-size: 1rem;
  font-weight: bold;
  color: #01c6e9;
}

.video-item .title {
  background: var(--yellow-300);
  padding: 0.5rem 0;
  margin: 0.25rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #222;
  border-radius: 0.25rem;
}

/* 価格＋タグを横並び＋折り返し */
.video-item .price-record {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #333;
}

.video-item .price-record .price {
  flex-basis: 100%;
  margin-bottom: 0.5rem;
}

.video-item .price-record .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: #fcd000;
  color: #333;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

    /* 7. ご利用お客様の声 */
    .testimonials { background: var(--white); }
    .testimonials .container {
      display: grid; gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    }
    .testimonial-card {
      background: #ffe8cc;

;
      padding: 2rem; border-radius: var(--radius);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    .testimonial-card.left-text p { text-align: left; }
    .customer-name {
      font-size: 1.25rem; font-weight: 700;
      color: var(--blue-700); margin-bottom: .5rem;
    }
    .small-text {
      font-size: .875rem; color: var(--subtext);
      margin-bottom: 1rem; text-align: left;
    }
    .avatar {
      font-size: 64px; color: var(--blue-700);
      margin: 0 auto 1rem;
    }
    .testimonial-card p {
      font-size: 1rem; line-height: 1.8;
      margin-bottom: 1rem;
    }
    .stars {
      font-size: 1.25rem; color: #fbc02d;
    }

    /* 8. ご相談フォーム */
    .contact {
      background: linear-gradient(135deg, #e0f7fa 0%, #90caf9 100%);
    }
    .contact form {
      background: var(--yellow-100);
      padding: 4rem; border-radius: var(--radius);
      display: grid; gap: 2rem;
      max-width: 900px; margin: 0 auto;
    }
    .contact input, .contact textarea {
      padding: 1.25rem; border: none;
      border-radius: var(--radius);
      font-size: 1.25rem; width: 100%;
    }
    .contact textarea { height: 8rem; resize: vertical; }
    .contact button {
      background: var(--yellow-500); color: var(--text-dark);
      padding: 1.25rem; border: none; border-radius: var(--radius);
      font-weight: 700; font-size: 1.25rem; cursor: pointer;
      transition: opacity .3s;
    }
    .contact button:hover { opacity: .8; }
      
      

      
      .contact-form-section {
  background-color: #f5f5f5;
  padding: 3rem 1rem;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  color: #01c6e9;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group.required label::after {
  content: " *";
  color: #e53935;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

/* select を input と同じ見た目に統一 */
.contact form select {
  width: 100%;
  padding: 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.25rem;
  background: #fff;
  appearance: none;       /* デフォルト矢印隠し（必要に応じて） */
  background-image:
    url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23777'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 6px;
}

/* フォーカス時の枠線追加例 */
.contact form select:focus {
  outline: 2px solid #01c6e9;
  outline-offset: 2px;
}





      
      
      
      
      

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.form-actions input[type="submit"],
.form-actions input[type="reset"] {
  background-color: #01c6e9;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 0.5rem;
}

.form-actions input[type="reset"] {
  background-color: #ccc;
  color: #333;
}

      
      
    /* 8.5. 会社概要 */
      .company-info {
  background: linear-gradient(to right, #fefefe, #f5f5f5);
  padding: 3rem 1rem;
  border-top: 2px solid #ccc;
  font-family: 'Segoe UI', sans-serif;
}

.company-info .container {
  max-width: 1000px;
  margin: 0 auto;
}

.company-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
  border-left: 8px solid #FFD23B;
  padding-left: 1rem;
  background: #fff8dc;
  display: inline-block;
}

.company-details {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2;
  color: #444;
}

.company-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.company-details .icon {
  font-size: 1.4rem;
  margin-right: 0.6rem;
  color: #FFD23B;
}

.company-details a {
  color: #0077cc;
  text-decoration: underline;
}
      
      

    /* 9. フッター */
    footer {
      background: var(--blue-700); color: var(--white);
      text-align: center; padding: 2rem 0; font-size: .875rem;
    }
    .footer-links {
      margin-top: .5rem; font-size: .75rem;
    }
    .footer-links a {
      color: var(--white); margin: 0 .5rem;
      text-decoration: underline;
    }
