
:root {
  --orange: #F26419;
  --green: #173F2A;
  --green-dark: #0F3425;
  --green-soft: #EAF4ED;
  --cream: #FBF8F3;
  --white: #FFFFFF;
  --text: #20352B;
  --muted: #6B756C;
  --border: #E6DED1;
  --shadow: 0 22px 60px rgba(23,63,42,0.08);
  --radius: 18px;
  --font-body: 'Noto Sans JP', 'DM Sans', sans-serif;
  --font-display: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100svh;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.page-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,248,243,0.90);
  border-bottom: 1px solid rgba(230,222,209,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.page-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.page-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
}
.menu-wrap { position: relative; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23,63,42,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  color: var(--green);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(23,63,42,0.06);
}
.menu-lines {
  width: 18px;
  height: 12px;
  display: inline-grid;
  gap: 3px;
}
.menu-lines span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
}
.site-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1000;
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(230,222,209,0.95);
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.menu-wrap.is-open .site-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}
.site-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.site-dropdown a:hover,
.site-dropdown a[aria-current="page"] {
  background: var(--green-soft);
  transform: translateX(2px);
}
.menu-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(23,63,42,0.10), rgba(242,100,25,0.10));
  border: 1px solid rgba(23,63,42,0.14);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.menu-title {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}
