@charset "UTF-8";
/* 変数定義 */
/* カラー */
:root {
  --color-main: #23234A; /* メインカラー・本文 */
  --color-white: #FFFFFF; /* 背景カラー */
  --color-gray1: #F7FAFA; /* 背景カラー */
  --color-gray2: #F1F6F6; /* 背景カラー */
  --color-point: #00ACB0; /* ポイントカラー */
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
button:focus {
  outline: none;
}
button:disabled {
  opacity: 1;
}
button:disabled:hover {
  opacity: 1;
}

/* ==========================================================================
   共通設定
========================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 2.5vw;
}

body {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "游ゴシック", "游ゴシック体", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
  font-optical-sizing: auto;
  color: var(--color-main);
  text-align: justify;
  text-justify: inter-ideograph;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

a {
  color: var(--color-main);
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  color: var(--color-main);
}
button:focus {
  outline: none;
}
button:disabled {
  opacity: 1;
  color: var(--color-main);
}

.spShow {
  display: inline-block;
}

.pcShow {
  display: none;
}

@media (min-width: 768px) {
  html {
    font-size: 62.5%;
    overflow-y: scroll;
  }
  body {
    font-size: 1.5rem;
  }
  .spShow {
    display: none;
  }
  .pcShow {
    display: inline-block;
  }
}
/* ==========================================================================
   共通レイアウト
========================================================================== */
.container {
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: 15vw 1fr auto auto;
  grid-template-rows: 15vw 1fr auto auto;
}
.container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.container > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.container > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.container > *:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.container .mainHeader {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  z-index: 1000;
}
.container .mainContents {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  z-index: 1;
}
.container .mainCta {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  z-index: 1;
}
.container .mainFooter {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
  z-index: 2;
}

@media (min-width: 768px) {
  .container {
    -ms-grid-rows: 60px 1fr auto auto;
    grid-template-rows: 60px 1fr auto auto;
  }
}
@media (min-width: 1051px) {
  .container {
    -ms-grid-rows: 80px 1fr auto auto;
    grid-template-rows: 80px 1fr auto auto;
  }
}
/* ==========================================================================
   英語フォント
========================================================================== */
.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* ==========================================================================
  アニメーション
========================================================================== */
@-webkit-keyframes menuFadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menuFadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menuFadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes menuFadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
.isAnime {
  opacity: 0;
}

.fadeInUp.animeAction {
  -webkit-animation: fadeInUp 0.7s 1 0s ease forwards;
          animation: fadeInUp 0.7s 1 0s ease forwards;
}

/* ==========================================================================
   ヘッダー
========================================================================== */
.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  height: 15vw;
  padding-left: 3.75vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15vw 15vw;
  grid-template-columns: 1fr 15vw 15vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mainHeader::after {
  content: "";
  width: 100%;
  height: 1.5vw;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(62, 125, 125, 0.3)), to(transparent));
  background: linear-gradient(to bottom, rgba(62, 125, 125, 0.3), transparent);
  position: absolute;
  bottom: -1.5vw;
  left: 0;
  z-index: 1000;
}
.mainHeader .siteName {
  -ms-grid-column: 1;
  grid-column: 1;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mainHeader .headerContact {
  -ms-grid-column: 2;
  grid-column: 2;
  height: 100%;
}
.mainHeader .headerContact a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-main);
}
.mainHeader .headerContact a::before {
  content: "";
  width: 5.5vw;
  height: 4.25vw;
  background: var(--color-white);
  -webkit-mask-image: url("../img/common/icon_mail.svg");
          mask-image: url("../img/common/icon_mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.mainHeader .headerContact a span {
  display: none;
}
.mainHeader .menuBtn {
  -ms-grid-column: 3;
  grid-column: 3;
  position: relative;
  height: 100%;
}
.mainHeader .menuBtn button {
  width: 100%;
  height: 100%;
  line-height: 1;
  background: var(--color-point);
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.mainHeader .menuBtn .lineBox {
  width: 6.25vw;
  height: 4.5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 2vw;
}
.mainHeader .menuBtn .line {
  height: 0.25vw;
  background: #fff;
  -webkit-transition: rotate 0.2s linear;
  transition: rotate 0.2s linear;
}
.mainHeader .menuBtnOpen {
  gap: 0;
}
.mainHeader .menuBtnOpen .line {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row-align: center;
      align-self: center;
}
.mainHeader .menuBtnOpen .line1 {
  -ms-grid-row: 1;
  grid-row: 1;
  rotate: 30deg;
}
.mainHeader .menuBtnOpen .line2 {
  -ms-grid-row: 1;
  grid-row: 1;
  opacity: 0;
}
.mainHeader .menuBtnOpen .line3 {
  -ms-grid-row: 1;
  grid-row: 1;
  rotate: -30deg;
}

/* ==========================================================================
   グローバルナビ
========================================================================== */
.gNav {
  container-type: inline-size;
  display: none;
  position: fixed;
  top: 15cqw;
  left: 0;
  z-index: 998;
  width: 100%;
  max-height: calc(100svh - 15cqw);
  overflow-y: auto;
  overscroll-behavior-y: none;
  background: var(--color-white);
  padding: 2.5cqw 0;
}
.gNav .mainPageLink {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.gNav .mainPageLink li:not(:first-child) {
  border-top: 0.25cqw solid #CECECE;
}
.gNav .mainPageLink li:last-child {
  border-bottom: 0.25cqw solid #CECECE;
}
.gNav .mainPageLink a {
  min-height: 18cqw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4.5cqw;
  padding-left: 5cqw;
  background: url("../img/common/arrow_point_color.svg") no-repeat calc(100% - 4.25cqw) center/2.075cqw auto;
}
.gNav .mainPageLink a::before {
  content: "";
  width: 6.5cqw;
  height: 5cqw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.gNav .mainPageLink li:nth-child(1) a::before {
  background-image: url("../img/common/icon_home.svg");
}
.gNav .mainPageLink li:nth-child(2) a::before {
  background-image: url("../img/common/icon_search.svg");
}
.gNav .mainPageLink li:nth-child(3) a::before {
  background-image: url("../img/common/icon_job.svg");
}
.gNav .mainPageLink li:nth-child(4) a::before {
  background-image: url("../img/common/icon_people.svg");
}
.gNav .subPageLink {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.gNav .subPageLink li {
  border-bottom: 0.25cqw solid #CECECE;
}
.gNav .subPageLink a {
  min-height: 13.5cqw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 5cqw;
  background: url("../img/common/arrow_point_color.svg") no-repeat calc(100% - 4.25cqw) center/2.075cqw auto;
}
.gNav .contactBtn {
  margin: 7.5cqw auto 0;
}
.gNav .privacy {
  margin: 10cqw 0 0 5cqw;
  font-size: 1.1rem;
  text-decoration: underline;
}
.gNav .copyright {
  display: block;
  margin-top: 4.75cqw;
  font-size: 1.1rem;
  text-align: center;
}

.navOpen {
  display: block;
  -webkit-animation: menuFadeIn 0.3s 1 0s linear forwards;
          animation: menuFadeIn 0.3s 1 0s linear forwards;
}

.navClose {
  -webkit-animation: menuFadeOut 0.2s 1 0s linear forwards;
          animation: menuFadeOut 0.2s 1 0s linear forwards;
}

.menuOverlay {
  display: none;
  background: rgba(35, 35, 74, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   下層タイトル
========================================================================== */
.pageHeader {
  background: url("../img/common/page_title_bk.jpg") no-repeat center center/cover;
  height: 37.25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5vw;
  margin-bottom: 15vw;
}
.pageHeader .pageTitle {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pageHeader .pageTitle::after {
  content: attr(data-en);
  display: block;
  margin-top: 4vw;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.pageHeader .pageTitleSmall {
  font-size: 2.2rem;
}
.pageHeader .pageTitleSmall::after {
  margin-top: 3vw;
}

/* ==========================================================================
   CTA
========================================================================== */
.mainCta {
  margin-top: 25vw;
  background: url("../img/common/sp_cta_bk.jpg") no-repeat center center/cover;
  padding: 15vw 0;
}
.mainCta .ctaInner {
  background: var(--color-white);
  width: 90vw;
  margin-inline: auto;
  padding: 10.75vw 0 10vw;
}
.mainCta .headingsEn {
  margin-bottom: 5vw;
}
.mainCta .text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
}
.mainCta .telForm {
  margin-top: 8.25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5vw 0;
}
.mainCta .telForm .tel {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.18;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainCta .telForm .tel::before {
  content: "";
  width: 5.375vw;
  height: 8.75vw;
  background: url("../img/common/icon_tel.svg") no-repeat center center/cover;
  margin-right: 2.5vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mainCta .telForm .btnMail {
  min-width: 75vw;
}

/* ==========================================================================
   footer
========================================================================== */
.mainFooter {
  background: var(--color-main);
  color: var(--color-white);
}
.mainFooter a {
  color: var(--color-white);
}
.mainFooter .footerInner {
  padding: 7.5vw 5vw 2.5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
}
.mainFooter .footerInner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.mainFooter .footerInner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.mainFooter .footerInner > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.mainFooter .footerInner > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.mainFooter .footerInner > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.mainFooter .footerInner > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.mainFooter .footerLog {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 5vw;
}
.mainFooter address {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 1.4rem;
  font-style: normal;
  margin-bottom: 6.5vw;
}
.mainFooter address h2 {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.75vw;
}
.mainFooter address dl {
  line-height: 1.42;
}
.mainFooter .privacy {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
  font-size: 1.1rem;
  text-align: right;
  text-decoration: underline;
}
.mainFooter .copyright {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  font-size: 1.1rem;
}

/* ==========================================================================
   ボタン共通
========================================================================== */
.btn {
  background: var(--color-main);
  border: 0.25cqw solid transparent;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5cqw;
  width: 100%;
  max-width: 90cqw;
  min-height: 17.5cqw;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  padding: 2.5cqw 5.125cqw;
}
.btn::before {
  content: "";
  width: 1.675cqw;
  height: 3cqw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn::after {
  content: "";
  width: 1.675cqw;
  height: 3cqw;
  background: var(--color-white);
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
          mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btnShort {
  max-width: 75cqw;
}

.btnMail::before {
  width: 5cqw;
  height: 3.875cqw;
  background: var(--color-white);
  -webkit-mask-image: url("../img/common/icon_mail.svg");
          mask-image: url("../img/common/icon_mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.btnMail::after {
  width: 5cqw;
  -webkit-mask-position: right center;
          mask-position: right center;
}

.btnPointColor {
  background: var(--color-point);
}

/* ==========================================================================
   もっと読む系
========================================================================== */
.moerText {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.moerText .text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5vw;
}

.moerTextArrowRight .text::after {
  content: "";
  width: 1.75vw;
  height: 3.25vw;
  background: url("../img/common/arrow_point_color.svg") no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.moerTextArrowLeft .text::before {
  content: "";
  width: 1.75vw;
  height: 3.25vw;
  background: url("../img/common/arrow_point_color.svg") no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  rotate: 180deg;
}

/* ==========================================================================
   戻る系
========================================================================== */
.backBtn {
  font-size: 1.6rem;
}
.backBtn::before {
  content: "";
  width: 1.675cqw;
  height: 3cqw;
  background: var(--color-white);
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
          mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  rotate: 180deg;
}
.backBtn::after {
  content: "";
  width: 1.675cqw;
  height: 3cqw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
}

/* ==========================================================================
   英語付きH2
========================================================================== */
.headingsEn {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.48;
  text-align: center;
}
.headingsEn::after {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  content: attr(data-en);
  display: block;
  margin-top: 1.75vw;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-point);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* ==========================================================================
   詳細ページH2
========================================================================== */
.headingsDetailH2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.94;
  padding-bottom: 2.25vw;
  border-bottom: 0.25vw solid #CECECE;
}

.entry-content > h2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.94;
  padding-bottom: 2.25vw;
  border-bottom: 0.25vw solid #CECECE;
}

/* ==========================================================================
   詳細ページH3
========================================================================== */
.headingsDetailH3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}

.entry-content > h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}

/* ==========================================================================
   左画像右テキスト バナーボックス
========================================================================== */
.imgBannerBox {
  width: 90vw;
  margin-inline: auto;
}
.imgBannerBox > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
.imgBannerBox > a > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.imgBannerBox > a > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.imgBannerBox .imgBannerImg {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.imgBannerBox .imgBannerText {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  color: #fff;
  padding: 5vw;
  background: url("../img/common/img_banner_bk.jpg") no-repeat center center/cover;
}
.imgBannerBox h2 {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.imgBannerBox p {
  margin-top: 4.75vw;
  font-size: 1.5rem;
  line-height: 1.86;
}
.imgBannerBox .btn {
  background: var(--color-white);
  color: var(--color-point);
  margin: 5vw auto 0;
}
.imgBannerBox .btn::after {
  width: 3.75vw;
  height: 3.5vw;
  background: var(--color-point);
  -webkit-mask-image: url("../img/common/btn_other_tab.svg");
          mask-image: url("../img/common/btn_other_tab.svg");
  -webkit-transition: none;
  transition: none;
}

/* ==========================================================================
   詳細ページヘッダー
========================================================================== */
.singularHeader {
  width: 90vw;
  margin: 15vw auto 0;
  padding-bottom: 5vw;
  border-bottom: 0.25vw solid #E3E3E3;
}
.singularHeader .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25vw 5vw;
}
.singularHeader time {
  font-size: 1.4rem;
}
.singularHeader .catList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 2.5vw;
}
.singularHeader .catBox {
  background: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75vw 2.5vw;
  min-height: 6vw;
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1;
}
.singularHeader .detailTitle {
  margin-top: 3.75vw;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   求人カード
========================================================================== */
.jobCard a {
  -webkit-box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
          box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
  background: var(--color-white);
  display: -ms-grid;
  display: grid;
  container-type: inline-size;
}
.jobCard h2 {
  margin: 3cqw 4.4444444444cqw 0;
  font-size: 5cqw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding-bottom: 2.7777777778cqw;
  border-bottom: 0.2777777778cqw solid #D1D1D1;
}
.jobCard .description {
  margin: 2.75cqw 4.4444444444cqw 0;
  font-size: 3.8888888889cqw;
  line-height: 1.57;
}
.jobCard dl {
  margin: 4.5cqw 4.4444444444cqw 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20cqw 2.75cqw 1fr;
  grid-template-columns: 20cqw 1fr;
  gap: 2cqw 2.75cqw;
}
.jobCard dl dt {
  height: 6.25cqw;
  background: var(--color-point);
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: var(--color-white);
  font-size: 3.25cqw;
  font-weight: 500;
  line-height: 1;
}
.jobCard dl dd {
  font-size: 3.25cqw;
  padding-top: 0.2em;
}
.jobCard .moerText {
  margin: 3.5cqw 4.4444444444cqw 0;
  padding-bottom: 3.25cqw;
  text-align: right;
}

/* ==========================================================================
   ページ送り
========================================================================== */
.pagenatinon {
  margin-top: 20vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 3.25vw;
}
.pagenatinon li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10vw;
          flex: 0 1 10vw;
}
.pagenatinon li a, .pagenatinon li span {
  height: 10vw;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  background: #EEEEEE;
}
.pagenatinon li .current {
  background: var(--color-point);
  color: var(--color-white);
}
.pagenatinon li .dots {
  font-size: 1.7rem;
  font-weight: 400;
}
.pagenatinon .next, .pagenatinon .prev {
  background: var(--color-main);
}
.pagenatinon .next img, .pagenatinon .prev img {
  width: 2.5vw;
}
.pagenatinon .prev img {
  rotate: 180deg;
}

@media (min-width: 768px) {
  .pagenatinon {
    margin-top: 100px;
    gap: 15px;
  }
  .pagenatinon li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40px;
            flex: 0 1 40px;
  }
  .pagenatinon li a, .pagenatinon li span {
    height: 40px;
  }
  .pagenatinon .next, .pagenatinon .prev {
    background: var(--color-main);
  }
  .pagenatinon .next img, .pagenatinon .prev img {
    width: 10px;
  }
}
/* ==========================================================================
   ニュース一覧 用
========================================================================== */
.newsListBox {
  border-bottom: 0.25vw solid #CECECE;
}
.newsListBox a {
  padding: 5vw 5vw 5vw 0;
  background: url("../img/common/arrow_point_color.svg") no-repeat right center/1.75vw auto;
  display: block;
}
.newsListBox .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25vw 5vw;
}
.newsListBox time {
  font-size: 1.4rem;
  font-weight: 500;
}
.newsListBox .catList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 2.5vw;
}
.newsListBox .catList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75vw 2.5vw;
  min-height: 6vw;
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1;
}
.newsListBox .catList .default {
  background: var(--color-main);
}
.newsListBox .catList .point {
  background: var(--color-point);
}
.newsListBox h2 {
  margin-top: 2.5vw;
  font-size: 1.4rem;
  line-height: 1.85;
  font-weight: 400;
}

/* ==========================================================================
   TOP
========================================================================== */
.topPage .fv {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  padding-top: 10vw;
  background: url("../img/top/fv_bk.svg") no-repeat left 20.75vw/100% auto;
  background-color: #F6F6F6;
}
.topPage .fv > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.topPage .fv > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.topPage .fv .fvHeader {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: center;
      justify-self: center;
}
.topPage .fv .siteTitle {
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
}
.topPage .fv .siteTitle::before {
  content: "";
  background: url("../img/top/fv_title.svg") no-repeat center center/contain;
  width: 26.75vw;
  height: 13vw;
  display: block;
  margin: 0 auto 3.75vw;
}
.topPage .fv .catch {
  margin-top: 7.5vw;
}
.topPage .fv .catch span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-white);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  min-height: 10.5vw;
}
.topPage .fv .catch span:first-child {
  width: 90vw;
}
.topPage .fv .catch span:last-child {
  width: 35vw;
  margin-top: 2.5vw;
}
.topPage .fv .fvImg {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  z-index: 1;
  margin-top: 6.25vw;
}
.topPage .fv .en {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
  z-index: 2;
  -ms-grid-row-align: end;
      align-self: end;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0.68;
  translate: 0 2.5vw;
}
.topPage .readBox {
  padding: 27vw 0 20vw;
  background: url("../img/top/read_bk.jpg") no-repeat center center/100% 100%;
  background-color: #EEEEF2;
}
.topPage .readBox .innerBox {
  width: 90vw;
  margin-inline: auto;
  background: var(--color-white);
  padding: 10vw 5.5vw;
}
.topPage .readBox h2 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-point);
  margin-bottom: 7.25vw;
}
.topPage .readBox p {
  font-size: 1.8rem;
  line-height: 1.66;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.topPage .readBox p .tbShow {
  display: none;
}
.topPage .readBox p + p {
  margin-top: 1.5em;
}
.topPage .readBox .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, rgba(0, 172, 176, 0.2)));
  background: linear-gradient(transparent 50%, rgba(0, 172, 176, 0.2) 0%);
  display: inline;
}
.topPage .readBox .space {
  padding-right: 0.5em;
}
.topPage .readBox .line {
  letter-spacing: -0.1em;
}
.topPage .readBox strong {
  color: var(--color-point);
  font-weight: 500;
}
.topPage .newsSection {
  margin: 20.75vw auto 0;
  width: 90vw;
}
.topPage .newsSection .headingsEn {
  margin-bottom: 5vw;
}
.topPage .newsSection .moerText {
  text-align: right;
  margin-top: 4vw;
}
.topPage .wrapper {
  margin-top: 20vw;
  background: #F7FAFA;
  padding: 20vw 0;
  position: relative;
  overflow: hidden;
}
.topPage .wrapper::before {
  content: "";
  width: 50vw;
  height: 43.25vw;
  background: url("../img/job-information/consultation_bk1.svg") no-repeat center center/contain;
  position: absolute;
  top: -11.25vw;
  left: -14vw;
  z-index: 1;
}
.topPage .wrapper::after {
  content: "";
  width: 77.5vw;
  height: 73.75vw;
  background: url("../img/job-information/consultation_bk2.svg") no-repeat center center/contain;
  position: absolute;
  bottom: -38vw;
  right: -22vw;
  z-index: 1;
}
.topPage .jobInfo {
  width: 90vw;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.topPage .jobInfo > header {
  margin-bottom: 4.75vw;
}
.topPage .jobInfo > header p {
  margin-top: 10vw;
  font-size: 2.2rem;
  line-height: 1.63;
  font-weight: 700;
  color: var(--color-point);
  letter-spacing: 0.1em;
  text-align: center;
}
.topPage .jobInfo .toptext {
  font-size: 1.5rem;
  line-height: 1.86;
}
.topPage .jobInfo .row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 10vw 0;
  margin-top: 9.75vw;
}
.topPage .jobInfo .moreBtn {
  margin: 15vw auto 0;
}
.topPage .imgBannerBox {
  position: relative;
  z-index: 2;
  margin-top: 20vw;
}
.topPage .jobFair {
  width: 90vw;
  margin: 20vw auto 0;
}
.topPage .jobFair .headingsEn {
  margin-bottom: 10vw;
}
.topPage .jobFair .imgBox {
  margin-bottom: 7.5vw;
}
.topPage .jobFair .textBox p {
  font-size: 1.5rem;
  line-height: 1.86;
}
.topPage .jobFair .textBox .btnList {
  margin-top: 9.75vw;
}
.topPage .jobFair .textBox .btnList li + li {
  margin-top: 3.75vw;
}
.topPage .about {
  width: 90vw;
  margin: 25vw auto 0;
}
.topPage .about .headingsEn {
  margin-bottom: 10vw;
}
.topPage .about .imgBox {
  margin-bottom: 5vw;
}
.topPage .about .textBox .overview {
  margin-top: 7.5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26.25vw 0 1fr;
  grid-template-columns: 26.25vw 1fr;
  gap: 2vw 0;
}
.topPage .about .textBox dt, .topPage .about .textBox dd {
  font-size: 1.5rem;
  line-height: 1.73;
  border-bottom: 0.25vw solid #E8E9E2;
  padding-bottom: 1.75vw;
}
.topPage .about .textBox .address span {
  display: block;
}

