/*
Theme Name: eslead-house
Theme URI:
Description:
Author:
Author URI:
Version:
Text Domain: eslead-house
*/

/* =========================================
   Variables & Reset
   ========================================= */

@import url('config.css');
@import url('adjust.css');

@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?vg6ec6');
  src: url('fonts/icomoon.eot?vg6ec6#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?vg6ec6') format('truetype'), url('fonts/icomoon.woff?vg6ec6') format('woff'), url('fonts/icomoon.svg?vg6ec6#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-base);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "halt";
}

.main {

}

.main--page {
  padding-bottom: 90px;
}

@media screen and (min-width: 768px) {
  .main--page {
    padding-bottom: 180px;
  }
}

.main--page p:not([class]) {
  font-weight: 500;
}

.main--page p:not([class]):not(:first-child){
  margin-top: 30px;
}

.main--page *:first-child {
  margin-top: 0;
}



a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

p:not([class]) {
  font-weight: 500;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* =========================================
   Utilities
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.font-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* Margins */
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 5rem; }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* =========================================
   Components
   ========================================= */

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-light-gray);
    height: var(--header-height);
}

.header__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__logo-sub {
    font-size: 10px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.header__logo-main {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.05em;
    font-style: italic;
    line-height: 1;
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-sub);
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__entry-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header__entry-btn:hover {
    background-color: var(--color-primary);
}

.header__hamburger {
    display: block;
    padding: 4px;
}

@media screen and (min-width: 768px) {
    .header__nav { display: block; }
    .header__hamburger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
    padding: 8px 16px 32px;
    display: none;
    flex-direction: column;
    z-index: 99;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu__link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-base);
}

.mobile-menu__link:hover {
    background-color: var(--color-light-gray);
}

.mobile-menu__btn {
    display: block;
    margin-top: 16px;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 170px 0 70px;
    overflow: hidden;
}

.hero__bg-text {
  position: static;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.2;
  font-size: 12vw;
  opacity: 0.03;
  pointer-events: none;
  white-space: nowrap;
}

.hero__title {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    color: var(--color-primary);
}

.hero__title-en {
    font-size: 40px;
    font-family: var(--font-en);
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.03em;
    line-height: 1.4;
    position: relative;
}

@media screen and (min-width: 768px) {
    .hero__title { font-size: 20px; }
    .hero__title-en { font-size: 80px; }
}

/* Common Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 112px 0;
}

.head-title {
  display: block;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 55px;
}


.head-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 35px;
}

.head-subtext {
  display: block;
  font-weight: 900;
  font-size:25px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 80px;
  border-bottom: 3px solid #EBEBEB;
  margin-bottom: 90px;
}


@media screen and (min-width: 768px) {
  .head-title {
    font-size: 54px;
  }
  .head-subtext {
    font-size:33px;
    padding-bottom: 126px;
  }
}


/* Section Title Component */
.h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.6;
    color: var(--color-text-base);
    margin-block: 100px;
}

.h2--center { text-align: center; }

.h2::before {
  content: attr(data-en) " ";
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.h2--wt {
  color: #fff;
}

.h2--wt::before {
  color: #fff;
}


@media screen and (min-width: 768px) {
    .h2 {
      font-size: 44px;
      line-height: 1.2;
    }
    .h2::before {
      font-size: 18px;
      margin-bottom: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .h2 {
      margin-block: 180px 70px;
    }
}

.h2 + .catchcopy {
  margin-top: 0;
}


.catchcopy {
    font-size: 29px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--color-text-base);
    margin-block: 50px 45px;
}

.catchcopy--wt {
  color: var(--color-white);
}

.catchcopy--center {
  text-align: center;
}

/* Style Guide Components */
/* Headings */
.heading-boxed {
    background-color: var(--color-light-gray);
    text-align: center;
    padding: 40px 16px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
}

.h3 {
    font-size: 23px;
    font-weight: 900;
    border-left: 5px solid var(--color-primary);
    list-style: 1.5;
    margin-block: 60px 30px;
    padding-left: 20px;

    &--bg {
      background-color: #f0f0f0;
    }
}

.h3--bg {
  background: var(--color-light-gray);
  padding-block: 18px;
}

.h3--wt {
  color: var(--color-white);
  border-color: var(--color-white);
}

.h4 {
  display: block;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-block: 40px 30px;
  color: var(--color-primary);
}

.h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 15px;
}

.h4--wt {
  color: var(--color-white);
}

.h4--wt::after {
  background: var(--color-white);
}

.h5 {
  display: block;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-block: 20px 10px;
}

.h5--wt {
  color: var(--color-white);
}

.number-title {
  list-style: none;
  counter-reset: number 0;}

.number-title li {
  counter-increment: number 1;
}

.number-title__title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-block: 60px 30px;
  font-weight: 900;
  font-size: 36px;
  list-style: 1.5;
}

.number-title__title::before {
  content: counter(number,decimal-leading-zero) " ";
  width: 63px;
  height: 63px;
  line-height: 63px;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 800;
  font-style: italic;
  font-size: 29px;
  list-style: 1;
}

.strong {
  font-weight: 900;
}

.textlink {
  text-decoration: underline;
  color: var(--color-primary);
}

.small {
  font-size: 14px;
}
.small--red {
  color: #DF0000;
}

