/* =============================================
   カラオケスナック ちょっと来てみ！ - Stylesheet
   Color: Black / Red / Purple
   Style: Sharp, linear, no rounded corners
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');

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

:root {
  --black:       #0a0a0a;
  --black-mid:   #141414;
  --black-light: #1e1e1e;
  --black-soft:  #2a2a2a;
  --red:         #cc0000;
  --red-bright:  #e60000;
  --red-dark:    #990000;
  --purple:      #7b2d8b;
  --purple-mid:  #9b3dab;
  --purple-dark: #5a1f68;
  --white:       #ffffff;
  --white-dim:   #cccccc;
  --white-muted: #888888;
  --gray-ph:     #3a3a3a;
  --border:      1px solid #3a3a3a;
  --border-red:  1px solid var(--red);
  --border-purple: 1px solid var(--purple);
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
}

.section-title span {
  color: var(--red);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px 0 40px 0;
}

.divider-purple {
  background: var(--purple);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo span {
  color: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  padding: 8px 16px;
  border-left: 1px solid #2a2a2a;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--white);
  background: var(--black-light);
}

.nav-link.nav-recruit {
  background: var(--red);
  color: var(--white);
  border-left: none;
  padding: 8px 20px;
}

.nav-link.nav-recruit:hover {
  background: var(--red-bright);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black-mid);
  border-top: 1px solid var(--red);
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  border-bottom: 1px solid #2a2a2a;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover {
  background: var(--black-light);
  color: var(--white);
}

.mobile-nav a.mobile-recruit {
  background: var(--red);
  color: var(--white);
  border-bottom: none;
}

.mobile-nav a.mobile-sns-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white); /* 文字は白 */
}

.mobile-nav a.mobile-sns-item:hover {
  background: var(--black-light);
  color: var(--white);
}

.mobile-nav a.mobile-sns-item .mobile-sns-icon {
  width: 18px;
  height: 18px;
  fill: var(--purple-mid); /* 前の絵文字にあたるアイコンを紫に */
  flex-shrink: 0;
  transition: fill 0.2s;
}

.mobile-nav a.mobile-sns-item:hover .mobile-sns-icon {
  fill: var(--purple-mid);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Sharp diagonal stripes */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 40px,
    rgba(204, 0, 0, 0.04) 40px,
    rgba(204, 0, 0, 0.04) 41px
  );
}

.hero-bg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--purple-dark) 50%, #1a0010 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-en {
  display: block;
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--purple-mid);
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 40px;
  border-left: 3px solid var(--purple);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white-muted);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Hero photo placeholder */
.hero-image-wrap {
  position: relative;
}

.hero-slide img,
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-slider {
  width: 100%;
  aspect-ratio: 3/4;
  border: 2px solid #4a4a4a;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gray-ph);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.hero-placeholder-label {
  position: relative;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  text-transform: uppercase;
}

.hero-placeholder-sub {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: #555;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* Decorative corner lines */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid #4a4a4a;
  z-index: 3;
}

/* ============================================
   RECRUIT BANNER (直下・最重要)
   ============================================ */
#recruit-banner {
  background: var(--red);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red-bright);
  border-bottom: 4px solid var(--red-dark);
}

#recruit-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.08) 20px,
    rgba(0,0,0,0.08) 21px
  );
}

#recruit-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--red-dark), var(--purple-dark));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.5;
}

.recruit-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.recruit-banner-text {
  flex: 1;
  min-width: 260px;
}

.recruit-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.recruit-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.recruit-banner-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.recruit-banner-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.recruit-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
  text-align: right;
}

.recruit-phone {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.recruit-phone-note {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-align: right;
}

.btn-recruit-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  transition: all 0.25s;
  margin-top: 4px;
}

.btn-recruit-white:hover {
  background: transparent;
  color: var(--white);
}

/* ============================================
   ABOUT (店舗紹介)
   ============================================ */
#about {
  background: var(--black);
  border-top: 1px solid #2a2a2a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-slider {
  width: 100%;
  aspect-ratio: 4/3;
  border: 2px solid #4a4a4a;
  position: relative;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gray-ph);
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