/* ==========================================================================
   企業のみなさまへ
========================================================================== */
.forBusinessesPage {
  overflow: hidden;
}
.forBusinessesPage .topText {
  width: 90vw;
  margin-inline: auto;
}
.forBusinessesPage .topText p {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.forBusinessesPage .topText p + p {
  margin-top: 10vw;
}
.forBusinessesPage .flowSection {
  margin-top: 20vw;
  background: #F1F6F6;
  padding: 20vw 0 15vw;
}
.forBusinessesPage .flowSection .headingsEn {
  margin-bottom: 10vw;
}
.forBusinessesPage .flowSectionInner {
  width: 90vw;
  margin-inline: auto;
  background: var(--color-white);
  -webkit-box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
          box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
  padding: 5vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  position: relative;
}
.forBusinessesPage .flowSectionInner::after {
  content: "";
  background: url("../img/for-businesses/flow_sec_arrow.svg") no-repeat center center/contain;
  width: 10vw;
  height: 3.5vw;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: -8.75vw;
}
.forBusinessesPage .flowSectionInner .imgBox {
  -ms-grid-row: 1;
  grid-row: 1;
  margin-bottom: 5vw;
}
.forBusinessesPage .flowSectionInner .textBox {
  -ms-grid-row: 2;
  grid-row: 2;
}
.forBusinessesPage .flowSectionInner .textBox .title {
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 3.5vw;
}
.forBusinessesPage .flowSectionInner .textBox p, .forBusinessesPage .flowSectionInner .textBox li {
  font-size: 1.5rem;
  line-height: 1.73;
}
.forBusinessesPage .flowSectionInner .textBox > *:not(.title) + * {
  margin-top: 1.5em;
}
.forBusinessesPage .flowSectionInner .textBox li {
  text-indent: -1em;
  margin-left: 1em;
}
.forBusinessesPage .flowSectionInner .textBox li::before {
  content: "・";
}
.forBusinessesPage .flowSectionInner + .flowSectionInner {
  margin-top: 13.5vw;
}
.forBusinessesPage .flowSectionInner1 .linkBox {
  margin-top: 7.25vw;
}
.forBusinessesPage .flowSectionInner1 .linkBox .btnMail {
  margin-inline: auto;
}
.forBusinessesPage .flowSectionInner3 .textBox .title {
  letter-spacing: 0.03em;
}
.forBusinessesPage .flowEndText {
  text-align: center;
  margin-top: 13.5vw;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
.forBusinessesPage .imgBannerBox {
  position: relative;
  z-index: 1;
}
.forBusinessesPage .imgBannerBox::before {
  content: "";
  width: 100vw;
  height: 95vw;
  position: absolute;
  top: 0;
  left: -5vw;
  z-index: -1;
  background: #F1F6F6;
}
.forBusinessesPage .imgBannerBox h2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.forBusinessesPage .otherSection {
  margin: 37.5vw auto 0;
  width: 90vw;
}
.forBusinessesPage .otherSection .headingsEn {
  margin-bottom: 10vw;
}
.forBusinessesPage .otherSection .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 7.5vw 1fr;
  grid-template-rows: auto 1fr;
  gap: 7.5vw 0;
}
.forBusinessesPage .otherSection .inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.forBusinessesPage .otherSection .inner > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.forBusinessesPage .otherSection .img {
  -ms-grid-row: 1;
  grid-row: 1;
}
.forBusinessesPage .otherSection .text {
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 1.5rem;
  line-height: 1.86;
}

/* ==========================================================================
   求人情報 一覧
========================================================================== */
.jobInformationListPage .topText {
  width: 90vw;
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 1.73;
  letter-spacing: 0.05em;
}
.jobInformationListPage .row {
  width: 90vw;
  margin: 9.75vw auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 10vw 0;
}

/* ==========================================================================
   求人情報 詳細
========================================================================== */
.jobInformationDetailPage .editContents {
  width: 90vw;
  margin: 7.5vw auto 0;
  font-size: 1.5rem;
  line-height: 1.73;
}
.jobInformationDetailPage .editContents > *:not(:first-child) {
  margin-top: 7.5vw;
}
.jobInformationDetailPage .editContents > * + .headingsDetailH2 {
  margin-top: 12.25vw;
}
.jobInformationDetailPage .editContents > * + .headingsDetailH3 {
  margin-top: 12.25vw;
}
.jobInformationDetailPage .editContents .images .caption {
  text-align: right;
  font-size: 1.2rem;
  color: #858585;
  margin-top: 2vw;
}
.jobInformationDetailPage .editContents .author {
  margin-top: 14.75vw;
  text-align: right;
}
.jobInformationDetailPage .editContents .author cite {
  font-style: normal;
  padding-left: 1em;
}
.jobInformationDetailPage .wrapper {
  margin-top: 20vw;
  padding: 20vw 0 25vw;
  background: #F1F6F6;
}
.jobInformationDetailPage .jobDescription .headingsEn {
  margin-bottom: 10vw;
}
.jobInformationDetailPage .jobDescription .innerBox {
  width: 90vw;
  margin-inline: auto;
  background: var(--color-white);
  padding: 10vw 5vw;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList {
  font-size: 1.5rem;
  line-height: 1.73;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dt {
  font-weight: 500;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dd {
  margin-top: 1.25vw;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dd + dt {
  margin-top: 7.5vw;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dd > * + * {
  margin-top: 3.5vw;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dd dd {
  margin-top: 1.25vw;
}
.jobInformationDetailPage .jobDescription .jobDescriptionList > dd a {
  color: var(--color-point);
  text-decoration: underline;
}
.jobInformationDetailPage .jobDescription .dotsList li::before {
  content: "・";
}
.jobInformationDetailPage .jobDescription .processList li + li::before {
  content: "↓";
  padding: 1.25vw 0;
  display: block;
}
.jobInformationDetailPage .jobDescription .processList h2 {
  font-size: 1.5rem;
  font-weight: 400;
}
.jobInformationDetailPage .jobDescription .processList p {
  margin-top: 1.25vw;
}
.jobInformationDetailPage .consultation {
  width: 90vw;
  margin: 15vw auto 0;
  border: 1.25vw solid var(--color-point);
  padding: 10.5vw 3.75vw 10vw;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.jobInformationDetailPage .consultation::before {
  content: "";
  width: 33.25vw;
  height: 28.75vw;
  background: url("../img/job-information/consultation_bk1.svg") no-repeat center center/contain;
  position: absolute;
  top: -9.25vw;
  left: -3.75vw;
  z-index: 1;
}
.jobInformationDetailPage .consultation::after {
  content: "";
  width: 34vw;
  height: 32.25vw;
  background: url("../img/job-information/consultation_bk2.svg") no-repeat center center/contain;
  position: absolute;
  bottom: -15vw;
  right: -5.5vw;
  z-index: 1;
}
.jobInformationDetailPage .consultation h2 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 10vw;
  position: relative;
  z-index: 2;
}
.jobInformationDetailPage .consultation ul, .jobInformationDetailPage .consultation p {
  position: relative;
  z-index: 2;
}
.jobInformationDetailPage .consultation li {
  padding-bottom: 3.75vw;
  border-bottom: 0.25vw solid #CECECE;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4.75vw;
}
.jobInformationDetailPage .consultation li::before {
  content: "";
  background: url("../img/job-information/check_mark.svg") no-repeat center center/contain;
  width: 6.25vw;
  height: 4vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.jobInformationDetailPage .consultation li + li {
  margin-top: 3.75vw;
}
.jobInformationDetailPage .consultation > p {
  margin-top: 7.5vw;
  font-size: 1.6rem;
  line-height: 1.87;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.jobInformationDetailPage .btnList {
  width: 90vw;
  margin: 10vw auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 3.75vw 1fr;
  grid-template-rows: auto 1fr;
  gap: 3.75vw;
}
.jobInformationDetailPage .btnList > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.jobInformationDetailPage .btnList > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.container:has(.jobInformationDetailPage) .mainCta {
  margin-top: 0;
}

/* ==========================================================================
   404
========================================================================== */
.notFound404Page .notFound {
  width: 92.5vw;
  margin-inline: auto;
}
.notFound404Page .notFound > h2 {
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.notFound404Page .notFound > p {
  font-size: 1.5rem;
  line-height: 1.73;
  margin-top: 9.75vw;
}

/* ==========================================================================
   プライバシーポリシー
========================================================================== */
.privacyPolicyPage .main {
  width: 92.5vw;
  margin-inline: auto;
  font-size: 1.4rem;
  line-height: 1.78;
}
.privacyPolicyPage .privacySec {
  margin-top: 2em;
}
.privacyPolicyPage .privacySec > h2 {
  font-size: 1.4rem;
  font-weight: 400;
}
.privacyPolicyPage .privacySec .parentOl {
  counter-reset: num-counter;
}
.privacyPolicyPage .privacySec .parentOl > li {
  counter-increment: num-counter 1;
  text-indent: -1.7em;
  margin-left: 1.7em;
}
.privacyPolicyPage .privacySec .parentOl > li::before {
  content: counter(num-counter, fullwidth-decimal);
  padding-right: 1em;
}
.privacyPolicyPage .privacySec .childOl {
  margin-left: -1em;
  counter-reset: kanji-counter;
}
.privacyPolicyPage .privacySec .childOl > li {
  counter-increment: kanji-counter 1;
  text-indent: -2em;
  margin-left: 2em;
}
.privacyPolicyPage .privacySec .childOl > li::before {
  content: counter(kanji-counter, cjk-ideographic);
  padding-right: 1em;
}
.privacyPolicyPage .privacySec .contact {
  margin-top: 2em;
}
.privacyPolicyPage .endtext {
  margin-top: 2em;
}
.privacyPolicyPage .update {
  margin: 3em 0 0 2em;
}

/* ==========================================================================
   ニュース一覧
========================================================================== */
.newsListPage .newRow {
  width: 90vw;
  margin-inline: auto;
}

/* ==========================================================================
   ニュース詳細
========================================================================== */
.newsDetailPage .editContents {
  width: 90vw;
  margin: 7.5vw auto 0;
}
.newsDetailPage .newsFooter {
  width: 90vw;
  margin: 15vw auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 8.75vw 1fr;
  grid-template-rows: auto 1fr;
  gap: 8.75vw 0;
}
.newsDetailPage .newsFooter > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.newsDetailPage .newsFooter > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.newsDetailPage .newsFooter > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.newsDetailPage .newsFooter > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.newsDetailPage .newsFooter .prev {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.newsDetailPage .newsFooter .next {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column-align: end;
      justify-self: end;
}
.newsDetailPage .newsFooter .backList {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: center;
      justify-self: center;
}
.newsDetailPage .newsFooter .backList .backBtn {
  width: 75vw;
}
.newsDetailPage .newsFooter .prev a, .newsDetailPage .newsFooter .next a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: underline;
}

.entry-content {
  font-size: 1.5rem;
  line-height: 1.73;
}
.entry-content > *:not(:first-child) {
  margin-top: 7.5vw;
}
.entry-content > * + h2 {
  margin-top: 12.25vw;
}
.entry-content > * + h3 {
  margin-top: 12.25vw;
}
.entry-content .images .caption {
  text-align: right;
  font-size: 1.2rem;
  color: #858585;
  margin-top: 2vw;
}
.entry-content ol {
  counter-reset: num-counter;
}
.entry-content ol > li {
  counter-increment: num-counter 1;
  text-indent: -1.4em;
  margin-left: 1.4em;
}
.entry-content ol > li::before {
  content: counter(num-counter) ".";
  padding-right: 0.5em;
}
.entry-content ul > li {
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.entry-content ul > li::before {
  content: "■";
  padding-right: 0.5em;
}
.entry-content table {
  border: 0.25vw solid #B8B8B8;
  border-collapse: collapse;
}
.entry-content table th, .entry-content table td {
  padding: 0.5em;
  border: 0.25vw solid #B8B8B8;
}
.entry-content table th {
  background: #E5F7F7;
}
.entry-content blockquote {
  font-style: italic;
}
.entry-content blockquote::before {
  content: "“";
}
.entry-content blockquote::after {
  content: "”";
}
.entry-content a {
  color: var(--color-point);
  text-decoration: underline;
  font-weight: 700;
}

/* ==========================================================================
   合同説明会（メタバース開催）
========================================================================== */
.jobFairPage .topSec {
  width: 90vw;
  margin-inline: auto;
}
.jobFairPage .topSec .date {
  margin-top: 10vw;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.jobFairPage .topSec .description {
  margin-top: 7.5vw;
  border: 0.25vw solid var(--color-main);
  padding: 5vw;
}
.jobFairPage .topSec .description p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.05em;
}
.jobFairPage .joinText {
  margin: 15vw auto 0;
  width: 90vw;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.03em;
}
.jobFairPage .joinSec {
  margin: 9.75vw auto 0;
  width: 90vw;
}
.jobFairPage .joinSec h2 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.jobFairPage .joinSec .btn {
  width: 75vw;
  margin: 6.25vw auto 0;
}
.jobFairPage .announcement {
  margin: 15vw auto 0;
  width: 90vw;
  background: #EFF1F3;
  padding: 5vw;
}
.jobFairPage .announcement h2 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5vw;
}
.jobFairPage .announcement h2::before {
  content: "";
  width: 8.5vw;
  height: 4.75vw;
  background: url("../img/job-fair/announcement.svg") no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.jobFairPage .announcement p {
  margin-top: 3.5vw;
  font-size: 1.5rem;
  line-height: 1.86;
  letter-spacing: 0.03em;
}
.jobFairPage .companies {
  margin-top: 20vw;
  background: #F7FAFA;
  padding: 20vw 0 54vw;
}
.jobFairPage .companies > h2 {
  width: 90vw;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto 7.25vw;
}
.jobFairPage .companies .row {
  margin: 0 auto;
  width: 70vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 10vw;
}
.jobFairPage .companies .jobFairCompanyBox .dataBox {
  -webkit-box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
          box-shadow: 0 0.75vw 1.5vw rgba(62, 125, 125, 0.3);
  background: var(--color-white);
  display: -ms-grid;
  display: grid;
}
.jobFairPage .companies .jobFairCompanyBox .logo {
  margin: 5.5vw 3.75vw 0;
  max-height: 35.75vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.jobFairPage .companies .jobFairCompanyBox .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.jobFairPage .companies .jobFairCompanyBox h2 {
  margin: 8.5vw 4.1666666667vw 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding-bottom: 2.5vw;
  border-bottom: 0.25vw solid #D1D1D1;
}
.jobFairPage .companies .jobFairCompanyBox .description {
  margin: 2.75vw 3.75vw 0;
  font-size: 1.4rem;
  line-height: 1.57;
}
.jobFairPage .companies .jobFairCompanyBox dl {
  margin: 4.5vw 3.75vw 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20vw 2.75vw 1fr;
  grid-template-columns: 20vw 1fr;
  gap: 2vw 2.75vw;
}
.jobFairPage .companies .jobFairCompanyBox dl dt {
  height: 6.25vw;
  background: var(--color-point);
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.jobFairPage .companies .jobFairCompanyBox dl dd {
  font-size: 1.3rem;
  padding-top: 0.2em;
}
.jobFairPage .companies .jobFairCompanyBox .moerText {
  font-size: 1.4rem;
  margin: 3.5vw 3.75vw 0;
  padding-bottom: 3.25vw;
  text-align: right;
}
.jobFairPage .companies .jobFairCompanyBox .movie {
  margin-top: 3.75vw;
  background: #292929;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  height: 11vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5vw;
}
.jobFairPage .companies .jobFairCompanyBox .movie::before {
  content: "";
  width: 7.5vw;
  height: 5.25vw;
  background: url("../img/job-fair/movie_icon.svg") no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.jobFairPage .consultationBanner {
  width: 90vw;
  margin-inline: auto;
  margin-top: -35vw;
  display: block;
}
.jobFairPage .nextTime {
  width: 90vw;
  margin: 20vw auto 0;
  text-align: center;
}
.jobFairPage .nextTime h2, .jobFairPage .nextTime p {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.jobFairPage .faq {
  width: 90vw;
  margin: 10vw auto 0;
}
.jobFairPage .faq > h2 {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4.75vw;
}
.jobFairPage .faq .faqBox {
  border: 0.75vw solid #EFF1F3;
  background: #fff;
}
.jobFairPage .faq .faqBox header {
  background: #EFF1F3;
  padding: 3.75vw 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.75vw;
}
.jobFairPage .faq .faqBox header::before {
  content: "Q";
  width: 10vw;
  height: 10vw;
  background: #23234A;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.jobFairPage .faq .faqBox header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
}
.jobFairPage .faq .faqBox .aBox {
  padding: 5vw;
  display: -ms-grid;
  display: grid;
  gap: 3.75vw;
}
.jobFairPage .faq .faqBox .aBox::before {
  -ms-grid-column: 1;
  grid-column: 1;
  content: "A";
  width: 10vw;
  height: 10vw;
  font-size: 2rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.jobFairPage .faq .faqBox .aBox p {
  -ms-grid-column: 2;
  grid-column: 2;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.05em;
}
.jobFairPage .faq .faqBox + .faqBox {
  margin-top: 5vw;
}
.jobFairPage .note {
  width: 90vw;
  margin: 20vw auto 0;
}
.jobFairPage .note > h2 {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4.75vw;
}
.jobFairPage .note .textBox {
  border: 0.25vw solid var(--color-main);
  padding: 5vw;
}
.jobFairPage .note .textBox p {
  font-size: 1.5rem;
  line-height: 2;
}

/* ==========================================================================
   ヘッダー タブレット
========================================================================== */
@media (min-width: 768px) {
  .mainHeader {
    height: 60px;
    padding-left: 15px;
    -ms-grid-columns: 1fr 60px 60px;
    grid-template-columns: 1fr 60px 60px;
  }
  .mainHeader::after {
    height: 6px;
    bottom: -6px;
  }
  .mainHeader .headerContact a::before {
    width: 22px;
    height: 17px;
  }
  .mainHeader .menuBtn {
    display: block;
  }
  .mainHeader .menuBtn button {
    cursor: pointer;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .mainHeader .menuBtn button:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .mainHeader .menuBtn .lineBox {
    width: 25px;
    height: 18px;
    gap: 8px;
  }
  .mainHeader .menuBtn .line {
    height: 1px;
  }
}
/* ==========================================================================
   ヘッダー PC
========================================================================== */
@media (min-width: 1051px) {
  .mainHeader {
    height: 80px;
    padding-left: 20px;
    -ms-grid-columns: 160px 1fr 197px;
    grid-template-columns: 160px 1fr 197px;
  }
  .mainHeader::after {
    height: 6px;
    bottom: -6px;
  }
  .mainHeader .gNav {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-column-align: end;
        justify-self: end;
    -ms-grid-row-align: end;
        align-self: end;
  }
  .mainHeader .headerContact {
    -ms-grid-column: 3;
    grid-column: 3;
  }
  .mainHeader .headerContact a {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    gap: 0 15px;
  }
  .mainHeader .headerContact a::before {
    width: 22px;
    height: 17px;
  }
  .mainHeader .headerContact a span {
    display: block;
  }
  .mainHeader .menuBtn {
    display: none;
  }
}
/* ==========================================================================
   グローバルナビ　タブレット
========================================================================== */
@media (min-width: 768px) {
  .gNav {
    width: 400px;
    top: 60px;
    right: 0;
    left: auto;
    max-height: calc(100svh - 100px);
  }
  .gNav .privacy {
    display: block;
  }
}
/* ==========================================================================
   グローバルナビ PC
========================================================================== */
@media (min-width: 1051px) {
  .gNav {
    container-type: inherit;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    position: static;
    width: auto;
    padding: 0 22px 0 0;
    max-height: none;
    overflow: hidden;
  }
  .gNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gNav .mainPageLink {
    -ms-grid-row: 2;
    grid-row: 2;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .gNav .mainPageLink li:not(:first-child) {
    border-top: none;
  }
  .gNav .mainPageLink li:last-child {
    border-bottom: none;
  }
  .gNav .mainPageLink li:not(:last-child) {
    border-right: 1px solid #DEDEDE;
  }
  .gNav .mainPageLink a {
    min-height: 37px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 8px;
    padding: 0.2em 15px 0;
    background: none;
    border-bottom: 3px solid transparent;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
  }
  .gNav .mainPageLink a::before {
    width: 20px;
    height: 15px;
    margin-top: 0.25em;
  }
  .gNav .mainPageLink a:hover {
    border-bottom-color: var(--color-point);
  }
  .gNav .mainPageLink .current {
    border-bottom-color: var(--color-point);
  }
  .gNav .subPageLink {
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 25px;
    margin-bottom: 13px;
    padding-right: 15px;
  }
  .gNav .subPageLink li {
    border-bottom: none;
  }
  .gNav .subPageLink a {
    min-height: 0;
    display: inline-block;
    padding-left: 0;
    background: none;
    text-decoration: underline;
  }
  .gNav .contactBtn {
    display: none;
  }
  .gNav .privacy {
    display: none;
  }
  .gNav .copyright {
    display: none;
  }
}
/* ==========================================================================
   下層タイトル
========================================================================== */
@media (min-width: 768px) {
  .pageHeader {
    background: url("../img/common/pc_page_title_bk.jpg") no-repeat center center/cover;
    height: 243px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin-bottom: 113px;
  }
  .pageHeader .pageTitle {
    width: min(100% - 40px, 1240px);
    font-size: 6rem;
  }
  .pageHeader .pageTitle::after {
    margin-top: 26px;
    font-size: 2rem;
  }
  .pageHeader .pageTitleSmall {
    font-size: clamp(45px, 20.593220339px + 3.1779661017vw, 60px);
  }
}
/* ==========================================================================
   CTA PC
========================================================================== */
@media (min-width: 768px) {
  .mainCta {
    margin-top: 100px;
    background: url("../img/common/tb_cta_bk.jpg") no-repeat center center/cover;
    padding: 60px 0;
  }
  .mainCta .ctaInner {
    width: 500px;
    padding: 43px 0 40px;
  }
  .mainCta .headingsEn {
    margin-bottom: 20px;
  }
  .mainCta .telForm {
    margin-top: 33px;
    gap: 20px 0;
  }
  .mainCta .telForm .tel::before {
    width: 22px;
    height: 35px;
    margin-right: 10px;
  }
  .mainCta .telForm .btnMail {
    min-width: 300px;
    min-height: 70px;
  }
}
@media (min-width: 1025px) {
  .mainCta {
    margin-top: 150px;
    background: url("../img/common/pc_cta_bk.jpg") no-repeat center center/cover;
    padding: 80px 0;
  }
  .mainCta .ctaInner {
    width: min(100% - 40px, 942px);
    padding: clamp(30px, -102.4137931034px + 17.2413793103vw, 60px);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .mainCta header {
    -ms-grid-column: 1;
    grid-column: 1;
    border-right: 1px solid #DEDEDE;
    padding-right: 20px;
  }
  .mainCta .headingsEn {
    margin-bottom: 20px;
    text-align: left;
    font-size: clamp(30px, -14.1379310345px + 5.7471264368vw, 40px);
  }
  .mainCta .text {
    text-align: justify;
    margin-top: 20px;
  }
  .mainCta .telForm {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-column-align: end;
        justify-self: end;
    margin-top: 0;
    gap: 21px 0;
    padding-left: 20px;
  }
  .mainCta .telForm .tel {
    font-size: 4rem;
  }
  .mainCta .telForm .tel::before {
    width: 22px;
    height: 35px;
    margin-right: 10px;
  }
  .mainCta .telForm .btnMail {
    min-width: 350px;
    min-height: 80px;
  }
}
/* ==========================================================================
   ヘッダー タブレット
========================================================================== */
@media (min-width: 768px) {
  .mainFooter .footerInner {
    padding: 40px 0 10px;
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
  }
  .mainFooter .footerLog {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
  .mainFooter address {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-bottom: 0;
  }
  .mainFooter address h2 {
    margin-bottom: 16px;
  }
  .mainFooter address dl {
    line-height: 1.42;
  }
  .mainFooter .footerNav {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column-align: end;
        justify-self: end;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
    font-size: 1.4rem;
  }
  .mainFooter .footerNav li + li {
    margin-top: 5px;
  }
  .mainFooter .footerNav a::before {
    content: "・";
  }
}
/* ==========================================================================
   ボタン共通
========================================================================== */
@media (min-width: 768px) {
  .btn {
    gap: 0 10px;
    max-width: 400px;
    min-height: 70px;
    font-size: 1.6rem;
    padding: 10px 25px;
    border: 1px solid transparent;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .btn::before {
    width: 7px;
    height: 14px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .btn::after {
    width: 7px;
    height: 14px;
    -webkit-transition: background-color 0.3s ease-in, translate 0.3s;
    transition: background-color 0.3s ease-in, translate 0.3s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .btn:hover {
    opacity: 1;
    background: var(--color-white);
    border-color: var(--color-main);
    color: var(--color-main);
  }
  .btn:hover::after {
    translate: 5px 0;
    background: var(--color-main);
  }
}
@media (min-width: 768px) {
  .btnShort {
    max-width: 350px;
    min-height: 80px;
  }
}
@media (min-width: 768px) {
  .btnMail::before {
    width: 20px;
    height: 16px;
  }
  .btnMail::after {
    width: 20px;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .btnMail:hover::before {
    background: var(--color-main);
  }
}
@media (min-width: 768px) and (hover: hover) {
  .btnPointColor:hover {
    color: var(--color-point);
    border-color: var(--color-point);
  }
  .btnPointColor:hover::after {
    background: var(--color-point);
  }
}
/* ==========================================================================
   もっと読む系
========================================================================== */
@media (min-width: 768px) {
  .moerText {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
  }
  .moerText .text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .moerText .text::before, .moerText .text::after {
    -webkit-transition: translate 0.2s;
    transition: translate 0.2s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .moerText .text:hover {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .moerTextArrowRight .text::after {
    width: 7px;
    height: 13px;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .moerTextArrowRight .text:hover::after {
    translate: 5px 0;
  }
}
@media (min-width: 768px) {
  .moerTextArrowLeft .text::before {
    width: 7px;
    height: 13px;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .moerTextArrowLeft .text:hover::before {
    translate: -5px 0;
  }
}
/* ==========================================================================
   戻る系
========================================================================== */
@media (min-width: 768px) {
  .backBtn {
    font-size: 1.6rem;
  }
  .backBtn::before {
    width: 7px;
    height: 14px;
    -webkit-transition: background-color 0.3s ease-in, translate 0.3s;
    transition: background-color 0.3s ease-in, translate 0.3s;
  }
  .backBtn::after {
    width: 7px;
    height: 14px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .backBtn:hover::before {
    translate: -5px 0;
    background: var(--color-main);
  }
  .backBtn:hover::after {
    translate: 0;
    background: none;
  }
}
/* ==========================================================================
   英語付きH2 ※タブレットサイズあり
========================================================================== */
@media (min-width: 768px) {
  .headingsEn::after {
    margin-top: 7px;
  }
}
@media (min-width: 1025px) {
  .headingsEn {
    font-size: 4rem;
  }
  .headingsEn::after {
    margin-top: 6px;
  }
}
/* ==========================================================================
   詳細ページH2
========================================================================== */
@media (min-width: 768px) {
  .headingsDetailH2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.75;
    padding-bottom: 10px;
    border-bottom: 1px solid #CECECE;
  }
  .entry-content > h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.75;
    padding-bottom: 10px;
    border-bottom: 1px solid #CECECE;
  }
}
/* ==========================================================================
   詳細ページH3
========================================================================== */
@media (min-width: 768px) {
  .headingsDetailH3 {
    font-size: 1.8rem;
    line-height: 1.94;
  }
  .entry-content > h3 {
    font-size: 1.8rem;
    line-height: 1.94;
  }
}
/* ==========================================================================
   左画像右テキスト バナーボックス
========================================================================== */
@media (min-width: 768px) {
  .imgBannerBox {
    width: min(100% - 40px, 942px);
    container-type: inline-size;
  }
  .imgBannerBox > a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50.2123142251cqw 49.7876857749cqw;
    grid-template-columns: 50.2123142251cqw 49.7876857749cqw;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .imgBannerBox > a > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .imgBannerBox > a > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .imgBannerBox .imgBannerImg {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .imgBannerBox .imgBannerImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .imgBannerBox .imgBannerText {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 4.2462845011cqw;
    background: url("../img/common/pc_img_banner_bk.jpg") no-repeat center center/cover;
  }
  .imgBannerBox h2 {
    font-size: 2.2rem;
    line-height: 1.8;
  }
  .imgBannerBox p {
    margin-top: 21px;
  }
  .imgBannerBox .btn {
    margin: 29px 0 0;
    pointer-events: none;
  }
  .imgBannerBox .btn::after {
    width: 15px;
    height: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .imgBannerBox {
    width: 46.875cqw;
    container-type: inline-size;
  }
  .imgBannerBox > a {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .imgBannerBox > a > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .imgBannerBox > a > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .imgBannerBox .imgBannerImg {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .imgBannerBox .imgBannerText {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    padding: 20px;
  }
  .imgBannerBox .btn {
    margin-inline: auto;
    min-height: 70px;
  }
}
/* ==========================================================================
   詳細ページヘッダー
========================================================================== */
@media (min-width: 768px) {
  .singularHeader {
    width: min(100% - 40px, 942px);
    margin: 100px auto 0;
    padding-bottom: 34px;
    border-bottom: 1px solid #E3E3E3;
  }
  .singularHeader .data {
    gap: 5px 20px;
  }
  .singularHeader .catList {
    gap: 10px;
  }
  .singularHeader .catBox {
    padding: 3px 10px;
    min-height: 24px;
  }
  .singularHeader .detailTitle {
    margin-top: 15px;
    font-size: 2.2rem;
    line-height: 1.81;
  }
}
/* ==========================================================================
   求人カード
========================================================================== */
@media (min-width: 768px) {
  .jobCard a {
    -webkit-box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
            box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
  }
  .jobCard a img {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .jobCard a .moerText {
    pointer-events: none;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .jobCard a:hover {
    opacity: 1;
  }
  .jobCard a:hover img {
    opacity: 0.8;
  }
  .jobCard a:hover .moerText .text::after {
    translate: 5px 0;
  }
}
@media (min-width: 1025px) {
  .jobCard {
    display: contents;
  }
  .jobCard a {
    container-type: inherit;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 5;
    grid-row: span 5;
    gap: 0;
  }
  .jobCard h2 {
    margin: 12px 16px 0;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #D1D1D1;
  }
  .jobCard .description {
    margin: 11px 16px 0;
    font-size: 1.4rem;
  }
  .jobCard dl {
    margin: 18px 16px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 11px 1fr;
    grid-template-columns: 80px 1fr;
    gap: 8px 11px;
  }
  .jobCard dl dt {
    height: 25px;
    font-size: 1.3rem;
  }
  .jobCard dl dd {
    font-size: 1.3rem;
  }
  .jobCard .moerText {
    margin: 14px 16px 0;
    padding-bottom: 13px;
  }
}
/* ==========================================================================
   ニュース一覧 用
========================================================================== */
@media (min-width: 768px) {
  .newsListBox {
    border-bottom: 1px solid #CECECE;
  }
  .newsListBox a {
    padding: 20px 40px 20px 0;
    background: url("../img/common/arrow_point_color.svg") no-repeat right center/7px auto;
  }
  .newsListBox .data {
    gap: 5px 20px;
  }
  .newsListBox .catList {
    gap: 10px;
  }
  .newsListBox .catList li {
    padding: 3px 10px;
    min-height: 24px;
    color: var(--color-white);
  }
  .newsListBox h2 {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .newsListBox a {
    padding: 16px 40px 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .newsListBox .data {
    gap: 5px 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .newsListBox .catList {
    gap: 10px;
  }
  .newsListBox .catList li {
    padding: 3px 10px;
    min-height: 24px;
    color: var(--color-white);
  }
  .newsListBox h2 {
    margin-top: 0.2em;
    line-height: 2;
    text-box-trim: trim-both;
  }
}
/* ==========================================================================
   TOP FV
========================================================================== */
@media (min-width: 768px) {
  .topPage .fv {
    padding-top: 5.2083333333vw;
    background: url("../img/top/fv_bk.svg") no-repeat left 6.7708333333vw/100% auto;
    background-color: #F6F6F6;
  }
  .topPage .fv .siteTitle {
    font-size: 5.078125vw;
  }
  .topPage .fv .siteTitle::before {
    width: 13.9322916667vw;
    height: 6.7708333333vw;
    margin: 0 auto 1.953125vw;
  }
  .topPage .fv .catch {
    margin-top: 3.7760416667vw;
  }
  .topPage .fv .catch span {
    font-size: 2.34375vw;
    min-height: 5.46875vw;
  }
  .topPage .fv .catch span:first-child {
    width: 46.875vw;
  }
  .topPage .fv .catch span:last-child {
    width: 18.2291666667vw;
    margin-top: 1.3020833333vw;
  }
  .topPage .fv .fvImg {
    margin-top: 3.2552083333vw;
  }
  .topPage .fv .en {
    font-size: 8.8541666667vw;
    translate: 0 1.3020833333vw;
  }
  .topPage .scroll {
    display: none;
  }
}
/* ==========================================================================
   TOP FVPC
========================================================================== */
@media (min-width: 1025px) {
  .topPage .fv {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.1428571429vw 58.5714285714vw;
    grid-template-columns: 1fr 58.5714285714vw;
    -ms-grid-rows: 1fr 0 auto;
    grid-template-rows: 1fr auto;
    gap: 0 2.1428571429vw;
    padding-top: 0;
    background: url("../img/top/fv_bk.svg") no-repeat left bottom/46.6428571429vw auto;
    background-color: #F6F6F6;
    position: relative;
  }
  .topPage .fv > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .topPage .fv > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .topPage .fv > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .topPage .fv > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .topPage .fv .fvHeader {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .topPage .fv .siteTitle {
    font-size: 6rem;
  }
  .topPage .fv .siteTitle::before {
    width: 160px;
    height: 79px;
    margin: 0 auto 25px;
  }
  .topPage .fv .catch {
    margin-top: 3.4285714286vw;
  }
  .topPage .fv .catch span {
    font-size: clamp(18px, 13.1392405063px + 0.6329113924vw, 22px);
    min-height: 2.2727272727em;
  }
  .topPage .fv .catch span:first-child {
    width: 19.5454545455em;
  }
  .topPage .fv .catch span:last-child {
    width: 7.5909090909em;
    margin-top: 10px;
  }
  .topPage .fv .fvImg {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    z-index: 1;
    margin-top: 0;
  }
  .topPage .fv .en {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
    z-index: 2;
    -ms-grid-row-align: end;
        align-self: end;
    -ms-grid-column-align: start;
        justify-self: start;
    text-align: left;
    font-size: 8.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    opacity: 0.68;
    translate: 0 -3.4285714286vw;
    margin-left: 4.2857142857vw;
  }
  .topPage .fv .scroll {
    display: block;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: absolute;
    bottom: 10px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .topPage .fv .scroll::after {
    content: "";
    width: 5px;
    height: 36px;
    background: url("../img/top/fv_scroll.svg") no-repeat center center/contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1401px) {
  .topPage .fv {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.1052631579vw clamp(941px, 73.4468937876px + 61.9238476954vw, 1250px);
    grid-template-columns: 1fr clamp(941px, 73.4468937876px + 61.9238476954vw, 1250px);
    -ms-grid-rows: 1fr 0 auto;
    grid-template-rows: 1fr auto;
    gap: 0 2.1052631579vw;
    padding-top: 0;
    background: url("../img/top/fv_bk.svg") no-repeat left bottom/49.4736842105vw auto;
    background-color: #F6F6F6;
  }
  .topPage .fv > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .topPage .fv > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .topPage .fv > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .topPage .fv > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .topPage .fv::before {
    content: "";
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .topPage .fv .catch {
    margin-top: 48px;
  }
  .topPage .fv .catch span {
    font-size: clamp(18px, 6.7695390782px + 0.8016032064vw, 22px);
  }
  .topPage .fv .fvImg {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    z-index: 1;
    margin-top: 0;
  }
  .topPage .fv .en {
    font-size: 10rem;
    translate: 0 -57px;
    margin-left: 60px;
  }
}
/* ==========================================================================
   TOP リード
========================================================================== */
@media (min-width: 768px) {
  .topPage .readBox {
    padding: 80px 0;
    background: url("../img/top/tb_read_bk.jpg") no-repeat center center/100% 100%;
    background-color: #EEEEF2;
  }
  .topPage .readBox .innerBox {
    width: 499px;
    padding: 40px 16px;
  }
  .topPage .readBox h2 {
    margin-bottom: 29px;
  }
  .topPage .readBox h2 .spShow {
    display: block;
  }
  .topPage .readBox p {
    text-align: center;
  }
  .topPage .readBox p .tbShow {
    display: block;
  }
  .topPage .readBox .space {
    padding-right: 0;
  }
}
@media (min-width: 1025px) {
  .topPage .readBox {
    padding: 140px 0 150px;
    background: url("../img/top/pc_read_bk1.jpg") no-repeat center center/cover;
    background-color: #EEEEF2;
  }
}
@media (min-width: 1025px) and (min-width: 1401px) {
  .topPage .readBox {
    padding: 150px 0;
    background: url("../img/top/pc_read_bk2.jpg") no-repeat center center/cover;
    background-color: #EEEEF2;
  }
}
@media (min-width: 1025px) {
  .topPage .readBox .innerBox {
    width: min(100% - 40px, 1038px);
    padding: 80px;
  }
  .topPage .readBox h2 {
    font-size: 3.5rem;
  }
  .topPage .readBox h2 .spShow {
    display: none;
  }
  .topPage .readBox p {
    font-size: 2.2rem;
    line-height: 1.72;
    text-align: center;
  }
  .topPage .readBox p .tbShow {
    display: none;
  }
  .topPage .readBox .space {
    padding-right: 0.5em;
  }
}
/* ==========================================================================
   TOP お知らせ
========================================================================== */
@media (min-width: 768px) {
  .topPage .newsSection {
    margin: 80px auto 0;
    width: 498px;
  }
  .topPage .newsSection .headingsEn {
    margin-bottom: 20px;
  }
  .topPage .newsSection .moerText {
    text-align: right;
    margin-top: 16px;
  }
}
@media (min-width: 1025px) {
  .topPage .newsSection {
    margin: 100px auto 0;
    width: min(100% - 40px, 942px);
  }
  .topPage .newsSection .headingsEn {
    margin-bottom: 44px;
  }
  .topPage .newsSection .moerText {
    margin-top: 11px;
  }
}
/* ==========================================================================
   TOP 求人情報
========================================================================== */
@media (min-width: 768px) {
  .topPage .wrapper {
    margin-top: 80px;
    padding: 80px 0;
  }
  .topPage .wrapper::before {
    width: 200px;
    height: 173px;
    top: -45px;
    left: -56px;
  }
  .topPage .wrapper::after {
    width: 310px;
    height: 295px;
    bottom: -152px;
    right: -88px;
  }
  .topPage .jobInfo {
    width: 498px;
  }
  .topPage .jobInfo > header {
    margin-bottom: 19px;
  }
  .topPage .jobInfo > header p {
    margin-top: 40px;
  }
  .topPage .jobInfo > header p .spShow {
    display: block;
  }
  .topPage .jobInfo .toptext .pcShow {
    display: none;
  }
  .topPage .jobInfo .row {
    width: 360px;
    margin-inline: auto;
    gap: 40px 0;
    margin-top: 39px;
  }
  .topPage .jobInfo .moreBtn {
    margin: 60px auto 0;
    width: 300px;
    min-height: 70px;
  }
  .topPage .imgBannerBox {
    margin-top: 80px;
  }
}
@media (min-width: 1025px) {
  .topPage .wrapper {
    margin-top: 120px;
    padding: 120px 0;
  }
  .topPage .wrapper::before {
    width: 517px;
    height: 449px;
    top: -114px;
    left: -145px;
  }
  .topPage .wrapper::after {
    width: 801px;
    height: 762px;
    bottom: -330px;
    right: -142px;
  }
  .topPage .jobInfo {
    width: min(100% - 40px, 1240px);
  }
  .topPage .jobInfo > header p {
    font-size: 2.5rem;
  }
  .topPage .jobInfo > header p .spShow {
    display: none;
  }
  .topPage .jobInfo .toptext {
    text-align: center;
  }
  .topPage .jobInfo .toptext .pcShow {
    display: block;
  }
  .topPage .jobInfo .row {
    width: 100%;
    margin-inline: auto;
    margin-top: 59px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr clamp(15px, -15.3797468354px + 3.9556962025vw, 40px) 1fr clamp(15px, -15.3797468354px + 3.9556962025vw, 40px) 1fr clamp(15px, -15.3797468354px + 3.9556962025vw, 40px) 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 clamp(15px, -15.3797468354px + 3.9556962025vw, 40px);
  }
  .topPage .jobInfo .moreBtn {
    margin: 80px auto 0;
    width: 350px;
    min-height: 80px;
  }
}
/* ==========================================================================
   TOP 合同説明会
========================================================================== */
@media (min-width: 768px) {
  .topPage .jobFair {
    width: 500px;
    margin: 80px auto 0;
  }
  .topPage .jobFair .headingsEn {
    margin-bottom: 40px;
  }
  .topPage .jobFair .imgBox {
    margin-bottom: 30px;
  }
  .topPage .jobFair .textBox p {
    font-size: 1.5rem;
  }
  .topPage .jobFair .textBox .btnList {
    margin: 39px auto 0;
    width: 360px;
  }
  .topPage .jobFair .textBox .btnList li + li {
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  .topPage .jobFair {
    width: min(100% - 40px, 1240px);
    margin: 120px auto 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% clamp(30px, -52px + 8vw, 60px) 1fr;
    grid-template-columns: 50% 1fr;
    -ms-grid-rows: auto 0 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 clamp(30px, -52px + 8vw, 60px);
  }
  .topPage .jobFair > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .topPage .jobFair > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .topPage .jobFair > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .topPage .jobFair > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .topPage .jobFair .headingsEn {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-bottom: 60px;
  }
  .topPage .jobFair .imgBox {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-bottom: 0;
  }
  .topPage .jobFair .textBox {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .topPage .jobFair .textBox p {
    font-size: 1.5rem;
  }
  .topPage .jobFair .textBox .btnList {
    width: 400px;
    margin-top: 59px;
  }
}
/* ==========================================================================
   TOP 私たちについて
========================================================================== */
@media (min-width: 768px) {
  .topPage .about {
    width: 500px;
    margin: 80px auto 0;
  }
  .topPage .about .headingsEn {
    margin-bottom: 40px;
  }
  .topPage .about .imgBox {
    margin-bottom: 20px;
  }
  .topPage .about .textBox .logo {
    width: 360px;
    margin-inline: auto;
  }
  .topPage .about .textBox .overview {
    margin-top: 20px;
    width: 360px;
    margin-inline: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 105px 0 1fr;
    grid-template-columns: 105px 1fr;
    gap: 8px 0;
  }
  .topPage .about .textBox dt, .topPage .about .textBox dd {
    border-bottom: 1px solid #E8E9E2;
    padding-bottom: 7px;
  }
}
@media (min-width: 1025px) {
  .topPage .about {
    width: min(100% - 40px, 1240px);
    margin: 150px auto 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% clamp(30px, -106.6666666667px + 13.3333333333vw, 80px) 1fr;
    grid-template-columns: 50% 1fr;
    -ms-grid-rows: auto 0 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 clamp(30px, -106.6666666667px + 13.3333333333vw, 80px);
  }
  .topPage .about > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .topPage .about > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .topPage .about > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .topPage .about > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .topPage .about .headingsEn {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-bottom: 60px;
  }
  .topPage .about .imgBox {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-bottom: 0;
  }
  .topPage .about .textBox {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-row-align: end;
        align-self: end;
  }
  .topPage .about .textBox .logo {
    width: 400px;
    margin-inline: 0;
  }
  .topPage .about .textBox .overview {
    margin-top: 30px;
    width: auto;
    max-width: 490px;
    margin-inline: 0;
    gap: 5px 0;
  }
  .topPage .about .textBox .overview dt, .topPage .about .textBox .overview dd {
    padding-bottom: 5px;
  }
  .topPage .about .textBox .overview .address span {
    display: none;
    padding-left: 1em;
  }
}
/* ==========================================================================
   企業のみなさまへ
========================================================================== */
@media (min-width: 768px) {
  .forBusinessesPage .topText {
    width: min(100% - 40px, 914px);
  }
  .forBusinessesPage .topText p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.94;
  }
  .forBusinessesPage .topText p + p {
    margin-top: 49px;
  }
  .forBusinessesPage .flowSection {
    margin-top: 99px;
    background: #F1F6F6;
    padding: 120px 0;
    container-type: inline-size;
  }
  .forBusinessesPage .flowSection .headingsEn {
    margin-bottom: 60px;
  }
  .forBusinessesPage .flowSectionInner {
    width: min(100% - 40px, 1240px);
    -webkit-box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
            box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
    padding: clamp(30px, -18.813559322px + 6.3559322034vw, 60px);
    display: -ms-grid;
    display: grid;
    gap: 0 clamp(30px, -18.813559322px + 6.3559322034vw, 60px);
  }
  .forBusinessesPage .flowSectionInner::after {
    content: "";
    background: url("../img/for-businesses/flow_sec_arrow.svg") no-repeat center center/contain;
    width: 60px;
    height: 20px;
    bottom: -50px;
  }
  .forBusinessesPage .flowSectionInner .imgBox {
    -ms-grid-row: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .forBusinessesPage .flowSectionInner .textBox {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .forBusinessesPage .flowSectionInner .textBox .title {
    font-size: 3rem;
    line-height: 1.66;
    margin-bottom: 29px;
  }
  .forBusinessesPage .flowSectionInner .textBox p, .forBusinessesPage .flowSectionInner .textBox li {
    line-height: 1.86;
  }
  .forBusinessesPage .flowSectionInner + .flowSectionInner {
    margin-top: 80px;
  }
  .forBusinessesPage .flowSectionInner1 {
    -ms-grid-columns: minmax(300px, 500px) minmax(300px, 560px);
    grid-template-columns: minmax(300px, 500px) minmax(300px, 560px);
  }
  .forBusinessesPage .flowSectionInner1 .imgBox {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .forBusinessesPage .flowSectionInner1 .textBox {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .forBusinessesPage .flowSectionInner1 .linkBox {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-top: 40px;
  }
  .forBusinessesPage .flowSectionInner2 {
    -ms-grid-columns: minmax(300px, 560px) minmax(300px, 500px);
    grid-template-columns: minmax(300px, 560px) minmax(300px, 500px);
  }
  .forBusinessesPage .flowSectionInner2 .imgBox {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .forBusinessesPage .flowSectionInner2 .textBox {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-align: center;
        align-self: center;
  }
}
@media (min-width: 768px) and (max-width: 1270px) {
  .forBusinessesPage .flowSectionInner2 .textBox .pcShow {
    display: none;
  }
}
@media (min-width: 768px) {
  .forBusinessesPage .flowSectionInner3 {
    -ms-grid-columns: minmax(300px, 500px) minmax(300px, 560px);
    grid-template-columns: minmax(300px, 500px) minmax(300px, 560px);
  }
  .forBusinessesPage .flowSectionInner3 .imgBox {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .forBusinessesPage .flowSectionInner3 .textBox {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .forBusinessesPage .flowSectionInner3 .textBox .title {
    letter-spacing: 0.05em;
  }
  .forBusinessesPage .flowEndText {
    margin-top: 100px;
    font-size: 3rem;
    line-height: 1.66;
  }
  .forBusinessesPage .imgBannerBox {
    position: relative;
    z-index: 1;
  }
  .forBusinessesPage .imgBannerBox::before {
    width: 200vw;
    height: 238px;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
}
@media (min-width: 768px) and (max-width: 975px) {
  .forBusinessesPage .imgBannerBox h2 {
    width: 100%;
  }
  .forBusinessesPage .imgBannerBox h2 br {
    display: none;
  }
}
@media (min-width: 768px) {
  .forBusinessesPage .otherSection {
    margin: 190px auto 0;
    width: min(100% - 40px, 1240px);
    container-type: inline-size;
  }
  .forBusinessesPage .otherSection .headingsEn {
    margin-bottom: 60px;
  }
  .forBusinessesPage .otherSection .inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50cqw 6.4516129032cqw 43.5483870968cqw;
    grid-template-columns: 50cqw 43.5483870968cqw;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 0 6.4516129032cqw;
  }
  .forBusinessesPage .otherSection .inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .forBusinessesPage .otherSection .inner > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .forBusinessesPage .otherSection .img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .forBusinessesPage .otherSection .text {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-row-align: center;
        align-self: center;
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
/* ==========================================================================
   求人情報 一覧
========================================================================== */
@media (min-width: 768px) {
  .jobInformationListPage .topText {
    width: min(100% - 40px, 1240px);
    line-height: 1.86;
  }
  .jobInformationListPage .row {
    width: min(100% - 40px, 1240px);
    margin: 90px auto 0;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: clamp(20px, -4.3037974684px + 3.164556962vw, 40px) clamp(15px, -15.3797468354px + 3.9556962025vw, 40px);
  }
}
/* ==========================================================================
   求人情報 詳細 PC
========================================================================== */
@media (min-width: 768px) {
  .jobInformationDetailPage .editContents {
    width: min(100% - 40px, 942px);
    margin: 40px auto 0;
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .jobInformationDetailPage .editContents > *:not(:first-child) {
    margin-top: 30px;
  }
  .jobInformationDetailPage .editContents > * + .headingsDetailH2 {
    margin-top: 49px;
  }
  .jobInformationDetailPage .editContents > * + .headingsDetailH3 {
    margin-top: 49px;
  }
  .jobInformationDetailPage .editContents .images .caption {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  .jobInformationDetailPage .editContents .author {
    margin-top: 59px;
    text-align: right;
  }
  .jobInformationDetailPage .editContents .author cite {
    font-style: normal;
    padding-left: 1em;
  }
  .jobInformationDetailPage .wrapper {
    margin-top: 119px;
    padding: 120px 0 150px;
  }
  .jobInformationDetailPage .jobDescription .headingsEn {
    margin-bottom: 60px;
  }
  .jobInformationDetailPage .jobDescription .innerBox {
    width: min(100% - 40px, 1140px);
    padding: 100px 99px 99px;
  }
  .jobInformationDetailPage .jobDescription .jobDescriptionList > dd {
    margin-top: 5px;
  }
  .jobInformationDetailPage .jobDescription .jobDescriptionList > dd + dt {
    margin-top: 30px;
  }
  .jobInformationDetailPage .jobDescription .jobDescriptionList > dd > * + * {
    margin-top: 14px;
  }
  .jobInformationDetailPage .jobDescription .jobDescriptionList > dd dd {
    margin-top: 5px;
  }
  .jobInformationDetailPage .jobDescription .flexList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 1em;
  }
  .jobInformationDetailPage .jobDescription .processList li + li::before {
    padding: 5px 0;
  }
  .jobInformationDetailPage .jobDescription .processList p {
    margin-top: 5px;
  }
  .jobInformationDetailPage .consultation {
    width: min(100% - 40px, 864px);
    margin: 120px auto 0;
    border: 5px solid var(--color-point);
    padding: 60px 55px 55px;
  }
  .jobInformationDetailPage .consultation::before {
    width: 339px;
    height: 294px;
    background: url("../img/job-information/pc_consultation_bk1.svg") no-repeat center center/contain;
    top: -81px;
    left: -100px;
  }
  .jobInformationDetailPage .consultation::after {
    width: 348px;
    height: 331px;
    background: url("../img/job-information/pc_consultation_bk2.svg") no-repeat center center/contain;
    bottom: -195px;
    right: -95px;
  }
  .jobInformationDetailPage .consultation h2 {
    font-size: 3.5rem;
    margin-bottom: 48px;
  }
  .jobInformationDetailPage .consultation ul {
    max-width: 444px;
    margin-inline: auto;
  }
  .jobInformationDetailPage .consultation li {
    padding-bottom: 20px;
    border-bottom: 1px solid #CECECE;
    font-size: 2.5rem;
    gap: 0 20px;
    padding-left: 53px;
  }
  .jobInformationDetailPage .consultation li::before {
    width: 30px;
    height: 19px;
  }
  .jobInformationDetailPage .consultation li + li {
    margin-top: 20px;
  }
  .jobInformationDetailPage .consultation > p {
    margin-top: 35px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.94;
  }
  .jobInformationDetailPage .btnList {
    width: min(100% - 40px, 864px);
    margin: 80px auto 0;
    -ms-grid-columns: 1fr clamp(25px, -287px + 40.625vw, 64px) 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: clamp(25px, -287px + 40.625vw, 64px);
  }
  .jobInformationDetailPage .btnList > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .jobInformationDetailPage .btnList > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
/* ==========================================================================
   404
========================================================================== */
@media (min-width: 768px) {
  .notFound404Page .notFound {
    width: min(100% - 40px, 1140px);
  }
  .notFound404Page .notFound > h2 {
    font-size: 3rem;
    line-height: 1.33;
  }
  .notFound404Page .notFound > p {
    line-height: 1.86;
    margin-top: 39px;
  }
}
/* ==========================================================================
   プライバシーポリシー
========================================================================== */
@media (min-width: 768px) {
  .privacyPolicyPage .main {
    width: min(100% - 40px, 1140px);
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
/* ==========================================================================
   ニュース一覧
========================================================================== */
@media (min-width: 768px) {
  .newsListPage .newRow {
    width: min(100% - 40px, 942px);
    margin-inline: auto;
  }
  .newsListPage .newsListBox a {
    background: url("../img/common/arrow_news.svg") no-repeat right center/19px auto;
  }
}
/* ==========================================================================
   ニュース詳細
========================================================================== */
@media (min-width: 768px) {
  .newsDetailPage .editContents {
    width: min(100% - 40px, 942px);
    margin-top: 40px;
  }
  .newsDetailPage .newsFooter {
    width: min(100% - 40px, 942px);
    margin-top: 70px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr clamp(50px, -126.5517241379px + 22.9885057471vw, 90px) 350px clamp(50px, -126.5517241379px + 22.9885057471vw, 90px) 1fr;
    grid-template-columns: 1fr 350px 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 0 clamp(50px, -126.5517241379px + 22.9885057471vw, 90px);
  }
  .newsDetailPage .newsFooter > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .newsDetailPage .newsFooter > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .newsDetailPage .newsFooter > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .newsDetailPage .newsFooter .prev {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: end;
        justify-self: end;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .newsDetailPage .newsFooter .next {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: start;
        justify-self: start;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .newsDetailPage .newsFooter .backList {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: center;
        justify-self: center;
    width: 100%;
  }
  .newsDetailPage .newsFooter .backList .backBtn {
    width: 100%;
  }
  .newsDetailPage .newsFooter .prev a, .newsDetailPage .newsFooter .next a {
    gap: 0 5px;
  }
  .newsDetailPage .newsFooter .prev a:hover, .newsDetailPage .newsFooter .next a:hover {
    opacity: 1;
  }
  .newsDetailPage .newsFooter .prev a::before {
    width: 7px;
    height: 13px;
  }
  .newsDetailPage .newsFooter .next a::after {
    width: 7px;
    height: 13px;
  }
  .entry-content {
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .entry-content > *:not(:first-child) {
    margin-top: 30px;
  }
  .entry-content > * + h2 {
    margin-top: 49px;
  }
  .entry-content > * + h3 {
    margin-top: 49px;
  }
  .entry-content .images .caption {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  .entry-content table {
    border: 1px solid #B8B8B8;
  }
  .entry-content table th, .entry-content table td {
    padding: 0.5em;
    border: 1px solid #B8B8B8;
  }
}
/* ==========================================================================
   合同説明会（メタバース開催）
========================================================================== */
@media (min-width: 768px) {
  .jobFairPage .topSec {
    width: min(100% - 40px, 1240px);
  }
  .jobFairPage .topSec .date {
    margin-top: 60px;
    font-size: 3rem;
    line-height: 1;
  }
  .jobFairPage .topSec .description {
    margin-top: 25px;
    border: 1px solid var(--color-main);
    padding: 40px;
  }
  .jobFairPage .joinText {
    margin: 70px auto 0;
    width: min(100% - 40px, 1240px);
    text-align: center;
  }
  .jobFairPage .joinSec {
    margin: 49px auto 0;
    width: min(100% - 40px, 1240px);
  }
  .jobFairPage .joinSec h2 {
    font-size: 1.8rem;
    line-height: 1.55;
  }
  .jobFairPage .joinSec .btn {
    width: 400px;
    margin: 24px auto 0;
  }
  .jobFairPage .announcement {
    margin: 70px auto 0;
    width: min(100% - 40px, 1038px);
    padding: 30px;
  }
  .jobFairPage .announcement h2 {
    gap: 0 10px;
  }
  .jobFairPage .announcement h2::before {
    width: 34px;
    height: 19px;
  }
  .jobFairPage .announcement p {
    margin-top: 14px;
  }
  .jobFairPage .companies {
    margin-top: 100px;
    padding: 100px 0 204px;
  }
  .jobFairPage .companies > h2 {
    width: min(100% - 40px, 1240px);
    font-size: 3rem;
    margin: 0 auto 39px;
  }
  .jobFairPage .companies .row {
    width: min(100% - 40px, 1240px);
    display: -ms-grid;
    display: grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: clamp(20px, -4.3037974684px + 3.164556962vw, 40px) clamp(15px, -15.3797468354px + 3.9556962025vw, 40px);
  }
  .jobFairPage .companies .jobFairCompanyBox .dataBox {
    display: contents;
    -webkit-box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
            box-shadow: 0 3px 6px rgba(62, 125, 125, 0.3);
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 6;
    grid-row: span 6;
    gap: 0;
  }
  .jobFairPage .companies .jobFairCompanyBox .dataBox img {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .jobFairPage .companies .jobFairCompanyBox .dataBox .moerText {
    pointer-events: none;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .jobFairPage .companies .jobFairCompanyBox .dataBox:hover {
    opacity: 1;
  }
  .jobFairPage .companies .jobFairCompanyBox .dataBox:hover img {
    opacity: 0.8;
  }
  .jobFairPage .companies .jobFairCompanyBox .dataBox:hover .moerText .text::after {
    translate: 5px 0;
  }
}
@media (min-width: 768px) {
  .jobFairPage .companies .jobFairCompanyBox .logo {
    margin: 22px 16px 0;
    max-height: 143px;
  }
  .jobFairPage .companies .jobFairCompanyBox h2 {
    margin: 34px 16px 0;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
  }
  .jobFairPage .companies .jobFairCompanyBox .description {
    margin: 11px 16px 0;
    font-size: 1.4rem;
  }
  .jobFairPage .companies .jobFairCompanyBox dl {
    margin: 18px 16px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 80px 11px 1fr;
    grid-template-columns: 80px 1fr;
    gap: 8px 11px;
  }
  .jobFairPage .companies .jobFairCompanyBox dl dt {
    height: 25px;
    font-size: 1.3rem;
  }
  .jobFairPage .companies .jobFairCompanyBox dl dd {
    font-size: 1.3rem;
  }
  .jobFairPage .companies .jobFairCompanyBox .moerText {
    margin: 14px 16px 0;
    padding-bottom: 13px;
  }
  .jobFairPage .companies .jobFairCompanyBox .movie {
    margin-top: 15px;
    height: 44px;
    gap: 0 20px;
  }
  .jobFairPage .companies .jobFairCompanyBox .movie::before {
    width: 30px;
    height: 21px;
  }
  .jobFairPage .consultationBanner {
    width: min(100% - 40px, 942px);
    margin-top: -104px;
  }
  .jobFairPage .nextTime {
    width: min(100% - 40px, 1240px);
    margin: 80px auto 0;
  }
  .jobFairPage .nextTime h2,
  .jobFairPage .nextTime p {
    font-size: 3.5rem;
    line-height: 1.57;
  }
  .jobFairPage .faq {
    width: min(100% - 40px, 1240px);
    margin: 100px auto 0;
  }
  .jobFairPage .faq > h2 {
    font-size: 3rem;
    margin-bottom: 39px;
  }
  .jobFairPage .faq .faqBox {
    max-width: 1140px;
    margin-inline: auto;
    border: 3px solid #eff1f3;
  }
  .jobFairPage .faq .faqBox header {
    padding: 15px 20px;
    gap: 0 15px;
  }
  .jobFairPage .faq .faqBox header::before {
    width: 40px;
    height: 40px;
  }
  .jobFairPage .faq .faqBox header h2 {
    font-size: 1.6rem;
  }
  .jobFairPage .faq .faqBox .aBox {
    padding: 20px;
    display: -ms-grid;
    display: grid;
    gap: 15px;
    -ms-grid-columns: auto 15px 1fr;
    grid-template-columns: auto 1fr;
  }
  .jobFairPage .faq .faqBox .aBox::before {
    width: 40px;
    height: 40px;
  }
  .jobFairPage .faq .faqBox + .faqBox {
    margin-top: 30px;
  }
  .jobFairPage .note {
    width: min(100% - 40px, 1240px);
    margin: 100px auto 0;
  }
  .jobFairPage .note > h2 {
    font-size: 3rem;
    margin-bottom: 39px;
  }
  .jobFairPage .note .textBox {
    max-width: 1140px;
    margin-inline: auto;
    border: 1px solid var(--color-main);
    padding: 60px;
  }
}