@charset "UTF-8";

:root {
  --green: #0d4b3f;
  --green-dark: #07352e;
  --green-light: #e2eee9;
  --lime: #b7d43c;
  --orange: #e97035;
  --sand: #f3efe5;
  --cream: #faf8f2;
  --ink: #17241f;
  --muted: #6c7772;
  --white: #fff;
  --line: #d7ddd9;
  --shadow: 0 22px 55px rgba(9, 45, 38, .14);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.85;
  letter-spacing: .035em;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
section { scroll-margin-top: 88px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 3.4vw;
  transition: background .3s, box-shadow .3s, height .3s;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(250, 248, 242, .95);
  box-shadow: 0 8px 30px rgba(10, 46, 39, .08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 3;
}
.brand-logo {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 20px;
  letter-spacing: .16em;
}
.brand-text small {
  margin-top: 5px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
}
.global-nav a {
  display: flex;
  flex-direction: column;
  color: #26332e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.global-nav a span {
  color: var(--green);
  font-size: 8px;
  letter-spacing: .16em;
}
.global-nav .nav-contact {
  min-height: 48px;
  padding: 0 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
}
.menu-button { display: none; }

.hero {
  min-height: 830px;
  padding: 160px 4vw 80px;
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 70%;
  background: var(--green-light);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 80%);
  z-index: 0;
}
.hero-tree {
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  opacity: .24;
  background:
    linear-gradient(to top, rgba(13,75,63,.32), transparent 70%),
    url("images/trees.svg") center bottom / cover no-repeat;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 4vw;
}
.hero-en {
  margin-bottom: 32px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 6.2vw, 88px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .82;
}
.hero-en span { display: block; }
.hero-en span:nth-child(2) {
  margin-left: 9%;
  color: var(--orange);
}
.hero-en span:nth-child(3) { margin-left: 2%; }
.hero h1 {
  margin: 0 0 24px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.55;
  letter-spacing: .12em;
}
.hero-sub {
  color: var(--muted);
  font-size: 14px;
}
.hero-logo-badge {
  margin-top: 28px;
  width: fit-content;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.hero-logo-badge img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}
.hero-logo-badge small {
  display: block;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero-logo-badge strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: .12em;
}
.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 610px;
}
.visual-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #d9e8e2;
  box-shadow: var(--shadow);
}
.visual-main {
  top: 0;
  right: 8%;
  width: min(28vw, 410px);
}
.visual-sub {
  width: min(15vw, 220px);
}
.visual-sub-a {
  left: 3%;
  top: 21%;
}
.visual-sub-b {
  right: 0;
  bottom: 0;
}
.hero-label {
  position: absolute;
  left: 23%;
  bottom: 7%;
  color: var(--green);
  font: 900 clamp(20px, 2.2vw, 32px)/.96 Arial, sans-serif;
  letter-spacing: -.03em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
.scroll-guide {
  position: absolute;
  left: 3.7vw;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.scroll-guide i {
  display: block;
  width: 54px;
  height: 1px;
  background: var(--green);
}

.section-wrap {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 70px;
}
.section-side .section-index,
.section-heading .section-index,
.recruit .section-index,
.contact .section-index {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}
.section-side h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4.2vw, 55px);
  font-weight: 600;
  letter-spacing: .1em;
}
.news-list { border-top: 1px solid var(--line); }
.news-item {
  min-height: 95px;
  display: grid;
  grid-template-columns: 130px 100px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.news-item time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
}
.news-category {
  padding: 5px 8px;
  color: var(--green);
  border: 1px solid var(--green);
  font-size: 10px;
  text-align: center;
}
.news-item a,
.news-item p {
  margin: 0;
  font-size: 14px;
}
.news-item a:hover { color: var(--orange); }

.business {
  padding: 120px max(5vw, 28px);
  color: #fff;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.business::after {
  content: "TAKERU";
  position: absolute;
  right: -1vw;
  top: 10px;
  color: rgba(255,255,255,.035);
  font: 900 clamp(110px, 18vw, 270px)/1 Arial, sans-serif;
  pointer-events: none;
}
.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 65px;
  display: grid;
  grid-template-columns: 105px 1fr auto;
  gap: 35px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.section-heading .number,