.menu-desc {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.page-main { padding-top: 72px; }
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.98) 0%, rgba(251,248,243,0.94) 54%, rgba(235,246,240,0.92) 100%);
  box-shadow: inset 0 -110px 86px rgba(251,248,243,0.30);
}
.page-hero--mission {
  background:
    linear-gradient(105deg, rgba(255,255,255,0.98) 0%, rgba(250,252,249,0.92) 44%, rgba(236,247,245,0.68) 100%),
    url(backgrounds/gold-coast-aerial-soft.jpg) center 42% / cover no-repeat;
}
.page-hero--story {
  background:
    linear-gradient(103deg, rgba(255,255,255,0.98) 0%, rgba(255,249,240,0.90) 46%, rgba(247,226,207,0.54) 100%),
    url(backgrounds/gold-coast-twilight.jpg) center 52% / cover no-repeat;
}
.page-hero--position {
  background:
    linear-gradient(104deg, rgba(255,255,255,0.98) 0%, rgba(246,251,249,0.90) 45%, rgba(225,241,244,0.56) 100%),
    url(backgrounds/gold-coast-beach-skyline.jpg) center 56% / cover no-repeat;
}
.page-hero--future {
  background:
    linear-gradient(104deg, rgba(255,255,255,0.98) 0%, rgba(245,250,247,0.90) 44%, rgba(220,240,238,0.58) 100%),
    url(backgrounds/gold-coast-waves.jpg) center 48% / cover no-repeat;
}
.page-hero--services {
  background:
    linear-gradient(105deg, rgba(255,255,255,0.98) 0%, rgba(255,249,240,0.92) 45%, rgba(235,245,238,0.62) 100%),
    url(backgrounds/gold-coast-aerial-soft.jpg) center 58% / cover no-repeat;
}
.page-hero--company {
  background:
    linear-gradient(104deg, rgba(255,255,255,0.98) 0%, rgba(255,249,243,0.91) 45%, rgba(244,226,207,0.58) 100%),
    url(backgrounds/gold-coast-twilight.jpg) center 48% / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251,248,243,0), rgba(251,248,243,0.46));
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  min-height: min(560px, calc(100svh - 72px));
  margin: 0 auto;
  padding: clamp(2.2rem, 4.8vw, 4.2rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.68fr);
  gap: clamp(1.7rem, 4vw, 4rem);
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
h1 {
  max-width: 680px;
  font-size: clamp(31px, 3.7vw, 50px);
  line-height: 1.18;
  font-weight: 900;
  text-wrap: balance;
}
h1 em, h2 em {
  color: var(--orange);
  font-style: normal;
}
.lead {
  max-width: 680px;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.9;
}
.hero-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,0.90);
  box-shadow: 0 24px 68px rgba(23,63,42,0.14);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-card img {
  width: 100%;
  height: clamp(190px, 24vw, 290px);
  object-fit: cover;
}
.hero-card img[src*="link-logos"] {
  object-fit: contain;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, var(--green-soft), #fff);
}
.hero-card-body { padding: 1.2rem; }
.hero-card-body strong { display: block; font-size: 18px; }
.hero-card-body span { display: block; margin-top: .45rem; color: var(--muted); font-size: 13px; line-height: 1.7; }
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6.4rem) 20px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.94), rgba(251,248,243,0.88)),
    url(backgrounds/gold-coast-waves.jpg) center 56% / cover no-repeat;
}
.section.alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255,250,243,0.92), rgba(247,251,248,0.88)),
    url(backgrounds/gold-coast-beach-skyline.jpg) center 64% / cover no-repeat;
}
.page-story .section {
  background:
    linear-gradient(112deg, rgba(255,252,247,0.94), rgba(251,242,232,0.88)),
    url(backgrounds/gold-coast-twilight.jpg) center 64% / cover no-repeat;
}
.page-story .section.alt {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.92), rgba(238,248,247,0.86)),
    url(backgrounds/gold-coast-beach-skyline.jpg) center 58% / cover no-repeat;
}
.page-position .section {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.93), rgba(238,248,247,0.86)),
    url(backgrounds/gold-coast-beach-skyline.jpg) center 60% / cover no-repeat;
}
.page-position .section.alt {
  background:
    linear-gradient(112deg, rgba(255,252,246,0.92), rgba(237,248,245,0.86)),
    url(backgrounds/gold-coast-waves.jpg) center 50% / cover no-repeat;
}
.page-future .section {
  background:
    linear-gradient(112deg, rgba(255,253,249,0.94), rgba(248,235,218,0.88)),
    url(backgrounds/gold-coast-twilight.jpg) center 66% / cover no-repeat;
}
.page-future .section.alt {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.92), rgba(233,247,245,0.86)),
    url(backgrounds/gold-coast-aerial-soft.jpg) center 48% / cover no-repeat;
}
.page-services .section {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.94), rgba(237,248,245,0.88)),
    url(backgrounds/gold-coast-waves.jpg) center 52% / cover no-repeat;
}
.page-company .section {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.94), rgba(238,248,247,0.88)),
    url(backgrounds/gold-coast-beach-skyline.jpg) center 60% / cover no-repeat;
}
.page-company .section.alt {
  background:
    linear-gradient(112deg, rgba(255,251,245,0.92), rgba(246,237,226,0.86)),
    url(backgrounds/gold-coast-twilight.jpg) center 62% / cover no-repeat;
}
.section.alt .section-inner {
  position: relative;
  z-index: 1;
}
.section-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-width: 0;
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .48fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.6rem;
}
h2 {
  font-size: clamp(26px, 3.35vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}
.grid-2, .grid-3 {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.90);
  padding: clamp(1.1rem, 2vw, 1.45rem);
  box-shadow: 0 18px 46px rgba(23,63,42,0.08);
  backdrop-filter: blur(10px);
}
.card.highlight {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: rgba(23,63,42,0.22);
}
.card.highlight p, .card.highlight li { color: rgba(255,255,255,0.82); }
.card h3 {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.3;
}
.card p, .card li {
  margin-top: .7rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 14px;
}
.card ul { padding-left: 1.1rem; }
.label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .8rem;
  border: 1px solid rgba(242,100,25,0.24);
  border-radius: 999px;
  padding: .36rem .64rem;
  background: rgba(242,100,25,0.07);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.timeline {
  display: grid;
  gap: 12px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
}
.timeline-year {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .06em;
}
.service-list {
  display: grid;
  gap: 12px;
}
.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}
.service-showcase .service-link {
  grid-template-columns: minmax(0, 0.92fr) minmax(180px, 1fr) auto;
  min-height: 210px;
  padding: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}