.heading-simple {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.heading-number {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.heading-number__num {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.heading-number__text {
    font-size: 24px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .heading-boxed { font-size: 36px; }
}

/* Lists */
.list-styled {
    margin-bottom: 40px;
}

.list-styled__item {
  margin-bottom: 10px;
}

.list-styled__text {
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.list-styled__text::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 10px
}

.list-styled__mark {

}

.list-ordered {
    margin-bottom: 40px;
}

.list-ordered__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.list-ordered__num {
    color: var(--color-primary);
    flex-shrink: 0;
    font-family: var(--font-en);
    font-weight: 800;
    font-style: italic;
    font-size: 18px;
}

.list-ordered__text {
  font-weight: 700;
}

/* Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 48px;
}

.table-simple {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table-simple tr {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

.table-simple th, .table-simple td {
    padding: 15px 0;
}

@media screen and (min-width: 768px) {
  .table-simple tr {
  grid-template-columns: 1fr 4fr;
  margin-bottom: 0;
  }
  .table-simple th, .table-simple td {
    padding: 32px 14px;
  }
}



.table-simple th {
    font-weight: 700;
    border-bottom: 3px solid var(--color-primary);
}

.table-simple td {
    border-bottom: 3px solid #EBEBEB;
}

.table-multi-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 48px;
}

.table-multi {
    min-width: 768px;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-top: 2px solid #D0D2DD;
    border-bottom: 2px solid #D0D2DD;
}

.table-multi--nonscroll {
  min-width: auto;
}

.table-multi th ,.table-multi td {
  border-left: 2px solid #D0D2DD;
  border-right: 2px solid #D0D2DD;
}

.table-multi th {
    background-color: var(--color-light-gray);
    padding: 16px 20px;
    font-weight: 700;
}

.table-multi td {
    padding: 16px 20px;
}

.table-note {
    color: var(--color-text-main);
    font-weight: 700;
    margin-top: 20px;
}


@media screen and (min-width: 768px) {
  .table-multi {
    min-width: auto;
  }
  .table-note {
    display: none;
  }
}

/* Box Style */
.box-style {
    border: 2px solid #D0D2DD;
    padding: 32px;
    margin-bottom: 48px;
    background-color: var(--color-white);
}

.box-style--bg {
  background: var(--color-bg);
}

@media screen and (min-width: 768px) {
  .box-style {
    padding: 55px 50px;
  }
}

/* FAQ */
.faq-list {

}

.faq-item {
    border-top: 2px solid #D0D2DD;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    text-align: left;
}

.faq-item__question-box {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 22px;
}

.faq-item__q-mark {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: var(--font-en);
    font-style: italic;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-item__question {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-base);
    transition: color 0.3s;
    padding-top: 4px;
}

.faq-item__trigger:hover .faq-item__question {
    color: var(--color-primary);
}

.faq-item__icon {
  position: relative;
  width: 44px;
  height: 44px;
  text-align: right;
}

.faq-item__icon::before {
  display: inline-block;
  content: "+";
  font-size: 44px;
  line-height: 44px;
  color: var(--color-primary);
  font-weight: 300;
  transition: .2s ease-out;
  transform-origin: 50% 50%;
}

.faq-item__icon svg {
  display: none;
}

.faq-item__content {
    display: none;
    padding-bottom: 43px;
}

.faq-item__content p:empty {
  display: none;
}

.faq-item.is-open .faq-item__icon::before {
  content: "―";
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 1px 0 var(--color-primary);
  transform: rotate(180deg)translateY(-6px);
}

.faq-item.is-open .faq-item__content {
    display: block;
}



/* Buttons Group */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.btn-group br:not([class]) {
  display: none;
}


.btn {
  width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 12px;
    padding-inline: 32px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--color-primary);
    color: var(--color-white);
}

.btn::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e901";
  display: block;
  width: 39px;
  height: 39px;
  line-height: 37px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
}



@media (min-width: 1024px) {
  .btn:hover {
    opacity: .5;
  }
}

.btn--window::after {
  content: "\e900";
  font-size: 14px;
}

.btn--dl::after {
  content: "\e902";
  font-size: 14px;
}

.btn--wt {
  background: #fff;
  color: var(--color-primary);
}
.btn--wt::after {
  border-color: var(--color-primary);
}

.btn--wt02 {
  background: #fff;
  color: var(--color-primary-dark);
}
.btn--wt02::after {
  border-color: var(--color-primary-dark);
}

.btn--width100 {
  width: 100%!important;
}

.btn--large::before {
  content: "";
  display: inline-block;
  width: 39px;
  height: 39px;
}

.btn--sp-inline {
  width: fit-content!important;
}

@media screen and (min-width: 768px) {
  .btn {
    font-size: 20px;
    width: fit-content;
    padding-block: 20px;
  }
  .btn--large {
  padding-block: 57px;
}
.btn--sp-inline {
  min-width: 352px;
}
}

.goto {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.goto__item {
  display: inline-block;
}

.goto__link {
  padding: 5px 20px;
  background: var(--color-light-gray);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.goto__link::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e901";
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
  background: #fff;
  transform: rotate(90deg)scale(.8);
}



/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 70px 0;
}

.card {
    background-color: var(--color-light-gray);
    padding: 32px;
    border-left: 2px solid var(--color-primary);
}

.card__header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card__number {
  display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-en);
    font-weight: 800;
    font-style: italic;
    font-size: 21px;
    flex-shrink: 0;
    list-style: 1;
}

.card__number::after {
  content: " -";
}

.card__number + br {
  display: none;
}
.card__title {
    font-weight: 900;
    font-size: 20px;
}

.card__text {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}



@media screen and (min-width: 768px) {
    .card-grid { grid-template-columns: 1fr 1fr; }
    .card {
      padding: 57px 40px;
    }
}


/* =========================================
   Page Sections
   ========================================= */

/* Message Section */
.section-message {
    padding: 96px 20px;
    background-color: var(--color-light-gray);
}

.message-container {
    max-width: 1152px; /* max-w-6xl */
    margin: 0 auto;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.message-content > p:not([class]) {
  display: none;
}

.message-content--re {
  margin-top: 50px;
}

.message-text-area {
    width: 100%;
}

.message-heading {
    font-size: 39px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
}

.message-body {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-base);
    line-height: 1.8;
    text-align: justify;
}

