@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	TOP
 * *************************************************/
/* 共通
----------------------------------------------*/
.section {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .section {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .section {
    margin-top: 100px;
  }
}

.section_ttl {
  font-size: 50px;
  color: #110F67;
  font-family: "Akshar";
  color: #110F67;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .section_ttl {
    font-size: 104px;
  }
}
.section_ttl span {
  font-size: 16px;
  color: #1C1C1C;
  display: block;
}
@media print, screen and (min-width: 960px) {
  .section_ttl span {
    font-size: 22px;
  }
}

.top_wrapper {
  width: 100%;
}

.mv_wrapper {
  width: 100%;
  position: relative;
  /* ディレイ指定（0.1秒ずつ） */
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper {
    margin-top: 10px;
  }
}
.mv_wrapper .mv01 {
  position: absolute;
  z-index: 5;
  width: 82.5vw;
  top: 64%;
  left: 2%;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper .mv01 {
    top: 23%;
    left: 38%;
    width: 49vw;
  }
}
.mv_wrapper .mv02 {
  position: absolute;
  z-index: 4;
  width: 29vw;
  top: 59%;
  left: 70%;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper .mv02 {
    top: 27%;
    left: 83%;
    width: 15vw;
  }
}
.mv_wrapper .mv03 {
  position: absolute;
  z-index: 3;
  width: 45vw;
  top: 46%;
  left: 37%;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper .mv03 {
    top: -7%;
    left: 70%;
    width: 25vw;
  }
}
.mv_wrapper .mv04 {
  position: absolute;
  z-index: 2;
  width: 84vw;
  top: 54%;
  left: 9%;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper .mv04 {
    top: 0%;
    left: 58%;
    width: 40vw;
  }
}
.mv_wrapper .mv05 {
  position: absolute;
  z-index: 10;
  top: 81%;
  left: 73%;
  width: 26.3vw;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper .mv05 {
    top: 62%;
    left: 81%;
    width: 15.3vw;
  }
}
.mv_wrapper .mv01,
.mv_wrapper .mv02,
.mv_wrapper .mv03,
.mv_wrapper .mv04,
.mv_wrapper .mv05 {
  opacity: 0;
  transform: translateY(20px);
  animation: mv-fade-up 0.6s ease-out forwards;
}
.mv_wrapper .mv01 {
  animation-delay: 0.2s;
}
.mv_wrapper .mv02 {
  animation-delay: 0.4s;
}
.mv_wrapper .mv03 {
  animation-delay: 0.6s;
}
.mv_wrapper .mv04 {
  animation-delay: 0.8s;
}
.mv_wrapper .mv05 {
  animation-delay: 1s;
}
@keyframes mv-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv_wrapper h2.copy {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 70px;
  left: 50%;
  color: #fff;
  display: block;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
  z-index: 20;
  padding: 0 15px;
}
@media print, screen and (min-width: 428px) {
  .mv_wrapper h2.copy {
    top: 10%;
  }
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper h2.copy {
    top: 45%;
    left: 3%;
    transform: translateY(-50%);
    padding: 0;
  }
}
.mv_wrapper h2.copy .bottom_copy {
  font-size: 15.2vw;
  font-weight: 900;
  color: #110F67;
  display: block;
  line-height: 1.2;
  font-style: italic;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper h2.copy .bottom_copy {
    font-size: 6.5vw;
  }
}
.mv_wrapper h2.copy .bottom_copy .green {
  color: #00B00F;
  font-size: 21vw;
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .mv_wrapper h2.copy .bottom_copy .green {
    font-size: 9.6vw;
  }
}
.mv_wrapper h2.copy .top_copy,
.mv_wrapper h2.copy .bottom_copy {
  white-space: nowrap;
  /* 最初は見えない */
  clip-path: inset(0 100% 0 0);
}
.mv_wrapper h2.copy.is-show .top_copy {
  animation: reveal-x 0.8s ease forwards;
}
@media print, screen and (min-width: 960px) {
  .mv_wrapper h2.copy.is-show .top_copy {
    animation: reveal-x 1.5s ease forwards;
  }
}
.mv_wrapper h2.copy.is-show .bottom_copy {
  animation: reveal-x 0.8s ease forwards;
  animation-delay: 0.25s;
}
@media print, screen and (min-width: 960px) {
  .mv_wrapper h2.copy.is-show .bottom_copy {
    animation: reveal-x 1.5s ease forwards;
    animation-delay: 0.25s;
  }
}
@keyframes reveal-x {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.mv_wrapper .mv_width_base {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mv_wrapper .mv_width_base img {
  width: 100%;
  height: auto;
  display: block;
}

.top_banner {
  position: relative;
  z-index: 10;
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .top_banner {
    position: static;
    transform: unset;
  }
}
.top_banner a {
  display: block;
  width: 50%;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 768px) {
  .top_banner a {
    width: calc(50% - 20px);
  }
}
.top_banner a:hover {
  opacity: 0.7;
}
.top_banner a .banner_img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.top_banner a .banner_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ************************************************
 *	News
 * ************************************************ */
.top_news {
  position: relative;
  transform: translateZ(0);
}
@media print, screen and (min-width: 960px) {
  .top_news {
    position: static;
  }
}
.top_news .section_ttl {
  text-align: start !important;
}
.top_news .section_ttl span {
  text-align: start !important;
}

.news_right .news_card:nth-child(1) a {
  padding-top: 0;
}
@media print, screen and (min-width: 960px) {
  .news_right .news_card:nth-child(1) a {
    padding-top: 20px;
  }
}

.news_left {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .news_left {
    width: 30%;
    text-align: left !important;
    padding-right: 20px;
  }
}
.news_left .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media print, screen and (min-width: 960px) {
  .news_left .btn {
    position: static;
    transform: unset;
    margin-top: 30px;
  }
}

.news_right {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 65px;
}
@media print, screen and (min-width: 768px) {
  .news_right {
    padding-bottom: 85px;
  }
}
@media print, screen and (min-width: 960px) {
  .news_right {
    width: 70%;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.news_right .news_card {
  border-bottom: 1px solid #353535;
  box-sizing: border-box;
  transition: all ease 0.3s;
}
.news_right .news_card a {
  width: 100%;
  align-items: center;
  padding: 20px 10px;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 768px) {
  .news_right .news_card a {
    flex-wrap: nowrap;
  }
}
.news_right .news_card a:hover {
  opacity: 0.7;
}
.news_right dt {
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .news_right dt {
    width: 200px;
  }
}
@media screen and (min-width: 1140px) {
  .news_right dt {
    width: 25%;
  }
}
.news_right dt time {
  line-height: 1;
  color: #353535;
  font-family: "Noto Sans JP";
}
.news_right dt time span {
  font-size: 14px;
}
@media print, screen and (min-width: 960px) {
  .news_right dt time span {
    font-size: 18px;
  }
}
.news_right dd {
  font-size: 16px;
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .news_right dd {
    flex-grow: 1;
  }
}
.news_right dd h4 {
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .news_right dd h4 {
    padding: 0;
  }
}

/* ************************************************
 *	OUR APPEAL
 * ************************************************ */
.bg_gray {
  background-color: #EFEFEC;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.bg_gray .bg_logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 0;
}
.bg_gray .bg_logo img {
  height: 50%;
  width: auto;
}
@media print, screen and (min-width: 960px) {
  .bg_gray .bg_logo img {
    height: 100%;
  }
}

.top_appeal {
  margin: 0 auto !important;
  padding-bottom: 100px;
  padding-top: 70px;
}
@media print, screen and (min-width: 960px) {
  .top_appeal {
    padding-bottom: 250px;
  }
}
.top_appeal .section_ttl {
  font-weight: 900;
  font-family: "Noto Sans JP";
  font-size: 36px;
}
@media print, screen and (min-width: 960px) {
  .top_appeal .section_ttl {
    font-size: 65px;
  }
}
.top_appeal h3 {
  position: relative;
}

.top_appeal_contents {
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .top_appeal_contents {
    flex-direction: row;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.top_appeal_contents .appeal_text_box {
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .top_appeal_contents .appeal_text_box {
    width: 620px;
    min-width: 620px;
    margin-right: 50px;
  }
}
.top_appeal_contents .appeal_text_box h4 {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
  margin-top: 10px;
  line-height: 1.4;
}
@media print, screen and (min-width: 960px) {
  .top_appeal_contents .appeal_text_box h4 {
    font-size: 24px;
    margin-top: 40px;
  }
}
.top_appeal_contents .appeal_text_box p {
  margin-top: 50px;
  font-weight: bold;
}
@media print, screen and (min-width: 960px) {
  .top_appeal_contents .appeal_text_box p {
    font-size: 24px;
  }
}
.top_appeal_contents .appeal_text_box .btn {
  margin-top: 30px;
}
.top_appeal_contents .appeal_img {
  width: 100%;
  margin-top: 25px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1140px) {
  .top_appeal_contents .appeal_img {
    width: 100%;
    margin-top: 0;
    margin-right: calc(50% - 50vw);
    padding-right: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .top_appeal_contents .appeal_img {
    width: 80%;
    max-width: 700px;
    margin-right: -200px;
  }
}
.top_appeal_contents .appeal_img img {
  border-radius: 10px;
}

.top_appeal_service {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  gap: 100px 0;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service {
    gap: 140px 0;
    margin-top: 0;
    padding-bottom: 2vw;
  }
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service {
    padding-bottom: 10vw;
  }
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .top_appeal_service {
    padding-bottom: 6.5vw;
  }
}
.top_appeal_service .appeal_list_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px 40px;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box {
    flex-direction: row;
  }
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service .appeal_list_box {
    flex-direction: row;
    gap: 0 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.top_appeal_service .appeal_list_box .appeal_service_img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .appeal_service_img {
    width: calc(50% - 20px);
  }
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service .appeal_list_box .appeal_service_img {
    width: calc(50% - 40px);
  }
}
.top_appeal_service .appeal_list_box .appeal_service_img img {
  border-radius: 10px;
}
.top_appeal_service .appeal_list_box .text_box {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .text_box {
    width: calc(50% - 20px);
  }
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service .appeal_list_box .text_box {
    width: calc(50% - 40px);
  }
}
.top_appeal_service .appeal_list_box .text_box span {
  display: inline-block;
  padding: 8px 15px;
  background-color: #00B00F;
  color: #fff;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service .appeal_list_box .text_box span {
    font-size: 24px;
  }
}
.top_appeal_service .appeal_list_box .text_box h4 {
  font-size: 32px;
  font-weight: bold;
  color: #110F67;
  margin-top: 15px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .top_appeal_service .appeal_list_box .text_box h4 {
    font-size: 56px;
  }
}
.top_appeal_service .appeal_list_box .text_box h5 {
  font-size: 20px;
  font-weight: bold;
}
.top_appeal_service .appeal_list_box .text_box p {
  margin-top: 5px;
}
@media print, screen and (min-width: 960px) {
  .top_appeal_service .appeal_list_box .text_box p {
    font-size: 18px;
  }
}
.top_appeal_service .appeal_list_box .text_box .btn {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .text_box .btn {
    padding-bottom: 50px;
    text-align: start;
  }
}
@media screen and (min-width: 1280px) {
  .top_appeal_service .appeal_list_box .text_box .btn {
    margin-top: 50px;
  }
}
.top_appeal_service .appeal_list_box .list_bg {
  position: absolute;
  top: -6.8vw;
  left: 50%;
  color: rgba(42, 42, 71, 0.2);
  font-size: 10vw;
  font-weight: 600;
  font-style: italic;
  font-family: "Akshar";
  line-height: 1;
  white-space: nowrap;
  text-align: end;
  transform: translateX(-50%);
  padding-right: 0.2em;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .list_bg {
    top: 100%;
    left: 30%;
    margin-top: -3.2vw;
    font-size: 6.5vw;
    text-align: end;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1920px) {
  .top_appeal_service .appeal_list_box .list_bg {
    font-size: 6vw;
  }
}
.top_appeal_service .appeal_list_box .list_bg span {
  font-size: 10vw;
  font-weight: 600;
  font-style: italic;
  font-family: "Akshar";
  line-height: 1;
  white-space: nowrap;
  text-align: end;
  padding-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .list_bg span {
    font-size: 6.5vw;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1920px) {
  .top_appeal_service .appeal_list_box .list_bg span {
    font-size: 6vw;
  }
}
.top_appeal_service .appeal_list_box .list_bg .bottom {
  font-size: 10vw;
  font-weight: 600;
  font-style: italic;
  font-family: "Akshar";
  line-height: 1.5;
  margin-top: -3.2vw;
  padding-left: 3vw;
  display: block;
  transform: translateX(8vw);
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .list_bg .bottom {
    font-size: 6.5vw;
    margin-top: -3.2vw;
    padding-left: 3vw;
    line-height: 1.8;
    transform: translateX(6vw);
  }
}
.top_appeal_service .appeal_list_box .padding.reveal-x {
  padding: 4em 1em;
}
.top_appeal_service .appeal_list_box .list_bg_even {
  position: absolute;
  top: -6.8vw;
  left: 50%;
  color: rgba(42, 42, 71, 0.2);
  font-size: 10vw;
  font-weight: 600;
  font-style: italic;
  font-family: "Akshar";
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .top_appeal_service .appeal_list_box .list_bg_even {
    top: 100%;
    left: 0;
    font-size: 6.5vw;
    font-weight: 600;
    margin-top: -3.2vw;
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .top_appeal_service .appeal_list_box .list_bg_even {
    font-size: 6vw;
  }
}

/* ************************************************
 *	RECRUIT
 * ************************************************ */
.top_recruit {
  background: url(images/top-recruit-bg.svg) no-repeat center/cover;
  padding: 60px 20px;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .top_recruit {
    padding: 120px 20px 70px 20px;
  }
}
.top_recruit .top_recruit_contents {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.top_recruit .top_recruit_contents .recruit_text_box {
  width: 100%;
  margin-top: 20px;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_text_box {
    width: 50%;
    margin-left: 50px;
    min-width: 50%;
    margin-top: 0;
  }
}
.top_recruit .top_recruit_contents .recruit_text_box .section_ttl {
  color: #1469ca;
  font-size: 110px;
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: color-dodge;
  font-family: "Akshar";
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_text_box .section_ttl {
    transform: translateX(0);
    top: -6.5vw;
    font-size: 13vw;
  }
}
.top_recruit .top_recruit_contents .recruit_text_box .title {
  font-size: 26px;
  font-weight: bold;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_text_box .title {
    font-size: 56px;
  }
}
.top_recruit .top_recruit_contents .recruit_text_box p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_text_box p {
    font-size: 24px;
  }
}
.top_recruit .top_recruit_contents .recruit_text_box .btn {
  margin-top: 30px;
}
.top_recruit .top_recruit_contents .recruit_img {
  width: 100%;
  margin-top: 28px;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_img {
    margin-top: 0;
    width: calc(70% - 45px);
    margin-left: calc(50% - 50vw);
  }
}
.top_recruit .top_recruit_contents .recruit_img img {
  border-radius: 10px;
}
@media print, screen and (min-width: 960px) {
  .top_recruit .top_recruit_contents .recruit_img img {
    border-radius: 0 10px 10px 0;
  }
}

/* ************************************************
 *	SORAI
 * ************************************************ */
.sorai {
  padding-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .sorai {
    padding-bottom: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  .sorai {
    padding-bottom: 100px;
  }
}
.sorai .section_ttl {
  text-align: center !important;
}
.sorai .img {
  width: 100%;
  margin: 20px auto 0;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .sorai .img {
    width: calc(100% - 500px);
  }
}
.sorai .img img {
  width: 70%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .sorai .img img {
    width: 100%;
  }
}
.sorai .btn {
  margin-top: 30px;
  text-align: center;
}/*# sourceMappingURL=front.css.map */