@font-face {
  font-family: "highreso-sans";
  src: url("../font/highresosansL02.woff2") format("woff2");
}

:root {
  --recruit-blue: #3373a4;
}

/* すべての要素に共通させる「構造」の設定 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 文字や色の基本設定は body に（継承を活かす） */

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  font-feature-settings: "palt"; /* 文字詰め */
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
}

/* フォーム要素は個別に font-feature-settings をリセットするのが安全 */
input,
textarea,
select,
button {
  font: inherit;
  font-feature-settings: normal;
}

/* 箇条書きやリンクの基本リセット */
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の扱い */
img {
  display: block; /* bottomの隙間対策。vertical-alignより強力 */
  max-width: 100%;
  height: auto; /* object-fitを使う場合はセットで */
  object-fit: cover;
}

/* その他、ご提示いただいた便利な設定 */
strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}
body:has(header.navopen) {
  overflow: hidden;
}

@media (width > 1001px) {
  .is-sp {
    display: none !important;
  }
}
@media (width <= 1000px) {
  .is-pc {
    display: none !important;
  }
}

.loader-container {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
}

.logo-wrapper {
  position: relative;
  width: 200px; /* ロゴのサイズに合わせて調整 */
}

.logo {
  width: 100%;
  display: block;
}

/* カラーロゴの設定 */
.logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  /* 下から上へ色をつけるため、上方向(top)を100%から0%へ動かす */
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.1s ease-out;
}

.progress-text {
  margin-top: 20px;
  font-weight: bold;
}

#content {
  display: none;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #8db09e, #00508e);
  z-index: -1;
  opacity: 0.8;
}

.hero__movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__title {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  visibility: hidden;
  position: relative;
  top: 10%;
}

/* 1文字ずつのスタイル */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

/* hero__title の .char はすぐアニメーション（startTyping で制御） */
.hero__title .char {
  animation: fadeInChar 0.5s ease forwards;
}

/* h2Title の .char は is-visible が付くまで止める */
.h2Title .char {
  animation: none; /* is-visible が付くまで停止 */
}

.h2Title.is-visible .char {
  animation: fadeInChar 0.5s ease forwards;
}

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

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-txt {
  font-family: highreso-sans, sans-serif;
  letter-spacing: -0.12em;
}

.hero__scroll-arrow {
  animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

@media (width <= 1000px) {
  .hero__title {
    font-size: 30px;
    line-height: 1.46em;
    text-align: center;
    position: absolute;
    top: auto;
    bottom: calc(50% + 30vw);
  }
  .hero__movie {
    position: static;
    height: 56.25vw;
  }
}

.head-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  gap: 30px;
  height: 110px;
  transition: 0.2s background-color ease-out;
}