.service-showcase .service-link:last-child {
  grid-column: 1 / -1;
}
.service-shot {
  width: 100%;
  height: 184px;
  overflow: hidden;
  border: 1px solid rgba(23,63,42,0.10);
  border-radius: 14px;
  background: var(--green-soft);
}
.service-shot img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center 12%;
}
.service-link--instagram .service-shot img { object-position: center 5%; }
.service-link--line .service-shot img { object-position: center 34%; }
.service-link--australia .service-shot img { object-position: center 16%; }
.service-link-copy { min-width: 0; }
.service-link-copy .label { margin-bottom: .55rem; }
.service-link {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(23,63,42,0.045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242,100,25,0.38);
  box-shadow: 0 20px 46px rgba(23,63,42,0.09);
}
.service-link img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
}
.service-link strong { display: block; font-size: 17px; }
.service-link span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.service-showcase .service-shot {
  display: block;
  width: 100%;
  height: 184px;
  margin-top: 0;
  overflow: hidden;
  color: inherit;
  font-size: inherit;
  line-height: normal;
}
.service-showcase .service-shot img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center 12%;
}
.service-showcase .service-link--instagram .service-shot img { object-position: center 5%; }
.service-showcase .service-link--line .service-shot img { object-position: center 34%; }
.service-showcase .service-link--australia .service-shot img { object-position: center 16%; }
.service-showcase .service-link-copy { margin-top: 0; }
.service-showcase .service-link-copy .label {
  display: inline-flex;
  margin: 0 0 .55rem;
  color: var(--orange);
  font-size: 11px;
  line-height: 1.2;
}
.arrow { color: var(--orange); font-weight: 900; }
.page-footer {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 2rem 20px;
}
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-inner p { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .58s ease, transform .58s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) {
  .page-nav { height: 68px; padding: 0 16px; }
  .menu-toggle .menu-text { display: none; }
  .page-main { padding-top: 68px; }
  .page-hero-inner {
    width: min(100% - 32px, 620px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 2.2rem 0 2.8rem;
    gap: 1.4rem;
  }
  h1 { font-size: clamp(28px, 7.8vw, 37px); line-height: 1.2; }
  .lead { font-size: 14px; line-height: 1.9; }
  .section { padding: 3rem 16px; }
  .section-head, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-card img { height: 190px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .service-link { grid-template-columns: 48px 1fr; }
  .service-link img { width: 48px; height: 48px; border-radius: 14px; }
  .arrow { display: none; }
  .footer-inner { display: grid; }
  .service-showcase { grid-template-columns: 1fr; }
  .service-showcase .service-link,
  .service-showcase .service-link:last-child {
    grid-column: auto;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  }
  .service-showcase .arrow { display: none; }
}

.story-people-grid {
  align-items: stretch;
}

.story-people-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.58fr) 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.story-people-photo {
  min-height: 280px;
  background: var(--green-soft);
  overflow: hidden;
}

.story-people-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.story-people-card.taka .story-people-photo img { object-position: 52% 38%; }
.story-people-card.misaki .story-people-photo img { object-position: 50% 44%; }

.story-people-body {
  align-self: center;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
}

.story-people-body h3 {
  margin-top: 0.65rem;
}

@media (max-width: 760px) {
  .story-people-card {
    grid-template-columns: 1fr;
  }

  .story-people-photo,
  .story-people-photo img {
    min-height: 320px;
    max-height: 420px;
  }
}



/* 20260704 compact subpage people cards */
.story-people-card { grid-template-columns: minmax(130px, 0.42fr) 1fr; border-radius: 18px; }
.story-people-photo,
.story-people-photo img { min-height: 220px; max-height: 280px; }
.story-people-body { padding: clamp(0.95rem, 1.8vw, 1.35rem); }
.story-people-body h3 { font-size: clamp(20px, 2.4vw, 27px); line-height: 1.25; }
@media (max-width: 760px) {
  .story-people-card { grid-template-columns: 112px minmax(0,1fr); }
  .story-people-photo,
  .story-people-photo img { min-height: 100%; max-height: none; height: 100%; }
  .story-people-body { padding: 0.9rem; }
  .story-people-body h3 { font-size: 18px; }
}

.hero-card.screen-card img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 12%;
  background: linear-gradient(135deg, rgba(239, 247, 242, .85), rgba(255, 246, 239, .92));
  padding: 0;
}
.page-mission .hero-card.screen-card img { object-position: center 34%; }
.page-position .hero-card.screen-card img { object-position: center 5%; }
.page-future .hero-card.screen-card img { object-position: center 16%; }
.page-services .hero-card.screen-card img { object-position: center 12%; }

@media (max-width: 720px) {
  .hero-card.screen-card img {
    height: auto;
    padding: 0;
  }
  .service-showcase .service-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .service-showcase .service-shot { height: 176px; }
  .service-link-copy { padding: 2px 4px 5px; }
}

@media (max-width: 430px) {
  .page-hero-inner {
    width: calc(100% - 28px);
    padding: 1.9rem 0 2.4rem;
  }
  h1 { font-size: clamp(27px, 8.4vw, 34px); }
  h2 { font-size: clamp(25px, 7.5vw, 32px); }
  .lead { margin-top: 1rem; line-height: 1.78; }
  h1, h2, h3, .lead, .hero-card-body, .card { overflow-wrap: anywhere; }
  .hero-card-body { padding: 1rem; }
  .hero-card-body strong { font-size: 16px; }
  .section { padding: 2.7rem 14px; }
  .card { padding: 1rem; }
  .service-showcase .service-shot { height: 164px; }
}