.message-image-area {
    width: 100%;
    position: relative;
}

.message-image {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--color-light-gray);
    overflow: hidden;
}

.message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-profile {
    background-color: var(--color-white);
    text-align: right;
    margin-top: 30px;
}

.message-profile__company {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
}

.message-profile__role {
    font-size: 13px;
    display: inline-block;
    font-weight: 500;
}

.message-profile__name {
    font-size: 19px;
    display: inline-block;
    font-weight: 500;
    margin-left: 20px;
}

@media screen and (min-width: 768px) {
    .message-heading { font-size: 44px; }
    .message-content { gap: 100px;}
    .message-content { flex-direction: row; }
    .message-content--re {
      flex-direction: row-reverse;
    }
}

@media screen and (min-width: 1024px) {
    .message-image { aspect-ratio: 4/5; }
    .message-profile { bottom: -40px; right: -40px; }
}

/* Values Section */
.section-values {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 112px 20px;
    margin: 160px 0;
}


.values-header {
    margin-bottom: 80px;
}

.values-header__label {
    display: block;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-size: 14px;
    margin-bottom: 12px;
}

.values-header__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.values-header__sub {
    margin-top: 24px;
    color: var(--color-light-gray);
    font-size: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.values-intro {
  display: block;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 68px;
}

.values-intro__text {
    color: var(--color-light-gray);
    line-height: 1.8;
}

.value-card {
    background-color: #0f254a;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.value-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.value-card__num {
    font-family: var(--font-en);
    font-size: 44px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
}

.value-card__icon {
  display: none;
}

.value-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.value-card__desc {
    font-size: 14px;
    color: var(--color-light-gray);
    line-height: 1.8;
}

.value-card__sub {
    font-size: 12px;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

@media screen and (min-width: 768px) {
    .values-header__title { font-size: 52px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 1024px) {
    .section-values > .container:first-child {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 90px;
    }
}

/* Recruit Links */
.section-recruit {
    padding: 112px 20px;
}

.recruit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 110px;
}

.recruit-card {
    border: 1px solid #D7D7D7;
    padding: 30px;
}


.recruit-card__label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EFF1F8;
}

.recruit-card__icon {
  width: 53px;
  height: auto;
}

.recruit-card__tag {
  font-weight: 900;
  font-size: 30px;
}

.recruit-card__tag-en {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--color-primary);
    font-style: italic;
    font-size: 18px;
}

.recruit-card__title {
    font-size: 24px;
    font-weight: 900;
    margin-top: 43px;
    line-height: 1.3;
}

.recruit-card__text {
    font-size: 14px;
    margin-top: 32px;
}

@media screen and (min-width: 768px) {
    .recruit-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (min-width: 1024px) {
    .recruit-card {
        padding: 60px;
    }
    .recruit-card__label {
        gap: 33px;
    }
    .recruit-card__title {
        font-size: 29px;
    }
}

/* Sales List */
.section-sales {
    margin-bottom: 112px;
    padding: 0 20px;
}

.sales-list {
}

.sales-item {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 20px;
    border: 1px solid var(--color-light-gray);
    border-left: 2px solid var(--color-primary);
    transition: background-color 0.3s;
    a::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
    }
}


.sales-item:hover {
    background-color: var(--color-light-gray);
}

.sales-item__label {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.sales-item__title {
    font-size: 24px;
    font-weight: 900;
}

.sales-item__desc {
    font-size: 14px;
    color: var(--color-text-sub);
    margin-top: 12px;
}

.sales-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-text-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-base);
    transition: all 0.3s;
    flex-shrink: 0;
}

.sales-item:hover .sales-item__icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@media screen and (min-width: 768px) {
  .sales-item {
    padding: 80px;
  }
  .sales-item__label {
      font-size: 20px;
  }
  .sales-item__title {
      font-size: 35px;
  }
  .sales-item__icon {
      width: 74px;
      height: 74px;
      svg {
        width:
      }
  }
  .sales-item__desc {
      font-size: 19px;
  }
}

/* Company Info */
.section-company {
    background-color: var(--color-light-gray);
    padding: 112px 20px;
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
    counter-reset: number 0;
}
.company-content:first-of-type {
    margin-top: 80px;
}

.company-block {
    display: flex;
    flex-direction: column-reverse;
    counter-increment: number 1;
}

.company-block__img {
    width: 100%;
}

.company-block__visual {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.company-block__num {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--color-white);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 48px;
    opacity: 0.5;
}

.company-block__text {
    width: 100%;
}

.company-block__text::before {
  display: block;
  content: "- "counter(number,decimal-leading-zero);
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary);
}
.company-block__title {
    font-size: 33px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.4;
}

.company-block__subtitle {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.5;
}

.company-block__desc {
    font-weight: 500;
    line-height: 1.8;
    text-align: justify;
}

@media screen and (min-width: 768px) {
    .company-block {
       flex-direction: row-reverse;
       gap: 64px;
    }
    .company-block--reverse { flex-direction: row; }
    .company-block__img, .company-block__text { width: 50%; }
    .company-block__subtitle {
      line-height: 1.4;
    }
    .company-content {
      gap: 128px;
    }
}

/* Culture */
.section-culture {
    padding: 112px 20px;
}

.culture-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.culture-content + .culture-content {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .culture-content {
    gap: 80px;
}

.culture-content + .culture-content {
  margin-top: 180px;
}
}

.culture-main__heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.culture-main__text p {
    margin-bottom: 32px;
    color: var(--color-text-base);
    line-height: 1.8;
    text-align: justify;
}