.head-top.scrolled {
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.headLogo {
  position: relative;
}

.headLogo:hover {
  opacity: 0.7;
}

.headLogo__img {
  transition: opacity 0.2s ease;
}

/* カラーロゴは最初は透明、白ロゴの上に重ねる */
.headLogo__img--color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.head__content {
  flex: 1;
}

.head__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.head__inner-title {
  font-family: highreso-sans, sans-serif;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.12em;
  transition: 0.2s color ease-out;
}

.head__inner-title:hover {
  opacity: 0.7;
}

.scrolled .head__inner-title {
  color: #000;
}

.head__entry {
  font-family: highreso-sans, sans-serif;
  font-size: 18px;
  letter-spacing: -0.12em;
  width: 137px;
  height: 43px;
  border-radius: 43px;
  background-color: #eedb15;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.head__entry:hover {
  opacity: 0.7;
}

.head__entry::after {
  content: url(../img/recruit/icon_blank.svg);
}

.headNav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.headNav__link {
  color: #fff;
  transition: 0.2s color ease-out, 0.2s opacity ease-out;
}

.scrolled .headNav__link {
  color: #000;
}

.headNav__link:hover {
  opacity: 0.7;
}
.scrolled .headNav__link:hover {
  color: var(--recruit-blue);
  opacity: 1;
}

.headNav__link.contact::after {
  content: "→";
  margin-left: 5px;
}

@media (width <= 1220px) {
  .headNav__list {
    gap: 20px;
  }
  .headNav__link {
    font-size: 14px;
  }
}
@media (width > 1000px) {
  .spHamburger,
  .headNav-blank__list {
    display: none;
  }
}
@media (width <= 1000px) {
  html:has(.sp-open) {
    overflow: hidden;
  }
  .head-top {
    height: 60px;
    padding-right: 0px;
    padding-left: 10px;
    gap: 10px;
  }
  .head-top.sp-open {
    background-color: #000;
  }
  .head__inner-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
  }
  .headNav {
    position: fixed;
    width: 100%;
    height: calc(100dvh - 60px);
    top: 60px;
    left: 0px;
    padding-top: 50px;
    opacity: 0;
    visibility: hidden;
    background-color: #000;
  }
  .headNav.is-animating {
    display: block;
  }
  .sp-open .headNav {
    visibility: visible;
    opacity: 1;
  }
  .headNav__list {
    flex-flow: column;
    gap: 20px;
    width: 300px;
    margin: 0 auto;
  }

  .headNav__item {
    padding-bottom: 10px;
    border-bottom: 1px solid #323232;
  }

  .headNav__link {
    display: block;
    text-align: center;
  }

  .scrolled .headNav__link {
    color: #fff;
  }
  .scrolled .head__inner-title {
    color: #000;
  }
  .scrolled.sp-open .head__inner-title {
    color: #fff;
  }
  .head__entry {
    position: fixed;
    bottom: 10px;
    right: 10px;
  }
  .spHamburger {
    width: 60px;
    height: 60px;
    background-color: #000;
    border: none;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    cursor: pointer;
    position: relative;
  }
  .spHamburger::before,
  .spHamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: #fff;
    transition: 0.2s all ease-out;
  }
  .spHamburger::before {
    box-shadow: 0px 9px 0 #fff;
  }
  .sp-open .spHamburger::before {
    position: absolute;
    left: 18px;
    top: 29px;
    transform: rotate(45deg);
    box-shadow: 0px 9px 0 rgba(255, 255, 255, 0);
  }
  .sp-open .spHamburger::after {
    position: absolute;
    left: 18px;
    top: 29px;
    transform: rotate(-45deg);
  }
  .headNav-blank__list {
    margin: 20px auto 0;
    width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .headNav-blank__item {
    line-height: 1em;
  }

  .headNav-blank__link {
    font-size: 14px;
    font-weight: 400;
    color: #969696;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    line-height: 1.428em;
  }

  .headNav-blank__link:hover {
    opacity: 0.7;
  }

  .headNav-blank__link[target="_blank"]::after {
    content: url(../img/recruit/icon_blank.svg);
    filter: brightness(0) saturate(0) invert(60%);
  }
}

.disc {
  margin-top: 120px;
  margin-bottom: 240px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 40px;
}

.disc__txt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}

.scrollAnime {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.scrollAnime.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 767px) {
  .disc {
    margin-top: 60px;
    margin-bottom: 120px;
    gap: 30px;
  }
  .disc__txt {
    font-size: 16px;
  }
}

.interview {
  margin-bottom: 240px;
}

.h2Title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.contentDisc {
  font-size: 20px;
  margin-bottom: 80px;
  margin-inline: auto;
  padding-inline: 20px;
  width: fit-content;
  display: block;
}

@media (width <= 767px) {
  .h2Title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contentDisc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.interview-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 357px));
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
  max-width: calc(100% - 80px);
  margin-inline: auto;
}

.interview-list__item {
  max-width: 357px;
  display: flex;
  flex-wrap: wrap;
}

.interview-list__link {
  flex: 1;
  border: 1px solid #646464;
  position: relative;
  transition: 0.2s border-color ease-out;
}

.interview-list__link:hover {
  border-color: var(--recruit-blue);
}

.interview-list__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.interview-list__inner {
  padding: 30px 30px 80px;
}

.interview-list__title {
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  gap: 7px;
}

.interview-list__occupation {
  font-weight: 700;
  line-height: 1.25em;
  transition: 0.2s color ease-out;
}

.interview-list__link:hover .interview-list__occupation {
  color: var(--recruit-blue);
}

.interview-list__name {
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25em;
  transition: 0.2s color ease-out;
}

.interview-list__link:hover .interview-list__name {
  color: var(--recruit-blue);
}

.interview-list__txt {
  font-size: 18px;
  line-height: 1.66em;
  transition: 0.2s color ease-out;
}

.interview-list__link:hover .interview-list__txt {
  color: var(--recruit-blue);
}

.interview-list__blank {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s background-color ease-out;
}

.interview-list__link:hover .interview-list__blank {
  background-color: var(--recruit-blue);
}

