@charset "UTF-8";

/* =========================
共通
========================= */

:root {
  --black: #444444;
  --white: #fff;
  --yellow: #ffff00;
  --entryBtn: #a1080b;
  --fz16: clamp(14px, 1.333vw, 16px);
  --fz18: clamp(14px, 1.5vw, 18px);
  --fz20: clamp(16px, 1.666vw, 20px);
  --fz22: clamp(17px, 1.8333vw, 22px);
  --fz25: clamp(18px, 2.083vw, 25px);
  --fz30: clamp(20px, 2.5vw, 30px);
  --fz35: clamp(22px, 2.9167vw, 35px);
  --fz40: clamp(24px, 3.3333vw, 40px);
  --fz48: clamp(25px, 4vw, 48px);
  --fz50: clamp(26px, 4.1667vw, 50px);
  --fz80: clamp(40px, 6.6667vw, 80px);
  --fz100: clamp(2.25rem, 0.432rem + 7.76vw, 6.25rem);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 290px;
  @media only screen and (max-width: 899px) {
    scroll-padding-top: 80px;
  }
  @media only screen and (max-width: 499px) {
    scroll-padding-top: 60px;
  }
}
body {
  background: url("../images/top/bg-pattern.png"), linear-gradient(180deg, #1989bc 0%, #1a89bd 20%, #150122 43%, #17456f 65%, #172951 70%, #162349 85%, #06b3da 98%);
  background-repeat: repeat, no-repeat;
  background-size: 100% auto, cover;
  background-blend-mode: normal;
  font-size: var(--fz20);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.05em;
  @media only screen and (max-width: 499px) {
    background: url("../images/top/bg-pattern.png"), linear-gradient(180deg, #1989bc 0%, #1a89bd 10%, #150122 30%, #17456f 55%, #172951 60%, #162349 85%, #06b3da 98%);
    background-repeat: repeat, no-repeat;
    background-size: 100% auto, cover;
    background-blend-mode: normal;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.9;
}

li {
  list-style: none;
}

.pc-only {
  display: block;
  @media only screen and (max-width: 767px) {
    display: none;
  }
}

.sp-only {
  display: none;
  @media only screen and (max-width: 767px) {
    display: block;
  }
}

/* 共通タイトル */
.page-heading {
  text-align: center;
}

.page-heading__title {
  font-size: var(--fz35);
  letter-spacing: 0.1em;
  line-height: 1.42;
  font-weight: bold;
  color: var(--yellow); /* 黄色系 */
}
@media only screen and (max-width: 768px) {
  .page-heading {
    padding-top: 75px;
    margin-bottom: 30px;
  }
}
/* =========================
ヘッダー 
========================= */

.site-header {
  background-color: var(--white);
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
}

/* 固定された状態 */
.site-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: headerFadeSlide 0.45s ease-out;
}
@keyframes headerFadeSlide {
  from {
    transform: translateY(-12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body.has-fixed-header {
  padding-top: var(--header-height, 0px);
}

.site-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-header__logo-link {
  display: block;
  padding: 23px 0 0 27px;
}

.site-header__logo-image {
  max-width: 180px;
}

/* エントリーボタン（赤ブロック） */
.site-header__entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--entryBtn);
  padding: 3rem 6rem;
}

.site-header__entry-text {
  font-size: var(--fz25);
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 2;
}

.site-header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* グロナビ */

.site-header__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 1.5rem;
}

.site-header__nav-link {
  text-decoration: none;
  font-size: var(--fz20);
  color: var(--black);
  letter-spacing: 0.1em;
}

.site-header__nav-link:hover {
  opacity: 0.7;
}

/* インスタアイコン */
.site-header__sns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header__sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.site-header__sns-icon {
  max-width: 60px;
}

.site-header__sns-label {
  font-size: var(--fz16);
  color: var(--black);
  letter-spacing: 0.1em;
}

/* ▼ ハンバーガーボタン */
.site-header__toggle {
  display: none; /* SPでだけ表示（@media内で上書き） */
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  margin-left: auto;
  align-items: center;
  gap: 0.8rem; /* 三本線と「MENU」の間 */
}

/* 三本線を縦並びにするラッパー */
.site-header__toggle-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px; /* 線同士の間隔 */
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--black);
}
/* メニューオープン時のバツ印アニメ */
.site-header--nav-open .site-header__toggle-lines .site-header__toggle-bar:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header--nav-open .site-header__toggle-lines .site-header__toggle-bar:nth-of-type(2) {
  opacity: 0;
}
.site-header--nav-open .site-header__toggle-lines .site-header__toggle-bar:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media only screen and (max-width: 899px) {
  .site-header {
    padding-bottom: 0;
  }

  .site-header__top {
    justify-content: flex-start;
    align-items: stretch;
  }

  .site-header__toggle {
    display: flex;
    padding: 0 1.5rem;
    position: relative;
    z-index: 9999;
  }
  .site-header__sns-icon {
    max-width: 45px;
  }

  .site-header__entry-link {
    display: flex;
    align-items: center;
    padding: 0 2rem;
  }

  .site-header__entry-text {
    font-size: var(--fz20);
    line-height: 1;
  }

  .site-header__logo-link {
    padding: 1rem 0 0 1rem;
  }

  .site-header__logo-image {
    max-width: 100px;
  }

  .site-header__bottom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: var(--header-height, 80px);
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 90;
  }

  .site-header--nav-open .site-header__bottom {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__inner {
    max-width: 100%;
    margin: 0;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: var(--white);
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
  }

  .site-header__nav-link {
    font-size: var(--fz18);
  }

  .site-header__sns {
    justify-content: flex-start;
    gap: 1rem;
  }

  body.is-nav-open {
    overflow: hidden;
  }
}

