@charset "utf-8";

/* ===================================
   共通コンポーネント
=================================== */

/* スクリーンリーダー専用 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* セクション見出し（英語大 + 日本語小） */
/* style.css に移動済み: .section-heading, .arrow-btn, .arrow-icon, .link-btn, .tag */

/* Swiper スクロールバー（Recruit用 — interview共通はstyle.cssに移動済み） */
.recruit__scrollbar.swiper-scrollbar {
  position: relative !important;
  width: 100%;
  height: 0.2rem;
  background: rgba(244, 246, 246, 0.2);
  margin-bottom: 5rem;
  left: 0;
  bottom: auto;
  border-radius: 0;
}

.recruit__scrollbar .swiper-scrollbar-drag {
  background: var(--color-white);
  border-radius: 0;
  cursor: grab;
  position: relative;
}

.recruit__scrollbar .swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  bottom: -2rem;
}

.recruit__scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}
.swiper-free-mode > .swiper-wrapper {
  padding-bottom: 8rem;
  align-items: stretch;
}
.recruit__scroll.swiper-free-mode > .swiper-wrapper {
  padding-bottom: 4rem;
}

.recruit__track .recruit-card {
  height: 100%;
}

/* ===================================
   ローディング
=================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 1000;
  pointer-events: none;
  animation: fadeLoading 1.5s ease 1.3s forwards;
}

.loading__center svg {
  animation: fadeSvg 0.7s ease 0.5s forwards;
}

@keyframes fadeSvg {
  to {
    opacity: 0;
  }
}

@keyframes fadeLoading {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__left,
.loading__right {
  background: var(--color-blue);
}

.loading__center {
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading__center svg {
  width: 35%;
}

/* ===================================
   オープニング（KV + Philosophy 共通パララックス背景）
=================================== */
.opening {
  position: relative;
}
.opening::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, rgb(135, 164, 195));
  z-index: 2;
  pointer-events: none;
}
.ripple-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  backdrop-filter: url(#water-ripple);
  -webkit-backdrop-filter: url(#water-ripple);
  clip-path: circle(0% at 50% 50%);
}

/* SP: 水越しのぼかし歪みオーバーレイ */
.ripple-blur {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  will-change: backdrop-filter, clip-path;
}

/* 波紋リング: 外側=光の縁（白）/ 内側=影の縁（暗） で立体感 */
.ripple-ring {
  position: fixed;
  top: 50dvh;
  left: 50vw;
  width: 60vmin;
  height: 60vmin;
  margin: -30vmin 0 0 -30vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(0, 0, 0, 0.04) 48%,
    rgba(0, 0, 0, 0.06) 52%,
    transparent 56%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0.05) 68%,
    transparent 76%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
}

/* 着水の中心パルス */
.ripple-pulse {
  position: fixed;
  top: 50dvh;
  left: 50vw;
  width: 30vmin;
  height: 30vmin;
  margin: -15vmin 0 0 -15vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    transparent 60%
  );
  filter: blur(8px);
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
}

.opening__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* sticky 背景（装飾のみ・コンテンツ背面） */
.opening__bg {
  position: sticky;
  top: 0;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: var(--color-bg-grad);
  background-size: 100% var(--page-h);
  background-position: 0 0;
  background-repeat: no-repeat;
}

.opening__person {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in;
  z-index: 5;
}

.opening__person.hidden {
  opacity: 0;
}

.opening__bg-blur01 {
  position: absolute;
  top: -5%;
  left: 0;
  width: 80%;
  height: auto;
  mix-blend-mode: color-burn;
  z-index: 1;
}

.opening__bg-blur02 {
  position: absolute;
  top: -8%;
  right: 0;
  width: 70%;
  height: auto;
  mix-blend-mode: color-burn;
  z-index: 1;
}

.opening__bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(192deg, #546a82 3.7%, #fff 72.5%);
  mix-blend-mode: color-burn;
  z-index: 2;
}

.opening__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(191deg, #546a82 5.1%, #fff 60.1%);
  mix-blend-mode: color-burn;
  z-index: 2;
}

.opening__bg-shape01 {
  position: absolute;
  top: -27%;
  left: -33%;
  width: 80%;
  height: auto;
  mix-blend-mode: color-burn;
  z-index: 3;
}

.opening__bg-shape02 {
  position: absolute;
  top: -14%;
  right: -15%;
  width: 80%;
  height: auto;
  mix-blend-mode: color-burn;
  z-index: 3;
}

