@charset "UTF-8";

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --bg-color: #666666;
  --gray-color: #808080;
  --lightgray-color: #cacaca;
  --line-color: #ccc;
  /* transition */
  --base-transition: 0.2s ease-out;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

*:focus-visible {
  outline: 2px solid var(--point-color);
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section {
  position: relative;
}

section:has(.c-bg-fixed) {
  background-color: #fff;
}

section:has(.c-bg-fixed) .inner {
  margin-top: 208px;
  padding-top: 80px;
  padding-bottom: 80px;
}

main {
  position: relative;
  width: 40%;
  min-width: 375px;
  max-width: 640px;
  margin-left: auto;
  padding-bottom: 30px;
  overflow: hidden;
}

main::after {
  z-index: -99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
}

.inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  cursor: pointer;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span {
  font-weight: inherit;
}

.section__wrapper + .section__wrapper {
  padding-top: 100px;
}

.section__wrapper .img {
  margin-top: 30px;
}

p.txt {
  line-height: 2;
  letter-spacing: -0.045em;
}

.ib {
  display: inline-block;
}

.en {
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
}

.bg {
  background-color: var(--bg-color) !important;
  color: #fff;
}

/* scroll animation
------------------------------ */

.anim {
  -webkit-transform: translateY(40px);
  -webkit-transition: all 0.6s ease-out;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.anim.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* c-bg-fixed
------------------------------ */

.c-pc-fixed {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -100;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 640px);
  height: 100%;
  gap: 10px;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.3) 15px, rgba(255, 255, 255, 0.3) 30px);
  background-color: #e2e2e2;
}

.c-pc-fixed__txt {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.c-pc-fixed .en {
  font-size: 2.7rem;
  letter-spacing: 0.07em;
  text-align: center;
}

.c-pc-fixed img {
  width: 384px;
}

.c-pc-fixed .logo-pc {
  margin-top: 35px;
}

/* c-bg-fixed
------------------------------ */

.c-bg-fixed {
  z-index: -1;
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.c-bg-fixed img {
  -o-object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  object-fit: cover;
}

/* c-section-title
------------------------------ */

.c-section-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -200px;
  align-items: center;
  width: 100%;
  height: 200px;
  -webkit-text-stroke: 1px #fff;
  padding: 0 26px;
  color: transparent;
  font-size: 3.8rem;
  letter-spacing: 0.15em;
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--base-color);
}

.c-title01 .en {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-title01 .ja {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.c-title01 .logo {
  width: 120px;
}

.bg .c-title01 {
  border-bottom: solid 1px #fff;
}

body:has(.recruit_confirm) .header,
body:has(.recruit_confirm) .fixButton,
body:has(.recruit_finish) .fixButton {
  display: none !important;
}

body:has(.recruit_finish) .header {
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(.recruit_confirm) .footer,
body:has(.recruit_finish) .footer {
  padding-bottom: 0;
}

.header {
  -webkit-transition: all 0.3s;
  visibility: hidden;
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  min-width: 375px;
  max-width: 640px;
  height: 50px;
  background-color: var(--base-color);
  opacity: 0;
  transition: all 0.3s;
}

.header.visible {
  visibility: visible;
  opacity: 1;
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 0 24px;
}

.header__logo {
  -webkit-transition: var(--base-transition);
  visibility: visible;
  width: 260px;
  opacity: 1;
  transition: var(--base-transition);
}

.saiyou .header__logo {
  width: 223px;
}

.header__logo.active {
  visibility: hidden;
  opacity: 0;
}

.header__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 50px;
}

.header__btn_inn {
  position: relative;
  width: 32px;
  height: 9px;
}

.header__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:nth-of-type(2) {
  top: 4px;
  opacity: 1;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__btn.active .header__btn_line:first-of-type {
  -webkit-transform: rotate(25deg);
  top: 4px;
  transform: rotate(25deg);
}

.header__btn.active .header__btn_line:nth-of-type(2) {
  opacity: 0;
}

.header__btn.active .header__btn_line:last-of-type {
  -webkit-transform: rotate(-25deg);
  bottom: 4px;
  transform: rotate(-25deg);
}

.header__contents {
  -webkit-transition: var(--base-transition);
  visibility: hidden;
  position: absolute;
  top: 49px;
  right: 0;
  height: calc(100vh - 50px);
  padding: 37px 0 74px;
  overflow-y: scroll;
  background-color: var(--base-color);
  opacity: 0;
  transition: var(--base-transition);
  width: 100%;
}

.header__contents.active {
  visibility: visible;
  opacity: 1;
}

.header__contents_inn {
  padding: 0 50px;
}

.header__nav_item {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.header__nav_item + .header__nav_item {
  margin-top: -1px;
}

.header__nav_item a {
  padding: 14px 0;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.header__nav_item a .en {
  font-size: 2rem;
  letter-spacing: 0.17em;
}

.header__nav_item a .red {
  display: inline-block;
  color: #d01126;
}

.header__sns {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header__youtube_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.header__youtube_title::before {
  width: 26px;
  height: 26px;
  border: solid 1px #fff;
  border-radius: 50%;
  content: "";
}

.header__youtube_title::after {
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 5.5px;
  height: 6px;
  margin: auto;
  background-color: #fff;
  content: "";
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.header__youtube_item + .header__youtube_item {
  margin-top: 9px;
}

.header__youtube_item a {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 25px;
  color: var(--lightgray-color);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__youtube_item a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/icon-arrow.webp) no-repeat center center/contain;
  content: "";
}

.header__icon a {
  width: 40px;
  height: 40px;
}

.header__banner {
  margin-top: 84px;
}

.saiyou .header__banner {
  margin-top: 55px;
}

.header__banner a + a {
  margin-top: 15px;
}

.footer {
  width: 40%;
  min-width: 375px;
  max-width: 640px;
  margin-left: auto;
  background-color: var(--base-color);
  color: #fff;
  padding-bottom: 70px;
}

.footer .inner {
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer__logo {
  width: 306px;
  margin: 0 auto 15px;
}

.footer__copy {
  font-size: 0.75rem;
  text-align: center;
}

.fixButton {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #d01126;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 100;
}

.fixButton span {
  color: #fff;
}

.fixButton span.en {
  font-size: 26px;
  letter-spacing: 0.05em;
}

.fixButton span.jp {
  font-size: 14px;
  font-weight: 700;
}

.fixButton span.arrow {
  background-color: #fff;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  width: 13px;
  height: 13px;
  margin-left: 10px;
}

.mv {
  height: 100vh;
  max-height: 850px;
  padding: 0;
}

.mv__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  height: 90px;
  background-color: var(--base-color);
}
.saiyou .mv__header {
  height: 65px;
}
@media screen and (max-width: 1200px) {
  .mv__header {
    justify-content: flex-start;
    padding: 0 20px;
  }
}

.mv__header img {
  width: 288px;
}

.mv__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
@media screen and (min-width: 450px) {
  .mv__btn {
    position: absolute;
    right: 0;
    width: 65px;
  }
}

.mv__btn_inn {
  position: relative;
  width: 32px;
  height: 9px;
}

.mv__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.mv__btn_line:first-of-type {
  top: 0;
}

.mv__btn_line:nth-of-type(2) {
  top: 4px;
  opacity: 1;
}

.mv__btn_line:last-of-type {
  bottom: 0;
}

.mv__btn.active .mv__btn_line:first-of-type {
  -webkit-transform: rotate(25deg);
  top: 4px;
  transform: rotate(25deg);
}

.mv__btn.active .mv__btn_line:nth-of-type(2) {
  opacity: 0;
}

.mv__btn.active .mv__btn_line:last-of-type {
  -webkit-transform: rotate(-25deg);
  bottom: 4px;
  transform: rotate(-25deg);
}

.mv .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: calc(100% - 65px);
}

.mv__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.mv__title span {
  color: #fff;
}

.mv__title .en {
  font-size: 2.24rem;
  line-height: 1;
}

.mv__title .ja {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.mv__link {
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 138px;
}

.mv__link_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 5px;
  gap: 4px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
}

.mv__link_title::before {
  width: 26px;
  height: 26px;
  border: solid 1px #fff;
  border-radius: 50%;
  content: "";
}

.mv__link_title::after {
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 5.5px;
  height: 6px;
  margin: auto;
  background-color: #fff;
  content: "";
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.mv__link_list {
  border: solid 1px var(--base-color);
}

.mv__link_item + .mv__link_item {
  border-top: solid 1px var(--base-color);
}

.mv__link_item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 5.3px 22px 5.3px 18px;
  background-color: #fff;
  color: var(--base-color);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mv__link_item a::after {
  -webkit-mask: url(/saiyou/img/icon-arrow.webp) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  width: 10px;
  height: 10px;
  background-color: var(--base-color);
  content: "";
  mask: url(/saiyou/img/icon-arrow.webp) no-repeat center center/contain;
  transition: var(--base-transition);
}

.mv__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc;
}

.mv__bg video {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .inner {
  margin-top: 245px !important;
}

.about .c-title01.slogan {
  margin-bottom: 60px;
}

.about__message {
  position: relative;
  max-width: 284px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}

.about__message::before,
.about__message::after {
  position: absolute;
  width: 20px;
  height: 55px;
  background: url(/saiyou/img/icon-parentheses.webp) no-repeat center center/contain;
  content: "";
}

.about__message::before {
  top: -10px;
  left: 0;
}

.about__message::after {
  -webkit-transform: scale(-1, -1);
  right: 0;
  bottom: -7px;
  transform: scale(-1, -1);
}

.about__title {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.about__title02 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 46px 0 8px;
  padding: 0 11px;
  gap: 4px;
  background-color: var(--base-color);
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
}

.about__title02 .logo {
  width: 90px;
}

.about__title02.product {
  margin-top: 30px;
}

.about__brand_txt {
  font-weight: 600;
  font-size: 2.4rem;
}

.about__code_item {
  position: relative;
  margin-top: 70px;
  padding: 22px;
  border: solid 1px var(--base-color);
}

.about__code_item .fix_txt {
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 1.15rem;
}

.about__code_item .num {
  position: absolute;
  top: -32px;
  left: 5px;
  font-size: 3.3rem;
}

.about__code_title {
  margin-bottom: 11px;
  font-weight: 600;
  font-size: 2.35rem;
  line-height: 1.4;
}

.about__code_last {
  position: relative;
  margin-top: 22px;
  padding-top: 44px;
  line-height: 2;
}

.about__code_last::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 1px;
  height: 25px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
}

.business .img__vision {
  margin-bottom: 34px;
}

.business__list {
  margin-top: 66px;
}

.business__list li {
  position: relative;
  padding: 15px 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.85;
  text-align: center;
}

.business__list li + li {
  margin-top: -1px;
}

.business__list li + li::before {
  -webkit-clip-path: polygon(50% 55%, 100% 0, 0 0);
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: #fff;
  content: "";
  clip-path: polygon(50% 55%, 100% 0, 0 0);
}

.recruit__name {
  margin-top: 53px;
  font-weight: 500;
  text-align: right;
}

.recruit__name .name {
  padding-left: 10px;
  font-size: 1.8rem;
}

.recruit__table,
.profile__table {
  width: 100%;
  margin-top: 40px;
}

.recruit__table th,
.recruit__table td,
.profile__table th,
.profile__table td {
  display: block;
  width: 100%;
  letter-spacing: 0;
  text-align: left;
}

.recruit__table th,
.profile__table th {
  padding: 5px 12px 2px;
  background-color: var(--base-color);
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
}

.recruit__table td,
.profile__table td {
  padding: 12px 0px 25px;
}

.profile__table td a {
  text-decoration: underline;
  display: inline-block;
}

.recruit__table td span.small,
.profile__table td span.small {
  font-size: 0.9rem;
}

.recruit__table td ul,
.profile__table td ul {
  margin-left: 20px;
  list-style-type: disc;
  list-style-position: outside;
}

.recruit__table td dl,
.profile__table td dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.recruit__table td dl dt,
.profile__table td dl dt{
  width: 7em
}

.recruit__link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 15px;
}

.recruit__link_item {
  width: 100%;
  height: 50px;
}

.recruit__link_item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  gap: 16px;
  border: solid 0.75px var(--base-color);
  background-color: #fff;
}

.recruit__link_item a::after {
  -webkit-mask: url(/saiyou/img/icon-arrow.webp) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  mask: url(/saiyou/img/icon-arrow.webp) no-repeat center center/contain;
}

.recruit__link_item .big {
  font-weight: 500;
  font-size: 1.6rem;
}

.recruit__link_item .small {
  font-size: 1.2rem;
}

.recruit__link_item.black a {
  gap: 10px;
  border: solid 0.75px var(--base-color);
  background-color: var(--base-color);
  color: #fff;
}

.recruit__link_item.black a::after {
  background-color: #fff;
}

.recruit__link_item.black .big {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}

.recruit__link_item.black .small {
  font-size: 1rem;
}

.profile {
  padding: 50px 0 0;
}

.banner a + a {
  margin-top: 15px;
}

.entry__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 70px;
  margin: 25px auto;
  background-color: #d01126;
  color: #fff;
}

.entry__button .en {
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.entry__button .ja {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

section.entry {
  padding: 0 0 50px;
}

.entry__table {
  width: 100%;
  display: block;
  padding: 45px 0 20px;
  border-bottom: dashed 1px #ccc;
}

.entry__table tbody,
.entry__table tr {
  width: 100%;
  display: block;
}

.entry__table th,
.entry__table td {
  display: block;
  width: 100%;
  text-align: left;
}

.entry__table th .ttl {
  font-size: 16px;
  font-weight: 700;
}

.entry__table tr + tr th {
  border-top: dashed 1px #ccc;
  padding-top: 15px;
  margin-top: 20px;
}

.entry__table tr:not(:has(td.file)) th {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.entry__table input[type="text"],
.entry__table input[type="email"],
.entry__table textarea {
  background-color: #f2f2f2;
  border: none;
  font-size: 16px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 10px 15px;
  width: 100%;
}

.entry__table .select02 {
  width: 100%;
  position: relative;
}

.entry__table .select02::after {
  content: '';
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  position: absolute;
  top: 18px;
  right: 17px;
  pointer-events: none;
}

.entry__table .select02 select {
  background-color: #f2f2f2;
  border: none;
  font-size: 16px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 14px 15px;
  width: 100%;
}

.entry .required {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  background-color: #d01126;
  padding: 0 10px;
}

.entry .privacy {
  padding: 20px 0;
}

.entry .privacy .txt {
  font-size: 14px;
  text-align: center;
}

.entry .privacy .txt a {
  text-decoration: underline;
  display: inline-block;
}

.entry .privacy__check {
  width: max-content;
  margin: 0 auto;
}

.entry .privacy__check input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.entry .privacy__check .mwform-checkbox-field-text {
  font-size: 16px;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
}

.entry .privacy__check .mwform-checkbox-field-text::before {
  content: '';
  width: 17px;
  height: 17px;
  border: solid 1px #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.entry .privacy__check .mwform-checkbox-field-text::after {
  content: '';
  width: 10px;
  height: 6px;
  border-bottom: solid 2px #d01126;
  border-left: solid 2px #d01126;
  transform: rotate(-45deg);
  position: absolute;
  top: -2px;
  left: 4px;
  bottom: 0;
  margin: auto;
  opacity: 0;
}

.entry input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.entry .btn_input_wrap + .btn_input_wrap {
  margin-top: 10px;
}

.entry .btn_input_wrap_outer input,
.entry .btn_input_wrap_outer button {
  background-color: #d01126;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: grid;
  place-content: center;
  width: 100%;
  height: 60px;
  max-width: 275px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.entry .btn_input_wrap_outer input:disabled {
  background-color: #999;
  cursor: not-allowed;
}

.entry .btn_input_wrap_outer input.gost,
.entry .btn_input_wrap_outer button.gost {
  background-color: #999;
}

.flow {
  background-color: #000;
  padding: 25px;
  margin-bottom: 30px;
}

.flow .inner {
  background-color: #fff;
  padding: 25px 20px;
}

.flow__title {
  color: #d01126;
  font-size: 23.3px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.flow__wrap + .flow__wrap {
  margin-top: 15px;
  padding-top: 25px;
  position: relative;
}

.flow__wrap + .flow__wrap::before {
  content: '';
  width: 28px;
  height: 28px;
  background-color: #999;
  clip-path: polygon(50% 50%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.flow__titleSub {
  border-bottom: solid 1px #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 7px;
  margin-bottom: 20px;
}

.flow__wrap_title {
  color: #d01126;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  position: relative;
  height: 40px;
  display: grid;
  place-content: center;
}

.flow__wrap_title::before {
  content: '';
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.flow__wrap_title.title01::before {
  background-image: url(../img/icon-flow01.webp);
}

.flow__wrap_title.title01_2::before {
  background-image: url(../img/icon-flow01_2.webp);
}

.flow__wrap_title.title02::before {
  background-image: url(../img/icon-flow02.webp);
}

.flow__wrap_title.title03::before {
  background-image: url(../img/icon-flow03.webp);
}

.flow__wrap_title.title04::before {
  background-image: url(../img/icon-flow04.webp);
}

.flow__wrap_title.title05::before {
  background-image: url(../img/icon-flow05.webp);
}

.recruit_confirm .entry {
  padding: 30px 0 50px;
}

.recruit_confirm .entry .privacy {
  display: none;
}

.recruit_confirm .entry .btn_input_wrap_outer {
  margin-top: 20px;
}


.recruit_confirm .entry__table .select02::after {
  content: none;
}

.recruit_finish .entry {
  padding: 90px 0 40px;
}

.recruit_finish .entry__send {
  margin: 14px 0;
  background-color: #f9f7e8;
  border: solid 2px #ccc59f;
  padding: 15px;
}

.recruit_finish .entry__send:last-of-type {
  margin-bottom: 30px;
}

.recruit_finish .entry__send_title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.recruit_finish .entry__send .txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.recruit_finish .entry__mail {
  background-color: #f5f5f5;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-top: 30px;
  padding: 25px;
}

.recruit_finish .entry__button {
  max-width: 275px;
  height: 60px;
}

.recruit_finish .banner {
  border-top: solid 1px #ccc;
  padding-top: 40px;
}

.recruit_finish .banner__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.recruit_finish .banner__sns a {
  width: 40px;
  height: 40px;
  margin: 0;
}

.recruit_finish .banner__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .fixButton {
    width: 40%;
    min-width: 375px;
    max-width: 640px;
    right: 0;
    left: inherit;
  }
}

@media screen and (min-width: 1920px) {
  .c-pc-fixed {
    width: calc(100% - 640px);
  }
}

@media screen and (max-width: 1600px) {
  .c-pc-fixed {
    width: 60%;
  }
}

@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }

  .c-pc-fixed .en {
    font-size: 2rem;
  }

  .c-pc-fixed img {
    width: 280px;
  }

  .mv {
    max-height: 580px;
  }
}

@media screen and (max-width: 940px) {
  .c-pc-fixed {
    width: calc(100% - 375px);
  }
}

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

  main {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }

  .c-pc-fixed {
    display: none;
  }

  .header {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }

  .footer {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__nav_item a:hover {
    opacity: 0.6;
  }

  .header__youtube_item a:hover {
    opacity: 0.6;
  }

  .header__banner a:hover {
    opacity: 0.6;
  }

  .mv__link_item a:hover {
    background-color: var(--base-color);
    color: #fff;
  }

  .mv__link_item a:hover::after {
    background-color: #fff;
  }

  .recruit__link_item a:hover {
    background-color: var(--lightgray-color);
  }

  .recruit__link_item.black a:hover {
    border: solid 0.75px var(--gray-color);
    background-color: var(--gray-color);
  }

  .banner a:hover {
    opacity: 0.6;
  }
}
/*# sourceMappingURL=style.css.map */