@media only screen and (max-width: 499px) {
  .site-header__logo-image {
    max-width: 75px;
  }
}
@media only screen and (max-width: 349px) {
  .site-header__entry-text {
    font-size: 11px;
    white-space: nowrap;
  }
}
/* =========================
メインビジュアル
========================= */

.main-visual__pc {
  display: block;
}

.main-visual__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-visual__pc {
    display: none;
  }
  .main-visual__sp {
    display: block;
  }
}

/* =========================
 お知らせセクション
========================= */
.news-section {
  padding-top: 95px;
}

.news-section__card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem 3.5rem;
}

.news-section__title {
  font-family: "Rampart One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fz25);
  line-height: 1.6;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--white);
  text-shadow: -2px -2px 0 rgba(0, 0, 0, 0.28), 0px -2px 0 rgba(0, 0, 0, 0.28), 2px -2px 0 rgba(0, 0, 0, 0.28), -2px 0px 0 rgba(0, 0, 0, 0.28), 2px 0px 0 rgba(0, 0, 0, 0.28), -2px 2px 0 rgba(0, 0, 0, 0.28), 0px 2px 0 rgba(0, 0, 0, 0.28), 2px 2px 0 rgba(0, 0, 0, 0.28), 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.news-section__list {
  display: flex;
  flex-direction: column;
}

.news-section__item-link {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
}

.news-section__item-link + .news-section__item-link {
  border-top: 1px solid #000;
}

.news-section__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news-section__date {
  font-size: var(--fz20);
  letter-spacing: 0.1em;
  color: var(--black);
  flex-shrink: 0;
}

.news-section__text {
  font-size: var(--fz20);
  letter-spacing: 0.1em;
  color: var(--black);
  margin-left: 3rem;
  line-height: 1.6;
}

.news-section__item-link:hover {
  opacity: 0.8;
}

.news-section__more {
  margin-top: 1.5rem;
  text-align: center;
}

.news-section__more-link {
  display: inline-block;
  font-size: var(--fz20);
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: bold;
  padding-bottom: 10px;
  position: relative;
}

.news-section__more-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 110%;
  height: 1px;
  background-color: var(--white);
}