.opening__title {
  position: absolute;
  top: 15%;
  left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6vh;
  z-index: 3;
  width: 12.2vh;
}

.opening__title-char {
  width: 100%;
  height: auto;
}

.opening__title-char:nth-child(2) {
  width: 80%;
}

.opening__title-char:nth-child(4) {
  width: 30%;
}

.opening__title-char:nth-child(5) {
  width: 26%;
  align-self: flex-end;
}

/*  英語サブタイトル（縦・回転） */
.opening__subtitle {
  position: absolute;
  top: 0;
  right: -75%;
  writing-mode: vertical-rl;
  z-index: 3;
  font-size: 0.694444vw !important;
}

.opening__subtitle-text {
  font-family: var(--font-en);
  font-size: 1.8vh;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.5vh;
  color: var(--color-white);
  transform: rotate(180deg);
}

/* ===================================
   KV（キービジュアル）
=================================== */
.kv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100dvh;
  overflow: clip;
}

/* KV コンテンツ */
.kv__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* KV 英語コピー（右上） */
.kv__en-copy {
  position: absolute;
  top: 12.8rem;
  right: 4rem;
  width: 29rem;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.14rem;
  color: var(--color-white);
  text-align: right;
  z-index: 3;
}

/* KV CVボックス（右下） */
.kv__cv {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  width: 26rem;
  z-index: 3;
}

.kv__cv-box {
  border: 1px solid var(--color-base);
  border-radius: 2px 2px 0 0;
  padding: 3rem;
  min-height: 253px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kv__cv-year,
.kv__cv-role,
.kv__cv-status {
  font-family: var(--font-main);
  font-size: 4.8rem;
  line-height: 1;
  color: var(--color-base);
}

.kv__cv-year {
  margin-bottom: 2rem;
}

.kv__cv-role {
  margin-bottom: 2rem;
}

.kv__cv-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: var(--color-base);
  border: 1px solid var(--color-base);
  border-radius: 0 0 0.4rem 0.4rem;
  color: var(--color-blue);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition-base);
}

.kv__cv-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kv__cv-link:hover {
  background: var(--color-blue);
  color: var(--color-base);
}

.kv__cv-link:hover .arrow-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='5' viewBox='0 0 20 5' fill='none'%3E%3Cpath d='M0 4.41406H18L11.9189 0.414062' stroke='%23F4F6F6'/%3E%3C/svg%3E");
}

.sp__cv {
  display: none;
}

/* ===================================
   水の如く（フィロソフィー）
=================================== */
.philosophy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 904px;
  padding: 14rem 0 14rem;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 60px;
}

/* フィロソフィー コンテンツ */
.philosophy__content {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3.5%;
}

.philosophy__text-area {
  flex-shrink: 0;
  width: fit-content;
  font-size: 0.694444vw !important;
}

.philosophy__text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.5em;
  line-height: 2.4;
  letter-spacing: 0.075em;
  color: var(--color-white);
  margin-bottom: 4em;
}

/* フィロソフィー 画像 */
.philosophy__image {
  width: 32%;
}

.philosophy .link-btn {
  width: auto;
  max-width: 320px;
}

