@charset "UTF-8";
/* ======================================================== */
/*  全体の設定 */
/* ======================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 1rem = 10px に設定 */
}

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

/* ======================================================== */
/* コンテナレイアウト */
/* ======================================================== */
.main-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.right-side {
  flex: 0 0 700px;
  background-color: #fff;
  color: #fff;
}

.container {
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .main-container {
    display: block;
    width: 100%;
  }
  .right-side {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
  .container {
    padding: 0 20px;
  }
}
/* ======================================================== */
/*  文字の設定 */
/* ======================================================== */
body {
  /* 全体はゴシック体を指定 */
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  color: #333;
  line-height: 2;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Jersey 25 を適用したい場所 */
.your-class-jersey {
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Joan を適用したい場所 */
.your-class-joan {
  font-family: "Joan", serif;
  font-weight: 400;
  font-style: normal;
}

/* Noto Sans JP を適用したい場所 */
.your-class-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  /* もしくは 700 */
  font-style: normal;
}

/* ======================================================== */
/* タイトル共通スタイル */
/* ========================================================= */
.title-heading_bk {
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 16px;
  /* ラインの描画 */
}
.title-heading_bk h3 {
  font-family: "Jersey 25", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  color: #333;
  margin: 0 0 4px 0;
}
.title-heading_bk p {
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
  color: #333;
}
.title-heading_bk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6vw;
  width: 20vw;
  height: 2px;
  background-color: #333;
}

.title-heading_wh {
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 16px;
  /* ラインの描画 */
}
.title-heading_wh h3 {
  font-family: "Jersey 25", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 4px 0;
  color: #fff;
}
.title-heading_wh p {
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
}
.title-heading_wh::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6vw;
  width: 20vw;
  height: 2px;
  background-color: #fff;
}

.sub-title p {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ============================================================
  ヘッダー & ロゴ
============================================================ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
  height: 64px;
  background-color: rgba(221, 221, 221, 0.48);
}

.logo-area,
.menu-btn {
  pointer-events: auto;
}

.logo img {
  width: 100%;
  max-width: 180px;
  z-index: 1000;
}

.logo-sub {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .logo img {
    width: 100%;
    max-width: 120px;
  }
}
/* ============================================================
  ハンバーガーメニューボタン
============================================================ */
.menu-btn {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 54px;
  height: 54px;
  background-color: #333;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10000;
}

/* 三本線（あるいは二本線） */
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* メニューオープン時のアニメーション */
.menu-btn.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ============================================================
  ナビゲーションメニュー (右側からスライド)
============================================================ */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(200px, 100%);
  height: 100vh;
  height: 100dvh;
  background-color: rgba(51, 51, 51, 0.8117647059);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  /* 右側へ隠しておく */
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

/* メニューを開いた状態 */
.nav-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.nav-menu ul {
  list-style: none;
  text-align: center;
  padding: 0 20px;
  margin: 0;
}

.nav-menu ul li {
  margin: 25px 0;
  color: #fff;
}

.nav-menu a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.nav-menu ul li a {
  color: #fff;
  font-size: 1.6rem;
  /* font-weight: bold; */
  text-decoration: none;
  letter-spacing: 0.1em;
}

/*-------------------------------------------------------- */
/* footer */
/*-------------------------------------------------------- */
footer {
  width: 100%;
}

.footer-inner {
  width: 100%;
  padding: 30px 20px;
  color: #fff;
  background-color: #666;
  box-sizing: border-box;
}

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

.footer-site-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-site-link a {
  color: #fff;
  text-decoration: none;
}

.footer-thumb {
  flex-shrink: 0;
}
.footer-thumb img {
  display: block;
  width: 20px;
  height: auto;
}

.copyright {
  font-size: 1.4rem;
  margin: 12px 0;
  text-align: center;
}

/* ========================================================
   エントリー完了
======================================================== */
.entry-thanks {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 40px;
  background-color: #fff;
  box-sizing: border-box;
}

.entry-thanks__card {
  position: relative;
  width: 100%;
  background-color: #f1ff00;
  box-sizing: border-box;
}

/* 上部の円形装飾 */
.entry-thanks__card::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  width: 90px;
  height: 90px;
  background-color: #f1ff00;
  border-radius: 50%;
  transform: translateX(-50%);
}

.entry-thanks__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 135px 40px 80px;
  padding: 80px 40px;
  box-sizing: border-box;
}

.entry-thanks__title {
  margin: 0;
  color: #000;
  font-family: "Jersey 25", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-align: center;
}

.entry-thanks__message {
  margin: 85px 0 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
}

.thanks-btn {
  width: 100%;
  max-width: 180px;
  margin: 30px auto 0;
  background-color: #f1ff00;
  border: 1px solid #333;
  border-radius: 50px;
  box-sizing: border-box;
}
.thanks-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 24px;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
.thanks-btn p {
  margin: 0;
}

/* ========================================================
   エントリー完了ページ専用
======================================================== */
.thanks-page .right-side {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  color: #000;
  visibility: visible;
  opacity: 1;
}

.thanks-page .work_recruit-thanks {
  width: 100%;
}

.thanks-page .entry-thanks,
.thanks-page .entry-thanks__card,
.thanks-page .entry-thanks__inner {
  visibility: visible;
  opacity: 1;
}

/* スマートフォン
-------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .work_recruit-thanks .container {
    padding: 0 20px;
  }
  .entry-thanks {
    padding: 120px 20px 60px;
  }
  .entry-thanks__card::before {
    top: -35px;
    width: 70px;
    height: 70px;
  }
  .entry-thanks__inner {
    max-width: 100%;
    padding: 100px 20px 60px;
  }
  .entry-thanks__title {
    font-size: clamp(40px, 12vw, 54px);
  }
  .entry-thanks__message {
    margin-top: 65px;
    font-size: 16px;
    line-height: 1.9;
  }
  .thanks-page .left-side,
  .thanks-page .left-scroll-line {
    display: none !important;
  }
  .thanks-page .main-container {
    display: block;
    min-height: 100vh;
  }
  .thanks-page .right-side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
  }
  .thanks-page .work_recruit {
    width: 100%;
  }
  .thanks-btn {
    margin: 0 auto;
  }
}
/* ---------------------------------------------------
/*　TOPボタン
/* --------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

#page-top .wrapper span {
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  bottom: 0;
  display: block;
  height: 15px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 15%;
  transform: scale(1) rotate(45deg);
  transition: transform 0.3s ease-in-out;
  width: 15px;
  z-index: 125;
}
#page-top .wrapper a {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #504333;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  right: 10vw;
  bottom: 5vh;
  z-index: 10;
}
@media screen and (min-width: 767px) {
  #page-top .wrapper a {
    width: 50px;
    height: 50px;
    right: 8vw;
  }
}
#page-top .wrapper a.show {
  opacity: 1;
  transform: translateY(0);
}
