/* =========================
   ページ全体
========================= */

body {
  margin: 0;
  background-color: #f5f1e8;
  color: #2f2f2f;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}


/* HEADERを少しコンパクトに */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 32px;
  background-color: #ffffff;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}


/* MAINの余白も少し縮める */
main {
  padding: 24px 16px 40px;
}


/* HERO */
.hero {
  position: relative;

  min-height: 320px;
  padding: 40px 65px;

  display: flex;
  align-items: center;

background-image:
  linear-gradient(
    to right,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.20) 35%,
    rgba(0, 0, 0, 0.08) 65%,
    rgba(0, 0, 0, 0.00) 100%
  ),
  url("../images/hero.png");

  background-size: cover;
  background-position: center 67%;

  color: #ffffff;
  margin-bottom: 0;
}

.hero-text {
  position: absolute;

  right: 45px;
  bottom: 42px;

  width: 390px;

  padding: 26px 0 18px 38px;

  /* 箱ではなく、左側だけふわっと暗くする */
  background:
    linear-gradient(
      90deg,
      rgba(25, 35, 25, 0.48) 0%,
      rgba(25, 35, 25, 0.20) 55%,
      rgba(25, 35, 25, 0) 100%
    );

  border-left: 2px solid rgba(255, 255, 255, 0.75);
}


/* メインコピー */
.hero h2 {
  margin: 0;

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 27px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.12em;

  color: #ffffff;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.35);
}


.hero h2 span {
  display: block;
}


/* 2行目だけ右へ */
.hero h2 span:nth-child(2) {
  margin-left: 45px;
}


/* 小さな英字 */
.hero-text > p {
  margin: 13px 0 0 47px;

  font-size: 11px;
  font-weight: 400;

  letter-spacing: 0.18em;

  color: rgba(255, 255, 255, 0.88);

  text-transform: uppercase;
}

/* コピーの左に細いラインを入れる */
.hero-text::before {
  content: "";

  display: block;

  width: 48px;
  height: 1px;

  margin-bottom: 14px;

  background-color: rgba(255, 255, 255, 0.85);
}


/* QUICK POINTS */
.points {
  max-width: 1100px;
  margin: -5px auto 24px;
  padding: 12px 30px 0;
}

.point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.point-card {
  width: 100%;
}

.point-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.point-text {
  padding: 14px 16px 10px;
}

.point-text h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.point-text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   EXPERIENCE MAP
========================= */

.experience {
  max-width: 1100px;
  margin: 0 auto 25px;
  padding: 20px 30px 15px;

  display: flex;
  align-items: center;
  gap: 40px;
}
.experience-heading {
  width: 30%;
}

.section-label {
  margin: 0 0 12px;

  font-size: 11px;
  letter-spacing: 0.18em;

  color: #8a6d45;
}

.experience h2 {
  margin: 0;

  font-family:
    "Times New Roman",
    "Yu Mincho",
    serif;

  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.experience-lead {
  margin-top: 20px;

  font-size: 13px;
  line-height: 1.9;

  color: #666666;
}

.experience-map {
  width: 70%;
}

.experience-map img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 8px;
}

/* =========================
   SEASONS
========================= */

.seasons {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 10px 30px 40px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.season-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.season-card {
  position: relative;
  overflow: hidden;

  height: 220px;

  border-radius: 8px;
}

.season-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.season-text {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 26px 16px 14px;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0)
    );

  color: #ffffff;
}

.season-text p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.season-text h3 {
  margin: 3px 0 0;
  font-size: 22px;
  font-weight: 500;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 30px 40px;

  background-color: #ffffff;
}

footer p {
  margin: 0;
}