/* ===================================
   採用情報（Recruit）
=================================== */
.recruit {
  position: relative;
  margin-top: -0.2rem;
  padding: 12rem;
  background-image: var(--color-bg-grad);
  background-size: 100% var(--page-h);
  background-position: 0 calc(-1 * var(--off-recruit));
  background-repeat: no-repeat;
}
.recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, transparent, rgb(135, 164, 195));
  z-index: 2;
  pointer-events: none;
}
.recruit__obj {
  position: absolute;
  top: 13rem;
  left: 0;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

.recruit__inner {
  width: 100%;
}

.recruit .section-heading {
  margin-bottom: 80px;
}

/* Recruit Swiper — 画面端まで拡張 */
.recruit__scroll {
  overflow: visible !important;
  margin-left: -12rem;
  margin-right: -12rem;
  padding-left: 12rem;
}

/* 採用カード */
.recruit-card {
  width: 25%;
  height: 100%;
  background: var(--color-base);
  border-radius: 0.4rem;
  justify-content: space-between;
  padding: 3.2rem;
}
.recruit-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.recruit-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.recruit-card__date {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.075rem;
  color: var(--color-blue);
  white-space: nowrap;
}

.recruit-card__tags {
  display: flex;
  gap: 0.8rem;
}

.recruit-card__title {
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.085rem;
  color: var(--color-blue);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recruit-card .arrow-btn {
  margin-top: 2.4rem;
  padding: 1rem;
  max-width: 4rem;
}

.recruit-card .arrow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===================================
   お知らせ（News）
=================================== */
.news {
  margin-top: -0.2rem;
  position: relative;
  padding: 12rem;
  background-image: var(--color-bg-grad);
  background-size: 100% var(--page-h);
  background-position: 0 calc(-1 * var(--off-news));
  background-repeat: no-repeat;
}

.news__obj {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

.news__inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.news__header {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-width: 0;
  gap: 10rem;
}

.news__header .section-heading {
  margin-bottom: auto;
}

.news__header .link-btn {
  margin-top: auto;
  width: auto;
  max-width: 240px;
}

/* ニュースリスト */
.news__list {
  width: 660px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ニュースカード */
.news-card {
  position: relative;
  background: var(--color-base);
  border-radius: 0.4rem;
  padding: 3.2rem;
  display: flex;
  align-items: center;
  gap: 7rem;
}

.news-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.news-card__date {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.075rem;
  color: var(--color-blue);
  white-space: nowrap;
}

.news-card__tags {
  display: flex;
  gap: 0.8rem;
}

.news-card__title {
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.085rem;
  color: var(--color-blue);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card .arrow-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===================================
   大学職員とは（What We Do）
=================================== */
.whatwedo {
  margin-top: -0.2rem;
  position: relative;
  padding: 12rem;
  background-image: var(--color-bg-grad);
  background-size: 100% var(--page-h);
  background-position: 0 calc(-1 * var(--off-whatwedo));
  background-repeat: no-repeat;
}

.whatwedo__obj {
  position: absolute;
  top: 17rem;
  right: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

.whatwedo__inner {
  width: 100%;
}

.whatwedo .section-heading {
  margin-bottom: 8rem;
}

/* What We Do グリッド */
.whatwedo__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3.2rem;
}

/* What We Do カード */
.whatwedo-card {
  position: relative;
  overflow: hidden;
  width: calc(50% - 16px);
  background: var(--color-base);
  border-radius: 0.4rem;
  padding: 2.8rem;
  display: flex;
  align-items: flex-end;
  gap: 8%;
}

.whatwedo-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  min-width: 0;
}

.whatwedo-card__image {
  flex-shrink: 0;
  width: 35%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

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

.whatwedo-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #617182;
  mix-blend-mode: overlay;
  border-radius: 4px;
}

.whatwedo-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whatwedo-card__title {
  font-family: var(--font-main);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-blue);
  text-wrap: nowrap;
}

.whatwedo-card__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.65px;
  color: var(--color-blue);
}

.whatwedo-card .arrow-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===================================
   背景装飾シェイプ（共通）
=================================== */
.main {
  position: relative;
  overflow: clip;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* ===================================
   ホバーエフェクト（interview-card は style.css で定義済み）
=================================== */
.recruit-card,
.news-card,
.whatwedo-card {
  transition: var(--transition-base);
}

/* Swiperの .swiper-slide { transition-property: transform } を上書き */
.recruit-card.swiper-slide {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news-card:hover,
.whatwedo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 23, 100, 0.08);
}

/* Swiperの .swiper-backface-hidden .swiper-slide { transform: translateZ(0) } を上書きするため
   chainして specificity を (0,3,0) に上げる */
.recruit-card.swiper-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 23, 100, 0.08);
}

/* ===================================
   メディアクエリ
=================================== */

/* -----------------------------------
   Opening 特殊条件（デバイス別調整）
----------------------------------- */

/* 16:10 デバイス用 */
@media (max-aspect-ratio: 16/10) {
  .opening__person {
    top: 5%;
  }

  .opening__bg-shape01 {
    top: -28%;
    left: -47%;
    width: 100%;
  }

  .opening__bg-shape02 {
    top: -12%;
    right: -25%;
    width: 96%;
  }
}

@media screen and (min-width: 1100px) and (min-height: 810px) {
  .opening__person {
    top: 5%;
  }

  .opening__bg-shape01 {
    top: -28%;
    left: -47%;
    width: 100%;
  }

  .opening__bg-shape02 {
    top: -12%;
    right: -25%;
    width: 96%;
  }
}

@media screen and (max-width: 1380px) and (min-width: 1024px) and (max-height: 770px) {
  .opening__person {
    top: 5%;
  }

  .opening__bg-shape01 {
    top: -28%;
    left: -47%;
    width: 100%;
  }

  .opening__bg-shape02 {
    top: -12%;
    right: -25%;
    width: 96%;
  }
}

/* 横長すぎデバイス用（21:9以上） */
@media (min-aspect-ratio: 21/9) {
  .opening__person {
    top: 0;
    width: 80%;
  }

  .opening__bg-shape01 {
    top: -84%;
    left: -60%;
    width: 120%;
  }

  .opening__bg-shape02 {
    top: -37%;
    right: -35%;
    width: 110%;
  }
}

/* -----------------------------------
   max-width: 1450px
----------------------------------- */
/* interview 1450px レスポンシブは style.css に移動済み */

/* -----------------------------------
   max-width: 1420px
----------------------------------- */
/* interview 1420px レスポンシブは style.css に移動済み */

/* -----------------------------------
   max-width: 1200px
----------------------------------- */
@media screen and (max-width: 1200px) {
  /* Recruit */
  .recruit {
    padding: 12rem 4rem;
  }

  /* News */
  .news {
    padding: 12rem 4rem;
  }

  .news__obj {
    top: 4rem;
  }

  /* What We Do */
  .whatwedo {
    padding: 12rem 4rem;
  }

  /* interview 1200px レスポンシブは style.css に移動済み */
}

/* -----------------------------------
   Tablet（max-width: 1024px）
----------------------------------- */
@media (max-width: 1024px) {
  /* 共通コンポーネント(section-heading, link-btn, arrow-icon, interview-card:hover)は style.css に移動済み */

  .recruit-card:hover,
  .recruit-card.swiper-slide:hover,
  .news-card:hover,
  .whatwedo-card:hover {
    transform: translateY(0);
  }

  .swiper-free-mode > .swiper-wrapper {
    padding-bottom: 6rem;
  }

  /* -- Opening -- */
  .opening::after {
    height: 8rem;
    background: linear-gradient(to bottom, transparent, rgb(169, 189, 212));
  }
  .opening__person {
    right: 0;
    left: auto;
    top: auto;
    bottom: 0;
    transform: none;
    width: 70%;
    height: auto;
    transition: 0.5s ease-in;
    z-index: 5;
  }

  .opening__person picture {
    display: block;
    width: 100%;
    height: auto;
  }

  .opening__bg-left {
    top: auto;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 78%;
    background: linear-gradient(155deg, #546a82 14.71%, #fff 68.79%);
  }

  .opening__bg-right {
    width: 80%;
    height: 78%;
    background: linear-gradient(185deg, #546a82 9.62%, #fff 58.91%);
  }

  .opening__bg-blur01,
  .opening__bg-blur02 {
    display: none;
  }

  .opening__title {
    top: 18%;
    left: 17%;
    gap: 5vh;
    width: 10.2vh;
  }

  .opening__subtitle-text {
    font-size: 3em;
  }

  .opening__bg-shape01 {
    top: -18%;
    left: -74%;
    width: 162%;
  }

  .opening__bg-shape02 {
    top: 8%;
    right: -69%;
    width: 156%;
  }

  /* -- KV / SP CV -- */
  .kv__cv {
    display: none;
  }

  .sp__cv {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    border-top: 1px solid #f4f6f6;
    background: rgba(244, 246, 246, 0.6);
  }

  .sp__cv-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02rem;
    color: var(--color-blue);
  }

  .sp__cv-link > div {
    display: flex;
    flex-direction: column;
  }

  .sp__cv-link .arrow-icon {
    width: 5rem;
    height: 2.5rem;
  }

  .kv__en-copy {
    display: none;
  }

  /* -- Philosophy -- */
  .philosophy {
    padding: 8rem 4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }

  .philosophy__title-area {
    position: relative;
    top: auto;
  }

  .philosophy__content {
    flex-direction: column;
  }

  .philosophy__text {
    font-size: 4.4em;
  }

  .philosophy__text-area {
    width: 100%;
  }

  .philosophy__image {
    width: 100%;
    margin-top: 10rem;
    position: relative;
    z-index: 3;
  }

  /* -- Recruit -- */
  .recruit {
    padding: 8rem 4rem 8rem;
    position: relative;
  }
  .recruit::after {
    height: 10rem;
    background: linear-gradient(to top, transparent, rgb(169, 189, 212));
  }
  .recruit__obj {
    top: 25rem;
  }

  .recruit-card {
    width: 28rem;
    padding: 2.4rem;
  }
  .recruit__footer {
    justify-content: start;
  }
  .recruit__footer .link-btn {
    width: auto;
    max-width: 100%;
  }
  .recruit__scrollbar.swiper-scrollbar {
    margin-top: 0;
  }
  /* -- News -- */
  .news {
    padding: 8rem 4rem 13rem;
  }

  .news__header .link-btn {
    position: absolute;
    bottom: 0.2rem;
    max-width: 100%;
  }

  .news__inner {
    flex-direction: column;
    gap: 6rem;
  }

  .news__list {
    width: 100%;
  }

  .news-card {
    gap: 2.4rem;
    align-items: flex-end;
  }

  /* -- What We Do -- */
  .whatwedo {
    padding: 16rem 4rem;
  }

  .whatwedo-card {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    padding: 6rem;
    border-radius: 1rem;
  }

  .whatwedo-card__body {
    width: 100%;
    flex-direction: column;
    align-items: start;
  }

  .whatwedo-card__image {
    width: 100%;
  }

  .whatwedo-card__title {
    font-size: 4rem;
  }

  .whatwedo-card__desc {
    font-size: 2rem;
  }

  .whatwedo-card .arrow-btn {
    position: absolute;
    top: 80%;
    right: 6rem;
    z-index: 1;
  }

  .whatwedo-card .arrow-btn::after {
    position: absolute;
    top: 50%;
    left: -641%;
    transform: translate(-50%, -50%);
    width: 5000%;
    height: 5000%;
  }

  /* interview tablet レスポンシブは style.css に移動済み */
}

/* -----------------------------------
   SP（max-width: 750px）
----------------------------------- */
@media (max-width: 750px) {
  /* 共通コンポーネント(section-heading, link-btn, arrow-icon)は style.css に移動済み */

  .swiper-free-mode > .swiper-wrapper {
    padding-bottom: 4rem;
  }
  .loading {
    grid-template-columns: 1fr 11rem 1fr;
  }
  .loading__center svg {
    width: 5.2rem;
  }
  /* -- Opening -- */
  .opening__person {
    width: 100%;
  }

  .opening__title {
    top: 13rem;
    left: 13%;
    gap: 3.5vh;
    width: 8vh;
  }

  .opening__subtitle {
    right: -68%;
  }

  .opening__subtitle-text {
    font-size: 1.1rem;
    text-wrap: nowrap;
  }

  .opening__bg-shape01 {
    top: -16%;
    left: -111%;
    width: 221%;
  }

  .opening__bg-shape02 {
    top: 10%;
    right: -150%;
    width: 280%;
  }

  /* -- KV / SP CV -- */
  .sp__cv-link {
    padding: 2.4rem 3rem;
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }

  .sp__cv-link .arrow-icon {
    width: 1.8rem;
    height: 0.5rem;
  }

  /* -- Philosophy -- */
  .philosophy {
    padding: 6rem 3rem;
  }

  .philosophy__text {
    font-size: 1.4rem;
    line-height: 2;
  }

  .philosophy .link-btn {
    max-width: 100%;
  }

  /* -- Recruit -- */
  .recruit {
    padding: 12rem 3rem 6rem;
  }

  .recruit__obj {
    top: 8rem;
    width: 436%;
  }

  .recruit__scroll {
    margin-left: -3rem;
    margin-right: -3rem;
    padding-left: 3rem;
  }

  .recruit .section-heading {
    margin-bottom: 4rem;
  }

  .recruit-card {
    padding: 3.2rem;
  }

  /* -- News -- */
  .news {
    padding: 6rem 3rem 8rem;
  }

  .news__obj {
    top: 22rem;
    right: -2%;
    width: 187%;
  }

  .news-card {
    padding: 2.4rem;
    gap: 2.4rem;
  }

  .news-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .news-card__title {
    font-size: 1.5rem;
  }

  /* -- What We Do -- */
  .whatwedo {
    padding: 12rem 3rem;
  }

  .whatwedo__obj {
    top: 28rem;
    right: auto;
    left: 0;
    width: 262%;
  }

  .whatwedo .section-heading {
    margin-bottom: 4rem;
  }

  .whatwedo__grid {
    gap: 2rem;
  }

  .whatwedo-card {
    padding: 2rem;
    gap: 2rem;
    border-radius: 0.4rem;
  }

  .whatwedo-card__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .whatwedo-card__image {
    width: 100%;
    height: 14.5rem;
  }

  .whatwedo-card__title {
    font-size: 2rem;
  }

  .whatwedo-card__desc {
    font-size: 1.3rem;
    letter-spacing: 0.065rem;
  }

  .whatwedo-card .arrow-btn {
    top: 18.3rem;
    right: 2rem;
  }
}
