:root {
  --ink: #1d2935;
  --navy: #12385b;
  --navy-deep: #0a2238;
  --green: #17875f;
  --green-dark: #0e6848;
  --mint: #eaf7ef;
  --sky: #e9f3f7;
  --yellow: #f6c84f;
  --coral: #d9664f;
  --muted: #617284;
  --line: #d9e4e8;
  --paper: #f7faf8;
  --white: #ffffff;
  --shadow: 0 22px 52px rgba(18, 56, 91, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: var(--white);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 84px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: height 0.28s ease, color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.site-header-light {
  height: 72px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(18, 56, 91, 0.1);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), #28a978 68%, var(--yellow));
  border-radius: 50%;
}

.site-header .logo-mark,
.footer-logo .logo-mark {
  font-size: 0;
  background: url("../images/logo-mark.png") center / contain no-repeat;
  border-radius: 0;
}

.logo-text {
  display: grid;
  line-height: 1.1;
}

.logo-text span {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.logo-text small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.74;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 800;
}

.global-nav .nav-brand {
  display: none;
}

.global-nav a {
  position: relative;
  white-space: nowrap;
}

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

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav .nav-contact {
  padding: 10px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.global-nav .nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 25;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(10, 34, 56, 0.12), rgba(10, 34, 56, 0.28)),
    url("../images/others/golf08.webp") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.9) 0%, rgba(18, 56, 91, 0.68) 50%, rgba(18, 56, 91, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 34, 56, 0.5), rgba(10, 34, 56, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 126px 0 96px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9de4c4;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.65rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.hero h1 span:first-child {
  display: block;
}

.phrase-line {
  display: inline;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 12px 24px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button::after {
  margin-left: 10px;
  content: "→";
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-points {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: min(620px, calc(100% - 36px));
}

.hero-points span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1.34;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.52rem;
  line-height: 1.45;
}

.lead-section {
  border-bottom: 1px solid var(--line);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: start;
}

.lead-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-body p + p {
  margin-top: 18px;
}

.signature {
  display: inline-grid;
  gap: 3px;
  margin-top: 30px;
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.signature span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature strong {
  color: var(--navy);
  font-size: 1.18rem;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-note {
  /*max-width: 350px;*/
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.product-section {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 392px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(23, 135, 95, 0.36);
  box-shadow: var(--shadow);
}

.product-card img,
.placeholder-visual {
  height: 190px;
  object-fit: cover;
  background: var(--sky);
}

.product-card-large {
  grid-column: span 2;
}

.product-card-large img {
  height: 240px;
}

.product-card h3 {
  margin: 24px 24px 0;
}

.product-card p {
  margin: 12px 24px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: auto 24px 24px;
  color: var(--green);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.product-card em::after {
  content: "→";
}

.product-card-muted {
  background: var(--paper);
}

.placeholder-visual {
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  min-height: 620px;
  background: var(--navy);
}

.feature-image {
  min-height: 480px;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.86);
}

.feature-content .section-label {
  color: #9de4c4;
}

.feature-content h2 {
  color: var(--white);
}

.feature-content p {
  margin: 22px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.detail-section {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

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

.detail-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.highlight-card {
  border-color: rgba(246, 200, 79, 0.85);
  background: linear-gradient(135deg, #fffaf0, #ffffff 48%);
}

.muted-card {
  background: var(--paper);
}

.detail-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  background: var(--navy);
  border-radius: 50%;
}

.detail-kicker {
  margin: 0 0 5px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-content p:not(.detail-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-list span {
  padding: 6px 11px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--sky);
  border-radius: 999px;
}

.highlight-card .tag-list span {
  background: #fff0bf;
}

.news-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
  /*background:
    linear-gradient(90deg, rgba(18, 56, 91, 0.06) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);*/
}

.news-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 46px;
}

.news-head .section-label {
  color: var(--green);
}

.news-links {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  font-size: 1rem;
  font-weight: 800;
}

.news-links-mobile {
  display: none;
}

.news-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-links a::after {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--green);
  border-radius: 50%;
  content: "›";
}

.news-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
}

.news-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 12px 26px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  background: #edf1f3;
  border-radius: var(--radius);
}

.news-tabs a.is-active {
  color: var(--white);
  background: var(--ink);
}

.news-list {
  border-top: 1px solid rgba(29, 41, 53, 0.36);
}

.news-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 42px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid rgba(29, 41, 53, 0.36);
}

.news-item time {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(29, 41, 53, 0.36);
}

.news-item span {
  color: var(--ink);
  font-size: clamp(1.03rem, 1.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.65;
}

.news-item:hover span,
.news-item:focus-visible span {
  color: var(--green);
}

.blog-page {
  padding-top: 72px;
  background: var(--white);
}

.blog-hero {
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.94), rgba(18, 56, 91, 0.52)),
    url("../images/others/golf08.webp") center / cover;
}

.blog-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 420px;
  margin: 0 auto;
  padding: 54px 0;
}