.recruit .number {
  color: var(--orange);
  font: 900 21px/1 Arial, sans-serif;
  letter-spacing: -.02em;
}
.section-heading-light .section-index { color: var(--lime); }
.section-heading-light h2 { color: #fff; }
.section-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.section-heading-light .section-lead { color: rgba(255,255,255,.68); }

.business-cards {
  width: min(1180px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.business-card {
  color: var(--ink);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.business-card:nth-child(2) { transform: translateY(42px); }
.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.business-card:nth-child(2):hover { transform: translateY(34px); }
.business-image { background: var(--green-light); }
.business-body { padding: 30px; }
.card-number {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.business-card h3 {
  margin-bottom: 14px;
  font-family: "Yu Mincho", serif;
  font-size: 23px;
  letter-spacing: .06em;
}
.business-card p:not(.card-number) {
  color: var(--muted);
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  margin-top: 15px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}
.text-link i { font-style: normal; font-size: 17px; }
.provisional-note {
  width: min(1180px, 100%);
  margin: 80px auto 0;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.works {
  padding: 120px max(5vw, 28px);
  background: var(--sand);
}
.round-link {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 23px;
}
.works-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, auto);
  gap: 32px;
}
.work-card { min-width: 0; }
.work-large { grid-row: 1 / 3; }
.work-image {
  overflow: hidden;
  background: #dfe9e4;
}
.work-card img { transition: transform .5s; }
.work-card:hover img { transform: scale(1.025); }
.work-type {
  margin: 20px 0 5px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}
.work-card h3 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: .06em;
}
.dark-note {
  margin-top: 42px;
  color: var(--muted);
}

.company {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  color: #fff;
}
.company-photo {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: linear-gradient(#dbe9e4 0 58%, #9ab5a7 58% 100%);
}
.company-landscape { position: absolute; inset: 0; overflow: hidden; }
.mountain {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 25%;
  height: 48%;
  background: #789b8a;
  clip-path: polygon(0 68%, 12% 35%, 24% 61%, 37% 23%, 50% 64%, 65% 31%, 78% 58%, 90% 18%, 100% 55%, 100% 100%, 0 100%);
}
.mountain-b {
  bottom: 14%;
  height: 37%;
  background: #557c6c;
  transform: scaleX(-1);
}
.mountain-c {
  bottom: 4%;
  height: 26%;
  background: #315f50;
}
.town {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 22%;
  background:
    linear-gradient(90deg,
      #f7efe0 0 9%, transparent 9% 12%,
      #d8b583 12% 25%, transparent 25% 29%,
      #f2dfbf 29% 42%, transparent 42% 46%,
      #c8945e 46% 58%, transparent 58% 63%,
      #f7efe0 63% 74%, transparent 74% 78%,
      #d8b583 78% 91%, transparent 91%);
  clip-path: polygon(0 28%, 5% 28%, 5% 15%, 9% 15%, 9% 30%, 19% 30%, 19% 5%, 23% 5%, 23% 34%, 38% 34%, 38% 18%, 43% 18%, 43% 32%, 56% 32%, 56% 8%, 61% 8%, 61% 27%, 77% 27%, 77% 12%, 82% 12%, 82% 31%, 100% 31%, 100% 100%, 0 100%);
}
.company-content {
  padding: 100px 8vw 90px 7vw;
}
.company-content .section-heading {
  margin-bottom: 45px;
  grid-template-columns: 80px 1fr;
}
.company-message {
  margin-bottom: 28px;
  font-family: "Yu Mincho", serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.6;
  letter-spacing: .1em;
}
.company-text {
  max-width: 560px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.company-links {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.company-links a {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
}
.company-links a:hover { color: var(--lime); }

.profile { background: #fff; }
.profile-list { border-top: 1px solid var(--line); }
.profile-list div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.profile-list dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.profile-list dd {
  color: var(--muted);
  font-size: 13px;
}

.recruit {
  min-height: 620px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: var(--green-light);
}
.recruit-copy {
  padding: 90px 7vw;
  align-self: center;
}
.recruit .section-index { margin-bottom: 12px; }
.recruit h2 {
  margin: 0 0 25px;
  color: var(--green);
  font: 600 clamp(34px, 4vw, 55px)/1.5 "Yu Mincho", serif;
  letter-spacing: .1em;
}
.recruit-copy > p:not(.number):not(.section-index) {
  max-width: 490px;
  color: var(--muted);
  font-size: 13px;
}
.outline-link {
  min-width: 230px;
  margin-top: 26px;
  padding: 15px 20px;
  display: inline-flex;
  justify-content: space-between;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.recruit-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green);
}
.recruit-visual img { max-width: 760px; }

.contact {
  padding: 95px max(5vw, 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  background: var(--orange);
}
.contact .section-index { color: #fff5e9; }
.contact h2 { font-size: clamp(30px, 3.7vw, 50px); }
.contact p { color: rgba(255,255,255,.78); font-size: 13px; }
.contact-actions {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 15px;
}
.contact-disabled {
  min-height: 105px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--green);
}
.contact-disabled small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}
.contact-disabled strong {
  margin-top: 5px;
  font-size: 18px;
}
.contact-mail { color: #fff; background: var(--green); }
.contact-mail strong { font-size: 13px; }

.site-footer {
  padding: 55px max(5vw, 28px) 30px;
  color: #fff;
  background: #052a24;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-brand .brand-logo { background: #fff; }
.footer-brand .brand-text small { color: var(--lime); }
.page-top {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.5);
  font-size: 10px;
}
.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
  .global-nav { gap: 15px; }
  .global-nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .visual-main { width: 36vw; }
  .visual-sub { width: 18vw; }
}

@media (max-width: 760px) {
  body { line-height: 1.75; }
  section { scroll-margin-top: 67px; }
  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    padding: 0 18px;
  }
  .brand-logo { width: 44px; height: 44px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 6.5px; }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: var(--green);
  }
  .menu-button span {
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    transition: .25s;
  }
  .menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    padding: 25px 22px 30px;
    background: rgba(250,248,242,.98);
    box-shadow: 0 18px 30px rgba(5,42,36,.1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .global-nav.is-open { display: flex; }
  .global-nav a,
  .global-nav a:not(.nav-contact) {
    min-height: 55px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--line);
  }
  .global-nav .nav-contact { margin-top: 18px; }

  .hero {
    min-height: 900px;
    padding: 120px 20px 70px;
    display: block;
  }
  .hero::before { width: 80%; height: 43%; }
  .hero-copy { padding-left: 4px; }
  .hero-en {
    margin-bottom: 26px;
    font-size: clamp(54px, 18vw, 78px);
  }
  .hero h1 { font-size: 27px; }
  .hero-sub { font-size: 12px; }
  .hero-visual {
    min-height: 400px;
    margin-top: 38px;
  }
  .visual-main {
    right: 5%;
    width: min(60vw, 290px);
  }
  .visual-sub { width: min(30vw, 145px); }
  .visual-sub-a { left: 0; top: 25%; }
  .visual-sub-b { right: 0; bottom: -5%; }
  .hero-label { left: 22%; bottom: 1%; font-size: 18px; }
  .scroll-guide { display: none; }
  .hero-tree { height: 115px; }

  .section-wrap {
    width: min(100% - 36px, 660px);
    padding: 75px 0;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-side h2,
  .section-heading h2,
  .contact h2 { font-size: 34px; }
  .news-item {
    padding: 20px 0;
    grid-template-columns: 100px 1fr;
    gap: 8px 15px;
  }
  .news-item a,
  .news-item p { grid-column: 1 / 3; font-size: 13px; }

  .business,
  .works { padding: 80px 18px; }
  .section-heading {
    margin-bottom: 42px;
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }
  .section-heading .round-link { display: none; }
  .section-lead br { display: none; }
  .business-cards { grid-template-columns: 1fr; gap: 22px; }
  .business-card:nth-child(2) { transform: none; }
  .business-card:nth-child(2):hover { transform: translateY(-8px); }
  .provisional-note { margin-top: 35px; }

  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 38px;
  }
  .work-large { grid-row: auto; }

  .company { grid-template-columns: 1fr; }
  .company-photo { min-height: 420px; }
  .company-content { padding: 75px 22px; }
  .company-content .section-heading { grid-template-columns: 55px 1fr; }
  .company-message { font-size: 27px; }

  .profile-list div {
    padding: 17px 0;
    grid-template-columns: 105px 1fr;
  }

  .recruit { grid-template-columns: 1fr; }
  .recruit-copy { padding: 75px 22px; }
  .recruit h2 { font-size: 36px; }
  .recruit-visual { min-height: 390px; }

  .contact {
    padding: 75px 22px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-actions { grid-template-columns: 1fr; }

  .footer-top,
  .footer-bottom { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}


@media (max-width: 760px) {
  .hero-logo-badge { padding: 10px 12px; gap: 12px; }
  .hero-logo-badge img { width: 58px; height: 58px; }
  .hero-logo-badge strong { font-size: 14px; }
}


/* Official company information */
.permit-badge {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 4px solid var(--lime);
  background: rgba(255,255,255,.08);
}
.permit-badge small {
  display: block;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}
.permit-badge strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  letter-spacing: .045em;
}
.permit-badge span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
}
.profile-list a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.profile-list a:hover { color: var(--orange); }
.profile-en {
  margin-left: 10px;
  color: var(--muted);
  font-size: 11px;
}
.contact-actions {
  grid-template-columns: 1fr 1.3fr;
}
.contact-item {
  min-height: 118px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--green);
  transition: transform .25s, box-shadow .25s;
}
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(71,31,12,.18);
}
.contact-item small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}
.contact-item strong {
  margin-top: 5px;
  font-size: clamp(14px, 1.45vw, 19px);
  overflow-wrap: anywhere;
}
.contact-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}
.contact-item.contact-mail {
  color: #fff;
  background: var(--green);
}
.contact-item.contact-mail span { color: rgba(255,255,255,.68); }
.contact-mobile {
  grid-column: 1 / 3;
  min-height: 90px;
  background: #fff4e8;
}
@media (max-width: 760px) {
  .permit-badge strong { font-size: 14px; }
  .profile-en { display: block; margin: 3px 0 0; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-mobile { grid-column: auto; }
}


/* Contact information: office telephone only */
.contact-actions-single {
  grid-template-columns: minmax(260px, 440px);
  justify-content: start;
}
.contact-actions-single .contact-item {
  min-height: 118px;
}
@media (max-width: 760px) {
  .contact-actions-single {
    grid-template-columns: 1fr;
  }
}


/* What's New and production credit */
.news .section-index {
  letter-spacing: .13em;
}
.footer-credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 10px;
  text-align: right;
}
.footer-credit a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-credit a:hover {
  color: #fff;
}
.footer-bottom time {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .footer-credit {
    text-align: left;
  }
}


/* Since / powered by credit */
.footer-credit {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .45em;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .footer-credit {
    justify-content: flex-start;
  }
}


/* President message section */
.message {
  padding: 110px max(5vw, 28px);
  background: #fff;
}
.message-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.message-photo {
  overflow: hidden;
  background: #e8eceb;
  box-shadow: var(--shadow);
}
.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-content h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4.2vw, 55px);
  font-weight: 600;
  letter-spacing: .1em;
}
.message-role {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.message-role span {
  margin-left: 10px;
  color: var(--muted);
  font-weight: 500;
}
.message-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .message {
    padding: 80px 22px;
  }
  .message-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .message-content h2 {
    font-size: 34px;
  }
  .message-role {
    font-size: 14px;
  }
}
