/* ==================================================
ROOT
================================================== */

:root {
  --black: #080807;
  --black-soft: #11110f;

  --ivory: #f4f1e9;
  --white: #ffffff;

  --gold: #ad9666;
  --gold-light: #c7ae77;

  --green: #073b3d;

  --line: rgba(173, 150, 102, 0.35);

  --max-width: 1280px;
}


/* ==================================================
RESET
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--ivory);
  color: var(--black);

  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}


/* ==================================================
COMMON
================================================== */

.section {
  position: relative;
}

.section-label {
  margin-bottom: 70px;

  color: var(--gold);

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

  letter-spacing: 0.2em;
}

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

.eyebrow {
  margin-bottom: 20px;

  color: var(--gold);

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

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}


/* ==================================================
HERO
================================================== */

.hero {
  position: relative;

  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;

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

  background-image: url("../image/hero01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22),
    rgba(0, 0, 0, 0.02)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(680px, 60vw);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  transform: translateY(-70px);
}

.hero-logo {
  width: 100%;
  height: auto;

  transform: translateY(15px);
}

.hero-message {
  margin: 50px 0 0;

  color: var(--gold-light);

  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;

  letter-spacing: 0.01em;
  text-align: center;
}

.scroll-guide {
  position: absolute;

  right: 36px;
  bottom: 35px;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;
  letter-spacing: 0.25em;

  writing-mode: vertical-rl;
}

.scroll-guide i {
  display: block;

  width: 1px;
  height: 60px;

  background: rgba(255, 255, 255, 0.4);
}


/* ==================================================
ABOUT
================================================== */

.about {
  position: relative;

  padding: 140px 7% 130px;

  background: var(--ivory);

  overflow: hidden;
}

.about-inner {
  position: relative;
  z-index: 3;

  width: min(var(--max-width), 100%);

  margin: 0 auto;
}

.about-decoration {
  position: absolute;

  right: -3vw;
  top: -2vw;

  z-index: 0;

  color: rgba(173, 150, 102, 0.075);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(160px, 21vw, 340px);
  font-weight: 400;

  letter-spacing: -0.08em;
  line-height: 1;

  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 9%;

  align-items: end;
}

.about-heading {
  padding-top: 35px;
}

.about-heading h2 {
  margin: 0;

  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 1.28;

  font-weight: 400;

  letter-spacing: -0.055em;
}

.about-heading h2 span {
  display: block;
  white-space: nowrap;
}

.about-content {
  position: relative;

  max-width: 540px;

  padding: 40px 0 15px 42px;

  border-left: 1px solid rgba(173, 150, 102, 0.45);
}

.about-jp {
  margin: 0 0 42px;

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

  letter-spacing: 0.04em;
}

.about-en {
  margin: 0;

  color: #777064;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  line-height: 1.9;
}

.about-visual {
  position: relative;
  z-index: 2;

  width: min(1050px, 78%);
  height: clamp(320px, 35vw, 520px);

  margin: 110px 6% 0 auto;

  background-image: url("../image/back01.png");
  background-size: cover;
  background-position: center;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.14);
}

.about-visual::before {
  content: "";

  position: absolute;

  left: -55px;
  top: 65px;

  width: 110px;
  height: 1px;

  background: var(--gold);
}

.about-visual::after {
  content: "ABOUT / 01";

  position: absolute;

  left: -55px;
  bottom: 30px;

  color: var(--gold);

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

  letter-spacing: 0.24em;

  writing-mode: vertical-rl;
}


/* ==================================================
VISION / PHILOSOPHY
================================================== */

.vision {
  position: relative;

  padding: 130px 7%;

  background: var(--ivory);
  color: var(--black);

  overflow: hidden;
}

.vision::before {
  content: "PHILOSOPHY";

  position: absolute;

  top: 45px;
  left: -20px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(110px, 14vw, 210px);
  font-weight: 400;

  line-height: 1;
  letter-spacing: -0.06em;

  color: rgba(183, 157, 106, 0.08);

  pointer-events: none;
  z-index: 0;
}

.vision-inner {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), 100%);
  min-height: 850px;

  margin: 0 auto;
}

.vision .section-label {
  position: relative;
  z-index: 5;

  margin-bottom: 80px;

  color: var(--gold);
}

.vision-heading {
  position: absolute;

  left: 0;
  top: 150px;

  z-index: 5;

  width: 28%;
}

