.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #545454;
  transform: translateZ(0);
  animation: loadAnime 1.1s infinite linear;
}

@keyframes loadAnime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fadeIn.active {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp.active {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown.active {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft.active {
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight.active {
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn,
.fadeUp,
.fadeDown,
.fadeLeft,
.fadeRight {
  opacity: 0;
}

.fadeBlur {
  animation-name: fadeBlur;
  filter: blur(0rem);
  animation-duration: 3s;
}

@keyframes fadeBlur {
  0% {
    filter: blur(1rem);
  }
  100% {
    filter: blur(0rem);
  }
}
:root {
  --primary-color: #3a51ad;
  --primary-color-light: #8697dd;
  --text-color: #000000;
  --color-black: #000000;
  --bg-color: #eeeeee;
}

html[lang=ja],
body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 180%;
  font-style: normal;
  text-align: justify;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1280px) {
  .background-object,
  .background-object2 {
    display: none;
  }
}
.btn {
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #dfdfdf;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 350px;
  min-width: 300px;
  height: 50px;
  border-radius: 25px;
  transition: 0.4s;
  background-color: #ffffff;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3a51ad;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
  transition-property: transform;
}
.btn:hover:before {
  transform: scaleX(1);
}
.btn:hover span {
  color: #ffffff;
}
.btn:hover span::before {
  background-color: #ffffff;
}
.btn:hover span::after {
  background-image: url(../img/ic_arrow_b.svg);
}
.btn span {
  line-height: 100%;
  display: block;
  position: relative;
  padding: 15px 40px 15px 25px;
  box-sizing: border-box;
  width: 100%;
  transition: 0.4s;
  font-weight: 500;
  text-align: center;
}
.btn span::before, .btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn span::before {
  background-color: #3a51ad;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  right: 11px;
  transition: 0.4s;
}
.btn span::after {
  background-image: url(../img/ic_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18px;
  height: 18px;
  right: 20px;
}

.header {
  background-color: var(--color-black);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 0;
}

.header__inner {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header__title {
  width: 200px;
}

@media screen and (min-width: 1024px) {
  .header__title {
    width: 220px;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .menu {
    height: 17px;
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 20px;
    z-index: 99;
    transform: translateY(-50%);
  }
  .menu::before {
    background-color: var(--primary-color);
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    transform: translate(-25%, -30%);
    border-radius: 50%;
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 1px;
    position: absolute;
    transition: transform 0.3s;
    width: 100%;
  }
  .menu__line--top {
    top: 1px;
  }
  .menu__line--center {
    top: 8px;
  }
  .menu__line--bottom {
    bottom: 1px;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 8px;
    transform: rotate(135deg);
  }
}
.gnav {
  display: block;
  background: rgb(0, 0, 0);
  height: auto;
  position: static;
}

.gnav__menu {
  display: flex;
  margin-right: 3rem;
}

.gnav__menu__item {
  margin-right: 2rem;
}

.gnav__menu__item:last-child {
  margin-right: 0;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.5s;
}

.gnav__menu__item a:hover {
  color: var(--primary-color-light);
}

@media (max-width: 1024px) {
  .gnav {
    background: rgb(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    height: 100vh;
    position: fixed;
    width: 100%;
    z-index: 98;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
  }
  .gnav.active {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .gnav__wrap {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
  }
  .gnav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }
  .gnav__menu__item {
    margin: 1.2rem 0;
  }
}
.main_visual {
  width: 100%;
  background-color: #000000;
  padding: 0;
}

.main_text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.main_text_img_copy {
  max-width: 600px;
}

.main_text_img_name {
  max-width: 400px;
}

.main_text img {
  width: 100%;
}

.section_btn {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: var(--color-black);
}

.section_btn p {
  margin-right: 2rem;
}

.section_btn p:last-of-type {
  margin-right: 0;
}

@media (max-width: 1024px) {
  .section_btn {
    flex-direction: column;
  }
  .section_btn p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .section_btn p:last-of-type {
    margin-bottom: 0;
  }
}
.section_wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section_title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 30px;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.section_title:before,
.section_title:after {
  content: "";
  height: 5px;
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.section_title:before {
  background-color: var(--color-black);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.section_title:after {
  background-color: var(--primary-color);
}

.section_title.w100:before,
.section_title.w100:after {
  width: 50%;
}

.section_title_small {
  color: var(--color-black);
  font-size: 1rem;
  display: block;
  font-weight: normal;
}

.section_contents_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.sec_pic img {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

@media (max-width: 1024px) {
  .section_wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section_title {
    margin-top: 10px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 2.2rem;
  }
  .section_contents_title {
    font-size: 1.2rem;
  }
  .sec_pic img {
    width: 70%;
  }
}
#message {
  background-color: var(--bg-color);
  padding: 5rem;
}

#message .section_inner {
  background-color: #ffffff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  #message {
    padding: 2rem 1rem;
  }
  #message .section_inner {
    flex-direction: column;
  }
}
#about .about_outline_table th,
#about .about_outline_table td {
  background-color: var(--bg-color);
  border-collapse: collapse;
  border: 10px solid #ffffff;
  padding: 0.5rem 1.2rem;
  font-weight: normal;
}

#about .about_outline_table th,
#about .about_outline_table td {
  background-color: var(--bg-color);
}

@media (max-width: 1024px) {
  #about .about_outline_table th,
  #about .about_outline_table td {
    border: 5px solid #ffffff;
    padding: 0.2rem 0.5rem;
  }
  #about .about_outline_table th {
    white-space: nowrap;
  }
}
#recruit {
  background-color: var(--bg-color);
  padding: 5rem 0;
}

#recruit .section_contents {
  background-color: #ffffff;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

#recruit .section_contents p {
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  #recruit {
    padding: 2rem 1rem;
  }
  #recruit .section_inner {
    flex-direction: column;
  }
  #recruit .section_contents {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.faq_list {
  margin-bottom: 1rem;
}