.blog-hero .breadcrumb {
  margin-bottom: 32px;
}

.blog-hero .section-label {
  color: #9de4c4;
}

.blog-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 4.7vw, 3.6rem);
  line-height: 1.2;
}

.blog-hero-inner > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.blog-archive-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.blog-archive-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.blog-archive-head > p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.blog-archive-list {
  border-top: 1px solid rgba(29, 41, 53, 0.32);
}

.blog-archive-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 42px;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 154px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(29, 41, 53, 0.32);
}

.blog-archive-meta {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 80px;
  padding-right: 28px;
  border-right: 1px solid rgba(29, 41, 53, 0.26);
}

.blog-archive-meta time {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.blog-archive-meta span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  background: var(--mint);
  border-radius: 4px;
}

.blog-archive-body h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}

.blog-archive-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.blog-archive-item > i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-style: normal;
  line-height: 1;
  background: var(--green);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.blog-archive-item:hover h2,
.blog-archive-item:focus-visible h2 {
  color: var(--green-dark);
}

.blog-archive-item:hover > i,
.blog-archive-item:focus-visible > i {
  background: var(--green-dark);
  transform: translateX(3px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .global-nav {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 680px) {
  .blog-page {
    padding-top: 68px;
  }

  .blog-hero,
  .blog-hero-inner {
    min-height: 390px;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-archive-section {
    width: min(100% - 32px, var(--max));
    padding: 68px 0 78px;
  }

  .blog-archive-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .blog-archive-head > p {
    text-align: left;
  }

  .blog-archive-item {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 16px;
    min-height: 0;
    padding: 30px 0;
  }

  .blog-archive-meta {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    gap: 14px;
    min-height: 0;
    padding: 0;
    border-right: 0;
  }

  .blog-archive-body p {
    margin-top: 8px;
  }

  .blog-archive-item > i {
    align-self: center;
    width: 32px;
    height: 32px;
  }
}

.news-article {
  background: var(--white);
}

.news-article-hero {
  width: min(100% - 40px, 1060px);
  margin: 0 auto;
  padding: 148px 0 72px;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.news-breadcrumb span::before {
  margin-right: 8px;
  color: var(--green);
  content: "/";
}

.news-article-label {
  margin: 0 0 18px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-article-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.6vw, 2.6rem);
  line-height: 1.28;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.news-meta time {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-meta span {
  padding: 6px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--green);
  border-radius: 999px;
}

.news-article-body {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 0 0 96px;
}

.news-lead {
  margin: 0 0 44px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 800;
  line-height: 1.9;
}

.news-article-body h2 {
  margin: 52px 0 18px;
  padding-left: 18px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 1.5rem);
  border-left: 4px solid var(--green);
}

.news-article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.news-article-body p + p {
  margin-top: 18px;
}

.news-article-body ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.news-article-body li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.news-article-body li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.news-info-box {
  margin-top: 52px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-info-box h2 {
  margin-top: 0;
}

.news-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.sub-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.sub-hero::before,
.sub-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.sub-hero::before {
  background:
    linear-gradient(rgba(10, 34, 56, 0.14), rgba(10, 34, 56, 0.26)),
    var(--sub-hero-image, url("../images/others/golf08.webp")) center / cover;
  transform: scale(1.02);
}

.sub-hero::after {
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.88) 0%, rgba(18, 56, 91, 0.66) 58%, rgba(18, 56, 91, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 34, 56, 0.48), rgba(10, 34, 56, 0));
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 520px;
  margin: 0 auto;
  padding: 126px 0 72px;
}

.sub-hero .section-label {
  color: #9de4c4;
}

.sub-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 2.7rem);
  line-height: 1.18;
}

.sub-hero p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
}

.subpage-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.38fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 26px;
}

.product-detail-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.content-panel {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-panel h2 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.content-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 700;
}

