:root {
  --navy: #08234a;
  --blue: #164782;
  --soft-blue: #e9f1fa;
  --leaf: #5d8f3d;
  --cream: #fbfaf6;
  --white: #fff;
  --line: #dbe3ea;
  --text: #1d3150;
  --muted: #61718a;
  --shadow: 0 22px 60px rgba(8, 35, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", Meiryo, serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px clamp(24px, 5vw, 72px);
  color: var(--navy);
}

.site-header .brand-logo {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  flex: 0 0 58px;
  object-fit: contain;
}

.site-header .brand .brand-wordmark {
  width: clamp(170px, 14vw, 230px) !important;
  height: auto !important;
  max-width: 230px !important;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  content: "";
}

.brand img {
  width: 44px !important;
  height: 44px !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  white-space: nowrap;
}

.brand small {
  font-size: 12px;
}

.brand strong {
  font-size: 36px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  font-weight: 800;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  content: "";
}

.global-nav a:hover::after,
.global-nav a:first-child::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 42px;
  height: 3px;
  margin: 8px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36) 36%, rgba(255, 255, 255, 0) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(8, 35, 74, 0.1));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 80px));
  margin-left: clamp(30px, 5.4vw, 92px);
  padding-top: 72px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--navy);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 52px;
}

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 800;
   transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.button:hover {
  transform: translateY(-5px);
}

.button-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
}

.button::after,
.text-link::after,
.more-link::after,
.request-box a::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("./assets/icon-arrow.png") center / contain no-repeat;
  mask: url("./assets/icon-arrow.png") center / contain no-repeat;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(22, 71, 130, 0.25);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(8, 35, 74, 0.65);
  backdrop-filter: blur(4px);
}

.hero-news {
  position: absolute;
  right: clamp(34px, 6vw, 116px);
  bottom: clamp(12px, 2.4vw, 32px);
  z-index: 2;
  width: 250px;
  height: 250px;
  display: grid;
  align-content: center;
  padding: 34px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 35, 74, 0.22);
  border-radius: 50%;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-news-title {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 800;
}

.hero-news a:not(.more-link) {
  display: grid;
  gap: 2px;
  padding: 9px 0;
  border-top: 1px solid rgba(8, 35, 74, 0.15);
  font-size: 13px;
}

.hero-news span {
  font-weight: 800;
}

.hero-news::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(8, 35, 74, 0.28);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.more-link {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.45;
}

.section p {
  color: var(--muted);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
}

.news {
  padding: 80px 6%;
  text-align: center;
  background: #fff;
}

.news h2 {
  margin: 0;
  color: #173b63;
  font-family: serif;
  font-size: 38px;
}

.news > p {
  margin: 8px 0 40px;
  color: #657485;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: left;
}

.news-card {
  background: #fff;
  box-shadow: 0 8px 25px rgba(23, 59, 99, 0.1);
}

.news-card a {
  color: inherit;
  text-decoration: none;
}

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

.news-card time,
.news-card h3 {
  display: block;
  margin: 16px 20px;
}

.news-card time {
  color: #8291a0;
  font-size: 13px;
}

.news-card h3 {
  padding-bottom: 22px;
  color: #173b63;
  font-size: 17px;
}

.news-more {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #173b63;
  color: #173b63;
  text-decoration: none;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news {
    padding: 55px 20px;
  }
}

.en-label {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98), rgba(251, 250, 246, 0.75) 52%, rgba(251, 250, 246, 0.28)),
    url("./assets/blueberry-hero.png") right top / 58% auto no-repeat;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 38px;
}

.section-title img {
  width: 90px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.section-title p,
.simple-title p,
.access-head p,
.blog-card p {
  margin: 10px 0 0;
}

.news-list {
  padding: 30px 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 227, 234, 0.82);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.news-list article {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 128px;
  align-items: center;
  gap: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.news-list article:first-child {
  border-top: 0;
}

.news-list img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.news-list time {
  color: var(--navy);
  font-size: 18px;
}

.news-list h3 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.45;
}

.news-list p {
  margin: 0;
}

.news-list article > span {
  justify-self: end;
  padding: 8px 18px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 999px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.about-section {
  padding: 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 45.5% 54.5%;
  width: 100%;
  max-width: none;
  min-height: 760px;
  margin: 0;
  gap: 0;
}

.about-photo {
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-commitment {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 760px;
  padding: 70px 120px;
  overflow: hidden;
  background: #fff;
}

.about-commitment::after {
  position: absolute;
  right: 48px;
  bottom: 34px;
  width: 290px;
  aspect-ratio: 1.45;
  background: url("./assets/decor-blueberries.png") center / contain no-repeat;
  opacity: 0.13;
  content: "";
  pointer-events: none;
}

.about-commitment h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 48px;
  color: var(--navy);
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.35;
}

.commitment-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitment-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 34px;
  padding: 26px 0;
  border-top: 1px solid rgba(113, 150, 183, 0.36);
}

.commitment-list li:last-child {
  border-bottom: 1px solid rgba(113, 150, 183, 0.36);
}

.commitment-list span {
  color: #7196b7;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.commitment-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
}

.commitment-list p {
  margin: 6px 0 0;
  color: #777;
  font-size: 20px;
  line-height: 1.7;
}

 /* =========================
   商品のご案内
========================= */

.price-guide {
  padding: 100px 20px;
  color: #102f68;
  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(202, 222, 246, 0.45),
      transparent 17%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(202, 222, 246, 0.38),
      transparent 18%
    ),
    #fff;
  overflow: hidden;
}

.price-guide-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}

/* ブルーベリーの飾り画像 */
.price-decoration {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: auto;
  pointer-events: none;
}

.price-decoration-top {
  top: -100px;
  left: -170px;
}

.price-decoration-bottom {
  right: -170px;
  bottom: -90px;
}

/* 見出し */
.price-header {
  margin-bottom: 75px;
  text-align: center;
}

