@charset "UTF-8";

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.header{
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  background-color: #2F64C9;
  z-index: 1000;
}
.header-inner{
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-inner .left{
  width: 20%;
}
.header-inner .right{
  align-items: center;
  width: 75%;
}
.header-logo{
  display: block;
  width: 100%;
  max-width: 200px;
  margin-bottom: 0;
}
.header-logo img{
  max-height: 100%;
  max-width: none;
}
.header-recruit-btn img{
  max-width: 220px;
}
.menu-nav{
  width: calc(100% - 230px);
}
.menu-nav-inner{
  width: 100%;
  justify-content: flex-end
}
.menu-nav-inner li{
  text-align: center;
  list-style: none;
  margin-right: 5px;
  line-height: 1.75;
  margin-right: 26px;
}
.menu-nav-inner li:nth-child(5){
  margin-right: 0;
}
.menu-nav-inner li a{
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.menu-nav-inner li a:after{
  content: "";
   display: block;
   width: 0;
   transition: .3s ease-in-out;
   border-bottom: 2px solid #fff;
}
.menu-nav-inner li a:hover:after{
  width: 100%;
}

.contact-btn a{
  display: block;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 8px;
  text-align: center;
  padding: 5px 26px;
  transition:all .5s ease;
}
.contact-btn a:hover{
  opacity: 0.8;
  color: inherit;
}
@media only screen and (max-width: 899px) {
  .header-inner .right{
    width: calc(100% - 176px);
  }
  .menu-nav-inner li{
    margin-right: 1.5em;
  }
  .menu-nav-inner li a:after{
    content: none;
  }
  .menu-nav-inner li a:hover{
    background-color: #185A91;
  }
}

@media only screen and (max-width: 991px) {
   .header-inner .left{
     width: 135px;
   }
   .header-inner{
     padding-top: 18px
     padding-bottom: 18px;
   }
  .sp-menu-icon{
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-nav{
    width: 100%;
  }
  .menu-nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100%;
    z-index: 999;
    overflow-y: auto;
    background-color: #1E71B5;
  }
  .menu-nav-wrapper.off{
    display: none;
  }
  .menu-nav-wrapper.on{
    display: block;
    width: 70%;
  }
  
  .menu-nav .menu-nav-inner{
    margin: 0;
  }
  .menu-nav .menu-nav-inner li {
    text-align: left;
    border-top: 1px solid #5D96C6;
    width: 100%;
    margin: 0;
  }
  .menu-nav .menu-nav-inner li:last-child{
    border-bottom: 1px solid #5D96C6;
  }

  .menu-nav .menu-nav-inner li a {
    display: block;
    color: #fff;
    border-bottom: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 1em 1em 1em 2em;
  }
  .menu-nav .menu-nav-inner li:last-child a{
    padding-left: 1em;
  }
  .contact-btn a{
    background-color: #fff;
    border: none;
    margin: 0 2em;
  }
  .sp-menu-icon .menu{
    display: none;
  }
  .sp-menu-icon label{
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .sp-menu-icon .memu-border{
    display: block;
  }
  .sp-menu-icon .memu-border,
  .sp-menu-icon .memu-border:before,
  .sp-menu-icon .memu-border:after {
    position: absolute;
    right: 1em;
    height: 3px;
    width: 32px;
    background-color: #fff;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .sp-menu-icon .memu-border:first-child {
    top: 14px;
  }
  .sp-menu-icon .memu-border:nth-child(2) {
    top: 22px;
  }
  .sp-menu-icon .memu-border:nth-child(3) {
    top: 30px;
  }

  .sp-menu-icon .menu:checked + label .memu-border:first-child {
    top: 20px;
    left: 13px;
    width: 16px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sp-menu-icon .menu:checked + label .memu-border:nth-child(2) {
    top: 24px;
    left: 12px;
    width: 28px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .sp-menu-icon .menu:checked + label .memu-border:nth-child(3) {
    top: 30px;
    right: 12px;
    width: 15px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-bg{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  .nav-bg.on{
    display: block;
  }
}

/*-------------------------------------------
MV
-------------------------------------------*/
.mv{
}
.mv .header-primary{
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 4px;
  margin-bottom: 38px;
}
.mv .header-primary span{
  font-size: 40px;
  position: relative;
}
.mv .header-primary span:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 10px;
  width: 100%;
  background-color: #FFEE58;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .intro .header-primary{
    font-size: 18px;
    margin-bottom: 2rem;
  }
  .intro .header-primary span{
    font-size: 7vw;
  }
  .intro .intro-description,
  .intro .intro-movie{
    width: 100%;
  }
  .intro .intro-movie-title{
    font-size: 18px;
  }
  .intro .intro-description{
    background: none;
    padding: 0;
  }
  .intro .intro-description p{
    text-align: center;
  }
  .intro .intro-description img{
    max-width: 300px;
  }
  .intro .button{
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------------------
サービス
-------------------------------------------*/
.service .service-frams{
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  padding: 50px 50px 50px 50px;
}
.service .service-frams + .service-frams{
  margin-top: 60px;
}
.service .service-title{
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}
.service-item-wrapper{
  max-width: 1230px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.service-item{
  position: relative;
  width: 100%;
  min-height: 294px;
  background-repeat: no-repeat;
}
.service-item-text{
  position: relative;
  display: block;
  width: 600px;
  width: 50%;
  max-width: 95%;
  min-height: 350px;
  color: #fff;
  background-color: #226FB5;
}
.service-item-text:before{
  position: relative;
  content: '';
  display: block;
  height: 0;
  width: 0;
}
.service01{
  background-image: url(../images/service-01.jpg);
  background-position: left top;
}
.service01 .service-item-text{
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 50px;
}
.service01 .service-item-text:before{
  border-top: 350px solid #226FB5;
  border-bottom: 0 solid transparent;
  border-left: 95px solid transparent;
  border-right: 0px solid transparent;
  left: -95px;
}
.service02{
  background-image: url(../images/service-02.jpg);
  background-position: right top;
  margin-bottom: 75px;
}
.service02 .service-item-text{
  margin-right: auto;
  margin-left: 0;
}
.service02 .service-item-text:after{
  position: absolute;
  right: -95px;
  content: '';
  border-top: 350px solid #226FB5;
  border-bottom: 0 solid transparent;
  border-left: 0 solid transparent;
  border-right: 95px solid transparent;
  z-index: 1;
}
.service-text-inner{
  position: absolute;
  top: 0;
  padding: 55px 50px;
}
.service-item h3{
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 36px;
}
.service-item p{
  font-size: 16px;
  line-height: 1.75;
}

@media only screen and (max-width: 901px) {
  .service-text-inner{
    padding-left: 20px;
    padding-right: 20px;
  }
  .service02 .service-item-text:before{
    right: 550px;
  }
}
@media only screen and (max-width: 781px){
  .service-text-inner{
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .service-item-wrapper{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .service-item{
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-top: 69%;
  }
  .service01{
    background-image: url(../images/sp/service-01.png);
  }
  .service02{
    background-image: url(../images/sp/service-02.png);
  }
  .service-text-inner{
    position: static;
  }
  .service-item-text{
    width: 100%;
    background-color: #1E71B5;
    max-width: 100%;
    min-height: auto;
  }
  .service01 .service-item-text:before,
  .service02 .service-item-text:after{
    content: none;
  }
  .service-item h3{
    font-size: 18px;
  }
  .service-item p{
    font-size: 14px;
  }
  .bnr-image{
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .service01{
    background-image: url(../images/sp/service-01@2x.png);
  }
  .service02{
    background-image: url(../images/sp/service-02@2x.png);
  }
}

/*-------------------------------------------
よくあるご質問
-------------------------------------------*/
.faq-area{
}
.faq-area .header-secondary{
  margin-bottom: 45px;
}
.faq-wrapper{
  margin-top: 12px;
  margin-bottom: 105px;

}
.faq{
  background-color: #fff;
  width: 800px;
  max-width: 100%;;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
}
.faq .question{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #2F64C9;
  color: #fff;
  font-weight: bold;
  padding: 5px 19px 6px 19px;
}
.faq .question:before,
.faq .question:after,
.faq .answer:before{
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.faq .question:before{
  content: url(../images/icon-question.svg);
  margin-right: 40px;
}

.faq .answer{
  position: relative;
  display: block;
  color: #333333;
  background-color: #F0F0F0;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 19px 15px 87px;
}
.faq .answer:before{
  content: url(../images/icon-answer.svg);
  position: absolute;
  top: 0;
  left: 19px;
  color: #FBB731;
  margin-right: 16px;
}
.faq-area .button{
  width: 500px;
}

@media only screen and (max-width: 767px) {
  .faq .question{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    padding-right: 2em;
  }
  .faq .question:before{
    margin-right: 10px;
  }
  .faq .question:after{
    right: 6px;
  }
  .faq .answer{
    font-size: 16px;
    padding-left: 60px;
  }
  .faq-area .button{
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-------------------------------------------
会社概要
-------------------------------------------*/
.contact-area .header-secondary{
  margin-bottom: 43px;
}
.bg-about{
  background-image: url(../images/bg-company.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-top: 86px;
}
.comp-about .header-secondary{
  margin-bottom: 40px;
}
.comp-about-list{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.comp-about .overview{
  border-top: 1px solid #fff;
  margin-top: 32px;
  margin-bottom: 45px;
}
.comp-about .overview dt,
.comp-about .overview dd{
  float: left;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  padding: 12px 0;
  margin-bottom: 0;
  line-height: 1.7;
}
.comp-about .overview dt{
  color: #fff;
  width: 8em;
  clear: both;
}
.comp-about .overview dd{
  color: #fff;
  width: calc(100% - 9em);
}

@media only screen and (max-width: 767px) {
  .comp-about .overview dt{
    width: 7em;
  }
  .comp-about .overview dd{
    width: calc(100% - 8em);
  }
  .comp-about .overview dt, .comp-about .overview dd{
    font-size: 1rem;
  }
}

/*-------------------------------------------
お問い合わせ
-------------------------------------------*/
.contact-area{
}
.contact-form{
  margin-top: 48px;
}
.contact-form .input-data{
  margin-bottom: 6px;
}
.contact-form .input-data dt,
.contact-form .input-data dd{
  margin-bottom: 33px;
}
.contact-form .input-data dt{
  font-size: 16px;
  font-weight: bold;
  width: 27%;
}
.contact-form .input-data dt.inquiry-title{
  margin-top: 12px;
}
.contact-form .input-data dt span:first-child{
  width: calc(100% - 5em);
  width: 130px;
  text-align: right;
}
.contact-form .input-data dd{
  width: 72%;
}
.contact-form .privacy{
  font-size: 11px;
  padding: 0;
  margin-bottom: 40px;
}

.contact-form .form-control{
  background-color: #F0F0F0;
  border: none;
  border-radius: 0;
  padding: 12px;
}
.contact-form .required{
  color: #DB3333;
  font-size: 14px;
  margin-left: 8px;
}
.contact-form .button{
  width: 498px;
}
.contact-form .button button{
  font-size: 20px;
  font-weight: bold;
}

.contact-form .button{
    width: 455px;
}
.contact-form .button .submit_btn{
  letter-spacing: 12px;
}

.form-control::-webkit-input-placeholder {
	color: #999;
}
.form-control::-moz-placeholder {
	color: #999;
}
.form-control:-ms-input-placeholder {
	color: #999;
}

@media only screen and (max-width: 991px) {
  .contact-form{
    padding: 0;
  }
  .contact-form .input-data dt,
  .contact-form .input-data dd{
    width: 100%;
  }
  .contact-form .input-data dt{
    text-align: left;
    color: #333;
    padding-left: 0;
    margin-bottom: 1em;
  }
  .contact-form .input-data dd{
    margin-bottom: 20px;
  }
  .contact-form .button{
    width: 455px;
  }
  .contact-form .privacy{
    font-size: 11px;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-form .privacy dd.privacy-content{
    padding: 2em;
  }
  .contact-form .privacy dt{
    text-align: center;
  }
}

/*-------------------------------------------
リクルートページ-MV
-------------------------------------------*/
.recruit-mv{
  position: relative;
}
.recruit-mv-text{
  position: absolute;
  top: 68px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1200px;
  max-width: 100%;
  padding: 0 0 0 -15px;
}
.recruit-mv-text .mv-title{
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 6px;
  margin-bottom: 38px;
}
.recruit-mv-text .mv-text{
  font-size: 16px;
  line-height: 1.5;
  width: 500px;
  max-width: 100%;
}
.recruit-movie{
  max-width: 800px;
  margin: 0 auto 105px;
}

@media only screen and (max-width: 991px) {
  .recruit-mv-text{
    top: 20px;
    margin-bottom: 30px;
  }
  .recruit-mv-text .mv-title{
    font-size: 40px;
  }
  .recruit-mv-text .mv-text{
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .recruit-mv-text{
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    padding: 0 15px;
    margin-top: 24px;
  }
  .recruit-mv-text .mv-title{
    font-size: 24px;
    margin-bottom: 16px;
  }
  .recruit-mv-text .mv-text{
    width: 100%;
  }
}

/*-------------------------------------------
リクルートページ-募集要項
-------------------------------------------*/
.recruit-detail-title{
  font-size: 20px;
  margin-bottom: 55px;
}
.recruit-detail-list{
  margin-bottom: 80px;
}
.recruit-detail-list dt,
.recruit-detail-list dd{
  border-bottom: 1px solid #ddd;
  /* width: 50%; */
  padding: 40px;
  margin-bottom: 0;
}
.recruit-detail-list dt:first-of-type,
.recruit-detail-list dd:first-of-type{
  border-top: 1px solid #ddd;
}
.recruit-detail-list dt{
  width: 33%;
  text-align: left;
  padding-left: 100px;
  padding-right: 20px;
}
.recruit-detail-list dd{
  width: 67%;
}

@media only screen and (max-width: 767px) {
  .recruit-detail-list dt,
  .recruit-detail-list dd{
    padding-top: 28px;
    padding-bottom: 38px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .recruit-detail-list dt{
    width: 40%;
  }
  .recruit-detail-list dd{
    width: 60%;
  }
}

/*-------------------------------------------
リクルートページ-メッセージ
-------------------------------------------*/
.bg-sano-message{
  background-color: #1E71B5;
}
.sano-message{
  position: relative;
  margin-bottom: 75px;
  height: 432px;
  background-image: url(../images/bg-message.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sano-message-inner{
  position: absolute;
  top: 105px;
  /* left: 415px; */
  left: 8px;
  color: #fff;
  width: 50%;
  margin-left: 33%;
}
.sano-message .messate-title{
  font-size: 22px;
  margin-bottom: 24px;
}
.sano-message .message-text{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 64px;
}

@media only screen and (max-width: 992px) {
  .sano-message-inner{
    margin-left: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .bg-sano-message{
    background-color: rgba(30, 113, 181, 0.7);
  }
  .sano-message{
    height: auto;
    background: none;
  }
  .sano-message-inner{
    position: static;
    width: 100%;
    padding-top: 32px;
    margin: 0;
  }
  .sano-message-inner .messate-title,
  .sano-message-inner .message-text{
    padding-left: 15px;
    padding-right: 15px;
  }
  .sano-message-inner .messate-title{
    text-align: center;
  }
  .sano-message-inner .message-text{
    margin-bottom: 26px;
  }
}


/*-------------------------------------------
footer
-------------------------------------------*/
.footer-inner{
  background-color: #2F64C9;
  padding: 28px 0;
}
.footer-inner small{
  color: #fff;
  font-size: 14px;
}