@charset "UTF-8";
/*
Theme Name: YOUR SPORTS RECRUIT
Author: 3BroWorks
Description: original theme
Version： 1.0.0
*/
@import url(./assets/css/normalize.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);
/*---------------------------------------
   基本設定
---------------------------------------*/
html {
  scroll-behavior: smooth;
  /* 固定ヘッダー（.header height: 80px）分のアンカー・スクロール余白 */
  scroll-padding-top: 80px;
}

body {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.75;
}
@media only screen and (max-width: 740px) {
  body {
    font-size: 3.6vw;
  }
}

img {
  height: auto;
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

a:hover {
  color: #FF5C00;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/*---------------------------------------
   レイアウト
---------------------------------------*/
.section {
  padding: 120px 0;
}
@media only screen and (max-width: 960px) {
  .section {
    padding: 60px 0;
  }
}

.container {
  margin: 0 auto;
}
.container--right {
  margin: 0 0 0 auto;
}
.container--left {
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 1440px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 740px) {
  .container {
    padding: 0 20px;
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 740px) {
  .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flexbox.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__list, .content__list--col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  margin: 80px auto;
}
.content__list::before, .content__list--col3::before {
  content: attr(data-text);
  position: absolute;
  top: 40px;
  left: -3.5em;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .content__list, .content__list--col3 {
    display: block;
    margin: 80px auto 40px;
  }
  .content__list::before, .content__list--col3::before {
    top: -40px;
    left: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    font-size: 2.8vw;
  }
}
.content__list--col3 {
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content__item {
  width: 100%;
}
.content__item img {
  margin-bottom: 22px;
}
@media only screen and (max-width: 740px) {
  .content__item {
    margin-bottom: 30px;
  }
}
.content__title {
  font-size: 2rem;
  font-weight: 500;
  color: #FF5C00;
  margin-bottom: 23px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
@media only screen and (max-width: 740px) {
  .content__title {
    font-size: 4.2vw;
  }
}
.content__title--num::before {
  content: attr(data-num);
}
.content__title--num::after {
  content: "|";
  position: absolute;
  top: 0;
  left: 1.5em;
}

.w-xl {
  max-width: 1440px;
}

.w-l {
  max-width: 1140px;
}

.w-m {
  max-width: 960px;
}

.w-s {
  max-width: 650px;
}

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

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

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 740px) {
  .pb-80 {
    padding-bottom: 40px;
  }
}

.p-35 {
  padding: 0 35px;
}
@media only screen and (max-width: 740px) {
  .p-35 {
    padding: 0;
  }
}

/*---------------------------------------
   文字装飾
---------------------------------------*/
.title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}
.title::before {
  content: attr(data-text);
  font-size: 2rem;
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .title {
    font-size: 5.3vw;
  }
  .title::before {
    font-size: 2.9vw;
  }
}
.title.txt-lft {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sub-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #FF5C00;
  margin-bottom: 50px;
}
@media only screen and (max-width: 740px) {
  .sub-title {
    font-size: 4.2vw;
  }
}

.underline {
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 1px;
  text-decoration-color: #FF5C00;
  margin-bottom: 25px;
  line-height: 2;
}

.txt-ctr {
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .txt-ctr {
    text-align: left;
  }
}

#confirm .txt-ctr {
  text-align: center !important;
}

.txt-lft {
  text-align: left;
}

.lead {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 740px) {
  .lead {
    font-size: 3.73vw !important;
  }
}

.medium {
  font-size: 1.15em;
}
@media only screen and (max-width: 740px) {
  .medium {
    font-size: 3.8vw !important;
  }
}

.small {
  font-size: 0.75em;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  background: #FF5C00;
  color: #FFFFFF;
  border: 1px solid #FF5C00;
  border-radius: 100vh;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 225px;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #FFFFFF;
  color: #FF5C00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover::after {
  border-top: solid 2px #FF5C00;
  border-right: solid 2px #FF5C00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--entry {
  background-color: #000000;
  border: 1px solid #000000;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 298px;
}
.btn--entry:hover {
  background-color: #FFFFFF;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--entry:hover::after {
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--previous {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  font-size: 1.4rem;
}
.btn--previous:hover {
  background-color: #000000;
  color: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--previous:hover::after {
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 740px) {
  .btn {
    width: 100%;
    max-width: 345px;
    height: 40px;
    font-size: 3.8vw;
  }
}

/*---------------------------------------
   色設定
---------------------------------------*/
.bg-org {
  background: #FF5C00;
}

.bg-wht {
  background: #FFFFFF;
}

.bg-gry {
  background: #FDFCFB;
}

.bg-beg {
  background: #f6f1ec;
}

.bg-beg2 {
  background: #EEE6E1;
}

/*---------------------------------------
   ヘッダー
---------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner {
  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: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}
.header__logo {
  height: 50px;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 0;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.header__nav-list {
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
@media only screen and (max-width: 740px) {
  .header__nav-item > a {
    pointer-events: none;
  }
}
.header__nav-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 20px;
  list-style: none;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1001;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.header__nav-item:hover .header__nav-sub-list, .header__nav-item:focus-within .header__nav-sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__nav-sub-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__cta {
  max-width: 273px;
}
.header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: none;
  border-radius: 0.4rem;
  background: #FFFFFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.header__toggle span {
  width: 22px;
  height: 2px;
  background: #000000;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.header__overlay {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1003;
  }
  .header__menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: min(86vw, 360px);
    height: calc(100dvh - 80px);
    background: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 24px;
    padding: 24px 20px;
    -webkit-box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
            box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    z-index: 1002;
  }
  .header__menu.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__overlay {
    display: block;
    position: fixed;
    inset: 80px 0 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
  }
  .header__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header__toggle[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .header__toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle[aria-expanded=true] span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  .header__nav {
    display: block;
    gap: 0;
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 8px;
    padding: 0 30px;
  }
  .header__nav-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 6px;
  }
  .header__nav-item > a {
    font-weight: 700;
  }
  .header__nav-sub-list {
    position: static;
    margin: 0;
    padding: 0 0 10px 14px;
    min-width: auto;
    gap: 8px;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: none;
    transition: none;
  }
  .header__cta {
    max-width: none;
  }
  .header__cta .btn {
    width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 740px) {
  .header {
    height: 13.5vw;
    padding-left: 3.1vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__inner {
    padding: 0;
  }
  .header__logo {
    font-size: 2.3vw;
    max-width: unset;
  }
  .header__menu {
    top: 13.5vw;
    width: 100%;
    max-width: none;
    height: calc(100dvh - 13.5vw);
    padding: 18px 16px 24px;
  }
  .header__overlay {
    inset: 13.5vw 0 0;
  }
  .header__toggle {
    width: 11vw;
    height: 11vw;
  }
  .header__toggle span {
    width: 5.3vw;
  }
}

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

/*---------------------------------------
   フッター
---------------------------------------*/
.cta__area {
  padding: 120px 0;
  background-color: #f6f1ec;
}
.cta__area .flexbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.cta__title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 740px) {
  .cta__title {
    font-size: 4.8vw;
  }
}
.cta .btn {
  width: 100%;
  max-width: 298px;
}

.footer {
  padding: 95px 0;
}
@media only screen and (max-width: 740px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .flexbox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 740px) {
  .footer .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.footer__logo {
  width: 100%;
  max-width: 330px;
}
@media only screen and (max-width: 740px) {
  .footer__logo {
    max-width: 100%;
  }
}
.footer__copy {
  font-size: 1.2rem;
  color: #7C7C7C;
  font-weight: 400;
}
.footer__copy-wrap {
  margin-top: 50px;
  font-weight: 700;
}
@media only screen and (max-width: 740px) {
  .footer__copy-wrap {
    max-width: 100%;
    margin-top: 20px;
    font-size: 3.2vw;
    text-align: center;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 970px;
}
@media only screen and (max-width: 1100px) {
  .footer__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 740px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-weight: 500;
  font-size: 1.4rem;
}
.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 740px) {
  .footer__nav-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3.6vw;
  }
}
.footer__nav-title {
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 740px) {
  .footer__nav-title {
    font-size: 4.2vw;
  }
}

/*---------------------------------------
   メインビジュアル
---------------------------------------*/
.mv {
  margin-top: 80px;
  position: relative;
  height: 560px;
  isolation: isolate;
  padding: 0;
}
@media only screen and (max-width: 740px) {
  .mv {
    height: 355px;
    margin-top: 13.5vw;
  }
}
.mv__inner {
  z-index: 1;
  width: 100%;
  height: 50%;
  max-width: 460px;
  aspect-ratio: 460/220;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 24px 24px 0 0;
  padding: 0 45px 20px 80px;
  position: absolute;
  bottom: -50px;
  right: 50%;
  z-index: 2;
}
@media only screen and (max-width: 740px) {
  .mv__inner {
    max-width: 65%;
    height: auto;
    aspect-ratio: auto;
    padding: 20px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: -130px;
  }
}
.mv__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.15em;
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .mv__title {
    font-size: 5vw;
    line-height: 1.4;
  }
}
.mv .btn {
  width: 100%;
  max-width: 298px;
}
.mv__marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.mv__marquee-track {
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: mv-marquee 40s linear infinite;
          animation: mv-marquee 40s linear infinite;
  will-change: transform;
}
.mv__marquee-track img {
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mv__ui {
  position: absolute;
  inset: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}
.mv .slide__pause {
  width: 100%;
  max-width: 154px;
  position: absolute;
  bottom: 20px;
  right: 50px;
  z-index: 50;
  pointer-events: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4em;
  min-width: 154px;
  height: 48px;
  padding: 0 14px;
  background: #FFFFFF;
  color: #000000;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 740px) {
  .mv .slide__pause {
    bottom: -100px;
    right: 10px;
    min-width: 11vw;
    display: none;
  }
}
.mv .slide__pause__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}
.mv .slide__pause__icon svg {
  display: block;
}
.mv .slide__pause__icon--play {
  display: none;
}
.mv .slide__pause--paused .slide__pause__icon--pause {
  display: none;
}
.mv .slide__pause--paused .slide__pause__icon--play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes mv-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes mv-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*---------------------------------------
   About
---------------------------------------*/
.about__area {
  padding: 112px 0 140px;
}
@media only screen and (max-width: 740px) {
  .about__area {
    padding: 165px 0 70px;
  }
}
.about__area .flexbox {
  gap: 12px;
  margin-top: 70px;
}
.about__area .about-page-card {
  width: 100%;
}
.about__area .about-page-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #000000;
  text-decoration: none;
}
.about__area .about-page-card__link:hover .about-page-card__title {
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .about__area .about-page-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about__area .about-page-card__image {
  overflow: hidden;
  border-radius: 24px;
  background: #FDFCFB;
  aspect-ratio: 93/68;
  margin-bottom: 20px;
}
.about__area .about-page-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__area .about-page-card__title {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media only screen and (max-width: 740px) {
  .about__area .about-page-card__title {
    font-size: 4.2vw;
  }
}

/*---------------------------------------
   Interview
---------------------------------------*/
.interview__area {
  padding: 0 0 116px;
}
@media only screen and (max-width: 740px) {
  .interview__area {
    padding: 0;
  }
}
.interview__area .title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  margin-bottom: 0;
  -webkit-margin-end: 60px;
          margin-inline-end: 60px;
}
@media only screen and (max-width: 740px) {
  .interview__area .title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}
.interview__area .container {
  position: relative;
  padding: 155px 0 120px;
  max-width: 1330px;
}
.interview__area .container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: #f6f1ec;
  border-radius: 36px 0 0 36px;
}
@media only screen and (max-width: 740px) {
  .interview__area .container {
    padding: 40px 0 70px;
  }
}
.interview__area .flexbox {
  gap: 75px;
}
@media only screen and (max-width: 740px) {
  .interview__area .flexbox {
    gap: 20px;
  }
}
.interview__slider-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-bottom: 100px;
}
@media only screen and (max-width: 740px) {
  .interview__slider-wrap {
    padding-left: 20px;
  }
}
.interview__slider-wrap .interview__slider-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  position: absolute;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (min-width: 1441px) {
  .interview__slider-wrap .interview__slider-footer {
    left: calc(50% - 200px);
  }
}
@media only screen and (max-width: 1440px) {
  .interview__slider-wrap .interview__slider-footer {
    left: auto;
    right: 15px;
  }
}
.interview__slider-wrap {
  --swiper-navigation-size: 44px;
  --swiper-scrollbar-border-radius: 100vh;
  --swiper-scrollbar-bg-color: rgba($txt, 0.12);
  --swiper-scrollbar-drag-bg-color: $org;
}
.interview__slider-wrap .swiper-scrollbar {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
  min-width: 435px !important;
  width: auto !important;
  max-width: 425px;
  height: 3px !important;
  margin: 0 !important;
  background-color: #A2A2A2;
}
.interview__slider-wrap .swiper-scrollbar-drag {
  background: #E2E2E2;
}
.interview__slider-wrap .swiper-button-prev,
.interview__slider-wrap .swiper-button-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  -webkit-transform: none;
          transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 2px solid #000000;
  color: #000000;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.interview__slider-wrap .swiper-button-prev::after,