.interview-list__blank-img {
  filter: invert(1);
}

.interview__link {
  max-width: 460px;
  width: calc(100% - 80px);
  height: 90px;
  margin: 0 auto;
}

.btn {
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  transition:
    0.2s border-color ease-out,
    0.2s background-color ease-out,
    0.2s color ease-out;
}

.btn:hover {
  border-color: var(--recruit-blue);
  background-color: var(--recruit-blue);
  color: #fff;
}

.btn__txt {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
  flex: 1;
}

.btn__blank {
  width: 40px;
  height: 40px;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  transition: 0.2s background-color ease-out;
}

.btn:hover .btn__blank {
  background-color: #fff;
}

.btn__blank-img {
  filter: invert(1);
}

.btn:hover .btn__blank-img {
  filter: invert(40%) sepia(50%) saturate(600%) hue-rotate(175deg)
    brightness(90%) contrast(90%);
}

@media (width <= 1000px) {
  .interview-list {
    grid-template-columns: repeat(2, minmax(0, 355px));
    gap: 30px;
  }
}
@media (width <= 767px) {
  .interview {
    margin-bottom: 120px;
  }
}
@media (width <= 640px) {
  .interview-list {
    grid-template-columns: repeat(1, minmax(0, 355px));
    gap: 30px;
    margin-bottom: 40px;
  }
  .interview-list__inner {
    padding: 20px 20px 60px;
  }
  .interview-list__img {
    height: 183px;
    object-position: top;
  }
  .interview-list__title {
    margin-bottom: 15px;
    gap: 5px;
  }
  .interview-list__occupation {
    font-size: 14px;
  }
  .interview-list__name {
    font-size: 24px;
  }
  .interview-list__txt {
    font-size: 16px;
  }
  .interview-list__blank {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  .interview__link {
    max-width: 355px;
    font-size: 16px;
  }
  .btn {
    padding: 0px 20px;
    height: 60px;
    font-size: 18px;
  }
  .btn__blank {
    width: 30px;
    height: 30px;
  }
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #646464;
  border-bottom: 1px solid #646464;
  margin-bottom: 120px;
}

.about-list__content {
  width: 50%;
  border-bottom: 1px solid #646464;
}

.about-list__content:nth-child(odd) {
  border-right: 1px solid #646464;
}
.about-list__content:first-child:nth-last-child(odd)
  ~ .about-list__content:last-child,
.about-list__content:first-child:nth-last-child(even)
  ~ .about-list__content:nth-last-child(-n + 2) {
  border-bottom: none;
}

.about-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.about-list__link::after {
  content: "";
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  transition:
    0.5s opacity ease-out,
    0.5s width cubic-bezier(0.08, 0.92, 0.35, 1),
    0.5s height cubic-bezier(0.08, 0.92, 0.35, 1);
}

.about-list__link:hover::after,
.is-touch-device .about-list__link::after {
  width: calc(100% - 100px);
  height: calc(100% - 100px);
}

.about-list__dl {
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border: 50px solid #fff;
  transition: 0.2s border-width cubic-bezier(0.79, 0.17, 0.15, 0.96) 0.2s;
}

.about-list__link:hover .about-list__dl,
.is-touch-device .about-list__link .about-list__dl {
  border-width: 0px;
  transition: 0.2s border-width cubic-bezier(0.79, 0.17, 0.15, 0.96);
}

.about-list__en {
  font-family: highreso-sans, sans-serif;
  font-size: 40px;
  letter-spacing: -0.12em;
  line-height: 1.2em;
}

.about-list__jp {
  font-size: 20px;
  margin-top: 15px;
  line-height: 1.5em;
}

.about-list__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s transform ease-out;
}

.about-list__link:hover .about-list__img,
.is-touch-device .about-list__link .about-list__img {
  transform: scale(1.1);
  transition: 3s transform ease-out;
}

@media (width <= 767px) {
  .about-list__link {
    height: 206px;
  }
  .about-list__link:hover::after,
  .is-touch-device .about-list__link::after {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .about-list__dl {
    border-width: 20px;
  }
  .about-list__en {
    font-size: 32px;
  }
  .about-list__jp {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media (width <= 540px) {
  .about-list {
    margin-bottom: 0px;
  }
  .about-list__content {
    width: 100%;
  }
  .about-list__content:nth-child(odd) {
    border-right: none;
  }
}

.occupation {
  margin-bottom: 120px;
  position: relative;
  color: #fff;
  padding: 120px 20px;
  overflow: hidden;
}

.occupation::before {
  content: "";
  background: url(../img/recruit/occupation.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(5px);
  z-index: -2;
}

.occupation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #8db09e, #00508e);
  opacity: 0.8;
  z-index: -1;
}

.occupation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 966px;
  margin: 0 auto;
}

.occupation-list__link {
  border-color: #fff;
  transition: 0.2s background-color ease-out;
}

.occupation-list__link:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--recruit-blue);
}

