/* Header全体のスタイル */
.header-wrapper {
  background-color: #ffffff;
  color: #000000;
  padding: 36px 48px;
  box-sizing: border-box;
  position: relative;
}

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

/* 左側のロゴとタイトル */
.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 41px;
  margin-right: 30px;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.8px;
}

/* 右側のハンバーガーメニュー */
.header-menu {
  display: none;
}

.header-menuTrigger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-menuIconLine {
  width: 43px;
  height: 1px;
  background-color: #000000;
  margin-bottom: 5px;
  display: inline-block;
}

.header-menuIconLine:nth-child(3) {
  width: 21px;
  margin-left: auto;
}

.header-menuText {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #000000;
}

/* メニューオーバーレイ */
.header-menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222222;
  color: #ffffff;
  display: none;
  justify-content: center;
  z-index: 1000;
  transition:
    opacity 0.3s,
    display 0.3s allow-discrete;
  overflow-y: auto;
}
@starting-style {
  .header-menuOverlay {
    opacity: 0;
  }
}
.header-menuOverlay:not(.active) {
  opacity: 0;
}
.header-menuOverlay.active {
  display: flex;
}

.header-menuContent {
  position: relative;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.header-menuClose {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 16px;
  right: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-menuIconLineClose {
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #000000;
  top: calc(50% - 7px);
  left: calc(50% - 10px);
  transform-origin: center;
}

.header-menuIconLineClose:first-child {
  transform: rotate(45deg);
}

.header-menuIconLineClose:nth-child(2) {
  transform: rotate(-45deg);
}

.header-closeText {
  margin-top: 35px;
  font-size: 12px;
  color: #000000;
}

/* ハンバーガーメニュー ページ内ジャンプ */
.header-menuList-inPageJump {
  padding-right: 10px;
  padding-left: 20px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-menuList-inPageJump-item {
  font-size: 18px;
  font-weight: 700;
  color: #888888;
  line-height: 1;
  padding: 23px 0 23px;
}

/* ハンバーガーメニュー ページ外ジャンプ */
.header-menuList-outPageJump {
  padding: 0 20px;
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-menuList-outPageJump-item {
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 25px;
}

.header-menuList-outPageJump-item::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  margin-top: 8px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.header-menuList-outPageJump-item:last-child {
  margin-bottom: 0;
}

/* ハンバーガーメニュー SNSジャンプ */
.header-menuList-snsJump {
  padding: 0 20px 50px;
  margin-top: 72px;
  display: flex;
  text-align: left;
}

/* HeaderのSP用スタイル */
@media (max-width: 768px) {
  .header-wrapper {
    padding: 20px 16px;
  }
  .header-logo {
    width: 44px;
    height: 27px;
    margin-right: 10px;
  }
  .header-title {
    font-size: 16px;
  }
  .header-menu {
    display: block;
  }
  .header-menuContent {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
} /* MainVisual全体のスタイル */
.mainVisual-wrapper {
  display: flex;
  align-items: center;
  background-color: #222222;
  width: 100%;
  max-height: 664px;
  height: calc(100vw * 0.52);
}

.mainVisual-wrapper h1 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 425px;
  max-width: 1280px;
  color: #ffffff;
  background-image: url('../src/bg_mainVisual.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1030px auto;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .mainVisual-wrapper h1 {
    background-size: calc(100vw * 0.8) auto;
  }
  .mainVisual-wrapper h1 img {
    width: calc(100vw * 0.62);
    height: auto;
  }
}
@media (max-width: 768px) {
  .mainVisual-wrapper {
    min-height: 202px;
    height: calc(100vw * 0.54);
  }
} /* Reasons全体のスタイル */
.reasons-wrapper {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  min-height: 510px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 90px;
}

/* 左カラム（画像） */
.reasons-image {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.reasons-image img {
  object-fit: cover;
}

.reasons-image-smt {
  display: none;
}

/* 右カラム（テキストと画像） */
.reasons-article {
  flex-shrink: 1;
  padding: 0 32px;
  max-width: calc(100% - 458px);
}

.reasons-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2.8px;
}

.reasons-heading-image_pc {
  width: 100%;
  height: auto;
  max-width: 705px;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 5px solid #696969;
}

.reasons-heading-image_smt {
  display: none;
  width: 100%;
  height: auto;
  max-width: 280px;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 5px solid #696969;
}

.reasons-text {
  max-width: 822px;
  font-size: 16px;
  line-height: 1.5;
  text-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  letter-spacing: 3px;
}

/* 見出し画像の切り替え */
@media (max-width: 1000px) {
  .reasons-heading-image_pc {
    display: none;
  }

  .reasons-heading-image_smt {
    display: block;
  }
}

/* ReasonsのSP用スタイル */
@media (max-width: 768px) {
  .reasons-wrapper {
    flex-direction: column-reverse;
    min-height: auto;
    margin-bottom: 45px;
  }

  .reasons-image,
  .reasons-article {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .reasons-image-pc {
    display: none;
  }

  .reasons-image-smt {
    display: block;
    max-height: 250px;
    width: 100%;
  }

  .reasons-image img {
    object-fit: cover;
    object-position: bottom;
  }

  .reasons-article {
    padding: 45px 15px 0;
  }

  .reasons-title {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .reasons-heading-image_smt {
    padding-bottom: 20px;
  }

  .reasons-text {
    font-size: 14px;
    margin-bottom: 45px;
  }
} /* ExternalLink全体のスタイル */
.externalLink-wrapper {
  padding: 90px 15px;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* RecruitInfoの背景画像 */
.externalLink-wrapper.is-recruitInfo {
  background-image: url('../src/bg_recruitInfo_pc.webp');
}

/* Aboutの背景画像 */
.externalLink-wrapper.is-about {
  background-image: url('../src/bg_about_pc.webp');
}
.externalLink-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 28px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
/* タイトル */
.externalLink-title {
  max-width: 500px;
  color: #fff;
}
.externalLink-title h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.8px;
}
.externalLink-title img {
  display: block;
  padding: 14px 0;
  width: auto;
  height: 75px;
  border-bottom: 5px solid #fff;
}
.externalLink-wrapper.is-recruitInfo .externalLink-title img {
  padding-bottom: 0;
}
.externalLink-title .externalLink-titleSP {
  display: none;
}
/* ボタン */
.externalLink-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 20px 42px;
  color: #222;
  background-color: #fff;
  border-radius: 12px;
  transition: 0.3s;
}
.externalLink-buttonText {
  font-size: 18px;
  font-weight: 700;
}
.externalLink-buttonArrow {
  margin-left: 24px;
}
.externalLink-buttonArrow path {
  transition: 0.3s;
}
/* ボタンホバー */
.externalLink-button:hover {
  color: #fff;
  background-color: #696969;
}
.externalLink-button:hover .externalLink-buttonArrow path {
  fill: #fff;
}
/* ExternalLinkのSP用スタイル */
@media (max-width: 768px) {
  .externalLink-wrapper {
    padding: 45px 15px;
    background-position: center top;
  }
  .externalLink-wrapper.is-recruitInfo {
    background-image: url('../src/bg_recruitInfo_smt.webp');
  }
  .externalLink-wrapper.is-about {
    background-image: url('../src/bg_about_smt.webp');
  }
  .externalLink-title {
    width: 100%;
    max-width: none;
  }
  .externalLink-title h2 {
    font-size: 15px;
  }
  .externalLink-title h3 {
    margin-top: 8px;
  }
  .externalLink-title .externalLink-titlePC {
    display: none;
  }
  .externalLink-title .externalLink-titleSP {
    display: block;
    height: 60px;
    padding: 15px 0;
  }
} /* Flow全体のスタイル */
.flow-wrapper {
  background-color: #ffffff;
  color: #000000;
  padding: 90px 15px;
  text-align: left;
}

.flow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2.8px;
}

.flow-heading-image {
  border-bottom: 5px solid #696969;
  height: auto;
  max-height: 68px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.flow-heading-image_smt {
  display: none;
}

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

.flow-item {
  width: 224px;
  height: 224px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  letter-spacing: 3px;
}

.flow-item-image {
  margin-bottom: 16px; /* 画像とテキストの間に余白を追加 */
}

.flow-item-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.flow-item-text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

/* 項目ごとに異なる余白調整 */
.flow-item-01 .flow-item-image {
  margin-bottom: 33px;
}

.flow-item-02 .flow-item-image {
  margin-bottom: 29px;
}

.flow-item-03 .flow-item-image {
  margin-bottom: 26px;
}

.flow-item-04 .flow-item-image {
  margin-bottom: 26px;
}

/* Flowのタブレット・小型PC向けスタイル */
@media (max-width: 1000px) {
  .flow-wrapper {
    padding: 45px 15px 87px;
  }

  .flow-heading-image_pc {
    display: none;
  }

  .flow-heading-image_smt {
    display: block;
  }

  .flow-content {
    flex-direction: column;
    gap: 30px;
  }

  .flow-title {
    font-size: 15px;
  }

  .flow-item {
    flex: none;
    max-width: 100%;
  }
} /* FAQ全体のスタイル */
.faq-wrapper {
  background-color: #ffffff;
  color: #000000;
  padding: 90px 15px 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2.8px;
}

.faq-heading-image {
  display: block;
  border-bottom: 5px solid #696969;
  height: auto;
  max-height: 68px;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.faq-heading-image_smt {
  display: none;
}

.faq-item {
  border: 1px solid #222222;
  border-radius: 5px;
  position: relative;
  padding: 20px 80px;
  margin-bottom: 32px;
}

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

.faq-label {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #222222;
  color: #ffffff;
  padding: 3px 12px;
  font-size: 12px;
}

.faq-item-question {
  display: flex;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.faq-item-answer {
  display: flex;
  align-items: center;
  padding-top: 12px;
}

.faq-item-question {
  border-bottom: 2px solid rgba(220, 220, 220, 0.5);
}

/* QAアイコン */
.faq-item-question-icon {
  width: 27px;
  height: auto;
  margin-right: 17px;
}
.faq-item-answer-icon {
  width: 26px;
  height: auto;
  margin-right: 13px;
}

.faq-item-question-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}

.faq-item-answer-text {
  width: calc(100% - 39px); /* icon width (26px) + margin-right (13px) */
  font-size: 18px;
  font-weight: 500;
  overflow-wrap: break-word;
  letter-spacing: 3px;
}

/* FAQのSP用スタイル */
@media (max-width: 768px) {
  .faq-wrapper {
    padding: 50px 15px 0;
  }
  .faq-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .faq-item {
    padding: 47px 20px 20px;
    margin-bottom: 40px;
  }

  .faq-heading-image {
    padding-bottom: 0px;
  }

  .faq-heading-image_smt {
    display: block;
  }

  .faq-heading-image_pc {
    display: none;
  }
  .faq-label {
    top: 0;
    right: 20px;
  }

  .faq-item-question {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .faq-item-answer {
    padding-top: 25px;
  }

  .faq-item-question-icon {
    width: 24px;
    margin-right: 11px;
  }
  .faq-item-answer-icon {
    width: 20px;
    margin-right: 10px;
  }

  .faq-item-question-text {
    font-size: 15px;
    font-weight: 700;
  }

  .faq-item-answer-text {
    width: calc(100% - 30px); /* icon width (20px) + margin-right (10px) */
    font-size: 15px;
  }
} /* ForTop全体のスタイル */
.forTop-wrapper {
  background-color: #ffffff;
  text-align: right;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 0 89px;
}
.forTop-button {
  font-size: 12px;
  font-weight: 700;
  color: #222222;
  padding-bottom: 5px;
  border-bottom: 5px solid #696969;
  cursor: pointer;
}

.forTop-button img {
  margin-right: 5px;
  vertical-align: middle;
}

/* PC表示のスタイル（1000pxまで） */
@media (max-width: 1000px) {
  .forTop-wrapper {
    padding: 32px 15px 89px;
  }
}

/* ForTopのSP用スタイル */
@media (max-width: 768px) {
  .forTop-wrapper {
    padding: 40px 15px 45px;
  }
} /* Footer全体のスタイル */
.footer-wrapper {
  background-color: #000000;
  color: #ffffff;
  padding: 110px 0 118px;
  box-sizing: border-box;
}

.footer-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* 左側のカラムブロック */
.footer-navRecruit {
  display: flex;
  width: 520px;
  text-align: left;
  justify-content: space-between;
}

/* 右側のカラムブロック */
.footer-navInfo {
  text-align: right;
  justify-content: space-between;
}

.footer-navInfo div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100% - 84px);
}

/* 各ナビゲーションのカラム */
.footer-navColumn {
  flex: 1;
  min-width: 150px;
}

.footer-navColumn h3 {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 700;
}
/* レスポンシブ表示時の改行 */
.footer-navColumn h3 br {
  display: none;
}

.footer-navColumn ul {
  margin: 0;
  padding: 0;
}

.footer-navColumn a {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  transition: 0.6s;
}
.footer-navColumn.footer-navInfo {
  display: flex;
  flex-direction: column;
}

.footer-navInfo .footer-additionalInfo {
  display: flex;
  flex-grow: 2;
  flex-direction: column;
  justify-content: space-between;
}

.footer-navColumn a img {
  margin-left: 10px;
  vertical-align: middle;
}
a.footer-snsLink img {
  transition: 0.6s;
  margin-left: 0;
}

/* hover時のスタイル */
.footer-navColumn a:hover {
  color: #ffffff;
}
.footer-snsLink:hover img {
  opacity: 0.6;
}

a.footer-corporateLink {
  color: #ffffff;
  font-weight: 700;
}
.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* FooterのSP用スタイル */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* 左側のカラムブロック */
  .footer-navRecruit {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-navRecruit .footer-navColumn:first-child {
    padding-top: 0;
    border-top: none;
  }

  /* 右側のカラムブロック */
  .footer-navInfo {
    width: 100%;
    text-align: left;
    flex-direction: column;
  }

  .footer-navInfo.footer-navColumn .footer-additionalInfo {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    margin-top: 80px;
  }

  .footer-navInfo .footer-additionalInfo a {
    width: auto;
  }

  .footer-navInfo.footer-navColumn {
    align-items: flex-end;
  }

  .footer-navInfo.footer-navColumn ul {
    width: 55%;
  }

  /* 各ナビゲーションのカラム */
  .footer-navColumn {
    width: 100%;
    min-width: auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid #aaaaaa;
  }

  .footer-navColumn h3 {
    width: 45%;
    margin-bottom: 0;
  }

  /* レスポンシブ表示時の改行 */
  .footer-navColumn h3 br {
    display: block;
  }

  .footer-navColumn ul {
    width: 55%;
  }

  .footer-navColumn a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
}
