@charset "UTF-8";

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #111;
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

/* ===== Variables ===== */
:root {
  --color-navy: #171c61;
  --color-gold: #c8a063;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-gray: #f5f5f5;
  --color-gray2: #e1e1e1;
  --color-navy-light: #1e2470;
  --font-en: "Oswald", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --content-width: 1200px;
  --section-padding: 120px 0;
}

/* ===== Utility ===== */
.inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Section Heading ===== */
.section-heading {
  margin-bottom: 40px;
}

.section-heading__en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: 0.06em;
  display: block;
}

.section-heading__ja {
  font-family: var(--font-jp);
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-top: 8px;
  display: block;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--color-navy);
  z-index: 1000;
  display: flex;
  align-items: center;
/*  justify-content: space-between;*/
  padding: 0 45px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0
}

.header__logo img {
  width: 226px;
  height: auto;
  transition: width 0.3s;
}

.header__logo-badge {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-navy);
  background: var(--color-white);
  padding: 4px 10px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  margin-right: 45px;
  flex-shrink: 1;
}

.header__nav a {
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 8px;
  z-index: 1100;
}

.header__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* SP nav overlay */
.sp-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(23, 28, 97, 0.95);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sp-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-nav__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  stroke-width: 2;
}

.sp-nav .sp-nav__entry {
  margin: 20px auto 0;
  width: calc(100% - 40px);
  height: 60px;
  padding: 0;
  text-align: center;
  justify-content: center;
}

.sp-nav a {
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: var(--color-gray);
}

.hero__images {
  width: 100%;
  height: 800px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__mainvisual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  /* background: linear-gradient(to top, var(--color-gray) 0%, transparent 100%); */
  z-index: 2;
}

.hero__text {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__text::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 120px;
  background: url('../images/top/bg-cacth.png') -110px center / auto 100% repeat-x;
  transform: translateY(-30%);
}

.hero__catch {
  position: relative;
  z-index: 1;
  height: auto;
  width: auto;
  max-height: 180px;
  display: block;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.3));
  margin-left: 50px;
  margin-right: 15px;
}

.hero__line {
  flex: 1;
  height: 2px;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* ===== MESSAGE ===== */
.message {
  position: relative;
  padding: var(--section-padding);
  /* background: var(--color-gray); */
}

.message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.message__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.55; */
}

.message__content {
  position: relative;
  z-index: 2;
}

.message__body {
  margin-top: 100px;
  position: relative;
  text-align: center;
  color: var(--color-white);
}

.message__title {
  font-size: 7rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.message__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.06em;
  max-width: 1000px;
  margin: 0 auto;
}

.message__text p {
  margin-bottom: 0;
}

.message__signature {
  display: block;
  margin-top: -40px;
  margin-left: auto;
  width: 177px;
}

/* ===== CASES ===== */
.cases {
  padding: var(--section-padding);
  background: var(--color-gray);
}

.cases__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 50px;
  color: var(--color-dark);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  background: var(--color-white);
  overflow: hidden;
}

.case-card__img {
  width: 100%;
  height: 330px;
  overflow: hidden;
}

.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  padding: 30px 40px 40px;
  background: var(--color-white);
}

.case-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.case-card__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}

/* ===== INTERVIEW ===== */
.interview {
  padding: var(--section-padding);
  background: var(--color-navy);
}

.interview .section-heading__en {
  color: var(--color-white);
}

.interview .section-heading__ja {
  color: var(--color-gold);
}

.interview__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  color: var(--color-white);
}

.interview__nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: -40px;
  margin-bottom: 40px;
}

.interview__nav-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-white);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.interview__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.interview__nav-btn:hover svg {
  fill: var(--color-white);
}

.interview__nav-btn svg {
  width: 24px;
  height: 16px;
  fill: none;
  color: var(--color-white);
}

.interview__slider-wrap {
  overflow: hidden;
  padding-bottom: 60px;
}

.interview__slider {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
}

.interview-card {
  flex: 0 0 calc(33.333% - 27px);
  background: var(--color-white);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}


.interview-card__img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.interview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card__body {
  padding: 24px 30px 10px;
}

.interview-card__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.interview-card__title {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0em;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.interview-card__role {
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.interview-card__name {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}

.interview-card__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-card__arrow i {
  font-size: 18px;
  color: var(--color-white);
}

.interview-card__arrow svg {
  width: 24px;
  height: 16px;
  color: var(--color-white);
}

/* ===== EXPLOSIVE GROWTH ===== */
.growth {
  padding: var(--section-padding);
  background: var(--color-white);
}

.growth__visual {
  position: relative;
  margin-top: 40px;
  margin-bottom: 60px;
  height: 520px;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 300px);
}

.growth__visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.growth__visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 98% center;
  opacity: 0.9;
}

