:root {
  --navy: #1a2445;
  --text: #5a5b5b;
  --white: #ffffff;
  --line: #d9deea;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

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

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

.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 1040px);
  margin-inline: auto;
}

.narrow-text {
  margin: 0 5%;
}
.narrow-text h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 2000;
  padding: 8px 12px;
  color: #fff;
  background: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.site-header .header-inner,
.site-header .container.header-inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
	padding: 0 10px;
	min-height: 75px;
}

.site-logo {
  display: inline-block;
  width: 125px;
}

.site-logo img {
  width: 100%;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.global-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
}

.global-nav.is-open {
  transform: translateY(0);
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px 20px;
}

.global-nav-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 22px;
}

.global-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.global-nav .global-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 0;
  color: #fff;
  line-height: 1;
  font-size: 0;
}

.global-nav .global-social-btn svg {
  display: block;
}

.global-social-btn:hover,
.global-social-btn:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.global-nav li + li {
  margin-top: 8px;
}

.global-nav a {
  display: block;
  padding: 10px 8px;
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px dotted #fff;
}

.global-nav .nav-en,
.global-nav .nav-ja {
  display: block;
}

.global-nav .nav-ja {
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.global-nav li:not(.nav-contact) a.is-current {
  color: var(--navy);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 65px;
}

.hero-panel {
  border: 3px solid var(--navy);
  width: min(72vw, 400px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(12, 23, 45, 0.16);
}

.hero-copy {
  margin: 20px 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 1em;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.85),
    0 0 24px rgba(255, 255, 255, 0.65);
}
.hero-copy .highlight {
  color: #8d7f39;
  padding-top: .2em;
  background-position: top left -5px;
  background-repeat: repeat-x;
	background-size: 1.3em .3em;
	background-image: radial-gradient(.15em .15em at center center,#8d7f39,#8d7f39 100%,transparent);
}

.hero-sub {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.85rem, 2.8vw, 1.6rem);
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.2em;
  font-weight: 700;
  line-height: 1.6;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.85),
    0 0 24px rgba(255, 255, 255, 0.65);
}

.section {
  padding: 60px 0;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3em);
  letter-spacing: 0.3em;
  text-align: center;
  line-height: 1.2;
}
.section-title span {
  display: block;
  margin-top: 6px;
  font-size: 0.3em !important;
  letter-spacing: 0.4em;
}

.section-title.left {
  text-align: left;
}

.vision-text .section-title span {
  margin-top: 0;
  margin-bottom: 6px;
}

.section-sub {
  font-family: "Shippori Mincho", serif;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  margin: 25px auto 0;
  text-align: center;
  max-width: 1240px;
}
.section-sub b,
.vision-text .lead b {
  color: #8d7f39;
}
.service {
  background: #fff;
  padding: 80px 2%;
}

.service-grid {
  margin: 28px 10% 0;
  display: grid;
  grid-template-columns: 1fr;
}

.card {
  padding: 15px 12px 10px 0;
}

.card-last {
  background-image: none !important;
  padding: 15px 12px 10px 0;
}

.card img,
.card-last img {
  width: 100%;
  object-fit: cover;
}

.card h3,
.card h2,
.card-last h3,
.card-last h2 {
  font-family: "Shippori Mincho", serif;
  margin: 10px 0 6px;
  color: #1c2a50;
  font-size: 1.15rem;
  text-align: center;
}

.card p,
.card-last p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.vision {
  position: relative;
  background: #f8f9fd;
}

.vision-accent {
  position: absolute;
  top: 20px;
  right: 8px;
  width: min(32vw, 135px);
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.vision-accent img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-layout {
  display: grid;
  align-items: center;
}

.vision-image-wrap {
  width: 100%;
  margin: 0 0 20px;
}

.vision-text {
  margin: 0 6%;
}

.vision-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #59668a;
  letter-spacing: 0.12em;
}

