@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.1em;
}

/* ========================== 
section共通クラス
===========================*/
section {
  padding: 160px 0;
}

.container {
  max-width: 1080px;
  margin: auto;
}

h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 48px;
  line-height: 1.5em;
}
h2 .kana, h2 .kana-wh {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2em;
}
h2 .kana {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 .kana-wh {
  color: #FFFFFF;
}

.main-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5em;
  margin: 16px 0 24px 0;
}

.sub-text {
  font-size: 14px;
}

.btn-more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 48px;
  border-radius: 24px;
  color: #FFFFFF;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 2em;
}

.bkwh {
  background: #222222;
  transition: all 0.4s ease-out;
}
.bkwh:hover {
  background: #FFFFFF;
  color: #222222;
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
}

.blwh {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  transition: all 0.4s ease-out;
}
.blwh:hover {
  background: #FFFFFF;
  color: #222222;
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
}

.bkbl {
  background: #222222;
  transition: all 0.4s ease-out;
}
.bkbl:hover {
  border-color: transparent;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  background-size: 200% auto;
  background-position: right center;
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 96px 0;
  }

  .container {
    margin: 0 24px 0 24px;
  }

  h2 {
    font-size: 40px;
  }
  h2 .kana, h2 .kana-wh {
    font-size: 12px;
  }
}
/*アニメーション要素のスタイル*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================== 
ヘッダー
===========================*/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 160px;
  width: 100%;
  padding: 0 48px;
}
header .logo {
  width: 240px;
}
header .nav-pc ul {
  display: flex;
  align-items: center;
}
header .nav-pc ul a {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 1.5em;
}
header .nav-pc ul .bl {
  margin-left: 48px;
}
header .nav-pc ul .bl:hover {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .nav-pc ul .contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 48px;
  background: #222222;
  border-radius: 24px;
  margin-left: 48px;
  cursor: pointer;
}
header .nav-pc ul .contact a {
  color: #FFFFFF;
  text-align: center;
}
header .nav-pc ul .contact:hover {
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
}

@media screen and (min-width: 1080px) {
  header .nav-sp {
    display: none;
  }
}
@media screen and (max-width: 1079px) {
  header {
    height: 96px;
    padding: 0 24px;
  }
  header .logo {
    width: 200px;
  }
  header .nav-pc {
    display: none;
  }
}
/* ========================== 
トップ
===========================*/
.top {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  height: 90vh;
  width: 100%;
  position: relative;
}
.top .top-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/23599062_m.jpg);
  background-position: 100% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90vw;
  height: 80vh;
}
.top .top-bg .main-message {
  font-size: 72px;
  font-weight: 700;
  line-height: 2em;
  position: absolute;
  text-align: right;
  right: 96px;
  top: 40%;
}

@media screen and (max-width: 1079px) {
  .top .top-bg {
    background-position: 20% 30%;
  }
  .top .top-bg .main-message {
    font-size: 48px;
    top: 50%;
    right: 48px;
  }
}
@media screen and (max-width: 640px) {
  .top .top-bg {
    background-position: 40% 30%;
  }
  .top .top-bg .main-message {
    font-size: 40px;
    top: 10%;
    right: 24px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
  }
}
/* ========================== 
お知らせ
===========================*/
.news {
  padding-bottom: 0;
}

