
/* ============================
 　ホームページ
   ============================ */

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", "YuGothic", "Meiryo", "Arial", sans-serif;
  color: #4A4A4A;
  background-color: #f9f9ff;
}

/* header */
.site-header {
  background: #3498DB;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 9999;
}
.site-header h1 a,
.site-header h1 a:visited,
.site-header h1 a:hover,
.site-header h1 a:active {
  text-decoration: none; 
  color: inherit;         
  cursor: pointer;    
  outline: none;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.left {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

/* ナビゲーション（右側） */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s;
  line-height: 1; 
  display: inline-block; 
  vertical-align: middle;
}
.nav a:hover {
  opacity: 0.8;
}

/* メニュー */
.menu-button {
  display: none; 
  align-items: center;
  border: 2px solid #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  right: 20px; 
}
.menu-text {
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14px;
}
/* ナビの開閉スタイル */
@media screen and (max-width: 768px) {
  .nav {
    display: none; 
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #3498DB;
    text-align: center;
    padding: 15px 0;
  }
  .nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .menu-button {
    display: flex;
  }
  .nav.active {
    display: block;
  }
}

/*--- hero ---*/
.hero {
  position: relative;
  background-image: url("Images/hero_background_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 550px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 0 15% 0 15%;
}
#sakura-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  text-align: left;
  flex: 1;
  position: relative;
  z-index: 2;
}
.hero-text .upper {
  color: #4d2f2f;
  font-size: 1.3rem;
  display: inline-block;
  font-weight: 900;
  margin-left: 0.3em;
}
.hero-text h1 {
  font-size: 3.7rem;
  line-height: 1.3;
  color: #4d2f2f;
  text-align: left;
  letter-spacing: -0.08em;
  font-weight: 900;
}
.date-info {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  background-color: #3498DB;
  margin-left: 0.3em;
  
}
.date-label {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}
.date-main {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.date-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 0.1em;
}
/* 英文 */
.hero-english {
  margin-top: 20px;
  font-family: 'Consolas''Courier New', monospace;
  margin-left: 0.2em;
}
.english-title {
  font-size: 1.3rem;
  color: #4d2f2f;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.english-date {
  font-size: 1.1rem;
  color: #4d2f2f;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
/* 右側画像 */
.hero-image {
  flex: 0 0 auto;       
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
}
.hero-image img {
  height: 430px;        
  width: auto;            
  object-fit: contain;
  display: block;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  /* --- hero --- */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 120px 24px 0;      
    gap: 16px;
    align-items: flex-start;  
    justify-content: flex-start;
  }
  .hero-content {
    margin-left: 10px;
    margin-top: 10px;
    text-align: left;
    width: 100%;
  }
  .hero-text .upper {
    text-align: left;
    font-size: 1.2rem;
    margin-left: 0;
  }
  .hero-text h1 {
    font-size: 3rem;
    text-align: left;
    letter-spacing: -0.06em;
  }
  .date-info {
    flex-direction: row;  
    gap: 4px;
    margin-left: 0;
    padding: 4px 10px;
  }
  .date-label {
    font-size: 0.85rem;
  }
  .date-main {
    font-size: 1.1rem;
  }
  .date-number {
    font-size: 1.5rem;
  }
  /* 英文 */
  .hero-english {
    margin-top: 16px;
  }
  .english-title {
    font-size: 1.3rem;
  }
  .english-date {
    font-size: 1rem;
  }
  /* 画像 */
  .hero-image {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    margin-top: 16px;
    margin-bottom: 80px;
  }
  .hero-image img {
    height: auto;
    width: 90%;              
    max-width: 420px;
    margin-top: 0;
  }
}
/*--- ボタン base---*/
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-button {
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #4A4A4A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cta-button.secondary {
  background-color: #fcfcff;
  color: #4A4A4A;
  border: 2px solid #4A4A4A;
  
}
/* --- お知らせセクション --- */
.announcement-section {
  padding: 80px 0;
}
.announcement-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.announcement-card {
  background: white;
  padding: 80px 40px;
  border-top: 2px solid #f4a7b9; 
  border-bottom: 2px solid #f4a7b9; 
  border-left: none;
  border-right: none;
  border-radius: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.announcement-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.announcement-title {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.announcement-text {
  line-height: 1.8;
  
}

/* --- 対象者・送付方法共通カード --- */
.target {
  padding: 80px 0;
}
/* 共通コンテナ */
.content-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
.section-header-new {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #3498DB;
  padding: 12px 26px;
  border-radius: 12px 12px 0 0;
  z-index: 2;
}
.section-title-styled {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}
/* カード本体 */
.info-card {
  position: relative;
  background: white;
  border: 4px solid #3498DB;
  border-radius: 16px;
  padding: 80px 30px 30px;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 39px;
  width: 100%;
  background: #ffabbf2b;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.info-main {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.info-note {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* --- 商品券概要 --- */
.voucher {
  padding: 80px 0;
}
.amount-large {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 5px;
}
.voucher-item {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.voucher-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.badge {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.badge.common { background-color: #00796b; } 
.badge.special { background-color: #e64a19; } 
/* 利用期間のボックス */
.period-box {
  background: #fff9c4;
  border: 2px dashed #fbc02d;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}
.period-label {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.period-date {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
strong {
  color: #333;
  text-decoration: underline decoration-color #ffd54f;
  text-decoration-thickness: 5px;
  text-underline-offset: -2px;
}
.type-header {
  padding: 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.type-header.common { background: #3498DB; }
.type-header.exclusive { background: #27AE60; }
.type-desc {
  padding: 20px;
  font-size: 0.95rem;
  text-align: center;
}
/* --- ポスター案内 --- */
.poster-title {
  text-align: center;
  margin: 60px 0 5px;
  font-size: 1.5rem;
}
.voucher-note {
  text-align: center;
  margin-bottom: 20px;
}
.voucher-poster-flex {
  display: flex;
  flex-direction: column; 
  gap: 30px;
  margin: 40px 0;
}
/* 商品券とポスターのセット*/
.voucher-poster-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voucher-poster-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.set-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.voucher-poster-item.common-set .set-header { 
  border-bottom-color: #f1f8f7; 
}
.voucher-poster-item.special-set .set-header { 
  border-bottom-color: #fdf2f0; 
} 

.usage-limit {
  font-size: 1.1rem;
  color: #666;
  margin-left: 10px;
}
.set-content {
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 100%; 
}
.images-left {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 20px;
}
.images-left figure {
  margin: 0;
  width: 80%;
  max-width: 320px;
}
.images-left img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
  display: block;
  margin: 0 auto 8px;
}
.images-left figcaption {
  font-size: 0.8rem;
  color: #777;
  font-weight: bold;
  padding-left: 30px;
}
.text-right {
  flex: 0 0 auto;
  width: 100%;
  text-align: center; 
  padding-top: 10px;
}
.text-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 90%;
}

/* --- レスポンシブ対応 --- */
@media (min-width: 768px) {
  .voucher-poster-flex {
    flex-direction: row; 
    justify-content: center;
  }
  .voucher-poster-item {
    flex: 1;
    max-width: 500px;
  }
}

/* --- 注意事項 --- */
.notice-section {
  padding: 80px 0;
}
.notice-items {
  list-style-type: none;
}
.notice-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size:  1.rem;
}
.notice-items li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #3498DB;
  font-size: 0.8rem;
}
.prohibited-use {
  margin-top: 40px;
  border: 2px solid #ffeded;
  background: #fffafa;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 15px;
}
.prohibited-title {
  color: #c0392b;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* --- 店舗の方へ --- */
.for-marchants {
  padding: 80px 0;
}
.merchant-card {
  background-color: #f9f9f9;
  border: none;
  border-left: 8px solid #3498DB;
  border-radius: 4px 12px 12px 4px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.merchant-card .card-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}
/* お問い合わせ */
.contact-section {
  color: #4A4A4A;
  text-align: center;
}
.contact-box {
  background: #3498db27;
  max-width: 820px;
  padding: 20px 0;
  border-radius: 12px;
  margin: 30px auto;
  font-size: 1rem;
}
.contact-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4A4A4A;
  text-align: center;
}
.contact-info {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}
.contact-info dt {
  font-weight: 600;
  color: #3498DB;
  display: inline-block;
}
.contact-info dd {
  display: inline-block;
}
.note {
  margin-top: 35px;
  font-size: 0.9rem;
  color: #4A4A4A;
  text-align: center;
}
/* 共通のカードスタイル */
.simple-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* お問い合わせ */
.contact-card {
  background: #fff;
  border: 2px solid #edf2f7;
  padding: 30px;
}
.center-text {
  font-size: 1.2rem;
  font-weight: bold;
}
.tel-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #2d3748;
  text-decoration: none;
  margin: 10px 0;
  transition: opacity 0.3s;
}
.tel-number:hover {
  opacity: 0.7;
}
.opening-hours {
  font-size: 1.1rem;
  color: #666;
}
.card-divider {
  border: none;
  border-top: 1px solid #d0e3f7;
  margin: 30px auto;
  width: 60%;
}
/* お問い合わせフォームボタン */
.form-button {
  display: inline-block;
  background: #fff;
  border: 1px solid #004098;
  color: #004098;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.form-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.form-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
}
/* スマホ対応 */
@media screen and (max-width: 600px) {
  .contact-info dt {
    display: block;
    width: auto;
    margin-top: 8px;
  }
  .contact-info dd {
    display: block;
    margin-left: 0;
  }
}
/* --- 運営情報 --- */
.operation-info {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* フッター */
.footer-bottom {
  background: #2A7AB0;
  text-align: center;
  padding: 15px 0;
  font-size: 0.8rem;
  color: #fff;
}
/* ボタン調整 */
#caution .button-container {
    margin-top: 40px;
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  .poster-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
  }
  .announcement-card { 
    padding: 25px; 
  }
  .amount-large { 
    font-size: 2.2rem; 
  }
  .period-label { 
    display: block; 
    border-right: none; 
    padding-right: 0; 
    margin-bottom: 5px; 
  }
  .no-use-list {
    grid-template-columns: 1fr;
  }
  .caution-important strong {
    font-size: 1.05rem;
  }
  .operation-info {
    padding: 25px; 
  }
}


/* ============================
   子ページ-1
   ============================ */
/* ============================
   よくあるご質問
   ============================ */
.page-title {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #3498DB;
  margin: 10px auto 0;
  border-radius: 2px;
}
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-category {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4A4A4A;
  margin-top: 40px;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: #2A7AB0;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
}
.faq-question.active::after {
  content: "-";
}
.faq-answer {
  display: none;
  padding: 10px 0;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 1.1rem;
}
.faq-answer p {
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .faq {
    padding: 70px 20px;
  }
}



/* ============================
   子ページ-2
   ============================ */
/* ============================
   店舗一覧
   ============================ */

#shop-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #3498DB;
  margin: 10px auto 0;
  border-radius: 2px;
}
.search-box {
  text-align: center;
  margin-bottom: 30px;
}
#shop-search {
  width: 80%;
  max-width: 400px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
/* 公開予定お知らせ */
.shop-announce {
  background: linear-gradient(to bottom, #fffdf7, #fff4e6);
  border: 1px solid #ffcc80;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.1);
}
.announce-text {
  text-align: center;
}
.announce-title {
  display: block; 
  color: #e65100; 
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.announce-text p {
  margin: 0;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}
/* スマホ対応 */
@media (max-width: 600px) {
  .shop-announce {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .announce-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .announce-text {
    text-align: center;
  }
  .announce-title {
    font-size: 18px;
  }
}
/* カテゴリフィルター */
.filter {
  text-align: center;
  margin-bottom: 20px;
}
.filter-btn {
  margin: 5px;
  padding: 8px 16px;
  border: 1px solid #3498DB;
  border-radius: 5px;
  background: #fff;
  color: #3498DB;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: #3498DB;
  color: #fff;
}
/* 店舗リスト */
.shop-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.shop-item {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.shop-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}
.shop-category {
  font-size: 0.9rem;
  color: #555;
}
.shop-address {
  font-size: 0.85rem;
  color: #777;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 20px;
}
.page-btn {
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #3498DB;
  border-radius: 5px;
  background: #fff;
  color: #3498DB;
  cursor: pointer;
}
.page-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.page-info {
  margin: 0 10px;
}
/* 検索結果なしメッセージ */
.no-result {
  text-align: center;
  color: #888;
  margin-top: 20px;
  font-size: 1rem;
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
  .shop-items {
    grid-template-columns: 1fr;
  }
  #shop-search {
    width: 95%;
  }
}
/* 店舗向け案内 */
#shop-info {
  margin-bottom: 40px;
  text-align: center;
}



/* ============================
   子ページ-3
   ============================ */
/* ============================
   店舗の方へ Business
   ============================ */
:root {
  --primary-color: #3498DB;
  --primary-light: #5DADE2;
  --primary-dark: #2874A6;
  --accent-pink: #FFB6C1;
  --accent-pink-light: #FFE5EC;
  --text-dark: #2C3E50;
  --text-gray: #5D6D7E;
  --bg-light: #F8FBFD;
  --bg-white: #FFFFFF;
  --border-color: #E8F1F7;
  --shadow-sm: 0 2px 8px rgba(52, 152, 219, 0.08);
  --shadow-md: 0 4px 16px rgba(52, 152, 219, 0.12);
  --shadow-lg: 0 8px 24px rgba(52, 152, 219, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
}
.business {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
.business-notice {
  font-size: 1.2rem;
  padding: 15px 0;
}
.notice_1 {
  padding: 0 0 5px;
}
.business-bottom {
  font-size: 1rem;
  color: red;
}
.shop-section-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* 商品券の特徴 */
.features-section-new {
  padding: var(--spacing-xl) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.features-section-new::before {
  content: '🌸';
  position: absolute;
  font-size: 300px;
  opacity: 0.02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.section-header-new {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.section-title-new {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card-new {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card-new.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.feature-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-pink);
}
.feature-icon-new {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
  background: var(--accent-pink-light);
  transform: scale(1.1);
}
.feature-icon-new img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.feature-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}
.feature-desc-new {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}
/* 換金の流れ */
.flow-section-new {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}
.flow-container-new {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}
.flow-step-new {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  width: 180px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.flow-step-new.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.flow-step-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}
.step-number-new {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}
.step-icon-new {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}
.step-title-new {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}
.step-desc-new {
  font-size: 0.8em;
  color: var(--text-gray);
  line-height: 1.6;
}
.flow-arrow-new {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  flex-shrink: 0;
}
.flow-arrow-new svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}
/* CTAボタン（新） */
.cta-wrapper-new {
  text-align: center;
  margin-top: var(--spacing-lg);
}
.cta-button-new {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.cta-button-new:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .feature-card-new {
  }
  .flow-container-new {
    flex-direction: column;
    align-items: center;
  }
  .flow-step-new {
    width: 100%;
    max-width: 320px;
  }
  .flow-arrow-new {
    transform: rotate(90deg);
    margin: var(--spacing-sm) 0;
  }
  .features-grid-new {
    grid-template-columns: 1fr;
  }
  .section-title-new {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .section-title-new {
    font-size: 1.375rem;
  }
  .flow-step-new {
    padding: var(--spacing-md);
  }
}
/* アニメーション遅延 */
.flow-step-new:nth-child(1), .feature-card-new:nth-child(1) { transition: opacity 0.8s 0.1s, transform 0.8s 0.1s, box-shadow 0.3s; }
.flow-step-new:nth-child(3), .feature-card-new:nth-child(2) { transition: opacity 0.8s 0.2s, transform 0.8s 0.2s, box-shadow 0.3s; }
.flow-step-new:nth-child(5), .feature-card-new:nth-child(3) { transition: opacity 0.8s 0.3s, transform 0.8s 0.3s, box-shadow 0.3s; }
.flow-step-new:nth-child(7), .feature-card-new:nth-child(4) { transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, box-shadow 0.3s; }
.flow-step-new:nth-child(9), .feature-card-new:nth-child(5) { transition: opacity 0.8s 0.5s, transform 0.8s 0.5s, box-shadow 0.3s; }

.flow-step-new.animate-in:hover,
.feature-card-new.animate-in:hover {
  transition: transform 0.3s 0s, box-shadow 0.3s 0s;
  transform: translateY(-10px);
}

/* 申込期間案内 */
.application-period {
  background: #fff;
  border: 3px solid #fc84a0;
  border-radius: 12px;
  padding: 24px 30px;
  margin: 30px auto 90px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(252, 132, 160, 0.2);
}
.period-emphasis {
  font-size: 1.3rem;
  font-weight: bold;
  color: #E91E63;
  margin-bottom: 12px;
  line-height: 1.6;
}
.period-detail {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4A4A4A;
  margin-bottom: 8px;
  line-height: 1.6;
}
.period-note {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .application-period {
    padding: 20px 16px;
    margin: 20px 16px 70px;
  }
  .period-emphasis {
    font-size: 1.1rem;
  }
  .period-detail {
    font-size: 1rem;
  }
  .period-note {
    font-size: 0.88rem;
  }
}

/* 申込から換金までの流れ */
.shop-flow-container {
  display: flex;
  align-items: stretch;     
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.shop-flow-step {
  background: #fff;
  border: 2px dotted #3498DB;
  border-radius: 16px;
  padding: 24px 16px 10px;
  width: 150px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.shop-step-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 34px;
  height: 34px;
  background: #3498DB;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}
.shop-step-label {
  font-weight: bold;
  font-size: 1rem;
  color: #3450db;
  margin-bottom: 8px;
  line-height: 1.4;
}
.shop-step-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
}
.shop-flow-arrow {
  color: #3498DB;
  font-size: 1.2rem;
  display: flex;
  align-items: center;   
  padding: 0 6px;
  margin-top: 0;           
  flex-shrink: 0;
  align-self: center;      
}

/* 申込要件 */
.requirement {
  padding: 40px 0;
}
.application-requirements {
  background-color: 
  border-radius: 8px;
  padding: 28px 32px;
  margin: 30px auto 100px;
  max-width: 800px;
  box-shadow: 0 3px 12px rgba(52, 152, 219, 0.1);
}
.requirements-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8f4f8;
  display: flex;
  align-items: center;
}
.requirements-intro {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 20px 0;
  line-height: 1.7;
  background: #f8fbfd;
  padding: 12px 16px;
  border-radius: 6px;
}
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.requirements-list li {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 8px;
  position: relative;
}
.requirements-list li:last-child {
  margin-bottom: 0;
}
.req-number {
  font-weight: 600;
  margin-right: 6px;
  color: #4A4A4A;
}
 
@media (max-width: 768px) {
  .application-period {
    padding: 20px 16px;
    margin: 20px 16px;
  }
  .period-emphasis {
    font-size: 1.1rem;
  }
  .period-detail {
    font-size: 1rem;
  }
  .period-note {
    font-size: 0.88rem;
  }
  .requirement {
    padding: 25px; 
  }
  .application-requirements {
    padding: 20px 18px;
    margin: 50px 16px 70px;
  }
  .requirements-title {
    font-size: 1.2rem;
  }
  .requirements-intro {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
  .requirements-list li {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .sub-text, .app-notice {
    padding: 25px; 
  }
}

/* 各セクション統一ベース */
.section-base {
  padding: 60px 0;
  margin-left: 30px;
  margin-right: 30px;
}

/*アプリ */
.download {
  padding: 60px 0;
  text-align: center;
}
.app-card {
  background-color: 
}
.install-app {
  max-width: 820px;
  margin: 0 auto;
}
.sub-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 40px; 
  margin: 40px 0 70px;
}
.app-box {
  text-align: center;
  width: 200px;
}
.store-badge {
  height: 50px;
  width: 150px;
}
.qr-code {
  width: 150px;
  height: 150px;
}
.app-notice {
  font-size: 0.8em;
  color: #666;
  text-align: center;
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
  .button-qr {
    flex-direction: column;
    gap: 10px;
  }
}

/* 操作マニュアル */
.shop-manual-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.shop-manual-card {
  flex: 1 1 360px;
  background: #fff;
  border: 1px solid #3498DB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.manual-card-header {
  background: #3498DB;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.manual-badge {
  font-size: 0.72rem;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.pdf-badge {
  background: #e74c3c;
  color: #fff;
}
.video-badge {
  background: #FFD93D;
  color: #4A4A4A;
}
.manual-card-title {
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
}
.manual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.manual-list li {
  border-bottom: 1px solid #e6f2fa;
}
.manual-list li:last-child {
  border-bottom: none;
}
.manual-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  text-decoration: none;
  color: #2A7AB0;
  font-size: 0.95rem;
  font-weight: bold;
  transition: background 0.2s;
}
.manual-link:hover {
  background: #f0f7ff;
  color: #1a5a90;
}
.manual-link-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .shop-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .shop-flow-step {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
  .shop-flow-arrow {
    transform: rotate(90deg);
    margin: 8px 0;        
  }
  .shop-manual-grid {
    padding: 32px;
  }
}

/* ============================
   子ページ-4
   ============================ */
/* ============================
  　加盟店募集について Business_2
   ============================ */
.agreement {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}
.agreement-section {
  max-width: 800px;
  margin: 60px auto;
}
.agreement-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
}
.agreement-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
}
.agreement-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 6px;
}

/* 規約ボックス */
.agreement-box {
  border: 1px solid #ccc;
  background: #fff;
  padding: 20px;
  height: 520px;
  overflow-y: scroll;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.agreement-box ul {
  padding-left: 20px;
}

/* チェックボックス */
.agreement-check {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f5f7;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}
.agreement-check input {
  width: 20px;
  height: 20px;
}

/* エラー */
.error {
  color: #d60000;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* 申請ボタン中央 */
.apply-button-area {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 100px;
}
.cta-button.disabled {
  background-color: #888;
  color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
  border: none;
}
.cta-button.active {
  background-color: #3498DB;
  color: #fff;
  pointer-events: auto;
}


/* ============================
   子ページ-5
   ============================ */
/* ==============================
   店舗登録申込フォーム Apply_business
   ============================== */
#apply_business {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px;
}

/*セクションカード*/
.section-card {
  background: #fff;
  border: 1px solid #3498DB;
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}
.section-header {
  background: #3498DB;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 24px;
  letter-spacing: 0.05em;
}
.section-body {
  padding: 32px 32px 16px;
}

/* フィールドグループ */
.field-group {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.field-label-col {
  width: 200px;
  flex-shrink: 0;
  padding-top: 10px;
}
.field-label {
  font-size: 0.95rem;
  font-weight: bold;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.field-input-col {
  flex: 1;
  min-width: 200px;
}
.privacy {
  margin-left: 30%;
  margin-bottom: 10px
}

/* バッジ */
.required-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: normal;
  white-space: nowrap;
}
.optional-badge {
  background: #999;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: normal;
  white-space: nowrap;
}

/* ヒントテキスト */
.hint-text {
  color: #888;
  font-size: 0.82rem;
  margin-top: 5px;
}

/* 入力フィールド*/
.field-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #4A4A4A;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.field-input:focus {
  border-color: #3498DB;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}
.field-input.error-input {
  border-color: #e74c3c;
  background: #fff5f5;
}
.field-input-sm {
  width: 160px;
}

/* セレクト */
select.field-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* 郵便番号行*/
.zip-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zip-row .field-input {
  width: 160px;
}
.zip-search-btn {
  background: #3498DB;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.zip-search-btn:hover {
  background: #2A7AB0;
}

/* ラジオ・チェック */
.radio-group,
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}
.radio-group label,
.check-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #4A4A4A;
  cursor: pointer;
}
.radio-group input[type="radio"],
.check-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3498DB;
}

/* エラーメッセージ*/
.error-msg {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 5px;
  display: none;
}
.error-msg.show {
  display: block;
}

/* 送信ボタン*/
.submit-area {
  text-align: center;
  margin: 40px 0 20px;
}
.submit-btn {
  background-color: #3498DB;
  color: #fff;
  border: none;
  padding: 16px 70px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.submit-btn:hover {
  background-color: #2A7AB0;
}

/* 送信完了画面 */
#complete-screen {
  display: none;
}
.complete-card {
  background: #fff;
  border: 1px solid #3498DB;
  border-radius: 12px;
  padding: 70px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.complete-icon {
  width: 64px;
  height: 64px;
  background: #3498DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.complete-icon svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.complete-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4A4A4A;
  margin-bottom: 20px;
}
.complete-divider {
  width: 60px;
  height: 3px;
  background: #3498DB;
  margin: 0 auto 28px;
  border-radius: 2px;
}
.complete-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 44px;
}

/* スマホ対応 */
@media (max-width: 640px) {
  .field-group {
    flex-direction: column;
    gap: 6px;
  }
  .field-label-col {
    width: 100%;
    padding-top: 0;
  }
  .privacy {
    margin-left: 20%;
  }
}

/* 確認画面 */
.confirm-list {
  width: 100%;
}
.confirm-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e8f0f7;
  gap: 24px;
}
.confirm-row:last-child {
  border-bottom: none;
}
.confirm-row dt {
  width: 200px;
  flex-shrink: 0;
  font-weight: bold;
  color: #3498DB;
  font-size: 0.95rem;
}
.confirm-row dd {
  flex: 1;
  font-size: 0.95rem;
  color: #4A4A4A;
  margin: 0;
  word-break: break-all;
}

/* 確認画面ボタン2つ並び */
.confirm-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.back-btn {
  background-color: #fff;
  color: #3498DB;
  border: 2px solid #3498DB;
}
.back-btn:hover {
  background-color: #f0f7ff;
}


@media (max-width: 640px) {
  .confirm-row {
    flex-direction: column;
    gap: 4px;
  }
  .confirm-row dt {
    width: 100%;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #4A4A4A !important;
  transition: background-color 9999s ease-out;
}


/* ============================
   子ページ-6
   ============================ */
/* ==============================
   お問い合わせ
   ============================== */

/* セクション全体 */
#contact-form {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* セクションカード */
.section-card {
  background: #fff;
  border: 1px solid #3498DB;
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}
.section-header {
  background: #3498DB;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 24px;
  letter-spacing: 0.05em;
}
.section-body {
  padding: 32px 32px 16px;
}

/* フィールドグループ */
.field-group {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.field-label-col {
  width: 200px;
  flex-shrink: 0;
  padding-top: 10px;
}
.field-label {
  font-size: 0.95rem;
  font-weight: bold;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.field-input-col {
  flex: 1;
  min-width: 200px;
}
.shop-name-group {
  flex: 1;
  min-width: 200px;
}

/* バッジ */
.required-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: normal;
  white-space: nowrap;
}
/* ヒントテキスト */
.hint-text {
  color: #888;
  font-size: 0.82rem;
  margin-top: 5px;
}
/* 入力フィールド */
.field-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #4A4A4A;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.field-input:focus {
  border-color: #3498DB;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}
.field-input.error-input {
  border-color: #e74c3c;
  background: #fff5f5;
}
/* テキストエリア */
textarea.field-input {
  height: 160px;
  resize: vertical;
  min-height: 160px;
  width: 100%;
  max-width: 100%;
}

/* ラジオボタン */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #4A4A4A;
  cursor: pointer;
}
.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #3498DB;
}

/* プライバシーポリシー */
.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: normal;
  cursor: pointer;
  padding-top: 8px;
}
.privacy-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #3498DB;
  flex-shrink: 0;
}
.privacy-label a {
  color: #3498DB;
  text-decoration: underline;
}

/* エラーメッセージ */
.error-msg {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 5px;
  display: none;
}
.error-msg.show {
  display: block;
}

/* 送信ボタン */
.submit-area {
  text-align: center;
  margin: 40px 0 20px;
}
.submit-btn {
  background-color: #3498DB;
  color: #fff;
  border: none;
  padding: 16px 70px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.submit-btn:hover {
  background-color: #2A7AB0;
}


/* スマホ対応 */
@media (max-width: 640px) {
  .field-group {
    flex-direction: column;
    gap: 6px;
  }
  .field-label-col {
    width: 100%;
    padding-top: 0;
  }
  .field-input-col {
    width: 100%;
  }
  .field-input {
    width: 100%;
  }
  .section-body {
    padding: 20px 16px 8px;
  }
 
  /* プライバシーポリシー：スマホ時はセンター */
  .field-group:has(.privacy-label) {
    align-items: center;
  }
  .field-group:has(.privacy-label) .field-label-col {
    display: none;
  }
  .field-group:has(.privacy-label) .field-input-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
 


/* ============================
   子ページ-7
   ============================ */
/* ==============================
   お問い合わせ・店舗登録　完了画面
   ============================== */
.complete-page {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.complete-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.complete-box {
  background: white;
  border: 2px solid #4A90E2;
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.complete-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #4A90E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.complete-icon svg {
  width: 50px;
  height: 50px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}
.complete-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 32px 0;
}
.complete-divider {
  width: 80px;
  height: 3px;
  background: #4A90E2;
  margin: 0 auto 32px;
}
.complete-message {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 40px 0;
}

.btn-home {
  display: inline-block;
  background: #4A90E2;
  color: white;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-home:hover {
  background: #357ABD;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
  .complete-box {
    padding: 40px 24px;
  }
  .complete-title {
    font-size: 20px;
  }
  .complete-message {
    font-size: 14px;
  }
}

/* ============================
   子ページ-8
   ============================ */
/* ==============================
   エラーコード
   ============================== */
.error-page {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9ff;
  }
.error-box {
    background: #fff;
    border: 1px solid #3498DB;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.error-code {
    font-size: 5rem;
    font-weight: bold;
    color: #3498DB;
    line-height: 1;
    margin-bottom: 10px;
}
.error-code img {
    width: 90px;
    height: 90px;
}
.error-label {
    display: inline-block;
    background-color: #FFE366;
    color: #4A4A4A;
    font-weight: bold;
    font-size: 1rem;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.error-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4A4A4A;
}
.error-message {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}
.divider{
    width: 60px;
    height: 3px;
    background: #3498DB;
    margin: 0 auto 30px;
    border-radius: 2px;
}



/* ============================
   スマホ小サイズ対応（480px）
   ============================ */
@media screen and (max-width: 480px) {
  /* ヘッダー */
  .header-inner {
    padding: 14px 20px;
  }
  .left {
    font-size: 0.95rem;
    margin-right: 80px;
  }
  .menu-button {
    right: 16px;
    padding: 4px 9px;
    border-width: 1px;
    border-radius: 4px;
  }
  .menu-text {
    font-size: 0.7rem;
    margin-right: 6px;
  }
  .menu-icon {
    height: 10px;
  }
  .menu-icon span {
    height: 1.5px;
  }

  /* Hero */
  .hero {
    padding: 110px 28px 20px;
    gap: 24px;
  }
  .hero-content {
    margin-left: 0;
    margin-top: 16px;
  }
  .hero-text .upper {
    font-size: 0.85rem;
  }
  .hero-text h1 {
    font-size: 2.4rem;
    letter-spacing: -0.05em;
    line-height: 1.25;
  }
  .date-info {
    margin-top: 4px;
    padding: 3px 8px;
  }
  .date-label {
    font-size: 0.7rem;
  }
  .date-main {
    font-size: 0.9rem;
  }
  .date-number {
    font-size: 1.1rem;
  }
  .english-title {
    font-size: 1rem;
  }
  .english-date {
    font-size: 1rem;
  }
  .hero-image {
    margin-bottom: 80px;
    margin-top: 20px;
  }
  .hero-image img {
    width: 92%;
  }

  /* ボタン共通 */
  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  .button-container {
    margin-top: 80px;
    margin-bottom: 60px;
    gap: 20px;
  }
  /* 概要 */
  .set-content {
    flex-direction: column; 
    align-items: center;
  }
  .images-left {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row; 
    justify-content: center;
  }
  .images-left figure {
    width: 45%; 
  }
  .text-right {
    text-align: center; 
  }


  /* 店舗の方へ */
  .shop-section-wrap {
    gap: 50px;
    padding: 10px 54px;
  }
  .shop-sub-title {
    font-size: 1.1rem;
  }
  .shop-flow-step {
    width: 100%;
    max-width: 100%;
    padding: 28px 20px 16px;
  }
  .shop-flow-arrow {
    margin: 10px 0;
  }
  .shop-manual-grid {
    gap: 24px;
  }
  .shop-manual-card {
    flex: 1 1 100%;
    
  }
  .manual-card-header {
    padding: 14px 20px;
    gap: 10px;
  }
  .manual-card-title {
    font-size: 0.9rem;
  }
  .manual-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  .manual-link {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

  /* お問い合わせ（セクション） */
  .contact-box {
    padding: 32px 24px;
  }
  .contact-text {
    font-size: 1.1rem;
  }
  .contact-info {
    font-size: 0.95rem;
  }
  .contact-section .note {
    margin-top: 36px;
    margin-bottom: 20px;
  }
  /* お問い合わせフォームへボタン（改行防止） */
  .contact-section .cta-button,
  .contact-section .cta-button.secondary {
    padding: 14px 22px;
    font-size: 0.95rem;
    white-space: nowrap;
    display: inline-block;
  }

  /* 共通セクション */
  .section-base {
    margin-left: 24px;
    margin-right: 24px;
    padding: 60px 0;
  }

  /* アプリ */
  .download {
    margin-left: 24px;
    margin-right: 24px;
    padding: 60px 0;
  }
  .sub-text {
    font-size: 1rem;
    margin-bottom: 44px;
  }
  .app-buttons {
    flex-direction: column;
    gap: 28px;
    margin: 40px 0 70px;
    align-items: center;
  }
  .app-box {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .app-box a {
    display: block;
    line-height: 0;
  }
  .app-box .qr-code {
    display: block;
    width: 150px;
    height: 150px;
  }
  .app-box .store-badge {
    display: block;
    width: 150px;
    height: 50px;
  }
  .app-notice {
    margin-top: 30px;
    padding: 0 8px;
  }

  /* フッター */
  .footer-bottom {
    font-size: 0.75rem;
    padding: 16px 16px;
  }

  /* FAQ */
  .faq {
    padding: 80px 24px;
  }
  .faq-category {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .faq-item {
    margin-bottom: 24px;
  }
  .faq-question {
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 18px 36px 18px 0;
    word-break: break-word;
  }
  .faq-question::after {
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
  }
  .faq-answer {
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 12px 4px 16px 0;
  }

  /* 店舗一覧 */
  #shop-list {
    padding: 40px 24px;
  }
  .section-title {
    font-size: 1.6rem;
    margin-top: 90px;
    margin-bottom: 36px;
  }
  .search-box {
    margin-bottom: 36px;
  }
  #shop-search {
    width: 100%;
    padding: 10px;
  }
  .filter {
    margin-bottom: 28px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.88rem;
    margin: 6px 4px;
  }
  .shop-items {
    gap: 18px;
  }
  .shop-item {
    padding: 16px 20px;
  }
  .shop-name {
    font-size: 1.05rem;
  }
  .page-btn {
    padding: 7px 14px;
    font-size: 0.9rem;
  }
  .pagination {
    margin-top: 28px;
  }

  /* 店舗 加盟店募集 */
  .business {
    padding: 40px 24px;
  }
  .business-notice {
    font-size: 1.1rem;
    padding: 16px auto ;
  }
  .agreement {
    padding: 40px 24px;
  }
  .agreement-section {
    margin: 56px auto;
  }
  .agreement-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .agreement-header {
    margin-bottom: 20px;
  }
  .agreement-box {
    padding: 20px;
    height: 460px;
    margin-bottom: 24px;
  }
  .agreement-check {
    padding: 16px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .apply-button-area {
    margin-top: 56px;
    margin-bottom: 90px;
  }

  /* 店舗登録申込フォーム */
  #apply_business {
    padding: 40px 24px;
  }
  .section-card {
    margin-bottom: 28px;
  }
  .section-header {
    padding: 14px 22px;
    font-size: 1rem;
  }
  .section-body {
    padding: 26px 22px 14px;
  }
  .field-group {
    margin-bottom: 24px;
    gap: 8px;
  }
  .field-label {
    font-size: 0.95rem;
  }
  .field-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .field-input-sm {
    width: 100%;
  }
  .zip-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .zip-row .field-input {
    width: 140px;
  }
  .zip-search-btn {
    padding: 11px 18px;
    font-size: 0.88rem;
  }
  .radio-group,
  .check-group {
    gap: 16px;
    padding-top: 10px;
  }
  .privacy {
    margin-left: 0;
    margin-bottom: 16px;
    text-align: center;
  }
  .submit-area {
    margin: 44px 0 24px;
  }
  .submit-btn {
    padding: 16px 44px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
  .confirm-row {
    padding: 14px 0;
    gap: 10px;
  }
  .confirm-row dt {
    font-size: 0.95rem;
  }
  .confirm-row dd {
    font-size: 0.95rem;
  }
  .confirm-btns {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* 送信完了 */
  .complete-card {
    padding: 50px 28px;
  }
  .complete-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .complete-text {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  /* お問い合わせフォーム */
  #contact-form {
    padding: 40px 24px;
  }
  textarea.field-input {
    height: 160px;
    min-height: 160px;
  }

  /* エラーページ */
  .error-box {
    padding: 52px 28px;
  }
  .error-code {
    font-size: 3.8rem;
    margin-bottom: 16px;
  }
  .error-label {
    font-size: 0.9rem;
    padding: 7px 20px;
    margin-bottom: 28px;
  }
  .error-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  .error-message {
    font-size: 0.92rem;
  }
}