.spec-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.product-lineup {
  display: grid;
  gap: 28px;
}

.product-lineup-head {
    display: none;
  /*display: grid;*/
  gap: 10px;
}

.product-lineup-head h2 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.product-lineup-head p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.product-lineup-list {
  display: grid;
  gap: 44px;
}

.product-lineup-item {
  display: grid;
  gap: 26px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.product-lineup-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-lineup-summary {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-lineup-summary h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.35;
}

.product-lineup-summary p {
  margin: 16px 0 0;
  color: var(--muted) !important;
  font-weight: 500;
  line-height: 1.9;
}

.product-lineup-copy {
  color: var(--ink) !important;
  font-weight: 800;
}

.product-lineup-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-lineup-points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.75;
}

.product-lineup-points li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.product-lineup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 26px;
}

.product-lineup-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 18px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
  background: #eaf4f8;
  border-radius: 999px;
}

.product-lineup-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.product-lineup-gallery figure {
  margin: 0;
}

.product-lineup-gallery img {
  width: 100%;
  height: 100%;
  /*aspect-ratio: 4 / 3;*/
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.product-lineup-gallery[data-image-count="1"] {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.product-lineup-pdf {
  display: grid;
  gap: 18px;
  justify-items: end;
  text-align: right;
}

.product-lineup-pdf p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.product-lineup-pdf .button {
  width: auto;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-panel h2 {
  font-size: 1.28rem;
}

.side-panel p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.side-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.side-links a {
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-links a[aria-current="page"] {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.product-document img {
  display: block;
  width: 100%;
  height: auto;
}

.product-document-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-document-images.is-single {
  grid-template-columns: 1fr;
}

.product-document-images.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-document p {
  margin: 22px 0 18px;
  color: var(--muted);
  text-align: right;
}

.product-document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.product-document-divider {
  width: 100%;
  margin: 12px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.product-resources[hidden] {
  display: none;
}

.product-resources {
  padding: 88px 20px;
  background: var(--paper);
}

.product-resources-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.product-resources-inner > h2 {
  margin-top: 8px;
}

.product-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.product-resources-grid.is-single {
  grid-template-columns: minmax(0, 720px);
}

.resource-card {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resource-card h3 {
  font-size: 1.28rem;
}

.resource-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: calc(var(--radius) - 4px);
}

.resource-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-pdf {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resource-pdf-preview {
  width: 100%;
  max-height: 680px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
}

.resource-pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--coral);
  border-radius: 4px;
}

.resource-pdf p {
  margin: 14px 0 26px;
  color: var(--muted);
}

.resource-pdf .button {
  margin-top: auto;
}

.faq-section {
  padding: 88px 20px;
  background: var(--white);
}

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

.faq-inner > h2 {
  margin-top: 8px;
}

.faq-list {
  margin-top: 36px;
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 20px 4px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 3px solid rgba(23, 135, 95, 0.22);
  outline-offset: 4px;
}

.faq-question {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.faq-question b {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.28rem;
}

.faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--green);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  content: "";
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 60px 28px 48px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.related-section {
  padding: 88px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.related-card {
  min-height: 392px;
}

.company-section {
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.96), rgba(247, 250, 248, 0.82)),
    url("../images/others/golf09.webp") center / cover;
}

.company-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.company-copy p:not(.section-label) {
  margin: 20px 0 0;
  color: var(--muted);
}

.company-detail {
  display: grid;
  gap: 22px;
}

.company-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

.company-list {
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 56, 91, 0.1);
}

.company-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.company-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.company-list div:last-child {
  padding-bottom: 0;
}

.company-list dt {
  color: var(--navy);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  color: var(--muted);
}

.company-list a {
  color: var(--green);
  font-weight: 800;
}

.career-list div {
  grid-template-columns: 190px 1fr;
}

.company-page {
  padding-top: 72px;
  background: var(--paper);
}

.company-hero {
  min-height: 440px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.92), rgba(18, 56, 91, 0.5)),
    url("../images/others/golf09.webp") center / cover;
}

.company-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 440px;
  margin: 0 auto;
  padding: 56px 0;
}

.company-hero .breadcrumb {
  margin-bottom: 34px;
}

.company-hero .section-label {
  color: #9de4c4;
}

.company-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4.7vw, 3.6rem);
  line-height: 1.2;
}

.company-hero-inner > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
}

