:root {
  --color-red: #bd0000;
  --color-red-dark: #8f0000;
  --color-red-bright: #e60012;
  --color-red-pale: #fff3f3;
  --color-black: #222222;
  --color-text: #333333;
  --color-muted: #666666;
  --color-border: #dddddd;
  --color-bg: #f8f8f8;
  --color-white: #ffffff;
  --color-line: #06c755;
  --container: 1280px;
  --font-base: "メイリオ", "Meiryo", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  --font-heading: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(189, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 103px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
}

.global-nav__item--has-children {
  position: relative;
}

.global-nav__children {
  display: none;
}

.global-nav__list a {
  position: relative;
  transition: color 0.2s ease;
}

.global-nav__list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.global-nav__list a:hover {
  color: var(--color-red);
}

.global-nav__list a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button::after {
  content: "＞";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.button:hover {
  box-shadow: 0 10px 22px rgba(80, 0, 0, 0.18);
  transform: translateY(-3px);
}

.button:hover::after {
  transform: translateX(5px);
}

.button--primary,
.button--header {
  background: var(--color-red);
  color: var(--color-white);
}

.button--primary:hover,
.button--header:hover {
  background: var(--color-red-dark);
}

.button--header {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 13px;
}

.button--outline {
  border: 1px solid var(--color-red);
  background: var(--color-white);
  color: var(--color-red);
}

.button--outline:hover {
  background: var(--color-red-pale);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-red);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--color-red-dark);
  transform: translateX(2px);
}

.text-link:hover::after {
  transform: translateX(5px) rotate(45deg);
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 34px;
}

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

.section-heading__label {
  margin-bottom: 8px;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.section-heading__title {
  position: relative;
  padding-bottom: 16px;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
}

.section-heading__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 4px;
  background: var(--color-red);
}

.line-cta {
  padding: 68px 0;
  background: linear-gradient(135deg, #08b94f 0%, var(--color-line) 55%, #11a84c 100%);
  color: var(--color-white);
}

.line-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 28px;
}

.line-cta__label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
}

.line-cta__inner > div {
  display: grid;
  justify-items: flex-start;
  text-align: left;
}

.line-cta h2 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}

.line-cta h2 span {
  display: block;
}

.line-cta p {
  margin-bottom: 24px;
}

.line-cta h2 + p {
  font-weight: normal;
}

.line-cta__qr {
  width: 220px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.line-cta__qr img {
  width: 100%;
  height: auto;
}

.button--line {
  background: var(--color-white);
  color: #079c43;
}

.site-footer {
  padding: 44px 0 28px;
  background: #2a2a2a;
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  gap: 24px;
}

.site-logo--footer {
  width: fit-content;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #eeeeee;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.copyright {
  color: #cccccc;
  font-size: 13px;
}
