:root {
  --navy: #102a3d;
  --navy-deep: #091d2c;
  --navy-soft: #1c4058;
  --ivory: #f7f4ed;
  --white: #fffdf9;
  --gold: #c89a52;
  --gold-light: #e3c78f;
  --text: #23313a;
  --muted: #64717a;
  --border: rgba(16, 42, 61, .14);
  --max: 1180px;
  --shadow: 0 22px 58px rgba(9, 29, 44, .09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;

  background: var(--white);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    Meiryo,
    sans-serif;

  font-size: 16px;
  line-height: 1.85;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 9999;

  padding: 10px 16px;

  background: white;
  color: black;

  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 253, 249, .97);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 82px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: var(--navy);
  color: var(--gold-light);

  font-family: Georgia, serif;
  font-size: 23px;
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.2;
}

.brand-text strong {
  color: var(--navy);

  font-size: 16px;
  letter-spacing: .07em;
}

.brand-text small {
  margin-top: 5px;

  color: var(--muted);

  font-size: 9px;
  letter-spacing: .22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--navy);

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.desktop-nav .contact-nav {
  padding: 11px 17px;

  border: 1px solid var(--navy);
}

.desktop-nav .contact-nav:hover {
  background: var(--navy);
  color: white;
}

.menu-button {
  width: 46px;
  height: 46px;

  display: none;

  padding: 10px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 6px 0;

  background: var(--navy);
}

.mobile-menu {
  padding: 8px 24px 24px;

  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  display: block;

  padding: 13px 3px;

  border-bottom: 1px solid var(--border);

  color: var(--navy);

  font-weight: 600;

  text-decoration: none;
}

/* COMMON */

.section {
  padding: 110px 24px;
}

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

.label {
  margin: 0 0 18px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: .25em;
}

h1,
h2 {
  color: var(--navy);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;

  font-weight: 600;
}

h1 {
  margin: 0;

  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.3;
}

h2 {
  margin: 0;

  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.55;
}

h3 {
  color: var(--navy);
}

.lead {
  max-width: 730px;

  margin: 25px 0 0;

  color: #42545f;

  font-size: 17px;
  line-height: 2;
}

.button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 27px;

  text-decoration: none;

  transition: .2s ease;
}

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

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

  font-weight: 700;
}

.button-outline {
  border: 1px solid var(--navy);

  color: var(--navy);

  font-weight: 700;
}

.text-link {
  color: var(--navy);

  font-weight: 700;

  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.breadcrumb {
  width: min(calc(100% - 48px), var(--max));

  margin: 0 auto;
  padding: 18px 0;

  color: var(--muted);

  font-size: 12px;
}

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

.page-hero {
  padding: 86px 24px 90px;

  background: var(--ivory);
  border-bottom: 1px solid var(--border);
}

.page-hero .inner {
  max-width: var(--max);
}

.page-hero h1 {
  max-width: 850px;

  font-size: clamp(38px, 4.7vw, 62px);
}

.page-hero .lead {
  max-width: 760px;
}

/* HOME HERO */

.home-hero {
  min-height: 670px;

  display: grid;
  grid-template-columns:
    minmax(0, 1.04fr)
    minmax(410px, .96fr);

  background: var(--ivory);
}

.home-hero-copy {
  width: min(100%, 720px);

  justify-self: end;

  padding: 102px 68px 92px 48px;
}

.home-hero h1::after {
  content: "";

  width: 72px;
  height: 2px;

  display: block;

  margin-top: 30px;

  background: var(--gold);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 31px 0 0;
  padding: 0;

  list-style: none;
}

.hero-tags li {
  min-width: 96px;

  padding: 8px 14px;

  border: 1px solid rgba(16, 42, 61, .24);

  color: var(--navy);

  font-size: 13px;
  font-weight: 600;

  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 36px;
}

.home-hero-visual {
  min-height: 670px;

  position: relative;
  overflow: hidden;

  background-color: var(--navy);

  background-image:
    linear-gradient(
      135deg,
      rgba(9, 29, 44, .91),
      rgba(16, 42, 61, .29)
    ),
    url("../images/samukuro-consulting.webp");

  background-position: center;
  background-size: cover;
}

.home-hero-visual::before {
  content: "";

  position: absolute;
  inset: 28px;

  border: 1px solid rgba(227, 199, 143, .35);
}

.hero-visual-copy {
  position: absolute;

  right: 48px;
  bottom: 45px;

  color: rgba(255, 255, 255, .73);

  font-family: Georgia, serif;
  font-size: 13px;

  letter-spacing: .24em;

  text-align: right;
}

/* HOME ABOUT */

.about-grid {
  display: grid;

  grid-template-columns: .92fr 1.08fr;

  gap: 86px;
}

.about-copy {
  padding-top: 32px;

  border-top: 1px solid var(--border);
}

.about-copy p {
  margin: 0 0 22px;

  color: #45545e;

  font-size: 17px;
  line-height: 2.05;
}

/* CARDS */

.support-section {
  background: var(--navy);
}

.support-section h2,
.support-section .section-intro {
  color: white;
}

.section-intro {
  margin: 17px 0 0;

  color: var(--muted);
}

.card-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 48px;
}