.company-message-section,
.company-profile-section,
.representative-section {
  padding: 96px 20px;
}

.company-message-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.company-message-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 92px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.company-message-body {
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper);
  border-radius: var(--radius);
}

.company-message-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.company-message-body p + p {
  margin-top: 20px;
}

.company-message-signature {
  margin-top: 34px;
}

.company-profile-layout,
.representative-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 92px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.company-profile-intro,
.representative-heading {
  /*position: sticky;*/
  top: 110px;
}

.company-profile-intro > p:not(.section-label),
.representative-heading > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.company-profile-intro .button {
  margin-top: 30px;
}

.company-profile-table > h2 {
  display: block;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
}

.representative-section {
  background: var(--white);
}

.representative-history .company-list {
  box-shadow: none;
}

.company-contact-section {
  margin-top: 0;
}

@media (max-width: 980px) {
  .company-message-layout,
  .company-profile-layout,
  .representative-layout {
    grid-template-columns: 1fr;
  }

  .company-profile-intro,
  .representative-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .company-page {
    padding-top: 68px;
  }

  .company-hero,
  .company-hero-inner {
    min-height: 400px;
  }

  .company-hero h1 {
    font-size: 2.15rem;
  }

  .company-message-section,
  .company-profile-section,
  .representative-section {
    padding: 68px 16px;
  }

  .company-message-body {
    padding: 28px 22px;
  }

  .company-profile-intro h2 {
    font-size: 1.9rem;
  }

  .company-profile-table .company-list,
  .representative-history .company-list {
    padding: 26px 20px;
  }

  .company-profile-table .company-list div,
  .representative-history .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.contact-section {
  padding: 112px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.93), rgba(18, 56, 91, 0.72)),
    url("../images/others/golf11.webp") center / cover;
}

.contact-inner {
  width: min(100%, 840px);
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-label {
  color: #9de4c4;
}

.contact-inner h2 {
  color: var(--white);
}

.contact-inner p {
  margin: 22px auto 34px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button-phone {
  min-width: 240px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.button-phone::after {
  content: none;
}

.contact-phone-desktop {
  cursor: default;
}

.contact-phone-desktop:hover {
  transform: none;
}

.contact-phone-mobile {
  display: none;
}

.contact-page {
  padding-top: 72px;
  background: var(--paper);
}

.contact-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.92), rgba(18, 56, 91, 0.54)),
    url("../images/others/golf10.webp") center / cover;
}

.contact-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 460px;
  margin: 0 auto;
  padding: 56px 0;
}

.contact-hero .breadcrumb {
  margin-bottom: 34px;
}

.contact-hero .section-label {
  color: #9de4c4;
}

.contact-hero h1 {
  max-width: 850px;
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4.7vw, 3.6rem);
  line-height: 1.2;
}

.contact-hero-inner > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
}

.contact-form-section {
  padding: 96px 20px 112px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 5vw, 70px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.contact-form-wrap {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 28px;
  margin-top: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label,
.consent-field {
  color: var(--navy);
  font-weight: 800;
}

.required-mark {
  display: inline-block;
  margin-left: 6px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid #bccbd1;
  border-radius: 4px;
}

.form-field select {
  min-height: 64px;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}

.form-field textarea {
  min-height: 190px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(23, 135, 95, 0.18);
  border-color: var(--green);
}

.form-field-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.94rem;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--green);
}