.vision-heading .eyebrow {
  margin-bottom: 25px;
}

.vision-heading h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(58px, 6vw, 92px);
  font-weight: 400;

  line-height: 1.05;
  letter-spacing: -0.055em;
}

.vision-photo {
  position: absolute;

  right: 0;
  bottom: 0;

  z-index: 1;

  width: 58%;
  height: 58%;

  background-image: url("../image/light01.png");
  background-size: cover;
  background-position: center;

  opacity: 0.9;
}

.vision-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.22)
    );
}

.philosophy-cards {
  position: absolute;

  right: 2%;
  top: 85px;

  z-index: 4;

  width: 67%;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin: 0;
}

.philosophy-card {
  position: relative;

  min-height: 440px;

  padding: 62px 40px 55px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.philosophy-dark {
  background: #070707;
  color: var(--gold-light);
}

.philosophy-gold {
  background: var(--gold);
  color: var(--black);
}

.card-number {
  position: absolute;

  right: 30px;
  top: 22px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 58px;
  font-weight: 400;

  opacity: 0.22;
}

.card-small {
  margin: 0 0 30px;

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

  letter-spacing: 0.22em;
}

.philosophy-card h3 {
  margin: 0 0 34px;

  font-size: clamp(28px, 2.15vw, 34px);
  font-weight: 500;

  line-height: 1.55;
}

.philosophy-line {
  display: block;
  white-space: nowrap;
}

.card-en {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 15px;
  line-height: 1.7;

  opacity: 0.72;
}

.value {
  position: absolute;

  left: 0;
  bottom: 60px;

  z-index: 5;

  width: 36%;
  max-width: 470px;

  margin: 0;
  padding: 0;
}

.value-line {
  display: block;

  width: 60px;
  height: 1px;

  margin-bottom: 28px;

  background: var(--gold);
}

.value .card-small {
  color: var(--gold);
}

.value h3 {
  margin: 0 0 22px;

  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;

  line-height: 1.75;
}

.value p:last-child {
  margin: 0;

  color: #776f61;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 14px;
  line-height: 1.7;
}


/* ==================================================
BUSINESS
================================================== */

.business {
  position: relative;
  padding: 130px 7% 150px;
  background: var(--ivory);
  color: var(--green);
  overflow: hidden;
}

.business::before {
  content: "BUSINESS";
  position: absolute;
  top: 35px;
  right: -25px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(110px, 14vw, 210px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;

  color: rgba(183, 157, 106, 0.08);

  pointer-events: none;
  z-index: 0;
}

.business-inner {
  position: relative;
  z-index: 1;

  width: min(1200px, 86%);
  margin: 0 auto;
}

.business-header {
  margin-bottom: 85px;

  display: flex;
  align-items: flex-end;
  gap: 100px;
}

.business-header h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(65px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.business-intro {
  width: 330px;
  margin: 0 0 5px;
  padding-left: 28px;

  border-left: 1px solid var(--gold);

  color: #676158;
  font-size: 14px;
  line-height: 1.9;

  transform: translateY(-12px);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(7, 59, 61, 0.25);
  border-left: 1px solid rgba(7, 59, 61, 0.25);
}

.business-card {
  position: relative;

  min-height: 480px;
  padding: 45px 38px;

  border-right: 1px solid rgba(7, 59, 61, 0.25);
  border-bottom: 1px solid rgba(7, 59, 61, 0.25);

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.business-card:hover {
  background: var(--green);
  color: var(--ivory);
}

.business-number {
  margin-bottom: 55px;

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

  opacity: 0.35;
}

.business-category {
  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.business-card h3 {
  margin: 0 0 35px;

  font-family: Georgia, serif;
  font-size: clamp(32px, 3vw, 45px);
  font-weight: 400;
}

.business-card h4 {
  margin: 0 0 25px;
  font-size: 16px;
}

.business-jp,
.business-en {
  font-size: 13px;
  line-height: 1.8;
}

.business-jp {
  margin-bottom: 18px;
}

.business-en {
  margin-bottom: 0;

  font-family: Georgia, serif;
  opacity: 0.7;
}


/* KOH CARD LINK */

.business-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;

  display: block;
  cursor: pointer;
}


/* KOH - VIEW MORE */

.business-more {
  display: block;
  margin-top: 20px;
  padding-right: 12px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;

  text-align: right;
}

.business-more span {
  display: inline-block;
  margin-left: 5px;

  transition: transform 0.3s ease;
}

.business-card:hover .business-more {
  color: var(--ivory);
}

.business-card:hover .business-more span {
  transform: translateX(4px);
}


/* ==================================================
COMPANY + CONTACT
================================================== */

.company {
  position: relative;

  width: 100%;
  margin: 0;

  display: block;

  background: var(--gold);
  color: var(--black);

  overflow: hidden;
}

.company::before {
  content: "COMPANY";

  position: absolute;

  top: 35px;
  left: -20px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(110px, 14vw, 210px);
  font-weight: 400;

  line-height: 1;
  letter-spacing: -0.06em;

  color: rgba(0, 0, 0, 0.06);

  pointer-events: none;
  z-index: 0;
}

.company-image {
  display: none;
}

.company-content {
  position: relative;
  z-index: 1;

  width: min(1200px, 86%);
  min-height: 620px;

  margin: 0 auto;
  padding: 105px 0 110px;

  display: grid;

  grid-template-columns: 58% 42%;
  grid-template-rows: auto auto auto 1fr;

  background: transparent;

  color: var(--black);
}

.company-content > .section-label,
.company-content > .eyebrow,
.company-content > h2,
.company-content > .company-list {
  grid-column: 1;

  padding-right: 15%;
}

.company-content > .section-label {
  margin-bottom: 42px;

  color: rgba(0, 0, 0, 0.38);
}

.company-content > .eyebrow {
  margin-bottom: 20px;

  color: rgba(0, 0, 0, 0.45);
}

.company-content > h2 {
  margin: 0 0 55px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.company-list {
  width: 100%;
  max-width: 620px;

  margin: 0;
}

.company-row {
  padding: 16px 0;

  display: grid;

  grid-template-columns: 145px minmax(0, 1fr);

  gap: 25px;

  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.company-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.company-row dt {
  font-size: 9px;
  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.company-row dd {
  margin: 0;

  font-size: 12px;
  line-height: 1.6;
}


/* ==================================================
CONTACT INSIDE COMPANY
================================================== */

.company-contact-area {
  grid-column: 2;
  grid-row: 1 / 5;

  margin: 0;

  padding: 0 0 0 15%;

  border-left: 1px solid rgba(0, 0, 0, 0.22);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.company-contact-area .section-label {
  margin-bottom: 42px;

  color: rgba(0, 0, 0, 0.38);
}

.company-contact-area .eyebrow {
  margin-bottom: 20px;

  color: rgba(0, 0, 0, 0.45);
}

.company-contact-heading {
  margin: 0 0 48px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: -0.05em;
}

.company-contact-body {
  max-width: 420px;
}

.company-contact-body h3 {
  margin: 0 0 28px;

  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;

  line-height: 1.35;
}

.contact-en {
  margin: 0 0 10px;

  color: rgba(0, 0, 0, 0.68);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 14px;
  line-height: 1.8;
}

.contact-jp {
  margin: 0 0 42px;

  font-size: 14px;
  line-height: 1.9;

  letter-spacing: 0.03em;
}

.contact-button {
  width: 100%;
  max-width: 360px;

  min-height: 72px;

  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--black);

  color: var(--gold-light);

  text-decoration: none;

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

  letter-spacing: 0.18em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-button span {
  font-size: 17px;

  transition: transform 0.3s ease;
}

.contact-button:hover {
  background: var(--green);

  color: var(--ivory);

  transform: translateY(-2px);
}

.contact-button:hover span {
  transform: translateX(5px);
}

.contact-sp-break {
  display: none;
}


/* ==================================================
FOOTER
================================================== */

.footer {
  position: relative;

  min-height: 360px;

  margin: 0;

  display: flex;
  align-items: center;

  background-image: url("../image/footer01.png");
  background-size: cover;
  background-position: center 68%;
  background-repeat: no-repeat;

  color: var(--gold-light);

  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 2;

  width: min(420px, 32%);

  margin-left: 7%;
}

.footer-logo {
  width: 100%;

  margin-bottom: 35px;
}

.footer-inner > p {
  margin: 0 0 50px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  line-height: 1.5;
}

.footer small {
  color: rgba(255, 255, 255, 0.42);

  font-size: 9px;

  letter-spacing: 0.15em;
}


/* ==================================================
TABLET
701px - 1000px
================================================== */

@media screen and (min-width: 701px) and (max-width: 1000px) {


  /* ABOUT */

  .about {
    padding-bottom: 110px;
  }

  .about-decoration {
    top: 20px;
    right: -30px;

    font-size: clamp(110px, 17vw, 170px);
  }

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

    gap: 60px;
  }


  /* VISION */

  .vision {
    padding: 110px 7% 90px;
  }

  .vision::before {
    top: 45px;
    left: -15px;

    font-size: clamp(80px, 13vw, 130px);
  }

  .vision-inner {
    width: 100%;
    min-height: 0;
  }

  .vision .section-label {
    position: static;

    margin-bottom: 65px;
  }

  .vision-heading {
    position: static;

    width: 100%;

    margin-bottom: 55px;
  }

  .vision-heading .eyebrow {
    margin-bottom: 18px;
  }

  .vision-heading h2 {
    font-size: clamp(54px, 8vw, 72px);
    line-height: 1;
  }

  .value {
    position: static;

    width: 55%;
    max-width: 430px;

    margin: 0 0 55px;
  }

  .philosophy-cards {
    position: relative;

    top: auto;
    right: auto;

    z-index: 3;

    width: 96%;

    margin: 0 0 0 auto;

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy-card {
    min-height: 390px;

    padding: 50px 32px 42px;
  }

  .philosophy-card h3 {
    font-size: clamp(24px, 3.2vw, 30px);
    line-height: 1.55;
  }

  .card-number {
    right: 24px;
    top: 18px;

    font-size: 50px;
  }

  .card-en {
    font-size: 13px;
  }

.vision-photo {
  position: relative;

  right: -4%;
  bottom: auto;

  z-index: 1;

  width: 62%;
  height: 390px;

  margin: -200px 0 0 auto;

  background-position: center;
}


  /* BUSINESS */

  .business {
    padding-bottom: 120px;
  }

  .business::before {
    top: 35px;
    right: -20px;

    font-size: clamp(80px, 13vw, 130px);
  }

  .business-inner {
    width: 86%;
  }

  .business-header {
    display: block;

    margin-bottom: 65px;
  }

  .business-header h2 {
    margin-bottom: 38px;
  }

  .business-intro {
    width: 100%;
    max-width: 430px;

    margin: 0;

    padding-left: 22px;

    transform: none;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-more {
  display: block;
  margin-top: 28px;

  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: right;
}

.business-more span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.business-card:hover .business-more span {
  transform: translateX(4px);
}


  /* COMPANY + CONTACT */

  .company::before {
    top: 20px;
    left: -10px;

    font-size: 110px;

    color: rgba(0, 0, 0, 0.045);
  }

  .company-content {
    width: 100%;
    min-height: auto;

    padding: 85px 7% 95px;

    grid-template-columns: 55% 45%;
    grid-template-rows: auto auto auto 1fr;
  }

  .company-content > .section-label,
  .company-content > .eyebrow,
  .company-content > h2,
  .company-content > .company-list {
    padding-right: 10%;
  }

  .company-content > h2 {
    font-size: clamp(38px, 5.5vw, 54px);
  }

  .company-row {
    grid-template-columns: 115px minmax(0, 1fr);

    gap: 16px;

    padding: 13px 0;
  }

  .company-row dt {
    font-size: 8px;
  }

  .company-row dd {
    font-size: 10px;
  }

  .company-contact-area {
    padding-left: 12%;
  }

  .company-contact-heading {
    font-size: clamp(38px, 5.5vw, 54px);
  }

  .company-contact-body {
    max-width: none;
  }

  .company-contact-body h3 {
    font-size: 20px;
  }

  .contact-en,
  .contact-jp {
    font-size: 10px;
  }

  .contact-button {
    max-width: 280px;

    min-height: 60px;
  }


  /* FOOTER */

  .footer {
    min-height: 350px;

    background-position: center 68%;
  }

  .footer-inner {
    width: min(360px, 42%);

    margin-left: 7%;
  }

}


/* ==================================================
MOBILE
max-width: 700px
================================================== */

@media screen and (max-width: 700px) {

  .section-label {
    margin-bottom: 45px;
  }


  /* HERO */

  .hero {
    height: 680px;
    min-height: 0;

    background-position: 58% center;
  }

  .hero-inner {
    width: 88%;

    transform: translateY(-15px);
  }

  .hero-logo {
    width: 100%;

    transform: translateY(15px);
  }

  .hero-message {
    margin-top: 42px;

    font-size: 18px;
    line-height: 1.4;
  }

  .scroll-guide {
    display: none;
  }


  /* ABOUT */

  .about {
    padding: 100px 24px 80px;
  }

  .about-inner {
    width: 100%;
  }

  .about-decoration {
    top: 55px;
    right: -20px;

    font-size: 95px;
  }

  .about-layout {
    display: grid;

    grid-template-columns: 1fr;

    gap: 45px;

    align-items: start;
  }

  .about-heading {
    padding-top: 0;
  }

  .about-heading h2 {
    font-size: 38px;
    line-height: 1.35;
  }

  .about-content {
    max-width: none;

    padding: 0 0 0 20px;
  }

  .about-jp {
    margin-bottom: 28px;

    font-size: 15px;
    line-height: 1.9;
  }

  .about-en {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-visual {
    width: 100%;
    height: 250px;

    margin: 60px 0 0;
  }


  /* VISION */

  .vision {
    padding: 100px 24px 50px;
  }

  .vision::before {
    top: 40px;
    left: -8px;

    font-size: 72px;
  }

  .vision-inner {
    width: 100%;
    min-height: 0;
  }

  .vision .section-label {
    position: static;

    margin-bottom: 45px;
  }

  .vision-heading {
    position: static;

    width: 100%;

    margin-bottom: 55px;
  }

  .vision-heading h2 {
    font-size: 42px;
    line-height: 1.02;
  }

.value {
  position: static;
  width: 100%;
  max-width: none;
  margin: 0 0 40px;
  padding: 0;
}

  .philosophy-cards {
    position: relative;

    right: auto;
    top: auto;

    z-index: 3;

    width: 100%;

    margin: 0;

    grid-template-columns: 1fr;
  }

.philosophy-card {
  min-height: 0;
  padding: 42px 34px 40px;
}


  .philosophy-dark,
  .philosophy-gold {
    min-height: 0;
  }

.philosophy-card h3 {
  font-size: 27px;
  line-height: 1.45;
}

  .vision-photo {
    position: relative;

    right: auto;
    bottom: auto;

    z-index: 1;

    width: calc(100% + 48px);
    height: 360px;

    margin: -190px -24px 0;

    background-position: center;
  }


  /* BUSINESS */

  .business {
    padding: 90px 24px 100px;
  }

  .business::before {
    top: 28px;
    right: -12px;

    font-size: 72px;
  }

  .business-inner {
    width: 100%;
  }

  .business .section-label {
    margin-bottom: 45px;
  }

  .business-header {
    margin-bottom: 45px;

    display: block;
  }

  .business-header .eyebrow {
    margin-bottom: 15px;
  }

  .business-header h2 {
    margin-bottom: 28px;

    font-size: 52px;
    line-height: 0.95;
  }

  .business-intro {
    width: 100%;

    margin: 0;

    padding-left: 16px;

    transform: none;

    font-size: 12px;
    line-height: 1.75;
  }

  .business-grid {
    display: grid;

    grid-template-columns: 1fr;

    border-left: none;
  }

  .business-card {
    min-height: 0;

    padding: 28px 8px 30px;

    border-right: none;
  }

  .business-number {
    margin-bottom: 20px;

    font-size: 30px;
  }

  .business-category {
    margin-bottom: 8px;

    font-size: 9px;
    line-height: 1.4;
  }

  .business-card h3 {
    margin-bottom: 16px;

    font-size: 28px;
    line-height: 1;
  }

  .business-card h4 {
    margin-bottom: 13px;

    font-size: 14px;
  }

  .business-jp,
  .business-en {
    font-size: 11px;
    line-height: 1.65;
  }

  .business-jp {
    margin-bottom: 11px;
  }

  .business-en {
    margin-bottom: 0;
  }



  /* COMPANY + CONTACT */

  .company::before {
    top: 18px;
    left: -8px;

    font-size: 72px;

    color: rgba(0, 0, 0, 0.045);
  }

  .company-content {
    width: 100%;
    min-height: auto;

    padding: 70px 28px 75px;

    display: block;
  }

  .company-content > .section-label,
  .company-content > .eyebrow,
  .company-content > h2,
  .company-content > .company-list {
    padding-right: 0;
  }

  .company-content > .section-label {
    margin-bottom: 28px;
  }

  .company-content > .eyebrow {
    margin-bottom: 16px;
  }

  .company-content > h2 {
    margin: 0 0 35px;

    font-size: 42px;
    line-height: 1;
  }

  .company-list {
    width: 100%;
    max-width: none;
  }

  .company-row {
    grid-template-columns: 105px minmax(0, 1fr);

    gap: 18px;

    padding: 14px 0;
  }

  .company-row dt {
    font-size: 9px;
    line-height: 1.4;
  }

  .company-row dd {
    font-size: 11px;
    line-height: 1.6;

    word-break: normal;
    overflow-wrap: normal;
  }


  /* CONTACTをCOMPANYの下へ */

  .company-contact-area {
    width: 100%;

    margin: 25px 0 0;
    padding: 50px 0 0;

    display: block;

    border-left: none;
    border-top: none;
  }

  .company-contact-area .section-label {
    margin-bottom: 28px;
  }

  .company-contact-area .eyebrow {
    margin-bottom: 16px;
  }

  .company-contact-heading {
    margin: 0 0 30px;

    font-size: 42px;
    line-height: 1;
  }

  .company-contact-body {
    width: 100%;
    max-width: none;
  }

  .company-contact-body h3 {
    margin-bottom: 20px;

    font-size: 22px;
    line-height: 1.35;
  }

  .contact-en,
  .contact-jp {
    font-size: 11px;
    line-height: 1.75;
  }

  .contact-en br,
  .contact-jp br {
    display: none;
  }

  .contact-jp {
    margin-bottom: 28px;
  }

  .contact-button {
    width: 100%;
    max-width: none;

    min-height: 58px;
  }

  .contact-sp-break {
    display: block;
  }


  /* FOOTER */

  .footer {
    width: 100%;
    min-height: 330px;

    margin: 0;

    display: flex;
    align-items: flex-start;

    background-position: 60% center;
  }

  .footer-inner {
    width: 84%;

    margin: 0 auto;

    padding-top: 20px;

    text-align: center;
  }

  .footer-logo {
    width: 78%;

    margin: 0 auto 24px;
  }

  .footer-inner > p {
    margin-bottom: 32px;

    font-size: 12px;
    line-height: 1.6;
  }

}

/* ==================================================
VISION TITLE RESPONSIVE
================================================== */

/* PCだけ2行 */
@media screen and (min-width: 1001px) {
  .vision-word {
    display: block;
  }
}

/* TABLET + MOBILE は1行 */
@media screen and (max-width: 1000px) {
  .vision-word {
    display: inline;
  }

  .vision-heading h2 {
    white-space: nowrap;
  }
}

/* MOBILE */
@media screen and (max-width: 700px) {
  .vision-heading h2 {
    font-size: 46px;
    white-space: nowrap;
  }
}


/* ==================================================
BUSINESS COLOR BALANCE
================================================== */

/* セクションタイトル・事業名は深緑を残す */
.business-header h2,
.business-card h3 {
  color: var(--green);
}

/* 本文はサイト全体と揃えて黒系へ */
.business-category,
.business-card h4,
.business-jp {
  color: var(--black);
}

/* 英文は少し柔らかいグレー */
.business-en {
  color: #777064;
}

/* 番号はゴールド寄りに */
.business-number {
  color: var(--gold);
  opacity: 0.65;
}


/* ==================================================
BUSINESS HOVER COLOR
================================================== */

.business-card:hover .business-number,
.business-card:hover .business-category,
.business-card:hover h3,
.business-card:hover h4,
.business-card:hover .business-jp,
.business-card:hover .business-en {
  color: var(--ivory);
}

/* ==================================================
MISSION - PC → TABLET 中間幅
================================================== */

@media screen and (min-width: 1001px) and (max-width: 1300px) {

  .philosophy-card.philosophy-gold h3 .philosophy-line {
    font-size: 0.82em !important;
  }

  .value h3 {
    font-size: 0.88em;
  }

}

/* ==================================================
iPAD LANDSCAPE HERO
================================================== */

@media screen and (min-width: 1001px) and (max-width: 1400px) and (orientation: landscape) {

  .hero {
    height: 720px;
    min-height: 720px;
  }

  .hero-inner {
    transform: translateY(-40px);
  }

  .hero-logo {
    transform: translateY(0);
  }

  .hero-message {
    margin-top: 0;
    transform: translateY(-35px);
  }

}
