@charset "UTF-8";
/* ======================================================

   0. 変数定義

   ====================================================== */
/* ======================================================

   1. 最新の読み込み（@use）

   ====================================================== */
/* 🚀 2回連続で膨らむ鼓動（ダブルビート）の定義 */
@keyframes double-pulse {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.1);
  } /* 1回目の膨らみ */
  10% {
    transform: scale(1);
  } /* 一旦戻る */
  15% {
    transform: scale(1.1);
  } /* 2回目の膨らみ */
  20% {
    transform: scale(1);
  } /* 完全に元のサイズに戻る */
  100% {
    transform: scale(1);
  } /* 残りの時間は静止して待機 */
}
.fixed-cta-button {
  /* --- 1. プロパティ --- */
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 50;
  width: 140px;
  display: block;
  text-decoration: none;
  /* 🚀 3秒おきにダブルビート・アニメーションをループさせる */
  animation: double-pulse 3s ease-in-out infinite;
  /* 🚀 ホバー時の動きを滑らかにする設定 */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease !important;
  /* 🚀 マウスホバー時は鼓動を止めて、ホバー位置に固定 */
}
.fixed-cta-button:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.1) !important;
  opacity: 0.9;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}
.fixed-cta-button {
  /* --- 2. ネストされた要素 --- */
}
.fixed-cta-button .sp-cta-content {
  display: none;
}
.fixed-cta-button .pc-cta-img {
  width: 100%;
  height: auto;
  display: block;
}
.fixed-cta-button {
  /* --- 3. SP設定 --- */
}
@media screen and (max-width: 767px) {
  .fixed-cta-button {
    left: -2.5%;
    right: 0;
    bottom: 0;
    width: 105%;
    height: 59px;
    background: url("/img/photo/red-banner.png") no-repeat center center;
    background-size: 100% 100%;
    border-radius: 0;
    border: none;
    /* スマホ版バナーは動かさない */
    animation: none !important;
    transform: none !important;
  }
  .fixed-cta-button:hover {
    animation: none !important;
    transform: none !important;
  }
  .fixed-cta-button .pc-cta-img {
    display: none;
  }
  .fixed-cta-button .sp-cta-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 21px;
    position: relative;
  }
  .fixed-cta-button .sp-cta-content .en-text {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    margin-right: 12px;
    letter-spacing: 1.4px;
  }
  .fixed-cta-button .sp-cta-content .jp-text {
    font-family: "Source Han Sans JP", sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 1.76px;
  }
  .fixed-cta-button .sp-cta-content .sp-cta-arrow {
    display: block;
    position: absolute;
    width: 29px;
    height: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -o-object-fit: contain;
       object-fit: contain;
    opacity: 1;
  }
}

#new-footer {
  background-color: #77BDDD;
  color: #FFFFFF;
  position: relative;
  z-index: 1000;
  margin: 0 !important;
  padding: 60px 25% 40px 25%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #new-footer {
    padding: 0;
  }
}
#new-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15.6vw;
  width: 100vw;
  height: 100%;
  background-color: #77BDDD;
  z-index: -1;
}
#new-footer {
  /* Page Top (SP非表示) */
}
#new-footer #page-top {
  position: absolute;
  top: 0; /* フッターの最上部を基準にする */
  right: 25%;
  transform: translateX(50%);
  z-index: 2000;
}
@media screen and (max-width: 767px) {
  #new-footer #page-top {
    display: none !important; /* スマホでは非表示 */
  }
}
#new-footer #page-top a {
  text-decoration: none;
  display: block;
  position: relative;
  width: 100px; /* 文字が逃げるスペースを確保 */
  height: 0; /* 基準点にするため高さは0にする */
  /* 1. PAGE TOP 文字 */
}
#new-footer #page-top a .pt-text {
  position: absolute;
  bottom: 60px; /* 🚀 境界線からしっかり上に浮かせる */
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  white-space: nowrap; /* 🚀 絶対に改行させない */
  font-family: "Hoefler Text", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #000 !important;
  line-height: 1;
}
#new-footer #page-top a {
  /* 2. 棒（境界線を中心に固定） */
}
#new-footer #page-top a .pt-line {
  position: absolute;
  top: -40px; /* 🚀 自分の長さ(80px)の半分だけ上に配置して境界線をまたぐ */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#new-footer #page-top a .pt-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 !important;
  transform: translateY(100%);
  animation: pt-line-up-anim 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
#new-footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-wrap {
    flex-direction: column;
  }
}
#new-footer {
  /* --- 左側・スマホメインメニュー --- */
}
#new-footer .footer-left {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#new-footer .footer-left .f-logo {
  width: 180px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .f-logo {
    order: 2;
    margin: 40px auto 20px;
  }
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .footer-nav-list {
    order: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
}
#new-footer .footer-left .footer-nav-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#new-footer .footer-left .footer-nav-list ul li {
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .footer-nav-list ul li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
#new-footer .footer-left .footer-nav-list ul li.sp-menu-item {
  display: none;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .footer-nav-list ul li.sp-menu-item {
    display: block;
  }
}
#new-footer .footer-left .footer-nav-list ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .footer-nav-list ul li a {
    display: block;
    padding: 15px 25px;
    font-size: 14px;
    text-align: left;
  }
}
#new-footer .footer-left .sp-address-box {
  display: none;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-left .sp-address-box {
    display: block;
    order: 3;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
#new-footer {
  /* --- 右側・PCボタンエリア --- */
}
#new-footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-right {
    order: 4;
    align-items: center;
    width: 100%;
  }
}
#new-footer .footer-right .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-right .footer-links {
    align-items: center;
    margin-bottom: 0;
  }
}
#new-footer .footer-right .footer-links .footer-link-item {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-right .footer-links .footer-link-item {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #new-footer .footer-right .footer-links .footer-link-item.insta-link {
    display: flex;
    padding: 20px 0;
    margin-bottom: 0;
  }
}
#new-footer .footer-right .footer-links .footer-link-item.insta-link img {
  width: 30px;
}
#new-footer .footer-right .copyright-text {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  #new-footer .footer-right .copyright-text {
    text-align: center;
    padding-bottom: 30px;
  }
}

@keyframes pt-line-up-anim {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
#vertical-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000100;
  width: 100%;
  height: 0;
  /* ---------------------------------------------
     1. PCヘッダー (.header-pc-only)
  --------------------------------------------- */
}
#vertical-header .header-pc-only {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 13.5% !important;
  height: 100vh !important;
  /* 🚀 修正：トップ・下層関係なく、PCはこの水色で固定 */
  background-color: #C2E9F5 !important;
  padding: 6vh 0 4vh 1.5vw !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
@media screen and (max-width: 599px) {
  #vertical-header .header-pc-only {
    display: none !important;
  }
}
#vertical-header .header-pc-only .logo-area {
  display: flex !important;
  margin-bottom: 5vh !important;
  flex-shrink: 0 !important;
  /* 🚀 修正：ロゴとアドレスの相対位置を保って上に上げる */
  position: relative !important;
  top: -2.5vh !important;
}
#vertical-header .header-pc-only .logo-area .url-text {
  /* 🚀 修正：縦書きなので margin-top でアドレスだけ押し下げる */
  margin-top: 2.5vh !important;
  font-size: clamp(10px, 1.5vh, 18px) !important;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  margin-right: 10px;
  line-height: 1;
  /* 文字色もトップ・下層で変わらないよう固定 */
  color: #000 !important;
}
#vertical-header .header-pc-only .logo-area #header-logo-link img {
  height: 15vh !important;
  width: auto !important;
  max-width: 90% !important;
  display: block;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc {
  display: block !important;
  cursor: pointer;
  margin-bottom: 4vh !important;
  width: 12px !important;
  height: 25px !important;
  position: relative;
  flex-shrink: 0 !important;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc span {
  display: block !important;
  position: absolute;
  width: 1.5px !important;
  height: 100% !important;
  background-color: #000 !important;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc span:nth-child(1) {
  left: 0;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc span:nth-child(2) {
  right: 0;
}
#vertical-header .header-pc-only #corporate-name {
  margin-top: auto !important;
  /* 🚀 修正：コピーライトは左にずらさず元の位置 */
  margin-left: 0 !important;
  font-size: clamp(10px, 1.5vh, 18px) !important;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0 !important;
  color: #000 !important;
}
#vertical-header {
  /* ---------------------------------------------
     2. SP専用ヘッダー (.header-sp-only)
  --------------------------------------------- */
}
#vertical-header .header-sp-only {
  display: none;
}
@media screen and (max-width: 599px) {
  #vertical-header .header-sp-only {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100000100;
    writing-mode: horizontal-tb;
  }
  #vertical-header .header-sp-only .sp-logo-link {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: block;
    pointer-events: auto;
  }
  #vertical-header .header-sp-only .sp-logo-link .sp-logo-img {
    display: block;
    width: auto;
    height: 120px;
    transform-origin: top left;
    transform: rotate(-90deg) translateX(-100%);
  }
  #vertical-header .header-sp-only {
    /* --- トップページSP設定 --- */
  }
  .page-top #vertical-header .header-sp-only {
    height: 37.5vw;
    background-color: transparent !important;
    pointer-events: none;
  }
  .page-top #vertical-header .header-sp-only .sp-triangle-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: #C2E9F5;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
  }
  .page-top #vertical-header .header-sp-only #nav-toggle-btn-sp {
    position: absolute;
    top: 20px;
    left: 80%;
    pointer-events: auto;
  }
  #vertical-header .header-sp-only {
    /* --- 下層ページSP設定 --- */
  }
  .page-lower #vertical-header .header-sp-only {
    height: 60px;
    /* 🚀 下層ページはオレンジのままにしていますが、
       もしここも水色に変えたい場合は #C2E9F5 に書き換えてください */
    background-color: #E96750 !important;
    pointer-events: auto;
  }
  .page-lower #vertical-header .header-sp-only .sp-triangle-bg {
    display: none;
  }
  .page-lower #vertical-header .header-sp-only .sp-logo-link .sp-logo-img {
    height: 90px;
  }
  .page-lower #vertical-header .header-sp-only #nav-toggle-btn-sp {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