.consent-field a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .snow-monkey-form,
.contact-form .smf-form {
  display: grid;
  gap: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.contact-form .smf-form *,
.contact-form .snow-monkey-form * {
  font-family: inherit;
}

.contact-form .smf-item {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-form .smf-item__col {
  display: grid;
  gap: 9px;
}

.contact-form .smf-item__col--controls,
.contact-form .smf-item__controls,
.contact-form .smf-control,
.contact-form .smf-select-control {
  width: 100%;
}

.contact-form .smf-item__label {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-form .smf-item__label__required,
.contact-form .smf-item__label__optional {
  display: inline-block !important;
  margin-left: 0;
  padding: 0;
  color: var(--coral) !important;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  vertical-align: baseline;
}

.contact-form .smf-item__label__optional {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-form .smf-item:has(input[required], select[required], textarea[required], input[aria-required="true"], select[aria-required="true"], textarea[aria-required="true"]):not(:has(.smf-item__label__required)) .smf-item__label::after {
  display: inline-block;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  content: "必須";
}

.contact-form .smf-item__description,
.contact-form .smf-item__description p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-form .smf-text-control__control,
.contact-form .smf-email-control__control,
.contact-form .smf-tel-control__control,
.contact-form .smf-url-control__control,
.contact-form .smf-number-control__control,
.contact-form .smf-select-control__control,
.contact-form .smf-textarea-control__control,
.contact-form .smf-file-control__control,
.contact-form .smf-date-control__control,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid #bccbd1;
  border-radius: 4px;
  box-shadow: none;
}

.contact-form .smf-select-control__control,
.contact-form select {
  display: block;
  width: 100%;
  min-height: 64px;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}

.contact-form .smf-textarea-control__control,
.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form .smf-text-control__control:focus,
.contact-form .smf-email-control__control:focus,
.contact-form .smf-tel-control__control:focus,
.contact-form .smf-url-control__control:focus,
.contact-form .smf-number-control__control:focus,
.contact-form .smf-select-control__control:focus,
.contact-form .smf-textarea-control__control:focus,
.contact-form .smf-date-control__control:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(23, 135, 95, 0.18);
  border-color: var(--green);
}

.contact-form .smf-checkbox-control,
.contact-form .smf-radio-button-control {
  display: inline-flex;
  align-items: flex-start;
  max-width: 100%;
}

.contact-form .smf-checkboxes-control,
.contact-form .smf-radio-buttons-control {
  display: grid;
  gap: 14px;
}

.contact-form .smf-checkbox-control__control,
.contact-form .smf-radio-button-control__control {
  appearance: none;
  width: 24px;
  height: 24px;
  margin: 0 14px 0 0;
  background: var(--white);
  border: 2px solid #8a8f94;
  border-radius: 7px;
  accent-color: var(--green);
  vertical-align: -0.42em;
}

.contact-form .smf-radio-button-control__control {
  border-radius: 50%;
}

.contact-form .smf-checkbox-control__control:checked,
.contact-form .smf-radio-button-control__control:checked {
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 4px var(--white);
}

.contact-form .smf-checkbox-control__label,
.contact-form .smf-radio-button-control__label {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.7;
}

.contact-form .smf-checkbox-control__label a,
.contact-form .smf-radio-button-control__label a,
.contact-form .smf-placeholder a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .smf-checkbox-control__label .smf-item__label__required,
.contact-form .smf-radio-button-control__label .smf-item__label__required {
  margin-left: 18px;
}

.contact-form .smf-checkbox-control:has(input[required], input[aria-required="true"]):not(:has(.smf-item__label__required)) .smf-checkbox-control__label::after,
.contact-form .smf-radio-button-control:has(input[required], input[aria-required="true"]):not(:has(.smf-item__label__required)) .smf-radio-button-control__label::after {
  display: inline-block;
  margin-left: 18px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  content: "必須";
}

.contact-form .smf-error-messages {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding: 0;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.contact-form .smf-system-error-content,
.contact-form .smf-complete-content {
  margin: 0;
  padding: 18px 20px;
  color: var(--green-dark);
  font-weight: 800;
  background: var(--mint);
  border: 1px solid rgba(23, 135, 95, 0.22);
  border-radius: var(--radius);
}

.contact-form .smf-system-error-content {
  color: var(--coral);
  background: #fff4f1;
  border-color: rgba(217, 102, 79, 0.28);
}

.contact-form .smf-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.contact-form .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 64px;
  padding: 16px 34px;
  color: var(--white);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-form .smf-button-control__control:hover,
.contact-form .smf-button-control__control:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.contact-form .smf-button-control__control[data-action="back"],
.contact-form .smf-button-control__control[name="back"] {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--green);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  flex: 1 1 280px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-sidebar {
  display: grid;
  gap: 34px;
}

.contact-phone,
.contact-topics {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-phone h2,
.contact-topics h2 {
  font-size: 1.28rem;
  line-height: 1.45;
}

.contact-phone > p:not(.section-label) {
  margin: 16px 0 22px;
  color: var(--muted);
}

.contact-phone a {
  display: grid;
  gap: 2px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-phone-number {
  color: var(--green-dark);
  font-size: 1.42rem;
  font-weight: 800;
}

.contact-phone-number-desktop,
.contact-phone-number-line {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-phone-number svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-phone .contact-phone-number-mobile {
  display: none;
}

.contact-phone-number small {
  margin-left: 32px;
  font-size: 0.72rem;
}

.contact-phone a span {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.3;
}

.contact-phone a small {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-topics ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-topics li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.contact-topics li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.policy-page {
  padding-top: 72px;
  background: var(--white);
}

.policy-hero {
  min-height: 390px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 56, 0.94), rgba(18, 56, 91, 0.58)),
    url("../images/others/golf11.webp") center / cover;
}

.policy-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  min-height: 390px;
  margin: 0 auto;
  padding: 52px 0;
}

.policy-hero .breadcrumb {
  margin-bottom: 30px;
}

.policy-hero .section-label {
  color: #9de4c4;
}

.policy-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 4.7vw, 3.35rem);
  line-height: 1.2;
}

.policy-hero-inner > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.policy-section {
  padding: 92px 20px 112px;
}

.policy-content {
  width: min(100%, 900px);
  min-width: 0;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.policy-lead {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.policy-content section {
  padding-top: 46px;
  scroll-margin-top: 90px;
}

.policy-content h2 {
  padding-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  border-bottom: 2px solid var(--green);
}

.policy-content p,
.policy-content ul {
  margin: 18px 0 0;
  color: var(--muted);
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.4em;
}

.policy-contact a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-contact {
  margin-top: 20px;
  padding: 24px;
  color: var(--muted);
  font-style: normal;
  background: var(--paper);
  border-left: 4px solid var(--green);
}

.policy-contact strong {
  color: var(--navy);
}

.policy-date {
  padding-top: 48px;
  text-align: right;
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .policy-page {
    padding-top: 68px;
  }

  .policy-hero,
  .policy-hero-inner {
    min-height: 360px;
  }

  .policy-hero h1 {
    font-size: 2rem;
    overflow-wrap: anywhere;
  }

  .policy-section {
    padding: 64px 16px 76px;
  }

  .policy-content section {
    padding-top: 40px;
  }

  .policy-contact {
    padding: 20px 18px;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-deep);
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .contact-page {
    padding-top: 68px;
  }

  .contact-hero,
  .contact-hero-inner {
    min-height: 430px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-form-section {
    padding: 64px 16px 76px;
  }

  .form-row,
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap,
  .contact-phone,
  .contact-topics {
    padding: 26px 20px;
  }

  .contact-phone h2,
  .contact-topics h2 {
    font-size: 1.16rem;
  }

  .contact-heading h2 {
    font-size: 1.75rem;
  }

  .form-actions {
    align-items: stretch;
  }

  .contact-form .smf-action {
    align-items: stretch;
  }

  .contact-form .smf-button-control,
  .contact-form .smf-button-control__control {
    width: 100%;
  }

  .form-actions .button {
    width: 100%;
  }

  .contact-phone-number-desktop {
    display: none;
  }

  .contact-phone .contact-phone-number-mobile {
    display: grid;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 24px 32px 40px;
    color: var(--navy);
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.admin-bar .global-nav {
    top: 32px;
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
  }

  .global-nav .nav-brand {
    display: inline-flex;
    width: calc(100% - 64px);
    min-height: 52px;
    margin-bottom: 24px;
    padding: 0;
    border-bottom: 0;
  }

  .global-nav .nav-brand::after {
    display: none;
  }

  .global-nav .nav-brand .logo-text span {
    font-size: 1rem;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 16px 34px 16px 0;
    font-size: 1.08rem;
    border-bottom: 1px solid rgba(18, 56, 91, 0.16);
  }

  .global-nav a::after {
    right: 2px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    color: var(--green);
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    transform: none;
    transform-origin: center;
    transition: transform 0.2s ease;
    content: ">";
  }

  .global-nav a:hover::after,
  .global-nav a:focus-visible::after {
    transform: translateX(3px);
  }

  .global-nav .nav-contact {
    margin-top: 0;
    padding: 16px 34px 16px 0;
    color: var(--navy);
    font-size: 1.08rem;
    background: transparent;
    border-radius: 0;
  }

  .global-nav .nav-contact::after {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 34, 56, 0.9) 0%, rgba(18, 56, 91, 0.66) 74%, rgba(18, 56, 91, 0.38) 100%),
      linear-gradient(0deg, rgba(10, 34, 56, 0.56), rgba(10, 34, 56, 0));
  }

  .lead-grid,
  .feature-band,
  .company-inner,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-card {
    grid-template-columns: 32% 1fr;
    height: 180px;
  }

  .news-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-links {
    justify-content: flex-start;
  }

  .news-item {
    grid-template-columns: 160px 1fr;
    gap: 28px;
  }

  .side-panel {
    position: static;
  }

  .feature-band {
    min-height: auto;
  }

  .feature-image {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: 68px;
    padding: 0 18px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text span {
    font-size: 0.92rem;
  }

  .logo-text small {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11vw, 3.35rem);
  }

  .phrase-line {
    display: block;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-actions {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 76px 0;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.36rem);
  }

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

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

  .product-resources {
    padding: 68px 16px;
  }

  .product-resources-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .resource-card {
    padding: 22px 18px;
  }

  .product-document-images,
  .product-document-images.is-three {
    grid-template-columns: 1fr;
  }

  .product-document p {
    text-align: left;
  }

  .product-document-links {
    justify-content: flex-start;
  }

  .product-lineup-list {
    gap: 36px;
  }

  .product-lineup-item {
    gap: 22px;
    padding-bottom: 36px;
  }

  .product-lineup-summary {
    padding: 24px 18px;
  }

  .product-lineup-summary h3 {
    font-size: 1.7rem;
  }

  .product-lineup-gallery {
    grid-template-columns: 1fr;
  }

  .product-lineup-pdf {
    justify-items: start;
    text-align: left;
  }

  .product-lineup-pdf .button {
    width: 100%;
  }

  .faq-section {
    padding: 68px 16px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 14px;
    min-height: 78px;
    padding: 18px 0;
    font-size: 1rem;
  }

  .faq-question {
    gap: 10px;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 4px 24px 36px;
  }

  .news-section {
    width: min(100% - 32px, var(--max));
    padding: 76px 0;
    background:
      linear-gradient(90deg, rgba(18, 56, 91, 0.06) 1px, transparent 1px) 0 0 / 25% 100%,
      var(--white);
  }

  .news-head {
    gap: 26px;
    margin-bottom: 30px;
  }

  .news-head .news-links {
    display: none;
  }

  .news-links-mobile {
    display: grid;
    justify-content: stretch;
    gap: 18px;
    margin-top: 34px;
    font-size: 1.02rem;
  }

  .news-links a {
    width: 100%;
    justify-content: flex-end;
  }

  .news-tabs {
    gap: 10px;
    margin-bottom: 26px;
  }

  .news-tabs a {
    min-width: 0;
    min-height: 56px;
    padding: 12px 22px;
    font-size: 1.02rem;
  }

  .news-item {
    display: block;
    min-height: auto;
    padding: 28px 0;
  }

  .news-item time {
    display: block;
    min-height: auto;
    margin-bottom: 16px;
    font-size: 0.98rem;
    border-right: 0;
  }

  .news-item span {
    display: block;
    font-size: 1.16rem;
    line-height: 1.75;
  }

  .news-article-hero,
  .news-article-body {
    width: min(100% - 32px, var(--max));
  }

  .news-article-hero {
    padding: 110px 0 58px;
  }

  .news-breadcrumb {
    margin-bottom: 32px;
  }

  .news-meta {
    margin-top: 26px;
  }

  .news-article-body {
    padding-bottom: 74px;
  }

  .product-card,
  .product-card-large {
    grid-column: auto;
    min-height: auto;
  }

  .product-card img,
  .product-card-large img,
  .placeholder-visual {
    height: 210px;
  }

  .feature-content {
    padding: 58px 22px;
  }

  .sub-hero,
  .sub-hero-inner {
    min-height: 500px;
  }

  .sub-hero-inner,
  .subpage-section {
    width: min(100% - 32px, var(--max));
  }

  .subpage-section {
    padding: 72px 0;
  }

  .content-panel,
  .side-panel {
    padding: 24px 20px;
  }

  .related-card {
    grid-template-columns: 118px 1fr;
    height: auto;
    min-height: 150px;
  }

  .related-card img {
    min-height: 150px;
  }

  .related-card div {
    padding: 20px 18px;
  }

  .related-card h3 {
    font-size: 1.12rem;
  }

  .related-card p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .detail-number {
    width: 50px;
    height: 50px;
  }

  .company-section {
    padding: 72px 16px;
  }

  .company-list {
    padding: 24px 20px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section {
    padding: 82px 16px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-phone-desktop {
    display: none;
  }

  .contact-phone-mobile {
    display: inline-flex;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