.occupation-list__txt {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  transition: 0.2s color ease-out;
}

.occupation-list__link:hover .occupation-list__txt {
  color: inherit;
}

.btn__blank.occupation-list__blank {
  background-color: #fff;
}
.occupation-list__link:hover .btn__blank.occupation-list__blank {
  background-color: var(--recruit-blue);
}
.btn__blank-img.occupation-list__blank--img {
  filter: invert(0);
  transition: 0.2s filter ease-out;
}

.occupation-list__link:hover .btn__blank-img.occupation-list__blank--img {
  filter: invert(1);
}

@media (width <= 767px) {
  .occupation {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
  .occupation-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .occupation-list__txt {
    font-size: 18px;
  }
}

.value {
  margin-bottom: 240px;
}

.grid-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 430px));
  border-top: 1px solid #646464;
  border-bottom: 1px solid #646464;
  padding-inline: 20px;
  margin-top: 80px;
}

.grid-list__item {
  border-right: 1px solid #646464;
  border-bottom: 1px solid #646464;
  padding: 40px 20px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}

.grid-list__title {
  font-size: 20px;
  font-weight: 700;
}

.grid-list__title--small {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.grid-list__circle {
  width: 160px;
  height: 160px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ebf1f6;
  border-radius: 50%;
}

.grid-list__circle-img {
  width: 50%;
}

.grid-list__txt {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}

@media (width > 768px) {
  .grid-list__item:nth-child(3n + 1) {
    border-left: 1px solid #646464;
  }
  .grid-list__item:first-child:nth-last-child(3n + 1)
    ~ .grid-list__item:last-child,
  .grid-list__item:first-child:nth-last-child(3n + 2)
    ~ .grid-list__item:nth-last-child(-n + 2),
  .grid-list__item:first-child:nth-last-child(3n)
    ~ .grid-list__item:nth-last-child(-n + 3) {
    border-bottom: none;
  }
}

@media (width <= 767px) {
  .grid-list {
    margin-top: 40px;
  }
  .value {
    margin-bottom: 120px;
  }
}

@media (width <= 767px) and (width > 541px) {
  .grid-list {
    grid-template-columns: repeat(2, minmax(0, 430px));
  }
  .grid-list__item:nth-child(2n + 1) {
    border-left: 1px solid #646464;
  }
  .grid-list__item:first-child:nth-last-child(2n + 1)
    ~ .grid-list__item:last-child,
  .grid-list__item:first-child:nth-last-child(2n + 2)
    ~ .grid-list__item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
@media (width <= 540px) {
  .grid-list {
    grid-template-columns: 1fr;
    padding-inline: 0px;
  }
  .grid-list__item {
    border-right: none;
    gap: 20px;
    padding: 30px 20px;
  }
  .grid-list__item:last-child {
    border-bottom: none;
  }
  .grid-list__title {
    font-size: 16px;
  }
  .grid-list__title--small {
    font-size: 14px;
  }
  .grid-list__txt {
    font-size: 14px;
  }
}

.env {
  margin-bottom: 240px;
}

@media (width <= 767px) {
  .env {
    margin-bottom: 120px;
  }
}

.faq {
  margin-bottom: 180px;
}

.faqNav {
  margin-top: 80px;
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: 20px;
}

.faqNav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: fit-content;
}

.faqNav__link {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 35px;
  border-radius: 100px;
  background-color: #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  line-height: 1.5em;
  transition:
    0.2s background-color ease-out,
    0.2s color ease-out;
}

.faqNav__link:hover {
  background-color: var(--recruit-blue);
  color: #fff;
}

.faqNav__arrow {
  width: 30px;
  height: 30px;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s background-color ease-out;
}

.faqNav__link:hover .faqNav__arrow {
  background-color: #fff;
}

.faqNav__arrow--img {
  transition: 0.2s filter ease-out;
}

.faqNav__link:hover .faqNav__arrow--img {
  filter: invert(1);
}

.faq__wrap {
  max-width: 966px;
  width: 90%;
  margin: 0 auto;
}

.faqTitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-List + .faqTitle {
  margin-top: 120px;
}

.faq-List {
  border-top: 1px solid #646464;
}

.faq-List__item {
  border-bottom: 1px solid #646464;
  padding: 40px 100px 40px 30px;
  position: relative;
}

.faq-list__question {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.faq-list__question--txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  flex: 1;
}

.faq-list__question::before {
  content: "Q";
  font-family: Outfit, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.faq-list__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.3s ease-out,
    visibility 0.3s ease-out,
    opacity 0.3s ease-out,
    margin-top 0.3s ease-out;
  opacity: 0;
  flex: 1;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0px;
  gap: 30px;
}

.faq-List__item.open .faq-list__answer {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  margin-top: 45px;
}

.faq-list__answer::before {
  content: "A";
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  min-height: 0;
}

.faq-list__answer--txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  flex: 1;
  min-height: 0;
}