.interview__slider-wrap .swiper-button-next::after {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.interview__slider-wrap .swiper-button-prev svg,
.interview__slider-wrap .swiper-button-next svg {
  display: none !important;
}
@media only screen and (max-width: 740px) {
  .interview__slider-wrap .swiper-button-prev,
  .interview__slider-wrap .swiper-button-next {
    width: 5.3vw;
    height: 5.3vw;
    font-size: 2.8vw;
  }
  .interview__slider-wrap .swiper-button-prev::after,
  .interview__slider-wrap .swiper-button-next::after {
    font-size: 2.7vw;
  }
}
.interview__slider-wrap .swiper-button-prev::after {
  content: "←";
}
.interview__slider-wrap .swiper-button-next::after {
  content: "→";
}
.interview__slider-wrap .swiper-button-disabled {
  opacity: 0.35;
}
.interview__slider {
  display: block;
  padding: 0 10px;
  overflow: hidden;
}
.interview__slider .interview__content-item-link {
  display: block;
  color: #000000;
  text-decoration: none;
}
.interview__slider .interview__content-item-link:hover .interview__content-item-title {
  color: #FF5C00;
}
.interview__slider .interview__content-item-image {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 23/13;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__slider .interview__content-item-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.interview__slider .interview__content-item-title {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media only screen and (max-width: 740px) {
  .interview__slider .interview__content-item-title {
    font-size: 4.2vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.interview__slider .interview__content-item-job {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 25px;
}
@media only screen and (max-width: 740px) {
  .interview__slider .interview__content-item-job {
    font-size: 2.8vw;
    margin-right: 0;
  }
}

/*---------------------------------------
   Position
---------------------------------------*/
.position__area .flexbox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}
@media only screen and (max-width: 960px) {
  .position__area .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .position__area .flexbox .show-pc {
    display: none;
  }
}
@media only screen and (max-width: 740px) {
  .position__area .flexbox {
    gap: 0;
  }
}
.position__image {
  margin: 0;
  width: 100%;
  max-width: 920px;
  min-width: 0;
  min-height: 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 23/13;
}
.position__image img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media only screen and (max-width: 960px) {
  .position__image img {
    margin-bottom: 20px;
  }
}
.position__content {
  max-width: 430px;
  min-width: 0;
  min-height: 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .position__content {
    max-width: 100%;
  }
}
.position__content .title {
  margin-bottom: 26px;
}
.position__content .lead {
  font-weight: 500;
  font-size: 1.6rem;
}
.position__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.position__item {
  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;
  border-bottom: 1px solid #000000;
  padding: 37px 28px 37px 0;
}
.position__item-link {
  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;
  width: 100%;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 740px) {
  .position__item-link {
    font-size: 4.2vw;
  }
}
.position__item-link:hover {
  color: #FF5C00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.position__item-link:hover .position__item-arrow {
  border-color: #FF5C00;
  color: #FF5C00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.position__item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000000;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 740px) {
  .position__item-arrow {
    width: 5.3vw;
    height: 5.3vw;
    font-size: 2.8vw;
  }
}

/*---------------------------------------
   下層ページ
---------------------------------------*/
.lower__header {
  height: 286px;
  background-size: cover;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 740px) {
  .lower__header {
    height: 180px;
    margin-bottom: 60px;
  }
}

/* Data---------------------------------------*/
#data .bg-gry.section {
  padding: 145px 0 1px;
}
@media only screen and (max-width: 740px) {
  #data .bg-gry.section {
    padding: 20px 0 1px;
  }
}
#data .flexbox {
  gap: 100px;
}
@media only screen and (max-width: 740px) {
  #data .flexbox {
    gap: 20px;
  }
}
#data .content__list {
  gap: 158px 80px;
  margin-top: 0;
}
@media only screen and (max-width: 740px) {
  #data .content__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #data .content__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.data__map {
  width: 100%;
}
.data__text {
  width: 100%;
}
.data__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 55px;
}
.data__title-num {
  font-size: 3.6rem;
  color: #FF5C00;
}
.data__overview {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 4fr;
  grid-template-columns: 1fr 4fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 740px) {
  .data__overview {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
    -ms-grid-columns: 1fr 10px 3fr;
    grid-template-columns: 1fr 3fr;
  }
}
.data__overview-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 128px;
  height: 28px;
  border: 1px solid #000000;
  border-radius: 100vh;
}
.data__overview-value {
  font-size: 2.8rem;
  font-weight: 500;
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .data__overview-value {
    font-size: 4.2vw;
  }
}
.data__graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.data__graph img {
  width: 100%;
  max-width: 426px;
}
@media only screen and (max-width: 480px) {
  .data__graph img {
    max-width: 75%;
  }
}
.data__graph-title {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FF5C00;
  text-align: center;
  margin-bottom: 28px;
}
@media only screen and (max-width: 740px) {
  .data__graph-title {
    font-size: 3.3vw;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .data__graph-title {
    font-size: 4.2vw;
  }
}
.data__graph-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  text-align: center;
}
.data__count-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.08em;
}
.data__count-num {
  font-size: 6rem;
  font-weight: 700;
  color: #FF5C00;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media only screen and (max-width: 740px) {
  .data__count-num {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 480px) {
  .data__count-num {
    font-size: 12vw;
  }
}
.data__count-unit {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FF5C00;
  letter-spacing: 0.15em;
}

/* History---------------------------------------*/
.history__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 100px;
}
.history__list--progress {
  --scroll-progress: 0;
  --history-line-end-trim: 0px;
  --history-line-width: 5px;
  --history-dot-size: 12px;
  --history-line-x: 20px;
  position: relative;
  padding-left: 25px;
}
.history__list--progress::before {
  content: "";
  position: absolute;
  left: calc(var(--history-line-x) - var(--history-line-width) / 2);
  top: 0;
  bottom: var(--history-line-end-trim, 0px);
  width: var(--history-line-width);
  height: auto;
  background-color: #FF5C00;
  border-radius: 100vh;
  -webkit-transform: scaleY(calc(var(--scroll-progress, 0) * 0.01));
          transform: scaleY(calc(var(--scroll-progress, 0) * 0.01));
  -webkit-transform-origin: top center;
          transform-origin: top center;
  z-index: 0;
  pointer-events: none;
}
.history__item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px 32px;
  padding: 10px 0 80px 45px;
}
.history__item::before {
  content: "";
  position: absolute;
  left: calc(var(--history-line-x) - var(--history-dot-size) / 2 - 48px);
  top: 0;
  width: 56px;
  aspect-ratio: 1/1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100vh;
  background-color: #d9d9d9;
  -webkit-transition: background-color 0.35s ease;
  transition: background-color 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.history__item--active::before {
  background-color: #FF5C00;
}
.history__item:last-child {
  padding-bottom: 0;
}
.history__time-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 180px;
}
@media only screen and (max-width: 740px) {
  .history__time-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    min-width: 100%;
  }
}
.history__time-title {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 500;
  color: #FF5C00;
}
@media only screen and (max-width: 740px) {
  .history__time-title {
    font-size: 4.2vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.history__time {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 740px) {
  .history__time {
    font-size: 4.2vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.history__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 27px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 280px;
          flex: 1 1 280px;
  min-width: 0;
}
.history__description img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media only screen and (max-width: 740px) {
  .history__description img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  .history__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .history__description img {
    max-width: 100%;
  }
}
.history__description p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media only screen and (max-width: 740px) {
  .history__description p {
    font-size: 3.6vw;
  }
}

/* Job---------------------------------------*/
#job-coach .content__list, #job-trainer .content__list, #job-staff .content__list {
  display: block;
}
@media only screen and (max-width: 960px) {
  #job-coach .content__list, #job-trainer .content__list, #job-staff .content__list {
    margin-bottom: 0;
  }
}
#job-coach .content__item, #job-trainer .content__item, #job-staff .content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#job-coach .content__item:nth-child(even), #job-trainer .content__item:nth-child(even), #job-staff .content__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 960px) {
  #job-coach .content__item:nth-child(even), #job-trainer .content__item:nth-child(even), #job-staff .content__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media only screen and (max-width: 960px) {
  #job-coach .content__item, #job-trainer .content__item, #job-staff .content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
#job-coach .content__item__item-title, #job-trainer .content__item__item-title, #job-staff .content__item__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
#job-coach .content__image, #job-trainer .content__image, #job-staff .content__image {
  width: 100%;
}
#job-coach .content__text, #job-trainer .content__text, #job-staff .content__text {
  width: 100%;
}
@media only screen and (max-width: 960px) {
  #job-coach .content__text, #job-trainer .content__text, #job-staff .content__text {
    margin-bottom: 30px;
  }
}

