@charset "UTF-8";
html {
    font-size: 62.5%;
}
body {
    background-color: #dce1e6;
    font-family: "游ゴシック","Hiragino Kaku Gothic ProN","sans-serif";
    font-size: 1.6rem;
    color: #060563;
}
section {
    width: 100%;
    margin-bottom: 7%;
}
@font-face {
    font-family: "myfont";
    src: url("../fonts/HOT-GFKaishokk-E.otf") format("opentype") ;
    }
a:hover {
    opacity: 0.5;
}

/***** header *****/

header {
    width: 100%;
    height: 70px;
    position:fixed;
    top:0px;
    z-index: 10;
}
.header {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
}
.header nav {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    margin: 10px 0 0 20%;
    border-radius: 7px;
    height: 70px;
}
.header img {
    width: 110px;
}
.header nav ul {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    height: 100%;
}
.header nav ul ul{
	display: block;
}
.header nav ul li {
    padding-right: 20px;
    margin-left: 30px;
    position: relative;
}
.header nav ul li a {
    color: #fff;
    transition:all .3s;
}
@media screen and (max-width: 1328px) {
    /* モバイル向けスタイル */
    .header img {
        width: 100px;
        margin: 0.5rem;
        background-color: rgba(220, 225, 230, 0.5);
        border-radius: 3px;
    }
}
@media screen and (max-width: 660px) {
    /* モバイル向けスタイル */
    .header {
        width: 100%;
        height: 100%;
    }    
    .header img {
        width: 60px;
        margin: 0.5rem;
        background-color: rgba(220, 225, 230, 0.5);
        border-radius: 3px;
    }
}

/* お問い合せフォーム リンクボタン */
/*きらっと光る*/

.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;
    background-color: #ffc436;
    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    height: 50px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}
/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 70%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
	transform: skewX(-25deg);
}
.btnshine:hover {
    background-color: #ffc436;
    opacity: 1;
}
/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 1s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


/*2階層目を持つliの矢印の設定*/
.header nav ul li.has-child::before{
    content:'';
    position: absolute;
    right: 5px;
    top:5px;
    width:6px;
    height:6px;
    border-top: 2px solid #fff;
      border-right:2px solid #fff;
      transform: rotate(135deg);
}
/*下の階層を持っているulの指定*/
.header nav ul li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0px;
  top:30px;
  z-index: 4;
    /*形状を指定*/
  background-color: rgba(255, 255, 255, 0.9);
  width:230px;
  height: auto;
  border-radius: 3px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
}
.header nav ul li.has-child ul li{
    padding: 10px 10px;
    margin: 0;
}
/*hoverしたら表示*/
.header nav ul li.has-child:hover > ul,
.header nav ul li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
.header nav ul li.has-child ul li a{
  display: block;
  width: 100%;
  color: #060563;
  font-size: 1.4rem;
}
.header nav ul li.has-child ul li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.header nav ul li.has-child ul li:last-child:hover {
    border-radius: 0 0 3px 3px;
}
.header nav ul li.has-child ul li a:hover {
    opacity:1;
}
.nav_toggle {
    display: none;
}

/*** ハンバーガーメニュー ***/
@media screen and (max-width: 1328px) {
    /* モバイル向けスタイル */
    .nav_toggle_group {
      margin: 1rem;
      padding: 1rem;
      background-color: rgba(220, 225, 230, 0.5);
      border-radius: 3px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .nav_toggle {
        display: block;
        position: relative;
        width: 2.75rem;
        height: 2.4rem;
        margin: 2rem;
        z-index: 999;
      }
      .nav_toggle i {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #060563;
        position: absolute;
        transition: transform .5s, opacity .5s;
      }
      .nav_toggle i:nth-child(1) {
        top: 0;
      }
      .nav_toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
      }
      .nav_toggle i:nth-child(3) {
        bottom: 0;
      }
      .nav_toggle.show i:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
        background-color: #f0f0f0;
      }
      .nav_toggle.show i:nth-child(2) {
        opacity: 0;
      }
      .nav_toggle.show i:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
        background-color: #f0f0f0;
      }
      .nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        opacity: 0;
        /* visibility: hidden; */
        /* transition: opacity .5s, visibility .5s; */
        transition: opacity .5s;

      }

      .nav.show {
        opacity: 1;
        /* visibility: visible; */

      }
      .header .nav {
        background-color: rgba(0, 0, 0, 0.8);
        width: 50%;
        margin: 10px 0 0 auto;
        border-radius: 0;
        height: 100%;
    }
    .header nav ul li.has-child::before{
        display: none;
    }
    .header nav ul li.has-child ul{
      background-color: rgba(255, 255, 255, 0);
      position: relative;
      left: auto;
      top: auto;
      visibility: visible;
      opacity: 1;
    }
    .header nav ul li.has-child ul li{
        padding: 10px 30px;
    }    
    .header nav ul li.has-child ul li a{
        color: #fff;
    }    
    .header nav ul {
        flex-flow: column;
        align-items: normal;
        height: 80%;
        width: 100%;
        /* margin-top: 50px; */
    }
    .btnshine{
        padding: 8px 30px;
        border-radius: 5px;
        height: 35px;
        margin-top: 30px;
    }
    .header nav ul li {
        margin-top: 30px;
    }
    
}