.faq-list__answer--txt a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list__answer--txt a:hover {
  color: var(--recruit-blue);
}

.faq-List__toggle {
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 30px;
}

.faq-List__toggle:hover {
  background-color: var(--recruit-blue);
  color: #fff;
}

[id] {
  scroll-margin-top: 120px;
}

@media (width <= 1000px) {
  [id] {
    scroll-margin-top: 80px;
  }
}
@media (width <= 820px) {
  .faqNav__list {
    width: 500px;
  }
}
@media (width <= 767px) {
  [id] {
    scroll-margin-top: 40px;
  }
  .faq {
    margin-bottom: 80px;
  }
  .faqNav {
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .faqTitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .faq-List + .faqTitle {
    margin-top: 60px;
  }
  .faq-List__item {
    padding: 25px 45px 20px 0px;
  }
  .faq-list__question {
    gap: 15px;
  }
  .faq-list__question--txt {
    font-size: 14px;
    line-height: 2em;
  }
  .faq-list__question::before {
    font-size: 18px;
    line-height: 28px;
  }
  .faq-List__toggle {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 0px;
    font-size: 14px;
  }
  .faq-List__item.open .faq-list__answer {
    margin-top: 22px;
  }
  .faq-list__answer {
    gap: 15px;
  }
  .faq-list__answer--txt {
    font-size: 14px;
  }
  .faq-list__answer::before {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (width <= 560px) {
  .faqNav__list {
    gap: 15px;
    width: 335px;
  }
  .faqNav__link {
    width: 160px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media (width <= 420px) {
  .faqNav {
    padding-inline: 0px;
  }
  .faqNav__list {
    gap: 10px;
    width: 290px;
  }
  .faqNav__link {
    width: 140px;
  }
}
footer {
  background-color: #000;
}

.foot__wrap {
  max-width: 1267px;
  width: 90%;
  margin: 0 auto;
  height: 300px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 30px;
}

.foot__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.foot__logo--txt {
  color: #fff;
  font-family: highreso-sans, sans-serif;
  font-size: 20px;
  letter-spacing: -0.12em;
}

.footNav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

.footNav__link {
  color: #fff;
  transition: 0.2s color ease-out;
}

.footNav__link:hover {
  opacity: 0.7;
}

.footNav__link.contact::after {
  content: "→";
  margin-left: 5px;
}

.foot-other {
  background-color: #323232;
  position: relative;
}

.foot-other__wrap {
  max-width: 1267px;
  width: 90%;
  margin: 0 auto;
  height: 130px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 26px;
}

.footNav-blank__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.footNav-blank__item {
  line-height: 1em;
}

.footNav-blank__link {
  font-size: 14px;
  font-weight: 400;
  color: #969696;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  line-height: 1.428em;
}

.footNav-blank__link:hover {
  opacity: 0.7;
}

.footNav-blank__link[target="_blank"]::after {
  content: url(../img/recruit/icon_blank.svg);
  filter: brightness(0) saturate(0) invert(60%);
}

.copyright {
  color: #969696;
  font-size: 12px;
  font-weight: 400;
}

.pagetop {
  position: absolute;
  z-index: 10;
  right: 50px;
  bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pagetop:hover {
  opacity: 0.7;
}

.pagetop__txt {
  color: #fff;
  font-family: highreso-sans, sans-serif;
  letter-spacing: -0.12em;
}

.pagetop__arrow {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pagetop__arrow--img {
  transform: rotate(180deg);
  filter: invert(1);
}

@media (width <= 480px) {
  .foot__wrap {
    height: 280px;
  }
  .foot__logo {
    gap: 0px 10px;
  }
  .foot__logo--img {
    width: 135px;
  }
  .foot__logo--txt {
    font-size: 14px;
  }
  .footNav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footNav__item {
    line-height: 1em;
  }
  .footNav__link {
    font-size: 13px;
  }
  .foot-other__wrap {
    height: 254px;
    justify-content: flex-start;
    padding-top: 20px;
    gap: 20px;
  }
  .footNav-blank__link {
    font-size: 12px;
  }
  .pagetop {
    bottom: 80px;
    right: 20px;
  }
  .copyright {
    font-size: 10px;
  }
}

.head-contact {
  border-bottom: 1px solid #646464;
  width: 100%;
  height: 90px;
  top: 0px;
  left: 0px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 0px 30px;
}

.head-contact__title {
  font-family: highreso-sans, sans-serif;
  font-size: 20px;
  letter-spacing: -0.12em;
}

.contact__wrap {
  max-width: 966px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 120px;
}

.contact__title {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 50px;
}

.contact__title--en {
  font-family: highreso-sans, sans-serif;
  font-weight: 400;
  font-size: 70px;
  letter-spacing: -0.12em;
  line-height: 1.2em;
}

.contact__title--jp {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.428em;
}

.contact__disc {
  font-weight: 400;
  margin-bottom: 80px;
  text-align: center;
  display: block;
}

.checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}

.checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox:checked {
  background-color: #000000;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.contact-form {
  margin-bottom: 80px;
}

.contact-form__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.hissu::after {
  content: "必須";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  width: 44px;
  height: 24px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact-form__content p {
  display: block;
}

.contact-form__content input[type="text"],
.contact-form__content input[type="tel"],
.contact-form__content textarea {
  border: 1px solid #969696;
  line-height: 1.875em;
  padding: 15px 20px;
  width: 100%;
}

.contact-form__content input[type="date"] {
  border: 1px solid #969696;
  line-height: 1.875em;
  padding: 15px 20px;
}

.contact-form__content *::placeholder {
  color: #dcdcdc;
}

.contact-form__content + .contact-form__title {
  margin-top: 40px;
}

.contact-form__privacy {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1em;
}

.contact-form__privacy a {
  color: var(--recruit-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1em;
}

.contact-form__privacy a[target="_blank"]::after {
  content: url(../img/recruit/icon_blank.svg);
  filter: invert(40%) sepia(50%) saturate(600%) hue-rotate(175deg)
    brightness(90%) contrast(90%);
  margin-left: 5px;
}

.contact-form__privacy a:hover {
  text-decoration: none;
}

p:has(.contact-form__submit) {
  width: 100%;
}

.contact-form__submit {
  background-color: var(--recruit-blue);
  color: #fff;
  width: 400px;
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 180px;
  border: none;
  cursor: pointer;
}

.contact-form__submit:disabled {
  background-color: #aaa;
}

.contact-form__submit:hover {
  opacity: 0.7;
}

.contact-form__submit::after {
  content: url(../img/recruit/icon_arrowright.svg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 0px;
}



@media (width <= 767px) {
  .head-contact {
    height: 60px;
    padding: 0px 10px;
    gap: 10px;
  }
  .head-contact__logo img {
    width: 135px;
  }
  .head-contact__title {
    font-size: 14px;
  }
  .contact__wrap {
    padding-top: 60px;
  }
  .contact-form {
    margin-bottom: 40px;
  }
  .contact__title {
    gap: 30px;
  }
  .contact__title--en {
    font-size: 40px;
  }
  .contact__title--jp {
    font-size: 20px;
  }
  .contact__disc {
    font-size: 14px;
    text-align: left;
    margin-inline: auto;
    width: fit-content;
    margin-bottom: 60px;
  }
  .contact-form__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hissu::after {
    height: 20px;
  }
  .contact-form__content input[type="text"],
.contact-form__content input[type="tel"],
  .contact-form__content textarea {
    padding: 15px;
  }
  .contact-form__content + .contact-form__title {
    margin-top: 30px;
  }
  .contact-form__privacy {
    margin-bottom: 60px;
  }
  .contact-form__submit {
    max-width: 295px;
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding: 0px 20px;
    margin-bottom: 80px;
  }
  .contact-form__submit::after {
    width: 30px;
    height: 30px;
  }
}
