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

   0. 変数定義

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

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

   ====================================================== */
.fixed-cta-button {
  /* --- 1. プロパティを先に書く（Warning対策） --- */
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 50;
  width: 140px;
  display: block;
  text-decoration: none;
  /* --- 2. ネストされた要素 --- */
  /* --- 3. @include などのルールは一番最後に書く --- */
}
.fixed-cta-button .sp-cta-content {
  display: none;
}
.fixed-cta-button .pc-cta-img {
  width: 100%;
  height: auto;
  display: block;
}
@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;
  }
  .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;
    /* 🚀 位置：右端から20px、上下中央 */
    right: 20px;
    top: 50%;
    /* 🚀 回転はさせず、上下中央寄せの補正のみ行います */
    transform: translateY(-50%);
    /* 🚀 画像の歪みを防ぎ、不透明度を100%に */
    -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;
  /* Page Top (SP非表示) */
  /* --- 左側・スマホメインメニュー --- */
  /* --- 右側・PCボタンエリア --- */
}
@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 {
  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 文字 */
  /* 2. 棒（境界線を中心に固定） */
}
#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 .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 .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 .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%);
  }
}
/* =============================================
   header.scss (完全版・サブページもロゴ位置統一)
   ============================================= */
#vertical-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000100;
  width: 100%;
  height: 0;
  /* ---------------------------------------------
     1. PC専用設定
  --------------------------------------------- */
  /* ---------------------------------------------
     2. SP専用設定 (メインの向き・位置にサブを合わせる)
  --------------------------------------------- */
}
#vertical-header .header-pc-only {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 13.5%;
  height: 100vh;
  background-color: #C2E9F5;
  padding: 40px 0 40px 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #vertical-header .header-pc-only {
    display: none !important;
  }
}
#vertical-header .header-pc-only .logo-area {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
#vertical-header .header-pc-only .logo-area .url-text {
  display: block;
  font-size: 18px;
  color: #000;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  margin-right: 15px;
  line-height: 1;
}
#vertical-header .header-pc-only .logo-area #header-logo-link img {
  width: auto;
  height: auto;
  display: block;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc {
  cursor: pointer;
  margin-bottom: 60px;
  width: 12px;
  height: 20px;
  position: relative;
}
#vertical-header .header-pc-only #nav-toggle-btn-pc span {
  display: block;
  position: absolute;
  top: 0;
  width: 1.5px;
  height: 100%;
  background-color: #000;
  transition: 0.3s;
}
#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;
  font-size: 18px;
  color: #000;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  line-height: 1;
}
#vertical-header .header-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  #vertical-header .header-sp-only {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    z-index: 100000100;
    writing-mode: horizontal-tb !important;
    /* --- ロゴの共通設定 (位置と向きをメインに合わせる) --- */
    /* A. トップページ (.page-top) の設定 */
    /* B. 下層ページ (.page-lower) の設定 */
  }
  #vertical-header .header-sp-only .sp-logo-link {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 10 !important;
    display: block !important;
    pointer-events: auto;
  }
  #vertical-header .header-sp-only .sp-logo-link .sp-logo-img {
    display: block !important;
    width: auto !important;
    height: 120px !important;
    transform-origin: top left !important;
    /* 🚀 元の縦画像をメインと同じく-90度回転させて横向きにする */
    transform: rotate(-90deg) translateX(-100%) !important;
  }
  .page-top #vertical-header .header-sp-only {
    height: 37.5vw !important;
    pointer-events: none;
  }
  .page-top #vertical-header .header-sp-only .sp-triangle-bg {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 75% !important;
    height: 100% !important;
    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 !important;
    top: 20px !important;
    left: 80% !important;
    right: auto !important;
    transform: none !important;
  }
  .page-lower #vertical-header .header-sp-only {
    height: 60px !important;
    background-color: #E96750 !important;
    pointer-events: auto;
    /* ロゴの位置は共通設定(top:15px, left:15px)のまま、高さを調整 */
  }
  .page-lower #vertical-header .header-sp-only .sp-triangle-bg {
    display: none !important;
  }
  .page-lower #vertical-header .header-sp-only .sp-logo-link .sp-logo-img {
    height: 90px !important;
  }
  .page-lower #vertical-header .header-sp-only #nav-toggle-btn-sp {
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }
}

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

/* メニューの表示・非表示 */
#full-menu {
  display: none;
}
#full-menu.is-open {
  display: block !important;
}