.growth__visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding: 40px;
  max-width: var(--content-width);
  margin: 0 auto 0 20px;
}

.growth__visual-text {
  flex: 0 0 41%;
  color: var(--color-white);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.growth__visual-title {
  font-size: 3.9rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.growth__visual-desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

.growth__visual-desc p {
  margin-bottom: 12px;
}

.growth__diagram {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth__diamond {
  position: absolute;
  width: 240px;
  height: 240px;
  transform: rotate(45deg);
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid #fff;
  outline-offset: -12px;
}

.growth__diamond--challenge {
  top: -10px;
  right: 174px;
}

.growth__diamond--mentor {
  top: 170px;
  right: 348px;
}

.growth__diamond--growth {
  top: 170px;
  right: 0px;
}

.growth__diamond-inner {
  transform: rotate(-45deg);
  text-align: center;
  color: var(--color-white);
}

.growth__diamond-title {
  font-size: 2.4rem;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  margin: -16px 0 8px;
}

.growth__diamond-text {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 6px;
}
.growth__diamond-text:last-child {
  margin: 0;
}

.growth__diamond-logo {
  position: absolute;
  top: 300px;
  right: 255px;
  width: 78px;
  height: 78px;
  z-index: 5;
}

.growth__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.growth-block {
  background: var(--color-white);
}

.growth-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 0 0;
}

.growth-block__number {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: 0.06em;
}

.growth-block__subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  padding-top: 8px;
  margin: 0 0 25px;
}

.growth-block__subtitle .small {
  display: block;
  font-size: 1.8rem;
  margin: 5px 0 0;
}

.growth-block__middle {
  display: block;
  padding: 20px 0;
}

.growth-block__lead {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}

.growth-block__img {
  float: right;
  width: 290px;
  height: 200px;
  overflow: hidden;
  margin-top: -0;
  margin-left: 20px;
  margin-right: 0;
}

.growth-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-block__text {
  padding: 0;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-dark);
  margin-bottom: 30px;
}

.growth-block__btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  height: 90px;
  justify-content: center;
  transition: background 0.3s;
  padding: 0 60px 0 10px;
}

.growth-block__btn:hover {
  background: var(--color-navy-light);
  opacity: 1;
}

.growth-block__btn-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-block__btn-arrow i {
  font-size: 18px;
  color: var(--color-white);
}
.growth-block__btn-arrow svg {
  width: 24px;
  height: 16px;
  color: var(--color-white);
}

/* ===== ENTRY (Jobs) ===== */
.entry {
  padding: var(--section-padding);
  padding-bottom: 160px;
  background: var(--color-navy);
}

.entry .section-heading__en {
  color: var(--color-white);
}

.entry__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin-bottom: 60px;
}

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

.entry-card {
  background: var(--color-white);
  position: relative;
}
.entry-card:nth-child(1) {
  transform: translateY(60px);
}
.entry-card:nth-child(2) {
  transform: translateY(30px);
}
.entry-card:nth-child(3) {
  transform: translateY(0px);
}

.entry-card__img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.entry-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-card__body {
  padding: 24px 30px 60px;
}

.entry-card__role-en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-dark);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.entry-card__role-ja {
  font-size: 1.6rem;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.entry-card__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}

.entry-card__arrow {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-card__arrow i {
  font-size: 18px;
  color: var(--color-white);
}

/* ===== DECK ===== */
.deck {
  padding: var(--section-padding);
  background: var(--color-gray);
}

.deck__content {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  align-items: center;
}

.deck__img {
  flex: 0 0 48%;
  height: 400px;
  overflow: hidden;
}

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

.deck__body {
  flex: 1;
  max-width: 520px;
}

.deck__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.deck__btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  height: 90px;
  justify-content: center;
  transition: background 0.3s;
  padding: 0 60px 0 10px;
}

.deck__btn:hover {
  background: var(--color-navy-light);
  opacity: 1;
}

.deck__btn-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck__btn-arrow i {
  font-size: 18px;
  color: var(--color-white);
}

/* ===== ENTRY CTA ===== */
.entry-cta {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: background 0.3s;
}
.entry-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f03c78;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.entry-cta:hover::before {
  width: 100%;
}
.entry-cta:hover {
  opacity: 1;
}

.entry-cta__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.entry-cta__text {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 7.2rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.entry-cta__icon {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-cta__icon i {
  font-size: 24px;
  color: var(--color-white);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-navy);
  padding: 100px 0 0;
}

.footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 80px;
}

.footer__left {
  flex: 0 0 400px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 39px;
  width: auto;
}

