@charset "UTF-8";
/*==============================
サイト共通
==============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 14px;
}

.hidden {
  overflow: hidden;
}

img {
  width: 100%;
}

.inner {
  max-width: 100%;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1360px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.button {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: bold;
  padding: 18px;
  max-width: 220px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #250d65 0%, #7633a4 100%);
  border-radius: 50px;
  border: 1px solid currentColor;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  transition: background ease 0.3s;
}
.button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 20px;
  background: url(../img/bitton-arrow.png) no-repeat center center/contain;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .button:hover::after {
    right: 15px;
  }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-title {
    gap: 5px;
  }
}

.section-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  color: #391e88;
}
@media (min-width: 768px) {
  .section-title-en {
    font-size: 36px;
  }
}

.section-title-ja {
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  color: #391e88;
}

.pc-hidden {
  display: block;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 30;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.header.is-active {
  background-color: #21054d;
}

.header-inner {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header-inner {
    height: 86px;
    padding: 0 30px;
  }
}

.header-logo-image {
  width: 120px;
}
@media (min-width: 768px) {
  .header-logo-image {
    width: 160px;
  }
}

@media (min-width: 768px) {
  .header-button {
    display: none;
  }
}

.drawer-button {
  width: 30px;
  height: 14px;
  position: relative;
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.drawer-button-bar {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: all ease 0.3s;
  border-radius: 2px;
}
.drawer-button-bar:nth-of-type(1) {
  top: 0;
}
.drawer-button-bar:nth-of-type(2) {
  top: 7px;
}
.drawer-button-bar:nth-of-type(3) {
  top: 14px;
}

.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
}

.header-nav-list {
  display: flex;
  gap: 25px;
}

.header-nav-link {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  .header-nav-link {
    position: relative;
    padding-bottom: 5px;
  }
  .header-nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform ease 0.3s;
  }
  .header-nav-link:hover::after {
    transform: scaleX(1);
  }
}

.drawer {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: linear-gradient(347.96deg, #250d65 0%, #7633a4 100%);
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}

.drawer-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-nav-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.drawer-nav-link {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
}

/*==============================
fv
==============================*/
.fv {
  height: 812px;
  background: url(../img/sp/hero.png) no-repeat center center/cover;
  padding-top: 283px;
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .fv {
    background: url(../img/hero.png) no-repeat center center/cover;
    height: 767px;
  }
}

.fv-inner {
  padding: 0 30px;
}

.fv-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .fv-text {
    text-align: center;
  }
}

.fv-text-main {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .fv-text-main {
    font-size: 72px;
    line-height: 1;
  }
}

.fv-text-sub {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .fv-text-sub {
    font-size: 24px;
  }
}

.fv-button-wrapper {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .fv-button-wrapper {
    margin-top: 50px;
  }
}

.fv-button {
  background: transparent;
  margin-left: 0;
}
@media (min-width: 768px) {
  .fv-button {
    margin-left: auto;
  }
}

.fv-scroll {
  position: absolute;
  bottom: 88px;
  right: -10px;
  transform: rotate(90deg);
}

.fv-scroll-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  position: relative;
}
.fv-scroll-text::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
}

/*==============================
top-news
==============================*/
.top-news {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .top-news {
    padding: 70px 0;
  }
}

@media (min-width: 768px) {
  .top-news-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}