.farm-name {
  margin: 0 0 12px;
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 0.2em;
}

.berry-mark {
  margin-bottom: 12px;
  color: #6686bd;
  font-size: 16px;
  letter-spacing: 0.25em;
}

.price-header h2 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.heading-line,
.footer-line {
  display: flex;
  align-items: center;
  width: min(500px, 75%);
  margin: 25px auto 0;
  color: #315894;
  font-size: 12px;
}

.heading-line::before,
.heading-line::after,
.footer-line::before,
.footer-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #7897c7;
}

.heading-line::before,
.footer-line::before {
  margin-right: 10px;
}

.heading-line::after,
.footer-line::after {
  margin-left: 10px;
}

/* 料金カテゴリー */
.price-lists {
  display: grid;
  gap: 78px;
}

.price-category {
  position: relative;
  padding: 70px 42px 30px;
  border: 1px solid #aac3e3;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(25, 65, 119, 0.04);
}

/* 枠の角飾り */
.price-category::before,
.price-category::after {
  position: absolute;
  width: 26px;
  height: 26px;
  color: #a8c1e1;
  background: #fff;
  font-size: 23px;
  line-height: 1;
}

.price-category::before {
  content: "❧";
  top: -10px;
  left: -9px;
}

.price-category::after {
  content: "❧";
  right: -9px;
  bottom: -10px;
  transform: rotate(180deg);
}

/* 紺色のカテゴリー名 */
.price-category h3 {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(430px, 75%);
  margin: 0;
  padding: 18px 25px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #173f80, #08265d);
  box-shadow: 0 7px 18px rgba(10, 43, 95, 0.18);
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.price-category h3 span {
  padding: 0 14px;
  color: #d7e3f2;
  font-size: 22px;
}

.price-category h3 small {
  font-size: 0.55em;
  letter-spacing: 0.04em;
}

/* 価格表 */
.price-category table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-category th,
.price-category td {
  width: 50%;
  padding: 22px 16px;
  font-size: clamp(25px, 4.5vw, 41px);
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.price-category th {
  border-right: 1px solid #bad0eb;
}

.price-category tr:not(:last-child) th,
.price-category tr:not(:last-child) td {
  border-bottom: 2px dotted #c4d6ed;
}

/* 下部 */
.price-footer {
  margin-top: 70px;
  padding: 0 10px;
  text-align: center;
}

.tax-note {
  margin: 0 0 28px;
  font-size: clamp(15px, 2.4vw, 21px);
  letter-spacing: 0.06em;
}

.price-footer .footer-line {
  margin-top: 20px;
}

.price-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 25px 0;
}

.price-contact span {
  font-size: clamp(15px, 2.3vw, 20px);
}

.price-contact a {
  color: #102f68;
  font-size: clamp(27px, 5vw, 44px);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.price-contact a:hover {
  opacity: 0.7;
}

/* スマートフォン */
@media (max-width: 600px) {
  .price-guide {
    padding: 75px 16px;
  }

  .price-header {
    margin-bottom: 60px;
  }

  .price-header h2 {
    letter-spacing: 0.06em;
  }

  .price-lists {
    gap: 65px;
  }

  .price-category {
    padding: 55px 12px 18px;
  }

  .price-category h3 {
    width: 82%;
    padding: 15px 12px;
  }

  .price-category h3 span {
    padding: 0 5px;
    font-size: 16px;
  }

  .price-category th,
  .price-category td {
    padding: 17px 5px;
  }

  .price-contact {
    flex-direction: column;
    gap: 8px;
  }

  .price-decoration {
    width: 170px;
    opacity: 0.75;
  }

  .price-decoration-top {
    top: -60px;
    left: -105px;
  }

  .price-decoration-bottom {
    right: -100px;
    bottom: -40px;
  }
}

.price-image {
  width: min(100%, 900px);
  margin: 0 auto;
}

.price-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(8, 35, 74, 0.08);
}

.simple-title {
  margin-bottom: 34px;
}

.price-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 0.56fr 0.56fr;
  align-items: center;
  min-height: 76px;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row span,
.price-row strong {
  padding: 18px 28px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.price-row span + span,
.price-row strong {
  border-left: 1px solid var(--line);
}

.price-row.head {
  min-height: 58px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.price-row strong {
  color: var(--blue);
  font-size: 24px;
}

.access-section {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98), rgba(251, 250, 246, 0.72) 52%, rgba(251, 250, 246, 0.18)),
    url("./assets/blueberry-hero.png") right top / 58% auto no-repeat;
}

.access-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.access-head img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 999px 999px 24px 999px;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 28px;
}

.place-list {
  display: grid;
  gap: 18px;
}

.place-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(8, 35, 74, 0.08);
}

.place-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
}

.place-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 25px;
}

.place-list p {
  margin: 0;
}

.map-card {
  position: relative;
  min-height: 484px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(35deg, transparent 0 58px, rgba(22, 71, 130, 0.08) 59px 62px),
    repeating-linear-gradient(-28deg, transparent 0 74px, rgba(93, 143, 61, 0.08) 75px 78px),
    #edf3ed;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.map-card strong {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 22px;
}

.road {
  position: absolute;
  background: rgba(22, 71, 130, 0.25);
  border-radius: 999px;
}

.road-a {
  width: 120%;
  height: 14px;
  left: -12%;
  top: 55%;
  transform: rotate(-18deg);
}

.road-b {
  width: 14px;
  height: 120%;
  left: 54%;
  top: -10%;
  transform: rotate(14deg);
}

.pin {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 132px;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(8, 35, 74, 0.22);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 800;
}

.pin::after {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 18px;
  height: 18px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  content: "";
}

.pin-home {
  top: 22%;
  right: 14%;
}

.pin-shop {
  left: 18%;
  bottom: 24%;
}

/* =========================
   販売所・アクセス
========================= */

