@charset "UTF-8";
/*--------------------------
* 共通
--------------------------*/
/* Reset */
* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------
* responsive
--------------------------*/
/*--------------------------
* 共通  フォント
--------------------------*/
/*--------------------------
* 共通
* header
--------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: #fff;
}

.gnavi__wrap {
  width: 100%;
  -webkit-box-shadow: 3px 0px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 0px 3px rgba(0, 0, 0, 0.3);
}

.gnavi__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gnavi__logo {
  padding-left: 2%;
}
.gnavi__logo figure {
  width: 200px;
  height: 70px;
}

.gnavi__area {
  padding-right: 2%;
  width: 80%;
}

.gnavi__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .gnavi__lists {
    display: none;
  }
}

.gnavi__list {
  max-width: 200px;
  width: 20%;
  height: 50px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gnavi__list:last-child {
  margin-left: 16px;
}

.gnavi__list:hover {
  background-color: #0071bb;
}

.gnavi__list:not(:first-of-type):not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #0071bb;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gnavi__list:hover::before {
  background-color: #0071bb;
}

.gnavi__list a,
.gnavi__list span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #1b4059;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gnavi__list:hover a,
.gnavi__list:hover span {
  color: #fff;
}

.dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #004d80;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #003558;
}

.dropdown__list a {
  padding-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 960px) {
  .dropdown__list a {
    font-size: 12px;
  }
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 12px;
  top: calc(50% - 5px);
}

.dropdown__lists {
  -webkit-transform: scaleY(0);
          transform: scaleY(0); /*デフォルトでは非表示の状態にしておく*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*変形を適応する基準をtopとする*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s; /*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  -webkit-transform: scaleY(1);
          transform: scaleY(1); /*Gナビメニューにホバーしたら表示*/
}