/* --- SPハンバーガー（共通） --- */
#nav-toggle-btn-sp {
  width: 48px;
  height: 48px;
  background-color: #77BDDD;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border: none;
  outline: none;
}
#nav-toggle-btn-sp .sp-hamburger-inner span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 3.5px 0;
}

.p-harassment-content {
  background-color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-harassment-content {
    padding: 60px 0;
  }
}
.p-harassment-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-harassment-content__inner {
    width: 90%;
    min-width: auto;
  }
}
.p-harassment-content__section {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-harassment-content__section {
    margin-bottom: 50px;
  }
}
.p-harassment-content__text {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.2;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-harassment-content__text {
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  border-left: 4px solid #E54127;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    padding-left: 12px;
    margin-bottom: 20px;
  }
}
.c-section-title__en {
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #E54127;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 11px;
  }
}
.c-section-title__jp {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-section-title__jp {
    font-size: 20px;
  }
}

.p-harassment-content__signature {
  margin-top: 60px;
  text-align: right;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-harassment-content__signature {
    margin-top: 40px;
    font-size: 12px;
  }
}
.p-harassment-content__signature p:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-harassment-content__signature p:first-child {
    margin-bottom: 10px;
  }
}

.p-page-header {
  background-color: #E54127;
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-page-header {
    height: 180px;
  }
}
.p-page-header__en {
  font-family: "Hoefler Text", "Times New Roman", serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-page-header__en {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
.p-page-header__jp {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-page-header__jp {
    font-size: 14px;
  }
}

.p-service-content,
.p-harassment-content {
  background-color: #fff;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service-content,
  .p-harassment-content {
    padding: 60px 0;
  }
}
.p-service-content__inner,
.p-harassment-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service-content__inner,
  .p-harassment-content__inner {
    width: 90%;
    min-width: auto;
  }
}

.p-service-item {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-service-item {
    margin-bottom: 80px;
  }
}
.p-service-item:last-child {
  margin-bottom: 0;
}
.p-service-item__img {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-service-item__img {
    margin-bottom: 30px;
  }
}
.p-service-item__img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.p-service-item__en {
  font-family: "Hoefler Text", serif;
  font-size: 40px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-service-item__en {
    font-size: 28px;
  }
}
.p-service-item__jp {
  font-size: 16px;
  color: #666;
  margin-bottom: 35px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-service-item__jp {
    margin-bottom: 25px;
  }
}
.p-service-item__catch {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service-item__catch {
    font-size: 20px;
  }
}
.p-service-item__line {
  width: 40px;
  height: 4px;
  background-color: #E54127;
  margin: 0 auto 40px;
}
.p-service-item__text {
  font-size: 14px;
  line-height: 2.2;
  color: #000;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-service-item__text {
    font-size: 13px;
    line-height: 1.8;
    text-align: justify;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  border-left: 4px solid #E54127;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 20px;
  }
}
.c-section-title__en {
  font-size: 13px;
  color: #E54127;
  text-transform: uppercase;
}
.c-section-title__jp {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-section-title__jp {
    font-size: 20px;
  }
}

.p-recruit-btn {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn {
    margin-top: 60px;
  }
}
.p-recruit-btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  height: 112px;
  background-color: #E54127;
  padding: 0 40px;
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__link {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    border-radius: 6px;
  }
}
.p-recruit-btn__text {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__text {
    font-size: 18px;
  }
}
.p-recruit-btn__arrow-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__arrow-box {
    width: 44px;
    height: 44px;
  }
}
.p-recruit-btn__arrow-box img {
  width: 24px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__arrow-box img {
    width: 18px;
  }
}

.p-news-filter {
  padding: 60px 0 40px;
}
.p-news-filter__inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-news-filter__inner {
    width: 95%;
  }
}
.p-news-filter__list {
  display: flex;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #E54127;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-filter__list {
    flex-wrap: wrap;
    border-radius: 8px;
  }
}
.p-news-filter__item {
  flex: 1;
  cursor: pointer;
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #E54127;
  padding: 12px 0;
  text-align: center;
  transition: 0.3s;
  background-color: #fff;
  border-right: 1px solid #E54127;
}
.p-news-filter__item:last-child {
  border-right: none;
}
.p-news-filter__item:hover, .p-news-filter__item.is-active {
  background-color: #E54127;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news-filter__item {
    font-size: 12px;
    padding: 10px 5px;
    min-width: 33.3%;
    border-bottom: 1px solid #E54127;
  }
  .p-news-filter__item:nth-child(3n) {
    border-right: none;
  }
}

.p-news-list {
  border-top: 1px solid #C3C3C3;
}
.p-news-list__inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-news-list__inner {
    width: 95%;
  }
}
.p-news-list__item {
  border-bottom: 1px solid #C3C3C3;
  padding: 50px 0 40px;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-list__item {
    flex-direction: column;
    padding: 40px 0 20px;
  }
}
.p-news-list__left {
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-list__left {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-news-list__meta-row {
  position: absolute;
  top: -30px;
  left: 0;
  width: 1000px;
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 1;
}
.p-news-list__meta-row .date {
  font-size: 14px;
  color: #888;
  font-family: "Helvetica", sans-serif;
  width: 160px;
}
.p-news-list__meta-row .category {
  color: #E54127;
  font-size: 13px;
  font-weight: 700;
  font-family: "Source Han Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta-row {
    position: static;
    width: 100%;
    margin-bottom: 10px;
    gap: 15px;
  }
  .p-news-list__meta-row .date {
    width: auto;
  }
}
.p-news-list__img {
  width: 160px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-news-list__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-news-list__body {
  flex: 1;
  padding-top: 5px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .p-news-list__body {
    padding-right: 0;
    padding-top: 0;
  }
}
.p-news-list__body .title {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-news-list__body .desc {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-news-list__arrow {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #C3C3C3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__arrow {
    display: none;
  }
}
.p-news-list__arrow img {
  width: 12px;
}

.p-pagination {
  padding: 80px 0;
}
.p-pagination__inner {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.p-pagination span {
  width: 40px;
  height: 40px;
  border: 1px solid #C3C3C3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.p-pagination span.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.p-pagination span.next {
  width: auto;
  padding: 0 20px;
  font-family: "Helvetica", sans-serif;
}
.p-pagination span:hover:not(.is-active) {
  background: #f4f4f4;
}

.p-news-detail {
  padding: 80px 0 40px;
}
.p-news-detail__inner {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-news-detail__inner {
    width: 90%;
  }
}
.p-news-detail__main-img {
  width: 100%;
  height: 480px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-detail__main-img {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-news-detail__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.p-news-detail__meta .date {
  font-size: 16px;
  font-family: "Helvetica", sans-serif;
  color: #333;
}
.p-news-detail__meta .category {
  background-color: #E54127;
  color: #fff;
  font-size: 14px;
  padding: 4px 15px;
  font-weight: 500;
}
.p-news-detail__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-news-detail__title {
    font-size: 24px;
  }
}
.p-news-detail__line {
  width: 50px;
  height: 5px;
  background-color: #E54127;
  margin-bottom: 40px;
}
.p-news-detail__content {
  word-break: break-all;
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content {
    font-size: 15px;
  }
}
.p-news-detail__external-link {
  margin-top: 20px; /* 文章との隙間 */
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 14px; /* 14px指定 */
  font-weight: 400; /* Normal */
  line-height: 1.5;
}
.p-news-detail__external-link .link-label {
  margin-right: 8px;
  color: #333;
}
.p-news-detail__external-link .link-url {
  color: #E54127; /* コーポレートカラー */
  text-decoration: underline;
  word-break: break-all;
  transition: opacity 0.3s;
}
.p-news-detail__external-link .link-url:hover {
  opacity: 0.7;
}
.p-news-detail__footer {
  text-align: center;
  padding: 60px 0 100px;
}
.p-news-detail__footer .c-btn-back {
  display: inline-block;
  border: 1px solid #333;
  padding: 15px 60px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.p-news-detail__footer .c-btn-back:hover {
  background: #333;
  color: #fff;
}

.c-link-box {
  display: block; /* 1行まるごと使う */
  text-align: center; /* 中央揃え */
  width: 100%;
  margin: 40px 0; /* 上下にしっかり余白を作って「浮かせる」 */
  padding: 0;
}
.c-link-box__link {
  display: inline-block;
  color: #E54127; /* エンシア様のアクセントカラー */
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 2px solid #E54127; /* 下線を目立たせる */
  transition: opacity 0.3s;
}
.c-link-box__link:hover {
  opacity: 0.7;
}
.c-link-box__link::after {
  content: "→";
  margin-left: 8px;
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: flex !important;
  }
}

.l-main {
  padding-top: 0 !important;
}

/* --- 背景装飾パーツ --- */
.p-about-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-about-shape.--doughnut {
  background-image: url("/img/photo/doughnut.svg");
}
.p-about-shape.--circle {
  background-image: url("/img/photo/circle.svg");
}

/* --- 背景装飾パーツ：レスポンシブ対応版 --- */
/* --- 背景装飾パーツ：座標確定版（戻し） --- */
/* --- 背景装飾パーツ：vw指定（レスポンシブ対応版） --- */
.shape-pc-1 {
  width: 27.08vw;
  height: 27.08vw;
  left: 10.42vw;
  top: 10%;
}

.shape-pc-2 {
  width: 21.15vw;
  height: 21.15vw;
  right: 5.21vw;
  bottom: 18.23vw;
}

.shape-pc-3 {
  width: 14.9vw;
  height: 14.9vw;
  right: -2.24vw;
  top: 20%;
}

.shape-pc-4 {
  width: 25.83vw;
  height: 25.83vw;
  right: 2.6vw;
  top: 15.63vw;
}

/* SP配置 */
@media screen and (max-width: 767px) {
  .shape-sp-1 {
    width: 314px;
    height: 314px;
    right: -50%;
    left: auto;
    top: 40px;
  }
  .shape-sp-2 {
    width: 205px;
    height: 205px;
    right: -25%;
    left: auto;
    bottom: -50px;
  }
  .shape-sp-3 {
    width: 241px;
    height: 241px;
    right: -25%;
    left: auto;
    bottom: -80px;
  }
  .shape-sp-4 {
    width: 314px;
    height: 314px;
    right: -50%;
    left: auto;
    top: -25%;
  }
}
/* スライダーアニメーション */
@keyframes loop-pc {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3025px);
  }
}
@keyframes loop-sp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3025px);
  }
}
.p-about-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  line-height: 0;
}
.p-about-slider__wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.p-about-slider img {
  display: block;
  width: auto;
  min-width: 3025px;
  max-width: none !important;
  height: auto;
}
.p-about-slider.u-pc-only {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 85% 95%, 50% 85%, 15% 95%, 0% 100%);
  background: #fff;
}
.p-about-slider.u-pc-only img {
  height: 710px;
  min-width: 3025px;
}
.p-about-slider.u-pc-only .p-about-slider__wrapper {
  animation: loop-pc 40s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-about-slider.u-sp-only img {
    height: 440px;
    min-width: 1207px;
  }
  .p-about-slider.u-sp-only .p-about-slider__wrapper {
    animation: loop-sp 40s linear infinite;
  }
}