.culture-side {
    background-color: var(--color-light-gray);
    padding: 40px;
    border: 1px solid var(--color-light-gray);
}

.culture-side__title {
    font-weight: 900;
    margin-bottom: 32px;
    font-size: 20px;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 20px;
}

.culture-point__item {
    margin-bottom: 24px;
}

.culture-point__item p:not([class]) {
  display: none;
}
.culture-point__label {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.culture-point__desc {
    font-size: 14px;
    color: var(--color-text-sub);
    padding-left: 20px;
    border-left: 2px solid var(--color-light-gray);
}

@media screen and (min-width: 768px) {
    .culture-main__heading { font-size: 36px; }
    .culture-content { flex-direction: row;align-items: flex-start; }
    .culture-main { width: 60%; }
    .culture-side { width: 40%; }
}

/* History */
.section-history {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 112px 20px;
    position: relative;
    overflow: hidden;
}

.main--page .section-history {
  margin-bottom: -90px;
}
@media screen and (min-width: 768px) {
  .main--page .section-history {
  margin-bottom: -180px;
}
}

.history-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.history-container {
    max-width: 1064px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.history-timeline {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 1);
    margin-left: 16px;
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.history-timeline p:not([class]) {
  display: none;
}

.history-item {
    position: relative;
    display: block;
}

.history-item__dot {
    position: absolute;
    left: -57px;
    top: 9px;
    width: 18px;
    height: 18px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 2px solid #5974A6;
}


.history-item__content {
    display: flex;
    flex-direction: column;
}

.history-item__date {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 20px;
    color: var(--color-white);
}

.history-item__desc {
    color: var(--color-white);
    line-height: 1.8;
    transition: color 0.3s;
    font-weight: bold;
}


@media screen and (min-width: 768px) {
    .history-timeline {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 0;
        padding-left: 0;
    }
    .history-item {
        display: flex;
        align-items: baseline;
    }
    .history-item__dot {
        left: -9px;
    }
    .history-item__content {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 50px;
        padding-left: 50px;
    }
    .history-item__date {
        text-align: right;
        margin-bottom: 0;
    }
    .history-item__desc {

    }
}

/* Gallery */
.section-gallery {
    padding: 112px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item__img-box {
    aspect-ratio: 1;
    background-color: var(--color-light-gray);
    margin-bottom: 20px;
    overflow: hidden;
}

.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.1);
}

.gallery-item__caption {
    font-size: 14px;
    color: var(--color-text-sub);
    font-weight: 700;
}

@media screen and (min-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (min-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Interview */
.section-interview {
    padding: 0 20px;
}

.interview-featured {
    display: grid;
    gap: 64px;
    padding-block: 0 60px;
}

.interview-featured + .interview-featured {
  border-top: 1px solid #d0d2dd;
  padding-block: 60px;
}

.interview-featured__img-area {
    width: 100%;
    position: relative;
}

.interview-featured__bg-num {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 140px;
    font-family: var(--font-en);
    font-weight: 900;
    font-style: italic;
    color: var(--color-light-gray);
    line-height: 1;
    z-index: -1;
}

.interview-featured__img-box {
    position: relative;
    z-index: 10;
    aspect-ratio: 8.6 / 4.5;
}

.interview-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-featured__overlay {
  position: relative;
  padding-top: 50px;
}

.interview-featured__role {
  font-size: 15px;
  font-weight: bold;
}

.interview-featured__name {
  margin-top: 5px;
}

.interview-featured__name-ja {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.interview-featured__name-en {
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  color: #d4d4d4;
}

.interview-featured__from {
  font-size: 14px;
  font-weight: 500;
  border-left: 2px solid #002976;
  margin-top: 25px;
  padding-left: 10px;
}

.interview-featured__text-area {
  padding-top: 48px;
}

.interview-featured__text-area .h3 {
  font-size: 20px;
  line-height: 1.5;
}

.interview-featured__heading {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 40px;
}

.qa-list {
  margin-top: 70px;
}

.qa-item + .qa-item {
    margin-top: 32px;
}

.qa-item__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.qa-item__num {
    flex: 0 0 55px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    font-family: var(--font-en);
    padding: 4px 10px;
    margin-right: 16px;
    text-align: center;
}

.qa-item__question {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

.qa-item__answer-copy {
  font-size: 18px;
  font-weight: bold; 
}

.qa-item__answer {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 13px;
}

.interview-list__header {
    margin-top: 96px;
}

.interview-list__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background-color: var(--color-light-gray);
    padding: 6px 16px;
    margin-bottom: 24px;
}

.interview-list__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.interview-list__link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 40px;
    text-decoration: none;
    cursor: pointer;
}

.interview-list__link:hover {
    text-decoration: underline;
}

.interview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.interview-card {
    cursor: pointer;
}

.interview-card__img-box {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
}

.interview-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.interview-card:hover .interview-card__img {
    transform: scale(1.05);
}

.interview-card__text {
    font-weight: 700;
    line-height: 1.8;
    transition: color 0.3s;
}

.interview-card:hover .interview-card__text {
    color: var(--color-primary);
}

@media screen and (min-width: 768px) {
    .interview-featured__heading { 
      font-size: 39px;
    }
    .interview-grid { 
      grid-template-columns: 1fr 1fr;
    }
    .qa-item__question {
      font-size: 18px;
    }
    .qa-item__num {
      flex: 0 0 60px;
      font-size: 22px;
    }
    .interview-featured__text-area .h3 {
      font-size: 23px;
    }
}

@media screen and (min-width: 1024px) {
  .interview-featured {
    grid-template-columns: 330px 1fr;
    max-width: 1240px;
    margin-inline: auto;
  }

  .interview-featured + .interview-featured {
    padding-block: 100px;
  }

  .interview-featured:first-of-type {
    padding-block: 0 100px;
  }
  
  .interview-featured__side {
    position: sticky;
    top: 100px;
    max-width: 330px;
    height: max-content;
  }
  /*
    .interview-featured { flex-direction: row; }
    .interview-featured__img-area { width: 60%; }
    .interview-featured__text-area { width: 40%; }
    */
}

/* Footer */
.footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
    padding: 48px 20px;
    text-align: center;
    color: var(--color-text-sub);
    font-size: 14px;
}


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:ital,wght@0,400;0,500;0,700;1,700;1,900&display=swap');

/* Reset & Variables */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--color-text-base);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* Utilities */
.u-font-en { font-family: var(--font-en); }
.u-opacity-60 { opacity: 0.6; }
.u-ml-1 { margin-left: 0.25rem; }
.u-ml-4 { margin-left: 1rem; }
.u-flex-center { display: flex; align-items: center; }

.u-hidden-mobile { display: flex !important; }
.u-hidden-desktop { display: none !important; }

@media (max-width: 1023px) {
  .u-hidden-mobile { display: none !important; }
  .u-hidden-desktop { display: block !important; }
}

/* Layout */
.l-container {
  max-width: var(--container-wide-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .l-section {
    padding: 128px 0;
  }
}

/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

.l-header--sub,
.l-header--scrolled {
  background-color: #fff;
}


.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0 0 0 var(--container-padding);
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  color: white;
  transition: .2s ease-out;
  z-index: 60;
}



@media (max-width: 767px) {
  .l-header__logo {
    padding-top: 13px;
  }
}
@media (min-width: 1366px) {
  .l-header__logo {
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }
}

.l-header__logo:hover {
  opacity: 0.5;
}

.l-header__logo-jp {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.l-header__logo-jp--black {
    display: none;
}


.l-header__logo-en {
  font-size: 0.75rem;
  opacity: 0.8;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Nav Desktop */
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 700;

}

.l-header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s;
  color: white;
}

.l-header--sub,
.l-header--scrolled {
  .l-header__link {
    color: inherit;
  }
  .l-header__logo {
    color: inherit;
  }
  .l-header__logo-jp--white {
    display: none;
  }
  .l-header__logo-jp--black {
    display: block;
  }
}

.l-header__link:hover {
  color: #bfdbfe; /* blue-200 */
}

.l-header__link-en {
  font-size: 10px;
  opacity: 0.6;
  font-family: var(--font-en);
  transition: opacity 0.3s;
}

.l-header__link:hover .l-header__link-en {
  opacity: 1;
}

.l-header__menu-trigger {
  color: white;
  padding: 20px;
  z-index: 60;
  position: relative;
  background: var(--color-primary);
}

/* Mobile Menu */
.l-header__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 40;
  display: none;
  flex-direction: column;
  padding: 96px 32px 32px;
  overflow-y: auto;
}

