@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: var(--color-white);
  /* 約半 */
  font-feature-settings: "palt";
  color: var(--color-black);
  line-height: 1.8;
}
p{
  line-height: 1.8;
}
body.stop {
  overflow: hidden;
}

:root {
  --color-black: hsla(13, 21%, 8%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-red: hsla(357, 100%, 43%, 1);
  --color-pink: hsla(353, 77%, 91%, 1);
  --color-gray: hsla(180, 1%, 81%, 1);
  --font-din: "din-2014", sans-serif;
  /* scroll-padding:188px; */
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.br{
  display: block;
}
.sp_br{
  display: none;
}
@media (max-width:920px) {
  .br{
    display: none;
  }
  .sp_br{
    display: block;
  }
}
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.container_middle {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ============== ヘッダー ================== */

.site_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
}

.site_header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 81px 36px 79px;
  transition: padding 0.3s ease-out;
}
.site_header_container.headerColorScroll,
.site_header_container.is_subpage{
  padding: 6px 40px 6px 48px;
  background-color: var(--color-red);
}

@media (max-width:1360px) {
  .site_header_container {
    padding: 18px 20px;
  }
  .site_header_container.headerColorScroll,
  .site_header_container.is_subpage {
    padding: 6px 16px;
  }
}

@media (max-width:920px) {
  .site_header_container {
    padding: 16px 20px;
  }

}

.header_logo {
  display: block;
  width: min(14.932432432432433vw, 221px);
  transition: .3s ease;
}

.header_logo:hover {
  opacity: .6;
}

.header_logo img {
  flex-shrink: 0;
  width: min(14.932432432432433vw, 221px);
  transition: .3s ease;
}
.site_header_container.headerColorScroll .header_logo {
  width: 90px;
  transition: .3s ease;
}
.site_header_container.is_subpage .header_logo {
  width: 90px;
  transition: .3s ease;
}
@media (max-width:920px) {
  .header_logo {
    /* width: min(30.76923076923077vw, 120px); */
    width: auto;
    /* max-width: 120px; */
    width: min(23.076923076923077vw, 90px);
  }

  .header_logo img {
    /* width: min(30.76923076923077vw, 120px); */
    width: auto;
    /* max-width: 120px; */
    width: min(23.076923076923077vw, 90px);
  }

  .site_header_container.headerColorScroll .header_logo {
    width: min(23.076923076923077vw, 90px);
  }
}

/* ヘッダーリンク */
.global_nav_list {
  display: flex;
  align-items: center;
  /* gap: 20px; */
  gap: clamp(12px, 1.3513513513513513vw, 20px);
  padding: 0;
}

.global_nav_list_item {
  list-style: none;
}

.global_nav_list_item.logo_sp {
  display: none;
}

@media (max-width:920px) {
  .global_nav_list_item.logo_sp {
    display: block;
    margin-bottom: 20px;
  }
}

.global_nav_list_link {
  color: var(--color-white);
  font-family: var(--font-din);
  font-weight: 600;
  /* font-size: 18px; */
  font-size: clamp(14px, 1.2162162162162162vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  /* 下線アニメーション */
  display: inline-block;
  position: relative;

}

.global_nav_list_link::after {
  background-color: var(--color-white);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s ease;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
.global_nav_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}


/* ハンバーガーメニュー */
/* ハンバーガーメニューボタン */
.global_nav_toggle {
  display: none;
}

@media (max-width:920px) {
  .global_nav_toggle {
    display: block;
    touch-action: manipulation;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 9999;
  }

  .global_nav_toggle_bar {
    width: 36px;
    height: 2px;
    background-color: var(--color-white);
  }

  .global_nav_toggle_bar-top,
  .global_nav_toggle_bar-btm {
    transition: transform .3s ease;
  }

  .global_nav_toggle_bar-mid {
    transition: opacity .3s ease;
  }

  .global_nav_toggle.is-active .global_nav_toggle_bar-top {
    transform: rotate(-45deg);
    position: relative;
    top: 10px;
  }

  .global_nav_toggle.is-active .global_nav_toggle_bar-mid {
    opacity: 0;
  }

  .global_nav_toggle.is-active .global_nav_toggle_bar-btm {
    transform: rotate(45deg);
    position: relative;
    top: -10px;
  }
}

/* ハンバーガーメニュー中身 */
@media (max-width:920px) {

  .global_nav {
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100dvh;
    transition: opacity .3s linear;
    z-index: 999;
    background: var(--color-red);
  }

  .global_nav.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .global_nav_overlay {
    height: 100%;
    display: flex;
    align-items: baseline;
    opacity: 0;
    overflow: auto;
    padding: 16px 20px;
    transition: opacity .3s linear;
  }

  /* 開閉アニメーション */
  .global_nav_overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .global_nav_list {
    flex-direction: column;
    align-items: baseline;
  }


  .global_nav_list_link {
    font-size: 24px;
  }

  .header_logo_sp {
    width: min(23.076923076923077vw, 90px);
    display: block;
  }
}

/* ============== フッター ================== */

.site_footer {
  background: var(--color-red);
  padding: 24px 0 60px 0;
}
@media (max-width:920px) {
  .site_footer {
    padding: 24px 0 128px;
  }
}
.footer_top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (max-width:920px) {
  .footer_top {
    flex-direction: column;
    gap: 20px;
  }
}

.footer_logo {
  max-width: 156px;
  transition: opacity .3s ease;
}

.footer_logo:hover {
  opacity: .6;
}

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

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

.footer_company_detailText {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width:920px) {
  .footer_company_detailText {
    font-size: 14px;
  }
}

.footer_company_detailText.no_link {
  color: var(--color-white);
  text-decoration: none;
  pointer-events: none;
}

.copyright {
  color: var(--color-white);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}

@media (max-width:920px) {
  .copyright {
    margin-top: 12px;
  }
}

/* ============== 追従CTA ================== */

.fixed_btn_container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
}

@media (max-width:768px) {
  .fixed_btn_container {
    bottom: 15px;
    right: inherit;
    /* right: 50%;
    transform: translateX(-50%); */
    width: 100%;
    padding: 0 20px;
  }
}

.fixed_btn {
  border-radius: 4px;
  border: 4px solid var(--color-red);
  padding: 7px 35px;
  background: var(--color-white);
  color: var(--color-red);
  font-family: var(--font-din);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  transition: color .3s ease, background-color .3s ease, border .3s ease;
}

@media (max-width:768px) {
  .fixed_btn {
    flex: 1;
    display: block;
    font-size: 16px;
  }
}

.fixed_btn:hover {
  color: var(--color-white);
  background-color: var(--color-red);
  border: 4px solid var(--color-white);
}



/* ============== INTERVIEWモーダル ================== */
/* モーダル */
/* ボタン */
.close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--color-red);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: transform 0.3s ease;
}