/* --- コンテンツエリア --- */
.p-about-content {
  background-color: #fff;
  padding: 0 0 100px 0;
  font-family: "Source Han Sans JP", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-about-content {
    padding: 0 0 60px 0;
  }
}
.p-about-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about-content__inner {
    width: 90%;
    min-width: auto;
  }
}

.p-about-intro {
  margin-bottom: 120px;
  text-align: center;
}
.p-about-intro .p-about-main-title__text {
  font-size: 30px;
  font-weight: 500;
  color: #000;
}
.p-about-intro__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 20px;
  color: #333;
}

.p-about-features__head {
  margin-bottom: 0;
  text-align: left;
  position: relative;
}
.p-about-features__label {
  font-size: 28px;
  font-weight: 500;
}

.c-orange-line {
  width: 100vw;
  height: 1px;
  background-color: #E54127;
  margin-top: 15px;
  margin-left: 0;
  margin-right: -100vw;
}

.p-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 150px;
}
.p-feature-item__body {
  width: calc(100% - 390px);
  position: relative;
}
.p-feature-item__img {
  width: 350px;
  height: 552px;
  flex-shrink: 0;
  position: relative;
}
.p-feature-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-feature-item__img {
    width: 330px;
    height: 300px;
    margin: 20px auto 0;
  }
}
.p-feature-item .p-about-feature-title {
  margin-bottom: 20px;
}
.p-feature-item .p-about-feature-title__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.p-feature-item .p-about-feature-title__line {
  width: 30px;
  height: 3px;
  background-color: #E54127;
  margin-top: 15px;
}
.p-feature-item__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
}
.p-feature-item:nth-of-type(1) {
  margin-top: -45px;
}
.p-feature-item:nth-of-type(1) .p-feature-item__body {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-feature-item:nth-of-type(1) {
    margin-top: 40px !important;
  }
  .p-feature-item:nth-of-type(1) .p-feature-item__body {
    padding-top: 0;
  }
}
.p-feature-item.-reverse {
  flex-direction: row-reverse;
  margin-top: -180px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-feature-item.-reverse {
    flex-direction: column !important;
    margin-top: 0 !important;
    align-items: center;
  }
}
.p-feature-item:nth-of-type(3) {
  margin-bottom: 120px;
}
.p-feature-item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: calc(50% - 50vw);
  width: calc(50vw - 20.83% + 200px);
  height: 1px;
  background-color: #E54127;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-feature-item {
    flex-direction: column !important;
    margin-bottom: 80px;
    align-items: center;
  }
  .p-feature-item__body {
    width: 100%;
  }
  .p-feature-item::after {
    display: none;
  }
}

.p-about-btn-container {
  margin: 80px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-btn-container {
    width: 80%;
    margin: 50px 0 0 5%;
    padding: 0;
    gap: 15px;
  }
}

.p-about-action-btn {
  width: 100%;
  height: 112px;
}
.p-about-action-btn__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 60px;
  text-decoration: none;
  border-radius: 10px;
}
.p-about-action-btn__link.--blue {
  background-color: #80C6DB;
}
.p-about-action-btn__link.--blue .u-icon-red {
  display: none !important;
}
.p-about-action-btn__link.--red {
  background-color: #E54127;
}
.p-about-action-btn__link.--red .u-icon-blue {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .p-about-action-btn__link {
    padding: 0 15px 0 20px;
    border-radius: 8px;
  }
}
.p-about-action-btn__text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-action-btn__text {
    font-size: 15px;
  }
}
.p-about-action-btn__white-circle {
  width: 56px;
  height: 56px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about-action-btn__white-circle img {
  width: 20px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-about-action-btn__white-circle {
    width: 32px;
    height: 32px;
  }
  .p-about-action-btn__white-circle img {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-action-btn {
    height: 60px;
  }
}

.p-company-tab {
  padding: 60px 0 40px;
}
.p-company-tab__inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-company-tab__inner {
    width: 95%;
  }
}
.p-company-tab__list {
  display: flex;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #E54127;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-company-tab__list {
    flex-wrap: wrap;
    border-radius: 8px;
  }
}
.p-company-tab__item {
  flex: 1;
  cursor: pointer;
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #E54127;
  padding: 12px 0;
  text-align: center;
  transition: 0.3s;
  background-color: #fff;
  border-right: 1px solid #E54127;
}
.p-company-tab__item:last-child {
  border-right: none;
}
.p-company-tab__item:hover, .p-company-tab__item.is-active {
  background-color: #E54127;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-company-tab__item {
    font-size: 12px;
    padding: 10px 5px;
    min-width: 33.3%;
    border-bottom: 1px solid #E54127;
  }
}

.p-company-content {
  display: none;
}
.p-company-content.is-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-company-section {
  padding: 100px 0;
  background-color: #fff;
}
.p-company-section.is-bg-gray {
  background-color: #F5F3EF !important;
}
@media screen and (max-width: 767px) {
  .p-company-section {
    padding: 60px 0;
  }
}
.p-company-section__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-company-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  border-left: 4px solid #E54127;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    padding-left: 12px;
    margin-bottom: 25px;
  }
}
.c-section-title__en {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #E54127;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.c-section-title__jp {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  margin: 0;
}

.p-company-info {
  width: 100%;
  margin-bottom: 60px;
}
.p-company-info__item {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-company-info__item {
    flex-direction: column;
  }
}
.p-company-info__label {
  width: 200px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}
.p-company-info__data {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 2;
}

.p-company-info__vmv {
  width: 100%;
  padding: 60px 0;
  background-color: #fff;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .p-company-info__vmv {
    padding-left: 0;
  }
}

.p-vmv-box {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.p-vmv-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: calc(100% - (100% - 1100px) / 2 - 128px + 50px);
  height: 100%;
  background-color: rgba(245, 243, 239, 0.5);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-vmv-box::before {
    left: 0;
    width: 100%;
  }
}
.p-vmv-box__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-vmv-box__content {
    flex-direction: column;
    padding: 0 20px;
  }
}
.p-vmv-box__text-area {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-vmv-box__image {
  flex: 0 0 256px;
  width: 256px;
  height: 256px;
  position: relative;
  z-index: 2;
  margin-right: -100px;
  margin-left: 40px;
}
.p-vmv-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-vmv-box__image {
    width: 200px;
    height: 200px;
    margin: 30px auto 0;
    margin-right: auto;
  }
}