@media screen and (max-width: 660px) {
    /* モバイル向けスタイル */
    .nav_toggle_group {
        width: 60px;
        margin: 0.5rem;
        background-color: rgba(220, 225, 230, 0.5);
        border-radius: 3px;
    }
    .nav_toggle {
        width: 2.5rem;
        height: 2.1rem;
        margin: auto;
        margin-top: 1rem;
    }
    .header .nav {
        width: 100%;
        overflow-y: auto;
    }
    .header nav ul {
        flex-flow: column;
        align-items: normal;
        height: auto;
        width: 100%;
        /* margin-top: 50px; */
    }
    .header nav ul li.has-child ul li{
        padding: 5px 2em;
        margin: 0;
    }
    .header nav ul li.has-child ul li a{
        display: inline-block;
        width: auto;
    }
    .nav_toggle.show i:nth-child(1) {
        transform: translateY(7px) rotate(-45deg);
        background-color: #f0f0f0;
      }
    /* .header nav ul li {
        margin-bottom: 40px;
    } */
    

}

/***** メインコンテンツ *****/

.top {
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.top_wave_filter {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAAXNSR0IArs4c6QAAABJJREFUGFdjZGBgaABhRiABBgAMLQEDCsFpUwAAAABJRU5ErkJggg==
    );
    border-bottom: solid 15px rgba(31, 146, 191, 0.7);
}
.top_wave,.top_wave_filter {
    border-bottom-left-radius: 1400px 700px;
    border-bottom-right-radius: 2000px 800px;
    height: 400px;
    margin-left: -120px;
    margin-right: -100px;
    padding-left: 120px;
    padding-right: 100px;
}
.top_message {
    margin: auto;
    padding-top: 170px ;
    color: #060563;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0px 0px 40px #fff;
}
.top_logo {
    width: 130px;
    margin: auto;
    display: block; 
    filter: drop-shadow(0px 0px 40px #fff);
}
.top h1 {
    font-size: 4rem;
    text-align: center;
    color: #fff;
    font-weight: normal;
}
.top h2 {
    font-size:3.2rem;
    text-align: center;
}
.top h2 br {
    display: none;
}
#video {
    display: none;
}


@media screen and (max-width: 1100px) {
    /* モバイル向けスタイル */
    .top h2 br {
        display: block;
    }
}
@media screen and (max-width: 760px) {
    /* モバイル向けスタイル */
    .top_wave,.top_wave_filter {
        border-bottom-left-radius: 1400px 700px;
        border-bottom-right-radius: 2000px 800px;
        height: 280px;
        margin-left: -120px;
        margin-right: -100px;
        padding-left: 120px;
        padding-right: 100px;
    }
    .top_message {
        padding-top: 130px ;
    }
    .top h1 {
        font-size: 2.8rem;
    }
    .top h2 {
        font-size: 2.4rem;
    }  
}
@media screen and (max-width: 700px) {
    /* モバイル向けスタイル */
    .top_logo {
        width: 100px;
    }    
}
@media screen and (max-width: 500px) {
    /* モバイル向けスタイル */
    .top h1 {
        font-size: 2rem;
    }
    .top h2 {
        font-size: 1.8rem;
    }  
}

