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

:root {
  --primary-blue: #1e4d8b;
  --primary-red: #d32f2f;
  --accent-yellow: #ffd700;
  --bg-cream: #fff9f0;
  --bg-pink: #ffe8e8;
  --text-dark: #333;
  --text-gray: #666;
  --border-gray: #ddd;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ヘッダー */
.main-header {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.main-header .wrapper { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 30px; 
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.company-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.company-history {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  margin: 0;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.header-contact-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  margin: 0;
}

.header-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-red);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.header-phone:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* ヒーローセクション */
.hero-section {
  background: linear-gradient(135deg, #ee5a52 0%, #e84545 100%);
  padding: 50px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--text-dark);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 30px;
  border: 2px solid #e6be00;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.hero-discount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.hero-sale-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-sale-label {
  background: var(--primary-red);
  color: white;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 4px;
}

.hero-sale-dates {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-red);
}

.hero-sale-dates small {
  font-size: 0.8em;
}

/* セール期間セクション（削除予定） */
.sale-period-section {
  background: white;
  padding: 20px 0;
  border-bottom: 3px solid var(--border-gray);
}

.sale-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
  padding: 15px 30px;
  border: 3px solid var(--primary-red);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sale-period { display: flex; align-items: center; gap: 15px; }

.sale-label {
  background: var(--primary-red);
  color: white;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 4px;
}

.sale-dates {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-red);
}

.sale-dates small { font-size: 0.8em; }

.phone-reservation { display: flex; align-items: center; gap: 10px; }

.phone-label { font-weight: 700; color: var(--text-dark); }