@media (min-width: 768px) {
  .top-news-title .section-title {
    text-align: left;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .news-list {
    gap: 15px;
  }
}

@media (min-width: 768px) {
  .news-item {
    display: flex;
    gap: 20px;
  }
}

.news-item-head {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .news-item-head {
    width: 185px;
    align-items: flex-start;
  }
}

.news-item-date {
  font-family: "Montserrat", sans-serif;
}

.news-item-category {
  padding: 2px 17px;
  min-width: 80px;
  background-color: #e8e8e8;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 20px;
}

.news-item-title {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .news-item-title {
    margin-top: 0;
    flex: 1;
  }
}
@media (min-width: 768px) {
  .news-item-title a {
    transition: color 0.3s ease;
  }
  .news-item-title a:hover {
    color: #391e88;
  }
}

/*==============================
top-service
==============================*/
.top-service {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .top-service {
    padding: 70px 0 0px;
    margin-bottom: 190px;
  }
}

.top-service-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .top-service-list {
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .top-service-item {
    width: 350px;
  }
}

.top-service-texts {
  margin-top: 15px;
}

.top-service-text-main {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
}

.top-service-text {
  margin-top: 10px;
}

.top-service-button {
  text-align: center;
  margin-top: 30px;
}

/*==============================
.top-works
==============================*/
.top-works-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .top-works-inner {
    display: flex;
    align-items: center;
    gap: 125px;
  }
}
.top-works-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 400px;
  background-color: #f0f0f0;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .top-works-inner::after {
    width: 780px;
    height: 660px;
    left: initial;
    right: 0;
    top: 50%;
    bottom: initial;
    transform: translateY(-50%);
  }
}

.top-works-slider {
  width: 100%;
}
@media (min-width: 768px) {
  .top-works-slider {
    width: 57%;
  }
}

.swiper {
  padding-bottom: 30px;
}

.swiper-slide img {
  width: 100%;
}

.swiper-pagination {
  padding-right: 4px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 20px;
  height: 32px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  background: #707070;
}
.swiper-pagination-bullet-active {
  background: #391e88;
}

.swiper-button-prev {
  background: url(../img/icon-prev.png) no-repeat center center/contain;
}

.swiper-button-next {
  background: url(../img/icon-next.png) no-repeat center center/contain;
}

.top-works-text-contents {
  margin-top: 25px;
  z-index: 10;
  position: relative;
}
@media (min-width: 768px) {
  .top-works-text-contents {
    margin-top: 0;
    flex: 1;
  }
}

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

.top-works-button {
  margin-top: 30px;
}

/*==============================
top-company
==============================*/
.top-company {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../img/sp/bg_circle_sp.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .top-company {
    background: url(../img/bg_company.png) no-repeat center center/contain;
    padding-top: 0;
    margin-top: 140px;
  }
}

.top-company-maintext {
  color: #333;
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #f5f534 0%);
}

.top-company-text {
  margin-top: 40px;
  text-align: center;
}

.top-company-button {
  margin-top: 30px;
}

/*==============================
top-recruit
==============================*/
.top-recruit {
  padding-top: 30px;
  padding-bottom: 110px;
}

.top-recruit-inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top-recruit-inner {
    flex-direction: row-reverse;
    justify-content: center;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .top-recruit-image {
    width: 666px;
  }
}

.top-recruit-wrapper {
  background-color: #f0f0f0;
  padding: 70px 20px;
}
@media (min-width: 768px) {
  .top-recruit-wrapper {
    width: 40%;
  }
}

@media (min-width: 768px) {
  .top-recruit-contents {
    width: 444px;
  }
}

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

.top-recruit-button {
  margin-top: 30px;
}

/*==============================
top-contact
==============================*/
.top-contact {
  padding: 60px 0;
  background-color: #f0f0f0;
}
@media (min-width: 768px) {
  .top-contact {
    margin-top: 0;
  }
}

.top-contact-text {
  text-align: center;
}
@media (min-width: 768px) {
  .top-contact-text {
    font-size: 15px;
  }
}

.top-contact-button {
  margin-top: 30px;
}

/*==============================
footer
==============================*/
.footer {
  background-color: #120e19;
  color: #fff;
  padding: 64px 0 56px;
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 60px;
  }
}

.footer-inner {
  padding-left: 28px;
}

.footer-nav {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

.footer-nav-list {
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .footer-nav-list {
    gap: 20px;
  }
}

.footer-nav-link {
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  padding: 5px;
}
@media (min-width: 768px) {
  .footer-nav-link {
    padding: 0;
    transition: opacity 0.3s ease;
  }
  .footer-nav-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  margin-top: 30px;
  text-align: center;
  color: #a798b7;
}

.copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}