.card {
  padding: 37px 32px;

  background: var(--white);
  border-top: 4px solid var(--gold);
}

.card-number {
  display: block;

  margin-bottom: 35px;

  color: var(--gold);

  font-family: Georgia, serif;
  font-size: 17px;
}

.card h3 {
  margin: 0;

  font-size: 22px;
}

.card p {
  color: #58656d;
}

.card ul {
  margin: 23px 0 0;
  padding: 22px 0 0;

  border-top: 1px solid var(--border);

  list-style: none;
}

.card li {
  position: relative;

  margin: 10px 0;
  padding-left: 17px;

  font-size: 14px;
}

.card li::before {
  content: "";

  position: absolute;
  top: .78em;
  left: 0;

  width: 6px;
  height: 1px;

  background: var(--gold);
}

/* FEATURE */

.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 45px;
}

.feature {
  padding: 30px;

  border: 1px solid var(--border);
}

.feature h3 {
  margin-top: 0;
}

.feature p {
  color: var(--muted);
}

/* CTA */

.cta {
  padding: 90px 24px;

  background:
    linear-gradient(
      115deg,
      var(--navy-deep),
      var(--navy)
    );

  color: white;

  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  margin: 18px auto 31px;

  color: rgba(255, 255, 255, .75);
}

.cta-phone {
  min-width: min(100%, 370px);

  display: inline-flex;
  flex-direction: column;

  padding: 20px 30px;

  border: 1px solid rgba(227, 199, 143, .65);

  color: white;

  text-decoration: none;
}

.cta-phone span {
  color: var(--gold-light);

  font-size: 12px;
}

.cta-phone strong {
  margin-top: 4px;

  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

/* BUSINESS */

.business-list {
  margin: 42px 0 0;
  padding: 0;

  border-top: 2px solid var(--navy);

  counter-reset: item;

  list-style: none;
}

.business-list li {
  position: relative;

  min-height: 86px;

  padding: 27px 20px 27px 75px;

  border-bottom: 1px solid var(--border);

  counter-increment: item;
}

.business-list li::before {
  content: counter(item, decimal-leading-zero);

  position: absolute;
  top: 27px;
  left: 18px;

  color: var(--gold);

  font-family: Georgia, serif;
  font-size: 14px;
}

/* COMPANY TABLE */

.company-table {
  margin: 45px 0 0;

  border-top: 2px solid var(--navy);
}

.company-table > div {
  display: grid;

  grid-template-columns: 200px 1fr;

  border-bottom: 1px solid var(--border);
}

.company-table dt,
.company-table dd {
  margin: 0;

  padding: 24px 25px;
}

.company-table dt {
  color: var(--navy);

  font-weight: 700;
}

.company-table dd {
  color: #47555e;
}

/* NEWS */

.news-list {
  margin-top: 42px;

  border-top: 2px solid var(--navy);
}

.news-empty {
  padding: 55px 15px;

  border-bottom: 1px solid var(--border);

  color: var(--muted);

  text-align: center;
}

/* CONTACT */

.contact-box {
  max-width: 780px;

  margin-top: 45px;
  padding: 42px;

  background: var(--ivory);
  border: 1px solid var(--border);
}

.contact-box h2 {
  font-size: 30px;
}

.contact-number {
  display: inline-block;

  margin-top: 20px;

  color: var(--navy);

  font-family: Georgia, serif;
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 600;

  text-decoration: none;
}

/* FOOTER */

.site-footer {
  padding: 56px 24px 35px;

  background: #061520;

  color: rgba(255, 255, 255, .70);
}

.footer-inner {
  width: min(100%, var(--max));

  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}

.footer-brand strong {
  display: block;

  color: white;

  font-size: 17px;
}

.footer-brand small {
  color: rgba(255, 255, 255, .43);

  letter-spacing: .18em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
}

.footer-nav a {
  font-size: 12px;

  text-decoration: none;
}

.footer-meta {
  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, .12);

  font-size: 13px;
}