.phone-number {
  background: var(--primary-blue);
  color: white;
  padding: 10px 25px;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.phone-number:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 営業開始お知らせ */
.business-start { background: linear-gradient(180deg, #ffe5e5 0%, #fff1f1 100%); padding: 15px 0; }
.business-notice { text-align: center; }
.notice-text { color: var(--primary-red); font-size: 1.8rem; font-weight: 900; margin: 0; }
.notice-day { background: white; color: var(--primary-red); padding: 2px 12px; border-radius: 50%; margin: 0 5px; font-size: 1.2em; border: 2px solid var(--primary-red); }

/* 常滑市入学のお知らせ */
.tokoname-notice { padding: 50px 0; background: linear-gradient(180deg, #fff1f1 0%, #ffffff 100%); }
.notice-header { text-align: center; margin-bottom: 30px; position: relative; }
.notice-badge { 
  background: linear-gradient(135deg, #ffb6c1, #ff69b4); 
  color: white; 
  font-size: 2rem; 
  font-weight: 900; 
  padding: 15px 30px; 
  border-radius: 50px; 
  display: inline-block; 
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}
.notice-title { font-size: 2.2rem; font-weight: 900; color: var(--primary-blue); display: inline-block; }
.notice-content { 
  background: white; 
  padding: 40px; 
  border-radius: 16px; 
  border: 3px solid var(--primary-blue); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  line-height: 2;
  font-size: 1.1rem;
}
.notice-year { font-weight: 800; color: var(--primary-red); margin-bottom: 15px; }
.signature { text-align: right; margin-top: 20px; font-weight: 700; }

/* 納品期限 */
.deadline-notice { padding: 50px 0; background: linear-gradient(180deg, #ffffff 0%, #fff6ec 100%); }
.deadline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.deadline-card { 
  background: white; 
  border: 4px solid #8b7355; 
  border-radius: 16px; 
  padding: 40px 30px; 
  text-align: center; 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  position: relative;
}
.deadline-number {
  position: absolute;
  top: -20px;
  left: 30px;
  background: linear-gradient(135deg, #8b7355, #6b5545);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
}
.deadline-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin: 20px 0 25px; line-height: 1.6; }
.deadline-date { 
  font-size: 2rem; 
  font-weight: 900; 
  color: var(--primary-red); 
  margin: 20px 0;
  background: var(--bg-pink);
  padding: 15px 20px;
  border-radius: 8px;
  border: 3px solid var(--primary-red);
}
.deadline-action { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }

/* ご予約特典 */
.reservation-bonus { 
  padding: 30px 0; 
  background: linear-gradient(180deg, #fff6ec 0%, #ffeef6 100%);
}

.bonus-simple {
  background: white;
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  padding: 20px 30px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bonus-small-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.bonus-content-modest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-small-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.8;
}

.bonus-small-text strong {
  color: var(--primary-red);
  font-weight: 800;
}

.bonus-tissue-small {
  max-width: 100px;
  border-radius: 6px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reservation-note {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reservation-note small {
  font-size: 0.9em;
  font-weight: 900;
}

/* スタッフセクション */
.staff-section { padding: 40px 0; background: white; }

.staff-message {
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  padding: 20px 30px;
  border-radius: 12px;
  border: 3px solid #e6be00;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.staff-content-centered { 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 40px; 
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.staff-photo-box {
  text-align: center;
}

.staff-photo-square {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--border-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}

.staff-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-top: 15px;
  padding: 10px;
  background: var(--bg-cream);
  border-radius: 8px;
}

.fitting-info-large { 
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fitting-note-large { 
  font-size: 1.4rem; 
  font-weight: 700; 
  color: var(--primary-red); 
  line-height: 2;
  background: var(--bg-cream);
  padding: 25px;
  border-radius: 12px;
  border: 3px solid var(--primary-red);
  text-align: center;
}

.staff-badges-inline { 
  display: flex; 
  flex-direction: column;
  gap: 15px;
}

.staff-badges { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.staff-badge {
  background: linear-gradient(135deg, #ffb6c1, #ff69b4);
  color: white;
  padding: 20px 35px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--primary-red);
}

.emphasis-large {
  font-size: 4rem;
  color: var(--primary-red);
  display: inline-block;
  margin: 0 10px;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

.red-bg .emphasis-large {
  font-size: 5rem;
  color: var(--accent-yellow);
  font-weight: 900;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin: 0 5px;
  display: inline-block;
  line-height: 1;
}

.red-bg-compact .emphasis-large {
  font-size: 2.2em;
  color: var(--accent-yellow);
  font-weight: 900;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin: 0 0.15em;
  display: inline;
  line-height: inherit;
  vertical-align: baseline;
}

/* 8大サービス＆プレゼント */
.five-presents {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffeef6 0%, #fff7f1 100%);
}

.five-presents-header {
  text-align: center;
  margin-bottom: 40px;
}

.sarani-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e91e63, #d81b60);
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 50px;
  border-radius: 50px;
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.red-bg-compact {
  background: linear-gradient(135deg, var(--primary-red), #b71c1c);
  color: white;
  padding: 22px 50px 25px;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  max-width: fit-content;
  line-height: 1.2;
}

.red-bg {
  background: linear-gradient(135deg, var(--primary-red), #b71c1c);
  color: white;
  padding: 25px 40px;
  border-radius: 12px;
  margin: 0 auto 40px;
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.title-line {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.plus-icon { 
  font-size: 3rem;
  font-weight: 900;
  display: block;
  margin: 5px 0;
  line-height: 1;
}

.five-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
  grid-auto-flow: dense;
}

.bonus-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  align-self: start;
}

.bonus-item.wide {
  /* 3列以上のグリッドでのみ2列分にする */
  grid-column: span 1;
}

@media (min-width: 1201px) {
  .bonus-item.wide {
    grid-column: span 2;
  }
}

.bonus-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.bonus-item.no-number {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
  border: 2px solid #ffcccc;
}

.bonus-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.bonus-img.embroidery-machine {
  max-width: 350px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bonus-content { 
  display: flex; 
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
}

.bonus-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.4;
  margin-bottom: 5px;
}

.bonus-service { 
  font-size: 1rem; 
  font-weight: 600; 
  color: var(--primary-red); 
  line-height: 1.6; 
}

.bonus-note {
  background: var(--accent-yellow);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e6be00;
  display: inline-block;
  align-self: flex-start;
  line-height: 1.5;
}

.bonus-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  display: block;
  margin: 0;
  padding: 15px;
}
.bonus-img.full-bleed {
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.bonus-img.portrait {
  aspect-ratio: auto;
  height: auto;
  padding: 0;
  background: transparent;
}
.bonus-img.large-image {
  max-width: 100%;
  padding: 12px;
}

/* Bonus images */
.bonus-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  display: block;
  margin: 0;
  padding: 15px;
}
.bonus-img.full-bleed {
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.bonus-img.portrait {
  aspect-ratio: auto;
  height: auto;
  padding: 0;
  background: transparent;
}
.bonus-img.large-image {
  max-width: 100%;
  padding: 12px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bonus .hero-photo {
  border-radius: 12px 12px 0 0;
}

.bonus-details-list {
  margin: 18px 0 8px;
  padding-left: 26px;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  list-style: disc;
  list-style-position: outside;
}
.bonus-details-list li { margin-bottom: 6px; }
.emblem-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}
.emblem-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: white;
  border: 3px solid var(--border-gray);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  padding: 10px;
}
.bonus-images-small { 
  margin-top: 10px; 
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.bonus-images-small img { 
  max-width: 140px; 
  max-height: 140px;
  object-fit: contain;
  margin: 0;
  border-radius: 8px; 
  border: 3px solid var(--border-gray);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.gym-set-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 30px 20px;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}
.gym-set-img {
  width: clamp(220px, 80%, 320px);
  object-fit: contain;
  border-radius: 14px;
  border: 3px solid var(--border-gray);
  background: white;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bonus-img.snack {
  aspect-ratio: 5 / 4;
  padding: 12px 18px;
  background: #fff8e6;
  border-bottom: 2px solid #e0e0e0;
  object-fit: contain;
  object-position: center bottom;
}

.lottery-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 30px 20px;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}

.lottery-img {
  width: clamp(220px, 80%, 320px);
  object-fit: contain;
  border-radius: 14px;
  border: 3px solid var(--border-gray);
  background: white;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.small-note { font-size: 0.85rem; line-height: 1.3; color: var(--text-gray); }

@media (min-width: 992px) {
  .gym-set-images {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .gym-set-img {
    width: 45%;
    max-width: 260px;
  }
  .lottery-images {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .lottery-img {
    width: 45%;
    max-width: 260px;
  }
}

@media (max-width: 640px) {
  .bonus-img {
    padding: 6px;
    background: transparent;
    border-bottom: none;
    aspect-ratio: auto;
  }
  .bonus-img.large-image {
    padding: 0;
    width: 100%;
    max-width: none;
  }
  .bonus-img.snack {
    padding: 6px;
    background: #fff8e6;
    border-bottom: 2px solid #e0e0e0;
    aspect-ratio: auto;
  }
  .bonus-img.full-bleed {
    padding: 0;
  }
}

/* 通学カバンに名前セクション(②) - 大きく表示 */
.bag-name-visual {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  padding: 20px;
  margin: 0;
}

.bag-image-large {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 10px;
}

.bag-img-large {
  width: 280px;
  height: auto;
  object-fit: contain;
}
.arrow-large {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
  flex-shrink: 0;
  margin: 10px;
}

.arrow-down {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-red);
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  margin: 8px 0;
}

.name-options-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 280px;
  margin: 10px;
}

.name-option-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid #ddd;
  width: 100%;
  margin: 8px 0;
}

.pen-img-large {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.embroidery-samples-large {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.embroidery-img-large {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
}

.embroidery-img-large-single {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.option-label-large {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  text-align: center;
}

/* ネームタグサンプル（①番） */
.name-tag-samples {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  padding: 0;
  margin: 0;
}

.name-tag-img {
  max-width: 200px;
  max-height: 70px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.name-tag-img-single {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 体操服画像 */
.gym-clothes-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  background: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
  padding: 20px;
  margin: 0;
}

.gym-img {
  width: 200px;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  margin: 15px 20px;
}

/* 体操服ネーム刺繍画像 */
.gym-visual-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  background: white;
  border-bottom: 2px solid #e0e0e0;
  padding: 15px;
  align-items: center;
  justify-content: center;
}

.press-machine-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
}

.press-machine-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gym-clothes-images-embroidery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
}

.gym-embroidery-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-before { text-decoration: line-through; color: var(--text-gray); font-size: 0.9em; }
.price-after { font-size: 1.8rem; font-weight: 900; color: var(--primary-red); display: inline-block; margin: 0 5px; }

.embroidery-machine-section {
  margin-top: 40px;
  background: var(--bg-pink);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #ffcccc;
  text-align: center;
}

.embroidery-machine-img {
  max-width: 400px;
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.embroidery-machine-section .bottom-message {
  background: transparent;
  padding: 0;
  border: none;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.bottom-message {
  background: var(--bg-pink);
  padding: 15px 30px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #ffcccc;
}

/* 3つの案内セクション */
.three-info-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff7f1 0%, #eef4ff 100%);
}

/* スタッフ歓迎セクション */
.welcome-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 16px;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 40px;
}

.welcome-image,
.welcome-text {
  flex: 1;
}

.welcome-photo-frame {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(121, 85, 72, 0.15) 0 12px, rgba(121, 85, 72, 0.05) 12px 24px),
    linear-gradient(125deg, #d7b18a 0%, #b48456 50%, #8c6239 100%);
  border: 6px solid #6f4f28;
  border-radius: 20px;
  padding: 20px;
  box-shadow:
    inset 0 0 0 6px rgba(255, 245, 235, 0.6),
    0 10px 24px rgba(79, 45, 20, 0.2);
}

.welcome-staff-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  filter: saturate(1.05);
}

.welcome-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welcome-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffb74d, #ff9800);
  color: white;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.welcome-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.4;
}

.welcome-message {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.8;
}

.welcome-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.welcome-list li {
  position: relative;
}

.welcome-list li::marker {
  color: var(--primary-red);
  font-weight: 900;
}

.three-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.info-header {
  padding: 20px;
  text-align: center;
  color: white;
  font-weight: 900;
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: visible;
}

.info-header h3 {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.3;
}

.pink-header {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.blue-header {
  background: linear-gradient(135deg, #4dabf7, #1e4d8b);
}

.yellow-header {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: var(--text-dark);
  position: relative;
  overflow: visible;
}

.sale-badge {
  position: absolute;
  top: -12px;
  right: -5px;
  background: var(--primary-red);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 10;
}

.sale-badge-inline {
  background: var(--primary-red);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  display: inline-block;
}

.info-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ご予約特典カード */
.reservation-instruction {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  font-weight: 700;
  color: #d81b60;
  text-align: center;
  padding: 12px 15px;
  border: 2px dashed #ff69b4;
  border-radius: 8px;
  background: #fffbfc;
}

.tissue-present {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  padding: 15px;
  background: #fff5f5;
  border-radius: 8px;
}

.tissue-img {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}

.tissue-text {
  font-size: 1.15rem;
  color: var(--primary-red);
  margin: 0;
  line-height: 1.5;
}

.tissue-text strong {
  font-weight: 900;
  display: block;
}

/* 女性スタッフカード */
.fitting-img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 15px;
  border-radius: 8px;
}

.fitting-note {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
}

/* ブレザーカード */
.blazer-subtitle {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0;
  line-height: 1.1;
}

.blazer-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.blazer-price {
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 2px solid #e0e0e0;
}

.blazer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.feature-badge {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
}

.price-large {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-red);
  margin: 0;
  line-height: 1.2;
}

.price-suffix {
  font-size: 1.2rem;
  margin-left: 5px;
}

.price-tax-small {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.2;
}

/* 制品情報 */
.product-info { padding: 50px 0; background: var(--accent-yellow); }

.product-box {
  background: white;
  border: 5px solid var(--primary-blue);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-title { font-size: 2rem; font-weight: 900; color: var(--primary-blue); margin-bottom: 20px; line-height: 1.5; }
.material-ratio { font-size: 1.3rem; display: block; margin-top: 10px; }
.product-features-list { display: flex; justify-content: center; gap: 30px; margin: 25px 0; flex-wrap: wrap; }

.feature-item {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.material-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-red);
  margin: 25px 0;
  padding: 15px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 8px;
  border: 3px solid #ff6f00;
}

.price-display {
  background: linear-gradient(135deg, var(--bg-pink), #ffcccc);
  padding: 25px;
  border-radius: 12px;
  border: 4px solid var(--primary-red);
  margin-top: 25px;
}

.price-label { font-size: 1.5rem; font-weight: 700; display: block; margin-bottom: 10px; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--primary-red); display: block; margin-bottom: 10px; }
.price-tax { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); display: block; }

/* 指定店情報 */
.designated-stores { padding: 30px 0; background: white; border-top: 3px solid var(--primary-blue); border-bottom: 3px solid var(--primary-blue); }
.stores-title { font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); text-align: center; margin-bottom: 20px; }
.stores-list { display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; font-size: 1.2rem; font-weight: 700; }
.store-name { color: var(--text-dark); }
.designated-mark { color: var(--primary-red); font-weight: 900; font-size: 1.3rem; }

/* お支払い方法 */
.payment { 
  padding: 30px 0; 
  background: white;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.payment-simple {
  text-align: center;
  padding: 20px;
}

.payment-text { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--text-dark);
  line-height: 1.8;
}

/* 店舗情報セクション（統合） */
.store-info-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-blue);
}

/* 指定店情報（コンパクト） */
.designated-stores-compact {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stores-list-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.store-item {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
}

.designated-badge {
  background: var(--primary-red);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 900;
}

/* お支払い方法（コンパクト） */
.payment-compact {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-methods {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* 店舗詳細ボックス */
.store-info-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 4px solid var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-blue);
}

.store-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin: 0 0 10px 0;
}

.store-subtitle-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.store-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.store-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 2px dashed #e0e0e0;
  align-items: center;
}

.contact-icon {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 1rem;
}

.contact-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

a.phone-highlight {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-red);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}

a.phone-highlight:hover {
  opacity: 0.8;
}

.phone-highlight {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-red);
  text-decoration: none;
  cursor: pointer;
}

.phone-highlight:hover {
  opacity: 0.8;
}

.contact-text a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.store-map-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-box {
  width: 100%;
  background: #fff;
  border: 3px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.map-label {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin: 0;
  text-align: center;
}

.parking-info {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-red);
  margin: 0;
  text-align: center;
}

.store-footer-info {
  text-align: center;
  padding-top: 20px;
  border-top: 3px solid #e0e0e0;
}

.product-origin {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--text-dark);
}

.associations-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin: 0;
}

/* 旧スタイル（削除予定だが念のため残す） */
.store-info { padding: 50px 0; background: linear-gradient(180deg, white 0%, var(--bg-cream) 100%); }

.store-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 4px solid var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-logo-area { text-align: center; margin-bottom: 30px; }
.store-logo { max-width: 300px; margin: 0 auto 15px; }
.store-name-text { 
  font-size: 2.5rem; 
  font-weight: 900; 
  color: var(--primary-blue); 
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}
.store-subtitle { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.store-contact { margin-bottom: 30px; }

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 2px dashed var(--border-gray);
  align-items: center;
}

.contact-label { font-weight: 800; color: var(--primary-blue); font-size: 1.1rem; }
.contact-value { font-weight: 600; font-size: 1.1rem; color: var(--text-dark); }
.phone-large { font-size: 1.8rem; font-weight: 900; color: var(--primary-red); }
.contact-value a { color: var(--primary-blue); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
.store-notes { font-size: 1rem; font-weight: 600; line-height: 1.8; }
.associations { color: var(--text-gray); margin-top: 10px; }
.store-map { display: flex; align-items: center; justify-content: center; }

.map-placeholder {
  width: 100%;
  height: 400px;
  background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 20px, #e0e0e0 20px, #e0e0e0 40px);
  border: 4px solid var(--border-gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.map-title { font-size: 2rem; font-weight: 900; color: var(--primary-blue); }
.map-parking { font-size: 1.5rem; font-weight: 800; color: var(--primary-red); }

/* フッター */
.footer { background: var(--primary-blue); color: white; padding: 30px 0; text-align: center; font-weight: 600; }

/* レスポンシブ */
@media (max-width: 1200px) {
  .store-layout { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: 1fr; }
  .staff-content { grid-template-columns: 1fr; }
  
  /* 5大プレゼントを1列に */
  .five-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  /* 3つの案内セクションを1列に */
  .three-info-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .info-card {
    max-width: 500px;
    width: 100%;
  }
  
  .bonus-item {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 20px;
    max-width: 500px;
    width: 100%;
  }
  
  /* ②③番のワイドを解除して1列幅に */
  .bonus-item.wide {
    grid-column: span 1;
  }
  
  .bonus-content { text-align: left; align-items: flex-start; }
  .name-tag-samples,
  .bag-image-large,
  .gym-clothes-images,
  .bonus-img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  /* ②番カバン - タブレットで縦型に */
  .bag-name-visual {
    flex-direction: column;
    gap: 0;
    padding: 20px 15px;
    aspect-ratio: 1 / 1.3;
    justify-content: center;
    align-items: center;
  }
  .bag-image-large {
    margin: 20px auto;
  }
  .bag-img-large {
    width: 280px;
    height: auto;
    max-height: 300px;
  }
  .arrow-large { 
    display: none;
  }
  .name-options-vertical {
    max-width: 350px;
    gap: 0;
    flex: 0 0 auto;
    margin: 10px auto;
  }
  .name-option-card {
    padding: 12px 18px;
    gap: 14px;
    white-space: nowrap;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    margin: 8px auto;
  }
  .pen-img-large {
    width: 60px;
    height: 60px;
  }
  .embroidery-img-large-single {
    width: 80px;
    height: 80px;
  }
  .option-label-large {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .arrow-down {
    font-size: 2rem;
    margin: 8px auto;
  }
  .welcome-content {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .welcome-photo-frame {
    margin: 0 auto;
    max-width: 420px;
  }
  .welcome-text {
    align-items: center;
  }
  .welcome-title {
    font-size: 2rem;
  }
  .welcome-list {
    padding-left: 0;
    list-style-position: inside;
    align-items: center;
  }
  
  /* ③番体操服 - タブレットで縦型に */
  .gym-visual-container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .press-machine-image {
    padding: 0;
    width: 100%;
  }
  
  .press-machine-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
  }
  
  .gym-clothes-images-embroidery {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    width: 100%;
  }
  
  .gym-embroidery-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
  }
  
  .gym-clothes-images {
    flex-direction: column;
    gap: 0;
    padding: 20px 15px;
    aspect-ratio: 1 / 1.5;
    justify-content: center;
    align-items: center;
  }
  .gym-img {
    width: 190px;
    height: auto;
    max-height: 200px;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .store-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-item {
    grid-template-columns: 80px 1fr;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .store-name {
    font-size: 2rem;
  }
  
  .main-title { font-size: 2rem; }
  .staff-content-centered { 
    grid-template-columns: 1fr; 
    gap: 25px;
  }
  .staff-photo-square {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  .presents-grid { grid-template-columns: 1fr; }
  .or-divider { width: 80px; height: 80px; font-size: 1.5rem; }
  .sale-info { flex-direction: column; }
  .emphasis-large { font-size: 3rem; }
  .red-bg .emphasis-large { font-size: 3.5rem; }
  .red-bg-compact .emphasis-large { font-size: 2.2em; }
  .sarani-badge {
    font-size: 1.2rem;
    padding: 10px 40px;
  }
  .red-bg-compact {
    font-size: 1.8rem;
    padding: 20px 30px 20px;
    line-height: 1.2;
  }
  .notice-title { font-size: 1.6rem; display: block; margin-top: 15px; }
  .notice-badge { display: block; margin: 0 auto 15px; }
  .bonus-content h3 { font-size: 1.3rem; }
  .bonus-service { font-size: 1rem; }
  .bonus-img {
    max-width: 180px;
    max-height: 180px;
  }
  .payment-text {
    font-size: 1.2rem;
  }
  .main-header .wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-right {
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-discount {
    font-size: 2rem;
  }
  .hero-sale-info {
    flex-direction: column;
    gap: 15px;
  }
  
  /* ②番と③番をスマホで縦型に */
  .bag-name-visual {
    aspect-ratio: 1 / 1.4;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  
  .bag-img-large {
    width: 180px;
    height: auto;
    max-height: none;
  }
  
  .arrow-large {
    transform: rotate(90deg);
    font-size: 2rem;
    margin: -8px 0;
  }
  
  .name-options-vertical {
    gap: 5px;
    width: 100%;
  }
  
  .name-option-card {
    padding: 8px 12px;
    gap: 8px;
    width: 100%;
    max-width: 280px;
  }
  
  .pen-img-large {
    width: 70px;
    height: 70px;
  }
  
  .embroidery-img-large-single {
    width: 100px;
    height: 100px;
  }
  
  .option-label-large {
    font-size: 1.05rem;
    font-weight: 800;
  }
  
  .arrow-down {
    font-size: 1.8rem;
    margin: -8px 0;
  }
  
  .gym-clothes-images {
    aspect-ratio: 1 / 1.4;
    flex-direction: column;
    gap: 10px;
    padding: 15px 10px;
  }
  .welcome-section {
    padding: 40px 0;
  }
  .welcome-content {
    padding: 25px;
    gap: 25px;
  }
  .welcome-photo-frame {
    max-width: 360px;
    padding: 16px;
  }
  .welcome-title {
    font-size: 1.8rem;
  }
  .welcome-message {
    font-size: 1rem;
  }
  .welcome-list {
    font-size: 1rem;
  }
  
  .gym-img {
    width: 220px;
    height: auto;
    max-height: none;
    margin: 10px auto;
  }
  
  .gym-visual-container {
    padding: 20px;
    gap: 20px;
  }
  
  .gym-clothes-images-embroidery {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  
  .gym-embroidery-img {
    width: 100%;
    height: auto;
    max-width: 320px;
    max-height: 320px;
    object-fit: contain;
  }
  
  .press-machine-image {
    padding: 0;
  }
  
  .press-machine-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .company-name { font-size: 1.2rem; }
  .header-phone { font-size: 1.3rem; }
  .hero-title { font-size: 2rem; }
  .hero-discount { font-size: 1.5rem; }
  .hero-sale-dates { font-size: 1.1rem; }
  .staff-photo-square {
    width: 240px;
    height: 240px;
  }
  .fitting-note-large {
    font-size: 1.2rem;
    padding: 20px;
  }
  .section-title { font-size: 1.8rem; }
  .title-line { font-size: 1.5rem; }
  .plus-icon { font-size: 2.2rem; }
  .sarani-badge {
    font-size: 1rem;
    padding: 8px 30px;
    margin-bottom: -10px;
  }
  .red-bg-compact {
    font-size: 1.4rem;
    padding: 16px 25px 18px;
    line-height: 1.2;
  }
  .red-bg-compact .emphasis-large {
    font-size: 2.2em;
  }
  .phone-number { font-size: 1.2rem; }
  .price-amount { font-size: 2rem; }
  .bonus-img {
    max-width: 150px;
    max-height: 150px;
  }
  
  .embroidery-machine-section {
    padding: 20px;
  }
  
  .embroidery-machine-img {
    max-width: 280px;
  }
  
  .embroidery-machine-section .bottom-message {
    font-size: 1rem;
  }
}