/***** 背景ロゴ *****/

.bg_logo_right {
    background-image: url("../images/common/logo2.png");
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 120% 0;
    background-color:rgba(220,225,230,0.7);
    background-blend-mode:lighten;
}
.bg_logo_left {
    background-image: url("../images/common/logo2.png");
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: -20% 0;
    background-color:rgba(220,225,230,0.7);
    background-blend-mode:lighten;
}

/*****  セクションタイトル *****/

.title {
    height: 200px;
    position: relative;
}
.title h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.title h2::before {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -15px;/*線の上下位置*/
    display: inline-block;
    width: 60%;/*線の長さ*/
    height: 1px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: #060563;/*線の色*/
}

@media screen and (max-width: 760px) {
    /* モバイル向けスタイル */
    .title {
        height: 130px;
    }
    .title h2 {
        font-size: 2.0rem;
    }
}

/***** coming soon *****/

.comingsoon {
    font-family: "Apple Chancery";
    font-size: 5rem;
    text-align: center;
    padding: 15% 0;
}
@media screen and (max-width: 1000px) {
    /* モバイル向けスタイル */
    .comingsoon {
        font-size: 3rem;
    }
}
@media screen and (max-width: 600px) {
    /* モバイル向けスタイル */
    .comingsoon {
        font-size: 1.8rem;
    }
}

/***** link_btn *****/

.link_btn_group {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: auto;
    margin-bottom: 100px;
    color: rgba(0, 0, 0, 0.7);
}
.btn_part {
    width: 16vw;
    height: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    text-align: center;
}
.btn_part:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 5px 5px 0px 5px;
}
/*ブログリンク画像*/
.link_btn_blog .btn_part:before { 
    background-image: url(../images/icon/icon_blog.png);
    background-repeat: no-repeat;
    background-size: 38%;
    background-position: 60% 40%;
}
/*ワークライフバランスリンク画像*/
.link_btn_worklife .btn_part:before {
    background-image: url(../images/icon/icon_worklife.png);
    background-repeat: no-repeat;
    background-size: 26%;
    background-position: 50% 30%;

}
/*採用案内リンク画像*/
.link_btn_recruit .btn_part:before {
    background-image: url(../images/icon/icon_recruit.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: 50% 40%;

}
/*会社案内リンク画像*/
.link_btn_company .btn_part:before {
    background-image: url(../images/icon/icon_company.png);
    background-repeat: no-repeat;
    background-size: 37%;
    background-position: 50% 40%;

}
a.btn_part span:before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 33px 33px;
    border-color: transparent transparent rgba(0, 0, 0, 0.7) transparent;
}
.btn_part h4 {
    font-size: 2.4rem;
    margin-top: 130px;
}
a.btn_part:hover {
    background-color: rgba(255, 255, 255, 10);
    transition-duration: 0.5s;
    border-radius: 5px;
    opacity: 1;
}

@media screen and (max-width: 1330px) {
    /* モバイル向けスタイル */
    .btn_part h4 {
        font-size: 2rem;
        margin-top: 100px;
        line-height: 18px;
    }   
}
@media screen and (max-width: 1025px) {
    /* モバイル向けスタイル */
    .btn_part h4 {
        font-size: 1.6rem;
        margin-top: 85px;
    }   
    .link_btn_group p {
        font-size: 1.6rem;
        margin: 15px 30px;
        width: 25vw;
    }
}
@media screen and (max-width: 925px) {
    /* モバイル向けスタイル */
    .link_btn_group {
        width: 90%;
    }    
    .btn_part {
        width: 28vw;
        height: 28vw;
    }
    .btn_part h4 {
        margin-top: 100px;
    }   
    .link_btn_group p {
        font-size: 1.4rem;
        margin: 10px 15px;
    }
    a.btn_part span:before {
        border-width: 0 0 5vw 5vw;
    }
}
@media screen and (max-width: 600px) {
    /* モバイル向けスタイル */
    .btn_part h4 {
        font-size: 1.2rem;
        line-height: 10px;
        margin-top: 45px;
    }   
    .link_btn_group p {
        font-size: 1.2rem;
        margin: 10px;
    }
}

/***** contact *****/ 

