/* =====================================================
   日工藤原電機株式会社 コーポレートサイト
   メインスタイルシート
===================================================== */

/* ----- Variables ----- */
:root {
  /* Colors */
  --color-primary: #3A8B2F;
  --color-primary-dark: #2D6E25;
  --color-primary-light: #5CAF4E;
  --color-secondary: #4CAF50;
  --color-accent: #88C542;
  --color-navy: #002049;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-gray: #999999;
  --color-white: #FFFFFF;
  --color-bg-gray: #F5F5F5;
  --color-bg-light: #F9F9F9;
  --color-border: #E0E0E0;
  --color-border-light: #EEEEEE;

  /* Typography */
  --font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Khula", sans-serif;

  /* Spacing */
  --content-width: 1200px;
  --content-padding: 40px;
  --header-width: 256px;

  /* Animation */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ----- Layout ----- */
.l-wrapper {
  display: flex;
  min-height: 100vh;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--header-width);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;

}

.l-main {
  flex: 1;
  margin-left: var(--header-width);
  min-width: 0;
  background: #F1F1F1;

}

.l-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* ----- Header ----- */
.header {
  background: linear-gradient(90deg, #45AC56 23.74%, #E7FFA0 168.75%);

}

.header__logo {
  background: #fff;
  display: flex;
  align-items: center;justify-content: center;
  padding: 2rem 0;
}

.header__logo img {
  width: 166px;
  height: auto;
}
.header__nav {
  margin-top: -29px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
  /* overflow: hidden; */
  overflow-y: auto;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .header__nav {
    margin-top: 0;
  }
}


.header__nav-list {
  display: flex;
  flex-direction: column;
  
}

.header__nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header__nav-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.header__nav-link {
  display: block;
  padding: 23px 38px;
  color: var(--color-white);
  transition: background-color var(--transition-base);
}

.header__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__nav-link-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 37px;
}

.header__nav-link-ja {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.03em;

}

.header__nav-item.is-current .header__nav-link {
  background-color: rgba(255, 255, 255, 0.15);
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 135px;
  /* background: linear-gradient(180deg, #5CAF4E 0%, #3A8B2F 100%); */
  color: var(--color-white);
  text-align: center;
  transition: opacity var(--transition-base);
  flex-shrink: 0;
  margin-top: auto;
  background:#005C39;
  
}

.header__contact:hover {
  opacity: 0.9;
}

.header__contact-en {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 37px;
}

.header__contact-ja {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 2px;
}

/* ----- Page Header ----- */
.page-header {
  position: relative;
  height: 526px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 64px;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  height: 100%;
  width: 100%;
  top:0;
  background-size: cover cover;
  background-repeat: no-repeat;

}

@media screen and (max-width: 768px) {
  .page-news .page-header__bg,
  .page-contact .page-header__bg{
    background-size: 100% 100%;
  
  }
  
}

.page-header__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 40%;
  background: rgba(0, 28, 65, 0.35);
  clip-path: polygon(0 0, 0 0, 100% 100%, 0 100%);
      width: 70%;
    height: 57%;
}