.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 {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #000;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .p-news-detail__content {
    font-size: 15px;
  }
}
.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;
}

.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");
}

/* PC配置 */
.shape-pc-1 {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 10%;
}

.shape-pc-2 {
  width: 406px;
  height: 406px;
  right: -100px;
  bottom: -50px;
}

.shape-pc-3 {
  width: 286px;
  height: 286px;
  right: -143px;
  top: 20%;
}

.shape-pc-4 {
  width: 496px;
  height: 496px;
  right: -150px;
  top: -100px;
}

/* SP配置：右端に半分被るように固定 */
@media screen and (max-width: 767px) {
  .shape-sp-1 {
    width: 314px;
    height: 314px;
    right: -157px;
    left: auto;
    top: 40px;
  }
  .shape-sp-2 {
    width: 205px;
    height: 205px;
    right: -50px;
    left: auto;
    bottom: -50px;
  }
  .shape-sp-3 {
    width: 241px;
    height: 241px;
    right: -60px;
    left: auto;
    bottom: -80px;
  }
  .shape-sp-4 {
    width: 314px;
    height: 314px;
    right: -157px;
    left: auto;
    top: -78.5px;
  }
}
/* --- スライダー --- */
.p-about-slider {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  pointer-events: none;
  background-color: #fff;
}
.p-about-slider.u-pc-only {
  aspect-ratio: 1920/716;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-about-slider.u-sp-only {
    height: 500px;
    margin-bottom: 0;
  }
}
.p-about-slider picture {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-about-slider picture {
    width: auto;
  }
}
.p-about-slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: loop-slider 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-about-slider__img {
    width: auto;
    min-width: 100vw;
    height: 100%;
  }
}

@keyframes loop-slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* --- コンテンツエリア --- */
.p-page-header {
  margin: 0;
}

.p-about-content {
  background-color: #fff;
  padding: 0 0 100px 0;
  font-family: "Source Han Sans JP", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@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: calc(50% - 50vw);
}

.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;
  }
}