.faq_list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.75rem 3.8rem 0.75rem 2rem;
  background-color: var(--bg-color);
  color: var(--color-black);
  cursor: pointer;
}

.faq_list summary::-webkit-details-marker {
  display: none;
}

.faq_list summary::before {
  aspect-ratio: 1;
  height: 100%;
  margin-left: 10px;
  background-color: #3a51ad;
  content: "";
  position: absolute;
  right: 0;
  max-width: 45px;
}

.faq_list summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  content: "";
  transition: transform 0.3s;
  position: absolute;
  right: 17px;
}

.faq_list.open summary::after {
  transform: translateY(25%) rotate(225deg);
}

.faq_list p {
  display: none;
}

.faq_list p {
  margin: 0;
  padding: 1rem 2rem;
  color: #000000;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .faq_list summary {
    padding: 0.5rem 4.3rem 0.5rem 1rem;
  }
  .faq_list p {
    padding: 0.5rem 1rem;
  }
}
#entry {
  background-color: var(--bg-color);
  padding: 5rem 0 0;
}

.entry_column {
  display: flex;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #entry {
    padding: 2rem 0 3rem;
  }
  .entry_column {
    flex-wrap: wrap;
  }
  .entry_text {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
  }
  .entry_photo01 {
    order: 2;
    width: 50%;
  }
  .entry_photo02 {
    order: 3;
    width: 50%;
  }
}
.footer_nav_column {
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  color: #ffffff;
  justify-content: center;
}

.footer_nav_column .footer_logo {
  border-right: 1px solid #777777;
  margin-right: 2rem;
  padding: 0.25rem 2rem 0.25rem 0;
  min-width: 300px;
  justify-content: center;
}

.footer_logo_img {
  max-width: 200px;
}

.footer_logo_address {
  color: #777777;
}

.footer_cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_cta_cell {
  border-radius: 5px;
  background-color: #3a51ad;
  display: flex;
  min-width: 280px;
  max-width: 350px;
  padding: 1rem 1rem 1rem 4.2rem;
  text-align: center;
  transition: background-color 0.5s;
}

.footer_cta_cell:hover {
  background-color: #6e85df;
}

.footer_cta_cell.mail {
  color: #ffffff;
  margin-right: 2rem;
  position: relative;
}
.footer_cta_cell.mail::before {
  content: "";
  background-image: url(../img/ic_mail.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 30px;
  transition: 0.4s;
  position: absolute;
  transform: translateY(-50%);
}

.footer_cta_cell.tel {
  color: #ffffff;
  position: relative;
}
.footer_cta_cell.tel::before {
  content: "";
  background-image: url(../img/ic_tel.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 30px;
  transition: 0.4s;
  position: absolute;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .footer_nav_column {
    padding: 1rem 2rem;
    flex-direction: column;
  }
  .footer_nav_column .footer_logo_img {
    margin: 0 auto;
  }
  .footer_nav_column .footer_logo {
    width: 100%;
    border-right: none;
    text-align: center;
    margin-right: 0;
    padding: 0;
  }
  .footer_cta {
    width: 100%;
    flex-direction: column;
  }
  .footer_cta_cell {
    margin: 0;
    width: 100%;
  }
  .footer_cta_cell.mail,
  .footer_cta_cell.tel {
    margin: 0;
  }
  .footer_cta_cell.mail {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .footer_cta_cell.tel {
    margin-bottom: 2rem;
  }
}
.footer_copy {
  width: 100%;
  text-align: center;
  color: #777777;
  background-color: var(--color-black);
  border-top: 1px solid #777777;
  padding: 0.25rem 0;
  font-size: 0.75rem;
}

.swiper {
  width: 80%;
  max-width: 1150px;
}

.swiper-slide {
  background-color: #eeeeee;
  padding: 2rem 2rem 3rem;
  border-radius: 1.5rem;
}

.slide-title {
  line-height: 1.2;
  margin-bottom: 1rem;
}

.slide-media {
  text-align: center;
}

.slide-media img {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color, var(--primary-color-light));
}

.swiper-pagination-fraction {
  display: none;
}

@media (max-width: 1024px) {
  .swiper-pagination-fraction {
    display: block;
    color: var(--color-black);
    text-align: right;
    padding-right: 2.2rem;
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    width: 100%;
  }
}
.swiper-pagination-current {
  font-size: 4rem;
}