.p-vmv-label {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.p-vmv-label__dot {
  width: 8px;
  height: 8px;
  background-color: #E54127;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.p-vmv-label__main {
  font-family: "Hoefler Text", serif;
  font-size: 40px;
  font-weight: 400;
  color: #000;
  margin-right: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-vmv-label__main {
    font-size: 30px;
    margin-right: 20px;
  }
}
.p-vmv-label__sub {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.p-vmv-title {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.4;
}

.p-vmv-text {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
  color: #333;
}

.p-company-base {
  width: 100%;
  padding-bottom: 100px;
}
.p-company-base__top-visual {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 80px;
  background-color: #eee;
}
.p-company-base__top-visual img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-company-base__top-visual {
    height: 250px;
  }
  .p-company-base__top-visual img {
    position: static;
    width: 100%;
    left: 0;
  }
}
.p-company-base__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-company-base__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-company-base__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-company-base__main {
    flex-direction: column;
  }
}
.p-company-base .c-location-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  border-left: 4px solid #E54127;
  margin-bottom: 25px;
  line-height: 1.2;
}
.p-company-base .c-location-head__en {
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #E54127;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.p-company-base .c-location-head__jp {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin: 0;
}
.p-company-base .c-location-head.is-small {
  margin-bottom: 15px;
}
.p-company-base .c-location-head.is-small .c-location-head__jp {
  font-size: 18px;
}
.p-company-base__access {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2;
  color: #333;
}
.p-company-base__map-img {
  width: 450px;
  height: 400px;
  flex-shrink: 0;
}
.p-company-base__map-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-company-base__map-img {
    width: 100%;
    height: auto;
  }
}
.p-company-base__gallery {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-company-base__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-company-base__gallery-item {
  flex: 1;
  height: 140px;
}
.p-company-base__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-company-base__sub {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-company-base__sub {
    flex-direction: column;
  }
}
.p-company-base__sub-item {
  flex: 1;
}

.service-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
}
.service-buttons .blue-button,
.service-buttons .red-button-svg {
  display: flex;
  align-items: center;
  width: 240px;
  height: 50px;
  color: #fff !important;
  padding-left: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 12px;
  font-weight: 500;
}
.service-buttons .blue-button {
  background-image: url("../img/photo/blue_button.svg");
}
.service-buttons .red-button-svg {
  background-image: url("../img/photo/red_button.svg");
}

.p-company-message {
  width: 100%;
}
.p-company-message__img {
  width: 100%;
  margin-bottom: 40px;
}
.p-company-message__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-company-message__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-company-message__title {
    font-size: 20px;
  }
}
.p-company-message__text {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.4;
  color: #333;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-company-message__text {
    font-size: 14px;
  }
}
.p-company-message__signature {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  line-height: 1.8;
  color: #000;
}

.p-history-timeline {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

.p-history-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 80px;
}
.p-history-row:last-child {
  padding-bottom: 0;
}
.p-history-row:last-child .p-history-line {
  display: none;
}

.p-history-date {
  display: contents;
}

.p-history-year {
  order: 1;
  flex: 0 0 100px;
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-history-year {
    flex: 0 0 60px;
    font-size: 24px;
  }
}

.p-history-line-area {
  order: 2;
  flex: 0 0 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-history-line-area {
    flex: 0 0 40px;
  }
}

.p-history-dot {
  width: 20px;
  height: 20px;
  background-color: #E54127;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-history-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
  }
}

.p-history-line {
  position: absolute;
  top: 20px;
  height: calc(100% + 80px);
  width: 2px;
  background-color: #E54127;
  z-index: 1;
}

.p-history-month {
  order: 3;
  flex: 0 0 80px;
  font-family: "Quicksand", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-history-month {
    flex: 0 0 40px;
    font-size: 24px;
  }
}

.p-history-body {
  order: 4;
  flex: 1;
  padding-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-history-body {
    padding-top: 5px;
  }
}

.p-history-text {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.p-contact-content {
  background-color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-contact-content {
    padding: 60px 0;
  }
}
.p-contact-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-contact-content__inner {
    width: 90%;
    min-width: auto;
  }
}
.p-contact-content__section {
  margin-bottom: 50px;
  text-align: center;
}
.p-contact-content__text {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 2.2;
  color: #000;
}

.p-contact-form__item {
  margin-bottom: 35px;
}
.p-contact-form__label {
  display: flex;
  align-items: center;
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
  color: #000;
}
.p-contact-form__status {
  font-size: 11px;
  color: #E54127;
  margin-left: 10px;
  font-weight: 400;
}
.p-contact-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
}
.p-contact-form__consent {
  text-align: center;
  margin: 60px 0 40px;
  font-size: 13px;
}
.p-contact-form__consent-text {
  margin-bottom: 10px;
}
.p-contact-form__checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.p-contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.c-input-text, .c-textarea {
  width: 100%;
  max-width: 800px;
  border: none;
  background-color: #F8F7F5;
  font-family: "Source Han Sans JP", sans-serif;
  padding: 0 15px;
  font-size: 14px;
  color: #333;
}
.c-input-text:focus, .c-textarea:focus {
  outline: 1px solid #E54127;
}

.c-input-text {
  height: 50px;
}

.c-textarea {
  height: 200px;
  padding: 15px;
  resize: none;
}

.c-radio-label, .c-checkbox-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-radio-label input, .c-checkbox-label input {
  accent-color: #E54127;
  width: 18px;
  height: 18px;
}

.red-button-svg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 240px;
  height: 50px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  background-image: url("../img/photo/red_button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  padding-left: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .red-button-svg {
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.red-button-svg:hover {
  opacity: 0.8;
}

.p-contact-form__submit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.u-color-orange {
  color: #E54127;
}

.p-thanks-content {
  background-color: #fff;
  padding: 100px 0 150px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks-content {
    padding: 60px 0 100px;
  }
}
.p-thanks-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-thanks-content__inner {
    width: 90%;
    min-width: auto;
  }
}
.p-thanks-content__img {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.p-thanks-content__img img {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-thanks-content__img img {
    width: 160px;
    height: 160px;
  }
}
.p-thanks-content__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #E54127;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-thanks-content__title {
    font-size: 16px;
  }
}
.p-thanks-content__text {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.2;
  color: #000;
}
.p-thanks-content__text .u-color-orange {
  color: #E54127;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-thanks-content__text {
    font-size: 13px;
  }
}

.p-recruit-top-content {
  padding: 60px 0;
  overflow-x: hidden;
}
.p-recruit-top-content .p-recruit-message {
  text-align: center;
  padding: 0 20px 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.p-recruit-top-content .p-recruit-message__label {
  display: block;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}
.p-recruit-top-content .p-recruit-message__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-message__title {
    font-size: 20px;
  }
}
.p-recruit-top-content .p-recruit-message__line {
  width: 50px;
  height: 5px;
  background-color: #E54127;
  margin: 25px auto;
}
.p-recruit-top-content .p-recruit-message__text {
  font-size: 14px;
  line-height: 2;
  color: #333;
}
.p-recruit-top-content .p-recruit-visual {
  font-family: "Hoefler Text", "HoeflerText-Regular", serif;
  margin-bottom: 100px;
}
.p-recruit-top-content .p-recruit-visual__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.p-recruit-top-content .p-recruit-visual__line {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  line-height: 1.1;
}
.p-recruit-top-content .p-recruit-visual__line.-left {
  justify-content: flex-start;
}
.p-recruit-top-content .p-recruit-visual__line.-right {
  justify-content: flex-end;
  margin-top: -0.2em;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-visual__line {
    display: block;
    text-align: center;
  }
  .p-recruit-top-content .p-recruit-visual__line.-right {
    margin-top: 20px;
  }
}
.p-recruit-top-content .p-recruit-visual__text {
  display: inline-block;
  white-space: nowrap;
}
.p-recruit-top-content .p-recruit-visual__text.-small {
  font-size: 63px;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-visual__text.-small {
    font-size: 32px;
  }
}
.p-recruit-top-content .p-recruit-visual__text.-large {
  font-size: 81px;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-visual__text.-large {
    font-size: 40px;
  }
}
.p-recruit-top-content .p-recruit-visual__text.-color {
  color: #E54127;
}
.p-recruit-top-content .p-recruit-feature {
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
}
.p-recruit-top-content .p-recruit-feature__item {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.p-recruit-top-content .p-recruit-feature__item.-left-img {
  padding-left: clamp(20px, 26vw, 510px);
  padding-right: 40px;
  gap: 60px;
  justify-content: flex-start;
}
.p-recruit-top-content .p-recruit-feature__item.-right-img {
  padding-left: clamp(20px, 26vw, 510px);
  padding-right: 40px;
  gap: 60px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-feature__item {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 40px;
  }
}
.p-recruit-top-content .p-recruit-feature__img {
  flex-shrink: 0;
  width: 400px;
}
.p-recruit-top-content .p-recruit-feature__img img {
  width: 100%;
  height: 265px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-feature__img {
    width: 100%;
  }
  .p-recruit-top-content .p-recruit-feature__img img {
    height: auto;
  }
}
.p-recruit-top-content .p-recruit-feature__body {
  flex: 0 0 500px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-recruit-top-content .p-recruit-feature__body {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
.p-recruit-top-content .p-recruit-feature__about {
  font-family: "Hoefler Text", serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}
.p-recruit-top-content .p-recruit-feature__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #E54127;
  margin-bottom: 20px;
}
.p-recruit-top-content .p-recruit-feature__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 30px;
}
.p-recruit-top-content .p-recruit-feature__btn-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
.p-recruit-top-content .p-recruit-feature__btn-wrapper:hover .p-recruit-feature__btn-line {
  transform: scaleX(1.05);
  transform-origin: left;
}
.p-recruit-top-content .p-recruit-feature__btn-wrapper:hover .p-recruit-feature__btn img {
  transform: translateX(8px);
  opacity: 0.7;
}
.p-recruit-top-content .p-recruit-feature__btn-line {
  height: 1px;
  background-color: #E54127;
  flex-grow: 1;
  margin-right: 15px;
  transition: transform 0.3s ease;
}
.p-recruit-top-content .p-recruit-feature__btn {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.p-recruit-top-content .p-recruit-feature__btn img {
  width: 40px;
  height: 40px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-recruit-archive {
  max-width: 1100px;
  margin: 120px auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-archive {
    padding: 0 20px;
    margin-top: 80px;
  }
}
.p-recruit-archive__title-group {
  text-align: center;
  margin-bottom: 50px;
}
.p-recruit-archive__title {
  font-family: "Hoefler Text", serif;
  font-size: 50px;
  line-height: 1;
  color: #333;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-recruit-archive__title {
    font-size: 36px;
  }
}
.p-recruit-archive__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-recruit-archive__subtitle {
    font-size: 15px;
  }
}
.p-recruit-archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit-archive__list {
    gap: 40px 15px;
  }
}
.p-recruit-archive__item {
  width: 230px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.p-recruit-archive__item:hover {
  opacity: 0.8;
}
.p-recruit-archive__item:hover .p-recruit-archive__img img {
  transform: scale(1.03);
}
@media screen and (max-width: 767px) {
  .p-recruit-archive__item {
    width: calc((100% - 15px) / 2);
  }
}
.p-recruit-archive__img {
  width: 230px;
  height: 311px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit-archive__img {
    width: 100%;
    height: auto;
    aspect-ratio: 230/311;
  }
}
.p-recruit-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.p-recruit-archive__info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.p-recruit-archive__post {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #666;
}
.p-recruit-archive__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
.p-recruit-archive__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #333;
}

