/* ========================================
   ぎんカフェグループ LP - style.css
   ======================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Base ---- */
.section {
  padding: 80px 0;
}
.section-gray { background: #f7f7f7; }
.section-red {
  background: #D32F2F;
  color: #fff;
}
.section-dark {
  background: #1a1a1a;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D32F2F;
  margin-bottom: 8px;
}
.section-red .section-en,
.section-dark .section-en {
  color: rgba(255,255,255,0.7);
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-line {
  width: 50px;
  height: 3px;
  background: #D32F2F;
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-line.white { background: #fff; }
.section-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.btn-primary {
  background: #D32F2F;
  color: #fff;
  border: 2px solid #D32F2F;
}
.btn-primary:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}
.btn-white {
  background: #fff;
  color: #D32F2F;
  border: 2px solid #fff;
}
.btn-white:hover {
  background: #f5f5f5;
  opacity: 1;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-large {
  padding: 18px 56px;
  font-size: 1.1rem;
}

/* ---- Fade In ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER
   ======================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
}
.header-nav {
  flex: 1;
}
.header-nav ul {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.header-nav a {
  font-size: 0.97rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.03em;
  padding: 4px 0;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #D32F2F;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.header-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  flex-shrink: 0;
  padding: 12px 26px;
  background: #D32F2F;
  color: #fff;
  border-radius: 4px;
  font-size: 0.97rem;
  font-weight: 700;
  white-space: nowrap;
}
.header-cta:hover { background: #b71c1c; opacity: 1; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  height: calc(100vh + 80px);
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: 76px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 44%, rgba(255,214,0,0.26) 0, rgba(255,214,0,0) 26%),
    linear-gradient(110deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.72) 36%, rgba(211,47,47,0.2) 64%, rgba(0,0,0,0.08) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0,0,0,0.52), transparent);
}
.hero-impact-badge {
  position: absolute;
  top: 36px;
  right: 46px;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 250px;
  padding: 20px 24px;
  color: #fff;
  background: rgba(211,47,47,0.94);
  border: 2px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
  transform: rotate(2deg);
}
.hero-impact-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FFD600;
}
.hero-impact-badge strong {
  font-size: 1.25rem;
  line-height: 1.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 880px;
  color: #fff;
}
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #D32F2F;
}
.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero-title-accent {
  display: inline;
  color: #fff;
  background: linear-gradient(transparent 56%, rgba(211,47,47,0.95) 56%);
  padding: 0 0.08em;
}
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 170px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  font-weight: 900;
  color: #FFD600;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFD600;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  background: #FFD600;
  color: #1a1a1a;
  border-color: #FFD600;
  box-shadow: 0 12px 28px rgba(255,214,0,0.28);
}
.hero-buttons .btn-primary:hover {
  background: #fff176;
  border-color: #fff176;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Impact MV override ---- */
#hero {
  background: #050505;
}
#hero .hero-bg {
  transform: scale(1.06);
  filter: contrast(1.16) saturate(0.9) brightness(0.58);
  opacity: 0.66;
}
#hero .hero-overlay {
  background:
    radial-gradient(circle at 80% 16%, rgba(211,47,47,0.32) 0, rgba(211,47,47,0) 26%),
    linear-gradient(101deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.9) 38%, rgba(0,0,0,0.52) 67%, rgba(0,0,0,0.82) 100%);
}
#hero .hero-overlay::after {
  height: 42%;
  background: linear-gradient(to top, rgba(0,0,0,0.86), transparent);
}
.hero-grit {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(211,47,47,0.24) 44.3% 45.2%, transparent 45.5%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}
#hero .hero-impact-badge {
  top: 34px;
  right: 54px;
  z-index: 5;
  min-width: 230px;
  padding: 18px 24px;
  color: #fff;
  background: #D32F2F;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 10px 10px 0 rgba(255,255,255,0.9);
  transform: rotate(-2deg);
}
#hero .hero-impact-badge span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
}
#hero .hero-impact-badge strong {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.hero-side-copy {
  position: absolute;
  right: 34px;
  top: 230px;
  z-index: 5;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.75);
}
#hero .hero-content {
  z-index: 4;
  max-width: 760px;
}
#hero .hero-label {
  color: #D32F2F;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