.to-top {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 6px;
  right: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border: 1px solid #391e88;
  z-index: 10;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .to-top {
    bottom: 45px;
    right: 45px;
  }
}
.to-top::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: url(../img/arrow-up.png) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==============================
以下下層ページ
==============================*/
/*==============================
page-heading
==============================*/
.page-heading {
  padding-top: 82px;
  padding-bottom: 42px;
  background: url(../img/sp/page-bg.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .page-heading {
    padding-top: 87px;
    padding-bottom: 87px;
    background: url(../img/page-bg.png) no-repeat center center/cover;
  }
}

.page-title {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 768px) {
  .page-title {
    gap: 5px;
  }
}

.page-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-title-en {
    font-size: 36px;
  }
}

.page-title-ja {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.2;
}

.breadcrumb {
  background-color: #f7f7f7;
}

.breadcrumb-inner {
  padding: 8px 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-link {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #391e88;
}

.breadcrumb-text {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
}

.page-section {
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .page-section {
    padding: 70px 0 110px;
  }
}

/*==============================
news
==============================*/
@media (min-width: 768px) {
  .news-inner {
    max-width: 750px;
  }
}

.pagenation {
  margin-top: 40px;
}

.pagenation-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagenation-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #250d65 0%, #7633a4 100%);
  border-radius: 50%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
.pagenation-link.is-active {
  background: #f1ebf8;
  color: #000;
}
@media (min-width: 768px) {
  .pagenation-link {
    transition: opacity ease 0.3s;
  }
  .pagenation-link:hover {
    opacity: 0.7;
  }
}

/*==============================
single
==============================*/
@media (min-width: 768px) {
  .single-inner {
    max-width: 780px;
  }
}

.single-head {
  align-items: center;
}
@media (min-width: 768px) {
  .single-head {
    margin-top: 10px;
  }
}

.single-title {
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .single-title {
    font-size: 32px;
  }
}

.single-info {
  margin-top: 10px;
  gap: 10px;
}

.single-date {
  font-size: 10px;
}

.single-contents {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .single-contents {
    margin-top: 30px;
  }
}
.single-contents p + p {
  margin-top: 20px;
}
.single-contents h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .single-contents h2 {
    margin-top: 60px;
    font-size: 24px;
  }
}
.single-contents h2::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 28px;
  background-color: #391e88;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 10px;
}
.single-contents h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}

.single-image {
  margin-bottom: 30px;
  margin-top: 20px;
}

.single-sns {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .single-sns {
    width: 500px;
  }
}

.single-links {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b8aed5;
  border-bottom: 1px solid #b8aed5;
}

.single-links-link {
  width: 50%;
  padding: 25px 20px;
  display: inline-block;
  color: #391e88;
}
.single-links-link:first-child {
  position: relative;
}
.single-links-link:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 84px;
  background-color: #b8aed5;
}

.to-archive {
  margin-top: 20px;
  text-align: center;
}
.to-archive a {
  color: #391e88;
}
@media (min-width: 768px) {
  .to-archive a {
    font-size: 15px;
  }
}

/*==============================
service
==============================*/
.service-inner {
  max-width: 1160px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .service-list {
    gap: 60px;
  }
}

@media (min-width: 768px) {
  .service-item {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
}

.service-item-image {
  max-width: 445px;
}

.service-item-texts {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .service-item-texts {
    flex: 1;
    margin-top: 0;
  }
}

.service-item-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .service-item-title {
    text-align: left;
  }
}

.service-item-text {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .service-item-text {
    margin-top: 20px;
  }
}