.shop-access {
  position: relative;
  padding: 110px 30px 80px;
  overflow: hidden;
  color: #08275e;
  background:
    radial-gradient(
      circle at 4% 8%,
      rgba(207, 226, 246, 0.4),
      transparent 18%
    ),
    #fff;
}

.access-inner {
  position: relative;
  z-index: 2;
  width: min(1400px, 100%);
  margin: 0 auto;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}

/* ブルーベリー装飾 */
.access-decoration {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
}

.access-decoration-top {
  top: 0;
  left: -20px;
  width: min(440px, 30vw);
}

.access-decoration-bottom {
  right: -10px;
  bottom: 15px;
  width: min(270px, 20vw);
}

/* 見出し */
.access-header {
  margin-bottom: 80px;
  text-align: center;
}

.access-header h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.access-header p {
  margin: 15px 0 0;
  color: #7895c1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 23px);
  letter-spacing: 0.28em;
}

.access-heading-line {
  display: flex;
  align-items: center;
  width: min(320px, 70%);
  margin: 23px auto 0;
  color: #99b4d8;
  font-size: 10px;
}

.access-heading-line::before,
.access-heading-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #a7bfdf;
}

.access-heading-line::before {
  margin-right: 10px;
}

.access-heading-line::after {
  margin-left: 10px;
}

/* カード配置 */
.shop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* 各販売所カード */
.shop-card {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 35px 35px 28px;
  border: 1px solid #91b2dc;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 8px 25px rgba(33, 76, 132, 0.05),
    inset 0 0 0 6px #fff,
    inset 0 0 0 7px rgba(147, 180, 220, 0.3);
  flex-direction: column;
  text-align: center;
}

/* 角の飾り */
.shop-card::before,
.shop-card::after {
  content: "◇";
  position: absolute;
  color: #a3bddd;
  background: #fff;
  font-size: 18px;
}

.shop-card::before {
  top: -8px;
  left: 12px;
}

.shop-card::after {
  right: 12px;
  bottom: -8px;
}

/* 小さなブルーベリー風マーク */
.berry-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 45px;
  margin-bottom: 12px;
}

.berry-icon span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 -2px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #9fb8df 0 15%,
    #426ba8 40%,
    #173e7a 100%
  );
  box-shadow: 0 2px 5px rgba(21, 55, 106, 0.18);
}

.berry-icon span:nth-child(2) {
  width: 23px;
  height: 23px;
  transform: translateY(7px);
}

.berry-icon span:nth-child(3) {
  width: 16px;
  height: 16px;
}

.shop-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.dotted-line {
  width: 78%;
  margin: 17px auto 25px;
  border-top: 3px dotted #aec7e5;
}

.shop-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0;
  color: #171717;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.pin-icon {
  position: relative;
  display: inline-block;
  color: #5479ad;
  font-size: 22px;
}

/* ピン下部を三角形にする */
.pin-icon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #5479ad transparent transparent;
  transform: translateX(-50%);
}

.shop-card hr {
  width: 88%;
  margin: 24px auto;
  border: 0;
  border-top: 1px solid #a8bfdf;
}

.shop-note,
.home-note {
  margin: 0 0 26px;
  color: #171717;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.8;
}

/* Googleマップボタン */
.map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 88%;
  margin: auto auto 0;
  padding: 14px 18px;
  border: 2px solid #073579;
  border-radius: 999px;
  color: #082d6b;
  background: #fff;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.map-button span {
  color: #174c91;
}

.map-button:hover {
  color: #fff;
  background: #08377b;
  transform: translateY(-2px);
}

/* 自宅販売所 */
.home-note {
  margin-bottom: 12px;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0 0 9px;
  color: #082d6b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.phone-number span {
  font-size: 35px;
}

.reception-time {
  display: inline-block;
  align-self: center;
  margin: 0 0 14px;
  padding: 4px 22px;
  border-radius: 999px;
  background: #e3f0f8;
  font-size: clamp(14px, 1.3vw, 18px);
}

.call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 88%;
  margin: auto auto 0;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #08418d, #002964);
  box-shadow: 0 7px 16px rgba(6, 45, 103, 0.17);
  font-size: clamp(19px, 1.9vw, 25px);
  letter-spacing: 0.07em;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.call-button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* 電話案内 */
.phone-information {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 35px;
  margin-top: 35px;
  padding: 28px 45px;
  border: 1px solid #a9c8eb;
  border-radius: 20px;
  background:
    linear-gradient(
      100deg,
      rgba(235, 246, 254, 0.9),
      rgba(255, 255, 255, 0.96)
    );
}

.phone-illustration {
  display: grid;
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  place-items: center;
  color: #073678;
  background: rgba(255, 255, 255, 0.8);
  font-size: 58px;
}

.phone-information-text {
  padding-left: 30px;
  border-left: 2px solid #86a8d3;
}

