@charset "UTF-8";

:root {
  --ink: #14262d;
  --muted: #617078;
  --paper: #f5f3ed;
  --line: #dbe2df;
  --mint: #8de5c6;
  --coral: #ef675d;
  --blue: #4964ff;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2a7560;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.sec_gallery_hero {
  padding: 62px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, #8de5c65c 0 8%, transparent 28%),
    linear-gradient(130deg, #f8f6f0 0 57%, #e4f2ec 100%);
  border-bottom: 1px solid var(--line);

  .hero-grid {
    margin: 38px 0 0;
    display: grid;
    grid-template-columns:minmax(0, 1.45fr) minmax(340px, .85fr);
    align-items: end;
    gap: 70px;
  }

  h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -0.065em;

    em {
      color: #287963;
      font-style: normal;
    }
  }

  .lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.9;
  }

  .summary {
    margin: 0;
    display: grid;
    border-top: 1px solid #9ebdb2;

    > div {
      padding: 17px 0;
      display: grid;
      grid-template-columns: 92px 1fr;
      align-items: center;
      border-bottom: 1px solid #9ebdb2;
    }

    dt {
      color: #287963;
      font-size: 30px;
      font-weight: 950;
      letter-spacing: -0.04em;
    }

    dd {
      margin: 0;
      color: #4e625b;
      font-size: 13px;
      font-weight: 800;
    }
  }

  .play-note {
    margin: 34px 0 0;
    padding: 13px 17px;
    display: inline-block;
    border: 1px solid #bfd1ca;
    border-radius: 100px;
    background: #ffffffb8;
    color: #48625a;
    font-size: 12px;
    font-weight: 750;
  }
}

.sec_gallery_list {
  padding: 68px 0 80px;

  .section-heading {
    margin: 0 0 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    h2 {
      margin: 8px 0 0;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 950;
      line-height: 1.25;
      letter-spacing: -0.05em;
    }

    > p {
      margin: 0 0 7px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
  }
}
