/* JandJ Corporate V2 */

:root {
  --cream: #f4efe7;
  --paper: #fffaf2;
  --ink: #111111;
  --deep: #15120f;
  --muted: #756b5f;
  --line: rgba(17, 17, 17, .12);
  --gold: #b7833b;
  --gold-2: #d9b06f;
  --white: #ffffff;
  --shadow: 0 32px 90px rgba(17, 17, 17, .18);
  --radius: 34px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }

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

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 231, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}

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

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-brand__mark,
.site-footer__logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: var(--deep);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: -.04em;
}

.site-brand__text { display: grid; line-height: 1.15; }
.site-brand__name { font-size: 18px; font-weight: 900; letter-spacing: -.02em; }
.site-brand__tag { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__list {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #50483f;
  font-size: 14px;
  font-weight: 800;
}

.site-nav__list a:hover { color: var(--ink); }

.site-nav__contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.site-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.6);
}

.site-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep);
  border-radius: 999px;
}

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

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-size: cover;
  background-position: center;
  opacity: .34;
  transform: scale(1.02);
}

.hero__overlay {
  background:
    radial-gradient(circle at 82% 20%, rgba(183, 131, 59, .30), transparent 28%),
    linear-gradient(90deg, rgba(17,17,17,.96), rgba(17,17,17,.82) 52%, rgba(17,17,17,.45));
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  align-items: center;
  gap: 70px;
  padding: 92px 0 120px;
}

.hero__kicker {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 11vw, 142px);
  line-height: .84;
  letter-spacing: -.08em;
  font-weight: 950;
}

.hero__lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, background .22s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold-2); color: var(--deep); }
.btn--secondary { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: var(--white); }
.btn--dark { background: var(--deep); color: var(--white); }
.btn--outline { background: transparent; border: 1px solid var(--line); color: var(--deep); }

.hero__panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  pointer-events: none;
}

.hero__panel-label {
  margin: 0 0 22px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero__panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__panel li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: -.01em;
}

.hero__panel li span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217,176,111,.14);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

.hero__marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 34px;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(17,17,17,.72);
  color: rgba(255,255,255,.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero__marquee span { min-width: max-content; }

.intro,
.necoya,
.message {
  background: var(--paper);
}

.intro,
.business,
.strength,
.necoya,
.approach,
.message,
.company,
.contact {
  padding: 110px 0;
}

.intro__grid,
.strength__grid,
.necoya__grid,
.message__grid,
.company__grid,
.contact__box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.section-label--light { color: var(--gold-2); }

h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

p { margin-top: 0; }

.intro__body p,
.necoya__content p,
.message__grid > p,
.company__grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.section-head {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head h2 { max-width: 620px; }
.section-head > p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-head--compact {
  display: block;
  max-width: 720px;
}

.business__list {
  display: grid;
  gap: 20px;
}

.domain-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 24px 64px rgba(17,17,17,.08);
}

.domain-card:nth-child(even) {
  grid-template-columns: 1fr 42%;
}

.domain-card:nth-child(even) .domain-card__image {
  order: 2;
}

.domain-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.domain-card__content {
  display: grid;
  align-content: center;
  padding: 46px;
  position: relative;
}

.domain-card__no {
  position: absolute;
  right: 34px;
  top: 24px;
  color: rgba(17,17,17,.10);
  font-size: 72px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
}

.domain-card__content > p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.domain-card__text {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.strength {
  background: var(--deep);
  color: var(--white);
}

.strength__headline p:last-child {
  color: rgba(255,255,255,.64);
  font-size: 18px;
  line-height: 1.95;
}

.strength__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strength-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.strength-card span {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 34px;
  background: var(--gold-2);
}

.strength-card p {
  color: rgba(255,255,255,.64);
  line-height: 1.9;
}

.necoya__visual {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.necoya__visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.necoya__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17,17,17,.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.necoya__content {
  align-self: center;
}

.necoya__content p {
  margin-top: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.approach-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}

.approach-card div {
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.approach-card p {
  color: var(--muted);
  line-height: 1.9;
}

.message {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-table {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
}

.company-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
}

.company-row:last-child { border-bottom: 0; }

.company-row div:first-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.company-row div:last-child {
  font-weight: 700;
}

.contact {
  padding-top: 60px;
}

.contact__box {
  align-items: center;
  padding: 58px;
  border-radius: 42px;
  background: var(--deep);
  color: var(--white);
}

.contact__box p {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.9;
}

.contact__mail {
  display: grid;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: rgba(255,255,255,.08);
  transition: transform .22s ease, background .22s ease;
}

.contact__mail:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.contact__mail span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.contact__mail strong {
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  padding: 48px 0 34px;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.site-footer__brand p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__nav,
.site-footer__menu {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 22px;
  align-items: start;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #5b5147;
  font-size: 14px;
  font-weight: 900;
}

.site-footer__bottom {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  color: #8a8177;
  font-size: 12px;
}

.content-main {
  padding: 90px 0;
}

.content-card {
  padding: 50px;
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.content-card h1 {
  margin-top: 0;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -.06em;
}

.entry-content {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero__inner,
  .intro__grid,
  .strength__grid,
  .necoya__grid,
  .message__grid,
  .company__grid,
  .contact__box,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__panel {
    max-width: 520px;
  }

  .domain-card,
  .domain-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .domain-card:nth-child(even) .domain-card__image {
    order: 0;
  }

  .domain-card__image img {
    height: 300px;
  }

  .strength__cards,
  .approach__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 22px;
    right: 22px;
    padding: 24px;
    border-radius: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: grid;
  }

  .site-nav__list {
    display: grid;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__contact {
    margin-top: 16px;
    width: 100%;
  }

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

  .site-footer__nav,
  .site-footer__menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .site-header__inner,
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 28px, var(--container));
  }

  .site-header__inner {
    height: 74px;
  }

  .site-brand__tag {
    display: none;
  }

  .site-brand__mark,
  .site-footer__logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 70px 0 100px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__panel {
    padding: 22px;
  }

  .intro,
  .business,
  .strength,
  .necoya,
  .approach,
  .message,
  .company,
  .contact {
    padding: 72px 0;
  }

  h2 {
    font-size: 40px;
  }

  .intro__body p,
  .necoya__content p,
  .message__grid > p,
  .company__grid p {
    font-size: 16px;
  }

  .domain-card__content {
    padding: 28px;
  }

  .domain-card__no {
    font-size: 50px;
  }

  .necoya__visual img {
    height: 360px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 22px;
  }

  .contact__box {
    padding: 30px;
  }

  .contact__mail {
    padding: 24px;
  }

  .button-row,
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
