@charset "UTF-8";

/* ==========================================
   0. 変数定義 & 基本設定
   ========================================== */
:root {
  --primary-green: #016f30;
  --light-green: #f4f8f5;
  --accent-gold: #c5a059;
  --text-dark: #333333;
  --schedule-gold: #c98c0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   1. 共通パーツ & レイアウト
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.inner {
  width: 1100px;
  margin: 0 auto;
}

section {
  margin-bottom: 100px;
}

section:last-child {
  margin-bottom: 0;
}

/* セクションタイトル */
.section-title,
.section-title-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.section-title-green {
  color: var(--primary-green);
}

.section-title-gold {
  color: var(--accent-gold);
}

.section-title-gold::before,
.section-title-gold::after {
  content: "";
  height: 2px;
  background-color: var(--accent-gold);
  flex-grow: 1;
}

.title-line {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.title-line::before,
.title-line::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../images/icon_leaf.svg") no-repeat center/contain;
  margin: 0 15px;
}

.title-line::after {
  transform: scaleX(-1);
}

/* 共通背景ボックス */
.container-bg {
  position: relative;
  background: #fdfcf6;
  border: 1px solid #fbe6c4;
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ==========================================
   2. ヘッダー (Header)
   ========================================== */
/* PC表示ではハンバーガーボタンは表示しない */
.hamburger-btn {
  display: none;
}

.header {
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--primary-green);
}

.logo_icon {
  margin-right: 15px;
}

.logo .en {
  display: block;
  font-size: 12px;
  color: #000;
  letter-spacing: 0.1em;
}

.gnavi ul {
  display: flex;
  gap: 3em;
}

.gnavi li {
  list-style: none;
}

.gnavi a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

/* 固定追従ボタン */
.header-btn {
  position: fixed;
  top: 10%;
  right: 3%;
  z-index: 999;
}

.btn-entry-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  height: 150px;
  background: var(--primary-green);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}

.btn-entry-top:hover {
  background: #00542d;
}

.btn-entry-top span {
  display: block;
  font-size: 12px;
}

/* ==========================================
   3. メインビジュアル (Hero / Main Visual)
   ========================================== */
.hero {
  position: relative;
  background: url(../images/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}

.sub-txt {
  color: var(--primary-green);
  font-size: 30px;
  font-weight: 900;
}

.award-title {
  position: relative;
  text-align: center;
}

.award-title::before,
.award-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 290px;
  position: absolute;
}

.award-title::before {
  background: url(../images/frame_left.svg) no-repeat;
  background-size: cover;
  left: -50px;
  top: 0;
}

.award-title::after {
  background: url(../images/frame_right.svg) no-repeat;
  background-size: cover;
  right: -50px;
  top: 0;
}

.year {
  background: url(../images/2026.svg) no-repeat;
  background-size: contain;
  width: 240px;
  height: 78px;
  margin: 10px auto 20px;
}

.catchphrase {
  position: relative;
  z-index: 99;
  background: url(../images/ribbon.svg) no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  padding: 24px 0 52px 0;
  margin: 10px 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
}

.desc {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.entry-box {
  border: 2px solid var(--primary-green);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.entry-label {
  background-color: var(--primary-green);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 5px;
}

.entry-label span {
  font-size: 14px;
  font-weight: 900;
}

.entry-date {
  background: #fff;
  color: var(--primary-green);
  padding: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-feature-settings: "palt";
}

.entry-date span {
  font-size: 48px;
}

.organizers {
  font-size: 13px;
}

.organizers p {
  text-indent: -3em;
  margin-left: 3em;
}

.hero-images {
  position: static;
  align-self: start;
  width: 100%;
}

.hero-images img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-left: auto;
}

/* ==========================================
   4. はじめに (Intro Section)
   ========================================== */
.intro-section {
  scroll-margin-top: 80px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.intro-section .catchcopy {
  color: var(--primary-green);
  font-size: 3rem;
  font-family:
    "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", serif;
  text-align: center;
  margin-bottom: 40px;
}

.intro-lead {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 50px 30px;
  margin-bottom: 50px;
}

.intro-comment {
  position: relative;
  background: #eef6e2;
  border-radius: 20px;
  color: var(--primary-green);
  font-size: 1.3rem;
  padding: 30px 0;
  text-align: center;
}

.intro-comment::before,
.intro-comment::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url("../images/icon_leaf_green.svg") no-repeat center/contain;
  position: absolute;
  bottom: 10px;
}

.intro-comment::before {
  left: -30px;
}

.intro-comment::after {
  right: -30px;
  transform: scaleX(-1);
}

.intro-merit {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
}

.intro-merit-item {
  display: flex;
  align-items: center;
  width: 32%;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px 10px;
}

.intro-merit-item img {
  width: 80px;
  margin-right: 10px;
}

.intro-merit-item .text {
  color: var(--primary-green);
}

.intro-merit-item .subtext {
  color: #000;
  font-size: 0.8em;
}

.intro-movie {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.intro-movie-link {
  margin-right: 50px;
  width: 380px;
}

.intro-movie-link img {
  width: 100%;
}

.intro-movie-title {
  color: var(--primary-green);
  font-size: 1.4rem;
}

.intro-movie-text {
  margin-bottom: 20px;
}

.intro-movie-btnlink a {
  align-items: center;
  background: var(--primary-green);
  border-radius: 50px;
  color: #fff;
  font-size: 1.3rem;
  justify-content: center;
  display: flex;
  padding: 15px 0;
  text-decoration: none;
  text-align: center;
  width: 380px;
}

.intro-movie-btnlink img {
  margin: 0 10px;
}

.intro-pdf {
  align-items: center;
  background: var(--light-green);
  border-radius: 20px;
  display: flex;
  gap: 3rem;
  padding: 20px 50px;
}

.intro-pdf-download {
  align-items: center;
  background: #fff;
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  color: var(--primary-green);
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 15px 0;
  text-decoration: none;
  text-align: center;
  width: 350px;
}

.intro-pdf-note {
  color: #666;
  font-size: 0.85rem;
  margin-top: 5px;
  text-align: center;
}

/* ==========================================
   5. 募集内容 (Recruitment Section)
   ========================================== */
.recruitment-section {
  background-color: #fff;
  padding: 60px 0;
}

.recruitment-bg1,
.recruitment-bg2,
.recruitment-bg3 {
  position: absolute;
  z-index: 1;
}

.recruitment-bg1 {
  background: url(../images/recruitment_bg1.png) no-repeat;
  background-size: contain;
  left: -260px;
  top: 20px;
  width: 500px;
  height: 500px;
}

.recruitment-bg2 {
  background: url(../images/recruitment_bg2.png) no-repeat;
  background-size: contain;
  left: -190px;
  bottom: -30px;
  width: 350px;
  height: 350px;
}

.recruitment-bg3 {
  background: url(../images/recruitment_bg3.png) no-repeat;
  background-size: contain;
  right: -130px;
  bottom: 20px;
  width: 560px;
  height: 420px;
}

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

.recruitment-grid::after {
  content: "";
  display: block;
  width: 450px;
}

.recruitment-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.recruitment-card .card-img {
  width: 200px;
}

.recruitment-card .card-img img {
  width: 100%;
}

.card-num {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(135deg, #36bc5a, #006c1d);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

/* ==========================================
   6. 受賞店舗のご紹介 (Archive Swiper)
   ========================================== */
.archive-section {
  background: #f2f8e7;
  padding: 100px 0;
}

.archive-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 50px !important;
}

.swiper-slide a {
  color: #000;
  text-decoration: none;
}

.swiper-slide:hover {
  opacity: 0.8;
}

.swiper-slide .card-img {
  margin-bottom: 20px;
}

.swiper-slide .card-img img {
  border-radius: 10px 10px 0 0;
  width: 100%;
}

.archive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 350px;
  background: #ffffff;
  border: 1px solid #e2eee4;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.award-badge {
  position: absolute;
  top: 170px;
  left: 15px;
  z-index: 2;
  width: 130px;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}

.badge-minister {
  background: rgba(1, 111, 48, 0.85);
}

.badge-association {
  background: rgba(0, 84, 115, 0.85);
}

.badge-foster {
  background: rgba(243, 150, 0, 0.85);
}

.card-title {
  color: var(--primary-green);
  font-size: 1.3rem;
  padding: 0 20px;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.card-title span {
  display: inline-block;
}

.card-text {
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 20px 20px;
  margin: 0;
}

/* Swiperナビゲーションカスタム */
.archive-swiper .swiper-button-next,
.archive-swiper .swiper-button-prev {
  color: #00703c;
}

.archive-swiper .swiper-pagination-bullet-active {
  background: #00703c;
}

/* ==========================================
   7. スケジュール (Schedule / Step Flow)
   ========================================== */
.step-flow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* 上部月別バー */
.timeline-months {
  display: flex;
  justify-content: space-between;
  background: #ecf3e5;
  border-radius: 30px;
  padding: 10px 40px;
  margin-bottom: 25px;
}

.month-item,
.month-item-gold {
  width: 14%;
  color: var(--primary-green);
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.month-item-gold {
  color: var(--schedule-gold);
}

/* 中央タイムライン */
.timeline-line-wrapper {
  padding: 0 50px;
  margin-bottom: 30px;
}

.timeline-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6px;
  background: #016f30;
}

.dot {
  width: 16px;
  height: 16px;
  background: #016f30;
  border-radius: 50%;
  z-index: 2;
}

.dot.gold {
  position: relative;
  width: 26px;
  height: 26px;
  background: var(--schedule-gold);
}

.dot.gold::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: var(--schedule-gold) transparent transparent transparent;
}

/* 下部カードエリア */
.step-cards-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 50px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  background: #ffffff;
  border: 1px solid #e2eee4;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.step-card.card-gold {
  background: #fdf8ed;
  border: 2px solid var(--schedule-gold);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}

.step-icon-last {
  width: 120px;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin: 0 0 12px 0;
  color: var(--primary-green);
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.3;
}

.step-period {
  width: 100%;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.step-card.card-gold .step-period {
  background: var(--schedule-gold);
}

.step-desc {
  margin: 0;
  color: #333;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2%;
}

.step-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #005a2b;
}

/* ==========================================
   8. 審査委員 (Members Section)
   ========================================== */
.member-section {
  margin: 0 50px;
}

.member-group {
  display: flex;
  align-items: stretch;
  border-bottom: 1px dashed #707070;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.member-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 170px;
  background: var(--primary-green);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 5px;
  margin-right: 40px;
  text-align: center;
}

.member-name-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-grow: 1;
}

.member-name-row {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.member-name-after {
  font-size: 1rem;
  margin-right: 5px;
}

.member-name-title {
  font-size: 0.9rem;
}

/* ==========================================
   9. CVエリア (CTA Section)
   ========================================== */
.cta-section {
  width: 100%;
  background-color: #f3f8f1;
  padding: 60px 0;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.cta-lead {
  text-align: center;
  color: #005a2b;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 3ステップフロー */
.cta-flow {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.flow-balloon {
  position: absolute;
  top: -70px;
  left: 0;
  background: #fff;
  border: 1px solid #fbe6c4;
  color: #dca134;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.flow-balloon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 60%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 0;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}

.flow-balloon::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 60%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 0 0;
  border-color: #fbe6c4 transparent transparent transparent;
  z-index: 1;
}

.flow-item {
  width: 130px;
  text-align: center;
}

.flow-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.flow-step-num {
  color: #005a2b;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.flow-step-desc {
  margin: 0;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.flow-arrow {
  margin: 0 15px 40px;
}

.flow-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #b9d47f;
}

/* 応募ボタンエリア */
.cta-button-area {
  width: 480px;
  position: relative;
}

.btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: linear-gradient(to bottom, #018541, #005a2b);
  border: 3px solid #66b588;
  border-radius: 16px;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 8a, 41, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-submit::after {
  content: ">";
  position: absolute;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #005a2b;
  border-radius: 50%;
  font-size: 1.6rem;
  font-family: monospace;
  text-indent: 0;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 8a, 41, 0.3);
}

/* ボタン上の斜めリボン */
.btn-ribbon {
  position: absolute;
  top: -4px;
  left: -9px;
  z-index: 1;
  background: #e68a00;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 6px 15px 6px 14px;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  clip-path: polygon(6% 0%, 100% 0%, calc(100% - 12px) 50%, 100% 100%, 0% 100%);
  letter-spacing: 0.1em;
}

.btn-ribbon::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 0;
  border-color: #a36200 transparent transparent transparent;
  z-index: -1;
  transform: rotate(12deg);
}

.cta-secure-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 0;
  color: #005a2b;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.cta-secure-text::before {
  content: "🔒";
  margin-right: 6px;
  font-size: 1rem;
}

/* ==========================================
   10. フッター (Footer)
   ========================================== */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 12px;
}

.footer-logo {
  color: var(--primary-green);
  font-size: 22px;
  font-weight: 900;
  border-bottom: 1px solid #dedede;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.contact-info {
  font-size: 14px;
}

.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.coming-soon {
  background: #fbfcf3;
  padding: 150px 0;
  text-align: center;
}

.coming-title {
  color: var(--primary-green);
  font-size: 64px;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.release-date {
  color: var(--primary-green);
  font-size: 40px;
  font-weight: bold;
  margin-top: 50px;
}

.leaf-divider {
  width: 600px;
  margin: 0 auto;
}

.leaf-divider img {
  width: 100%;
}

/* ==========================================
   11. レスポンシブメディアクエリ (Responsive)
   ========================================== */

/* -------------------------------------------
   A. タブレット向け (画面幅 1024px 以下)
   ------------------------------------------- */
@media (max-width: 1024px) {
  /* 共通レイアウトの調整 */
  .inner {
    width: 90%; /* 固定幅 1100px から、画面幅に応じた割合（90%）に変更 */
  }

  /* --- ハンバーガーボタンのスタイル --- */
  .hamburger-btn {
    display: block; /* タブレット以下で表示 */
    position: relative;
    z-index: 1000; /* メニューより上に配置 */
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* 三本線の共通スタイル */
  .hamburger-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000; /* 三本線の色 */
    transition: all 0.3s ease;
  }

  /* 三本線のそれぞれの位置設定 */
  .hamburger-btn span:nth-child(1) { top: 0; }
  .hamburger-btn span:nth-child(2) { top: 11px; }
  .hamburger-btn span:nth-child(3) { top: 22px; }

  /* 【開いた時（activeクラスが着いた時）】の三本線の動き（×印に変形） */
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* --- ナビゲーションメニューのスタイル（スマホ・タブは全画面表示に） --- */
  .gnavi-menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態は画面の右外側に隠す */
    z-index: 999;
    width: 100%; /* 横幅いっぱいに広げる（お好みで 80% などに変えてもOK） */
    height: 100vh; /* 縦幅いっぱいに広げる */
    background: rgba(255, 255, 255, 0.95); /* 背景色（少し透過） */
    padding-top: 100px; /* ボタンと被らないように上部をあける */
    transition: right 0.4s ease; /* スライドして出てくるアニメーション */
  }

  /* 【開いた時（activeクラスが着いた時）】右からスライドイン */
  .gnavi-menu.active {
    right: 0;
  }

  /* メニュー内のリンクを縦並びにする */
  .gnavi ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5em; /* メニュー同士の上下の間隔 */
  }

  .gnavi a {
    font-size: 1.4rem; /* スマホ・タブレットでタップしやすいように少し大きめに */
  }

  .title-line {
    white-space: normal;
  }

  /* メインビジュアル */
  .hero-grid {
    grid-template-columns: 1fr 1fr; /* 左右等幅に調整 */
    gap: 20px;
  }
  .hero-images img {
    max-width: 100%;
  }

  /* はじめに（3つのメリット） */
  .intro-merit {
    flex-wrap: wrap;
    gap: 15px;
  }
  .intro-merit-item {
    width: 100%; /* 横並びが窮屈になるため、タブレットから縦並びにするか、48%などで2並びに */
  }
  .intro-movie,
  .intro-pdf {
    display: block;
    padding: 20px;
  }
  .intro-movie-btnlink a,
  .intro-pdf-download {
    font-size: 1rem;
    width: 100%;
  }

  /* 審査委員 */
  .member-section {
    margin: 0 20px; /* 左右の余白を少し縮める */
  }
  .member-title {
    margin-right: 20px; /* ラベルと名前の隙間を縮める */
  }
}