.footer-note {
  margin-top: 25px;

  color: rgba(255, 255, 255, .45);

  font-size: 11px;
}

.copyright {
  margin-top: 20px;

  color: rgba(255, 255, 255, .32);

  font-size: 10px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    width: min(100%, 820px);

    justify-self: center;

    padding: 80px 35px 70px;
  }

  .home-hero-visual {
    min-height: 410px;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .card-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .header-inner {
    width: min(calc(100% - 32px), var(--max));

    min-height: 70px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;

    font-size: 19px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .home-hero-copy {
    padding: 62px 21px 56px;
  }

  .home-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-actions {
    display: grid;

    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .home-hero-visual {
    min-height: 300px;
  }

  .section {
    padding: 75px 20px;
  }

  .page-hero {
    padding: 62px 20px 66px;
  }

  .breadcrumb {
    width: calc(100% - 40px);
  }

  .company-table > div {
    grid-template-columns: 1fr;

    padding: 20px 0;
  }

  .company-table dt,
  .company-table dd {
    padding: 0;
  }

  .company-table dd {
    margin-top: 6px;
  }

  .contact-box {
    padding: 29px 22px;
  }

  .footer-top {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

}
/* ==========================================================
   SAMUKURO_VISUAL_SYSTEM_V220
   ========================================================== */

.card-media {
  display: block;
  width: calc(100% + 64px);
  height: 175px;
  margin: -37px -32px 30px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.page-photo {
  width: 100%;
  max-height: 480px;
  margin: 42px 0 55px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.company-photo {
  width: 100%;
  height: clamp(260px, 37vw, 460px);
  margin-bottom: 55px;
  object-fit: cover;
}

.business-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.business-service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.business-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.business-service-copy {
  padding: 28px 30px 32px;
}

.business-service-copy .service-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .14em;
}

.business-service-copy h2 {
  margin-top: 9px;
  font-size: 25px;
}

.business-service-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 800px) {

  .business-service-grid {
    grid-template-columns: 1fr;
  }

  .business-service-card img {
    height: 190px;
  }

}

/* SAMUKURO_EMAIL_STYLE_V221 */

.footer-contact-email {
  margin: 18px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.footer-contact-email a {
  margin-left: 8px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
}

.footer-contact-email a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

#CONTACT_EMAIL_BOX_V221 {
  margin-top: 25px;
}

/* ==========================================================
   SAMUKURO_CONTACT_V223
   ========================================================== */

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.contact-options .contact-box {
  max-width: none;
  margin: 0;
  padding: 42px;
}

.contact-email-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--navy);
  font-size: clamp(18px, 2.3vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-all;
}

.contact-email-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options .contact-box {
    padding: 30px 22px;
  }

}
/* ==========================================================
   SAMUKURO_HIGHRES_V230
   ========================================================== */

.home-hero-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(16,42,61,.18), rgba(16,42,61,.18)),
    url("/assets/images/samukuro-consulting.webp") center center / cover no-repeat;
  overflow: hidden;
}

.hero-visual-copy {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.card-media {
  object-position: center center;
}

.page-photo,
.company-photo {
  object-position: center center;
}

@media (max-width: 760px) {
  .home-hero-visual {
    min-height: 320px;
  }
}