/* ========================================
   loulia Recruit — style.css
   ワンホン系 ピンク×白 ラグジュアリー
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #FFFBFC;
  --color-primary: #D4A0B0;
  --color-accent: #B87D8E;
  --color-text: #3A2830;
  --color-text-light: #8A6875;
  --color-surface: #FFF3F6;
  --color-line: #F0D0DA;
  --font-en: 'Cormorant Garamond', serif;
  --font-jp: 'Noto Serif JP', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-bg);
  transition: box-shadow 0.3s;
}

.header.is-scrolled {
  box-shadow: 0 1px 12px rgba(180, 120, 140, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
}

/* ロゴ */
.header__logo {
  display: block;
  height: 40px;
}

.header__logo img {
  height: 100%;
  width: auto;
}

/* ---------- Hero ---------- */
.hero {
  padding: 100px 24px 40px;
  text-align: center;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero__label {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--color-text);
  margin-bottom: 40px;
}

.hero__images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.hero__img {
  overflow: hidden;
  background-color: var(--color-surface);
}

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

.hero__img--large {
  grid-row: 1 / 3;
  min-height: 360px;
}

.hero__img--small {
  min-height: 175px;
}

/* ---------- Catchcopy ---------- */
.catchcopy {
  padding: 64px 24px 48px;
  text-align: center;
}

.catchcopy__inner {
  max-width: 600px;
  margin: 0 auto;
}

.catchcopy__main {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 8px;
}

.catchcopy__line {
  width: 1px;
  height: 32px;
  background-color: var(--color-line);
  margin: 20px auto;
}

.catchcopy__sub {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 2.2;
}

.catchcopy__bottom {
  font-size: 14px;
  line-height: 2.2;
  margin-top: 8px;
}

.catchcopy__cta {
  margin-top: 40px;
}

/* ---------- Button — LINE ---------- */
.btn-line {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #F8B4C8 0%, #E890A8 50%, #D4A0B0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-radius: 40px;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 160, 176, 0.3);
}

.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 176, 0.4);
}

.btn-line__sub {
  font-size: 11px;
  opacity: 0.9;
}

.btn-line--large {
  padding: 20px 60px;
  font-size: 16px;
}

/* ---------- Points Header ---------- */
.points-header {
  padding: 60px 24px 40px;
  text-align: center;
}

.points-header__heading {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ---------- Point (alternating layout) ---------- */
.point {
  padding: 40px 24px;
}

.point__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.point--reverse .point__inner {
  direction: rtl;
}

.point--reverse .point__inner > * {
  direction: ltr;
}

.point__number {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.point__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
}

.point__body {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 2.2;
}

.point__img {
  overflow: hidden;
  background-color: var(--color-surface);
}

.point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ---------- CTA ---------- */
.cta {
  padding: 56px 24px;
  text-align: center;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Requirements ---------- */
.requirements {
  padding: 80px 24px;
  background-color: var(--color-surface);
}

.requirements__inner {
  max-width: 800px;
  margin: 0 auto;
}

.requirements__heading {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}

.requirements__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}

.requirements__tab {
  flex: 1;
  padding: 14px 0;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--color-line);
  background-color: var(--color-bg);
  transition: background-color 0.2s, color 0.2s;
  color: var(--color-text-light);
}

.requirements__tab + .requirements__tab {
  border-left: none;
}

.requirements__tab.is-active {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.requirements__panel {
  display: none;
}

.requirements__panel.is-active {
  display: block;
}

.requirements__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-bg);
}

.requirements__table th,
.requirements__table td {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}

.requirements__table th {
  width: 120px;
  color: var(--color-text);
  font-weight: 400;
  white-space: nowrap;
  background-color: var(--color-surface);
}

.requirements__table td {
  line-height: 2;
}

.requirements__notice {
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  color: var(--color-text-light);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 40px 0 0;
}

.gallery__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery__item {
  overflow: hidden;
  background-color: var(--color-surface);
  aspect-ratio: 1 / 1;
}

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

/* ---------- Footer ---------- */
.footer {
  padding: 32px 24px;
  text-align: center;
  background-color: var(--color-surface);
}

.footer__copy {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet — 768px */
@media (max-width: 768px) {
  .hero__images {
    grid-template-columns: 1.2fr 1fr;
  }

  .hero__img--large {
    min-height: 260px;
  }

  .hero__img--small {
    min-height: 125px;
  }

  .point__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .point--reverse .point__inner {
    direction: ltr;
  }

  .point__img {
    order: -1;
  }

  .gallery__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SP — 480px */
@media (max-width: 480px) {
  .header__inner {
    padding: 4px 16px;
  }

  .header__logo {
    height: 30px;
  }

  .hero {
    padding: 76px 16px 16px;
  }

  .hero__label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero__images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 4px;
  }

  .hero__img--large {
    min-height: 120px;
    grid-row: auto;
  }

  .hero__img--small {
    min-height: 120px;
  }

  .catchcopy {
    padding: 28px 16px 32px;
  }

  .catchcopy__main {
    font-size: 13px;
  }

  .catchcopy__line {
    height: 20px;
    margin: 12px auto;
  }

  .catchcopy__cta {
    margin-top: 24px;
  }

  .points-header__heading {
    font-size: 17px;
  }

  .point {
    padding: 32px 16px;
  }

  .point__title {
    font-size: 16px;
  }

  .requirements {
    padding: 60px 16px;
  }

  .requirements__heading {
    font-size: 18px;
  }

  .requirements__table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .requirements__table td {
    display: block;
    padding-top: 0;
  }

  .gallery__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
