@charset "UTF-8";
/*==============================
サイト共通
==============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}
body.hidden {
  overflow: hidden;
}

.inner {
  max-width: 1060px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 999px) {
  .inner {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 515px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 999px) {
  .section-title {
    width: 70%;
  }
}
.section-title.type-white .section-title__en {
  font-size: 64px;
  font-family: "Tilt Warp", sans-serif;
  color: #fff;
  letter-spacing: 0.15em;
  position: relative;
}
.section-title.type-white .section-title__en::before, .section-title.type-white .section-title__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
}
.section-title.type-white .section-title__en::before {
  width: 25%;
  left: 0;
  background: #fff;
}
.section-title.type-white .section-title__en::after {
  right: 0;
  width: 75%;
  background: #fff;
}
.section-title.type-white .section-title__ja {
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1em;
  font-weight: bold;
}
@media (max-width: 999px) {
  .section-title.type-white .section-title__ja {
    letter-spacing: 0.5em;
  }
}

.section-title__en {
  font-size: 64px;
  font-family: "Tilt Warp", sans-serif;
  color: #e60012;
  letter-spacing: 0.15em;
  position: relative;
}
@media (max-width: 999px) {
  .section-title__en {
    font-size: 32px;
  }
}
.section-title__en::before, .section-title__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
}
.section-title__en::before {
  width: 25%;
  left: 0;
  background: #e60012;
}
.section-title__en::after {
  right: 0;
  width: 75%;
  background: #008cd6;
}

.section-title__ja {
  margin-top: 10px;
  color: #008cd6;
  letter-spacing: 1em;
  font-weight: bold;
}
@media (max-width: 999px) {
  .section-title__ja {
    letter-spacing: 0.5em;
  }
}

.button {
  display: inline-block;
  padding: 16px 75px;
  color: #e60012;
  border: 1px solid currentColor;
  font-family: "Tilt Warp", sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.button:hover {
  color: #fff;
  background: #e60012;
}

.sp-br {
  display: none;
}
@media (max-width: 999px) {
  .sp-br {
    display: block;
  }
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 144px;
  z-index: 100;
  transition: all 0.3s ease;
}
@media (max-width: 999px) {
  .header {
    height: 60px;
  }
}
.header.bg-white {
  background: #fff;
}
.header.page-heaader {
  background: #fff;
}
.header.page-heaader .header__inner {
  max-width: 1260px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 999px) {
  .header.page-heaader .header__inner {
    width: 100%;
  }
}
.header.page-heaader .header__content {
  display: flex;
  height: 144px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .header.page-heaader .header__content {
    height: 60px;
  }
}
.header.page-heaader .header__logo img {
  width: 100px;
  transition: all 0.3s ease;
}
@media (max-width: 999px) {
  .header.page-heaader .header__logo img {
    width: 60px;
  }
}
.header.page-heaader .header__lists {
  display: flex;
  gap: 40px;
  align-items: center;
}
.header.page-heaader .header__link {
  display: flex;
  flex-direction: column;
  color: #000;
  text-align: center;
  position: relative;
}
.header.page-heaader .header__link::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 2px;
  background: #e60012;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.header.page-heaader .header__link.is-active::after {
  opacity: 1;
}
.header.page-heaader .header__link-en {
  font-family: "Tilt Warp", sans-serif;
  letter-spacing: 0.05em;
}
.header.page-heaader .header__link-ja {
  font-size: 12px;
}
.header .drawer-bar {
  background: #000;
}

.header__inner {
  max-width: 1260px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 999px) {
  .header__inner {
    max-width: 100%;
  }
}

.header__content {
  display: flex;
  height: 144px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 999px) {
  .header__content {
    height: 60px;
  }
}

.header__logo img {
  width: 100px;
}
@media (max-width: 999px) {
  .header__logo img {
    width: 60px;
  }
}

@media (max-width: 999px) {
  .header__nav {
    display: none;
  }
}

.header__lists {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__link {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
}
.header__link.bg-white {
  color: #000;
}
@media (min-width:1000px) {
  .header__link:hover {
    opacity: 0.6;
  }
}

.header__link-en {
  font-family: "Tilt Warp", sans-serif;
  letter-spacing: 0.05em;
}

.header__link-ja {
  font-size: 12px;
}

.drawer-icon {
  display: none;
}
@media (max-width: 999px) {
  .drawer-icon {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
  }
}

.drawer-bar {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 20;
}
.drawer-bar:nth-of-type(2) {
  top: 10px;
}
.drawer-bar:nth-of-type(3) {
  top: 20px;
}
.drawer-bar.bg-white {
  background: #000;
}
.drawer-bar.is-open {
  background: #000;
}
.drawer-bar.is-open:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-bar.is-open:nth-of-type(2) {
  top: 10px;
  display: none;
}
.drawer-bar.is-open:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 10;
  padding-top: 100px;
  transition: all 0.3s ease;
}
.drawer-content.is-open {
  left: 0;
}

.drawer__lists {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.drawer__link {
  display: flex;
  flex-direction: column;
}
/*==============================
mv
==============================*/
.mv {
  width: 100%;
  height: 1024px;
  background: url(../img/mv.png) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 999px) {
  .mv {
    background: url(../img/mv-sp.png) no-repeat center center/cover;
    height: 100vh;
  }
}

