@charset "UTF-8";

/* =========================================================================
   Variables & Reset
   ========================================================================= */
:root {
  --color-primary: #B41627;
  /* ダークレッド */
  --color-secondary: #e63946;
  /* レッド */
  --color-accent: #c42b3a;
  --color-text: #2c2c2c;
  --color-bg-light: #f5f5f5;
  --color-white: #ffffff;
  --color-black: #111111;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  background-color: #F7F7F7;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  /* メニュー展開時の背景スクロール防止 */
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

/* PC表示 */
.pc{
  display:block;
}

.sp{
  display:none;
}

.pc-slide{
  display:block;
}

.sp-slide{
  display:none;
}


@media (max-width:768px){

  .pc-slide{
    display:none;
  }

  .sp-slide{
    display:block;
  }

}

@media (max-width:560px){

  .pc{
    display:none;
  }

  .sp{
    display:block;
  }

}

.fl {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
}

.fl-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-ju-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.fl-bt {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-sa {
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

.fl-wr {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.fl-ju-st {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.fl-st {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.fl-c {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.fl-ju-c {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

/* =========================================================================
   Utility Classes & Layout
   ========================================================================= */
.inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1400px) {
  .inner {
    margin: 0 4%;
  }
}

.section {
  padding: 150px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.bg-light {
  background-color: var(--color-bg-light);
}

.bg01 {
  background-image: url(img/bg01.png);
  background-position: bottom -10em right;
  background-repeat: no-repeat;
  background-position: bottom -35em right -13em;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white);
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

.flex-container>* {
  width: 55.5%;
}

@media (max-width: 768px) {
  .bg01 {
    background-size: cover;
    background-position: top;
  }
  
  .flex-container {
    flex-direction: column;
  }

  .flex-container>* {
    width: 100%;
    margin-bottom: 30px;
  }
}

.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .reverse {
    flex-direction: column;
  }
}


/* Typography */
.title-primary {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.title-secondary {
  font-family: var(--font-mincho);
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 4.2rem;
}

.sub-title {
  display: block;
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-size: 24px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  margin-top: 2rem;
  font-size: 18px;
  text-decoration: underline;
}

.arrow-circle,
.arrow-circle-white {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-black);
  position: relative;
  margin-left: 10px;
}

.arrow-circle::after,
.arrow-circle-white::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.arrow-circle-white {
  background-color: var(--color-white);
}

.arrow-circle-white::after {
  border-color: var(--color-black);
}

@media (max-width: 1200px) {
  .title-secondary {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .title-secondary {
    font-size: 1.8rem;
  }

  .btn-more {
    font-size: 1.0rem;
  }

  .arrow-circle,
  .arrow-circle-white {
    width: 20px;
    height: 20px;
  }

  .arrow-circle::after,
  .arrow-circle-white::after {
    width: 4px;
    height: 4px;
  }
}

/* =========================================================================
   Fixed Action Buttons
   ========================================================================= */
.fixed-action-buttons {
  position: fixed;
  right: 0;
  top: 32.5vw;
  /* 上からの位置調整 */
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 140px;
  /* 固定幅を持たせる */
}

.btn-fixed {
  padding: 25px 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* 画像に沿った赤ベースのグラデーション・階調 */
.btn-fixed.entry {
  background-color: #eb666b;
}

.btn-fixed.rikunabi {
  background-color: #da3747;
}

.btn-fixed.line {
  background-color: #B41627;
}

.btn-fixed .arrow {
  display: inline-block;
  margin-top: 15px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  /* 下向き矢印 */
}

/* SP用固定ボタン (PCでは非表示、SPでのみ画面下部に表示) */
.fixed-action-buttons-sp {
  display: none;
}

@media (max-width: 768px) {
  .fixed-action-buttons {
    display: none;
    /* SPではPC用サイド固定ボタン非表示 */
  }

  /* SP用画面下部固定ボタンの実装 */
  .fixed-action-buttons-sp {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    /* モバイルナビより下にするかなど調整可能 */
  }

  .fixed-action-buttons-sp .btn-fixed {
    flex: 1;
    padding: 15px 5px;
    font-size: 13px;
    /* 少し小さめに */
    flex-direction: column;
    justify-content: center;
  }

  .fixed-action-buttons-sp .btn-fixed .arrow {
    margin-top: 5px;
    /* 余白調整 */
    width: 8px;
    height: 8px;
  }

  /* SP時のフッター下部に余白を追加して、固定ボタンと被らないようにする */
  body {
    padding-bottom: 60px;
    /* 固定ボタンの高さ分くらいの余白を確保 */
  }
}

/* =========================================================================
   Header
   ========================================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 2%;
  transition: background-color 0.3s, padding 0.3s;
  background-color: #F7F7F7;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 4%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-right: 1px solid #B8B8B8;
  padding-right: 25px;
  margin-right: 20px;
}

.logo span {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.gnav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
}

.btn-contact {
  padding: 5px 20px;
  color: #fff;
}

.btn-contact.btn-white {
  padding: 5px 20px;
  color: #222;
}

.btn-dark {
  background-color: var(--color-black);
}

.btn-red {
  background-color: var(--color-primary);
}

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

.icon-social img {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュー オープン時のアイコン変化 */
.hamburger.is-open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* =========================================================================
   Mobile Navigation
   ========================================================================= */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.95);
  /* 半透明の黒 */
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.mobile-nav-inner {
  text-align: center;
  padding: 20px;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list a {
  font-size: 1.2rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.mobile-nav-btn {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.mobile-nav-btn .btn-contact {
  font-size: 1rem;
  padding: 12px 25px;
}

.mobile-nav-social {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-nav-social img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  /* アイコンを白くする */
}

@media (max-width: 1200px) {
  .logo {
    width: 260px;
  }

  .gnav ul {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .gnav {
    display: none;
    /* SP用メニューはjsで制御または別で実装 */
  }

  .hamburger {
    display: block;
  }
}

/* =========================================================================
   Main Visual
   ========================================================================= */
.mv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--color-white);
  isolation: isolate;
  margin-top: 5em;
}

.mv-slideshow {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.mv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
}

.mv-slide.is-active {
  opacity: 1;
}

/* 全体を少し暗くして文字を見やすく */
.mv-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.08);
}

/* コンテンツ */
.mv-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0 5em;
  padding: 380px 0 50px;
}

/* サンプル画像に寄せた左寄せ位置 */
.mv-title,
.mv-subtitle {
  padding-left: 60px;
}

/* メインタイトル */
.mv-title {
  font-family: var(--font-base);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

/* サブタイトル */
.mv-subtitle {
  font-size: clamp(1.3rem, 2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

@media (max-width: 1200px) {
  .mv {
    margin-top: 4em;
  }
}


/* タブレット */
@media (max-width: 1024px) {
  .mv-content {
    padding: 150px 30px 100px;
  }

  .mv-title,
  .mv-subtitle {
    padding-left: 20px;
  }
}

/* SP */
@media (max-width: 768px) {
  .mv {
    min-height: 90vh;
    align-items: flex-end;
  }

  .mv-slide {
    background-position: center center;
  }
/*
  .mv-overlay {
    background: rgba(0, 0, 0, 0.34);
  }
  */
  .mv-content {
    padding: 120px 20px 120px;
    margin: 0 auto 0 7em;
    display: none;
  }

  .mv-title,
  .mv-subtitle {
    padding-left: 0;
  }

  .mv-title {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .mv-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
}


/* =========================================================================
   Intro (メッセージ)
   ========================================================================= */
   .intro {
    overflow: hidden;
  }
  
  .intro .inner {
    width: 92%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0;
  }
  
  .intro-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }
  
  .intro-text {
    flex: 1;
    max-width: 860px;
    margin: 0;
    padding-top: 130px;
  }
  
  .intro-text .title-primary {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 60px;
    font-weight: 400;
    color: #b41627;
  }
  
  .intro-text p {
    font-size: 22px;
    line-height: 2.2;
    color: #2f2f2f;
    margin-bottom: 55px;
  }
  
  .intro-text p:last-child {
    margin-bottom: 0;
    margin-right: -276px;
    text-align: justify;
  }
  
  .intro-img {
    width: 420px;
    flex-shrink: 0;
    position: relative;
    min-height: 860px;
  }
  
  .intro-img img {
    display: block;
    height: auto;
    object-fit: cover;
  }
  
  .intro-img .img-top {
    width: 340px;
    margin-left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .intro-img .img-bottom {
    width: 320px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: -200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  


  /* タブレット */
  @media (max-width: 1100px) {
    .intro-content {
      gap: 50px;
    }
  
    .intro-text .title-primary {
      font-size: clamp(2.4rem, 4.8vw, 4rem);
      margin-bottom: 40px;
    }
  
    .intro-text p {
      font-size: 1rem;
      line-height: 2;
      margin-bottom: 35px;
    }
  
    .intro-text p:last-child {
      margin-right: 0;
    }
  
    .intro-img {
      width: 320px;
      min-height: auto;
    }
  
    .intro-img .img-top {
      width: 100%;
    }
  
    .intro-img .img-bottom {
      width: 85%;
      margin-top: 40px;
      margin-right: 0;
    }
  }
  
  /* SP */
  @media (max-width: 768px) {
    .intro .inner {
      padding: 0 20px;
    }
  
    .intro-content {
      flex-direction: column;
      gap: 40px;
    }
  
    .intro-text {
      max-width: 100%;
      padding-top: 0;
    }
  
    .intro-text .title-primary {
      font-size: 2.0rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }
  
    .intro-text p {
      font-size: 0.95rem;
      line-height: 2;
      margin-bottom: 25px;
      text-align: justify;
    }
  
    .intro-img {
      width: 70%;
      min-height: auto;
      padding: 0;
      margin: 10px auto 0;
    }
  
    .intro-img .img-top {
      width: 78%;
      max-width: 320px;
      margin-left: 0;
    }
  
    .intro-img .img-bottom {
      width: 70%;
      max-width: 260px;
      margin-top: 40px;
      margin-left: auto;
      margin-right: 0;
    }
  }

/* =========================================================================
   Top Message
   ========================================================================= */
   .top-message p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 2;
  }
  
  .ceo-name {
    font-weight: 700;
    margin-top: 2rem;
    font-size: 20px;
  }
  
  .top-message .title-secondary {
    line-height: 1.4;
  }
  
  .top-message .btn-more {
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
  }
  
  /* =========================================================================
     Top Message SP
     ========================================================================= */
  @media (max-width: 768px) {
    .top-message.section {
      padding: 60px 0 0;
    }
  
    .top-message .inner.flex-container {
      display: block;
      padding: 0 14px;
    }
  
    .top-message .image-area {
      float: right;
      width: 48%;
      max-width: 300px;
      margin: 6px 0 18px 22px;
    }
  
    .top-message .image-area img {
      display: block;
      width: 100%;
      height: auto;
    }
  
    .top-message .text-area {
      width: 100%;
      display: block;
    }
  
    .top-message .text-area::after {
      content: "";
      display: block;
      clear: both;
    }
  
    .top-message .sub-title {
      display: block;
      font-family: var(--font-mincho);
      font-size: 20px;
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: 0;
    }
  
    .top-message .title-secondary {
      font-size: 1.8rem;
      line-height: 1.2;
      margin-bottom: 18px;
      white-space: normal;
    }
  
    .top-message p {
      font-size: 0.95rem;
      line-height: 2.15;
      margin-bottom: 18px;
    }
  
    .top-message .ceo-name {
      clear: both;
      margin-top: 44px;
      margin-bottom: 0;
      font-size: 1rem;
      font-weight: 700;
    }
  
    .top-message .btn-more {
      display: inline-flex;
      align-items: center;
      margin-top: 26px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: underline;
    }
  
    .top-message .btn-more .arrow-circle {
      width: 20px;
      height: 20px;
    }
  
    .top-message .btn-more .arrow-circle::after {
      width: 4px;
      height: 4px;
    }
  }

@media (max-width: 560px) {
  .top-message .image-area {
    float: right;
    width: 40%;
    max-width: 300px;
  }
}

/* =========================================================================
   About Us
   ========================================================================= */
.about.section {
  padding-bottom: 300px;
}

.about {
  overflow: hidden;
  position: relative;
}

.about .inner {
  max-width: 1400px;
  padding: 0;
}

.about-layout {
  display: flex;
  justify-content: flex-start;
}

.about-text-area {
  position: relative;
  z-index: 2;
  width: 52%;
  max-width: 750px;
}

.about-text-area .sub-title {
  font-family: var(--font-mincho);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #3a3a3a;
  letter-spacing: 0;
}

.about-text-area .title-secondary {
  font-size: 68px;
  line-height: 1.15;
  margin-bottom: 44px;
  white-space: nowrap;
}

.about-lead {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 46px;
  color: #333;
}

.about-links {
  margin-top: 0;
  border-top: 1px solid #e3e3e3;
}

.about-links li {
  margin-bottom: 0;
  border-bottom: 1px solid #e3e3e3;
}

.about-links a {
  display: grid;
  grid-template-columns: 220px 1fr 28px;
  align-items: center;
  column-gap: 30px;
  padding: 18px 0;
  font-weight: 500;
  border-bottom: none;
}

.about-thumb {
  display: block;
  width: 220px;
}

.about-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.about-link-text {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
}

.about-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #B41627;
  border-right: 2px solid #B41627;
  transform: rotate(45deg);
  justify-self: end;
}

/* 右側ビジュアル：1枚画像・画面右端基準 */
.about-visual {
  position: absolute;
  right: 0;
  top: 6em;
  width: 42vw;
  min-width: 520px;
  z-index: 0;
}

.about-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト側の高さを確保 */
.about-layout {
  min-height: 900px;
}

/* hover */
.about-links a:hover {
  opacity: 1;
}

.about-links a:hover .about-link-text {
  color: var(--color-primary);
}

.about-links a:hover .about-thumb img {
  opacity: 0.9;
}

/* タブレット */
@media (max-width: 1200px) {
  .about-layout {
    min-height: 760px;
  }

  .about-text-area .title-secondary {
    font-size: 52px;
    white-space: normal;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-links a {
    grid-template-columns: 120px 1fr 24px;
    column-gap: 20px;
  }

  .about-thumb {
    width: 120px;
  }

  .about-link-text {
    font-size: 16px;
  }

  .about-visual {
    width: 40vw;
    min-width: 420px;
  }
}

/* SP */
@media (max-width: 768px) {
  .about.section {
    padding-bottom: 100px;
  }
  
  .about .inner {
    padding: 0 20px;
  }

  .about-layout {
    min-height: auto;
    flex-direction: column;
    gap: 40px;
  }

  .about-text-area,
  .about-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-text-area .sub-title {
    font-size: 18px;
  }

  .about-text-area .title-secondary {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .about-lead {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 28px;
  }

  .about-links a {
    grid-template-columns: 90px 1fr 18px;
    column-gap: 14px;
    padding: 14px 0;
  }

  .about-thumb {
    width: 90px;
  }

  .about-link-text {
    font-size: 14px;
  }

  .about-visual {
    position: static;
    margin-top: 10px;
  }
}

/* =========================================================================
   Interview (Sticky scroll)
   ========================================================================= */
.interview {
  background-color: #222222;
  color: var(--color-white);
  position: relative;
  padding-bottom: 300px;
}

.interview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg02.png);
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 0;
}

.interview-container {
  display: flex;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.interview-container .title-secondary {
  line-height: 100%;
}

/* 左側エリア (スクロール) */
.interview-scroll {
  width: 60%;
  padding-right: 5%;
  /* 枠内スクロールではなく、ページ全体のスクロールで流れるようにする */
  padding-top: 300px;
  /* スクロール開始位置の余白 */
}

/* 右側エリア (スクロールに追従・固定) */
.interview-sticky {
  width: 40%;
  position: sticky;
  top: 15rem;
  /* ヘッダーや画面上部からの固定位置 */
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 300px;
}

.interview-sticky .sticky-content {
  text-align: left;
}

.interview-sticky .title-secondary {
  margin-bottom: 5px;
}

.interview-sticky .sub-title {
  color: #fff;
}

.interview-item {
  display: flex;
  background-color: transparent;
  margin-bottom: 80px;
  /* 項目間の間隔を広めに */
  align-items: center;
  gap: 30px;
}

/* 最後の要素の下マージンは不要 */
.interview-item:last-child {
  margin-bottom: 0;
}

.item-img {
  width: 55%;
  flex-shrink: 0;
}

.item-img img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.item-info {
  width: 55%;
}

.item-info .year {
  font-size: 0.8rem;
}

.item-info .year::before {
  content: '― ';
}

.item-info .role {
  margin-bottom: 0;
}

.item-info .name {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.item-info .quote {
  font-size: 21px;
  font-family: var(--font-mincho);
  margin-bottom: 50px;
  line-height: 1.8;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}

.btn-read-more .arrow-circle-white {
  width: 40px;
  height: 40px;
  margin-left: 8px;
}

.btn-read-more .arrow-circle-white::after {
  width: 8px;
  height: 8px;
}

@media (max-width: 768px) {
  .interview {
    padding-bottom: 100px;
  }

  .interview-container {
    flex-direction: column;
    height: auto;
  }

  .interview-sticky {
    width: 100%;
    position: static;
    margin-bottom: 0px;
    padding-top: 50px;
    order: -1;
    margin-top: 50px;
    /* SP表示時に上に持ってくる */
  }

  .interview-scroll {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }

  .interview-item {
    margin-bottom: 60px;
  }

  .interview::before {
    background-size: contain;
  }

  .item-info {
    width: 50%;
  }

  .item-img{
    width: 40%;
  }

  .item-info .name {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .item-info .quote {
    font-size: 1.0rem;
    margin-bottom: 20px;
  }

  .item-info .quote br {
    display: none;
  }

  .btn-read-more {
    font-size: 1rem;
  }

  .btn-read-more .arrow-circle-white {
    width: 20px;
    height: 20px;
  }

  .btn-read-more .arrow-circle-white::after {
    width: 4px;
    height: 4px;
  }
}

/* =========================================================================
   FAQ (Accordion)
   ========================================================================= */
.faq {
  padding-top: 150px;
  padding-bottom: 150px;
}

.faq .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.faq-item {
  background-color: #ececec;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  padding: 28px 34px 28px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

details[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.icon-q,
.icon-a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 18px;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-base);
  flex-shrink: 0;
}

.icon-q {
  background-color: #B41627;
  color: #fff;
}

.icon-a {
  background-color: #2c2d2d;
  color: #fff;
}

.faq-a {
  padding: 0 28px 28px 22px;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.center-btn {
  text-align: center;
}

/* タブレット */
@media (max-width: 1200px) {
  .faq .inner {
    padding: 0 20px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    font-size: 18px;
    min-height: 84px;
    padding: 24px 28px 24px 20px;
  }

  .faq-a {
    padding: 0 24px 24px 20px;
    font-size: 16px;
  }
}

/* SP */
@media (max-width: 768px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .faq-item {
    margin-bottom: 14px;
    border-radius: 10px;
  }

  .faq-q {
    font-size: 16px;
    line-height: 1.6;
    min-height: auto;
    padding: 18px 48px 18px 16px;
    align-items: flex-start;
  }

  .faq-q::after {
    right: 18px;
    font-size: 24px;
    top: 22px;
    transform: none;
  }

  details[open] .faq-q::after {
    transform: rotate(45deg);
  }

  .icon-q,
  .icon-a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 12px;
  }

  .faq-a {
    padding: 0 16px 18px 16px;
    font-size: 14px;
    line-height: 1.9;
  }
}

@media (max-width: 560px) {
  .faq-q::after {
    top: 12px;
  }
}


/* =========================================================================
   Conversion Area
   ========================================================================= */
.cv-section.section {
  padding: 80px 0;
}

.cv-section {
  background-color: #e6e6e6;
}

.cv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cv-text-area {
  flex: 1;
}

.cv-btn-area {
  flex-shrink: 0;
}

.cv-title {
  font-family: var(--font-mincho);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.cv-desc {
  margin-bottom: 0;
  line-height: 2.0;
}

@media (max-width: 768px) {
  .cv-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .cv-title {
    font-size: 1.4rem;
  }

  .cv-desc {
    margin-bottom: 0;
  }
}

/* Bottom Action Area (全幅ボタン3つ) */
.bottom-action-area {
  display: flex;
}

.action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  color: #fff;
  transition: opacity 0.3s;
}

.action-btn .label {
  font-family: var(--font-mincho);
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 1;
}

.action-btn .btn-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bg-p-red {
  background-color: #eb666b;
}

.bg-s-red {
  background-color: #da3747;
}

.bg-d-red {
  background-color: #B41627;
}

@media (max-width: 768px) {
  .bottom-action-area {
    flex-direction: column;
  }

  .action-btn {
    padding: 40px 20px;
  }
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 94%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 60px;
}

.footer-logo img {
  height: 45px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-bottom {
  background-color: #2c2d2d;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.footer-bottom-inner {
  width: 94%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
}

.footer-bottom .corp-site {
  background-image: url(img/blank.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 2em;
}

@media (max-width: 992px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    display: block;
  }

  .footer-nav {
    display: none;
  }

  .footer-logo img {
    height: 30px;
    display: block;
    margin: 0 auto;
  }  
}

/* =========================================================================
   Animations (Intersection Observer)
   ========================================================================= */
/* 初期状態 */
.js-fade-up,
.js-fade-in-left,
.js-fade-in-right,
.js-fade-in-left-delay,
.js-fade-in-right-delay {
  opacity: 0;
  visibility: hidden;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-up {
  transform: translateY(36px) scale(0.96);
}

.js-fade-in-left {
  transform: translateX(-40px);
}

.js-fade-in-right {
  transform: translateX(40px);
}

.js-fade-in-left-delay {
  transform: translateX(-40px);
  transition-delay: 0.2s;
}

.js-fade-in-right-delay {
  transform: translateX(40px);
  transition-delay: 0.2s;
}

/* 発火時 */
.js-fade-up.is-active,
.js-fade-in-left.is-active,
.js-fade-in-right.is-active,
.js-fade-in-left-delay.is-active,
.js-fade-in-right-delay.is-active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate(0, 0);
}

.animation-delay-1 {
  transition-delay: 0.12s;
}

.animation-delay-2 {
  transition-delay: 0.24s;
}

.animation-delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 768px) {
  .bg01 .js-fade-in-left,
  .bg01 .js-fade-in-right,
  .bg01 .js-fade-in-left-delay,
  .bg01 .js-fade-in-right-delay {
    opacity: 0;
    visibility: hidden;
    filter: none;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .bg01 .js-fade-in-left.is-active,
  .bg01 .js-fade-in-right.is-active,
  .bg01 .js-fade-in-left-delay.is-active,
  .bg01 .js-fade-in-right-delay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-up,
  .js-fade-in-left,
  .js-fade-in-right,
  .js-fade-in-left-delay,
  .js-fade-in-right-delay,
  .char {
    opacity: 1;
    visibility: visible;
    filter: none;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* 一文字ずつ表示するアニメーション用 */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-text-anime.is-active .char {
  opacity: 1;
  transform: translateY(0);
}

/* 上からのフェードイン（ヘッダー用など） */
.js-fade-in-down {
  animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
PAGE HERO
========================= */

.page-hero{
  background:#1f1f1f url("img/subtitle-bg.png") no-repeat right top 1.8em;
  background-size:contain;
  padding:90px 0;
  color:#fff;
}
  
.page-hero-inner{
  max-width:1400px;
  margin:auto;
  padding:0 20px;
}
  
  /* パンくず */
  
.breadcrumb{
  font-size:13px;
  margin-bottom:90px;
}
  
  /* タイトルと説明 */
  
.page-hero-flex{
  display:flex;
  align-items:center;
  gap:80px;
}
  
  /* タイトル */
  
.page-title{
  font-family:"Noto Serif JP", serif;
  font-size:48px;
  font-weight:400;
  white-space:nowrap;
  margin-bottom: 0.5em;
}
  
/* 説明 */
  
.page-lead{
  line-height:2.2;
  max-width:480px;
}

.page-lead02{
    line-height:2.2;
    max-width:100%;
 }

/* =========================
SP
========================= */

@media (max-width:760px){

  .page-hero-flex{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
  
  .page-title{
    font-size:32px;
    white-space: normal; 
  }
  
  .page-lead br{
    display: none;
  }
  
  .page-hero{
    padding:60px 0;
    background-position:right center;
  }

  .breadcrumb {
    margin-top: 2em;
    margin-bottom: 20px;
  }
  
}

@media (max-width:560px){
  .page-hero{
    background-size: cover;
    background-position: right -5em center;
  }

  .page-title{
    font-size:30px;
    white-space: normal; 
  }
  
}

  
/* ======================
FAQ CATEGORY
====================== */

.faq-category {
  padding: 230px 0;
}

.faq-category-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ボックス */
.faq-cat-item{
  background:#f1f1f1;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center; /* 文字中央 */
  text-decoration:none;
  color:#333;
  font-size:16px;
  font-weight:500;
  position:relative; /* 矢印用 */
}
  
  /* 矢印 */
  
.faq-arrow{
  width:34px;
  height:34px;
  background:#cfcfcf;
  border-radius:50%;
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
}

/* 矢印 */
.faq-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}

/* hover */
.faq-cat-item:hover {
  background: #e5e5e5;
}

/* active時 */
.faq-cat-item.is-active .faq-arrow {
  transform: rotate(180deg);
  background: #bdbdbd;
}

/* ======================
レスポンシブ
====================== */
@media (max-width: 1400px) {
  .faq-category-inner {
    max-width: 94%;
  }
}

@media (max-width: 900px) {
  .faq-category-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-category {
    padding: 100px 0;
  }
}

@media (max-width: 600px) {
  .faq-category-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* =========================
FAQ CONTENT
========================= */

.faq-page-content{
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 100px 0;
}

.faq-block{
  margin-bottom: 100px;
}

.faq-block-title{
  position: relative;
  width: 100%;
  margin: 0 0 35px;
  padding-left: 60px;
  font-family: var(--font-mincho);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #2c2c2c;
}

.faq-block-title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:36px;
  height:1px;
  background:#555;
  transform:translateY(-50%);
}

.faq-list-page{
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 0 0 auto;
}
.faq-block{
  margin-bottom:80px;
}

.faq-block h2{
  font-size:28px;
  padding-bottom:10px;
  margin-bottom:30px;
}

.faq-item{
  margin-bottom:14px;
  background:#eee;
  border-radius:6px;
}

.faq-item summary{
  padding:18px 20px;
  cursor:pointer;
  font-weight:600;
  list-style:none;
  display:flex;
  align-items:center;
  gap:12px;
}

.faq-item .q{
  width:24px;
  height:24px;
  background:#c40000;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.answer{
  padding:20px;
  background:#fff;
}

.faq-block h2{
    font-size:28px;
    padding-bottom:10px;
    margin-bottom:30px;
}

@media (max-width: 560px) {
  .faq-block h2{
    font-size:22px;
  }

  .faq-item summary{
    padding:18px 40px 18px 10px;
    gap: 5px;
  }
}

/* =========================
FAQ BLOCK
========================= */

.faq-block{
  margin-bottom:100px;
  }
  
  /* 見出し */
  
  .faq-block-title{
  position:relative;
  font-size:20px;
  font-weight:500;
  margin-bottom:35px;
  padding-left:60px;
  }
  
  /* 左の線 */
  
  .faq-block-title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:36px;
  height:1px;
  background:#555;
  transform:translateY(-50%);
  }
  
  
  /* =========================
  FAQ LIST
  ========================= */
  
  .faq-list-page{
  max-width:1200px;
  margin:0 auto;
  }

  @media (max-width: 768px){
    .faq-page-content{
      width: auto;
      padding: 70px 20px;
    }
  
    .faq-block{
      margin-bottom: 70px;
    }
  
    .faq-block-title{
      font-size: 1.4rem;
      padding-left: 40px;
      margin-bottom: 24px;
    }
  
    .faq-block-title::before{
      width: 24px;
    }
  
    .faq-list-page{
      width: 100%;
      margin: 0;
    }
  }



/* =========================
PAGE NAV
========================= */
.page-nav{
  padding:160px 0 160px;
}

.page-nav-inner{
  max-width:1400px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.page-nav-item{
  background:#f1f1f1;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#333;
  font-size:15px;
  font-weight:500;
  position:relative;
  transition:background-color .3s ease;
}

.page-nav-item:hover{
  background:#e7e7e7;
  opacity:1;
}

.faq-arrow{
  width:34px;
  height:34px;
  background:#cfcaca;
  border-radius:50%;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  transition:transform .3s ease, background-color .3s ease;
}

.faq-arrow::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translate(-50%,-60%) rotate(45deg);
}

.faq-arrow{
  transition:transform .3s ease;
}

.page-nav-item.is-active .faq-arrow,
.faq-cat-item.is-active .faq-arrow{
  transform:translateY(-50%) rotate(180deg);
}

@media (max-width:900px){
  .page-nav-inner{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .page-nav-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .page-nav{
    padding:100px 0 100px;
  }
}

/* =========================
COMMON SECTION
========================= */
.recruit-section{
  padding:0 0 140px;
}

.recruit-inner{
  width:92%;
  max-width:1400px;
  margin:0 auto;
}

.section-title{
  font-family: var(--font-mincho);
  font-size:42px;
  font-weight:600;
  line-height:1.3;
  margin-bottom:30px;
  color:#2c2c2c;
}

.section-desc{
  margin-bottom:24px;
}

.section-desc.narrow{
  max-width:720px;
}

.small-title{
  font-size:24px;
  font-weight:500;
  margin:40px 0 20px;
  color:#2c2c2c;
}

.recruit-two-col{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:100px;
}

.recruit-text{
  flex:1;
}

.recruit-image{
  width:500px;
  flex-shrink:0;
}

.recruit-image img{
  display:block;
  width:100%;
  height:auto;
}

.dot-list{
  font-weight: 600;
  margin:0 0 24px;
}

.dot-list li{
  position:relative;
  padding-left:18px;
  margin-bottom:10px;
  line-height:1.9;
}

.dot-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.9em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#b41627;
  transform:translateY(-50%);
}

/* =========================
CAREER
========================= */
#benefit{
  margin-bottom:0 !important;
}

.recruit-career {
  background: #efefef;
  padding: 160px 0;
  margin-bottom: 160px;
}

.career-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
}

.career-step {
  text-align: center;
}

/* 上の見出し */
.step-term {
  color: #B41627;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: var(--font-base);
}

.step-term span {
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  margin: 0 2px;
}

/* ボックス */
.step-box {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 22px;
  line-height: 1.9;
  font-size: 15px;
  font-weight: 500;
}

/* 高さを段階的に変える */
.step-01 .step-box {
  background: #eb666b;
  min-height: 145px;
}

.step-02 .step-box {
  background: #da3747;
  min-height: 205px;
  font-size: 14px;
}

.step-03 .step-box {
  background: #be1026;
  min-height: 265px;
}

/* 下のSTEP表記 */
.step-label {
  margin-top: 14px;
  color: #B41627;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

/* タブレット */
@media (max-width: 1024px) {
  .career-steps {
    gap: 20px;
  }

  .step-term {
    font-size: 20px;
  }

  .step-term span {
    font-size: 46px;
  }

  .step-box {
    font-size: 14px;
    padding: 22px 16px;
  }

  .step-01 .step-box {
    min-height: 130px;
  }

  .step-02 .step-box {
    min-height: 180px;
  }

  .step-03 .step-box {
    min-height: 220px;
  }

  .step-label {
    font-size: 24px;
  }
}

/* SP */
@media (max-width: 768px) {
  .recruit-career {
    padding: 80px 0 90px;
    margin-bottom: 80px;
  }

  .career-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }

  .career-step {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .step-term {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-term span {
    font-size: 38px;
  }

  .step-box {
    min-height: auto !important;
    font-size: 14px;
    padding: 22px 16px;
  }

  .step-label {
    font-size: 22px;
    margin-top: 10px;
  }
}

/* =========================
TABLE
========================= */
.recruit-table dl{
  border-top:1px solid #ddd;
}

.recruit-table dl > div{
  display:grid;
  grid-template-columns:180px 1fr;
}

.recruit-table dt,
.recruit-table dd{
  padding:28px 0;
  line-height:1.9;
}

.recruit-table dt{
  color:#B41627;
  font-weight:700;
}

.recruit-table dd{
  color:#333;
}

.recruit-table dl{
  border-top:1px solid #ddd;
}

.recruit-table dl > div{
  display:grid;
  grid-template-columns:220px 1fr;
  border-bottom:1px solid #ddd;
}

.recruit-table dt{
  color:#B41627;
  font-weight:700;
  padding:28px 0;
}

.recruit-table dd{
  padding:28px 0;
  line-height:1.9;
  color:#333;
}

@media (max-width: 560px) {
  .recruit-table dl > div{
    display:block;
  }
}

/* =========================
BENEFIT
========================= */
.benefit-top{
  margin-bottom:160px;
}

.benefit-bottom{
  align-items:center;
}

.benefit-images{
  width:500px;
  flex-shrink:0;
}

.benefit-images img{
  display:block;
  width:100%;
  height:auto;
}

@media (max-width:768px){
  .benefit-top {
    margin-bottom: 80px;
  }
}


/* =========================
RESPONSIVE
========================= */
@media (max-width:1024px){
  .section-title{
    font-size:38px;
  }

  .small-title{
    font-size:24px;
  }

  .recruit-two-col{
    gap:40px;
  }

  .recruit-image,
  .benefit-images{
    width:320px;
  }

  .career-steps{
    grid-template-columns:1fr;
    gap:24px;
  }

  .step-box{
    min-height:auto;
  }
}

@media (max-width:768px){
  .recruit-section{
    padding:0 0 90px;
  }

  .recruit-career{
    padding:80px 0 90px;
  }

  .section-title{
    font-size:30px;
    margin-bottom:20px;
  }

  .small-title{
    font-size:22px;
    margin:28px 0 16px;
  }

  .recruit-two-col{
    flex-direction:column;
  }

  .recruit-image,
  .benefit-images{
    width:100%;
    max-width:100%;
  }

  .step-term{
    font-size:20px;
  }

  .step-label{
    font-size:22px;
  }

  .recruit-table dt,
  .recruit-table dd{
    float:none;
    width:auto;
    margin:0;
    padding:18px 0;
  }

  .recruit-table dt{
    padding-bottom:8px;
    border-bottom:none;
  }

  .recruit-table dd{
    padding-top:0;
  }
}


/* =========================
FEATURES PAGE
========================= */
.features-inner{
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.features-section{
  padding: 140px 0;
}

.features-section--gray{
  background:#efefef;
}

.features-section--img{
  background-image: url(img/features-section-bg.png);
}

.features-heading{
  margin-bottom: 80px;
}

/* top message */
.features-top-message{
  padding: 110px 0 90px;
}

.features-top-message__inner{
  display:flex;
  align-items:center;
  gap:70px;
}

.features-top-message__image{
  width: 550px;
  flex-shrink: 0;
}

.features-top-message__image img{
  display:block;
  width:100%;
  height:auto;
}

.features-top-message__text{
  flex:1;
}

.features-top-message__sub{
  display:block;
  font-family: var(--font-mincho);
  font-size:24px;
  margin-bottom:12px;
}

.features-top-message__title{
  font-family: var(--font-mincho);
  font-size:42px;
  font-weight:400;
  line-height:1.5;
  margin-bottom:26px;
}

.features-top-message__text p{
  line-height:2;
  margin-bottom:14px;
}

.features-top-message__name{
  font-size: 20px;
  font-weight:700;
  margin-top:28px;
}

/* anchor nav */
.features-anchor-nav{
  padding: 40px 0 120px;
}

.features-anchor-nav__inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.features-anchor-nav__item{
  background:#efefef;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  font-weight:500;
}

.features-anchor-nav__item .faq-arrow{
  right:18px;
}

/* partner list */
.features-partners{
  display:flex;
  flex-direction:column;
  gap:80px;
}

.features-partner{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:50px;
  align-items:start;
}

.features-partner__logo{
  width:300px;
}

.features-partner__logo img{
  width:100%;
  height:auto;
  display:block;
}

.features-partner__body h3{
  font-size:22px;
  margin-bottom:10px;
  font-weight:700;
}

.features-partner__body p{
  margin-bottom:30px;
  line-height:2;
}

.features-partner__body ul li{
  position:relative;
  padding-left:16px;
  margin-bottom:6px;
  line-height:1.9;
  font-weight: 600;
}

.features-partner__body ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.9em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#b41627;
  transform:translateY(-50%);
}

/* our way */
.features-hero-photo{
  margin-bottom:160px;
}

.features-hero-photo img{
  display:block;
  width:100%;
  height:auto;
}

.features-way-list{
  display:flex;
  flex-direction:column;
  gap:160px;
}

.features-way-item{
  display:grid;
  grid-template-columns:1fr 500px;
  gap:40px;
}

.features-way-item--reverse{
  grid-template-columns:500px 1fr;
}

.features-way-item__image{
  width:500px;
}

.features-way-item__image img{
  width:100%;
  height:auto;
  display:block;
}

.features-way-item__text h3{
  font-size:24px;
  margin-bottom:14px;
  font-weight:700;
}

.features-way-item__text p{
  line-height:2;
}

.features-way-item__text ul{
  margin-top:12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.features-way-item__text ul li{
  position:relative;
  padding-left:16px;
  margin-bottom:6px;
  line-height:1.9;
  font-weight: 600;
}

.features-way-item__text ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.9em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#b41627;
  transform:translateY(-50%);
}

/* numbers */
.features-numbers-head{
  display:flex;
  justify-content:space-between;
  gap:160px;
  align-items:flex-start;
  margin-bottom:50px;
}

.features-numbers-photo{
  width:632px;
  flex-shrink:0;
  margin-top: 80px;
}

.features-numbers-photo img{
  display:block;
  width:100%;
  height:auto;
}

.features-number-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

.features-number-card{
  border:2px solid #B41627;
  background:#f7f7f7;
  padding:32px 24px 24px;
  text-align:center;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-radius:5px;
}

.features-number-card--wide{
  grid-column:span 2;
}

.features-number-card__label{
  color:#b41627;
  font-size:26px;
  margin-bottom:10px;
  font-weight: 500;
}

.features-number-card__icon img{
  height:auto;
}

.features-number-card__value{
  color:#b41627;
  font-size:38px;
  font-weight:700;
  line-height:1.2;
}

.features-number-card__value span{
  font-size:22px;
}

@media (max-width: 1400px){
  .features-numbers-photo{
    width: 40%;
    margin-top: 80px;
  }

  .features-numbers-head {
    gap: 40px;
  }
}

/* responsive */
@media (max-width: 1024px){
  .features-heading {
    margin-bottom: 0;
  }

  .features-top-message__inner,
  .features-numbers-head{
    flex-direction:column;
  }

  .features-top-message__image,
  .features-numbers-photo{
    width:100%;
    max-width:420px;
  }

  .features-numbers-head {
    gap: 0;
  }

  .features-numbers-photo {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .features-anchor-nav__inner{
    grid-template-columns:1fr;
  }

  .features-way-item,
  .features-way-item--reverse{
    grid-template-columns:1fr;
  }

  .features-number-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .features-number-card--wide{
    grid-column: span 2;
  }

  .features-way-list{
    gap: 90px;
  }

  .features-way-item,
  .features-way-item--reverse{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* reverseでもテキスト→画像の順に統一 */
  .features-way-item--reverse .features-way-item__text{
    order: 1;
  }

  .features-way-item--reverse .features-way-item__image{
    order: 2;
  }

  .features-way-item__text h3{
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .features-way-item__text p{
    font-size: 14px;
    line-height: 2;
  }

  .features-way-item__text ul{
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .features-way-item__text ul li{
    font-size: 14px;
    line-height: 2;
  }

  .features-way-item__image{
    width: 100%;
  }

  .features-way-item__image img{
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px){
  .features-heading{
    margin-bottom: 20px;
  }

  .features-section{
    padding:80px 0;
  }

  .features-hero-photo {
    margin-bottom: 60px;
  }

  .features-top-message{
    padding:70px 0 60px;
  }

  .features-top-message__sub{
    font-size:18px;
  }

  .features-top-message__title{
    font-size:30px;
  }

  .features-anchor-nav{
    padding:30px 0 70px;
  }

  .features-partner{
    grid-template-columns:1fr;
    gap:18px;
  }

  .features-way-item__text h3{
    font-size:20px;
  }

  .features-number-grid{
    grid-template-columns:1fr;
  }

  .features-number-card,
  .features-number-card--wide{
    grid-column:auto;
    min-height:auto;
  }

  .features-partner__logo{
    width:100%;
  }
}

@media (max-width: 560px){
  .features-top-message__title{
    font-size:26px;
  }
}


/* =========================
   MEMBER VOICE LIST
========================= */
.member-voice-list {
  padding: 160px 0;
}

.member-voice-list__inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 80px 68px;
}

.member-card a {
  display: block;
  color: #2c2c2c;
  text-decoration: none;
}

.member-card__image {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #e9e9e9;
}

.member-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  border-radius: 20px;
}

.member-card__meta {
  font-size: 14px;
  line-height: 1.7;
}

.member-card__role {
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 8px;
}

.member-card__name {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-card__text {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.9;
}

/* hover */
.member-card a:hover {
  opacity: 1;
}

.member-card a:hover .member-card__image img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

/* 1200px以下 */
@media (max-width: 1200px) {
  .member-voice-list__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px 32px;
  }
}

/* 768px以下 */
@media (max-width: 768px) {
  .member-voice-list {
    padding: 60px 0 90px;
  }

  .member-voice-list__inner {
    width: auto;
    margin: 0 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 22px;
  }

  .member-card__image {
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .member-card__meta,
  .member-card__role,
  .member-card__text {
    font-size: 16px;
  }

  .member-card__name {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

/* 480px以下 */
@media (max-width: 480px) {
  .member-voice-list__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}


/* =========================
VOICE DETAIL HERO
========================= */

.voice-detail-hero{
  background: #1f1f1f;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* 背景の赤三角 */
.voice-detail-hero::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:45%;
  height:100%;
  background:url("img/subtitle-bg.png") no-repeat right center;
  background-size:cover;
  pointer-events:none;
}

.voice-detail-hero__inner{
  width:92%;
  max-width:1400px;
  margin:0 auto;
  padding:80px 0;
  position:relative;
  z-index:2;
}

.voice-detail-hero__content{
  display:grid;
  grid-template-columns: 1fr 650px;
  gap:80px;
  align-items:center;
}

.voice-detail-hero__text{
  min-width:0;
}

.voice-detail-hero__breadcrumb{
  font-size:13px;
  margin-bottom:80px;
}

.voice-detail-hero__meta{
  max-width:650px;
  padding-bottom:30px;
  margin-bottom:30px;
  border-bottom:1px solid rgba(255,255,255,0.4);
}

.voice-detail-hero__name{
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
}

.voice-detail-hero__role{
  margin-bottom:5px;
}

.voice-detail-hero__lead{
  max-width:650px;
}

.voice-detail-hero__lead p{
  line-height:2.1;
}

.voice-detail-hero__image{
  max-width:660px;
  margin-top: 80px;
}

.voice-detail-hero__image img{
  width:100%;
  border-radius:16px;
  display:block;
}
/* タブレット */
@media (max-width: 1200px){
  .voice-detail-hero__content{
    grid-template-columns: 1fr 48%;
    gap: 50px;
  }

  .voice-detail-hero__breadcrumb{
    margin-bottom: 100px;
  }

  .voice-detail-hero__name{
    font-size: 26px;
  }

  .voice-detail-hero__role,
  .voice-detail-hero__year{
    font-size: 22px;
  }

  .voice-detail-hero__lead p{
    font-size: 16px;
  }
}

/* SP */
@media (max-width: 768px){
  .voice-detail-hero{
    background-position: right top;
    background-size: 220px auto;
  }

  .voice-detail-hero__inner{
    width: auto;
    margin: 0 20px;
    padding: 24px 0 50px;
  }

  .voice-detail-hero__content{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .voice-detail-hero__breadcrumb{
    margin: 50px 0 30px;
    font-size: 12px;
  }

  .voice-detail-hero__meta{
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .voice-detail-hero__name{
    font-size: 36px;
    margin-bottom: 14px;
  }

  .voice-detail-hero__role,
  .voice-detail-hero__year{
    font-size: 18px;
  }

  .voice-detail-hero__lead p{
    font-size: 14px;
    line-height: 2;
  }

  .voice-detail-hero__image {
    margin-top: 30px;
  }

  .voice-detail-hero__image img{
    border-radius: 12px;
  }
}


/* =========================
VOICE DETAIL PAGE
========================= */
.voice-detail-content{
  padding: 110px 0 0;
}

.voice-detail-content__inner{
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.voice-detail-title{
  font-family: var(--font-mincho);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #2c2c2c;
}

/* career */
.voice-career{
  margin-bottom: 120px;
}

.voice-career-box{
  background: #f1f1f1;
  border-radius: 8px;
  padding: 50px;
  margin-bottom: 40px;
}

.voice-career-box:last-child{
  margin-bottom: 0;
}

.voice-career-box h3{
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

.voice-career-box p{
  text-align: justify;
  line-height: 2.1;
}

/* photo */
.voice-photo-block{
  margin-bottom: 50px;
}

.voice-photo-block__image{
  margin-bottom: 30px;
}

.voice-photo-block__image img{
  display: block;
  width: 100%;
  height: auto;
}

.voice-photo-block__lead{
  font-size: 32px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* redline */
.voice-redline-list{
  margin-bottom: 120px;
}

.voice-redline-item{
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 28px;
  margin-bottom: 54px;
}

.voice-redline-item:last-child{
  margin-bottom: 0;
}

.voice-redline-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
  background:#b41627;
}

.voice-redline-item h4{
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 14px;
}

.career-title{
  position: relative;
  padding-left: 20px;
}

.career-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #b41627;
  border-radius: 50%;
  transform: translateY(-50%);
}

.voice-redline-item p{
  line-height: 2.1;
}

/* =================================
SCHEDULE
================================= */

.voice-schedule{
  background-image:url("img/voice-schedule-bg.png") ;
  background-repeat: repeat-x;
  padding:80px 20px 0;
  text-align:center;
}

.voice-schedule__title{
  font-size:100px;
  font-weight:100;
  letter-spacing:4px;
  color:#fff;
  margin-bottom:20px;
  line-height: 1;
}

.voice-schedule__sub{
  font-family: var(--font-mincho);
  font-size:32px;
  color:#fff;
  margin-bottom:70px;
}

/* 白ボックス */

.voice-schedule__box{
  max-width:760px;
  margin:auto;
  background:#ffffff;
  padding:50px 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* 列 */

.schedule-col{
  position:relative;
  padding-left:30px;
}

.schedule-col:before{
  content:"";
  position:absolute;
  left:14px;
  top:0;
  bottom:0;
  border-left:2px dotted #bbb;
}

/* 行 */

.schedule-item{
  position:relative;
  display:flex;
  align-items:center;
  margin-bottom:26px;
}

.schedule-item:last-child{
  margin-bottom:0;
}

/* ドット */

.schedule-item:before{
  content:"";
  width:8px;
  height:8px;
  background:#333;
  border-radius:50%;
  position:absolute;
  left:-20px;
}

/* 時間 */

.schedule-item .time{
  width:70px;
  font-weight:600;
  font-size:16px;
  color:#333;
}

/* 内容 */

.schedule-item .text{
  font-size:15px;
  color:#555;
}

/* SP */

@media(max-width:768px){

.voice-schedule__title{
  font-size:42px;
}

.voice-schedule__sub{
  font-size:20px;
}

.voice-schedule__box{
  grid-template-columns:1fr;
  padding:40px 30px;
  gap:40px;
}

}

/* message */
.voice-message-box{
  padding: 160px 0;
}

.voice-message-box__inner{
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  background:#efefef;
  padding: 56px 56px 48px;
  border-radius: 10px;
}

.voice-message-box__en{
  display:block;
  font-size: 100px;
  font-weight: 100;
  line-height: 1;
  color: #DCD7D7;
  margin-bottom: 5px;
}

.voice-message-box__title{
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  color:#2c2c2c;
}

.voice-message-box p{
  line-height: 2.1;
  margin-bottom: 18px;
}

.voice-message-box p:last-child{
  margin-bottom: 0;
}

/* related members */
.member-voice-list--related{
  padding-top: 0;
}

.member-voice-list__header{
  width: 92%;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.member-voice-list__title{
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  color:#2c2c2c;
}

.member-voice-list--related .member-voice-list__inner{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 30px;
}

.member-voice-list--related .member-card__image{
  border-radius: 12px;
}


/* responsive */
@media (max-width: 1200px){
  .voice-detail-title{
    font-size: 40px;
  }

  .voice-photo-block__lead{
    font-size: 28px;
  }

  .voice-schedule__title{
    font-size: 60px;
  }

  .voice-message-box__en{
    font-size: 58px;
  }

  .member-voice-list--related .member-voice-list__inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .voice-detail-content{
    padding: 70px 0 0;
  }

  .voice-detail-content__inner{
    width: auto;
    margin: 0 20px;
  }

  .voice-detail-title{
    font-size: 28px;
    margin-bottom: 30px;
  }

  .voice-career{
    margin-bottom: 70px;
  }

  .voice-career-box{
    padding: 24px 20px 20px;
    margin-bottom: 18px;
  }

  .voice-career-box h3{
    font-size: 16px;
    margin-bottom: 12px;
  }

  .voice-career-box p{
    font-size: 14px;
    line-height: 2;
  }

  .voice-photo-block{
    margin-bottom: 60px;
  }

  .voice-photo-block__image{
    margin-bottom: 24px;
  }

  .voice-photo-block__lead{
    font-size: 20px;
    line-height: 1.8;
  }

  .voice-redline-list{
    margin-bottom: 70px;
  }

  .voice-redline-item{
    padding-left: 18px;
    margin-bottom: 34px;
  }

  .voice-redline-item h4{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .voice-redline-item p{
    font-size: 14px;
    line-height: 2;
  }

  .voice-schedule{
    padding: 60px 20px 80px;
  }

  .voice-schedule__title{
    font-size: 42px;
    margin-bottom: 10px;
  }

  .voice-schedule__sub{
    font-size: 20px;
    margin-bottom: 26px;
  }

  .voice-schedule__table-wrap{
    padding: 20px 14px;
  }

  .voice-schedule__table th,
  .voice-schedule__table td{
    font-size: 13px;
    padding: 10px 6px;
  }

  .voice-message-box{
    padding: 0 0 70px 0;
  }

  .voice-message-box__inner{
    width: auto;
    margin: 0 20px;
    padding: 32px 24px 28px;
  }

  .voice-message-box__en{
    font-size: 42px;
    margin-bottom: 12px;
  }

  .voice-message-box__title{
    font-size: 24px;
    margin-bottom: 20px;
  }

  .voice-message-box p{
    font-size: 14px;
    line-height: 2;
  }

  .member-voice-list__header{
    width: auto;
    margin: 0 20px 24px;
  }

  .member-voice-list__title{
    font-size: 24px;
  }

  .member-voice-list--related .member-voice-list__inner{
    margin: 0 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media (max-width: 480px){
  .member-voice-list--related .member-voice-list__inner{
    grid-template-columns: 1fr;
  }
}


/* お問い合わせ */
.contact-inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.contact {
  margin-top: 160px;
  padding-bottom: 160px;
}

.contact .explanation {
  margin-bottom: 110px;
}

.contact a {
  text-decoration: underline;
}

.contact h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.contact table {
  width: 100%;
  font-weight: 500;
  margin-bottom: 60px;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}

.contact table th {
  padding: 2em 0.5em;
  vertical-align: middle;
  font-weight: 700;
  text-align: left;
  width: 300px;
  background-color: #ebebeb;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact table th span {
  margin-left: 2em;
}

.contact table th .red {
  background: #B41627;
  color: #fff;
  padding: 3px 5px 3px 5px;
  line-height: 100%;
}

.contact table th .gray {
  background: #949191;
  color: #fff;
  font-weight: 500;
  padding: 3px 5px 3px 5px;
  line-height: 100%;
}

.contact table th .f-title {
  text-align: center;
  width: 220px;
  padding-top: 5px;
}

.contact table td {
  padding: 2em 1em;
  vertical-align: middle;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
}

.contact.kaku table td {
  width: auto;
  border-bottom: 1px solid #ccc;
}

.contact .sns {
  text-align: center;
  width: 50px;
  display: inline-block;
}

.contact input {
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 1em;
  margin-right: 1em;
  margin-bottom: 0.5em;
  font-size: 15px;
}

.contact select {
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 1em;
  margin-right: 1em;
  width: 300px;
  appearance: auto;
  font-size: 15px;
}

.contact textarea {
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 1em;
  margin-right: 1em;
  height: 180px;
  font-size: 15px;
}

.contact .file div {
  margin-right: 1em;
}

.contact .file__label {
  line-height: 1.5;
  margin-inline: auto;
  color: #000;
  background-color: #f6f5f5;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-right: 0.5em;
}

.contact .file__label input {
  background-color: #f6f5f5;
  cursor: pointer;
  border: none;
  margin-bottom: 1em;
}

.contact .file__label:hover {
  opacity: 0.7;
}

.contact .file__none {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5em;
  word-break: break-all;
  font-weight: 500;
  margin-bottom: 1em;
}

.contact .text {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #707070;
  width: 90%;
}

.contact .error-msg {
  display: none;
  color: #b41627;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.formError {
  z-index: 0;
}

.contact .formError,
.contact .formError .formErrorContent,
.contact .formError .formErrorArrow {
  display: none !important;
}

input[type=checkbox] {
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  margin-bottom: 0.3em;
}

input[type=radio] {
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  margin-bottom: 0.3em;
}

.contact-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.contact-btn {
  text-align: center;
  margin-top: 20px;
}

.contact_btn {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.contact-btn button {
  padding: 10px 20px;
  background-color: #B41627;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  width: 290px;
  border: none;
  transition: .3s;
  border: 1px solid #B41627;
}

.contact-btn input:hover {
  background-color: #fff;
  border: 1px solid #B41627;
  color: #B41627;
}

.contact .adr {
  margin: 0 0 1em 0;
}

.contact .ad {
  width: 120px;
  display: inline-block;
}

.contact .item label {
  width: 40%;
  display: inline-block;
  margin-bottom: 1em;
}

.contact textarea {
  margin-bottom: 1em;
}

.contact .w90 {
  width: 70%;
}

.ml_1 {
  margin-left: 1em;
}

.ml_2 {
  margin-left: 2em;
}

.ml_3 {
  margin-left: 3em;
}

@media screen and (max-width: 1700px) {
  .ml_3 {
      margin-left: 3.5em;
  }
}

@media screen and (max-width: 1300px) {
  .contact .w90 {
      width: 80%;
  }
}

@media screen and (max-width: 1000px) {
  .contact {
      margin-top: 3em;
  }

  .contact .explanation {
      margin-bottom: 1.5em;
  }

  .contact table {
      margin-bottom: 20px;
  }

  .contact table th {
      display: block;
      width: 100%;
      width: 96%;
      padding: 1em 2%;
  }

  .contact table td {
      display: block;
      width: 96%;
      padding: 1em 2%;
  }

  .contact table th .red {
      padding: 0px 5px 0 5px;
      margin-right: 1em;
  }

  .contact table th .gray {
      padding: 0px 5px 0 5px;
      margin-right: 1em;
  }

  .contact .file.fl {
      display: block;
  }

  .contact input {
      margin-top: 10px;
      margin-bottom: 10px;
  }

  .contact .w90 {
      width: 100%;
  }

  .contact .text {
      padding: 4%;
      width: 100%;
  }

  .contact-btn input {
      margin-bottom: 3em;
  }

  .contact .item label {
      width: 100%;
      display: block;
  }

  .ml_3 {
      margin-left: 0;
  }

  .contact table {
    border-top: none;
  }

  .contact table th span {
    margin-left: 0.5em;
  }

  .contact .h-adr input {
    width: 60%;
  }

}

@media screen and (max-width: 560px) {
  .contact .ad {
      width: 100%;
      display: block;
  }

  .contact .adr input {
      width: 100%;
  }

  input[type=checkbox] {
    -ms-transform: scale(1.0, 1.0);
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
    margin-bottom: 0.3em;
  }

  .contact .file div {
    margin-right: 0;
}
  
}