.lead {
  margin: 25px 0 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  text-align: left;
  max-width: 1240px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.text-link::after {
  content: "";
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
  background-image: url("../images/link_arrow.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.22s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #26376c;
  opacity: 0.92;
  transform: translateY(-1px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(2px);
}

.about {
  background: #fff;
  padding: 80px 5%;
}

.about > p:last-of-type {
  text-align: center;
}

.about > .text-link {
  display: flex;
  width: fit-content;
  margin: 16px auto 0;
}

.about-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-strip figure {
  margin: 0;
  background: #172244;
}

.about-strip img {
  width: 100%;
  aspect-ratio: 10 / 8;
  object-fit: cover;
}

.about-strip figcaption {
  padding: 6px 8px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 0.8rem;
  text-align: center;
}

.team {
  background: #f5f5f5;
}

.team-grid {
  margin: 26px 8% 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 25px;
}

.member {
  background: #fff;
}

.member img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.member-txt {
  padding: 8px 12px 15px;
  color: #111;
  text-align: left;
}

.member-company,
.member-position,
.member-role {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  color: #111;
  line-height: 1.35;
}

.member-company {
  font-size: 1.0rem !important;
}

.member-position {
  font-size: 0.9rem;
  font-weight: 500;
}

.member-position {
  margin-top: 2px;
}

.member-name-row {
  margin-top: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1a2445;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.member-txt h3,
.member-txt h2 {
  margin: 0;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.member p {
  margin: 4px 0 0;
  font-size: 0.86rem;
}

.member-badge {
  flex-shrink: 0;
  min-width: 3.2em;
  padding: 0.3em 0.4em 0.4em;
  background: #1a2445;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.member-role {
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 500;
}

.contact {
  background: #fff;
}

.contact-box {
  margin-top: 24px;
  position: relative;
  border: 7px solid var(--navy);
  padding: 26px 10px;
  display: grid;
  gap: 12px;
  align-items: center;
  background: #fff;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(26, 36, 69, 0.9);
  pointer-events: none;
}

.contact-col {
  position: relative;
  padding: 18px 12px;
  text-align: center;
}

.contact-col::before,
.contact-col::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(26, 36, 69, 0.9);
}

.contact-col::before {
  top: 0;
}

.contact-col::after {
  bottom: 0;
}

.contact-col > p:first-child {
  margin: 0;
  color: #1a2445;
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.btn {
  margin-top: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 230px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-box .btn {
  margin: 16px 0 20px;
  position: relative;
  min-width: min(100%, 410px);
  min-height: 54px;
  padding: 0 18px;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.0rem;
  letter-spacing: 0;
}

.contact-box .btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 55%;
  transform: translateY(-50%);
  width: 0.95em;
  height: 0.95em;
  background-image: url("../images/link_arrow.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  background: #243566;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(26, 36, 69, 0.2);
}

.contact-box .btn:hover::after,
.contact-box .btn:focus-visible::after {
  transform: translate(2px, -50%);
}

.contact-divider {
  text-align: center;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1;
}

.contact-box .contact-col.tel p {
  margin: 0;
  color: #1a2445;
  font-size: 1.0rem;
  letter-spacing: 0.05em;
}

.contact-box .phone {
  margin-top: 10px;
}

.phone {
  display: inline-block;
  color: var(--navy);
  font-size: clamp(1.8rem, 10vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.contact-col.tel small {
  display: block;
  margin-top: 8px;
  color: #1a2445;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.contact-divider {
  text-align: center;
  font-weight: 500;
  color: var(--navy);
}

.contact-note {
  margin: 25px auto 0;
  font-family: "Shippori Mincho", serif;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  max-width: 1240px;
}

.company-info {
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 36, 69, 0.25);
  color: var(--navy);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.company-info p {
  margin: 0;
}

.company-info-title {
  margin-bottom: 4px !important;
  font-weight: 700;
}

.site-footer {
  background: var(--navy);
  color: #dbe3ff;
  padding: 40px 25px;
}

.footer-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-brand img {
  width: 240px;
  height: auto;
}

.footer-brand address {
  margin-top: 10px;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.footer-nav {
  display: none;
}

.footer-links {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 0.75;
  text-decoration-color: currentColor;
}

.footer-nav a.is-current {
  opacity: 0.75;
  text-decoration-color: currentColor;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

.footer-right {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.copyright {
  margin: 0;
  text-align: center;
  padding: 12px 16px;
  color: #bdc8eb;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer:not(.simple-footer) .footer-right .copyright {
  margin: 0;
  padding: 0;
  text-align: center;
  border-top: 0;
}

.copyright-tail {
  display: block;
}

.simple-footer {
  padding-top: 0;
}

.page-main {
  border-top: 5px solid #ccdde6;
  min-height: 70vh;
}

.service-page {
  background: #fff;
}

.message-page {
  background: #fff;
}

.service-page .service-hero {
  height: 330px;
}

.service-page .service-hero .team-hero-grid {
  display: block;
}

.service-page .service-hero .team-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page .team-hero-title {
  width: min(82vw, 550px);
}

.service-intro {
  padding-top: 44px;
  padding-bottom: 36px;
}

.service-intro .narrow-text {
  margin-inline: auto;
}

.service-intro .narrow-text h2 {
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.75rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.service-anchor-links {
  width: min(100% - 32px, 1240px);
  margin: 26px auto 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-anchor-links a {
  min-height: 46px;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 22px rgba(26, 36, 69, 0.14);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-anchor-links a::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.service-anchor-links a:hover,
.service-anchor-links a:focus-visible {
  background-color: #243566;
  box-shadow: 0 14px 28px rgba(26, 36, 69, 0.2);
  transform: translateY(-1px);
}

.service-section {
  width: 100%;
  padding: 26px 0 18px;
}
.service-section#service-01,
.service-section#service-03,
.service-section#service-05 {
  --service-surface: #e6eef3;
}
.service-section#service-02,
.service-section#service-04 {
  --service-surface: #e6e6e6;
}
.service-section--alt {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
}

.service-section-inner {
  background: var(--service-surface, #e6eef3);
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 0;
}
.service-points-inner h3 {
  margin: 15px 3% 30px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp( 1.0rem, 1.6vw, 1.5rem);
  text-align: center;
  line-height: 1.3;
}

.service-section-head {
  display: flex;
  justify-content: flex-start;
}

.service-section--featured .service-section-head--main,
.service-section--featured .service-section-head--sub {
  margin-bottom: 0;
}

.service-section-label {
  display: inline-flex;
  align-items: stretch;
  padding: 8px 10px;
  width: 100%;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(26, 36, 69, 0.14);
}

.service-section-label span {
  min-width: 64px;
  padding: 9px 10px;
  display: grid;
  place-items: center;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.service-section-label div {
  padding: 11px 12px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.service-section-label p {
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.5em;
  text-indent: 0.35em;
  margin: 0;
  opacity: 0.92;
}

.service-section-label h3 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 500;
}

.service-split {
  margin-top: 0;
  padding-top:20px;
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.service-section--featured .service-split {
  gap: 0;
  background: linear-gradient(90deg, rgba(232, 239, 247, 0.98) 0%, rgba(240, 245, 250, 0.92) 58%, rgba(255, 255, 255, 0.2) 100%);
}

.service-section--featured.service-section--reverse-layout .service-split {
  background: linear-gradient(90deg, rgba(230, 230, 230, 0.98) 0%, rgba(230, 230, 230, 0.9) 58%, rgba(255, 255, 255, 0.2) 100%);
}

.service-copy {
  padding: 0 2px;
  color: #1e2a4a;
}

.service-section--featured .service-copy {
  padding: 5px 28px 18px 10px;
  background: var(--service-surface, #e6eef3);
}

.service-section--featured.service-section--reverse-layout .service-copy {
  background: var(--service-surface, #e6eef3);
}

.service-section--featured .service-copy {
  padding: 10px 25px 30px;
}

.service-copy h2 {
  margin: 0 0 10px;
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.0rem);
  line-height: 1.2;
  font-weight: 500;
  }

.service-copy h3{
  margin: 0 0 25px;
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
}

.service-copy p {
  margin: 0 0 0 3px;
  font-size: 0.8rem;
  line-height: 1.85;
}

.service-section--featured .service-copy p {
  font-size: 0.92rem;
  line-height: 1.95;
}

.service-copy p + p {
  margin-top: 10px;
}

.service-visual {
  margin: 0;
  overflow: hidden;
  background: #dfe6f2;
  box-shadow: 0 16px 32px rgba(21, 28, 50, 0.12);
}

.service-section--featured .service-visual {
  position: relative;
  box-shadow: none;
}
.service-section--featured .service-visual::before {
  content: "";
  position: absolute;
  width: 0;
  background: none;
  pointer-events: none;
  z-index: -1;
}

.service-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.service-point {
  background-image: none;
  margin-bottom: 1px;
  padding: 5px 15px;
}
.service-point-last {
  background-image: none;
  margin-bottom: 25px;
  padding: 15px 10px;
}

.service-points-inner {
  background: #fff;
  padding: 10px 0 15px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.service-point,
.service-point-last {
	padding: 5px 14px 10px;
}
.service-section--featured .service-points {
  margin-top: 10px;
}

.service-point-icon svg {
  width: 192px;
  height: 192px;
}

.service-point h4,
.service-point p,
.service-point-last h4,
.service-point-last p {
  margin: 0;
  text-align: center;
}

.service-point h4,
.service-point-last h4 {
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.service-point p,
.service-point-last p {
  margin-top: 6px;
  color: #5a5b5b;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: left;
}

.service-point-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.service-point-icon svg {
  width: 128px;
  height: 128px;
}

.service-note {
  margin: 4px auto 0;
  padding: 12px 16px;
  width: 100%;
  background: var(--service-surface, #eaf0f6);
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.service-note b {
  color: #8d7f39;
}
#service-02 .service-note,
#service-04 .service-note {
  background: var(--service-surface, #e6e6e6);
}

.service-partner-strip {
  margin: 6px 2% 30px;
  border: 5px solid #192345;
  background: #fff;
  overflow: hidden;
}

.service-partner-title {
  margin: 15px 0;
  padding: 6px 5px;
  color: #fff;
  background: #192345;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
}

.service-partner-grid {
  display: grid;
  gap: 0;
  margin-bottom: 15px;
}

.service-partner-card {
  padding: 18px 18px 14px;
  text-align: left;
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-partner-logo {
  min-height: 68px;
  display: grid;
  align-content: center;
  justify-content: center;
  justify-items: center;
  row-gap: 2px;
}

.service-partner-logo img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-partner-card > span {
  margin-top: 2px;
  color: #5c6372;
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  min-height: 300px;
}

.page-hero img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: brightness(0.72);
}

.page-hero-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.page-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.2em;
}

.page-hero-copy p {
  margin-top: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.95rem, 3vw, 1.25rem);
}

.team-page {
  background: #fff;
}

.team-hero {
  position: relative;
  height: clamp(200px, 36vw, 330px);
  overflow: hidden;
}

.team-hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(0deg, rgba(255, 255, 255, 1.0) 0%, rgba(255, 255, 255, 0) 35%);
  pointer-events: none;
}

.team-hero-title {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(82vw, 580px);
  border: 4px solid #1a2445;
  box-shadow: inset 0 0 0 1px #1a2445;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 16px 12px 14px;
}

.team-hero-title h1 {
  margin: 0;
  color: #1a2445;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.24em;
  line-height: 1;
}

.team-hero-title p {
  margin: 5px 0 0;
  color: #1a2445;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.team-breadcrumb {
  padding: 14px 0 0 1%;
}

.team-breadcrumb p {
  margin: 0;
  color: #8a8f9e;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.team-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: #8a8f9e;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.team-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.team-breadcrumb li + li::before {
  content: ">";
  margin: 0 0.5em;
  color: #8a8f9e;
}

.team-breadcrumb a:hover,
.team-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.team-lead {
  padding-top: 40px;
  padding-bottom: 12px;
}

.team-page .team {
  padding-top: 34px;
}

.member-page .team {
  padding-top: 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 30%, #f5f5f5 100%);
}

.member-page .team-lead h2 {
  margin: 0;
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.8rem, 3.2vw, 3.0rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.member-page .team-lead h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin-top: 18px;
  background: #c5a059;
}

.member-page .team-hero {
  height: 330px;
}

.member-page .team-hero-grid {
  display: block;
}

.member-page .team-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-page .team-hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 1) 100%);
}

@media (max-width: 767px) {
  .member-page .team-hero {
    height: 220px;
  }

  .member-page .team-hero-title h1 {
    font-size: clamp(1.6rem, 4.8vw, 2.72rem);
  }

  .member-page .team-hero-title p {
    font-size: 0.6rem;
  }
}

@media (max-width: 767px) {
  .service-page .team-hero-title h1 {
	font-size: clamp(1.9rem, 6vw, 3rem);
  }

  .service-page .team-hero-title p {
	font-size: 0.64rem;
  }

  .service-point p {
	text-align: center;
  }

  .service-partner-card {
	padding: 14px 14px 12px;
  }

  .service-partner-card + .service-partner-card {
	border-top: 1px solid #d5d9e3;
  }

  .service-partner-card > span {
	font-size: 0.82rem;
  }
}

.contact-main {
  min-height: auto;
  background: #fff;
}

.contact-page {
  padding-top: 54px;
  padding-bottom: 84px;
}

.contact-container {
  width: min(100% - 32px, 1100px);
}

.contact-page-head h1 {
  margin: 0;
  color: #1e2f53;
  font-size: clamp(2rem, 5.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.17em;
}

.contact-page-head p {
  margin: 8px 0 0;
  color: #1e2f53;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.contact-layout {
  margin-top: 52px;
  display: grid;
  gap: 34px;
}

.contact-intro-copy {
  margin: 0;
  color: #182a4a;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  line-height: 2.1;
  letter-spacing: 0.02em;
}

.contact-intro-meta {
  margin: 38px 0 0;
  color: #1f3155;
  font-size: 0.68rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.contact-form {
  width: 100%;
  font-size: 1.15rem;
}

.form-row {
  display: grid;
  gap: 10px;
  margin: 0;
}

.form-row + .form-row,
.form-row + .form-inline,
.form-inline + .form-row,
.form-inline + .form-inline {
  margin-top: 16px;
}

.form-row > label,
.form-inline > legend {
  margin: 0;
  color: #15284a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-inline {
  border: 0;
  padding: 0;
}

.required {
  color: #c93636;
  margin-left: 4px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #e3e7f0;
  background: #fff;
  color: #1e2f53;
  font-size: 1.02rem;
  line-height: 1.6;
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
}

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8a96aa 50%), linear-gradient(135deg, #8a96aa 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9ba5b8;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #8495b4;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.radio-list label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #223457;
  font-size: 1rem;
  line-height: 1.3;
}

.radio-list input[type="radio"] {
  margin: 0;
  accent-color: #324b7e;
}

.privacy-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #15284a;
  font-size: 1rem;
  line-height: 1.4;
}

.privacy-check-text {
  display: inline-block;
}

.privacy-check input[type="checkbox"] {
  margin: 0;
  accent-color: #324b7e;
}

.contact-submit {
  margin-top: 15px;
  min-width: 320px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--navy) url("../images/link_arrow.webp") center right 12px no-repeat;
  background-size: 20px auto;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-actions {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.contact-thanks {
  padding-top: 52px;
  padding-bottom: 84px;
}

.contact-thanks-box {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background: #f7f8fb;
  border: 1px solid #dfe5f2;
  text-align: center;
}

.contact-thanks-kicker {
  margin: 0;
  color: #1a2445;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.contact-thanks-box h2 {
  margin: 16px 0 0;
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.contact-thanks-box p {
  margin: 18px auto 0;
  color: #3f4a62;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 2;
}

.contact-thanks-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-submit-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
  background-image: none;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .header-inner {
	min-height: 100px;
	margin-inline: auto;
	padding-inline: 15px;
  }

  .site-logo {
	margin-top: 5px;
	width: 250px;
  }

  .menu-toggle {
	display: none;
  }

  .global-nav {
	position: static;
	transform: none;
	border: 0;
	background: transparent;
  }

  .global-nav ul {
	padding: 0;
	display: flex;
	align-items: center;
	gap: 20px;
  }

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

  .global-nav li + li {
	margin-top: 0;
  }

  .global-nav li.nav-privacy {
	display: none;
  }

  .global-nav a {
	padding: 9px 10px;
	text-align: center;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.1;
  }

  .global-nav .nav-en {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
  }

  .global-nav .nav-ja {
	margin-top: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
  }

  .global-nav li.nav-contact a {
	min-width: 164px;
	padding: 2px;
	background: var(--navy);
	border: 2px solid var(--navy);
	color: #fff;
  }
  .global-nav li.nav-contact a div {
		border: 1px solid #fff;
		padding: 8px 0;
		width: 100%;
	}
  .global-nav li.nav-contact a .nav-en {
	font-size: 15px;
	letter-spacing: 0.1em;
  }

  .global-nav li.nav-contact a .nav-ja {
	font-size: 10px;
	color: #eaf0ff;
  }

  .global-nav li:not(.nav-contact) a:hover,
  .global-nav li:not(.nav-contact) a:focus-visible {
	background: transparent;
	opacity: 0.78;
  }

  .global-nav li:not(.nav-contact) a.is-current {
  color: #8d7f39;
	opacity: 1;
	border-bottom: 2px solid #8d7f39;
  }

  .global-nav li.nav-contact a:hover,
  .global-nav li.nav-contact a:focus-visible {
	opacity: 0.92;
	background: #223160;
  }

  .global-nav li.nav-contact a.is-current {
	opacity: 1;
	background: #223160;
  }

  .hero,
  .hero-content {
	min-height: calc(100vh - 115px);
  }
  .hero-panel {
	width: min(39vw, 400px);
	padding: 35px 20px;
  }

  .team-hero {
	height: clamp(300px, 30vw, 430px);
  }

  .team-hero-title {
	padding: 20px 16px 15px;
	border-width: 5px;
  }

  .team-hero-title p {
	font-size: 0.9rem;
  font-weight: 700;
  }

  .team-breadcrumb {
	padding-top: 20px;
  }

  .team-breadcrumb p {
	font-size: 0.75rem;
  }

  .team-breadcrumb ol {
	font-size: 0.75rem;
  }

  .team-lead {
	padding-top: 50px;
	padding-bottom: 20px;
  }

  .team-lead h2 {
	font-size: clamp(1.5rem, 3.0vw, 3rem);
	line-height: 1.45;
  }

  .team-page .team {
	padding-top: 42px;
  }

  .member-page .team {
	padding-top: 96px;
  }

  .member-page .team-hero {
	height: 330px;
  }

  .service-page .service-hero {
	height: 330px;
  }

  .service-intro {
	padding-top: 52px;
	padding-bottom: 54px;
  }

  .service-anchor-links {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
  }

  .service-anchor-links a {
	min-height: 50px;
	font-size: 0.96rem;
  }

  .service-section-label {
	width: 100%;
  }

  .service-section-label span {
	padding: 2px 20px;
  }

  .service-section-label {
    padding: 12px 20px;
  }

  .service-section-label div {
	padding: 5px 20px;
  }

  .service-section {
	padding: 0 0 22px;
  }

  .service-section--featured {
	padding-top: 0;
	padding-bottom: 28px;
  }

  .service-section--featured .service-section-inner {
  grid-template-columns: minmax(0, 51.2%) minmax(0, 48.8%);
  grid-template-areas:
    "head visual"
    "copy visual"
    "points points"
    "note note";
  gap: 0;
  align-items: stretch;
  }

  .service-section--featured.service-section--reverse-layout .service-section-inner {
  grid-template-columns: minmax(0, 48.8%) minmax(0, 51.2%);
  grid-template-areas:
    "visual head"
    "visual copy"
    "points points"
    "note note";
  }

  .service-section--featured .service-split {
  display: contents;
  background: none;
  }

  .service-section--featured .service-section-head--main,
  .service-section--featured .service-section-head--sub {
  grid-area: head;
  padding-top: 25px;
  align-self: start;
  }

  .service-section--featured .service-section-head--main {
  justify-content: flex-start;
  }

  .service-section--featured .service-section-head--sub {
  justify-content: flex-end;
  }

  .service-section--featured .service-copy {
  grid-area: copy;
  padding: 30px 36px 35px 5%;
  align-self: stretch;
  }

  .service-section--featured.service-section--reverse-layout .service-copy {
  padding: 30px 5% 35px 36px;
  }

  .service-section--featured .service-visual {
  grid-area: visual;
  align-self: stretch;
  height: 100%;
  }
  .service-section--featured .service-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: linear-gradient(90deg, rgba(230, 238, 243, 1) 0%, rgba(230, 238, 243, 0.92) 42%, rgba(238, 244, 250, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

  .service-section--featured.service-section--reverse-layout .service-visual::before {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(230, 230, 230, 1) 0%, rgba(230, 230, 230, 0.92) 42%, rgba(230, 230, 230, 0) 100%);
  }

  .service-section--featured .service-note {
  padding: 18px 20px;
  grid-area: note;
  }

  .service-section-inner {
	gap: 18px;
  }

  .service-split {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: center;
  }

  .service-section--reverse-layout .service-copy {
	order: 2;
	padding-left: 20px;
  }

  .service-section--reverse-layout .service-visual {
	order: 1;
  }

  .service-copy {
	padding-right: 20px;
  }

  .service-copy p {
	font-size: 0.96rem;
  }

  .service-section--featured .service-copy p {
	font-size: 0.98rem;
  }

  .service-visual img {
	aspect-ratio: 16 / 11;
  }

.service-point {
  background-image: radial-gradient(circle, #aaa 2px, transparent 2px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 4px 12px;
  padding: 15px 20px 10px 10px;
  margin-bottom: 25px;
}

.service-points {
	grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 2%;
  }
.service-points-inner {
  background: #fff;
  padding: 30px 0 45px;
}
.service-points-inner h3 {
  margin: 0 0 30px;
  color: #1a2445;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.0rem, 1.6vw, 1.5rem);
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
  .service-point h4,
  .service-point-last h4 {
	font-size: 1.3rem;
  text-align: center;
  }
  .service-point p,
  .service-point-last p {
	font-size: 0.95rem;
  }

  .service-partner-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-partner-card:not(:last-child) {
	border-right: 1px solid #2a365f;
  }

  .service-partner-card {
	padding: 26px 22px 22px;
  }

  .service-partner-logo {
  min-height: 68px;
  }

  .service-partner-card > span {
  font-size: 1rem;
  }

  .service-partner-title {
	padding: 13px 16px;
  font-size: 1.2rem;
  line-height: 1.2;
  }

  .service-partner-strip {
	border-width: 5px;
  }

  .service-grid {
  margin: 28px 0 0 12px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
  }

  .section-sub,
  .contact-note {
  font-size: clamp(0.9rem, 2.5vw, 1.55rem);
}

  .vision-layout {
	grid-template-columns: 1fr 1fr;
  gap: 40px;
  }

  .vision-accent {
	top: 60px;
	right: 2%;
	width: min(14vw, 180px);
  }

  .vision-layout > figure {
  margin: 0;
  }

  .vision-text {
  margin: 0 8% 0 0;
  }

  .text-link {
  font-size: 1.05rem;
  }

  .about-strip {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
  }

  .about-strip figcaption {
  font-size: 1rem;
  }

  .team-grid {
  margin: 26px 0 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 90px;
  }

  .member-txt {
  padding: 10px 15px 15px;
  }

  .member-name-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  }

  .member-badge {
  font-size: 0.95rem;
  }

  .member-role {
  font-size: 1rem;
  }

  .contact-box {
	width: min(100%, 1240px);
	margin-inline: auto;
	grid-template-columns: 1fr auto 1fr;
	gap: 38px;
	padding: 34px 42px;
  }

  .top-page .contact .narrow,
  .service-page .contact .narrow,
  .philosophy-page .contact .narrow,
  .message-page .contact .narrow {
	width: min(100% - 32px, 1300px);
  }

  .contact-box .btn {
	font-size: 1.2rem;
  font-weight: 500;
  }

  .contact-col > p:first-child {
	letter-spacing: 0.15em;
  }

  .contact-box .phone {
	font-size: clamp(2.8rem, 3.2vw, 3.5rem);
  letter-spacing: 0.05em;
  }

  .contact-col.tel small {
	font-size: 0.9rem;
  }

  .contact-divider {
	font-size: 1.5rem;
  }

  .footer-inner {
	grid-template-columns: 1fr auto;
	justify-content: space-between;
	align-items: start;
	justify-items: stretch;
	text-align: left;
  }

  .footer-brand address {
	text-align: left;
  }

  .footer-nav {
	display: block;
  }

  .site-footer:not(.simple-footer) .footer-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  }

  .site-footer:not(.simple-footer) .footer-nav ul {
  flex-wrap: nowrap;
  }

  .site-footer:not(.simple-footer) .footer-right {
  justify-items: end;
  align-content: space-between;
  padding-top: 40px;
  min-height: 150px;
  }

  .site-footer:not(.simple-footer) .footer-nav ul {
  justify-content: flex-end;
  }

  .site-footer:not(.simple-footer) .footer-right .copyright {
  align-self: end;
	white-space: nowrap;
  }

  .contact-layout {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  }

  .form-row {
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  }

  .form-row.form-row-message {
  align-items: start;
  }

  .form-inline {
  grid-template-columns: 180px minmax(0, 1fr);
  }

  .form-inline > legend {
  float: none;
  width: auto;
  padding: 0;
  }

  .form-actions {
  margin-top: 18px;
  margin-left: 204px;
  }

  .form-row > label,
  .form-inline > legend {
  white-space: nowrap;
  }

  .copyright-tail {
	display: inline;
	margin-left: 0.25em;
  }

  .card {
    background-image: radial-gradient(circle, #aaa 2px, transparent 2px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 4px 12px;
    padding: 15px 20px 10px 0;
  }

  .card-last {
    background-image: none !important;
    padding: 15px 20px 10px 0;
  }
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */

.partner-page {
  background: #fff;
}

/* --- Hero --- */
.partner-hero {
  height: clamp(200px, 36vw, 330px);
}

.partner-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.partner-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Intro --- */
.partner-intro {
  padding-top: 60px;
  padding-bottom: 60px;
}

.partner-intro-inner {
  display: grid;
  margin: 0 5%;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.partner-intro-text h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.5rem, 3.5vw, 3.0rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.philosophy-lead-left h2 b,
.partner-intro-text h2 b,
.service-intro .narrow-text h2 b,
h2.message-heading b,
.team-lead .narrow-text h2 b {
  color: #c5a059;
  font-weight: 700;
}

.partner-intro-rule {
  width: 200px;
  height: 2px;
  background: #c5a059;
  margin: 20px 0 24px;
}

.partner-intro-text p {
  margin: 0 0 12px;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: var(--text);
}

.partner-intro-text p:last-child {
  margin-bottom: 0;
}

.partner-intro-photo img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  object-fit: contain;
}

.sp-br { display: none; }
.pc-br { display: inline; }
@media (max-width: 767px) {
  .sp-br { display: inline; }
  .pc-br { display: none; }
}

/* --- STRATEGIC PARTNERS --- */
.partner-grid-section {
  background: #f0f0f0;
  padding-top: 70px;
  padding-bottom: 70px;
}

.partner-section-title {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.4em;
}

.partner-section-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background: #c5a059;
  margin: 20px auto 35px;
}

.partner-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 3% 0;
}

.partner-card {
  background: #fff;
  border: 1px solid #dde1ec;
  padding: 25px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-card-logo {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding-bottom: 10px;
}

.partner-card-logo img {
  max-height: 68px;
  max-width: 288px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-card-category {
  margin: 0;
  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.partner-card-rule {
  width: 120px;
  height: 1px;
  background: #c5a059;
  margin: 10px auto 16px;
}

.partner-card-desc {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  flex: 1;
}

.partner-card-desc:last-of-type {
  margin-bottom: 0;
}

.partner-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 24px;
  padding: 10px 13px 12px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  transition: background 0.22s ease, color 0.22s ease;
  background: url("../images/link_arrow.webp") center right 12px no-repeat;
  background-size: 20px auto;
}


.partner-card-btn:hover,
.partner-card-btn:focus-visible {
  background: var(--navy) url("../images/link_arrow.webp") center right 8px no-repeat;
  background-size: 20px auto;
  color: #fff;
}

/* --- AND MORE strip --- */
.partner-more-strip {
  background: #f0f0f0;
  padding: 0 0 60px;
}

.partner-more-frame {
  border: 5px solid var(--navy);
  background: #fff;
  overflow: hidden;
  width: 100%;
}

.partner-more-banner {
  position: relative;
  background: var(--navy);
  text-align: center;
  margin-top: 22px;
  padding: 5px 10px;
  width: 100%;
}

.partner-more-icon {
  position: absolute;
  top: -35px;
  left: 15px;
  flex-shrink: 0;
  width: 142px;
}

@media (max-width: 767px) {
  .partner-more-strip {
    background: #f0f0f0;
    padding: 0 2% 60px;
  }

  .partner-more-icon {
    width: 72px; /* 142px の 1/4 */
    top: -12px;
    left: 3px;
  }
  .partner-more-catch {
    letter-spacing: 0.05em;
  }
}

.partner-more-icon img {
  width: 100%;
  height: auto;
}

.partner-more-catch {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, 2.2vw, 2.0rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #fff;
}

.partner-more-catch em {
  font-style: normal;
  color: #c5a059;
}

.partner-more-content {
  padding: 20px 26px 30px;
  text-align: center;
}

.partner-more-sub {
  margin: 0;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.9;
  color: var(--text);
}

.partner-more-label {
  margin: 15px 0 20px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #c5a059;
}


/* --- Contact width (partner) --- */
@media (min-width: 1024px) {
  .partner-page .contact .narrow {
    width: min(100% - 32px, 1300px);
  }
}

/* --- Responsive: tablet+ --- */
@media (min-width: 768px) {
  .partner-intro-inner {
    grid-template-columns: 1fr 420px;
    gap: 60px;
  }

  .partner-intro-photo img {
    max-width: 100%;
  }

  .partner-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    gap: 24px;
  }

  .partner-card {
    padding: 42px 30px 50px;
  }

  .partner-more-banner {
    margin-top: 40px;
    padding: 12px 10px;
  }

  .partner-more-content {
    padding: 30px 50px 40px;
  }


  .partner-hero {
    height: 330px;
  }
}

/* ============================================================
   PHILOSOPHY PAGE
   ============================================================ */

/* Hero: single full-width image (override team-hero-grid) */
.philosophy-page .team-hero {
  height: 330px;
}

.philosophy-hero .philosophy-hero-img {
  position: absolute;
  inset: 0;
}

.philosophy-hero .philosophy-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

/* Lead: two-column heading + tagline */
.philosophy-lead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.philosophy-lead-left {
  flex: 1 1 0;
  min-width: 260px;
}

.philosophy-lead-left h2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  color: #1a2445;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.philosophy-lead-rule {
  width: 200px;
  height: 2px;
  background: #c5a059;
  margin-top: 24px;
}

.philosophy-lead-right {
  flex: 0 0 auto;
  padding-top: 4px;
  text-align: right;
}

.philosophy-tagline {
  margin: 0;
  font-family: "Walter Turncoat", cursive;
  font-weight: 400;
  font-size: clamp(0.9rem, 2.1vw, 2.2rem);
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-style: normal;
}

.philosophy-tagline span {
  font-size: 1.1em;
  line-height: 1;
  color: #c5a059;
}

/* Body text */
.philosophy-body {
  max-width: 760px;
}

.philosophy-body p {
  margin: 0 0 1.6em;
  color: #3a3f50;
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 30px #fff;
}

.philosophy-body p:last-child {
  margin-bottom: 0;
}

.philosophy-body p.philosophy-emphasis {
  font-family: "Shippori Mincho", serif;
  color: #c5a059 !important;
  font-size: 1.8rem !important;
  font-weight: 500;
  margin-bottom: 0.5em !important;
}

/* Text + photo combined block */
.philosophy-block {
  position: relative;
}

.philosophy-text {
  position: relative;
  z-index: 1;
  padding: 60px 0 48px;
  margin: 0 5% -520px; /* 写真との重なり量。微調整はここを変える */
}

/* Full-width team photo — natural proportions to show all members */
.philosophy-photo {
  line-height: 0;
  position: relative;
  z-index: 0;
}

.philosophy-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .philosophy-lead-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
}

/* スマホ用: philosophy-photoの重なり量を個別調整 */
@media (max-width: 767px) {
  .philosophy-page .team-hero {
    height: 220px;
  }

  .philosophy-body p {
    margin: 0 0 1.2em;
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 30px #fff;
  }

  .philosophy-body p.philosophy-emphasis {
    font-family: "Shippori Mincho", serif;
    color: #c5a059 !important;
    font-size: 1.2rem !important;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0.5em !important;
  }
  .philosophy-text {
  margin: 0 3% -150px;/* スマホでの重なり量 */
  }
}

/* ============================================================
   MESSAGE PAGE
   ============================================================ */

.message-page .team-hero {
  height: 330px;
}

.message-page .team-hero-grid {
  display: block;
}

.message-page .team-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.message-page .team-hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 1) 100%);
}

/* --- Message content section --- */

.message-section {
  padding-top: 52px;
  padding-bottom: 80px;
}

.message-split {
  display: grid;
  grid-template-columns: 1fr 391px;
  gap: 60px;
  align-items: start;
}

/* --- Left: heading + body text --- */

h2.message-heading {
  margin: 0 0 20px;
  color: var(--navy, #1a2445);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

h2.message-heading::after {
  content: "";
  display: block;
  width: 180px;
  height: 2px;
  margin-top: 20px;
  background: #c5a059;
}

.message-body {
  margin-top: 32px;
}

.message-body p {
  margin: 0 0 1.4em;
  color: #333;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* --- Right: portrait + signature + name --- */

.message-profile {
  position: sticky;
  top: 100px;
}

.message-portrait {
  margin: 30px 0 24px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  width: 100%;
}

.message-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.message-signature {
  margin: 8px 0 16px;
  display: flex;
  justify-content: flex-end;
}

.message-signature img {
  width: min(100%, 240px);
  height: auto;
}

.message-name {
  border-top: 1px solid #c5a059;
  padding: 14px 0 20px;
  text-align: right;
}

.message-org {
  margin: 0 0 4px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.message-role {
  margin: 0;
  color: var(--navy, #1a2445);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.message-role strong {
  font-family: "Shippori Mincho", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .message-split {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .message-page .team-hero {
    height: 220px;
  }

  .message-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .message-profile {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }

  .message-section {
    padding-top: 36px;
    padding-bottom: 56px;
  }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  background: #fff;
}

/* --- Hero --- */
.contact-hero {
  height: clamp(200px, 36vw, 330px);
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-intro h2 {
  margin: 0 0 20px;
  color: var(--navy, #1a2445);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.contact-intro h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin: 12px 0 30px;
  background: #c5a059;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */

.privacy-hero {
  background: #777;
}
.privacy-page .privacy-hero {
  height: 230px;
}
h2.privacy-policy-title {
  margin: 0 0 40px;
  color: var(--navy, #1a2445);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 2.2vw, 2.0rem);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
h2.privacy-policy-title::after {
  content: "";
  display: block;
  text-align: center;
  width: 200px;
  height: 2px;
  margin: 12px auto 0;
  background: #c5a059;
}

.privacy-article {
  font-size: clamp(0.9rem, 1.2vw, 1.00rem);
}
.privacy-article h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.2rem);
}
.privacy-contact-box P {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.0rem, 1.2vw, 1.1rem);
}
.privacy-contact-box dt {
  font-size: clamp(1.0rem, 1.2vw, 1.2rem);
  font-weight: 500;
}
.privacy-enacted {
  font-weight: 700;
}