@media screen and (max-width: 899px) {
  .news-section {
    padding: 60px 1rem 40px;
  }

  .news-section__card {
    padding: 30px 20px 35px;
  }

  .news-section__item-link {
    padding: 20px 0;
  }

  .news-section__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-section__text {
    margin-left: 0;
  }
}
@media only screen and (max-width: 499px) {
  .news-section {
    padding: 40px 1rem 40px;
  }
}
/* =========================
  ビジョンセクション
========================= */
.vision-section {
  margin-top: 265px;
}

.vision-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.vision-section__title {
  font-size: var(--fz50);
  font-weight: bold;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 60px;
}

.vision-section__text {
  font-size: var(--fz25);
  line-height: 2.4;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 72px;
}

.vision-section__bottom {
  margin-top: 160px;
  padding-block: 95px;
  background-color: rgba(255, 255, 255, 0.8);
}

.vision-section__bottom-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  text-align: center;
  font-size: var(--fz40);
  font-weight: bold;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #17345c;
}

@media only screen and (max-width: 1023px) {
  .vision-section {
    margin-top: 200px;
  }
}
@media screen and (max-width: 899px) {
  .vision-section {
    margin-top: 100px;
  }
  .vision-section__inner {
    padding: 0 1rem;
  }

  .vision-section__bottom {
    margin-top: 80px;
    padding: 32px 1.5rem 48px;
  }
}
@media only screen and (max-width: 499px) {
  .vision-section {
    margin-top: 30px;
  }
  .vision-section__title {
    margin-bottom: 30px;
  }
  .vision-section__text {
    margin-bottom: 20px;
    line-height: 2;
  }
  .vision-section__bottom {
    margin-top: 60px;
    padding: 20px 1rem 30px;
  }
  .vision-section__bottom-text {
    line-height: 1.8;
    padding: 0;
  }
}

/* =========================
  事業紹介
========================= */
.business-section {
  padding-top: 212px;
  padding-bottom: 90px;
}

.business-section__unit {
  margin-bottom: 250px;
}

.business-section__department {
  max-width: 600px;
  margin: 40px auto 153px;
  padding: 4px;
  text-align: center;
  font-size: var(--fz20);
  letter-spacing: 0.1em;
  color: var(--white);
  border: 1px solid var(--white);
}

.business-section__layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
  min-height: 450px;
}

.business-section__image-wrap {
  width: 63%;
}

.business-section__layout--right-image .business-section__image-wrap {
  margin-left: auto;
}

.business-section__layout--left-image .business-section__image-wrap {
  margin-right: auto;
}

.business-section__text-card {
  width: 55%;
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 4rem;
  position: absolute;
  bottom: -18%;
  z-index: 5;
}

.business-section__layout--right-image .business-section__text-card {
  left: 0;
}

.business-section__layout--left-image .business-section__text-card {
  right: 0;
}