.contact {
    width: 70%;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 45px;
    margin: auto;
    text-align: center;
    background-image: url("../images/icon/pole.png"),url("../images/icon/vehicle.png"),url("../images/icon/vehicle.png");
    background-repeat: no-repeat;
    background-position: 20% 100%,80% 100%,90% 100%;
}
.contact h3 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    padding-bottom: 25px;
}
.contact_tell {
    font-size: 2.5rem;
    letter-spacing: 1px;
    padding-bottom: 20px;
}
.contact_time {
    font-size: 2rem;
    letter-spacing: 1px;
    padding-bottom: 30px;
}
.contact_btn a {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    width: 300px;
    margin: auto;
    background-color: #ffc436;
	border-radius: 10px;
    line-height: 20px;
}
.contact_btn a:hover {
    background-color: #ffc436;
    opacity: 1;
}

@media screen and (max-width:1000px) {
    /* タブレット向けスタイル　*/
    .contact {
        padding-bottom: 110px;
        background-position: 22% 100%,60% 100%,85% 100%;
    }
}
@media screen and (max-width:760px) {
    /* モバイル向けスタイル　*/
    .contact h3 {
        font-size: 2.2rem;
        padding-bottom: 10px;
        letter-spacing: 1px;
    }
    .contact_tell {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    .contact_time {
        font-size: 1.2rem;
        padding-bottom: 20px;
    }
    .contact_btn a {
        font-size: 1.4rem;
        color: #fff;
        width: 100%;
        max-width: 250px;
        border-radius: 5px;
    }
    .btnshine{
        padding: 8px 10px;    
        height: 40px;
    }
}
@media screen and (max-width:475px) {
    .contact {
        padding-bottom: 70px;
        background-size: 10%, 15%, 15%;
    }
    .btnshine{
        height: 40px;
    }


}

/***** footer *****/

.footer {
    width: 100%;
    height: 800px;
    margin: auto;
    overflow: hidden;
    position: relative;
    background-image: url("../images/footer.jpeg");
    background-size: cover;
    color: #fff;
}
.footer_filter {
    background-color: rgba(0, 13, 76, 0.5);
    height: 800px;
    position: relative;
}
.footer_wave {
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: auto;
    background-image: url("../images/footer.png");
    background-size: cover;
}
.nav-group {
    display: flex;
    justify-content:space-between;
    width: 88%;
    margin: auto;
    overflow: hidden;
}
.footer nav {
    display: flex;
    /* width: 70%; */
    margin-top: 380px;
}
.footer nav div {
    margin-right: 50px;
}
.footer nav div p {
    font-size: 2rem;
}
.footer nav div ul {
    margin-top: 45px;
}
.footer nav div ul li {
    margin-top: 25px;
}
.footer img {
    margin-top: 400px;
    width: 90%;
}
.copyright {
    position: absolute;
    right: 8%;
    bottom: 10%;
}

@media screen and (max-width:930px) {
    /* タブレット向けスタイル　*/
    .footer {
        height: 400px;
    }
    .footer_filter {
        height: 400px;
    }
    .footer_wave {
        height: 600px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .footer .nav-group {
        width: 70%;
        height: 350px;
        align-items: end;
    }
    .footer .nav-group ul {
        display: none;
    }
    .footer nav {
        flex-flow: column;
        margin-top: 10%;
    }
    .footer nav div p {
        font-size: 1.4rem;
    }
    .footer .nav-group p {
        margin-bottom: 16px;
    }
}
@media screen and (max-width:650px) {
    /* モバイル向けスタイル　*/
    .footer .nav-group {
        height: 320px;
    }
}

/***** Topへ戻る *****/ 

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
    background-color: rgba(220, 225, 230, 0.7);
    border: 1px solid #363636;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #363636;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.2rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
    color: #fff;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 50px;
	bottom:20px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (max-width:630px) {
    /* モバイル向けスタイル　*/
    #page-top a{
        display: flex;
        justify-content:center;
        align-items:center;
        background-color: rgba(220, 225, 230, 0.7);
        border: 1px solid #363636;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        color: #363636;
        text-align: center;
        text-transform: uppercase; 
        text-decoration: none;
        font-size:0.8rem;
        transition:all 0.3s;
    }    
    #page-top {
        position: fixed;
        right: 20px;
        bottom:20px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }    
}