/* 誘導ボタン：PC間隔15px、SP幅80%左寄せ(右10%削り) */
.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-weight: 400;
  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-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);
  }
}
/* --- 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;
  font-size: 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;
  margin-top: 30px;
  font-size: 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;
  font-size: 12px !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: 20vh;
  background: transparent !important;
}
@media screen and (max-width: 767px) {
  #about-teaser {
    margin-top: 60px;
  }
}
#about-teaser .about-content-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  /* 1. ABOUT: 42px / 画像の垂直中心付近へ配置 */
}
@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: 100px;
  font-weight: 400;
  color: #000 !important;
  line-height: 1;
  margin-right: 20px;
}
@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;
    color: #000 !important;
    line-height: 1;
    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;
  /* 5. 画像: 219px x 194px / 気持ち右にずらしてTに重ねる */
}
@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%;
  /* 2. 私たちについて: 16px */
  /* 3. 本文: 13px */
  /* 4. ボタン: 中央揃え */
}
@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: 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;
    color: #000 !important;
    /* 🚀 ABOUTと画像が上にいるので、物理的な余白で押し下げる */
    /* (ABOUTのtop分 + 画像の高さ分を考慮) */
    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: 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;
    color: #000 !important;
    line-height: 2;
  }
}
@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: 48%;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-image {
    position: absolute;
    top: 0;
    /* 🚀 気持ち右にずらし (110px -> 125px) */
    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;
}
@media screen and (max-width: 767px) {
  #about-teaser .about-content-wrapper .about-right-block .about-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* --- 5. SERVICE SECTION (完全版・SP中央揃え徹底修正) --- */
#service-teaser {
  position: relative;
  background-color: transparent !important;
  padding: 100px 0;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #service-teaser {
    padding: 60px 0 !important;
  }
}
#service-teaser .service-content-wrapper {
  position: relative;
  z-index: 2;
  /* 以下、service-bottom-layoutなどは変更なし */
}
#service-teaser .service-content-wrapper .service-top-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 40px;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-image-container {
  position: relative;
  flex: 0 0 304px;
  width: 304px;
  height: 267px;
}
@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;
  text-align: right;
  /* 🚀 画像とタイトルをセットにする枠 */
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper {
  position: relative;
  display: inline-block;
  /* 🚀 綿毛画像（fluff） */
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    position: relative;
  }
}
#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 !important;
  -o-object-fit: contain;
     object-fit: contain;
  /* PC版：文字の左側に配置 */
  width: 304px !important;
  height: 267px !important;
  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 {
    /* SP版：絶対配置に戻して、文字の左側に固定 */
    position: absolute !important;
    width: 70px !important;
    height: auto !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    /* 🚀 SERVICEの文字の幅（約180px程度）の半分より、
       さらに左へずらすことで文字の横に配置します */
    margin-left: -150px !important;
    margin-right: 0 !important;
    transform: translate(-50%, -50%) rotate(-15deg) !important;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group .service-title-wrapper .service-title-horizontal {
  font-family: "Hoefler Text", serif;
  font-size: 100px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin: 0;
}
@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 !important;
    line-height: 1;
    display: inline-block !important;
    text-align: center !important;
  }
}
#service-teaser .service-content-wrapper .service-top-layout .service-text-group p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #000;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-top-layout .service-text-group p {
    font-size: 13px !important;
    text-align: left;
    margin-top: 20px;
    width: 100%;
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout {
  width: 100%;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list {
  margin-bottom: 60px;
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 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 !important;
  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: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #000;
}
@media screen and (max-width: 767px) {
  #service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item .jp-title {
    font-size: 20px !important;
  }
}
#service-teaser .service-content-wrapper .service-bottom-layout .service-list .service-item .service-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 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;
  }
}
#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;
  width: 240px;
  height: 50px;
  color: #ffffff !important;
  padding-left: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  text-decoration: none;
  font-size: 12px;
}
@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: 100%;
    max-width: 280px;
  }
}
#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 --- */
#news-section {
  position: relative;
  background-color: #f9f9f9 !important;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #news-section {
    padding: 60px 0 !important;
    overflow: hidden;
  }
}
#news-section .news-content-wrapper .news-header {
  margin-bottom: 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: 100px;
}
@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 !important;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 151px !important;
    height: 141px !important;
  }
}
#news-section .news-content-wrapper .news-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container {
    padding: 0;
  }
}
#news-section .news-content-wrapper .news-container .nav-btn {
  border: none !important;
  background: none !important;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container .nav-btn {
    display: none !important;
  }
}
#news-section .news-content-wrapper .news-container .news-swiper {
  flex: 1;
  margin: 0 50px;
  position: relative;
  /* 🚀 【重要】ここを修正：display: flex を消して Swiper に任せる */
  /* --- NEWS SECTION 修正 --- */
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container .news-swiper {
    margin: 0;
    overflow: visible !important;
    padding: 0 60px 0 25px !important;
  }
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-container .news-swiper .swiper-wrapper {
    display: flex !important;
  }
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card {
  background: #fff;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-date {
  font-size: 11px;
  font-weight: 300;
  color: #888;
  margin: 0;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-category {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#news-section .news-content-wrapper .news-container .news-swiper .news-card .card-inner .card-text {
  font-size: 12px !important;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#news-section .news-content-wrapper .news-more-action {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #news-section .news-content-wrapper .news-more-action {
    margin-top: 40px;
  }
}
#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: #ffffff !important;
  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 (完全版：並び替え・画像位置・省略なし) --- */
#recruit-cta {
  background-color: rgba(229, 65, 39, 0.8) !important;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recruit-cta {
    padding: 60px 0;
    overflow: hidden;
  }
}
#recruit-cta .recruit-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 下部ボタンエリア */
}
#recruit-cta .recruit-cta-inner .cta-three-columns {
  display: flex !important;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  /* RECRUITロゴブロック */
  /* テキスト中央ブロック */
  /* MVV右側ブロック */
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left {
  width: 100px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-recruit-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    order: 2;
  }
}
#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;
  font-weight: 400 !important;
  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;
    text-align: left;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center {
  flex: 1;
  margin-right: 40px;
  /* 1. 採用情報ラベル */
  /* 3. やる気で未来を変える */
  /* 4. 本文テキスト */
  /* SVG画像3つの並び */
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center {
    display: contents;
  }
}
#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;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sub-label {
    order: 1;
    font-size: 16px !important;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
  }
}
#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;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .main-copy {
    order: 3;
    font-size: 16px !important;
    margin-top: 15px;
    text-align: left;
    width: 100%;
  }
}
#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;
  font-weight: 400;
  line-height: 2;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .cta-description {
    order: 4;
    font-size: 13px !important;
    text-align: left;
    width: 100%;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images {
  display: none;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    width: 100%;
    order: 5;
  }
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-text-center .sp-recruit-images img {
    width: 30%;
    max-width: 100px;
    height: auto;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right {
  width: 280px;
  text-align: left;
  /* fluff.png の調整 */
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right {
    width: 100%;
    order: 6;
    margin-top: 40px;
    text-align: center;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-image-top img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .cta-image-top img {
    position: absolute;
    top: 25px;
    right: -20px;
    width: 185px !important;
    height: 168px !important;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 5;
    pointer-events: none;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .slogan-item {
  margin-bottom: 10px;
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .slogan-item .slogan-text {
  font-family: "Hoefler Text", serif;
  font-size: 40px !important;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .slogan-item .slogan-text {
    font-size: 40px !important;
    text-align: center;
  }
}
#recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .slogan-item .slogan-label {
  font-family: "Source Han Sans JP", sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-three-columns .column-mvv-right .slogan-item .slogan-label {
    font-size: 16px !important;
    text-align: center;
    display: block;
  }
}
#recruit-cta .recruit-cta-inner .cta-button-area {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #recruit-cta .recruit-cta-inner .cta-button-area {
    order: 7;
  }
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  border: 3px solid #ffffff !important;
  color: #ffffff !important;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* ボタンのホバー・タップ時の色変化 */
}
#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;
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button .button-icon {
  width: 28px;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button:hover, #recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button:active {
  background-color: #ffffff !important;
  color: #E54127 !important;
}
#recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button:hover .button-icon, #recruit-cta .recruit-cta-inner .cta-button-area .cta-long-button:active .button-icon {
  filter: invert(36%) sepia(81%) saturate(3000%) hue-rotate(345deg) brightness(100%) contrast(105%);
}

/* --- 7. COMPANY & CONTACT SECTION (SP順序完全修正版) --- */
#company-contact-section {
  background-color: rgba(255, 255, 255, 0.7) !important;
  padding: 100px 0;
}
#company-contact-section .block-item {
  display: flex;
  margin-bottom: 100px;
  align-items: flex-end;
  gap: 80px;
  /* PC版：左右交互 */
  /* 🚀 画像の順番指定 */
  /* 🚀 テキスト側の順番指定 */
}
#company-contact-section .block-item:nth-child(1) {
  flex-direction: row;
}
#company-contact-section .block-item:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item {
    /* SP版：すべての要素（画像もテキストも）を1列に並べてorderを効かせる */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0;
    margin-bottom: 80px;
  }
  #company-contact-section .block-item:nth-child(2) {
    flex-direction: column !important;
  }
}
#company-contact-section .block-item .image-side {
  width: 40%;
  max-width: 450px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .image-side {
    width: 100%;
    max-width: 320px;
    order: 3;
    margin: 20px 0;
  }
}
#company-contact-section .block-item .image-side img {
  width: 100%;
  height: auto;
  display: block;
}
#company-contact-section .block-item .text-side {
  width: 55%;
  flex-grow: 1;
  /* 1. COMPANY (42px) */
  /* 2. 会社概要 (14px) */
  /* 4. ビジョン (16px) */
  /* 5. 本文 (13px) */
  /* 6. ボタン */
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side {
    display: contents;
  }
}
#company-contact-section .block-item .text-side .en-title {
  font-family: "Times New Roman", "YuMincho", "serif" !important;
  font-size: 70px;
  font-weight: 400 !important;
  color: #000000 !important;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side .en-title {
    order: 1;
    font-size: 42px !important;
    text-align: center;
    width: 100%;
  }
}
#company-contact-section .block-item .text-side .jp-sub-1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  display: block;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side .jp-sub-1 {
    order: 2;
    font-size: 14px !important;
    text-align: center;
    width: 100%;
  }
}
#company-contact-section .block-item .text-side .jp-sub-2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  display: block;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side .jp-sub-2 {
    order: 4;
    font-size: 16px !important;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
}
#company-contact-section .block-item .text-side p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side p {
    order: 5;
    font-size: 13px !important;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 15px;
  }
}
#company-contact-section .block-item .text-side .blue-button {
  display: flex;
  width: 220px;
  height: 50px;
  background: url("../img/photo/blue_button.svg") no-repeat left center/contain;
  color: #fff;
  text-decoration: none;
  align-items: center;
  padding-left: 35px;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #company-contact-section .block-item .text-side .blue-button {
    order: 6;
    margin: 20px auto 0;
  }
}

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

   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 */