.page-header__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.page-header__title-en {
  font-family: var(--font-en);
  font-size: 6.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.page-header__title-en {
  font-family: var(--font-en);
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-header__title-ja {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.1em;
  line-height: 1em;
}

/* ----- Section ----- */
.section {
  padding: 80px 0;
}

.section--gray {
  background-color: var(--color-bg-gray);
}

.section__header {
  margin-bottom: 48px;
  text-align: center;
}

.section__header--left {
  text-align: left;
}

.section__header--left .section__title {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section__title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  justify-content: center;
}

.section__title-en {
  font-family: var(--font-en);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.section__title-en--gradient {
  font-size: 4rem;
  background: linear-gradient(90deg, #9ec231 0%, #45ac56 55%, #249336 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title-ja {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.section__header--left .section__title-ja {
  font-size: 2rem;
  font-weight: 500;
  color: #002049;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin-top: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.section__line {
  width: 100%;
  max-width: 300px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  margin-top: 16px;
}

.section__text {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* ----- Button ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: 500;
  border: 2px solid #249336;
  border-radius: 9999px;
  color: #249336;
  background-color: #fff;
  transition: all var(--transition-base);
  position: relative;
  min-width: 240px;

}

.btn:hover {
  background-color: #249336;
  color: var(--color-white);
}

.btn::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background-color: currentColor;
  transition: transform var(--transition-base);
  position: absolute;
  right: -20px;
}
.btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100vmax;
  background-color: currentColor;
  transition: transform var(--transition-base);
  position: absolute;
  right: 20px;
  top: 20px;

}
.btn:hover::after,.btn:hover::before {
  transform: translateX(8px);
}

.btn--white {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ----- CTA Banner ----- */
.cta-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cta-banner__item {
  position: relative;
  height: 434px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.cta-banner__item:hover .cta-banner__bg {
  transform: scale(1.05);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(9, 22, 29, 0.43);
  transition: background-color 0.3s ease;
}

.cta-banner__item:hover .cta-banner__overlay {
  background-color: rgba(9, 22, 29, 0.55);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.cta-banner__title-en {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

.cta-banner__title-ja {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 8px;
}

.cta-banner__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.cta-banner__item:hover .cta-banner__arrow {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ----- Contact Section ----- */
.contact-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}
.page-nikko-group .cta-banner,
.page-recruit .cta-banner
{
  display: none;
}
.page-nikko-group .contact-section,.page-recruit .contact-section {
  background: url(/assets/images/bg-contact-wide.png) no-repeat center center / cover;
}
.page-nikko-group .contact-section .contact-section__content .contact-section__title-ja,
.page-nikko-group .contact-section .contact-section__content .contact-section__title-en,
.page-nikko-group .contact-section .contact-section__content .contact-section__text, 
.page-nikko-group .contact-section .contact-section__tel,
.page-nikko-group .contact-section .contact-section__tel-number, 
.page-nikko-group .contact-section .contact-section__content .contact-section__form-text,
.page-nikko-group .contact-section .contact-section__content .contact-section__form-note,
.page-recruit .contact-section .contact-section__content .contact-section__title-ja,
.page-recruit .contact-section .contact-section__content .contact-section__title-en,
.page-recruit .contact-section .contact-section__content .contact-section__text, 
.page-recruit .contact-section .contact-section__tel,
.page-recruit .contact-section .contact-section__tel-number, 
.page-recruit .contact-section .contact-section__content .contact-section__form-text,
.page-recruit .contact-section .contact-section__content .contact-section__form-note
{
  color: #fff!important;
}
.page-nikko-group .contact-section .contact-section__content .contact-section__line,
.page-recruit .contact-section .contact-section__content .contact-section__line{
  background: #fff;
}
.page-nikko-group .contact-section .contact-section__content .contact-section__form-btn,
.page-recruit .contact-section .contact-section__content .contact-section__form-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.page-nikko-group .contact-section .contact-section__content .contact-section__divider,
.page-recruit .contact-section .contact-section__content .contact-section__divider {
  background: #fff;

}

.page-nikko-group .contact-section .contact-section__content .contact-section__title-en,
.page-recruit .contact-section .contact-section__content .contact-section__title-en {
  /* background: linear-gradient(90deg, #fff 24%, #fff 169%); */
  background: none;
  -webkit-text-fill-color: #fff;
  
  
}
.contact-section__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .contact-section__content {
    padding: 0 0px;
  }
}

.contact-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section__title-en {
  font-family: var(--font-en);
  font-size: 9.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #45ac56 24%, #e7ffa0 169%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section__title-ja {
  font-size: 3.7rem;
  font-weight: 700;
  color: #249336;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.contact-section__line {
  width: 230px;
  height: 3px;
  background: linear-gradient(90deg, #9ec231 0%, #45ac56 55%, #249336 100%);
  margin: 16px auto 0;
}

.contact-section__text {
  margin-top: 24px;
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.contact-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.contact-section__tel {
  display: flex;
  align-items: baseline;
  font-family: 'Quattrocento Sans', var(--font-en), sans-serif;
  color: #45ac56;
}

.contact-section__tel-label {
  font-size: 3.6rem;
  font-weight: 700;
}

.contact-section__tel-number {
  font-size: 4rem;
  font-weight: 700;
  color: #45ac56;
  transition: opacity var(--transition-base);
}

.contact-section__tel-number:hover {
  opacity: 0.7;
}

.contact-section__divider {
  width: 2px;
  height: 81px;
  background: linear-gradient(180deg, #9ec231 0%, #45ac56 55%, #249336 100%);
}

.contact-section__form-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 321px;
  height: 89px;
  background-color: var(--color-white);
  border: 2px solid #249336;
  border-radius: 100vmax;
  transition: all var(--transition-base);
}

.contact-section__form-btn:hover {
  background-color: #249336;
}

.contact-section__form-btn:hover .contact-section__form-text,
.contact-section__form-btn:hover .contact-section__form-note {
  color: var(--color-white);
}

.contact-section__form-text {
  font-size: 2rem;
  font-weight: 700;
  color: #249336;
  letter-spacing: 0.03em;
  transition: color var(--transition-base);
}

.contact-section__form-note {
  font-size: 1.2rem;
  color: #249336;
  margin-top: 4px;
  letter-spacing: 0.03em;
  transition: color var(--transition-base);
}

/* ----- Footer ----- */
.footer {
  background: #e8e8e8;
  padding: 64px 0 32px;
}

.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

.footer__info {
  flex-shrink: 0;
}

.footer__logo {
  max-width: 221px;
  margin-bottom: 32px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__company-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 78px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.footer__address {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  font-style: normal;
  letter-spacing: 0.03em;
}

.footer__copyright {
  margin-top: 32px;
  font-family: var(--font-en);
  font-size: 1.2rem;
}

.footer__nav {
  display: flex;
  gap: 64px;
  padding-top: 140px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav-col:nth-child(2) {
  margin-top: 81px;
}
@media screen and (max-width: 768px) {
  /* .footer__nav {
    flex-direction: column;
    gap: 32px;
    padding-top: 64px;
  } */
  .footer__nav-col:nth-child(2) {
    margin-top: 0;
  }
}
.footer__nav-link {
  font-size: 1.6rem;
  font-weight: 600;
  transition: opacity var(--transition-base);
}

.footer__nav-link:hover {
  opacity: 0.7;
}

/* ----- Table ----- */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
  vertical-align: top;
}

.table th {
  width: 200px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-bg-light);
}

.table td {
  font-size: 1.4rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ----- Form ----- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-label__required {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-primary);
  margin-left: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.4rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ----- Animation ----- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----- Utility ----- */
.u-text-center { text-align: center; }
.u-text-left { text-align: left; }
.u-text-right { text-align: right; }
.u-mt-0 { margin-top: 0; }
.u-mt-16 { margin-top: 16px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-32 { margin-top: 32px; }
.u-mt-40 { margin-top: 40px; }
.u-mt-48 { margin-top: 48px; }
.u-mt-64 { margin-top: 64px; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-24 { margin-bottom: 24px; }
.u-mb-32 { margin-bottom: 32px; }
.u-mb-40 { margin-bottom: 40px; }

/* ----- Responsive (iPad and below) ----- */
@media screen and (max-width: 1024px) {
  /* iPad keeps PC layout but with minor adjustments */
  :root {
    --header-width: 220px;
    --content-padding: 32px;
  }

  .hero__title {
    font-size: 3.6rem;
  }

  .section__title-en {
    font-size: 3.6rem;
  }
}

/* ----- Responsive (Smartphone) ----- */
@media screen and (max-width: 768px) {
  :root {
    --header-width: 0px;
    --content-padding: 20px;
  }

  .l-header {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .l-main {
    margin-left: 0;
    margin-top: 60px;
    width: 100vw;
    overflow-x: hidden;
  }

  /* Header Mobile */
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    background: var(--color-white);
  }

  .header__logo {
    border: none;
    text-align: center;
    width: 95%;
    padding: 2vw 0;
  }
.header__logo a{
  display: block;
  width: 30vw;
  margin: 0 auto;
}
  .header__logo img {
    height: auto;
    width: auto;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #3A8B2F 0%, #2D6E25 100%);
    overflow-y: auto;
    padding: 24px;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav-list {
    gap: 0;
  }

  .header__nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .header__nav-item:first-child {
    border-top: none;
  }

  .header__nav-link {
    padding: 20px 0;
  }

  .header__contact {
    margin: 24px auto;
    height: auto;
    padding: 20px;
    width: 96%;
    
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px;
  }

  .hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition-base);
  }

  .hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 400px;
  }

  .hero__content {
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__logo {
    max-width: 280px;
  }

  .hero__text {
    font-size: 1.4rem;
  }

  /* Page Header */
  .page-header {
    height: 200px;
    padding-left: 20px;
    height: 400px;
    padding-bottom: 48px;
    padding-left: 20px;
   }

  .page-header--about {
    
  }

  .page-header__overlay {
    width: 60%;
  }

  .page-header__title-en {
    font-size: 3.2rem;
  }

  .page-header--about .page-header__title-en {
    font-size: 4rem;
  }

  /* Section */
  .section {
    padding: 48px 0;
  }

  .section__title-en {
    font-size: 3.2rem;
  }

  .section__subtitle {
    font-size: 2rem;
  }

  /* News */
  .news {
    margin: 0 16px;
    margin-top: -40px;
    padding: 24px;
  }

  .news__item {
    flex-direction: column;
    gap: 8px;
  }

  /* Service Grid */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA Banner */
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner__item {
    height: 280px;
    padding: 24px;
  }

  .cta-banner__title-en {
    font-size: 4.8rem;
  }

  .cta-banner__title-ja {
    font-size: 1.4rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 48px 20px;
  }

  .contact-section__title-en {
    font-size: 5rem;
  }

  .contact-section__title-ja {
    font-size: 2.4rem;
  }

  .contact-section__actions {
    flex-direction: column;
    gap: 24px;
  }

  .contact-section__tel-label {
    font-size: 2.4rem;
  }

  .contact-section__tel-number {
    font-size: 2.8rem;
  }

  .contact-section__divider {
    width: 80%;
    height: 2px;
  }

  .contact-section__form-btn {
    width: 100%;
    max-width: 300px;
    height: 80px;
  }

  .contact-section__form-text {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px;
  }

  .footer__content {
    flex-direction: column;
    gap: 32px;
  }

  .footer__logo {
    max-width: 180px;
  }

  .footer__address {
    font-size: 1.4rem;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 48px;
    padding-top: 0;
  }

  .footer__nav-col {
    gap: 8px;
  }

  .footer__nav-link {
    font-size: 1.4rem;
  }

  /* Table */
  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table th {
    padding: 12px 16px;
  }

  .table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border-light);
  }
}


.nikko-header__title-common-en {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #9ec231 0%, #45ac56 55%, #249336 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.nikko-header__title-common-ja {
  display: block;
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
}