.l-header__mobile-menu.is-active {
  display: flex;
}

.l-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

.l-header__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.l-header__mobile-entry {
  text-align: center;
  margin-top: 16px;
  display: block;
  border: 1px solid var(--color-white);
  margin: 10px 0 0;
}

.l-header.is-active .l-header__logo-jp--white {
  display: block;
}
.l-header.is-active .l-header__logo-jp--black {
  display: none;
}

.l-header.is-active .l-header__logo-en {
  color: #fff;
}

/* Components */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
  min-width: 200px;
  text-decoration: none;
  cursor: pointer;
}

.c-button--entry {
  background-color: var(--color-primary);
  font-size: 1.25rem;
  color: white;
  padding: 24px;
  justify-content: center;
}

.c-button--entry:hover {
  background-color: var(--color-blue-btn-hover);
}

.c-button--primary {
  background-color: var(--color-primary);
  color: white;
}

.c-button--primary:hover {
  background-color: var(--color-primary-dark);
}

.c-button--white {
  background-color: white;
  color: var(--color-primary);
}

.c-button--white:hover {
  background-color: #f3f4f6; /* gray-100 */
}

.c-button--outline {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}

.c-button--outline:hover {
  background-color: white;
  color: var(--color-primary);
}

.c-button__icon {
  margin-left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.c-button:hover .c-button__icon {
  transform: translateX(4px);
}

.c-button--white .c-button__icon {
  border-color: rgba(0, 41, 118, 0.3);
}

/* Section Title */
.c-section-title {
  margin-bottom: 48px;
}

.c-section-title__sub {
  font-size: 1.13rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.c-section-title__main {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .c-section-title__main {
    font-size: 4.85rem;
  }
}

.c-section-title--light .c-section-title__sub,
.c-section-title--light .c-section-title__main {
  color: white;
}

/* Hero Section */
.p-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/fv.webp');
  background-size: cover;
  background-position: 70% 50%;
  background-repeat: no-repeat;
}

.p-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 41, 118, 0.4);
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .p-hero__bg {
    background-position: 65% 50%;
  }
  .p-hero__bg::after {
    background-color: rgba(0, 41, 118, 0.2);
  }
}

@media (min-width: 1024px) {
  .p-hero__bg {
    background-position: center;
  }
}

.p-hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-hero__text-box {
  max-width: 896px; /* 4xl */
  margin-top: 60%;
}

.p-hero__title {
  width: min(340px,100%);
  height: auto;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .p-hero__content {
    justify-content: flex-end;
  }
  .p-hero__text-box {
    margin-top: 0;
    margin-bottom: 90px;
  }
  .p-hero__title {
    width: min(756px,80%);
    margin-bottom: 80px;
  }
}
.p-hero__subtitle {
  color: white;
  font-size:17px;
  font-weight: 900;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .p-hero__subtitle {
    font-size: min(36px,3.589vh);
  }
}

.p-hero__desc {
  display: none;
}

@media (min-width: 768px) {
  .p-hero__desc {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 2.2;
    margin-top: 40px;
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
    .p-hero__text-box {
    margin-bottom: min(9vh,90px);
  }
  .p-hero__title {
    margin-bottom: min(8vh,80px);
    width: min(756px,75vh);
  }
  .p-hero__desc {
    margin-top: min(4vh,40px);
  }
}



.p-hero__scroll {
  position: absolute;
  bottom: 0;
  right: 9px;
  color: white;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

@media (min-width: 768px) {
  .p-hero__scroll {
    right: 64px;
    flex-direction: column;
    align-items: center;
  }
}

.p-hero__scroll-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: 8px;
  writing-mode: vertical-rl;
  padding-top: 8px;
}

.p-hero__scroll-line {
  width: 2px;
  height: 79px;
  background-color: white;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@media (min-width: 768px) {
  .p-hero__scroll-text {
    font-size: 12px;
  }
  .p-hero__scroll-line {
    height: 100px;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/* Message Section */
.p-message {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding-top: calc(min(193px,20vw) + 30px);
  margin-top: 50px;
}

.p-message__bg-text {
  position: absolute;
  top: 0;
  left: 80%;
  transform: translateX(-80%);
  font-family: var(--font-en);
  font-weight: 900;
  font-style: italic;
  font-size: min(193px,20vw);
  color: #D8DDE6;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.p-message__container {
  position: relative;
  z-index: 10;
}

.p-message__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .p-message {
    padding-top: 300px;
  }
  .p-message__content {
    flex-direction: row;
    gap: 80px;
  }
}

@media (min-width: 1500px) {
  .p-message__content {
    gap: 260px;
  }
}

.p-message__text-area {
  flex: 1;
}

@media (min-width: 1024px) {
  .p-message__text-area {
    flex: 1;
  }
}

.p-message__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text-base);
  margin-bottom: 32px;
  line-height: 1.6;
}


.p-message__body {
  line-height: 2;
  margin-bottom: 40px;
}

.p-message__body p {
  margin-bottom: 24px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-message__heading { font-size: min(55px,3.5vw); }
  .p-message__body {
    font-size: 20px;
    margin-bottom: 70px;
  }
}

.p-message__button {
  margin-top: 40px;
}

/* Company Section */
.p-company {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  background-color: var(--color-primary);
  clip-path: polygon(0 22vw, 100% 0, 100% 100%, 0% 100%);
  margin-top: -80px;
}

@media (min-width: 768px) {
  .p-company {
    clip-path: polygon(0 9vw, 100% 0, 100% 100%, 0% 100%);
  }
}

.p-company__container {
  padding-top: 40px;
}

.p-company__intro {
  margin-bottom: 64px;
  color: white;
}

@media (min-width: 768px) {
  .p-company__intro {
    width: 66.666%;
  }
}

@media (min-width: 1024px) {
  .p-company {
   padding-block: min(250px,15vw) 155px;
  }
  .p-company__container {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 0 70px;
}
  .p-company__intro {
    width: 100%;
  }
  .p-company__grid {
    grid-column: 1/3;
  }
  .p-company__button {
    grid-column: 1/3;
  }
}

.p-company__intro-heading {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-company__intro-heading { font-size: min(55px,3.5vw); }
}

@media (min-width: 1024px) {
  .p-company__intro-heading { font-size: min(55px,3.5vw); }
}



.p-company__intro-text {
  line-height: 1.8;
}

.p-company__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .p-company__intro-text {
  font-size: 20px;
}

  .p-company__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 100px;
  }
}

.c-card {
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(255,255,255,.25);
}

.c-card__image-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  width: 100%;
}

.c-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.c-card__content {
  color: white;
}

.c-card__number {
  display: block;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.8;
}

.c-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .c-card__title { font-size: 2rem; }
}

.c-card__text {
  text-align: justify;
}



@media (min-width: 768px) {
  .p-company__button {
  text-align: right;
}
}

/* Works Section */
.p-works {
  background-color: #f9fafb; /* gray-50 */
}

@media (max-width: 767px) {
  .p-works {
    padding-bottom: 100px;
  }
}

.p-works__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .p-works {
    padding-block: 220px;
  }
  .p-works__inner {
    flex-direction: row;
    gap: min(170px,8.8vw);
  }
}

.p-works__text-side {
  flex: 1;
}

@media (min-width: 1024px) {
  .p-works__text-side {
    width: 50%;
    flex: none;
  }
}

.p-works__heading {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 32px;
}
.p-works__description {
  line-height: 2;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-works__heading { font-size: min(39px,3.5vw); }
  .p-works__description {
  font-size: 20px;
}
}



.p-works__image-side {
  width: 100%;
}

@media (min-width: 1024px) {
  .p-works__description {
 margin-bottom: 55px;
}
  .p-works__image-side {
    width: 50%;
  }
}

.p-works__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.p-works__image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-works__image-col:first-child {
  padding-top: 32px;
}

.p-works__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .p-works__img { height: 192px; }
}

.p-works__img--tall {
  height: 192px;
}

@media (min-width: 768px) {
  .p-works__img--tall { height: 256px; }
}

/* Interview Section */
.p-interview {
  padding: 80px 0;
  background-color: var(--color-primary-dark);
  position: relative;
  z-index: 10;
  margin-top: -64px;
  clip-path: polygon(0 22vw, 100% 0, 100% 100%, 0% 100%);
  transform: rotateY(180deg);
}

@media (min-width: 768px) {
  .p-interview {
    padding: 128px 0;
    clip-path: polygon(0 9vw, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (min-width: 1024px) {
  .p-interview {
    padding-block: min(250px,15vw) 155px;
  }
}
.p-interview__container {
  padding-top: 48px;
  transform: rotateY(-180deg);
}

.p-interview__intro {
  margin-bottom: 64px;
  color: white;
}

@media (min-width: 768px) {
  .p-interview__intro { width: 66.666%; }
}
@media (min-width: 1024px) {
  .p-interview__container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 0 50px;
  }
  .p-interview__intro { width: 100%; }
  .p-interview__grid {
    grid-column: 1/3;
  }
  .p-interview__button {
    grid-column: 1/3;
  }
}

.p-interview__heading {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .p-interview__heading { font-size: min(55px,3.5vw); }
}

.p-interview__text {
  line-height: 2.2;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-interview__text { font-size: 20px; }
}

.p-interview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-interview__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 100px;
  }
}

.c-member-card {
  position: relative;
  height: 400px;
  group: true;
  margin-bottom: 62px;
}

@media (min-width: 768px) {
  .c-member-card { height: 700px; }
}


.c-member-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}


.c-member-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
}

.c-member-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: white;
}

.c-member-card__quote {
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .c-member-card__quote { font-size: 33px; }
}

.c-member-card__role {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding-top: 23px;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0;
}

@media (min-width: 768px) {
  .c-member-card__role { font-size: 20px; }
  .p-interview__button {
  text-align: right;
}
}



/* Environment Section */
.p-environment {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.p-environment__bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/environment.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.p-environment__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(28, 38, 57, 0.4);
  mix-blend-mode: multiply;
}

.p-environment__container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.p-environment__sub-title {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.p-environment__title {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: white;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .p-environment {
    padding: 150px 0 170px;
  }
  .p-environment__container {
    justify-content: center;
    align-items: center;
  }
  .p-environment__title { font-size: 78px;
  margin-bottom: 65px; }
  .p-environment__sub-title {
    font-size: 18px;
  }
}

.p-environment__heading {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 768px) {
  .p-environment__heading { font-size: 42px;margin-bottom: 65px; }
}

.p-environment__cross {
  font-size: 1.5rem;
  display: block;
  padding: 5px 0;
}

@media (min-width: 768px) {
  .p-environment__cross { font-size: 2.25rem; }
}

.p-environment__text {
  font-size: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 932px; /* 2xl */
  margin: 0 auto 48px;
  line-height: 2;
  text-align: left;
}

@media (min-width: 768px) {
  .p-environment__text { text-align: center;font-size: 20px;margin-bottom: 65px; }
}

/* Data Section */
.p-data {
  background-color: var(--color-primary);
}

.p-data__container {

}

@media (min-width: 768px) {
  .p-data {
    padding: 180px 0;
  }
  .p-data__container { text-align: left; }
}

@media (min-width: 1024px) {
  .p-data__container,
  .p-news__container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 123px;
   }
}

.p-data__intro {
  color: white;
  font-weight: 500;
  margin-bottom: 64px;
  line-height: 1.8;
}

.p-data__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 0;
}

@media (min-width: 768px) {
  .p-data__intro {
    font-size: 20px;
    margin-bottom: 120px;
  }
  .p-data__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .p-data__grid {
    grid-column: 1/3;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-data__item:nth-child(2n) {
  border-left: 1px solid #fff;
}

@media (min-width: 1024px) {
  .p-data__item {
    border-left: none!important;
    border-right: 1px solid #fff;
  }
  .p-data__item:nth-child(3n) {
    border-right: none;
  }
}

.p-news__footer {
  margin-top: 35px;
}

@media (min-width: 1024px) {
  .p-news__footer {
    grid-area: 2 / 2;
    text-align: right;
    margin-top: 63px;
  }
}

.c-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.c-stat-card__label {
  color: white;
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.c-stat-card__value-wrap {
  display: flex;
  align-items: baseline;
}

.c-stat-card__value {
  font-family: var(--font-en);
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.05em;
  line-height: 1;
}

@media (min-width: 768px) {
  .c-stat-card__value { font-size: 4.5rem; }
}

.c-stat-card__unit {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  margin-left: 8px;
}

@media (min-width: 1024px) {
.c-stat-card__label {
  font-size: 27px;
}
.c-stat-card__value {
  font-size: 113px;
}
.c-stat-card__unit {
  font-size: 46px;
}
}

/* Footer */
.l-footer {
  background-color: #f5f5f5;
}

.l-footer__links {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.l-footer__img img {
  width: 100%;
  height: auto;
}


.p-footer-link-wrap {
  padding: 55px 25px;
}
@media (min-width: 768px) {
  .l-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
    align-items: center;
  }
  .p-footer-link-wrap {
  padding: 0 min(120px,5vw);
}
  .l-footer__img {
    grid-row: 1/2;
    height: 100%;
  }
  .l-footer__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.p-footer-link {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 32px;
  text-decoration: none;
  group: true;
  border-bottom: 2px solid rgba(1,41,118,.14);
}

.p-footer-link + .p-footer-link {
}

@media (min-width: 768px) {
  .p-footer-link {
  }
  .p-footer-link + .p-footer-link {
}

}


.p-footer-link__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}

.p-footer-link:hover .p-footer-link__bg {
  transform: scale(1.05);
}

.p-footer-link__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.p-footer-link__content {
  position: relative;
  z-index: 10;
}

.p-footer-link__jp {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 4px;
}

.p-footer-link__en {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media (min-width: 768px) {
  .p-footer-link__en { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .p-footer-link__en { font-size: 78px; }
  .p-footer-link__jp {
    font-size: 18px;
  }
  .p-footer-link-wrap {
    padding-block: 130px;
  }
}

.p-footer-link__arrow {
  position: relative;
  z-index: 10;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(0, 41, 118, 0.2);
  color: var(--color-primary);
  transition: all 0.3s;
  text-align: center;
  line-height:55px;
  font-size: 10px;
  flex-shrink: 0;
}

.p-footer-link__arrow::before {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e901";
}

.p-footer-link:hover .p-footer-link__arrow {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}



@media (min-width: 1366px) {
  .p-footer-link__arrow {
    width: 138px;
    height: 138px;
    line-height: 132px;
    font-size: 16px;
  }
}

.l-footer__main {
  padding: 64px 0;
  background-color: #f3f4f6; /* gray-100 */
  text-align: center;
}

.l-footer__logo-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 48px;
}

.l-footer__logo img {
  display: block;
  width: 200px;
  height: auto;
}

.l-footer__logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.l-footer__site-type {
  font-size: 0.75rem;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.l-footer__gnav {
  display: none;
}

@media (min-width: 1024px) {
  .l-footer__logo-area {
    margin-bottom: 0;
  }
  .l-footer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 170px;
  }
.l-footer__gnav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.l-footer__gnav a {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-base);
}
}

@media (min-width: 1366px) {
  .l-footer__logo img {
    width: 340px;
  }
  .l-footer__site-type {
    font-size: 19px;
  }
.l-footer__gnav {
  gap: 38px;
}
.l-footer__gnav a {
  font-size: 18px;
}
}


.l-footer__nav {
  margin-bottom: 48px;
}

.l-footer__nav-list {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-base);
  text-align: left;
}

@media (min-width: 768px) {
  .l-footer__nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

.l-footer__nav-item {
  transition: color 0.3s;
}

.l-footer__nav-item:hover {
  color: var(--color-primary);
}

.l-footer__copyright {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
}

.window::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "\e900";
  color: var(--color-primary-dark);
  margin-left: 10px;
}

@media (min-width: 1024px) {
  .l-footer__main {
    padding: 130px 0 80px;
  }
  .l-footer__nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
  }
}

@media (min-width: 1366px) {
    .l-footer__nav-list {
    gap: 30px;
    font-size: 17px;
  }
}


.news-item {
  position: relative;
  padding-block: 15px;
  padding-right: 30px;
  transition: .2s ease-out;
}
.news-item:hover {
  opacity: .7;
} 
.news-item__article {
  display: grid;
  gap: 10px;
}
.news-item + .news-item {
  border-top: 2px solid #D0D2DD;
}

.news-item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.news-item__title {
  font-size: 16px;
}
.news-item__date {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-en);
  color: #9598A7;
}

.news-item__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  fill: #002976;
}
.news-item__icon svg {
  width: 18px;
  height: 18px;
}

.news-head {
  border-bottom: 3px solid #ebebeb;
  padding-bottom: 25px;
  margin-bottom: 35px;
}

.news-head__title {
  font-size: 24px;
  font-weight: 900;
  margin-top: 10px;
}

.news-head__time {
  font-size: 16px;
  font-family: var(--font-en);
  color: #9598A7;
  font-weight: bold;
}

.news-footer {
  text-align: center;
  margin-top: 55px;
}

@media (min-width: 1024px) {
  .post-type-page {
    max-width: 900px;
    margin: auto;
  }
  .news-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-block: 30px;
    padding-right: 40px;
  }
  .news-head {
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
  .news-head__title {
    font-size: 33px;
    margin-top: 20px;
  }
  .news-footer {
    margin-top: 75px;
  }
}

.pagination {
    margin: 40px 0;
}

.pagination__list {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-numbers {
    color: #002976;
    text-decoration: underline;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 800;
    font-style: italic;
    padding: 5px;
}

.page-numbers:hover {
    opacity: 0.7;
}

/* 現在ページ */
.page-numbers--current {
    color: #000;
    text-decoration: none;
    cursor: default;
}

/* ドット（...） */
.page-numbers--dots {
    text-decoration: none;
    cursor: default;
}

@media (min-width: 1024px) {
  .page-numbers {
    padding: 5px 10px;
  }
}

/*  パンくず  */
.breadcrumb {
}
.breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  font-size: 13px;
  justify-content: flex-end;
  list-style: none;
  gap: 14px;
}
.breadcrumb__item {
  color: var(--color-text-base);
}
.breadcrumb__item:not(:first-child):before {
  content: "-";
  position: relative;
  display: inline-block;
  color: #9B9B9B;
  margin-right: 14px;
}
.breadcrumb__item:not(:last-child) {
  flex-shrink: 0;
}
.breadcrumb__item:not(:last-child) a {
  color: var(--color-primary);
  text-decoration: underline;
}
.breadcrumb__item:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child a {
  pointer-events: none;
}
.breadcrumb__link {
  transition: 0.3s ease-out;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .breadcrumb__link:hover {
    opacity: .5;
  }
}

.box {
  background: #EFF1F8;
  padding: 40px 20px;
}

.logo-link {
  list-style: none;
  display: grid;
  gap: 10px;
}

.logo-link a {
  display: inline-block;
}

.logo-link a img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
.box {
  padding: 60px 70px;
}
.logo-link {
  grid-template-columns: repeat(2,1fr);
  gap: 33px 41px;
}
}

@media (min-width: 1024px) {
.logo-link {
  grid-template-columns: repeat(4,1fr);
}
}

.top-news {
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
}

.top-news__headtitle {
  font-size: 20px;
  font-family: var(--font-en);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  line-height: 1.5;
}

.top-news__link {
  display: block;
}
.top-news__time {
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-text-base);
}
.top-news__title {
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 768px) {
.top-news {
  gap: 0 70px;
}
.top-news__headtitle {
  font-size: 24px;
}
.top-news__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 50px;
}
.top-news__time {
  font-size: 20px;
}
.top-news__title {
  font-size: 20px;
}
}