/*==============================
works
==============================*/
@media (min-width: 768px) {
  .works-inner {
    max-width: 1160px;
  }
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.works-text {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

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

.compnay-inner {
  max-width: 1160px;
}

.compnay-messgae {
  padding: 60px 0;
  background: url(../img/sp/bg_circle_sp.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .compnay-messgae {
    background: url(../img/bg_company.png) no-repeat center center/cover;
    max-width: 1360px;
    margin: 0 auto;
    padding: 100px 0;
  }
}

.compnay-title {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  color: #391e88;
  font-weight: bold;
}
@media (min-width: 768px) {
  .compnay-title {
    font-size: 32px;
  }
}

.company-maintext {
  margin-top: 30px;
  font-size: 32px;
  text-align: center;
}

.company-text {
  margin-top: 40px;
  text-align: center;
}

.compnay-ceo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .compnay-ceo {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
}

@media (min-width: 768px) {
  .compnay-ceo-image {
    max-width: 445px;
  }
}

@media (min-width: 768px) {
  .compnay-ceo-text {
    flex: 1;
    font-size: 15px;
  }
}

.compnay-about {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .compnay-about {
    padding-top: 140px;
  }
}

.compnay-about-table,
.recruit-table {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .compnay-about-table,
  .recruit-table {
    margin-top: 0;
  }
}
.compnay-about-table table,
.recruit-table table {
  width: 100%;
}
.compnay-about-table table tr,
.recruit-table table tr {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .compnay-about-table table tr,
  .recruit-table table tr {
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.compnay-about-table table tr th,
.recruit-table table tr th {
  text-align: left;
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .compnay-about-table table tr th,
  .recruit-table table tr th {
    width: 222px;
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  .compnay-about-table table tr td,
  .recruit-table table tr td {
    flex: 1;
  }
}

.compnay-about-map {
  margin-top: 40px;
}
.compnay-about-map iframe {
  width: 345px;
  height: auto;
  aspect-ratio: 345/240;
}
@media (min-width: 768px) {
  .compnay-about-map {
    margin-top: 60px;
  }
  .compnay-about-map iframe {
    width: 1100px;
    height: auto;
    aspect-ratio: 1100/400;
  }
}

.compnay-about-map-link {
  margin-top: 5px;
  color: #391e88;
}

/*==============================
recruit
==============================*/
.recruit {
  background: url(../img/sp/recruit-bg.png) repeat center center/contain;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .recruit {
    background: url(../img/recruit-bg.png) repeat center center/400px;
  }
}

.recruit-maintext {
  text-align: center;
  color: #391e88;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-maintext-en {
  font-size: 48px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.recruit-maintext-ja {
  font-size: 18px;
}

.recruit-bg {
  margin-top: 40px;
  clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
}

.recruit-about-contents {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .recruit-about-contents {
    margin-top: 70px;
  }
}

.recruit-title {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  color: #391e88;
  font-weight: bold;
}
@media (min-width: 768px) {
  .recruit-title {
    font-size: 32px;
  }
}

.recruit-table {
  padding: 30px 20px;
  background-color: #fff;
  border: 1px solid #B067CF;
  border-radius: 6px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .recruit-table {
    padding: 60px 95px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}

.recruit-table-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .recruit-table-title {
    font-size: 24px;
  }
}

.recruit-button {
  margin-top: 40px;
}

.recruit-button-text {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}

.recruit-video {
  padding-top: 80px;
  text-align: center;
}
.recruit-video iframe {
  margin-top: 30px;
  width: 345px;
  height: auto;
  aspect-ratio: 345/194;
}
@media (min-width: 768px) {
  .recruit-video iframe {
    margin-top: 40px;
    width: 1100px;
    height: auto;
    aspect-ratio: 1100/624;
  }
}

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

.contact-form {
  background-color: #f7f7f7;
  padding: 30px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .contact-form {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding: 90px;
  }
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form-name {
  font-size: 15px;
  font-weight: bold;
}

.required {
  color: #391e88;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 10px;
  font-weight: bold;
}

.input-text,
.input-textarea,
.input-select {
  width: 100%;
  padding: 8px;
}

@media (min-width: 768px) {
  .input-text {
    width: 300px;
  }
}

.input-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 768px) {
  .input-select {
    width: 300px;
  }
}

.input-textarea {
  height: 150px;
}

.form-radio {
  display: flex;
}

.ragio-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .ragio-input-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 515px;
    gap: 9px 35px;
  }
}

.form-radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio-input:checked + .form-ragio-text::after {
  opacity: 1;
}

.form-ragio-text {
  position: relative;
  padding-left: 18px;
}
.form-ragio-text::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border: 1px solid #aaa;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 1.5px rgba(0, 0, 0, 0.15);
}
.form-ragio-text::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #391e88;
  top: 50%;
  left: 3.5px;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}

.contact-form-button {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */