/* ========================================
   ページコンテンツ専用CSS
   ======================================== */

/* ========================================
   共通コンテナ・見出しスタイル
   ======================================== */
.container {
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  width: auto;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-red) 0%,
    var(--accent-red) 30%,
    var(--accent-green-dark) 30%,
    var(--accent-green-dark) 100%
  );
}

/* ========================================
   ヒーローセクション（修正版）
   ======================================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 160px 2rem 2rem; /* ヘッダー分の余白を上部に確保 */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/top.jpg');
  background-size: cover;
  background-position: 80% 30%;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 2rem;
  max-width: 100%;
  padding: 2rem 0;
}

.hero .hero-message {
  margin: 0;
}

.hero h1 {
  font-size: 7.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.hero p {
  font-size: 2.3rem;
  margin-bottom: 0;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* CTAボタン */
.cta-buttons {
  display: flex;
  gap: 1rem;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}

/* ボタン共通スタイル - 幅を統一 */
.btn {
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition-base);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  width: 380px;  /* 幅を統一 */
  min-height: 80px;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #c8421f;
  color: var(--bg-white);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 5rem;
  padding-right: 2rem;
}

.btn-primary::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background-image: url('../images/icon-main.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background-color: #a8351a;
}

.btn-secondary {
  background-color: #2b5e9f;
  color: var(--bg-white);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 5rem;
  padding-right: 2rem;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background-image: url('../images/icon-sub.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-secondary:hover {
  background-color: #1e4a7f;
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary .btn-main-text,
.btn-secondary .btn-main-text {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-right: 2rem;
  display: inline-block;
}

.btn-primary .btn-sub-text,
.btn-secondary .btn-sub-text {
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-primary .btn-main-text::after,
.btn-secondary .btn-main-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background-image: url('../images/icon-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========================================
   重要なお知らせセクション
   ======================================== */
.important-notice {
  margin: 0;
  display: flex;
  border: 2px solid var(--accent-red);
  overflow: hidden;
}

.notice-title {
  background-color: var(--accent-red);
  color: var(--bg-white);
  padding: 2rem 2.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  writing-mode: horizontal-tb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.notice-content {
  background-color: var(--bg-white);
  padding: .5rem 2.5rem;
  flex: 1;
}

.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notice-list li {
  padding: 0.rem 0;
  display: flex;
  align-items: center;
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-list li a {
  color: var(--text-dark);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.notice-list li a:hover {
  color: var(--accent-red);
}

.external-link::after {
  content: '';
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* ========================================
   ポイントセクション
   ======================================== */
.points-section {
  background: url("../images/point-back.jpg") no-repeat center / cover;
  padding: 4rem 2rem;
  margin: 0;
}
#points-title{
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}
.points-section h2 .highlight {
  color: var(--accent-red);
  font-size: 2.8rem;
}
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}
.point-card {
  background-color: var(--bg-white);
  border: 2px solid var(--accent-green-dark);
  border-radius: var(--border-radius-md);
  padding: 0.2rem 0.5rem;
  text-align: center;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}
/* カード全体のリンク設定 */
a.point-card {
  text-decoration: none;
  color: inherit;
}
a.point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-red);
}
.point-card .strong {
  color: #1B5596;
  font-weight: 900;
  font-size: 1.3em;
}
.point-number {
  font-size: 0.85rem;
  color: var(--accent-red);
  font-weight: bold;
  margin-bottom: 0.3rem;
  line-height: 2rem;
}
.point-number span {
  font-size: 3.2rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-bottom: 10px;
}
.point-number span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-red);
}
.point-number span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10px;
  right: 0;
  height: 3px;
  background-color: var(--accent-red);
}
.point-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 2rem 0rem 1rem;
  line-height: 1.5;
}
.point-description {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  min-height: 3em;
  flex-grow: 1;
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: left;
}
.point-link {
  display: inline-block;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-base);
  align-self: flex-end;
}
/* 「詳しく見る→」のホバー時色変化 */
a.point-card .point-link {
  color: #2E7D32;
}
a.point-card:hover .point-link {
  color: var(--accent-red-dark);
}

/* ========================================
   タブメニューセクション
   ======================================== */
.tab-menu-section {
  background-color: var(--bg-white--accent-green);
  padding: 3rem 0 0;
  margin: 0;
}

.tab-header {
  display: flex;
  justify-content: center;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.tab-button {
  background-color: var(--accent-green-light);
  color: var(--text-dark);
  border: none;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-base);
  flex: 1;
  position: relative;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-button.active {
  background-color: var(--accent-green-dark);
  color: var(--bg-white);
  min-height: 70px;
  z-index: 2;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.tab-content-wrapper {
  background-color: var(--accent-green-dark);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  padding: 3rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

/* Tab1のグリッド */
#tab1 .menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  width: 80%;
  margin: auto;
}

/* Tab2のグリッド */
#tab2 .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  width: 80%;
  margin: auto;
}

/* Tab3のコンテンツ */
#tab3 .tab3-container {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 1rem 3rem;
  border-radius: 20px;
}

#tab3 .tab3-content {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

#tab3 .tab3-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: left;
}

#tab3 .tab3-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 600;
  text-decoration: underline;
}

#tab3 .tab3-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  text-decoration: underline;
}

#tab3 .tab3-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tab3 .tab3-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

#tab3 .tab3-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

#tab3 .tab3-button-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1rem;
}

#tab3 .tab3-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--accent-green-dark);
  color: var(--bg-white);
  padding: 0rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 280px;
}

#tab3 .tab3-button:hover {
  background-color: #3a5f25;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: var(--bg-white);
}

#tab3 .tab3-button-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-image: url('../images/icon-13.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#tab3 .tab3-button-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
}

#tab3 .tab3-button-arrow {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* メニューアイテム共通スタイル */
.menu-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid transparent;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  border-color: var(--accent-green-dark);
  background-color: var(--bg-white);
}

.menu-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.menu-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.menu-icon::before {
  content: '';
}

/* Tab1のアイコン */
#tab1 .menu-item:nth-child(1) .menu-icon {
  background-image: url('../images/icon-1.png');
}

#tab1 .menu-item:nth-child(2) .menu-icon {
  background-image: url('../images/icon-2.png');
}

#tab1 .menu-item:nth-child(3) .menu-icon {
  background-image: url('../images/icon-3.png');
}

#tab1 .menu-item:nth-child(4) .menu-icon {
  background-image: url('../images/icon-4.png');
}

#tab1 .menu-item:nth-child(5) .menu-icon {
  background-image: url('../images/icon-5.png');
}

#tab1 .menu-item:nth-child(6) .menu-icon {
  background-image: url('../images/icon-6.png');
}

#tab1 .menu-item:nth-child(7) .menu-icon {
  background-image: url('../images/icon-7.png');
}

#tab1 .menu-item:nth-child(8) .menu-icon {
  background-image: url('../images/icon-8.png');
}

/* Tab2のアイコン */
#tab2 .menu-item:nth-child(1) .menu-icon {
  background-image: url('../images/icon-9.png');
}

#tab2 .menu-item:nth-child(2) .menu-icon {
  background-image: url('../images/icon-10.png');
}

#tab2 .menu-item:nth-child(3) .menu-icon {
  background-image: url('../images/icon-11.png');
}
#tab2 .menu-item:nth-child(4) .menu-icon {
  background-image: url('../images/icon-12.png');
}

#tab2 .menu-item:nth-child(5) .menu-icon {
  background-image: url('../images/icon-6.png');
}

/* ========================================
   おすすめコンテンツセクション
   ======================================== */
.recommended-section {
  background-color: var(--bg-white);
  padding: 4rem 2rem;
  margin: 0;
}

.recommended-banner {
  display: block;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.recommended-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recommended-banner img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* ========================================
   よくある質問セクション
   ======================================== */
.faq-section {
  background-color: #e8efe5;
  padding: 4rem 2rem;
  margin: 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
  border-bottom: 2px solid var(--accent-green-dark);
  padding: 1rem 0;
  text-align: left;
}

.faq-item:first-of-type {
  border-top: 2px solid var(--accent-green-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 0.5rem;
  text-align: left;
  transition: var(--transition-base);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-q-icon, .faq-a-icon {
  font-weight: bold;
  font-size: 2.7rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.faq-q-text {
  flex: 1;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  padding-top: 0.4rem;
}

.faq-toggle {
  color: var(--accent-green-dark);
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  padding-top: 0.4rem;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition-base);
}

.faq-answer.active {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 2.5rem 1.5rem 0.5rem;
}

.faq-answer p {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  padding-top: 0.4rem;
}

.faq-cta {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
}

.faq-more-btn {
  display: inline-block;
  background-color: var(--accent-green-dark);
  color: var(--bg-white);
  padding: 1rem 3rem;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
  box-shadow: 0 4px 10px rgba(90, 143, 58, 0.3);
}

.faq-more-btn:hover {
  background-color: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(90, 143, 58, 0.4);
  color: var(--bg-white);
}

/* ========================================
   お知らせセクション
   ======================================== */
.news-section {
  background-color: var(--bg-white);
  padding: 4rem 2rem;
  margin: 0;
}

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

.news-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.news-tab {
  background-color: var(--bg-white);
  border: 2px solid var(--accent-green-dark);
  padding: .5rem 2rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-base);
  position: relative;
  border-radius: 0;
  white-space: nowrap;
}

.news-tab:hover:not(.active) {
  background-color: #f5f5f5;
}

.news-tab.active {
  background-color: var(--accent-green-dark);
  color: var(--bg-white);
  font-weight: 600;
  border-color: var(--accent-green-dark);
  border-bottom: 2px solid var(--accent-green-dark);
  z-index: 2;
  position: relative;
  margin-bottom: -2px;
}

.news-tab.active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--accent-green-dark);
}

.news-content-wrapper {
  border: 2px solid var(--accent-green-dark);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  background-color: var(--bg-white);
  min-height: 400px;
}

.news-content {
  display: none;
  padding: 1rem 2rem;
}

.news-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list .news-item:nth-child(n+13) {
  display: none;
}

.news-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item::before {
  content: '';
  color: var(--accent-green-dark);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.news-date {
  color: var(--text-medium);
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.news-link {
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.6;
  transition: var(--transition-base);
  flex: 1;
  text-align: left;
}

.news-link:hover {
  color: var(--accent-green-dark);
  text-decoration: underline;
}

.news-more {
  text-align: right;
  padding-top: .5rem;
  border-top: 1px solid var(--border-light);
}

.news-more-link {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.news-more-link:hover {
  color: var(--accent-green-dark);
  text-decoration: underline;
}

/* ========================================
   バナーセクション
   ======================================== */
.banner-section {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  margin: 0;
}

.banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-item {
  display: block;
  transition: var(--transition-base);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.banner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}
/* ========================================
   レスポンシブ: タブレット (769px?1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 5.5rem;
  }

  .hero p {
    font-size: 2rem;
  }

  .btn {
    width: 340px;
    min-height: 75px;
    padding: 0.9rem 2rem 0.9rem 4.5rem;
  }

  .btn-primary::before,
  .btn-secondary::before {
    width: 3rem;
    height: 3rem;
    left: 1rem;
  }

  .btn-primary .btn-main-text,
  .btn-secondary .btn-main-text {
    font-size: 1.25rem;
  }
}
/* ========================================
   レスポンシブ: モバイル (768px以下)
   ======================================== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 1rem 3rem; /* モバイル用ヘッダー余白 */
  }

  .hero-content {
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }

  .btn {
    width: 90%;
    max-width: 350px;
    min-height: 70px;
    padding: 0.8rem 1.5rem 0.8rem 4rem;
  }

  .btn-primary::before,
  .btn-secondary::before {
    width: 2.5rem;
    height: 2.5rem;
    left: 0.8rem;
  }

  .btn-primary .btn-main-text,
  .btn-secondary .btn-main-text {
    font-size: 1.1rem;
    padding-right: 1.5rem;
  }

  .btn-primary .btn-main-text::after,
  .btn-secondary .btn-main-text::after {
    width: 1rem;
    height: 1rem;
  }

  .btn-primary .btn-sub-text,
  .btn-secondary .btn-sub-text {
    font-size: 0.8rem;
  }

  .notice-title {
    min-width: auto;
    padding: 1.2rem;
    text-align: center;
  }

  .notice-content {
    padding: 1rem 1.5rem;
  }

  .points-grid {
    grid-template-columns: 1fr;
  }

  .points-section {
    padding: 3rem 1rem;
  }

  .tab-header {
    gap: 1px;
  }

  .tab-button {
    min-height: 60px;
    padding: 1rem 0rem;
  }

  .tab-button.active {
    min-height: 70px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-content-wrapper {
    padding: 2rem 1rem;
  }

  .banner-item {
    max-width: 400px;
  }

  .news-tabs {
    flex-wrap: wrap;
  }

  .news-tab {
    flex: 1 1 calc(50% - 2px);
    min-width: 0;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .news-tab:last-child {
    flex: 1 1 100%;
    margin-top: 4px;
  }

  .news-item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .news-date {
    white-space: normal;
  }

#tab1 .menu-grid {
  grid-template-columns: repeat(1, 1fr);
}

#tab2 .menu-grid {
  grid-template-columns: repeat(1, 1fr);
}


  #tab3 .tab3-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--accent-green-dark);
    color: var(--bg-white);
    padding: 0rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 280px;
  }

  #tab3 .tab3-button:hover {
    background-color: #3a5f25;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--bg-white);
  }

  #tab3 .tab3-button-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background-image: url('../images/icon-13.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  #tab3 .tab3-button-text {
    font-size: 0.9rem;
  }

  #tab3 .tab3-container {
    width: 95%;
    padding: 1rem 1.5rem;
  }
}