.phone-information-text h3 {
  display: inline-block;
  margin: 0 0 15px;
  padding-bottom: 8px;
  border-bottom: 3px dotted #b6cee8;
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.phone-information-text p {
  margin: 0;
  color: #171717;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* タブレット */
@media (max-width: 1000px) {
  .shop-access {
    padding-top: 90px;
  }

  .access-decoration-top {
    width: 300px;
    opacity: 0.65;
  }

  .shop-cards {
    grid-template-columns: 1fr 1fr;
  }

  .home-shop {
    grid-column: 1 / -1;
    width: min(600px, 100%);
    margin: 0 auto;
  }
}

/* スマートフォン */
@media (max-width: 650px) {
  .shop-access {
    padding: 75px 16px 55px;
  }

  .access-header {
    margin-bottom: 55px;
  }

  .access-header h2 {
    letter-spacing: 0.06em;
  }

  .access-decoration-top {
    top: 0;
    left: -105px;
    width: 230px;
    opacity: 0.48;
  }

  .access-decoration-bottom {
    right: -75px;
    bottom: 0;
    width: 185px;
    opacity: 0.5;
  }

  .shop-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-shop {
    grid-column: auto;
  }

  .shop-card {
    min-height: 0;
    padding: 30px 18px 24px;
  }

  .shop-card h3 {
    font-size: 22px;
  }

  .map-button,
  .call-button {
    width: 100%;
  }

  .map-button {
    margin-top: 10px;
  }

  .phone-information {
    display: block;
    margin-top: 25px;
    padding: 27px 20px;
    text-align: center;
  }

  .phone-illustration {
    width: 85px;
    height: 85px;
    margin-bottom: 20px;
    font-size: 43px;
  }

  .phone-information-text {
    padding: 0;
    border-left: 0;
  }

  .phone-information-text h3 {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }

  .phone-information-text p {
    text-align: left;
  }

  .phone-information-text p br {
    display: none;
  }
}

@media (min-width: 651px) {
  .mobile-break {
    display: none;
  }
}

.request-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 24px 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.request-box strong {
  color: var(--navy);
  font-size: 22px;
}

.request-box p {
  margin: 0;
}

.request-box a {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 10px 26px;
  color: var(--navy);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.blog-section {
  background: #fff;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 35, 74, 0.92), rgba(8, 35, 74, 0.62)),
    url("./assets/blueberry-hero.png") center / cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.blog-card h2,
.blog-card p,
.blog-card .en-label {
  color: #fff;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 42px 24px;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.site-footer img {
  width: min(280px, 80vw);
  padding: 10px 16px;
  background: #fff;
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .global-nav {
    gap: 22px;
  }

  .news-list article {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .news-list article > span {
    justify-self: start;
    grid-column: 2;
  }

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

  .map-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 82px;
    padding: 18px 26px;
  }
  

  .brand img {
    width: min(210px, 58vw);
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .global-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .global-nav a {
    padding: 12px 4px;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
  }

  .hero picture img {
    object-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1) 74%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 35, 74, 0.1));
  }

  .hero-copy {
    width: min(100% - 56px, 560px);
    margin: 0 auto;
    padding-top: 38svh;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 58px);
    line-height: 1.48;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 2;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .button {
    min-height: 58px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-news {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-inner {
    width: min(100% - 36px, 1240px);
  }

  .section h2 {
    font-size: 34px;
  }

  

  .news-section,
  .access-section {
    background: var(--cream);
  }

  .section-title {
    gap: 16px;
  }

  .section-title img {
    width: 70px;
  }

  .news-list {
    padding: 12px 22px;
    border-radius: 14px;
  }

  .news-list article {
    grid-template-columns: 1fr 28px;
    gap: 8px 16px;
    padding: 22px 0;
  }

  .news-list img,
  .news-list p,
  .news-list article > span {
    display: none;
  }

  .news-list article::after {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: var(--muted);
    font-size: 30px;
    content: "›";
  }

  .news-list h3 {
    margin: 5px 0 0;
    font-size: 20px;
  }

  .about-grid,
  .access-head,
  .blog-card,
  .request-box {
    grid-template-columns: 1fr;
  }

  .access-head img {
    height: 120px;
  }

  .price-table {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(8, 35, 74, 0.08);
  }

  .price-row.head {
    display: none;
  }

  .price-row span,
  .price-row strong {
    padding: 12px 18px;
  }

  .price-row span + span,
  .price-row strong {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .place-list article {
    padding: 22px;
  }

  .map-card {
    min-height: 300px;
    border-width: 8px;
  }

  .request-box {
    align-items: start;
  }

  .request-box a,
  .blog-card .button {
    width: 100%;
  }

  .blog-card {
    padding: 32px 24px;
  }
}

/* 料金表・販売所を上品で柔らかい明朝体に */
.price-guide-inner,
.access-inner {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-weight: 400;
}

/* 大きなタイトル */
.access-header h2,
.price-header h2 {
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* カードの見出し */
.shop-card h3,
.price-category h3,
.phone-information-text h3 {
  font-weight: 500;
}

/* ボタンと電話番号 */
.map-button,
.call-button,
.phone-number {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

/* サイト全体の字体を上品な明朝体に統一 */
body,
button,
input,
textarea,
select {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

/* すべての見出し */
h1,
h2,
h3,
h4,
.section-title h2,
.about-commitment h2,
.price-header h2,
.access-header h2 {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-weight: 500;
}

/* ボタンやナビ、電話番号も統一 */
.global-nav,
.button,
.map-button,
.call-button,
.phone-number {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

/* サイト内すべてをNoto Serif JPに統一 */
body,
body * {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

/* 私たちのこだわりをすべて同じ明朝体にする */
.about-commitment,
.about-commitment h2,
.commitment-list span,
.commitment-list h3,
.commitment-list p {
  font-weight: 500;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
}

/* 説明文 */
.commitment-list p {
  font-weight: 500;
}

/* 私たちのこだわりを細く上品に */
.commitment-list h3 {
  font-weight: 350 !important;
}

.commitment-list p {
  font-weight: 400 !important;
}

.commitment-list span {
  font-weight: 400 !important;
}

/* Googleマップボタンの場所ピン */
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-pin-icon {
  width: 25px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =========================
   フッター
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 28px;
  color: #17385f;
  background:
    linear-gradient(
      180deg,
      #f8fcff 0%,
      #e8f5fb 50%,
      #d9edf7 100%
    );
  border-top: 1px solid rgba(23, 56, 95, 0.18);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

/* ロゴ風の農園名 */
.footer-brand {
  margin-bottom: 25px;
}

.footer-brand span {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.footer-brand strong {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 7px 0 0;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* 農園メッセージ */
.footer-message {
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* 基本情報 */
.footer-information {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.9;
}

.footer-information p {
  margin: 2px 0;
}

.footer-information small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

/* 電話番号 */
.footer-phone {
  display: inline-block;
  margin: 8px 0;
  color: #17385f;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 56, 95, 0.35);
}

.footer-phone:hover {
  opacity: 0.65;
}

/* フッターメニュー */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 0;
  margin: 0 auto 45px;
}

.footer-nav a {
  padding: 0 18px;
  color: #17385f;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-right: 1px solid rgba(23, 56, 95, 0.25);
}

.footer-nav a:last-child {
  border-right: 0;
}

.footer-nav a:hover {
  opacity: 0.6;
}

/* 著作権表示 */
.footer-copyright {
  margin: 0;
  padding-top: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(23, 56, 95, 0.16);
}

/* 水彩ブルーベリー */
.footer-blueberry {
  position: absolute;
  right: -25px;
  bottom: -18px;
  z-index: 1;
  width: clamp(170px, 24vw, 310px);
  height: auto;
  pointer-events: none;
  opacity: 0.8;
}

/* スマホ */
@media (max-width: 600px) {
  .site-footer {
    padding: 65px 20px 25px;
  }

  .footer-message {
    font-size: 13px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 13px;
  }

  .footer-nav a {
    padding: 0;
    border-right: 0;
  }

  .footer-blueberry {
    right: -55px;
    bottom: 5px;
    width: 190px;
    opacity: 0.35;
  }
}

/* =========================
   よくあるご質問
========================= */

.faq-section {
  padding: 88px 24px;
  color: #17385f;
  background: #f7fbfd;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

.faq-inner {
  width: min(100%, 860px);
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 42px;
  text-align: center;
}

.faq-header p {
  margin: 0 0 7px;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.faq-header h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.faq-heading-line {
  margin-top: 15px;
  font-size: 9px;
  opacity: 0.65;
}

.faq-list {
  border-top: 1px solid rgba(23, 56, 95, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 56, 95, 0.22);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 46px;
  font-size: 16px;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

/* 質問のQ */
.faq-list summary::before {
  content: "Q";
  position: absolute;
  left: 10px;
  color: #567ea4;
  font-size: 20px;
}

/* 開閉マーク */
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 14px;
  font-size: 24px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

/* 回答 */
.faq-list details p {
  position: relative;
  margin: 0;
  padding: 0 50px 25px 46px;
  font-size: 14px;
  line-height: 2;
}

/* 回答のA */
.faq-list details p::before {
  content: "A";
  position: absolute;
  left: 10px;
  color: #567ea4;
  font-size: 19px;
}

/* スマホ表示 */
@media (max-width: 600px) {
  .faq-section {
    padding: 65px 20px;
  }

  .faq-list summary {
    padding: 20px 42px 20px 36px;
    font-size: 14px;
  }

  .faq-list summary::before,
  .faq-list details p::before {
    left: 2px;
  }

  .faq-list details p {
    padding: 0 8px 22px 36px;
    font-size: 13px;
  }
}

/* フッターの白文字を紺色に統一 */
.site-footer,
.site-footer p,
.site-footer span,
.site-footer small,
.site-footer strong,
.site-footer a {
  color: #17385f !important;
}

/* 説明文は少し濃くして読みやすく */
.site-footer .footer-message,
.site-footer .footer-information {
  color: #294d70 !important;
}

/* 補足文 */
.site-footer .footer-information small {
  color: #365b7d !important;
}

/* 販売所名の上にあるブルーベリー画像 */
.access-blueberry-icon {
  display: block;
  width: 105px;
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.access-card::before,
.access-title::before {
  display: none !important;
  content: none !important;
}

/* =========================
   農園写真カルーセル
========================= */

.farm-gallery {
  overflow: hidden;
  padding: 90px 0;
  color: #17385f;
  background: #f7fbfd;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

.farm-gallery__inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.farm-gallery__header {
  margin-bottom: 18px;
  text-align: center;
}

.farm-gallery__header p {
  margin: 0 0 7px;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.farm-gallery__header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.farm-gallery__header span {
  display: block;
  margin-top: 15px;
  font-size: 9px;
  opacity: 0.65;
}

.farm-gallery__lead {
  margin: 0 0 42px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.farm-carousel {
  position: relative;
}

.farm-carousel__viewport {
  overflow: hidden;
}

.farm-carousel__track {
  display: flex;
  gap: 22px;
  transition: transform 0.8s ease;
  will-change: transform;
}

.farm-carousel__slide {
  flex: 0 0 calc((100% - 44px) / 3);
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 56, 95, 0.09);
}

.farm-carousel__slide img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.farm-carousel__slide figcaption {
  min-height: 64px;
  padding: 19px 16px;
  color: #294d70;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

/* 左右ボタン */
.farm-carousel__button {
  position: absolute;
  top: 143px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  background: rgba(23, 56, 95, 0.88);
  border: 0;
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.farm-carousel__button:hover {
  opacity: 0.72;
}

.farm-carousel__button--prev {
  left: -21px;
}

.farm-carousel__button--next {
  right: -21px;
}

/* 下の小さな丸 */
.farm-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.farm-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  cursor: pointer;
  background: #b7cbd9;
  border: 0;
  border-radius: 50%;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.farm-carousel__dot.is-active {
  width: 23px;
  background: #17385f;
  border-radius: 10px;
}

/* スマホ */
@media (max-width: 700px) {
  .farm-gallery {
    padding: 65px 0;
  }

  .farm-gallery__inner {
    width: min(100% - 30px, 1100px);
  }

  .farm-gallery__lead {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .farm-carousel__track {
    gap: 14px;
  }

  .farm-carousel__slide {
    /* 次の写真が少し見える幅 */
    flex-basis: 86%;
  }

  .farm-carousel__slide img {
    height: 255px;
  }

  .farm-carousel__button {
    display: none;
  }
}

/* 動きを減らす設定の利用者には自動再生しない */
@media (prefers-reduced-motion: reduce) {
  .farm-carousel__track {
    transition: none;
  }
}

/* =========================
   私たちのこだわり
   「農園の風景」と雰囲気を統一
========================= */

.about-commitment {
  min-height: 760px;
  padding: 85px 80px;
  background: #f5f9fb;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

/* 見出し */
.about-commitment h2 {
  margin: 0 0 55px;
  color: #17385f;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-align: center;
}

/* PHOTO GALLERYのような小さな英字 */
.about-commitment h2::before {
  display: block;
  margin-bottom: 20px;
  color: #17385f;
  content: "OUR COMMITMENT";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.32em;
}

/* 見出し下のひし形 */
.about-commitment h2::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: 26px auto 0;
  background: #7895ad;
  content: "";
  transform: rotate(45deg);
}

/* 各項目 */
.commitment-list li {
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid rgba(113, 150, 183, 0.28);
}

.commitment-list li:last-child {
  border-bottom: 1px solid rgba(113, 150, 183, 0.28);
}

/* 01・02など */
.commitment-list span {
  color: #789fbe;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400 !important;
  line-height: 1;
}

/* 農薬不使用など */
.commitment-list h3 {
  margin: 0;
  color: #17385f;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400 !important;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* 説明文 */
.commitment-list p {
  margin: 7px 0 0;
  color: #8a776c;
  font-size: 17px;
  font-weight: 400 !important;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* 背景のブルーベリー飾りを控えめに */
.about-commitment::after {
  opacity: 0.07;
}

/* スマホ */
@media (max-width: 700px) {
  .about-commitment {
    min-height: auto;
    padding: 70px 25px;
  }

  .about-commitment h2 {
    margin-bottom: 38px;
    font-size: 32px;
  }

  .about-commitment h2::before {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .about-commitment h2::after {
    margin-top: 20px;
  }

  .commitment-list li {
    grid-template-columns: 52px 1fr;
    gap: 17px;
    padding: 22px 0;
  }

  .commitment-list span {
    font-size: 30px;
  }

  .commitment-list h3 {
    font-size: 24px;
  }

  .commitment-list p {
    font-size: 14px;
  }
}

/* =========================
   商品のご案内
   「農園の風景」と雰囲気を統一
========================= */

/* 商品案内の見出し */
.products h2 {
  margin: 0 0 48px;
  color: #17385f;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

/* 上部の小さな英字 */
.products h2::before {
  display: block;
  margin-bottom: 7px;
  content: "PRODUCTS";
  color: #17385f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24em;
}

/* 見出し下のひし形 */
.products h2::after {
  display: block;
  width: 7px;
  height: 7px;
  margin: 15px auto 0;
  content: "";
  background: #7895ad;
  transform: rotate(45deg);
}

/* 見出し横にある長い線を非表示にする */
.products .section-title::before,
.products .section-title::after {
  border: 0;
}

/* 生食用などの紺色ラベル */
.products h3 {
  color: #fff;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* 容量・価格 */
.products table,
.products td,
.products th {
  color: #17385f;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-weight: 400;
}

/* 背景と余白 */
.products {
  padding: 90px 0;
  background: #f7fbfd;
}

/* スマホ */
@media (max-width: 700px) {
  .products {
    padding: 65px 0;
  }

  .products h2 {
    margin-bottom: 35px;
    font-size: 32px;
  }

  .products h2::before {
    font-size: 10px;
  }

  .products h3 {
    font-size: 24px;
  }
}

/* 商品のご案内：実際のクラス名に合わせた修正 */
.price-guide .price-header h2 {
  margin: 0 !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 見出し下のひし形 */
.price-guide .heading-line {
  margin-top: 15px;
  font-size: 12px !important;
}

/* 見出し下の余白 */
.price-guide .price-header {
  margin-bottom: 48px;
}

/* スマホ */
@media (max-width: 700px) {
  .price-guide .price-header h2 {
    font-size: 26px !important;
  }

  .price-guide .heading-line {
    font-size: 10px !important;
  }
}

/* 商品のご案内と生食用の間隔を広げる */
.price-guide .price-header {
  margin-bottom: 80px !important;
}

@media (max-width: 700px) {
  .price-guide .price-header {
    margin-bottom: 55px !important;
  }
}

/* 販売所・アクセスの見出しを小さく統一 */
#access h2,
.access h2,
.shop-access h2,
.access-section h2 {
  margin: 0 !important;
  color: #17385f;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 30px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* SHOP & ACCESS */
#access .en-title,
.access .en-title,
.shop-access .en-title,
.access-section .en-title {
  margin-top: 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.28em;
}

/* スマホ */
@media (max-width: 700px) {
  #access h2,
  .access h2,
  .shop-access h2,
  .access-section h2 {
    font-size: 26px !important;
  }
}

/* ==================================
   サイト全体の文字・雰囲気を統一
================================== */

:root {
  --main-navy: #17385f;
  --sub-brown: #7f7169;
  --pale-blue: #f5f9fb;
}

/* サイト全体 */
body {
  color: var(--main-navy);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* 見出しをすべて細めの明朝体に */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--main-navy);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 大見出しの大きさを統一 */
section h2 {
  font-size: 30px !important;
}

/* 中見出し */
section h3 {
  font-size: 24px;
}

/* 通常の文章 */
p,
li,
td,
th,
address {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400;
}

/* 説明文は少し柔らかい色に */
p {
  color: var(--sub-brown);
}

/* ナビゲーション */
.global-nav a {
  color: var(--main-navy);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* ボタン */
a.button,
.button,
.btn,
button {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 小さな英字見出し */
.en-title,
.section-label,
.eyebrow {
  color: var(--main-navy);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* 商品価格表も統一 */
.price-guide,
.price-guide table,
.price-guide th,
.price-guide td {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
}

/* スマホ */
@media (max-width: 700px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  section h2 {
    font-size: 26px !important;
  }

  section h3 {
    font-size: 21px;
  }

  .en-title,
  .section-label,
  .eyebrow {
    font-size: 10px;
  }
}

/* =========================
   スクロールでふわっと表示
========================= */

/* JavaScriptが動いている場合だけ非表示にする */
.js .scroll-fade {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

/* 画面に入ったとき */
.js .scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 動きを減らす設定の方への配慮 */
@media (prefers-reduced-motion: reduce) {
  .js .scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 商品表の文字をサイト全体と統一 */
.price-guide,
.price-guide h3,
.price-guide table,
.price-guide th,
.price-guide td {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em;
}

/* 「生食用」の文字 */
.price-guide h3 {
  font-size: 26px !important;
  font-weight: 400 !important;
}

/* 容量・価格の文字 */
.price-guide th,
.price-guide td {
  color: #17385f;
  font-size: 26px !important;
  line-height: 1.5;
}

/* スマホ */
@media (max-width: 700px) {
  .price-guide h3 {
    font-size: 22px !important;
  }

  .price-guide th,
  .price-guide td {
    font-size: 21px !important;
  }
}

/* ==================================
   スマホ表示の文字を読みやすくする
================================== */
@media (max-width: 700px) {

  /* トップ画像全体 */
  .hero {
    position: relative;
    min-height: 100svh;
  }

  /* 背景画像の上に薄い白の膜を重ねる */
  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.22) 35%,
      rgba(255, 255, 255, 0.55) 100%
    );
    pointer-events: none;
  }

  /* 文字やボタンを膜より手前へ */
  .hero-copy,
  .hero-content,
  .hero-inner {
    position: relative;
    z-index: 2;
  }

  /* メインキャッチコピー */
  .hero-title,
  .hero-copy h1 {
    color: #0b3158 !important;
    font-size: clamp(25px, 7.2vw, 33px) !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    letter-spacing: 0.08em;
    text-shadow:
      0 1px 2px rgba(255, 255, 255, 0.95),
      0 0 12px rgba(255, 255, 255, 0.75);
  }

  /* 説明文 */
  .hero-copy p,
  .hero-description,
  .hero-text {
    color: #102f4c !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.9 !important;
    letter-spacing: 0.03em;
    text-shadow:
      0 1px 2px rgba(255, 255, 255, 1),
      0 0 8px rgba(255, 255, 255, 0.9);
  }

  /* 下部のボタン */
  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 70px;
    padding: 12px 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5;
    text-align: center;
    white-space: normal;
  }

  /* 右側の薄いボタンを明るくする */
  .hero-buttons a:last-child {
    color: #123b60 !important;
    background: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(18, 59, 96, 0.65) !important;
    backdrop-filter: blur(5px);
  }

  /* ロゴとメニューが重ならないように */
  .site-header {
    padding-right: 58px;
  }

  .site-logo,
  .logo {
    max-width: calc(100% - 45px);
  }
}

/* スマホ版「私たちのこだわり」を中央配置 */
@media (max-width: 700px) {
  .about-section {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .about-section .about-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  /* 写真を非表示にした後の余分な列をなくす */
  .about-section .about-photo {
   display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 300px !important;
  margin: 0 auto !important;
  overflow: hidden;
  }

  .about-section .about-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

  .about-section .about-commitment {
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
  }

  .about-commitment h2 {
    text-align: center !important;
  }

  .about-commitment .commitment-list {
    width: 100% !important;
    margin: 30px auto 0 !important;
    padding: 0 !important;
  }

  /* 実際のHTML構造に合わせた指定 */
  .about-commitment .commitment-list li {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 230px) !important;
    justify-content: center !important;
    align-items: start !important;
    column-gap: 16px !important;

    width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* 01・02など */
  .about-commitment .commitment-list li > span {
    width: auto !important;
    margin: 0 !important;
    text-align: center !important;
  }

  /* 見出しと説明文 */
  .about-commitment .commitment-list li > div {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .about-commitment .commitment-list h3,
  .about-commitment .commitment-list p {
    margin-left: 0 !important;
    text-align: left !important;
  }
}

/* スマホ：農園写真を少し右へ動かして中央に見せる */
@media (max-width: 700px) {
  .farm-carousel__track {
    padding-left: 12px !important;
    box-sizing: border-box !important;
  }
}

/* BLUEBERRY FARMをSunagaの真上へ配置 */
.brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.brand-name small {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
}

.brand-name strong {
  display: block;
  margin: 0;
  font-size: 36px;
  line-height: 1;
}

/* パソコン：トップのキャッチコピーを少し小さく */
@media (min-width: 701px) {
  .hero-title,
  .hero-copy h1 {
    font-size: clamp(36px, 4vw, 58px) !important;
  }
}

/* トップ見出しを必ず2行にする */
.hero-title span {
  display: block;
  white-space: nowrap;
}

/* パソコン */
@media (min-width: 701px) {
  .hero-title,
  .hero-copy h1 {
    font-size: clamp(34px, 4.5vw, 48px) !important;
    line-height: 1.65 !important;
    letter-spacing: 0.04em !important;
  }
}

/* スマホ */
@media (max-width: 700px) {
  .hero-title,
  .hero-copy h1 {
    font-size: clamp(22px, 6.5vw, 30px) !important;
    line-height: 1.7 !important;
    letter-spacing: 0.02em !important;
  }
}

/* ==================================
   トップとブログの間のお知らせ
================================== */
.news-bar {
  padding: 34px 6%;
  background: #fff;
}

.news-bar__inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;

  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 20px 4px;

  border-top: 1px solid #cbdce6;
  border-bottom: 1px solid #cbdce6;
}

.news-bar__label,
.news-bar__date,
.news-bar__text {
  margin: 0;
}

.news-bar__label {
  color: #143d61;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.news-bar__date {
  color: #7c8b94;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.news-bar__text {
  color: #263f53;
  font-size: 15px;
  line-height: 1.7;
}

.news-bar__link {
  color: #143d61;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.news-bar__link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.news-bar__link:hover span {
  transform: translateX(4px);
}

/* スマホ */
@media (max-width: 700px) {
  .news-bar {
    padding: 26px 20px;
  }

  .news-bar__inner {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 18px 2px;
  }

  .news-bar__label {
    grid-column: 1;
    grid-row: 1;
  }

  .news-bar__date {
    grid-column: 2;
    grid-row: 1;
  }

  .news-bar__text {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 5px;
    font-size: 14px;
  }

  .news-bar__link {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: end;
    margin-top: 5px;
  }
}

/* お知らせ・ブログ共通の見出し */
.section-heading {
  padding: 62px 20px 12px;
  text-align: center;
  background: #fff;
}

.section-heading h2 {
  margin: 0;
  color: #073b70;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.section-heading__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(625px, 80%);
  margin: 40px auto 28px;
}

.section-heading__line span {
  width: 100%;
  height: 1px;
  background: #6e94c4;
}

.section-heading__line i {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  background: #2e659f;
  transform: rotate(45deg);
}

.section-heading p {
  margin: 0;
  color: #6f8497;
  font-size: 16px;
  letter-spacing: 0.14em;
}

/* 見出しを付けた分、お知らせ上部の余白を調整 */
.section-heading + .news-bar {
  padding-top: 24px;
}

/* スマホ */
@media (max-width: 700px) {
  .section-heading {
    padding-top: 44px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading__line {
    gap: 12px;
    width: 88%;
    margin: 28px auto 20px;
  }

  .section-heading p {
    font-size: 14px;
  }
}

/* 下からふわっと表示 */
/* 下からふわっと表示 */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* 動きを減らす設定の端末でも非表示にしない */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

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

/* 下からふわっと表示 */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* 動きを減らす設定の端末でも非表示にしない */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* スマホではボタンを上下に並べる */
@media (max-width: 700px) {
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-buttons .button {
    width: 100%;
    min-height: 58px;
    box-sizing: border-box;
    padding: 15px 12px !important;
    font-size: 14px !important;
  }

  .hero-buttons .button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    transform: translateY(-20px);
  }
}

/* フッター・日本ブルーベリー協会 */
.footer-association {
  margin: 28px auto;
}

.footer-association a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}

.footer-association img {
  width: 72px !important;
  height: 72px !important;
  padding: 5px !important;
  object-fit: contain;
  background: #fff !important;
  border-radius: 8px !important;
}

.footer-association span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.footer-association a:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .footer-association a {
    flex-direction: column;
    gap: 10px;
  }

  .footer-association span {
    font-size: 13px;
    text-align: center;
  }
}

/* スマホメニューを必ず最前面に表示 */
@media (max-width: 760px) {
  .site-header {
    z-index: 9999 !important;
  }

  .menu-toggle {
    position: relative;
    z-index: 10001 !important;
    pointer-events: auto !important;
    cursor: pointer;
  }

  .global-nav {
    z-index: 10000 !important;
  }

  .global-nav.is-open {
    display: grid !important;
    gap: 4px;
  }
}

/* スマホ版：文字を上下の線の中央に配置 */
@media (max-width: 700px) {
  .about-commitment .commitment-list li {
    align-items: center !important;
    margin: 0 auto !important;
    padding: 22px 0 !important;
  }
}

/* =========================
   スマホ版メニューの調整
========================= */

@media (max-width: 700px) {
  .global-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 16px !important;
    left: auto !important;

    display: none !important;
    width: min(280px, calc(100vw - 32px)) !important;
    padding: 10px 20px !important;

    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(23, 56, 95, 0.15) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 28px rgba(23, 56, 95, 0.16) !important;
    box-sizing: border-box !important;
  }

  .global-nav.is-open {
    display: grid !important;
    gap: 0 !important;
  }

  .global-nav a {
    display: block !important;
    padding: 14px 6px !important;

    color: #17385f !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.08em !important;
    text-decoration: none !important;

    border-bottom: 1px solid rgba(23, 56, 95, 0.12) !important;
  }

  .global-nav a:last-child {
    border-bottom: 0 !important;
  }

  /* パソコン版の長い下線を消す */
  .global-nav a::after,
  .global-nav a:first-child::after {
    display: none !important;
    content: none !important;
  }
}

/* トップの文字を開いたときだけふんわり表示 */
.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-title-fade 1.2s ease forwards;
}

/* 2行目を少し遅らせる */
.hero-title span:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes hero-title-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 動きを減らす設定の端末ではアニメーションしない */
@media (prefers-reduced-motion: reduce) {
  .hero-title span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* トップの説明文もふんわり表示 */
.hero-copy > p {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-text-fade 1.2s ease 0.7s forwards;
}

@keyframes hero-text-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > p {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* スマホ版：タイトルと説明文だけ上へ */
@media (max-width: 700px) {
  .hero-title,
  .hero-copy > p {
    position: relative;
    top: -100px;
  }
}

/* スマホ版：タイトルと説明文に薄い霧 */
@media (max-width: 700px) {
  .hero-title,
  .hero-copy > p {
    position: relative;
    z-index: 1;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* タイトル後ろの薄い霧 */
  .hero-title::before {
    position: absolute;
    z-index: -1;
    top: -25px;
    right: -35px;
    bottom: -25px;
    left: -35px;

    content: "";
    pointer-events: none;

    background: rgba(255, 255, 255, 0.48);
    filter: blur(30px);
    border-radius: 50%;
  }

  /* 説明文後ろの薄い霧 */
  .hero-copy > p::before {
    position: absolute;
    z-index: -1;
    top: -35px;
    right: -45px;
    bottom: -35px;
    left: -45px;

    content: "";
    pointer-events: none;

    background: rgba(255, 255, 255, 0.55);
    filter: blur(30px);
    border-radius: 50%;
  }
}

/* フッターメニュー削除後の余白調整 */
.footer-association {
  margin-bottom: 48px;
}

.footer-copyright {
  margin-top: 0 !important;
}

@media (max-width: 600px) {
  .footer-association {
    margin-bottom: 42px;
  }
}