/* 見出し -------------------------- */
.business-section__subtitle {
  font-size: var(--fz20);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.business-section__subtitle-em {
  font-size: var(--fz25);
  font-weight: bold;
  color: var(--yellow);
}

.business-section__subtitle-sub {
  font-size: var(--fz18);
  color: #ffffff;
}

.business-section__desc {
  font-size: var(--fz20);
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 899px) {
  .business-section {
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .business-section {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .business-section__unit {
    margin-bottom: 80px;
  }
  .business-section__unit-reform {
    margin-bottom: 50px;
  }

  .business-section__department {
    max-width: 80%;
    padding: 12px;
    margin-bottom: 40px;
    font-size: var(--fz16);
  }

  .business-section__layout {
    flex-direction: column;
    max-width: 100%;
    padding: 0 1rem;
    min-height: auto;
  }

  .business-section__image-wrap {
    width: 100%;
  }

  .business-section__text-card {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 1.5rem;
  }

  .business-section__subtitle {
    font-size: var(--fz18);
  }

  .business-section__subtitle-em {
    font-size: var(--fz22);
  }

  .business-section__desc {
    font-size: var(--fz16);
  }
}
/* =========================================
   私たちについてセクション
========================================= */

.about-section {
  color: var(--white);
  padding-top: 2rem;
}
.about-section .page-heading__title {
  margin-bottom: 60px;
}
.about-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: var(--fz35);
  font-family: "Koulen", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  max-width: 1100px;
  margin-left: auto;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  @media only screen and (min-width: 1899px) {
    width: 132%;
  }
  @media only screen and (min-width: 2200px) {
    width: 143%;
  }
}

.about-section__top {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 227px;
}

.about-section__message {
  width: 42%;
}

.about-section__message-text {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.1em;
}

.about-section__image-wrap {
  width: 45.5%;
}

/* ========== 先輩の声 ========== */

.about-section__voice-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}
.about-section__voice-photo-wrap {
  overflow: hidden;
}
.about-section__voice-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-section__voice:hover .about-section__voice-photo {
  transform: scale(1.06);
  opacity: 0.95;
}

.about-section__voice-label {
  font-size: var(--fz25);
  font-family: "Koulen", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.about-section__voice-meta {
  font-size: var(--fz16);
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: right;
  padding-bottom: 10px;
  margin: 4px 0 10px;
  border-bottom: 1px solid var(--white);
}

.about-section__voice-message {
  font-size: var(--fz20);
  font-weight: bold;
  line-height: 2.25;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-align: center;
}

.about-section__more-wrap {
  max-width: 1100px;
}

.about-section__more {
  position: relative;
  margin-top: 56px;
  max-width: 218px;
  margin-left: auto;
}

.about-section__more-link {
  position: relative;
  display: inline-block;
  font-size: var(--fz16);
  line-height: 2.18;
  letter-spacing: 0.1em;
  color: var(--white);
  z-index: 1;
  transition: transform 0.3s ease;
}
.about-section__more:hover .about-section__more-link {
  transform: translateX(3px);
}

.about-section__more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.4s ease;
  transform-origin: left center;
}
.about-section__more:hover::after {
  transform: scaleX(1.04);
}

.about-section__more::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-top: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}
.about-section__more:hover::before {
  transform: translateX(10px) rotate(45deg) scale(1.08);
}

/* AND MORE：黄色バージョン */
.about-section__more--yellow .about-section__more-link {
  color: var(--yellow);
}

.about-section__more--yellow::after {
  background-color: var(--yellow);
}

.about-section__more--yellow::before {
  border-right-color: var(--yellow);
  border-top-color: var(--yellow);
}

/* ---------- 約束（3カラム） ---------- */

.about-section__promise {
  margin-top: 100px;
}

.about-section__promise-lead {
  text-align: center;
  font-size: var(--fz25);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--white);
}

.about-section__promise-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.about-section__promise-item {
  text-align: center;
}