/* -------------------------------------------
   B. 特殊ブレイクポイント (画面幅 992px 〜 960px 付近)
   ※ 要素が多いグリッドやCVエリアのレイアウト崩れを防ぐため
   ------------------------------------------- */
@media (max-width: 992px) {
  /* CVエリア (CTA) を縦並びに */
  .cta-content {
    flex-direction: column;
    gap: 40px;
  }
  .cta-flow {
    padding-left: 0; /* 縦並び時に中央に寄せるため調整 */
  }
  .cta-button-area {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 960px) {
  /* スケジュール (Step Flow) の縦並び化 */
  .timeline-months,
  .timeline-line-wrapper,
  .step-arrow {
    display: none; /* 上部の目盛り線と横矢印を非表示に */
  }
  .step-cards-container {
    flex-direction: column;
    gap: 20px;
  }
  .step-card {
    width: 100%;
    padding: 20px;
  }
}

/* -------------------------------------------
   C. スマートフォン向け (画面幅 768px 以下)
   ------------------------------------------- */
@media (max-width: 768px) {
  /* 全体設定 */
  section {
    margin-bottom: 60px; /* セクション間の余白をスマホ用に縮める */
  }

  .section-title,
  .section-title-gold {
    font-size: 1.4rem; /* タイトル文字を少し小さく */
  }
  .title-line::before,
  .title-line::after {
    width: 20px;
    height: 20px; /* 葉っぱアイコンも一回り小さく */
    margin: 0 8px;
  }

  .header {
    padding: 20px 5%;
  }

  .header .container {
    gap: 15px;
  }
  .gnavi ul {
    gap: 1.5em; /* メニューの文字間隔を縮める */
  }

  /* 右上の固定ボタン（スマホだと画面を塞ぐため、配置やサイズを微調整） */
  .header-btn {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  .btn-entry-top {
    width: 90px;
    height: 90px;
    font-size: 16px;
  }
  .btn-entry-top span {
    font-size: 9px;
  }

  /* メインビジュアル */
  .hero {
    padding: 30px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr; /* 完全に縦1列に並べる */
    padding-top: 20px;
    min-height: auto;
  }
  .hero-images {
    order: -1; /* スマホでは画像をテキストより先に（上に）表示させたい場合 */
    margin-bottom: 20px;
  }
  .hero-images img {
    margin: 0 auto;
  }
  .sub-txt {
    font-size: 20px;
    text-align: center;
  }
  .catchphrase {
    font-size: 18px;
    padding: 15px 10px 40px;
    margin: 10px 0;
  }
  .desc {
    font-size: 16px;
  }
  .entry-date {
    font-size: 18px;
  }
  .entry-date span {
    font-size: 32px;
  }

  /* はじめに */
  .intro-section .catchcopy {
    font-size: 1.8rem; /* スマホで見やすいサイズに小さく */
  }
  .intro-lead {
    padding: 30px 15px;
  }
  .intro-comment {
    font-size: 1rem;
    padding: 20px 10px;
  }
  .intro-comment::before {
    left: -10px;
    width: 40px;
    height: 40px;
  }
  .intro-comment::after {
    right: -10px;
    width: 40px;
    height: 40px;
  }

  /* 募集内容 */
  .recruitment-card {
    width: 100%; /* カードを画面幅いっぱいに */
    height: auto; /* 高さを固定せず中身に合わせる */
    padding: 30px 15px;
  }
  /* スマホの画面外にはみ出て横スクロールが発生するのを防ぐため、背景イラストを非表示に（または縮小） */
  .recruitment-bg1,
  .recruitment-bg2,
  .recruitment-bg3 {
    display: none;
  }

  /* 審査委員 */
  .member-group {
    flex-direction: column; /* 横並びから縦並びに */
    align-items: flex-start;
  }
  .member-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 8px;
  }
  .member-name-block {
    padding-left: 5px;
  }

  /* CVエリア (CTA) */
  .cta-flow {
    flex-direction: column; /* 3ステップを縦並びに */
    gap: 30px;
    width: 100%;
  }
  .flow-item {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .flow-icon img {
    margin-right: 30px;
  }
  .flow-arrow {
    margin: 0;
    transform: rotate(90deg); /* 矢印を右向きから下向きに回転 */
  }
  .flow-balloon {
    border-radius: 10px;
    position: static;
    margin: 0 auto 20px;
    width: 100%;
  }
  .btn-submit {
    font-size: 1.6rem; /* ボタンの文字をスマホ幅に収める */
    height: 75px;
  }
  .btn-submit::after {
    right: 15px; /* 矢印の位置を少し内側に */
  }

  /* カミングスーン・その他 */
  .coming-title {
    font-size: 2.5rem;
  }
  .release-date {
    font-size: 1.8rem;
  }
  .leaf-divider {
    width: 100%;
  }
}