#hero .hero-label::before {
  width: 44px;
  background: #D32F2F;
}
#hero .hero-title {
  font-size: clamp(2.7rem, 5.45vw, 5.35rem);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: 0;
  transform: rotate(-2deg);
  text-shadow: 0 8px 0 rgba(0,0,0,0.58), 0 18px 34px rgba(0,0,0,0.7);
}
.hero-title-white {
  display: inline-block;
  color: #fff;
  white-space: nowrap;
}
#hero .hero-title-accent {
  display: inline-block;
  color: #D32F2F;
  background: none;
  padding: 0;
  white-space: nowrap;
}
#hero .hero-title-accent::after {
  content: '';
  display: block;
  height: 10px;
  margin: 8px 6px 0 0;
  background: #FFE600;
  transform: skewX(-18deg);
  opacity: 1;
}
#hero .hero-title-accent-short::after {
  margin-right: 0;
  width: 100%;
}
.hero-lead {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  padding: 13px 18px;
  color: #fff;
  background: rgba(211,47,47,0.96);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  font-weight: 900;
  box-shadow: 8px 8px 0 rgba(211,47,47,0.95);
  transform: rotate(-1deg);
}
#hero .hero-sub {
  max-width: 660px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}
#hero .hero-stats {
  gap: 10px;
  margin-bottom: 28px;
}
#hero .hero-stat {
  width: min(100%, 230px);
  min-width: 190px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(211,47,47,0.55);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
#hero .stat-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  color: #fff;
  letter-spacing: 0;
}
#hero .stat-unit {
  font-size: 1.05rem;
  color: #D32F2F;
}
#hero .stat-label {
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0;
}
#hero .hero-buttons .btn-primary {
  background: #D32F2F;
  color: #fff;
  border-color: #D32F2F;
  box-shadow: 8px 8px 0 rgba(255,255,255,0.9);
}
#hero .hero-buttons .btn-primary:hover {
  background: #f05a5a;
  border-color: #f05a5a;
}
#hero .hero-buttons .btn-outline {
  border-color: #D32F2F;
  color: #D32F2F;
}
.hero-collage-panels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-panel {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55);
}
.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.9);
}
.hero-panel-main {
  right: 78px;
  bottom: 78px;
  width: min(39vw, 610px);
  aspect-ratio: 1.18 / 1;
  transform: rotate(1.5deg);
  border-width: 4px;
}
.hero-panel-sub {
  right: 250px;
  top: 118px;
  width: min(23vw, 360px);
  aspect-ratio: 1 / 0.86;
  transform: rotate(-4deg);
}

/* ========================================
   MV PHOTO SLIDER
   ======================================== */
.mv-photo-slider {
  position: relative;
  z-index: 4;
  padding: 28px 0 34px;
  margin-top: -80px;
  background: #fff;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.mv-slider-head {
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mv-slider-head span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D32F2F;
}
.mv-slider-head strong {
  font-size: 1.1rem;
  line-height: 1.5;
}
.mv-slider-track {
  width: 100%;
  overflow: hidden;
}
.mv-slider-row {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 16px;
  animation: mvSlider 34s linear infinite;
}
.mv-slider-row:hover {
  animation-play-state: paused;
}
.mv-slider-row img {
  width: clamp(150px, 18vw, 240px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}
@keyframes mvSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   CATCH COPY
   ======================================== */
.catch-section {
  background: #fff;
  padding: 64px 0 56px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.catch-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.catch-tag {
  display: inline-block;
  background: #D32F2F;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.catch-sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.catch-main {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 36px;
}
.catch-main strong {
  color: #D32F2F;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  display: block;
  margin-top: 4px;
}
.catch-btn {
  display: inline-block;
}

/* ========================================
   NEWS TICKER
   ======================================== */
.news-ticker {
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: #D32F2F;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.ticker-content {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   GREETING
   ======================================== */
.greeting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.greeting-text h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #D32F2F;
  margin-bottom: 24px;
  line-height: 1.6;
}
.greeting-text p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #444;
}
.greeting-sign {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.sign-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sign-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #333;
}
/* 右カラム */
.greeting-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.greeting-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.greeting-logo-wrap {
  margin-top: 20px;
  width: 80%;
  max-width: 320px;
}
.greeting-logo {
  width: 100%;
  height: auto;
}
/* 電話番号カード（ロゴの下） */
.greeting-contact-card {
  margin-top: 20px;
  width: 100%;
  background: #f9f9f9;
  border-left: 3px solid #D32F2F;
  border-radius: 4px;
  padding: 20px;
}
.contact-card-place {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.contact-card-address {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 12px;
}
.contact-card-tel {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #D32F2F;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.contact-card-tel i {
  font-size: 1.1rem;
  margin-right: 6px;
}
.contact-card-hours {
  font-size: 0.78rem;
  color: #888;
}

/* ========================================
   REASONS - 2カラム大型カード
   ======================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reason-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.reason-num-badge {
  flex-shrink: 0;
  width: 64px;
  background: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.reason-img {
  width: 160px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
.reason-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reason-body h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.5;
}
.reason-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
}

/* ========================================
   FLOW - 2段おしゃれレイアウト
   ======================================== */
.flow-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 16px 24px;
  text-align: center;
  margin: 0 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.flow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(211,47,47,0.15);
}
.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 11px solid #D32F2F;
  z-index: 2;
}
.flow-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: #D32F2F;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  background: #fff3f3;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
}
.flow-icon {
  font-size: 1.8rem;
  color: #D32F2F;
  margin-bottom: 10px;
}
.flow-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.flow-note {
  min-height: 3.8em;
  margin: 8px 0 8px;
  font-size: 0.72rem;
  line-height: 1.65;
  color: #777;
}
.flow-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: #bbb;
  letter-spacing: 0.12em;
}
.flow-arrow,
.flow-arrow-break,
.flow-arrow-rev {
  display: none;
}
.flow-divider {
  text-align: center;
  color: #D32F2F;
  font-size: 1.8rem;
  margin: -16px 0;
}