@media (max-width:768px) {
  .close-btn {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
}

.close_btn_bar {
  background-color: var(--color-white);
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  position: relative;
}

.close_btn_bar.bar_1 {
  transform: rotate(-45deg);
  top: 2px;
}

.close_btn_bar.bar_2 {
  transform: rotate(45deg);
  top: -1px;
}

/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 40%, .8);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


/* モーダル表示状態 */
.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.stop {
  overflow-y: hidden;
}

/* モーダルの中身*/
.modal-content {
  background: var(--color-white);
  /* padding: 62px 108px; */
  padding: clamp(32px, 4.1891891891891895vw, 62px) clamp(40px, 7.297297297297297vw, 108px);
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  margin: 0 20px;
}

@media (max-width:768px) {
  .modal-content {
    padding: 40px 20px;
    margin: 0 20px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: scroll;
  }
}

/* アニメーション*/
.modal.active .modal-content {
  animation: fadeInScale 0.4s ease forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.modal_content_wrapper {
  display: flex;
  gap: 120px;
  gap: clamp(32px, 8.108108108108109vw, 120px);
}

@media (max-width:768px) {
  .modal_content_wrapper {
    flex-direction: column;
    gap: 20px;

  }
}

.modal_content_left {
  position: sticky;
  top: 0;
}

@media (max-width:990px) {
  .modal_content_left {
    position: static;
  }
}

.modal_content_leftText {
  display: flex;
  align-items: end;
  gap: 20px;
}

.modal_content_leftText_left {
  display: flex;
  flex-direction: column;
}

.modal_content_leftText_right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* padding-bottom: 28px; */
  padding-bottom: min(1.891891891891892vw, 28px);
}
@media (max-width:768px) {
  .modal_content_leftText_right {
    padding-bottom: 10px;
  }
}
.modal_interview,
.modal_interview_num,
.modal_interview_year,
.modal_interview_name {
  color: var(--color-red);
}

.modal_interview {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.modal_interview_num {
  font-family: var(--font-din);
  font-weight: 400;
  /* font-size: 97px; */
  font-size: clamp(40px, 6.5540540540540535vw, 97px);
  line-height: 1.2;
  margin-top: -9px;
}

.modal_interview_year {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.1em;

}

.modal_interview_name {
  font-weight: 400;
  font-size: clamp(20px, 2.027027027027027vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.1em;

}

.modal_interview_img {
  margin-top: 12px;
}

.modal_text_container {
  max-height: 700px;
  overflow-y: scroll;
  padding: 0 20px 100px 0;
}
@media (max-width:768px) {
  .modal_text_container {
  max-height: none;
  overflow-y: auto;
    padding: 0 0 80px 0;
}
}
.modal_title {
  font-size: clamp(16px, 1.6216216216216217vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
}

.modal_QandA_container {
  display: flex;
  flex-direction: column;
  /* gap: 64px; */
  gap: clamp(32px, 4.324324324324325vw, 64px);
  margin-top: clamp(28px, 3.581081081081081vw, 52px);
}

.modal_QandA {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal_question {
  color: var(--color-red);
  /* font-size: 20px; */
  font-size: clamp(14px, 1.3513513513513513vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
}

.q_mark {
  font-family: var(--font-din);
  font-size: 30px;
  font-weight: 200;
}

.modal_answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
  max-width: 464px;
}
@media (max-width:768px) {
  .modal_answer {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.8;
  }
}

/*下からふわっと*/
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(2px);
  transition:
          opacity .6s ease,
          transform .6s ease,
          filter .6s ease;
  will-change: opacity, transform, filter;
}

/* 表示状態 */
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}


.footer_company_detailText{
  color:#ffffff !important;
}
/* デフォルト（PCなど）：見た目はリンクでもクリックできない */
.footer_company_detailText.no_link {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}

/* スマホサイズだけタップ有効にする */
@media (max-width: 768px) {
  .footer_company_detailText.no_link {
    pointer-events: auto;
  }
}