.p-recruit-nav {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-nav {
    padding: 0 20px;
    margin-top: 60px;
  }
}
.p-recruit-nav__inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-nav__inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.p-recruit-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 490px;
  height: 112px;
  padding: 0 35px 0 45px;
  box-sizing: border-box;
  border: 2px solid #E54127;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}
.p-recruit-nav__item:hover {
  background-color: rgba(229, 65, 39, 0.05);
  transform: translateY(-3px);
}
.p-recruit-nav__item:hover .p-recruit-nav__icon img {
  transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .p-recruit-nav__item {
    width: 100%;
    height: 90px;
    padding: 0 20px;
  }
}
.p-recruit-nav__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-recruit-nav__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #E54127;
  line-height: 1.4;
}
.p-recruit-nav__sub {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #E54127;
  line-height: 1.4;
}
.p-recruit-nav__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
.p-recruit-nav__icon img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s;
}

.p-job-details {
  padding: 100px 0 0;
}
.p-job-details__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-job-details__inner {
    padding: 0 20px;
  }
}
.p-job-details__head {
  text-align: center;
  margin-bottom: 60px;
}
.p-job-details__en {
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  margin-bottom: 15px;
  color: #333;
}
.p-job-details__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-job-details__title {
    font-size: 20px;
  }
}
.p-job-details__line {
  width: 50px;
  height: 5px;
  background-color: #E54127;
  margin: 0 auto 30px;
}
.p-job-details__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #333;
}
.p-job-details__border {
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.p-job-select {
  padding: 30px 0 80px;
}
.p-job-select__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-job-select__inner {
    padding: 0 20px;
    gap: 30px;
  }
}
.p-job-select__label-group {
  width: 100%;
  margin-bottom: 25px;
}
.p-job-select__label-group.is-part-time {
  margin-top: 50px;
}
.p-job-select__label {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333;
}
.p-job-select__label::before {
  content: "";
  width: 4px;
  height: 24px;
  background-color: #E54127;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .p-job-select__label {
    font-size: 20px;
  }
  .p-job-select__label::before {
    height: 20px;
  }
}
.p-job-select__item {
  display: flex;
  flex-direction: column;
  width: 490px;
  min-height: 370px;
  padding: 40px;
  background-color: #F5F5F5;
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
.p-job-select__item:not(.is-disabled):hover {
  background-color: #ECECEC;
}
.p-job-select__item:not(.is-disabled):hover .p-job-select__btn-line::after {
  transform: scaleX(1);
}
.p-job-select__item:not(.is-disabled):hover .p-job-select__btn img {
  transform: translateX(5px);
}
.p-job-select__item.is-disabled {
  cursor: default;
  pointer-events: none;
}
.p-job-select__item.is-disabled .p-job-select__en,
.p-job-select__item.is-disabled .p-job-select__name,
.p-job-select__item.is-disabled .p-job-select__lead {
  color: #aaa;
}
.p-job-select__item.is-disabled .p-job-select__btn-line {
  background-color: #eee;
}
.p-job-select__item.is-disabled .p-job-select__btn-line::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-job-select__item {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }
}
.p-job-select__body {
  text-align: left;
  margin-top: 40px;
  margin-bottom: auto;
}
.p-job-select__en {
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  margin-bottom: 5px;
}
.p-job-select__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 15px;
}
.p-job-select__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}
.p-job-select__btn-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
.p-job-select__btn-line {
  position: relative;
  height: 1px;
  background-color: #ccc;
  flex-grow: 1;
  margin-right: 15px;
  overflow: hidden;
}
.p-job-select__btn-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E54127;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.p-job-select__btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.p-job-select__btn img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s;
}

.p-recruit-btn {
  width: 100%;
  text-align: center;
  margin: 100px 0 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn {
    margin-top: 60px;
  }
}
.p-recruit-btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  height: 100px;
  background-color: #E54127;
  padding: 0 40px;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}
.p-recruit-btn__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__link {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
.p-recruit-btn__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__content {
    gap: 10px;
  }
}
.p-recruit-btn__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__main {
    font-size: 16px;
  }
}
.p-recruit-btn__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__sub {
    font-size: 12px;
  }
}
.p-recruit-btn__arrow-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__arrow-box {
    width: 44px;
    height: 44px;
  }
}
.p-recruit-btn__arrow-box img {
  width: 24px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-recruit-btn__arrow-box img {
    width: 18px;
  }
}

.p-job-info {
  width: 100%;
  margin: 60px 0;
}
.p-job-info__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-job-info__inner {
    padding: 0 20px;
  }
}
.p-job-info__main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-job-info__main-title {
    font-size: 24px;
  }
}
.p-job-info__sub-title {
  position: relative;
  background-color: #F5F5F5;
  width: 100%;
  margin-bottom: 20px;
}
.p-job-info__sub-title span {
  display: inline-block;
  padding: 5px 15px;
  font-size: 20px;
  font-weight: 700;
}
.p-job-info__sub-title span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E54127;
}
.p-job-info__text {
  font-size: 14px;
  line-height: 2;
  padding-left: 15px;
}
.p-job-info__back {
  text-align: center;
  margin-top: 60px;
}
.p-job-info__back button {
  padding: 15px 50px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* レイアウト・見出し */
.p-entry-content {
  background-color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-entry-content {
    padding: 60px 0;
  }
}
.p-entry-content__inner {
  width: 41.66%;
  margin: 0 auto;
  min-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-entry-content__inner {
    width: 90%;
    min-width: auto;
  }
}

.p-entry-form__head {
  text-align: center;
  margin-bottom: 60px;
}
.p-entry-form__en {
  font-family: "Hoefler Text", serif;
  font-size: 40px;
  color: #E54127;
  margin-bottom: 5px;
}
.p-entry-form__jp, .p-entry-form__lead {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
}
.p-entry-form__jp {
  margin-bottom: 25px;
}
.p-entry-form__lead {
  line-height: 2.2;
}

/* フォーム共通 */
.p-contact-form__item {
  margin-bottom: 35px;
}
.p-contact-form__label {
  display: flex;
  align-items: center;
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.p-contact-form__status {
  font-size: 11px;
  color: #E54127;
  margin-left: 10px;
}

/* 入力ボックス・プルダウン共通のデザイン（背景色 #F8F7F5） */
.c-input-text, .c-textarea, .c-select-container {
  width: 100%;
  max-width: 100%;
  background-color: #F8F7F5;
  box-sizing: border-box;
}

.c-input-text, .c-select-container {
  height: 50px;
}

.c-input-text, .c-textarea, .c-select {
  border: none;
  font-family: "Source Han Sans JP", sans-serif;
  padding: 0 15px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}
.c-input-text:focus, .c-textarea:focus, .c-select:focus {
  outline: 1px solid #E54127;
}

.c-select-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.c-select-container::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
.c-select-container .c-select {
  width: 100%;
  height: 100%;
  background: transparent;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
}
.c-select-container:has(.c-select:focus) {
  outline: 1px solid #E54127;
}

/* ボタン */
.red-button-svg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 240px;
  height: 50px;
  border: none;
  cursor: pointer;
  background: transparent url("../img/photo/red_button.svg") no-repeat center/contain;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  padding-left: 30px;
  transition: opacity 0.3s;
}
.red-button-svg:hover {
  opacity: 0.8;
}

/* 仕事紹介セクション
--------------------------------------------- */
.p-recruit-work .p-job-details__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-recruit-work .p-job-details__inner {
    padding: 0 20px;
  }
}
.p-recruit-work .p-work-block {
  margin-top: 60px;
}
.p-recruit-work .p-work-block__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-work .p-work-block__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.p-recruit-work .p-work-block__content {
  flex: 1;
}
.p-recruit-work .p-work-block__title-wrapper {
  border-left: 4px solid #E60012;
  padding-left: 15px;
  margin-bottom: 20px;
}
.p-recruit-work .p-work-block__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-recruit-work .p-work-block__title {
    font-size: 20px;
  }
}
.p-recruit-work .p-work-block__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.p-recruit-work .p-work-block__image {
  flex-shrink: 0;
  width: 376px;
  height: 268px;
}
.p-recruit-work .p-work-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-recruit-work .p-work-block__image {
    width: 100%;
    height: auto;
  }
}

/* 仕事紹介：フロー・ステップ
--------------------------------------------- */
.p-work-flow {
  margin-top: 80px;
}
.p-work-flow__item {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
}
.p-work-flow__item:last-child {
  padding-bottom: 0;
}
.p-work-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 140px;
  width: 2px;
  height: calc(100% - 80px);
  background-color: #F2614A;
}
@media screen and (max-width: 767px) {
  .p-work-flow__item {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 60px;
  }
  .p-work-flow__item:not(:last-child)::after {
    display: none;
  }
}
.p-work-flow__left {
  flex-shrink: 0;
  width: 280px;
}
.p-work-flow__box {
  width: 280px;
  height: 80px;
  background-color: #F2614A;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-work-flow__box {
    width: 100%;
  }
}
.p-work-flow__right {
  flex: 1;
  display: flex;
  align-items: center;
}
.p-work-flow__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* 共通ナビゲーション
--------------------------------------------- */
.p-recruit-nav {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-nav {
    padding: 0 20px;
    margin-top: 60px;
  }
}
.p-recruit-nav__inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-nav__inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.p-recruit-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 490px;
  height: 112px;
  padding: 0 35px 0 45px;
  box-sizing: border-box;
  border: 2px solid #E54127;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}
.p-recruit-nav__item:hover {
  background-color: rgba(229, 65, 39, 0.05);
  transform: translateY(-3px);
}
.p-recruit-nav__item:hover .p-recruit-nav__icon img {
  transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .p-recruit-nav__item {
    width: 100%;
    height: 90px;
    padding: 0 20px;
  }
}
.p-recruit-nav__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-recruit-nav__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #E54127;
  line-height: 1.4;
}
.p-recruit-nav__sub {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #E54127;
  line-height: 1.4;
}
.p-recruit-nav__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
.p-recruit-nav__icon img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s;
}

/* 働く環境セクション：共通設定
--------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-recruit-env .p-job-details__text {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* 1. カードグリッド（4×3など）
--------------------------------------------- */
.p-env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 230px);
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-env-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.p-env-card {
  min-height: 220px;
  background-color: #F5F5F5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-env-card {
    min-height: auto;
    aspect-ratio: 1/1;
  }
}
.p-env-card__image-box {
  width: 133px;
  height: 116px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-env-card__image-box img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-env-card__image-box {
    width: 60%;
    height: auto;
    aspect-ratio: 133/116;
  }
}
.p-env-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-env-card__title {
    font-size: 14px;
  }
}

/* 2. 横長バナー (998*170)
--------------------------------------------- */
.p-env-banner-area {
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-env-banner {
  display: flex;
  max-width: 998px;
  width: 100%;
  min-height: 170px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #eee;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-env-banner {
    flex-direction: column;
  }
}
.p-env-banner__left {
  flex: 0 0 260px;
  background-color: #F2614A;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-env-banner__left {
    flex: 0 0 auto;
    width: 100%;
    height: 60px;
  }
}
.p-env-banner__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.p-env-banner__right {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-env-banner__right {
    padding: 20px;
  }
}
.p-env-banner__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #F2614A;
  margin-bottom: 10px;
}
.p-env-banner__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.p-news-nav {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}
.p-news-nav__list {
  display: flex;
  border: 2px solid #E54127;
  border-radius: 50px;
  overflow: hidden;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-news-nav__list {
    flex-direction: column;
    border-radius: 10px;
  }
}
.p-news-nav__item {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: bold;
  color: #E54127;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 2px solid #E54127;
}
.p-news-nav__item:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-news-nav__item {
    border-right: none;
    border-bottom: 2px solid #E54127;
  }
  .p-news-nav__item:last-child {
    border-bottom: none;
  }
}
.p-news-nav__item.is-active {
  background-color: #E54127;
  color: #fff;
}
.p-news-nav__item:hover:not(.is-active) {
  background-color: rgba(229, 65, 39, 0.05);
}

.p-recruit-contents {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-contents {
    padding: 40px 0;
  }
}

.p-recruit-content {
  display: none;
}
.p-recruit-content.is-active {
  display: block;
  animation: recruitFadeIn 0.5s ease forwards;
}

@keyframes recruitFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-interview-post .l-inner, .p-interview-body .l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-interview-post .l-inner, .p-interview-body .l-inner {
    padding: 0 20px;
  }
}

.p-interview-post {
  padding: 100px 0;
}
.p-interview-post__container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-interview-post__container {
    flex-direction: column-reverse;
  }
}
.p-interview-post__contents {
  flex: 1;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .p-interview-post__contents {
    padding-right: 0;
  }
}
.p-interview-post__en-title {
  font-family: "Hoefler Text", serif;
  font-size: 40px;
  color: #E54127;
  margin-bottom: 25px;
}
.p-interview-post__info {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.p-interview-post__role {
  font-size: 12px;
  font-weight: 500;
}
.p-interview-post__name {
  font-size: 18px;
  font-weight: 700;
}
.p-interview-post__catch {
  font-size: 28px;
  margin: 15px 0;
  line-height: 1.4;
}
.p-interview-post__line {
  width: 100%;
  height: 1px;
  background-color: #E54127;
  margin-bottom: 15px;
}
.p-interview-post__profile-label {
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  color: #E54127;
  display: block;
  margin-bottom: 10px;
}
.p-interview-post__profile-text {
  font-size: 14px;
  line-height: 1.8;
}
.p-interview-post__figure {
  flex: 1;
}
.p-interview-post__figure img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.p-interview-body {
  padding-bottom: 80px;
}
.p-interview-body__container {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .p-interview-body__container {
    flex-direction: column;
    gap: 30px;
  }
}
.p-interview-body__figure {
  flex: 1;
}
.p-interview-body__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/340;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview-body__contents {
  flex: 1;
}
.p-interview-body__title {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #333;
  padding-left: 15px;
  border-left: 4px solid #E54127;
  margin-bottom: 30px;
}
.p-interview-body__q-and-a {
  margin-bottom: 30px;
}
.p-interview-body__q-and-a:last-child {
  margin-bottom: 0;
}
.p-interview-body__subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  line-height: 1;
}
.p-interview-body__line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #333;
  flex-shrink: 0;
  transform: translateY(1px);
}
.p-interview-body__subtitle {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin: 0;
}
.p-interview-body__text {
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.p-interview-footer {
  padding: 60px 0 100px;
  text-align: center;
}

.p-interview-nav {
  padding: 100px 0;
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-interview-nav {
    padding: 60px 0;
  }
}
.p-interview-nav .p-recruit-nav {
  margin-bottom: 40px;
}

.p-interview-footer__back {
  text-align: center;
  margin-top: 40px;
}
.p-interview-footer__back .c-btn-back {
  font-size: 14px;
  color: #666;
  text-decoration: underline;
}
.p-interview-footer__back .c-btn-back:hover {
  color: #E54127;
}

/* --- 0. 基本設定 --- */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
}

/* --- 🚀 スマホ限定設定 --- */
@media screen and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }
  #main-content {
    overflow-x: hidden;
  }
}
#video-background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.4;
}
#video-background-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ======================================================
   2. メインエリア 構造改革（Stickyを有効化）
   ====================================================== */
#main-content {
  margin-left: 13.5%;
  width: calc(100% - 13.5%);
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #main-content {
    margin-left: 0;
    width: 100%;
    padding-top: 60px;
  }
}

#main-wrapper {
  display: block;
  /* contentsから変更し、Heroの動く範囲を認識させます */
  position: relative;
}

.about-content-wrapper,
.service-content-wrapper,
.news-content-wrapper,
.recruit-cta-inner,
.block-item {
  width: 100% !important;
  max-width: none !important;
  padding-left: 11.5% !important;
  /* 🚀 左側の調整 */
  padding-right: 25% !important;
  /* 🚀 右側の調整 */
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about-content-wrapper,
  .service-content-wrapper,
  .news-content-wrapper,
  .recruit-cta-inner,
  .block-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

#main-wrapper {
  display: block;
  position: relative;
}

/* --- 4. HERO SECTION (完全版：アニメーション・可変設定込み) --- */
#hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 10;
}
#hero-section .hero-sticky-container {
  position: fixed;
  top: 0;
  /* ヘッダー幅に合わせた固定位置 */
  left: 13.5%;
  width: 86.5%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #hero-section .hero-sticky-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 90vh;
  }
}
#hero-section .hero-content {
  width: 100%;
  position: relative;
}
#hero-section .hero-content h1.reveal-banner {
  font-family: "Hoefler Text", serif;
  /* 🚀 修正：画面幅に合わせて可変。最小40px〜最大81px */
  font-size: clamp(40px, 6vw, 81px);
  line-height: 1.1;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  /* はみ出しを隠す（アニメーション用） */
  overflow: hidden;
  padding: 0 10px;
  color: transparent;
}
@media screen and (max-width: 767px) {
  #hero-section .hero-content h1.reveal-banner {
    font-size: 41px !important;
    white-space: normal;
    line-height: 1.2;
  }
}
#hero-section .hero-content h1.reveal-banner.is-active {
  animation: tn-reveal-text 0s forwards 0.7s;
}
#hero-section .hero-content h1.reveal-banner.is-active .scrolling-bar {
  animation: bar-action 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
#hero-section .hero-content h1.reveal-banner.is-active .highlight {
  color: #000 !important;
  transition: color 0s 0.7s;
}
#hero-section .hero-content h1.reveal-banner .scrolling-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E54127 !important;
  z-index: 10;
  transform: scaleX(0);
  transform-origin: left;
}
#hero-section .hero-content h1.reveal-banner .highlight {
  color: transparent;
}
#hero-section .hero-content .sub-copy {
  display: block;
  /* 🚀 修正：余白も画面幅に合わせて可変（理想は30px） */
  margin-top: clamp(20px, 2.5vw, 30px);
  /* 🚀 修正：最小16px〜最大22px */
  font-size: clamp(16px, 1.8vw, 22px);
  color: #000;
  min-height: 1.5em;
}
@media screen and (max-width: 767px) {
  #hero-section .hero-content .sub-copy {
    font-size: 18px !important;
    margin-top: 20px;
    padding: 0 20px;
  }
}
#hero-section .hero-content .sub-copy .highlight {
  color: #E54127 !important;
}
#hero-section .hero-scroll-wrapper {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
}
#hero-section .hero-scroll-wrapper .scroll-text {
  color: #009FE8 !important;
  /* 🚀 修正：最小12px〜最大14px（小さくなりすぎないよう調整） */
  font-size: clamp(12px, 1vw, 14px) !important;
}
@media screen and (max-width: 767px) {
  #hero-section .hero-scroll-wrapper .scroll-text {
    font-size: 18px !important;
  }
}
#hero-section .hero-scroll-wrapper .scroll-line {
  width: 1px;
  height: 60px;
  background-color: #009FE8 !important;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #hero-section .hero-scroll-wrapper .scroll-line {
    height: 40px;
  }
}
#hero-section .hero-scroll-wrapper .scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff !important;
  transform: translateY(-100%);
  animation: scroll-line-anim 2.5s infinite;
}

/* --- アニメーション定義 (JSの指定通り) --- */
@keyframes bar-action {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes tn-reveal-text {
  to {
    color: #E54127;
    /* ベースのMOTIVATIONをオレンジに */
  }
}
@keyframes scroll-line-anim {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/* DEFINES USを黒に固定 */
h1.reveal-banner.is-active .highlight {
  animation: tn-reveal-highlight 0s forwards 0.7s;
}

@keyframes tn-reveal-highlight {
  to {
    color: #000 !important;
  }
}
@keyframes scroll-line-anim {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/* --- ABOUT SECTION (完全版：ボタン復元・可変対応) --- */
#about-teaser {
  position: relative;
  z-index: 10;
  margin-top: 15vh;
  background: transparent !important;
  padding: 0 0 clamp(100px, 12vh, 150px) 0;
}
@media screen and (max-width: 767px) {
  #about-teaser {
    margin-top: 60px;
  }
}
#about-teaser .about-content-wrapper {
  display: flex;
  gap: 5vw;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper {
    display: block;
    position: relative;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
#about-teaser .about-content-wrapper .about-title-vertical {
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Hoefler Text", serif;
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 400;
  color: #000 !important;
  line-height: 1;
  margin-right: 2vw;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-title-vertical {
    display: block;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 42px !important;
    margin: 0;
    position: relative;
    top: 70px;
    z-index: 3;
  }
}
#about-teaser .about-content-wrapper .about-right-block {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block {
    display: block;
    position: static;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-text-block {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-text-block {
    width: 100%;
    position: relative;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-text-block h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  margin-bottom: 25px;
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-text-block h3 {
    font-size: 16px !important;
    margin: 160px 0 15px 0;
    position: relative;
    z-index: 2;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-text-block p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 400;
  line-height: 2;
  margin-bottom: 20px;
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-text-block p {
    font-size: 13px !important;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-text-block {
  /* 🚀 ボタンエリアの復元 */
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-text-block .about-link-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-text-block .about-link-button .blue-button {
  display: flex;
  align-items: center;
  width: 240px;
  height: 50px;
  padding-left: 30px;
  background: url("../img/photo/blue_button.svg") no-repeat left center/contain;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
#about-teaser .about-content-wrapper .about-right-block .about-image {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-image {
    position: absolute;
    top: 0;
    left: 125px;
    width: 219px !important;
    height: 194px !important;
    z-index: 1;
    pointer-events: none;
  }
}
#about-teaser .about-content-wrapper .about-right-block .about-image img {
  width: 100%;
  border-radius: 5px;
}

/* --- 5. SERVICE SECTION (スペース極小・フル可変版) --- */
#service-teaser {
  position: relative;
  background-color: transparent;
  padding: 100px 0;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #service-teaser {
    padding: 60px 0;
  }
}
#service-teaser .service-content-wrapper {
  position: relative;
  z-index: 2;
}
#service-teaser .service-content-wrapper .service-top-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  /* 🚀 修正：表題と下のリストの距離をほぼ0（最小0 〜 最大15px）に */
  margin-bottom: clamp(0px, 2vh, 15px);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-image-container {
  position: relative;
  flex: 0 0 22vw;
  max-width: 304px;
  min-width: 200px;
  aspect-ratio: 304/267;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-image-container {
    display: none;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-image-container img:not([alt=fluff]) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  margin-left: -120px;
  text-align: right;
  min-width: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group {
    width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper {
  position: relative;
  display: inline-block;
  /* 🚀 修正：タイトルとすぐ下の文章の距離を0に */
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper {
    display: block;
    width: 100%;
    text-align: center;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper .service-fluff-img {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 304px;
  height: 267px;
  top: 50%;
  right: 100%;
  margin-right: 20px;
  transform: translateY(-50%) translateY(-30px);
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper .service-fluff-img {
    width: 70px;
    height: auto;
    top: 50%;
    left: 50%;
    right: auto;
    margin-left: -150px;
    transform: translate(-50%, -50%) rotate(-15deg);
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper .service-title-horizontal {
  font-family: "Hoefler Text", serif;
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 400;
  color: #000;
  line-height: 1;
  /* 🚀 行間も詰めてさらに密着 */
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper .service-title-horizontal {
    font-size: 42px;
    line-height: 1;
    display: inline-block;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  line-height: 2;
  color: #000;
  /* 🚀 修正：タイトルのすぐ下にくっつける */
  margin-top: 0;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group p {
    font-size: 13px;
    text-align: left;
    margin-top: 10px;
    /* スマホのみ視認性のために少し空ける */
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout {
  width: 100%;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list {
  /* 🚀 修正：リスト自体の上の余白を消去 */
  margin-top: 0;
  margin-bottom: clamp(40px, 6vh, 60px);
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item {
  display: flex;
  flex-direction: column;
  position: relative;
  /* 🚀 最初のアイテムの余白を強制ゼロに */
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item:first-child {
  margin-top: 0;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item {
  margin-bottom: clamp(30px, 4vh, 45px);
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item {
    padding-left: 20px;
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 40px;
  width: 3px;
  background-color: #E54127;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item .en-title {
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 12px;
  color: #E54127;
  margin-bottom: 5px;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item .jp-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item .service-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 400;
  line-height: 2;
  color: #000;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-bottom-layout .service-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .blue-button,
#service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .red-button-svg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 240px;
  height: 50px;
  color: #ffffff;
  padding-left: 35px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .blue-button,
  #service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .red-button-svg {
    width: 280px;
    height: 58px;
    padding-left: 40px;
    font-size: 13px;
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .blue-button {
  background-image: url("../img/photo/blue_button.svg");
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-buttons .red-button-svg {
  background-image: url("../img/photo/red_button.svg");
}

#news-section {
  position: relative;
  /* 🚀 修正：ベタ塗りをやめて、背景動画が透けるように半透明（0.4）に設定 */
  background-color: rgba(240, 240, 240, 0.4);
  padding: clamp(60px, 8vh, 100px) 0;
}
@media screen and (max-width: 767px) {
  #news-section {
    padding: 60px 0;
    overflow: hidden;
  }
}
#news-section .news-content-wrapper .news-header {
  margin-bottom: clamp(30px, 5vh, 60px);
}
#news-section .news-content-wrapper .news-header .news-title-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-header .news-title-area {
    flex-direction: column;
    padding-top: 150px;
    position: relative;
  }
}
#news-section .news-content-wrapper .news-header .news-title-area .news-title-text {
  font-family: "Hoefler Text", serif;
  font-size: clamp(60px, 8vw, 100px);
  color: #000;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-header .news-title-area .news-title-text {
    font-size: 42px !important;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-header .news-title-area .title-right-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 151px;
    height: 141px;
  }
}
#news-section .news-content-wrapper .news-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container {
    display: block;
  }
}
#news-section .news-content-wrapper .news-container .nav-btn {
  border: none;
  background: none;
  flex: 0 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container .nav-btn {
    display: none;
  }
}
#news-section .news-content-wrapper .news-container .news-swiper {
  flex: 1;
  margin: 0 4vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container .news-swiper {
    margin: 0;
    overflow: visible;
    padding: 0 60px 0 20px;
  }
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card {
  /* 🚀 カード自体も少し透かしたい場合は、ここを rgba にします。
     今は不透明な白（#fff）になっています。 */
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-image {
  width: 100%;
  aspect-ratio: 16/9;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner {
  padding: 20px 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-date {
  font-size: 11px;
  font-weight: 300;
  color: #888;
  margin-bottom: 0;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 12px;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.1vw, 12px);
  line-height: 1.5;
  color: #555;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-readmore {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #E54127;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#news-section .news-content-wrapper .news-more-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 5vh, 50px);
}
#news-section .news-content-wrapper .news-more-action .blue-button {
  display: flex;
  align-items: center;
  padding-left: 30px;
  width: 240px;
  height: 50px;
  background: url("../img/photo/blue_button.svg") no-repeat left center/contain;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-more-action .blue-button {
    width: 100%;
    max-width: 280px;
  }
}

/* --- 6. RECRUIT SECTION (PC維持・SP綿毛サイズ＆位置指定版) --- */
#recruit-cta {
  background-color: rgba(229, 65, 39, 0.8) !important;
  padding: clamp(80px, 10vh, 120px) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recruit-cta {
    padding: 60px 0;
    overflow: hidden;
  }
}
#recruit-cta .recruit-cta-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner {
    padding: 0 20px;
    align-items: flex-start;
    text-align: left;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns {
  display: flex !important;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 40px;
    position: relative;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left {
  flex: 0 0 auto;
  margin-right: clamp(30px, 5vw, 60px);
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left .recruit-bg-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Hoefler Text", serif;
  font-size: 100px !important;
  letter-spacing: 10px;
  line-height: 1.2;
  color: #ffffff !important;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left .recruit-bg-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 42px !important;
    letter-spacing: 2px;
    display: block;
    position: relative;
    z-index: 5;
  }
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left::before {
    content: "採用情報";
    display: block;
    font-family: "Source Han Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center {
  flex: 1;
  margin-right: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center {
    margin-right: 0;
    width: 100%;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sub-label {
  display: block;
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 18px !important;
  margin-bottom: 30px;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sub-label {
    display: none;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .main-copy {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 22px !important;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .main-copy {
    font-size: 18px !important;
    margin-bottom: 20px;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .cta-description {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 13px !important;
  line-height: 2.2;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .cta-description {
    text-align: left;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images {
    display: flex !important;
    justify-content: flex-start;
    gap: 8px;
    margin: 30px 0;
    width: 100%;
  }
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images img {
    width: calc(33.3% - 6px);
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right {
  flex: 0 0 320px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right {
    width: 100%;
    flex: 0 0 auto;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-image-top img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  left: -40px;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-image-top img {
    position: absolute;
    /* 🚀 指定サイズ */
    width: 185px !important;
    height: 168px !important;
    -o-object-fit: contain;
       object-fit: contain;
    left: auto;
    /* 🚀 指定配置 */
    right: 20px;
    top: -825px;
    z-index: 1;
    margin-bottom: 0;
    transform: rotate(5deg);
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid .slogan-item {
  margin-bottom: 30px;
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid .slogan-item:last-child {
  margin-bottom: 0;
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid .slogan-item .slogan-text {
  font-family: "Hoefler Text", serif;
  font-size: 40px !important;
  color: #ffffff !important;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid .slogan-item .slogan-text {
    font-size: 32px !important;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-slogan-grid .slogan-item .slogan-label {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 16px !important;
  color: #ffffff !important;
}
#recruit-cta .recruit-cta-inner .cta-button-area {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-button-area {
    margin-top: 30px;
  }
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 75px;
  padding: 0 40px;
  border: 3px solid #ffffff !important;
  color: #ffffff !important;
  text-decoration: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button {
    height: 65px;
    padding: 0 20px;
    border-width: 2px !important;
  }
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button .button-text {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 22px !important;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button .button-text {
    font-size: 18px !important;
  }
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button:hover {
  background-color: #ffffff !important;
  color: #E54127 !important;
}

/* ======================================================
   7. COMPANY & CONTACT SECTION (数値のみ可変対応版)
   ====================================================== */
#company-contact-section {
  background-color: rgba(255, 255, 255, 0.4);
  /* 🚀 修正：上下パディングを画面高に合わせて可変に */
  padding: clamp(4rem, 8vh, 8rem) 0;
}
#company-contact-section div.block-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* 🚀 修正：隙間を画面幅に合わせて可変に（3.5rem 基準） */
  gap: clamp(2rem, 4vw, 3.5rem);
  /* 🚀 修正：ブロック間の距離を可変に（8rem 基準） */
  margin-bottom: clamp(4rem, 10vh, 8rem);
  padding: 0 5% !important;
  overflow: visible;
}
#company-contact-section div.block-item:nth-child(1) {
  flex-direction: row;
}
#company-contact-section div.block-item:nth-child(2) {
  flex-direction: row-reverse;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  height: auto;
}
@media screen and (max-width: 767px) {
  #company-contact-section div.block-item {
    flex-direction: column !important;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem !important;
    margin-bottom: 60px;
  }
}
#company-contact-section div.block-item .image-side {
  /* 🚀 修正：幅を可変にしつつ最大値を維持 */
  width: 40vw;
  max-width: 450px;
  flex-shrink: 0;
  z-index: 1;
}
#company-contact-section div.block-item .image-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
}
#company-contact-section div.block-item .text-side {
  /* 🚀 修正：幅を可変にしつつ最大値を維持 */
  width: 40vw;
  max-width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #company-contact-section div.block-item .text-side {
    width: 100% !important;
    display: block;
  }
}
#company-contact-section div.block-item .text-side .en-title {
  font-family: "Hoefler Text", serif;
  /* 🚀 修正：3.75rem（60px）を可変に */
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
#company-contact-section div.block-item .text-side .jp-sub-1 {
  font-family: "Source Han Sans JP", sans-serif;
  /* 🚀 修正：1.125rem（18px）を可変に */
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  #company-contact-section div.block-item .text-side .jp-sub-1 {
    font-size: 16px !important;
  }
}
#company-contact-section div.block-item .text-side .jp-sub-2 {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  display: block;
}
#company-contact-section div.block-item .text-side .jp-sub-2:empty {
  display: none;
}
#company-contact-section div.block-item .text-side p {
  font-family: "Source Han Sans JP", sans-serif;
  /* 🚀 修正：0.8125rem（13px）を維持しつつ可変に */
  font-size: clamp(12px, 1vw, 13px);
  line-height: 2.1;
  color: #333;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #company-contact-section div.block-item .text-side p {
    font-size: 13px !important;
  }
}
#company-contact-section div.block-item .text-side .blue-button {
  /* 🚀 修正：ボタンサイズは歪ませないよう固定気味に維持 */
  width: 15rem;
  height: 3.125rem;
  background: url("../img/photo/blue_button.svg") no-repeat left center/contain;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  font-weight: bold;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 1.5rem;
}

/* ======================================================

   3. FULL MENU (背景スライド・文字デザイン・×ボタン遅延・完全版)

   ====================================================== */
#full-menu {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1C1F24;
  z-index: 100000200;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
#full-menu.is-open {
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  #full-menu .close-button {
    top: 25px !important;
    right: 20px !important;
    left: auto !important;
  }
  #full-menu .menu-list li {
    margin-bottom: 30px;
  }
  #full-menu .menu-list li .en {
    font-size: 30px;
  }
  #full-menu .menu-list li .jp {
    font-size: 11px;
  }
}
#full-menu .close-button {
  position: absolute;
  top: 250px;
  left: 20px;
  width: 18px;
  height: 20px;
  cursor: pointer;
  z-index: 100000005;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#full-menu .close-button span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
}
#full-menu .close-button span:nth-child(1) {
  transform: rotate(45deg);
}
#full-menu .close-button span:nth-child(2) {
  transform: rotate(-45deg);
}
#full-menu .menu-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#full-menu .menu-inner .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
#full-menu .menu-inner .menu-list li {
  margin-bottom: 45px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#full-menu .menu-inner .menu-list li a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#full-menu .menu-inner .menu-list li a .en {
  font-family: "Hoefler Text", "Hoefler", serif;
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#full-menu .menu-inner .menu-list li a .jp {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}
#full-menu .menu-inner .menu-list li a:hover .en {
  opacity: 0.7;
}
#full-menu.is-open {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#full-menu.is-open .close-button {
  opacity: 1;
  transition: opacity 0.6s ease 1s;
}
#full-menu.is-open .menu-list li {
  opacity: 1;
  transform: translateY(0);
}
#full-menu.is-open .menu-list li:nth-child(1) {
  transition-delay: 0.48s;
}
#full-menu.is-open .menu-list li:nth-child(2) {
  transition-delay: 0.56s;
}
#full-menu.is-open .menu-list li:nth-child(3) {
  transition-delay: 0.64s;
}
#full-menu.is-open .menu-list li:nth-child(4) {
  transition-delay: 0.72s;
}
#full-menu.is-open .menu-list li:nth-child(5) {
  transition-delay: 0.8s;
}
#full-menu.is-open .menu-list li:nth-child(6) {
  transition-delay: 0.88s;
}

html {
  scroll-behavior: smooth;
}

/* --- 追加：ハンバーガーボタンの変形 --- */
#nav-toggle-btn.is-active span {
  display: block;
  position: absolute;
  height: 1.5px;
  background-color: #000;
  top: 0;
  width: 1.5px;
  height: 20px;
}
#nav-toggle-btn.is-active span:nth-child(1) {
  left: 5px;
}
#nav-toggle-btn.is-active span:nth-child(2) {
  left: 12px;
}/*# sourceMappingURL=style.css.map */