/* ========================================
   レスポンシブ: 小型モバイル (480px以下)
   ======================================== */
@media (max-width: 480px) {
  .hero {
    padding: 5rem 0.5rem 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .cta-buttons {
    gap: 0.6rem;
  }

  .btn {
    width: 95%;
    max-width: 320px;
    min-height: 65px;
    padding: 0.7rem 1rem 0.7rem 3.5rem;
  }

  .btn-primary::before,
  .btn-secondary::before {
    width: 2.2rem;
    height: 2.2rem;
    left: 0.6rem;
  }

  .btn-primary .btn-main-text,
  .btn-secondary .btn-main-text {
    font-size: 1rem;
    padding-right: 1.3rem;
    white-space: nowrap;
  }

  .btn-primary .btn-main-text::after,
  .btn-secondary .btn-main-text::after {
    width: 0.9rem;
    height: 0.9rem;
  }

  .btn-primary .btn-sub-text,
  .btn-secondary .btn-sub-text {
    font-size: 0.75rem;
  }

  /* 青いボタンの文字を1行に収める調整 */
  .btn-secondary .btn-main-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
   .important-notice {
    flex-direction: column;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0;
  }

  .faq-container {
    padding: 1rem;
  }

  .faq-answer.active {
    padding: 1rem 0.5rem 1.5rem 0.5rem;
  }

  .faq-q-icon, .faq-a-icon {
    font-size: 2.3rem;
    width: 15px;
  }
}
/* ========================================
   レスポンシブ: 超小型モバイル (360px以下)
   ======================================== */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    width: 98%;
    max-width: 290px;
    min-height: 60px;
    padding: 0.6rem 0.8rem 0.6rem 3rem;
  }

  .btn-primary::before,
  .btn-secondary::before {
    width: 2rem;
    height: 2rem;
    left: 0.5rem;
  }

  .btn-primary .btn-main-text,
  .btn-secondary .btn-main-text {
    font-size: 0.9rem;
    padding-right: 1.2rem;
  }

  .btn-secondary .btn-main-text {
    font-size: 0.75rem;
  }

  .btn-primary .btn-sub-text,
  .btn-secondary .btn-sub-text {
    font-size: 0.7rem;
  }
}