/* ========================================
   LINEUP
   ======================================== */
.lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lineup-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.lineup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.lineup-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #D32F2F;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 1;
}
.lineup-badge-gold {
  background: #b8860b;
}
.lineup-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 8px 0;
}
.lineup-body {
  padding: 28px;
}
.lineup-name {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.lineup-catch {
  font-size: 0.85rem;
  color: #D32F2F;
  font-weight: 700;
  margin-bottom: 20px;
}
.lineup-features {
  margin-bottom: 24px;
}
.lineup-features li {
  font-size: 0.85rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lineup-features li i {
  color: #D32F2F;
  margin-top: 3px;
  flex-shrink: 0;
}
.lineup-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fff8f8;
  border-radius: 6px;
}
.price-label {
  font-size: 0.8rem;
  color: #888;
}
.price-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #D32F2F;
}
.price-suffix {
  font-size: 0.85rem;
  color: #888;
}

/* ========================================
   LOAN
   ======================================== */
.loan-content {
  text-align: center;
}
.loan-catch {
  max-width: 1080px;
  margin: 0 auto 30px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.loan-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.loan-support-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 20px 22px;
  color: #333;
  background: #fff;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.loan-support-item i {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #D32F2F;
  background: #FFF3F3;
  border-radius: 50%;
  font-size: 1.15rem;
}
.loan-support-item span {
  font-weight: 800;
  line-height: 1.55;
}
.loan-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.loan-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loan-label {
  font-size: 0.9rem;
  opacity: 0.8;
}
.loan-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.loan-value strong {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.loan-value small {
  font-size: 1.5rem;
}
.loan-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  opacity: 0.6;
}
.loan-desc {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* ========================================
   RECOMMEND
   ======================================== */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recommend-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.25s;
}
.recommend-card:hover { transform: translateY(-4px); }
.recommend-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fafafa;
  padding: 8px;
  margin-bottom: 16px;
}
.recommend-card p {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 16px;
  color: #444;
}
.recommend-card strong { color: #D32F2F; }

/* ========================================
   VOICES
   ======================================== */
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.voice-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.video-wrap {
  position: relative;
  padding-top: 56.25%;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.voice-body {
  padding: 24px;
}
.voice-tag {
  display: inline-block;
  background: #fff3f3;
  color: #D32F2F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.voice-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.voice-comment {
  margin: 0 0 14px;
  padding: 14px 16px;
  background: #fff8f2;
  border-left: 4px solid #D32F2F;
  border-radius: 4px;
  font-size: 0.84rem;
  line-height: 1.75;
  color: #444;
}
.voice-name {
  font-size: 0.82rem;
  color: #888;
}

/* ========================================
   MENU
   ======================================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.menu-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.menu-body {
  padding: 24px;
}
.menu-body h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
}
.menu-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #D32F2F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-tel {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #D32F2F;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.82rem;
  color: #666;
  margin-top: 8px;
}
.contact-cta {
  background: linear-gradient(135deg, #D32F2F 0%, #b71c1c 100%);
  border-radius: 12px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.contact-cta h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-cta p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo p {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-info p {
  font-size: 0.82rem;
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-info a {
  color: #FF6B6B;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #FF6B6B; opacity: 1; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ========================================
   FLOATING BUTTONS (PC)
   ======================================== */
.float-btns {
  position: fixed;
  right: 24px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 950;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 1;
}
.float-btn-mail {
  background: #D32F2F;
}
.float-btn-line {
  background: #06C755;
}
.float-btn i {
  font-size: 1.4rem;
}
.line-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.float-btn span {
  display: block;
}

/* ========================================
   FLOATING FOOTER (SP only)
   ======================================== */
.float-footer-sp {
  display: none;
}

/* ========================================
   SCROLL TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #D32F2F;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(211,47,47,0.4);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover { transform: translateY(-3px); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-img { width: 120px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-item::after { display: none; }
  .flow-item { margin: 0; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Floating buttons: PC非表示→SP固定フッターに切替 */
  .float-btns { display: none; }
  .float-footer-sp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    height: 60px;
  }
  .float-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .float-footer-mail {
    background: #D32F2F;
  }
  .float-footer-line {
    background: #06C755;
  }
  .float-footer-btn i { font-size: 1.1rem; }
  .line-icon-sm {
    width: 1.2rem;
    height: 1.2rem;
  }
  /* フッター固定バー分の余白 */
  #footer { padding-bottom: 60px; }

  /* TOPへ戻るボタンを固定バーの上に */
  .scroll-top {
    bottom: 72px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  /* Header */
  .header-nav { display: none; }
  .header-nav.open {
    display: block;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .header-nav.open ul {
    flex-direction: column;
    gap: 0;
  }
  .header-nav.open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero {
    min-height: 680px;
    height: auto;
    padding: 96px 0 150px;
  }
  .hero-bg { background-position: 64% center; }
  .hero-content {
    width: 100%;
    padding: 0 24px;
  }
  .hero-impact-badge {
    top: 18px;
    right: 18px;
    min-width: 174px;
    padding: 14px 16px;
  }
  .hero-stats { gap: 10px; flex-wrap: wrap; }
  .hero-stat { min-width: calc(50% - 5px); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .mv-photo-slider { margin-top: -88px; padding-top: 24px; }
  .mv-slider-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
  }

  /* Greeting */
  .greeting-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Reasons */
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-card { flex-direction: column; }
  .reason-num-badge { width: 100%; height: 40px; writing-mode: horizontal-tb; font-size: 0.9rem; }
  .reason-img { width: 100%; height: 180px; }

  /* Lineup */
  .lineup-grid { grid-template-columns: 1fr; }

  /* Flow */
  .flow-rows { gap: 20px; }
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .flow-item::after { display: none; }
  .flow-item { margin: 0; }

  /* Voices */
  .voices-grid { grid-template-columns: 1fr; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr; }

  /* Loan */
  .loan-support-grid { grid-template-columns: 1fr; }
  .loan-support-item { min-height: 80px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-impact-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 150px;
    padding: 10px 12px;
    transform: rotate(1deg);
  }
  .hero-impact-badge span {
    font-size: 0.58rem;
  }
  .hero-impact-badge strong {
    font-size: 0.86rem;
  }
  .hero-stat { min-width: 100%; }
  .mv-slider-row { gap: 12px; animation-duration: 28s; }
  .mv-slider-row img { width: 150px; border-radius: 6px; }
  .loan-value strong { font-size: 2.8rem; }
  .recommend-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Impact MV responsive overrides ---- */
@media (max-width: 1024px) {
  #hero .hero-content { max-width: 700px; }
  .hero-panel-main { right: 20px; width: min(38vw, 360px); opacity: 0.62; }
  .hero-panel-sub,
  .hero-panel-card { opacity: 0.58; }
}

@media (max-width: 768px) {
  #hero {
    min-height: 760px;
    padding: 112px 0 150px;
  }
  #hero .hero-bg {
    background-position: 58% center;
    opacity: 0.72;
  }
  #hero .hero-content {
    padding: 0 22px;
    max-width: 100%;
  }
  #hero .hero-impact-badge {
    top: 18px;
    right: 18px;
    min-width: 156px;
    padding: 12px 14px;
    box-shadow: 6px 6px 0 rgba(255,255,255,0.9);
  }
  #hero .hero-impact-badge strong {
    font-size: 1.35rem;
  }
  .hero-side-copy {
    display: none;
  }
  #hero .hero-title {
    font-size: clamp(2rem, 8.5vw, 3.25rem);
    line-height: 0.98;
    margin-top: 18px;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    padding: 12px 14px;
    box-shadow: 6px 6px 0 rgba(211,47,47,0.95);
  }
  #hero .hero-sub {
    font-size: 0.92rem;
  }
  #hero .hero-stat {
    width: 100%;
    min-width: 0;
  }
  .hero-panel-sub,
  .hero-panel-card {
    display: none;
  }
  .hero-panel-main {
    right: -40px;
    bottom: 98px;
    width: 240px;
    opacity: 0.46;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  #hero .hero-title {
    font-size: clamp(1.55rem, 8.1vw, 2.45rem);
  }
  #hero .hero-label {
    font-size: 0.62rem;
    line-height: 1.5;
  }
  #hero .hero-stat {
    min-width: 100%;
  }
  #hero .stat-num {
    font-size: 2.15rem;
  }
  #hero .hero-buttons .btn-primary {
    box-shadow: 5px 5px 0 rgba(255,255,255,0.9);
  }
}