.title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1440px) {
  .title-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.job-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: 33px;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 0 17px;
}
@media only screen and (max-width: 740px) {
  .job-type {
    font-size: 2.8vw;
    padding: 0 10px;
  }
}

.staff-name {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 740px) {
  .staff-name {
    font-size: 3.8vw;
  }
}

.other-interview {
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 960px) {
  .other-interview {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 740px) {
  .other-interview {
    width: 100%;
  }
}
.other-interview .title-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  margin-top: 15px;
}
.other-interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.other-interview__image img {
  aspect-ratio: 92/53;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Recruit---------------------------------------*/
#recruit .content__list,
#flow .content__list {
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  #recruit .content__list,
  #flow .content__list {
    font-size: 3.8vw;
  }
}
#recruit .content__title--num,
#flow .content__title--num {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
#recruit .content__title--num::after,
#flow .content__title--num::after {
  display: none;
}
@media only screen and (max-width: 740px) {
  #recruit .content__title--num,
  #flow .content__title--num {
    font-size: 4.2vw;
  }
}
#recruit .content__subtitle,
#flow .content__subtitle {
  font-weight: 500;
  margin-bottom: 8px;
}
@media only screen and (max-width: 740px) {
  #recruit .content__subtitle,
  #flow .content__subtitle {
    font-size: 4vw;
  }
}
#recruit .content__text,
#flow .content__text {
  font-size: 1.4rem;
}
@media only screen and (max-width: 740px) {
  #recruit .content__text,
  #flow .content__text {
    font-size: 3.8vw;
  }
}

#flow .content__list img {
  border: 1px solid #D0D0D0;
}

/* News---------------------------------------*/
#news h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
#news h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
#news img {
  width: 100%;
  margin-bottom: 30px;
}
#news p {
  margin-bottom: 30px;
}
#news a {
  color: #FF5C00;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #FF5C00;
}
#news ul {
  padding: 20px 15px 20px 40px;
  margin-bottom: 30px;
  background-color: #E1E1E1;
}
#news li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}

.news__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 315px 40px 1fr;
  grid-template-columns: 315px 1fr;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 40px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 960px) {
  .news__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.news__content--left {
  padding: 40px 20px;
  border: 1px solid #000000;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 960px) {
  .news__content--left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.news__content--right {
  padding: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 960px) {
  .news__content--right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.news__meta a {
  color: #000000 !important;
  text-decoration: none !important;
}
.news__title {
  font-size: 3.2rem;
  margin-bottom: 30px;
}
.news__related-heading {
  margin-bottom: 16px;
}
.news__related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  background-color: #FFFFFF !important;
}
.news__related-link {
  text-decoration: none !important;
  color: #000000 !important;
}
.news__related-link:hover .news__related-title {
  text-decoration: underline;
}
.news__related-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #e1e1e1;
}
.news__related-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__related-text {
  margin-top: 10px;
}
.news__related-date {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
@media only screen and (max-width: 740px) {
  .news__related-date {
    font-size: 3.8vw;
  }
}
.news__related-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 700;
  word-break: break-word;
}
@media only screen and (max-width: 740px) {
  .news__related-title {
    font-size: 3.8vw;
  }
}
.news__related-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 23px;
  letter-spacing: 0.1em;
}
.news__related-list {
  margin: 0;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #FFFFFF !important;
}
.news__related-list li {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
}
.news__related-list a {
  color: #000000 !important;
  text-decoration: none !important;
}
.news__related-list a:hover {
  text-decoration: underline !important;
}
.news__related-item {
  width: calc(33.3333333333% - 10px);
}
@media only screen and (max-width: 960px) {
  .news__related-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 740px) {
  .news__related-item {
    width: 100%;
  }
}
.news__related-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news__related-list-date {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
}
@media only screen and (max-width: 740px) {
  .news__related-list-date {
    font-size: 3.8vw;
  }
}
.news__related-list-date {
  font-size: 1.2rem;
}
@media only screen and (max-width: 740px) {
  .news__related-list-date {
    font-size: 3.8vw;
  }
}
.news__related-list-link:hover {
  text-decoration: underline !important;
}
.news__year-heading {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  margin-bottom: 23px;
}
@media only screen and (max-width: 740px) {
  .news__year-heading {
    font-size: 4.2vw;
  }
}
.news__archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
}
.news__archive-item {
  width: calc(33.3333333333% - 23px);
}
@media only screen and (max-width: 1100px) {
  .news__archive-item {
    width: calc(50% - 23px);
  }
}
@media only screen and (max-width: 960px) {
  .news__archive-item {
    width: calc(33.3333333333% - 23px);
  }
}
@media only screen and (max-width: 740px) {
  .news__archive-item {
    width: calc(50% - 23px);
  }
}
@media only screen and (max-width: 480px) {
  .news__archive-item {
    width: 100%;
  }
}
.news__archive-list {
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FFFFFF !important;
}
.news__archive-list li {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
  width: 16.6666666667%;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 480px) {
  .news__archive-list li {
    width: 33.3333333333%;
  }
}
.news__archive-list li::after {
  content: "|";
}
.news__archive-list li:nth-child(6), .news__archive-list li:nth-child(12) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 6px !important;
}
.news__archive-list li:nth-child(6)::after, .news__archive-list li:nth-child(12)::after {
  display: none;
}
@media only screen and (max-width: 480px) {
  .news__archive-list li:nth-child(6), .news__archive-list li:nth-child(12) {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news__archive-list li:nth-child(6)::after, .news__archive-list li:nth-child(12)::after {
    display: block;
  }
}
.news__archive-list a {
  color: #000000 !important;
  text-decoration: none !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 1px !important;
  text-decoration-color: #000000 !important;
}
.news__archive-list a:hover {
  text-decoration: underline !important;
}

/* pagination---------------------------------------*/
.pagination {
  margin: 80px auto 120px;
}

.nav-links {
  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;
  font-weight: 700;
  gap: 30px;
}
.nav-links a {
  color: #FF5C00 !important;
  text-decoration: none !important;
}
.nav-links a:hover {
  text-decoration: underline !important;
}

.page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  width: 10px;
  height: 30px;
  font-weight: 700;
}
.page-numbers::after {
  content: "|";
  color: #E1E1E1;
}
.page-numbers.current {
  color: #E1E1E1;
}
.page-numbers.prev::after, .page-numbers.next::after, .page-numbers:last-child::after {
  display: none;
}