.about-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #252525, #333333);
}

.about-placeholder-label {
  position: relative;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  text-transform: uppercase;
}

.about-placeholder-sub {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: #555;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* Decorative corner lines */
.about-slide::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid #4a4a4a;
  z-index: 3;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-left: 3px solid var(--purple);
  background: var(--black-light);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.about-feature-text {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
}

.about-feature-text strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============================================
   PRICE
   ============================================ */
#price {
  background: var(--black-mid);
  border-top: 1px solid #2a2a2a;
}

.price-card {
  max-width: 600px;
  border: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.price-card-inner {
  padding: 40px 48px;
}

.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

.price-note {
  font-size: 14px;
  color: var(--white-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.price-inquiry {
  font-size: 13px;
  color: var(--purple-mid);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  margin-top: 20px;
}

/* ============================================
   RECRUIT (採用情報)
   ============================================ */
#recruit {
  background: var(--black);
  border-top: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
}

#recruit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 60px,
    rgba(204, 0, 0, 0.025) 60px,
    rgba(204, 0, 0, 0.025) 61px
  );
}

.recruit-intro {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.9;
  max-width: 680px;
  margin-bottom: 48px;
}

.recruit-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.recruit-point {
  background: var(--black-light);
  padding: 32px 28px;
  border-top: 3px solid var(--red);
  position: relative;
}

.recruit-point-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Noto Serif JP', serif;
}

.recruit-point-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.recruit-point-desc {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
}

.recruit-cta {
  background: var(--black-mid);
  border: 2px solid var(--red);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.recruit-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.recruit-cta-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.recruit-cta-text p {
  font-size: 14px;
  color: var(--white-muted);
}

.recruit-cta-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.recruit-cta-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white-muted);
}

.recruit-cta-phone-num {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
}

.recruit-cta-phone-note {
  font-size: 12px;
  color: var(--white-muted);
}

/* ============================================
   INFO (基本情報)
   ============================================ */
#info {
  background: var(--black-mid);
  border-top: 1px solid #2a2a2a;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.info-item {
  background: var(--black-light);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 3px solid var(--black-soft);
  transition: border-color 0.2s;
}

.info-item:hover {
  border-left-color: var(--red);
}

.info-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  min-width: 90px;
  padding-top: 2px;
}

.info-item-value {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
}

.info-item-value strong {
  color: var(--white);
  font-weight: 700;
}

/* ============================================
   ACCESS
   ============================================ */
#access {
  background: var(--black);
  border-top: 1px solid #2a2a2a;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-detail {
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}

.access-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.access-detail-value {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border: 2px solid #3a3a3a;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   SNS
   ============================================ */
#sns {
  background: var(--black-mid);
  border-top: 1px solid #2a2a2a;
  padding: 60px 0;
}

.sns-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.sns-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.sns-text p {
  font-size: 13px;
  color: var(--white-muted);
}

.sns-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sns-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #3a3a3a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  transition: all 0.25s;
}

.sns-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--black-light);
}

.sns-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--red);
}

.footer-info {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 2;
}

.footer-phone-wrap {
  text-align: right;
}

.footer-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.footer-phone {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-phone-note {
  font-size: 12px;
  color: var(--white-muted);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.08em;
}

.footer-nav-links {
  display: flex;
  gap: 20px;
}

.footer-nav-links a {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--white-muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-image-wrap {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recruit-points {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

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

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

  .footer-phone-wrap {
    text-align: left;
  }
}

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

  .recruit-banner-inner {
    padding: 36px 0;
  }

  .recruit-banner-action {
    align-items: flex-start;
    width: 100%;
  }

  .recruit-phone-label,
  .recruit-phone-note {
    text-align: left;
  }

  .recruit-cta {
    padding: 28px 24px;
  }

  .recruit-cta-phone {
    align-items: flex-start;
  }

  .price-card-inner {
    padding: 28px 24px;
  }

  .info-item {
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px;
  }

  .sns-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