.news-wrapper {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-wrapper .news-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 24px 16px;
  border-bottom: 1px solid #222222;
  transition: all 0.4s ease-out;
}
.news-wrapper .news-box .news-text {
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
}
.news-wrapper .news-box .news-text .news-title {
  font-weight: 700;
}
.news-wrapper .news-box .news-text .data {
  color: #C4C4C4;
  margin-right: 24px;
  font-family: "League Spartan", sans-serif;
}
.news-wrapper .news-box .arrow-bg {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  width: 32px;
  height: 32px;
}
.news-wrapper .news-box .arrow-bg .arrow {
  width: 20px;
  height: 20px;
}
.news-wrapper .news-box:hover {
  background: #F7F7F7;
}
.news-wrapper .news-box:hover .news-title {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news .btn {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1079px) {
  .news-wrapper {
    margin: 16px 0 48px 0;
  }
  .news-wrapper .news-box .news-text {
    flex-direction: column;
    align-items: start;
  }

  .news .btn {
    display: flex;
    justify-content: center;
  }
}
/* ========================== 
私について
===========================*/
.about {
  position: relative;
  height: 860px;
  margin-bottom: 160px;
}
.about .about-bg {
  position: absolute;
  height: 540px;
  width: 90%;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
}
.about .container {
  width: 1080px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .container .content h2, .about .container .content p {
  color: #FFFFFF;
}
.about .container .content .sub-text {
  width: 400px;
}
.about .container .content-img {
  margin-top: 320px;
}
.about .container .content-img img {
  width: 540px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}

.about .btn {
  margin-top: 48px;
}

@media screen and (max-width: 1079px) {
  .about {
    margin-bottom: 0;
  }
  .about .about-bg {
    height: 540px;
    width: 100%;
  }
  .about .container {
    position: none;
    width: 100%;
    margin-top: -48px;
    margin-right: 24px;
  }
  .about .container .content-img {
    margin-top: 240px;
    margin-right: 48px;
  }
  .about .container .content-img img {
    width: 100%;
    height: 480px;
  }
}
@media screen and (max-width: 640px) {
  .about {
    position: static;
    margin-bottom: 160px;
  }
  .about .about-bg {
    position: static;
    display: none;
  }
  .about .container {
    transform: translate(0, 0);
    position: static;
    padding: 48px 24px;
    background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
    margin: 0;
    width: 100%;
    flex-direction: column-reverse;
  }
  .about .container .content {
    width: 100%;
  }
  .about .container .content .sub-text {
    width: 100%;
  }
  .about .container .content-img {
    margin-top: 0;
    margin-bottom: 48px;
    width: 100%;
  }
  .about .container .content-img img {
    width: 100%;
    height: 320px;
  }
}
/* ========================== 
サービス
===========================*/
.service {
  background-color: #F7F7F7;
}

.service-wrapper {
  display: flex;
  justify-content: space-between;
}
.service-wrapper .service-box {
  position: relative;
  width: calc(33.3333333333% - 24px);
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  background: #FFFFFF;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1), 0px 0px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-out;
}
.service-wrapper .service-box .service-title {
  font-size: 16px;
  font-weight: 700;
}
.service-wrapper .service-box .service-en {
  font-family: "League Spartan", sans-serif;
  font-size: 12px;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-wrapper .service-box .arrow-bg {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  width: 32px;
  height: 32px;
}
.service-wrapper .service-box .arrow-bg .arrow {
  width: 20px;
  height: 20px;
}
.service-wrapper .service-box:hover {
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
}

@media screen and (max-width: 1079px) {
  .service-wrapper .service-box .service-title {
    font-size: 14px;
  }
  .service-wrapper .service-box img {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .service-wrapper {
    flex-direction: column;
  }
  .service-wrapper .service-box {
    width: 100%;
    height: 240px;
    margin-top: 24px;
  }
  .service-wrapper .service-box img {
    width: 120px;
  }
  .service-wrapper .service-box .service-title {
    font-size: 14px;
  }
}
/* ========================== 
採用情報
===========================*/
.ricruit {
  margin-top: 160px;
  height: 800px;
  background-image: url("../img/24079793_m.jpg");
  background-size: cover;
}
.ricruit .container {
  display: flex;
  justify-content: flex-end;
}
.ricruit .container .ricruit-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #222222;
  width: 400px;
  padding: 80px;
}
.ricruit .container .ricruit-box h2, .ricruit .container .ricruit-box p {
  color: #FFFFFF;
}
.ricruit .btn {
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .img-sp {
    display: none;
  }
}
@media screen and (max-width: 1079px) {
  .ricruit {
    margin-top: 96px;
    height: 480px;
  }
  .ricruit .img-sp {
    display: none;
  }
  .ricruit .container .ricruit-box {
    width: 320px;
    padding: 48px;
  }
}
@media screen and (max-width: 640px) {
  .ricruit {
    margin-top: 48px;
    height: auto;
    background: none;
  }
  .ricruit .container {
    display: flex;
    flex-direction: column;
  }
  .ricruit .container .img-sp {
    display: flex;
  }
  .ricruit .container .img-sp img {
    width: 100%;
  }
  .ricruit .container .ricruit-box {
    width: 100%;
    padding: 48px;
  }
}
/* ========================== 
お問い合わせ
===========================*/
.contact .container {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px;
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  background-position: 50% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
.contact .container h2 {
  color: #FFFFFF;
}
.contact .container .btn-more-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 48px;
  border-radius: 24px;
  color: #FFFFFF;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 2em;
  background: #222222;
  transition: all 0.3s ease-out;
}
.contact .container:hover {
  box-shadow: 0px 0px 25px #4BC7CF, 0px 0px 10px #416BB9;
  background-position: 99% 50%;
}
.contact .container:hover .btn-more-contact {
  background: #FFFFFF;
  color: #222222;
}

@media screen and (max-width: 640px) {
  .contact {
    padding: 0 0 96px 0;
  }
}
/* ========================== 
フッター
===========================*/
footer {
  background: #222222;
  padding: 96px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .container .logo {
  width: 240px;
  margin-bottom: 48px;
}
footer .container .nav-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
footer .container .nav-main ul {
  display: flex;
}
footer .container .nav-main ul a {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin-right: 48px;
}
footer .container .nav-main ul a:hover {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer .container .nav-main .sns-icon {
  margin-left: 16px;
}
footer .container .nav-main .sns-icon:hover {
  opacity: 70%;
}
footer .container .nav-sub ul {
  display: flex;
}
footer .container .nav-sub ul a {
  font-size: 12px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin-right: 24px;
}
footer .container .nav-sub ul a:hover {
  background: linear-gradient(90deg, #3C41AF 0%, #416BB9 31.25%, #4BC7CF 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 1080px) {
  .sns-sp {
    display: none;
  }
}
@media screen and (max-width: 1079px) {
  footer {
    padding: 48px 0;
  }
  footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .container .logo {
    width: 200px;
    margin-bottom: 0px;
  }
  footer .container .nav-main {
    display: none;
  }
  footer .container .nav-sub {
    display: none;
  }
  footer .container .sns-sp .sns-icon {
    margin-left: 0px;
    margin-right: 16px;
  }
  footer .container .sns-sp .sns-icon:hover {
    opacity: 70%;
  }
}/*# sourceMappingURL=style.css.map */