.contact-btn {
  width: 260px;
  max-width: 260px;
  line-height: 18px;
  margin: 0 auto;
  padding: 16px 0;
  background: -webkit-gradient(linear, left top, right top, from(#3ce9ca), to(#2392ff));
  background: linear-gradient(to right, #3ce9ca, #2392ff);
  text-align: center;
  color: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.contact-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#b1effb), to(#2392ff));
  background: linear-gradient(to right, #b1effb, #2392ff);
}
.contact-btn:hover::before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 8px;
}
.contact-btn:before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*--------------------------
* 下層ページ main visual*
--------------------------*/
.hero {
  margin-top: 70px;
}
@media screen and (max-width: 520px) {
  .hero {
    margin-top: 64px;
  }
}
.hero__bg {
  position: relative;
  height: 200px;
  background: -webkit-gradient(linear, left top, right top, from(#b1effb), to(#2392ff));
  background: linear-gradient(to right, #b1effb, #2392ff);
  z-index: 0;
}
@media screen and (max-width: 520px) {
  .hero__bg {
    height: 170px;
  }
}
.hero__content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: 200px;
  position: absolute;
  z-index: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .hero__content {
    height: 170px;
  }
}
.hero__content p {
  margin-top: 40px;
  color: #333436;
}
@media screen and (max-width: 520px) {
  .hero__content p {
    margin-top: 24px;
  }
}
.hero__content h1 {
  margin-top: 8px;
  color: #333436;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 520px) {
  .hero__content h1 {
    margin-top: 0;
    font-size: 32px;
  }
}
.hero .breadcrumb {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 2%;
  height: 40px;
  margin-top: 8px;
  word-break: keep-all;
  white-space: nowrap;
}
.hero .breadcrumb::-webkit-scrollbar {
  height: 5px;
}
.hero .breadcrumb::-webkit-scrollbar-thumb {
  background: #333436;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .hero .breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
@media screen and (max-width: 520px) {
  .hero .breadcrumb {
    top: auto;
    bottom: 0;
  }
}
.hero .breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}
.hero .breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #333436;
}
.hero .breadcrumb li:last-child:after {
  content: "";
}
.hero .breadcrumb li a {
  margin: 0 16px;
  color: #333436;
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .hero .breadcrumb li a {
    font-size: 12px;
    margin: 0 4px;
  }
}

/*-------------------------
  * hamburger　nav
  --------------------------*/
.hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .hamburger {
    position: relative;
    display: block;
    text-align: center;
    z-index: 9999;
    padding-right: 2%;
  }
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger--trigger {
  width: 64px;
  height: 64px;
  position: relative;
}
.hamburger--trigger span {
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 13px;
  margin: 0 auto;
  width: 39px;
  height: 1.5px;
  background-color: #2392ff;
  border-radius: 0;
}
.hamburger--trigger span:nth-of-type(1) {
  top: 21px;
}
.hamburger--trigger span:nth-of-type(2) {
  top: 32px;
}
.hamburger--trigger span:nth-of-type(3) {
  top: 43px;
}

/*--------------------------
  * hamburger js
  --------------------------*/
.drawer--active .rec-gnavi {
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
}

.btn--active .hamburger--trigger span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}
.btn--active .hamburger--trigger span:nth-of-type(2) {
  width: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.btn--active .hamburger--trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

/*--------------------------
  * レスポンシブ
  --------------------------*/
.rec-gnavi {
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: -100vw;
  width: 100%;
  visibility: visible;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.rec-gnavi__wrapper {
  position: absolute;
  width: 100%;
  top: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, -5%);
          transform: translate(-50%, -5%);
}
.rec-gnavi__logo {
  margin: 0 auto;
  max-width: 300px;
}
@media screen and (max-width: 520px) {
  .rec-gnavi__logo {
    width: 60%;
  }
}
.rec-gnavi__list {
  max-width: 700px;
  width: 60%;
  margin: 0 auto;
  padding-top: 34px;
}
@media screen and (max-width: 520px) {
  .rec-gnavi__list {
    padding-top: 0px;
  }
}
.rec-gnavi__list .rec-gnavi__list-item {
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .rec-gnavi__list .rec-gnavi__list-item {
    margin-bottom: 12px;
  }
}
.rec-gnavi__list .rec-gnavi__list-item .title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.rec-gnavi__list .rec-gnavi__list-item .title__hover:hover {
  color: #2589d0;
}
.rec-gnavi__list .service__list {
  padding-left: 24px;
  margin-top: 16px;
}
.rec-gnavi__list .service__list .service__list-item {
  margin-bottom: 16px;
  position: relative;
}
@media screen and (max-width: 520px) {
  .rec-gnavi__list .service__list .service__list-item {
    margin-bottom: 8px;
  }
}
.rec-gnavi__list .service__list .service__list-item:before {
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 4px;
  height: 4px;
  border-bottom: 3px solid #2589d0;
  border-right: 3px solid #2589d0;
  content: "";
}
.rec-gnavi__list .service__list .service__list-item a:hover {
  color: #2589d0;
}
.rec-gnavi__copy {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans JP";
  font-size: 1.6rem;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-weight: 400;
  letter-spacing: 0.15em;
}

/*--------------------------
* セクション
--------------------------*/
.sec {
  padding: 56px 0;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .sec {
    padding: 40px 0;
  }
}

.sec__wrapper {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec__title {
  font-size: 40px;
  font-weight: 500;
  padding-bottom: 40px;
  text-align: center;
  line-height: 48px;
}
@media screen and (max-width: 960px) {
  .sec__title {
    font-size: 32px;
    padding-bottom: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 520px) {
  .sec__title {
    font-size: 24px;
    padding-bottom: 32px;
    line-height: 36px;
  }
}
@media screen and (max-width: 520px) {
  .sec__title {
    font-size: 20px;
    padding-bottom: 24px;
    line-height: 24px;
  }
}

.sec__text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
}

/*--------------------------
* 会社情報 & 採用情報
--------------------------*/
.company-recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .company-recruit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company:after {
  background: url(../img/index/company.jpg) no-repeat center center;
}

.recruit:after {
  background: url(../img/index/recruit.jpg) no-repeat center center;
}

.company,
.recruit {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 400px;
}
@media screen and (max-width: 960px) {
  .company,
  .recruit {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .company,
  .recruit {
    height: 250px;
  }
}
.company:after,
.recruit:after {
  opacity: 0.8;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.company:hover:after,
.recruit:hover:after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.company a,
.recruit a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.company a .text-content,
.recruit a .text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.company a .text-content .title,
.recruit a .text-content .title {
  padding-top: 16px;
  text-align: center;
  font-size: 24px;
  color: #081f5d;
}
@media screen and (max-width: 520px) {
  .company a .text-content .title,
  .recruit a .text-content .title {
    padding-top: 12px;
    font-size: 18px;
  }
}
.company a .text-content .en,
.recruit a .text-content .en {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  padding-bottom: 16px;
  position: relative;
  color: #081f5d;
}
@media screen and (max-width: 520px) {
  .company a .text-content .en,
  .recruit a .text-content .en {
    padding-bottom: 12px;
    font-size: 18px;
  }
}
.company a .text-content .en::before,
.recruit a .text-content .en::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #081f5d;
}

/*--------------------------
* お問い合わせ
--------------------------*/
.contact {
  padding: 56px 0;
  background-color: #e8eff7;
}
.contact .contact-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 15px;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 520px) {
  .contact .contact-inner {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact .contact-inner .textarea {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .contact .contact-inner .textarea {
    width: 100%;
  }
}
.contact .contact-inner .textarea p {
  text-align: center;
  padding-bottom: 24px;
}
.contact .contact-inner .textarea .contact-btn {
  width: 260px;
  line-height: 38px;
  margin: 0 auto;
  padding: 16px 0;
  background: -webkit-gradient(linear, left top, right top, from(#3ce9ca), to(#2392ff));
  background: linear-gradient(to right, #3ce9ca, #2392ff);
  text-align: center;
  color: #fff;
  border-radius: 100px;
  position: relative;
}
.contact .contact-inner .textarea .contact-btn:before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 32px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact .contact-inner .textarea .contact-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#b1effb), to(#2392ff));
  background: linear-gradient(to right, #b1effb, #2392ff);
}
.contact .contact-inner .textarea .contact-btn:hover::before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 28px;
}
.contact .contact-inner .imgarea {
  width: 50%;
}
@media screen and (max-width: 520px) {
  .contact .contact-inner .imgarea {
    padding-top: 32px;
    width: 100%;
  }
}
.contact .contact-inner .imgarea figure {
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .contact .contact-inner .imgarea figure {
    width: 70%;
  }
}

/*
--------------------------------------
footer
--------------------------------------
*/
.footer {
  background-color: #001646;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer .totop {
  display: block;
  height: 80px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  border-bottom: solid 1px #ffffff;
}
.footer .totop::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 5px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .totop:hover {
  opacity: 0.8;
}
.footer .totop:hover::before {
  top: calc(50% - 10px);
}
.footer__wrapper {
  width: 100%;
}
.footer__inner {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
}
@media screen and (max-width: 960px) {
  .footer__inner {
    display: block;
  }
}
.footer__company {
  width: 50%;
  padding-right: 2rem;
}
@media screen and (max-width: 960px) {
  .footer__company {
    width: 100%;
    padding: 0 2rem;
  }
}
.footer__company .logo {
  width: 250px;
  height: auto;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .footer__company .logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .footer__company .logo {
    width: 80%;
  }
}
.footer__company .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 16px;
}
.footer__company .sns-list li {
  padding-left: 32px;
}
.footer__company .sns-list li:first-child {
  padding: 0;
}
.footer__company .sns-list li figure {
  width: 30px;
}
.footer__company .address {
  color: #fff;
  margin-top: 24px;
  line-height: 30px;
  font-style: normal;
}
@media screen and (max-width: 520px) {
  .footer__company .address {
    margin-top: 0;
  }
}
.footer__nav {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    width: 100%;
    margin-top: 24px;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav {
    margin-top: 16px;
  }
}
.footer__nav--tb, .footer__nav--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-right: 5%;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list, .footer__nav--sp .menu-list {
    padding-right: 0;
    border-right: none;
  }
}
.footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
  border: none;
  padding-left: 5%;
  padding-right: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list:nth-child(2), .footer__nav--sp .menu-list:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list .sp, .footer__nav--sp .menu-list .sp {
    display: none;
  }
}
.footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb .menu-list li, .footer__nav--sp .menu-list li {
    margin-bottom: 8px;
  }
}
.footer__nav--tb .menu-list li p, .footer__nav--sp .menu-list li p {
  margin-bottom: 8px;
}
.footer__nav--tb .menu-list li a, .footer__nav--sp .menu-list li a {
  color: #fff;
}
.footer__nav--tb .menu-list li:last-child, .footer__nav--sp .menu-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .footer__nav--tb, .footer__nav--sp {
    border: none;
    margin-top: 16px;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav--tb {
    display: none;
  }
}
.footer__nav--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav--sp {
    display: block;
  }
}
.footer__nav .service-list--tb, .footer__nav .service-list--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.footer__nav .service-list--tb li, .footer__nav .service-list--sp li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 8px;
}
.footer__nav .service-list--tb li:last-child, .footer__nav .service-list--sp li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .footer__nav .service-list--tb {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--tb {
    display: none;
  }
}
.footer__nav .service-list--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .footer__nav .service-list--sp {
    display: block;
  }
}

.copyright a {
  color: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 50px 0 20px;
  font-size: 12px;
}
@media screen and (max-width: 520px) {
  .copyright a {
    margin: 32px 0 20px;
  }
}

.footer__nav a {
  position: relative;
}

.footer__nav a:before {
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.footer__nav a:hover:before {
  width: 100%;
}

/*--------------------------------------
*	サポート
--------------------------------------*/
.support__imgarea {
  margin-top: 32px;
}

/*--------------------------------------
*	研修内容
--------------------------------------*/
.training__content {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .training__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.training__textarea {
  width: 50%;
  max-width: 650px;
  padding: 0 3%;
}
@media screen and (max-width: 960px) {
  .training__textarea {
    width: 100%;
  }
  .training__textarea ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 960px) and (max-width: 520px) {
  .training__textarea ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.training__textarea .curriculum,
.training__textarea .ojt {
  padding: 16px;
  border: solid 1px #19a2db;
}
@media screen and (max-width: 960px) {
  .training__textarea .curriculum,
  .training__textarea .ojt {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 520px) {
  .training__textarea .curriculum,
  .training__textarea .ojt {
    width: 100%;
  }
}
.training__textarea .curriculum .title,
.training__textarea .ojt .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 520px) {
  .training__textarea .curriculum .title,
  .training__textarea .ojt .title {
    font-size: 18px;
  }
}
.training__textarea .curriculum p,
.training__textarea .ojt p {
  font-size: 16px;
}
@media screen and (max-width: 520px) {
  .training__textarea .curriculum p,
  .training__textarea .ojt p {
    font-size: 12px;
  }
}
.training__textarea .curriculum {
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .training__textarea .curriculum {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 520px) {
  .training__textarea .curriculum {
    margin-bottom: 16px;
  }
}
.training__textarea .skill {
  margin-top: 16px;
}
.training__imgarea {
  width: 50%;
  overflow: hidden;
  padding-left: 3%;
}
@media screen and (max-width: 960px) {
  .training__imgarea {
    width: 100%;
  }
}
.training__imgarea figure {
  width: 1200px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .training__imgarea figure {
    width: 960px;
  }
}

/*--------------------------------------
* インタビュー
--------------------------------------*/
.interview h2 br {
  display: none;
}
@media screen and (max-width: 520px) {
  .interview h2 br {
    display: block;
  }
}
.interview__content {
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 520px) {
  .interview__content {
    display: block;
  }
}
.interview__content:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 520px) {
  .interview__content:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.interview__content:last-child {
  padding: 0;
}
.interview__imgarea {
  width: 30%;
}
@media screen and (max-width: 520px) {
  .interview__imgarea {
    margin: 0 auto;
  }
}
.interview__textarea {
  width: 70%;
  padding-left: 3%;
}
@media screen and (max-width: 520px) {
  .interview__textarea {
    width: 100%;
    padding: 0;
  }
}
.interview__textarea .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (max-width: 520px) {
  .interview__textarea .title {
    font-size: 18px;
  }
}
.interview__textarea .detail span {
  font-weight: bold;
}
@media screen and (max-width: 520px) {
  .interview__textarea .detail span {
    font-size: 12px;
  }
}
.interview__textarea .comment {
  margin-top: 16px;
}
@media screen and (max-width: 520px) {
  .interview__textarea .comment {
    font-size: 12px;
  }
}

/*--------------------------------------
*	よくある質問
--------------------------------------*/
.question {
  background: #f2f2f2;
}

.accordion {
  width: 100%;
}
.accordion__trigger {
  color: #000;
  background-color: #fff;
  padding: 0.6em 32px 0.6em 0.6em;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #e0e9f8;
}
.accordion__trigger span {
  color: #437ef6;
}
.accordion__trigger::before, .accordion__trigger::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion__trigger::before {
  width: 12px;
  height: 2px;
  right: 10px;
}
.accordion__trigger::after {
  width: 2px;
  height: 12px;
  right: 15px;
  -webkit-transition: opacity 0.36s;
  transition: opacity 0.36s;
}
.accordion__trigger.is-active {
  border-bottom: none;
}
.accordion__trigger.is-active:after {
  opacity: 0;
}
.accordion__body {
  padding: 0 1em;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: padding 0.36s, opacity 0.36s;
  transition: padding 0.36s, opacity 0.36s;
}
.accordion__body span {
  color: #437ef6;
}
.accordion__body.is-open {
  padding: 0.6em 1em;
  line-height: normal;
  height: auto;
  opacity: 1;
}/*# sourceMappingURL=training.css.map */