.about-section__promise-title {
  font-size: var(--fz20);
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.about-section__promise-photo-wrap {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
}

.about-section__promise-photo {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.about-section__promise-item:hover .about-section__promise-photo {
  transform: scale(1.06);
}

.about-section__promise-text {
  font-size: var(--fz20);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1199px) {
  .section-subtitle {
    margin: 0 auto 50px;
    padding: 0 1rem;
  }
  .about-section__top {
    margin: 0 auto 200px;
    padding: 0 1rem;
    justify-content: center;
    align-items: start;
  }
}
@media only screen and (max-width: 1099px) {
  .about-section__more {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .about-section {
    padding: 0 0 100px;
  }
  .about-section .page-heading__title {
    margin-bottom: 30px;
  }
  .about-section__message {
    font-size: var(--fz25);
    width: 100%;
  }
  .about-section__image-wrap {
    width: 100%;
  }

  .about-section__main-title {
    font-size: var(--fz20);
    margin-bottom: 40px;
  }

  .about-section__top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 120px;
  }

  .about-section__voice-list {
    flex-direction: column;
    gap: 4rem;
  }
  .about-section__voice-photo {
    max-height: 480px;
  }
  .about-section__voice-meta {
    margin-block: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .about-section__promise-list {
    flex-direction: column;
    gap: 5rem;
  }
  .about-section__promise-photo-wrap {
    margin-bottom: 12px;
  }
  .about-section__promise-photo {
    max-height: 400px;
  }
}
@media only screen and (max-width: 499px) {
  .about-section__promise-title {
    font-size: 20px;
  }
  .section-subtitle {
    margin: 0 auto 30px;
  }
  .section-subtitle::after {
    left: 3%;
    width: 95%;
  }
  .about-section__top {
    margin-bottom: 65px;
  }
  .about-section__more {
    margin-top: 30px;
    max-width: 120px;
    text-align: center;
  }
}

/* =========================================
募集要項
========================================= */
.recruit-section {
  background: var(--white);
  margin-top: 120px;
  padding-block: 150px;
}

.recruit-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.recruit-section__title {
  font-size: var(--fz35);
  font-weight: bold;
  color: #17345c;
  letter-spacing: 0.1em;
  line-height: 1.42;
  margin-bottom: 60px;
  text-align: center;
}

/* -------------------------
   タブ
------------------------- */
.recruit-tabs__nav {
  display: flex;
  overflow: hidden;
  margin-bottom: 0;
}

.recruit-tabs__tab {
  flex: 1 1 50%;
  padding-block: 24px;
  border: none;
  cursor: pointer;
  font-size: var(--fz30);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--white);
  background-color: #a7a7a7;
  border-radius: 15px 15px 0 0;
}

.recruit-tabs__tab + .recruit-tabs__tab {
  border-left: 1px solid #ffffff;
}

.recruit-tabs__tab--active {
  background-color: #06b3da;
}

/* -------------------------
   パネル＆テーブル
------------------------- */

.recruit-tabs__panel {
  display: none;
  border: 1px solid var(--black);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: #ffffff;
}

.recruit-tabs__panel--active {
  display: block;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.recruit-table__head,
.recruit-table__data {
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  padding: 16px 18px;
  vertical-align: top;
}

.recruit-table tr .recruit-table__head:first-child {
  border-left: none;
}

.recruit-table__head {
  width: 20%;
  background-color: #06b3da;
  font-size: var(--fz20);
  font-weight: bold;
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0;
}

.recruit-table__data {
  width: 80%;
  font-size: var(--fz20);
  font-weight: normal;
  color: var(--black);
  letter-spacing: 0;
  line-height: 2.6;
  padding: 40px 50px;
}

.recruit-tabs__tab--reform-active {
  background-color: #1989bc;
}

.recruit-table--reform .recruit-table__head {
  background-color: #1989bc;
}

.entry-btn__wrap {
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 0 1rem;
  box-sizing: content-box;
}
.entry-btn {
  display: block;
  background: var(--entryBtn);
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--white);
  width: 100%;
  line-height: 1.66;
  letter-spacing: 0.1em;
  text-align: center;
  padding-block: 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.entry-btn:hover {
  background: var(--white);
  color: var(--entryBtn);
  box-shadow: 0 0 0 3px var(--entryBtn) inset;
}

@media only screen and (max-width: 767px) {
  .recruit-section {
    margin-top: 0;
    padding: 65px 0;
  }

  .recruit-section__title {
    margin-bottom: 30px;
  }

  .recruit-tabs__tab {
    padding: 14px 6px;
  }

  .recruit-table__head,
  .recruit-table__data {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .recruit-table__data {
    padding: 1rem;
  }

  .recruit-table__head {
    text-align: left;
  }

  .entry-btn__wrap {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 499px) {
  .entry-btn__wrap {
    margin: 40px auto 0;
  }
  .entry-btn {
    padding-block: 13px;
  }
}
@media only screen and (max-width: 399px) {
  .recruit-tabs__tab {
    font-size: 16px;
  }
}
/* =========================
よくある質問
========================= */

.faq-section {
  padding-top: 140px;
}

.faq-section__inner {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.faq-section__category-title {
  font-size: var(--fz30);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 60px 0 25px;
  border-bottom: 1px solid var(--white);
}

.faq-qa-list {
  margin: 24px auto 90px;
}

.faq-qa {
  margin-bottom: 50px;
}

.faq-qa__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 2;
}

.faq-qa__row--question {
  font-size: var(--fz25);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.faq-qa__row--answer {
  font-size: var(--fz20);
  color: var(--white);
}

.faq-qa__label {
  flex: 0 0 auto;
  letter-spacing: 0.1em;
}

.faq-qa__text {
  flex: 1 1 auto;
}
.faq-qa__row--answer .faq-qa__text {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 2.5;
  padding-left: 2em;
}

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

  .faq-section__category-title {
    margin: 24px 0 20px;
  }

  .faq-qa {
    margin-bottom: 32px;
  }
  .faq-qa__row--answer .faq-qa__text {
    padding-left: 1em;
    line-height: 2;
  }
}
@media only screen and (max-width: 499px) {
  .faq-section {
    padding: 0;
  }
  .faq-qa-list {
    margin: 24px auto 45px;
  }
}

/* =========================
アクセス
========================= */

.access-section {
  padding: 120px 0 250px;
}

.access-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.access-section__list {
  margin-top: 70px;
}

.access-section__item + .access-section__item {
  margin-top: 100px;
}

.access-section__map {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.access-section__map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.access-section__label {
  text-align: center;
  font-size: var(--fz18);
  font-weight: normal;
  letter-spacing: 0.1em;
  color: var(--white);
}

@media only screen and (max-width: 767px) {
  .access-section {
    padding: 0 0 100px;
  }

  .access-section__list {
    margin-top: 40px;
  }

  .access-section__item + .access-section__item {
    margin-top: 60px;
  }
  .access-section__map {
    height: 275px;
    margin-bottom: 0.5rem;
  }
}

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

.site-footer {
  padding: 80px;
  background: var(--white);
  color: #444444;
}

.site-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-nav__list {
  margin: 0 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 40px;
  margin-bottom: 24px;
}

.footer-nav__item {
  text-align: left;
}

.footer-nav__heading {
  font-size: var(--fz18);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.footer-nav__link {
  font-size: var(--fz18);
  font-weight: bold;
  color: #444444;
  letter-spacing: 0.1em;
}

.footer-nav__subitem + .footer-nav__subitem {
  margin-top: 14px;
}

.footer-nav__sublink {
  font-size: var(--fz16);
  font-weight: normal;
  line-height: 2.18;
  letter-spacing: 0.1em;
}
.footer-nav__sublist {
  margin-top: 1rem;
}

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

.site-footer__logo-image {
  max-width: 230px;
  margin-bottom: 1rem;
}

.site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.site-footer__sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__sns-icon {
  max-width: 60px;
  margin-bottom: 8px;
}

.site-footer__sns-label {
  font-size: var(--fz16);
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 899px) {
  .footer-nav__list {
    justify-content: start;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 40px 20px 60px;
  }

  .site-footer__inner {
    max-width: 80%;
  }

  .footer-nav__link {
    font-size: 15px;
  }

  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    margin-bottom: 24px;
  }

  .footer-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 40px;
  }

  .footer-nav__item {
    width: 100%;
  }

  .footer-nav__heading {
    margin-bottom: 10px;
  }

  .footer-nav__sublist {
    margin-top: 4px;
  }

  .footer-nav__subitem + .footer-nav__subitem {
    margin-top: 4px;
  }

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

  .site-footer__logo-image {
    max-width: 150px;
    margin: 0 auto 16px;
    display: block;
  }

  .site-footer__sns {
    gap: 20px;
    margin-top: 24px;
  }

  .site-footer__sns-icon {
    max-width: 45px;
  }

  .site-footer__sns-label {
    margin-top: 4px;
  }
}
/* =========================================
   トップへ戻るボタン
========================================= */
.pagetop {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  display: block;
  z-index: 50;
  width: 180px;
  height: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pagetop img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pagetop:hover img {
  transform: translateY(-6px) scale(1.05);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .pagetop {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .pagetop {
    left: auto;
    right: 10px;
    bottom: 10px;
    width: 100px;
    height: 100px;
    transform: translateY(20px);
  }
  .pagetop.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 399px) {
  .pagetop {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 360px) {
  .pagetop {
    width: 70px;
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pagetop,
  .pagetop img {
    transition: none;
  }
}