.mv__text {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 81.5px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 51px 83px;
  border: 7px solid #fff;
}
@media (max-width: 999px) {
  .mv__text {
    font-size: 42px;
    padding: 20px;
    border: 2px solid #fff;
  }
}

/*==============================
top-message
==============================*/
.top-message {
  padding-top: 163px;
  padding-bottom: 180px;
  position: relative;
}
.top-message::after {
  content: "";
  position: absolute;
  width: 859px;
  height: 552px;
  background: url(../img/top-message-bg.png) no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 999px) {
  .top-message::after {
    display: none;
  }
}

.top-message__texts {
  margin-top: 42px;
  text-align: center;
}

.top-message__main-text {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 999px) {
  .top-message__main-text {
    font-size: 21px;
  }
}

.top-message__text {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 27px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 999px) {
  .top-message__text {
    width: 100%;
    font-weight: normal;
  }
}

/*==============================
top-needs
==============================*/
.top-needs {
  background: url(../img/needs-bg.png) no-repeat center center/cover;
  padding-top: 108px;
  padding-bottom: 132px;
}

.top-needs__inner {
  max-width: 760px;
}

.top-needs__content {
  text-align: center;
}

.top-needs__title {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 999px) {
  .top-needs__title {
    font-size: 21px;
  }
}

.top-needs__text {
  margin-top: 32px;
  color: #fff;
  line-height: 1.7;
  font-size: 16px;
  font-weight: bold;
}