.footer__logo-badge {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-navy);
  background: var(--color-white);
  padding: 4px 10px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.footer__corp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.footer__corp-link svg {
  width: 17px;
  height: 17px;
  fill: var(--color-white);
}

.footer__right {
  flex: 1;
}

.footer__section-title {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

.footer__links {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.footer__link svg {
  width: 17px;
  height: 17px;
  fill: var(--color-white);
}

.footer__sns-title {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

.footer__sns-text {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-white);
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}

.footer__sns-note-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer__sns-note-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-size: 1.6rem;
}

.footer__sns-note-link svg {
  width: 17px;
  height: 17px;
  fill: var(--color-white);
}

.footer__sns-icons {
  display: flex;
  gap: 20px;
}

.footer__sns-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.footer__sns-icon:hover {
  opacity: 0.8;
}

.footer__sns-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-navy);
}

.footer__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.footer__copyright {
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  background-color: var(--color-dark);;
}

/* ===== Responsive ===== */
.sp-only {
  display: none;
}








@media screen and (max-width: 1380px) {
  .header {
    padding: 0 40px;
  }
  .header__logo img {
    width: 200px;
  }
  .header__nav {
    gap: 20px;
    margin-right: 40px;
  }
  .header__nav a {
    font-size: 1.5rem;
  }
  .header__entry {
    width: 160px;
    font-size: 2rem;
  }
}


@media screen and (max-width: 1250px) {
  .header {
    padding: 0 30px;
  }
  .header__logo img {
    width: 170px;
  }
  .header__logo-badge {
    font-size: 1.4rem;
    padding: 3px 8px;
    letter-spacing: 0.02em;
  }
  .header__nav {
    gap: 15px;
    margin-right: 30px;
  }
  .header__nav a {
    font-size: 1.4rem;
  }
  .header__entry {
    width: 140px;
    font-size: 1.8rem;
  }
}


@media screen and (max-width: 1080px) {
  .header {
    padding: 0 18px;
  }
  .header__logo img {
    width: 160px;
  }
  .header__logo-badge {
    font-size: 1.4rem;
    padding: 3px 7px;
    letter-spacing: 0em;
  }
  .header__nav {
    gap: 14px;
    margin-right: 18px;
  }
  .header__nav a {
    font-size: 1.4rem;
  }
  .header__entry {
    width: 100px;
    font-size: 1.5rem;
  }
}











@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: initial;
  }

  :root {
    --section-padding: 40px 0;
  }
  
  body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }

  .inner {
    padding: 0 20px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  /* Header SP */
  .header {
    height: 50px;
    padding: 0 20px;
  }
  
  .header__logo {
    gap: 10px;
  }

  .header__logo img {
    width: 113px;
    height: auto;
  }

  .header__logo-badge {
    font-size: 1rem;
    padding: 0px 5px;
  }

  .header__nav {
    display: none;
  }

  .header__entry {
    width: 50px;
    height: 50px;
    padding: 0 20px;
    font-size: 1.4rem;
    margin-left: auto;
    margin-right: 0;
  }
  
  .header__hamburger {
    display: flex;
    width: 50px;
    height: 50px;
    margin-left: 0;
    margin-right: -20px;
    background: var(--color-dark);
  }

  /* Section Heading SP */
  .section-heading__en {
    font-size: 4rem;
  }

  .section-heading__ja {
    font-size: 2rem;
  }

  /* Hero SP */
  .hero {
    height: auto;
    margin-top: 60px;
    min-height: 400px;
  }

  .hero__images {
    height: 400px;
    margin-top: 0;
  }

  .hero__catch {
    max-height: 46px;
    width: auto;
    margin-left: 20px;
    margin-right: 0;
  }

  .hero__text {
    bottom: 70px;
    left: 0;
    right: 0;
  }

  .hero__text::before {
    height: 60px;
    background-size: auto 100%;
    background-position: -60px center;
  }

  .hero__line {
    left: 10px;
  }

  /* MESSAGE SP */
  .message__title {
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .message__text {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 5px;
    text-align: left;
  }

  .message {
    background: #807f82;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .message__bg {
    top: auto;
    bottom: 0;
    height: auto;
    overflow: visible;
  }

  .message__bg img {
    height: auto;
    object-fit: contain;
  }

  .message__body {
    margin-top: 0;
  }

  .message__signature {
    width: 140px;
    margin-top: 0;
    padding-bottom: 20px;
  }

  /* CASES SP */
  .cases {
    background: #eeeeee;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-card__img {
    height: 250px;
  }

  .case-card__body {
    padding: 20px;
  }

  .case-card__title {
    font-size: 1.8rem;
  }

  /* INTERVIEW SP */
  .interview__slider-wrap {
    padding-bottom: 0;
    margin-left: -20px;
    margin-right: -20px;
  }

  .interview__slider {
    gap: 10px;
  }

  .interview-card {
    flex: 0 0 calc(100vw - 60px);
    scroll-snap-align: center;
  }

  .interview-card:nth-child(1),
  .interview-card:nth-child(2) {
    transform: translateY(0) !important;
  }

  .interview-card__img {
    height: 280px;
  }

  .interview__nav {
    justify-content: flex-end;
    margin: 0 0 20px;
    gap: 10px;
  }
  .interview__nav-btn {
    width: 38px;
    height: 38px;
  }
  .interview__nav-btn svg {
    width: 16px;
    height: 12px;
  }
  
  .growth-block__btn-arrow svg {
    width: 16px;
    height: 12px;
  }
  
  .interview-card__body {
    padding: 20px 20px 10px;
  }
  .interview-card__title {
    font-size: 1.8rem;
  }
  .interview-card__role {
    font-size: 1.4rem;
  }
  .interview-card__name {
    font-size: 1.6rem;
  }


  /* GROWTH SP */
  .growth__visual {
    height: auto;
    min-height: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .growth__visual-content {
    flex-direction: column;
    padding: 30px 20px 80px;
    margin: 0;
  }

  .growth__visual-text {
    flex: none;
    margin-bottom: 30px;
  }

  .growth__visual-title {
    font-size: 2.4rem;
  }

  .growth__visual-desc {
    font-size: 1.4rem;
  }

  .growth__diagram {
    position: relative;
    min-height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
  }

  .growth__diamond {
    position: static;
    width: 100%;
    height: 100%;
    min-height: auto;
    transform: none;
    outline-offset: -8px;
  }

  .growth__diamond--challenge {
    top: auto;
    right: auto;
  }

  .growth__diamond--mentor {
    top: auto;
    right: auto;
  }

  .growth__diamond--growth {
    top: auto;
    right: auto;
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
  }

  .growth__diamond-inner {
    transform: none;
    padding: 20px 18px;
    text-align: left;
    display: block;
    width: 100%;
    letter-spacing: -0.02em;
  }

  .growth__diamond-title {
    font-size: 1.7rem;
    margin: 0;
  }

  .growth__diamond-text {
    font-size: 1.2rem;
    line-height: 2;
  }

  .growth__diamond-text br {
    display: block;
  }

  .growth__diamond-logo {
    position: static;
    grid-column: 1 / -1;
    width: 60px;
    height: 60px;
    margin: -355px auto 0;
    z-index: 5;
    content: url('../images/top/growth__diamond-logo_sp.png');
  }

  .growth__blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .growth-block__header {
    flex-direction: row;
  }
  
  .growth-block__number {
    font-size: 3.5rem;
  }

  .growth-block__subtitle {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    padding: 0;
    margin: 0 0 22px;
    order: 2;
  }

.growth-block__subtitle .small {
  display: block;
  font-size: 1.7rem;
  margin: 5px 0 0;
}

  .growth-block__middle {
    display: flex;
    flex-direction: column;
  }

  .growth-block__img {
    float: none;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    order: 1;
  }

  .growth-block__btn {
    font-size: 1.6rem;
    height: 80px;
  }

  /* ENTRY SP */
  .entry {
    padding: 40px 0;
  }
  
  .entry__desc {
    margin-bottom: 40px;
  }
  
  .entry__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .entry-card:nth-child(1),
  .entry-card:nth-child(2),
  .entry-card:nth-child(3){
    transform: translateY(0px);
  }

  .entry-card__img {
    height: 280px;
  }

  .entry-card__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .entry-card__text {
    line-height: 1.8;
  }

  .entry-card__role-ja {
    margin-bottom: 8px;
  }

  /* DECK SP */
  .deck__content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px 0 0;
  }

  .deck__img {
    flex: none;
    width: 100%;
    height: 260px;
  }

  .deck__body {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .deck__btn {
    font-size: 1.6rem;
    height: 80px;
  }

  /* Entry CTA SP */
  .entry-cta {
    height: 120px;
  }

  .entry-cta__text {
    font-size: 4.2rem;
  }

  /* Footer SP */
  .footer {
    padding-top: 60px;
  }
  
  .footer__logo img {
    width: 170px;
    height: auto;
  }
  .footer__logo-badge {
    font-size: 1.4rem;
    padding: 0px 6px;
    letter-spacing: 0.04em;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__left {
    flex: none;
  }

  .footer__divider {
    width: 100%;
    height: 1px;
  }

  .footer__links {
    gap: 12px;
  }

  .footer__copyright {
    margin-top: 40px;
    padding: 30px 0;
  }
}