/* entry---------------------------------------*/
.entry__btn {
  margin: 20px auto 0;
  max-width: 300px;
}
@media only screen and (max-width: 740px) {
  .entry__btn {
    margin: 10px auto 50px;
    max-width: 300px;
  }
  .entry__item:last-child .entry__btn {
    margin-bottom: 0;
  }
}
.part-timer__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 960px) {
  .part-timer__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.part-timer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.part-timer__contacts .part-timer__contacts-title,
.part-timer__contacts > p:not(.part-timer__contacts-list) {
  margin-bottom: 40px;
}
.part-timer__contacts-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.part-timer__contacts-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 185px;
}
@media only screen and (max-width: 480px) {
  .part-timer__contacts-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.part-timer__contacts-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.part-timer__contacts-list__item-title {
  font-size: 1.6rem;
  color: #FFFFFF;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 12px 12px 0 0;
  width: 100%;
  text-align: center;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.part-timer__contacts-list__item-content {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  border-top: none;
  border-radius: 0 0 12px 12px;
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 740px) {
  .part-timer__contacts-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 480px) {
  .part-timer__contacts-list__item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.part-timer__contacts-list__item-tel {
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.2em;
}
.part-timer__contacts-list__item-tel .small {
  font-weight: 400;
}

@media only screen and (max-width: 740px) {
  .entry__link,
  .entryform__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.entry__list,
.entryform__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-bottom: 112px;
}
.entry__list__title,
.entryform__list__title {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 100px;
  margin-bottom: 36px;
  padding-bottom: 13px;
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width: 740px) {
  .entry__list__title,
  .entryform__list__title {
    font-size: 4.8vw;
  }
}
.entry__list__subtitle,
.entryform__list__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media only screen and (max-width: 740px) {
  .entry__list__subtitle,
  .entryform__list__subtitle {
    font-size: 4.2vw;
  }
}
.entry__list__text,
.entryform__list__text {
  font-size: 1.4rem;
  margin-bottom: 80px;
}
@media only screen and (max-width: 740px) {
  .entry__list__text,
  .entryform__list__text {
    font-size: 3.8vw;
    margin-bottom: 50px;
  }
}
.entry__item,
.entryform__item {
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 960px) {
  .entry__item,
  .entryform__item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 740px) {
  .entry__item,
  .entryform__item {
    width: 100%;
  }
}
.entry__item__text,
.entryform__item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.entry__item__text h3,
.entryform__item__text h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media only screen and (max-width: 740px) {
  .entry__item__text h3,
  .entryform__item__text h3 {
    font-size: 4.2vw;
  }
}
.entry__item__media img,
.entryform__item__media img {
  aspect-ratio: 46/29;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.entry__content,
.entryform__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 740px) {
  .entry__content,
  .entryform__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.entry__thumbnail,
.entryform__thumbnail {
  width: 100%;
  max-width: 677px;
}
.entry__text,
.entryform__text {
  width: 100%;
}
.entry__text__top,
.entryform__text__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  font-weight: 400;
}
.entry__employment-type,
.entryform__employment-type {
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  padding: 0 30px;
}
@media only screen and (max-width: 740px) {
  .entry__employment-type,
  .entryform__employment-type {
    font-size: 3.2vw;
    height: 5.3vw;
  }
}
.entry__title,
.entryform__title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 740px) {
  .entry__title,
  .entryform__title {
    font-size: 4.2vw;
  }
}
.entry__text__lead,
.entryform__text__lead {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
}
@media only screen and (max-width: 740px) {
  .entry__text__lead,
  .entryform__text__lead {
    font-size: 3.8vw;
  }
}
.entry__detail,
.entryform__detail {
  margin-top: 100px;
  padding: 40px 12% 70px;
  background-color: #f6f1ec;
  margin-bottom: 80px;
}
@media only screen and (max-width: 740px) {
  .entry__detail,
  .entryform__detail {
    margin-top: 15px;
    padding: 20px;
  }
}
.entry__detail__title,
.entryform__detail__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.entry__detail__table,
.entryform__detail__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #f6f1ec;
  background-color: #FFFFFF;
}
.entry__detail__table th,
.entry__detail__table td,
.entryform__detail__table th,
.entryform__detail__table td {
  padding: 10px;
  border: 1px solid #f6f1ec;
  min-height: 65px;
  vertical-align: middle;
}
@media only screen and (max-width: 740px) {
  .entry__detail__table th,
  .entry__detail__table td,
  .entryform__detail__table th,
  .entryform__detail__table td {
    display: block;
    width: 100%;
  }
}
.entry__detail__table th,
.entryform__detail__table th {
  text-align: left;
  font-weight: 400;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 740px) {
  .entry__detail__table th,
  .entryform__detail__table th {
    font-weight: 700;
    padding: 10px 20px;
  }
}
.entry__detail__table td,
.entryform__detail__table td {
  padding-left: 48px;
  padding-right: 48px;
}
@media only screen and (max-width: 740px) {
  .entry__detail__table td,
  .entryform__detail__table td {
    padding: 10px 20px;
  }
}

.entryform__detail__table th {
  padding-left: 40px;
  padding-right: 40px;
  width: 285px;
}
@media only screen and (max-width: 740px) {
  .entryform__detail__table th {
    padding: 10px 20px;
    min-height: unset;
  }
}
.entryform__detail__table th .required {
  color: #F65353;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border: 1px solid #F65353;
  border-radius: 100vh;
  width: 50px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entryform__detail__table th .flexbox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 740px) {
  .entryform__detail__table th .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.entryform__detail__table td {
  padding-left: 48px;
  padding-right: 48px;
}
@media only screen and (max-width: 740px) {
  .entryform__detail__table td {
    padding: 20px;
    min-height: unset;
  }
}

#entryform .section {
  padding-bottom: 0;
}
#entryform input[type=text],
#entryform input[type=email],
#entryform input[type=tel],
#entryform select,
#entryform textarea {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
}
#entryform input::-webkit-input-placeholder, #entryform textarea::-webkit-input-placeholder {
  color: #CDCDCD;
}
#entryform input::-moz-placeholder, #entryform textarea::-moz-placeholder {
  color: #CDCDCD;
}
#entryform input:-ms-input-placeholder, #entryform textarea:-ms-input-placeholder {
  color: #CDCDCD;
}
#entryform input::-ms-input-placeholder, #entryform textarea::-ms-input-placeholder {
  color: #CDCDCD;
}
#entryform input::placeholder,
#entryform textarea::placeholder {
  color: #CDCDCD;
}
#entryform label {
  cursor: pointer;
  display: inline-block;
}
#entryform input[type=radio],
#entryform input[type=checkbox] {
  display: none;
}
#entryform .wpcf7-list-item {
  margin: 0 60px 0 10px;
}
#entryform .wpcf7-list-item-label,
#entryform .mwform-radio-field-text,
#entryform .mwform-checkbox-field-text {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  display: block;
}
#entryform label:last-child .mwform-radio-field-text,
#entryform label:last-child .mwform-checkbox-field-text {
  margin-bottom: 0;
}
#entryform .wpcf7-list-item-label::before,
#entryform .mwform-radio-field-text::before,
#entryform .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#entryform .wpcf7-list-item-label::after,
#entryform .mwform-radio-field-text::after,
#entryform .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #FF5C00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
#entryform input[type=checkbox] + .wpcf7-list-item-label::before,
#entryform input[type=checkbox] + .mwform-checkbox-field-text::before {
  border-radius: 0.2rem;
}
#entryform input[type=checkbox] + .wpcf7-list-item-label::after,
#entryform input[type=checkbox] + .mwform-checkbox-field-text::after {
  width: 5px;
  height: 10px;
  border-right: 2px solid #FF5C00;
  border-bottom: 2px solid #FF5C00;
  border-radius: 0;
  background: transparent;
  left: 5px;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
}
#entryform input[type=radio]:checked + span.check::after, #entryform input[type=checkbox]:checked + span.check::after,
#entryform input[type=radio]:checked + .wpcf7-list-item-label::after, #entryform input[type=checkbox]:checked + .wpcf7-list-item-label::after,
#entryform input[type=radio]:checked + .mwform-radio-field-text::after, #entryform input[type=checkbox]:checked + .mwform-radio-field-text::after,
#entryform input[type=radio]:checked + .mwform-checkbox-field-text::after, #entryform input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.arrow {
  position: relative;
  display: inline-block;
}
.arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg) translateY(50%);
}