/*==============================
top-jobs
==============================*/
.top-jobs {
  padding-top: 120px;
  padding-bottom: 220px;
}
@media (max-width: 999px) {
  .top-jobs {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.top-jobs__buttons {
  margin-top: 62px;
  display: flex;
}

.top-jobs-button {
  width: 249px;
  height: 94px;
  text-align: center;
  color: #e60012;
  border: 1px solid #e60012;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media (max-width: 999px) {
  .top-jobs-button {
    height: 40px;
    font-size: 16px;
  }
}
.top-jobs-button.is-active {
  color: #fff;
  background: #e60012;
}
.top-jobs-button:hover {
  color: #fff;
  background: #e60012;
}

.top-jobs__item {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 999px) {
  .top-jobs__item {
    flex-direction: column;
    margin-top: 40px;
  }
}
.top-jobs__item.sekkei::after {
  content: "DESIGNER";
  position: absolute;
  bottom: -90px;
  left: -100px;
  font-size: 200px;
  font-family: "Tilt Warp", sans-serif;
  opacity: 0.1;
  color: #e60012;
  letter-spacing: 0.15em;
  line-height: 1;
  z-index: -1;
}
@media (max-width: 999px) {
  .top-jobs__item.sekkei::after {
    display: none;
  }
}
.top-jobs__item.seikan::after {
  content: "CANNER";
  position: absolute;
  bottom: -90px;
  left: -100px;
  font-size: 200px;
  font-family: "Tilt Warp", sans-serif;
  opacity: 0.1;
  color: #e60012;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media (max-width: 999px) {
  .top-jobs__item.seikan::after {
    display: none;
  }
}
.top-jobs__item.yousetsu::after {
  content: "WELDER";
  position: absolute;
  bottom: -90px;
  left: -100px;
  font-size: 200px;
  font-family: "Tilt Warp", sans-serif;
  opacity: 0.1;
  color: #e60012;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media (max-width: 999px) {
  .top-jobs__item.yousetsu::after {
    display: none;
  }
}
.top-jobs__item.senban::after {
  content: "OPERATOR";
  position: absolute;
  bottom: -90px;
  left: -100px;
  font-size: 200px;
  font-family: "Tilt Warp", sans-serif;
  opacity: 0.1;
  color: #e60012;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 999px) {
  .top-jobs__item.senban::after {
    display: none;
  }
}

.top-jobs__item-name {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1em;
}
@media (max-width: 999px) {
  .top-jobs__item-name {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

.top-jobs__item-right {
  width: 724px;
}
@media (max-width: 999px) {
  .top-jobs__item-right {
    width: 100%;
  }
}

.top-jobs__item-text {
  margin-top: 30px;
  letter-spacing: 0.15em;
}

.top-jobs__button {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 999px) {
  .top-jobs__button {
    margin-top: 50px;
  }
}

/*==============================
top-movie
==============================*/
.top-movie {
  background: url(../img/to-movie-bg.png) no-repeat center center/cover;
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 999px) {
  .top-movie {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.top-movie__movie {
  text-align: center;
  margin-top: 60px;
}
.top-movie__movie iframe {
  width: 670px;
  height: auto;
  aspect-ratio: 670/380;
}

/*==============================
top-interview
==============================*/
.top-interview,
.interview {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 999px) {
  .top-interview,
  .interview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.top-interview__inner,
.interview__inner {
  max-width: 1260px;
}

.top-interview__items,
.interview__items {
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  gap: 305px;
}
@media (max-width: 999px) {
  .top-interview__items,
  .interview__items {
    gap: 100px;
    margin-top: 60px;
  }
}

.top-interview__item,
.interview__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media (max-width: 999px) {
  .top-interview__item,
  .interview__item {
    flex-direction: column;
    gap: 10px;
  }
}
.top-interview__item.person1::before,
.interview__item.person1::before {
  content: "01";
  position: absolute;
  font-size: 492px;
  font-family: "Tilt Warp", sans-serif;
  left: 0;
  bottom: 40%;
  z-index: -1;
  color: #bcbcbc;
  opacity: 0.2;
}
@media (max-width: 999px) {
  .top-interview__item.person1::before,
  .interview__item.person1::before {
    display: none;
  }
}
.top-interview__item.person2,
.interview__item.person2 {
  flex-direction: row-reverse;
}
@media (max-width: 999px) {
  .top-interview__item.person2,
  .interview__item.person2 {
    flex-direction: column;
  }
}
.top-interview__item.person2::before,
.interview__item.person2::before {
  content: "02";
  position: absolute;
  font-size: 492px;
  font-family: "Tilt Warp", sans-serif;
  left: initial;
  right: 0;
  bottom: 40%;
  z-index: -1;
  color: #bcbcbc;
  opacity: 0.2;
}
@media (max-width: 999px) {
  .top-interview__item.person2::before,
  .interview__item.person2::before {
    display: none;
  }
}
.top-interview__item.person3::before,
.interview__item.person3::before {
  content: "03";
  position: absolute;
  font-size: 492px;
  font-family: "Tilt Warp", sans-serif;
  left: 0;
  bottom: 40%;
  z-index: -1;
  color: #bcbcbc;
  opacity: 0.2;
}
@media (max-width: 999px) {
  .top-interview__item.person3::before,
  .interview__item.person3::before {
    display: none;
  }
}

.top-interview__image,
.interview__image {
  width: 50.5%;
}
@media (max-width: 999px) {
  .top-interview__image,
  .interview__image {
    width: 100%;
  }
}

.top-interview__texts,
.interview__texts {
  width: 41.6666666667%;
}
@media (max-width: 999px) {
  .top-interview__texts,
  .interview__texts {
    width: 100%;
  }
}

.top-interview__tags,
.interview__tags {
  display: flex;
  gap: 27px;
}

.top-interview__tag,
.interview__tag {
  min-width: 92px;
  height: 31px;
  display: grid;
  place-content: center;
  background: #e60012;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.top-interview__name,
.interview__name {
  margin-top: 10px;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.top-interview__main-text,
.interview__main {
  margin-top: 14px;
  font-size: 24px;
  font-weight: bold;
  font-size: 16px;
}

.top-interview__title-head,
.interview__main-big {
  font-size: 64px;
  color: #e60012;
  font-weight: bold;
  margin-right: 6px;
}
@media (max-width: 999px) {
  .top-interview__title-head,
  .interview__main-big {
    font-size: 32px;
  }
}

.top-interview__text,
.interview__text {
  margin-top: 10px;
}

.top-interview__button {
  margin-top: 42px;
}
@media (max-width: 999px) {
  .top-interview__button {
    margin-top: 20px;
    text-align: center;
  }
}

/*==============================
top-contact
==============================*/
.top-contact {
  padding-top: 60px;
  padding-bottom: 80px;
  background: #fff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(230, 0, 18, 0.05) 33%, rgba(109, 74, 121, 0.05) 66%, rgba(0, 140, 214, 0.07) 100%);
}

.top-contact__texts {
  margin-top: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.top-contact__text {
  font-weight: bold;
}
.top-contact__text a {
  color: #008cd6;
  text-decoration: underline;
  font-weight: bold;
}

.top-contact__button {
  margin-top: 50px;
  text-align: center;
  align-items: center;
}

.contact-button__icon {
  display: inline-block;
  width: 27px;
}
.contact-button__icon img {
  margin-bottom: 5px;
  margin-left: 20px;
}

/*==============================
footer
==============================*/
.footer {
  padding-top: 163px;
}
@media (max-width: 999px) {
  .footer {
    padding-top: 60px;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 999px) {
  .footer__inner {
    justify-content: center;
  }
}

@media (max-width: 999px) {
  .footer__left {
    text-align: center;
  }
}

.footer__logo img {
  width: 120px;
}

.footer__name {
  margin-top: 10px;
  font-size: 21px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.footer__company {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__company-text {
  letter-spacing: 0.05em;
}

.footer__nav-lists {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 999px) {
  .footer__nav-lists {
    display: none;
  }
}

.footer__nav-link {
  display: flex;
  flex-direction: column;
  text-align: right;
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.6;
}

.footer__nav-link-en {
  font-family: "Tilt Warp", sans-serif;
  letter-spacing: 0.05em;
}
.footer__nav-link-en.is-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.footer__nav-link-ja {
  font-size: 12px;
}

.footer__copyright {
  margin-top: 80px;
  background: #e60012;
  text-align: right;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media (max-width: 999px) {
  .footer__copyright {
    text-align: center;
  }
}

.copyright {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Tilt Warp", sans-serif;
}
@media (max-width: 999px) {
  .copyright {
    font-size: 10px;
  }
}

/*==============================
下層ページ共通
==============================*/
.page-head {
  background: url(../img/page-head-bg.png) no-repeat center center/cover;
  margin-top: 144px;
  height: 300px;
}
@media (max-width: 999px) {
  .page-head {
    height: 120px;
    margin-top: 60px;
  }
}

.page-head__inner {
  position: relative;
  height: 300px;
}
@media (max-width: 999px) {
  .page-head__inner {
    height: 120px;
  }
}

.page-head__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.page-head__title-en {
  font-family: "Tilt Warp", sans-serif;
  font-size: 64px;
  letter-spacing: 0.15em;
  position: relative;
}
@media (max-width: 999px) {
  .page-head__title-en {
    font-size: 32px;
  }
}
.page-head__title-en::before {
  content: "";
  position: absolute;
  width: 505px;
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 999px) {
  .page-head__title-en::before {
    width: 100%;
  }
}

.page-head__title-ja {
  margin-top: 13px;
  letter-spacing: 1em;
}
@media (max-width: 999px) {
  .page-head__title-ja {
    letter-spacing: 0.5em;
  }
}

.page-content {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 999px) {
  .page-content {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.company__content-title,
.recruit__content-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company__content-title__text,
.recruit__content-title__text {
  font-size: 32px;
  font-weight: bold;
  color: #e60012;
}
@media (max-width: 999px) {
  .company__content-title__text,
  .recruit__content-title__text {
    font-size: 21px;
  }
}

.company__content-title__logo img,
.recruit__content-title__logo img {
  width: 80px;
}
@media (max-width: 999px) {
  .company__content-title__logo img,
  .recruit__content-title__logo img {
    width: 60px;
  }
}

/*==============================
company
==============================*/
.company__inner,
.recruit__inner {
  max-width: 760px;
}

.company__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.company__table,
.recruit__table {
  margin-top: 60px;
  width: 100%;
  border-collapse: collapse;
}

.company__table-tr,
.recruit__table-tr {
  border-bottom: 1px solid #c3c3c3;
}

.company__table-th,
.company__table-td,
.recruit__table-th,
.recruit__table-td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500;
}

.company__table-th,
.recruit__table-th {
  -moz-text-align-last: left;
       text-align-last: left;
}
@media (max-width: 999px) {
  .company__table-th,
  .recruit__table-th {
    width: 80px;
  }
}

.company__table-td,
.recruit__table-td {
  padding-left: 46px;
}
@media (max-width: 999px) {
  .company__table-td,
  .recruit__table-td {
    padding-left: 10px;
  }
}

.company__table-office-item {
  font-weight: bold;
}

.company__table-office {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company__access-items {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.company__access-title {
  font-size: 20px;
  font-weight: bold;
}

.company__access-map {
  margin-top: 30px;
}
.company__access-map iframe {
  width: 700px;
  height: auto;
  aspect-ratio: 700/483;
}
@media (max-width: 999px) {
  .company__access-map iframe {
    width: 100%;
  }
}

/*==============================
jobs
==============================*/
.jobs__items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 999px) {
  .jobs__items {
    gap: 60px;
  }
}

.jobs__item {
  display: flex;
  justify-content: space-between;
}
.jobs__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 999px) {
  .jobs__item:nth-child(2n) {
    flex-direction: column;
  }
}
@media (max-width: 999px) {
  .jobs__item {
    flex-direction: column;
  }
}

.jobs__item-title {
  font-size: 36px;
  font-weight: bold;
  color: #e60012;
  letter-spacing: 1em;
}
@media (max-width: 999px) {
  .jobs__item-title {
    font-size: 21px;
  }
}

.jobs__right {
  width: 724px;
}
@media (max-width: 999px) {
  .jobs__right {
    width: 100%;
    margin-top: 20px;
  }
}

.jobs__text {
  margin-top: 35px;
  letter-spacing: 0.15em;
}
@media (max-width: 999px) {
  .jobs__text {
    margin-top: 10px;
  }
}

/*==============================
interview
==============================*/
.interview {
  margin-top: 0;
  padding-top: 0;
}

.interview__items {
  margin-top: 0;
  gap: 100px;
}

.interview__item {
  padding-top: 100px;
  padding-bottom: 100px;
}

.button-group {
  margin-bottom: 20px;
}

.switch-btn {
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
}

.content {
  display: none;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 4px;
}

.content:first-child {
  display: block; /* 最初のコンテンツを表示 */
}

.interview__texts-content {
  margin-top: 30px;
}

.interview__q {
  font-size: 21px;
  font-weight: bold;
}

.interview__q-icon {
  margin-right: 5px;
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
  color: #e60012;
}

.interview__a-icon {
  margin-right: 5px;
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
  color: #008cd6;
}

.interview__a {
  margin-top: 5px;
  font-size: 16px;
}

/*==============================
contact
==============================*/
.contact__texts {
  text-align: center;
}

.contact__main-text {
  font-size: 32px;
  font-weight: bold;
}

.contact__text {
  margin-top: 30px;
}

.contact-radio__wrapper {
  display: flex !important;
  gap: 30px;
}
@media (max-width: 999px) {
  .contact-radio__wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-radio__text {
  margin-top: 0 !important;
  width: 100%;
}

.contact-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 12px;
  margin-left: 5px;
  background: #e60012;
  color: #fff;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: bold;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.contact-radio__text {
  font-weight: 700;
  position: relative;
}

.contact-radio__text span {
  padding-left: 28px;
  position: relative;
  font-weight: bold;
}

.contact-radio__text span::before,
.contact-radio__text span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.contact-radio__text span::before {
  width: 24px;
  height: 24px;
  border: 3px solid #e60012;
  left: 0;
}

.contact-radio__text span::after {
  width: 10px;
  height: 10px;
  background: #e60012;
  left: 7px;
  opacity: 0;
  transition: opacity 0.3s;
}

.form-radio__input:checked + span::after {
  opacity: 1;
}

/*==============================
thanks
==============================*/
.thanks {
  margin-top: 144px;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
@media (max-width: 999px) {
  .thanks {
    margin-top: 60px;
  }
}

.thanks-main {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 999px) {
  .thanks-main {
    font-size: 21px;
  }
}

.thanks-text {
  margin-top: 50px;
}

.thanks-link {
  display: inline-block;
  margin-top: 100px;
  color: #e60012;
  text-decoration: underline;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */