@charset "UTF-8";
/* CSS Document */


* {
margin: 0;
padding: 0;
border: none;
font-size: 100%;
font-weight: normal;
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
vertical-align: baseline;
box-sizing: border-box;
}
ul li{
	list-style: none;
}

.wrapper{
	overflow: hidden;
	font-size: 1vw;
}
.wrapper p{
    line-height: 1.8em;
}
/*header*/
header{
    display: flex;
	justify-content: space-between;
    background: rgba(1,21,56,0.45); 
    align-items: center;
    height: 70px;
}
/*ドロップダウンメニュー */

ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}

/* 本文をメニューの高さ分下げる */
#main {
  margin-top: 60px;
}
#navi {
  top: 0;
  left: 0;
  width: 100%;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
h1{
    width: 20%;
    margin-left: 2%;
}
h1 img{
    width: 100%;
}
/* 上部メニュー */
.header_inr{
    width: 70%;
}
.menu {
    display: flex;
    justify-content:space-around;
}
.menu-parent {
  line-height: 2.5em;
  font-size: 16px;
  white-space: nowrap;
}


/* Vの色 */
.fas{
    color: #fff;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}
.menu-parent a{
    color: #fff;
}
.line:hover{
  color: #fff;
  text-decoration:none;
}
.line{
  display: inline-block;
  color:#fff;
  font-size:16px;
  text-decoration:none;
  position: relative;
  transition: .3s;
}
.line::after{
  position: absolute;
  bottom: .3em;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: .3s;
}
.line:hover::after{
  bottom: 0;
  opacity: 1;
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
/* お問い合わせボタン */
.head_contact{
    font-size: 14px;
    font-weight: 900;
    display: inline-block;
    background: #fff;
    color: #011538;
    border-radius: 30px;
    padding: 0 35px;
}
.head_contact img{
    vertical-align: middle;
    margin-right: 5px;
}
.head_contact:hover{
    background: #8DB0EF;
    transition: .3s;
}
.sns_ico img{
    width: 40px;
    height: 40px;
    vertical-align: middle;
    padding-right: 10px;
}
.sns_ico img:last-child{
    margin-right: 0;
}
@media screen and (max-width: 1050px) {
    h1{
    width: 40vw;
}
    h1 img{
        width: 100%;
    }
    header{
        background-image: linear-gradient(82deg, rgba(19, 63, 113, 100), rgba(1, 21, 56, 100) 38%);
    }
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
      background: #011538;
      width: 100%;
      margin-top: 65px;
      position: relative;
      z-index: 500;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 5px 20px;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
.line::after{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 0;
  background-color: #fff;
  opacity: 0;
  transition: 0;
}
/* お問い合わせボタン */
.head_contact{
    font-size: 16px;
    font-weight:normal;
    display: inline-block;
    background: none;
    color: #fff;
    border-radius: 0px;
    padding: 0;
}
.head_contact img{
    display: none;
    margin-right: 0px;
}
.head_contact:hover{
    background-color: transparent;
    transition: 0;
}
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .sp-link{
    display: block;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -20px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 20px;
    background-color: #011538;
    color: #fff;
    z-index: 1000;
}
.menu-parent .menu-child a{
    text-decoration: none;
}
.menu-parent .menu-child a:hover{
    color: #8DB0EF;
    
}
/* パソコン用 */
@media screen and (min-width: 1050px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 1050px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    position: relative;
    padding: 0 20px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent .menu-child a{
      text-decoration: none;
    }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 14px;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}


/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1050px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
      z-index: 10000;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 35px;
    height: 2px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:19px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}
/*ボタン(青)*/
a.btn_paint span:after {
    content: "＋";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position:absolute;
    right: 2rem;
}
a.btn_paint {
	display: block;
	text-align: left;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
	margin: auto;
	padding: 1rem 2rem;
	color: #fff;
    font-size: 1vw;
	font-weight: bold;
	background: #011538;
	position: relative;
	transition: 0.3s ease-in-out;
}
a.btn_paint:hover {
    background: #fff;
    color: #011538;
}
a.btn_paint:before, a.btn_paint:after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
a.btn_paint:before {
  top: 0;
  left: 0;
}
a.btn_paint:after {
    bottom: 0;
    right: 0;
}
a.btn_paint:hover:before, a.btn_paint:hover:after {
  width: 100%;
  height: 100%;
}
a.btn_paint:hover:before {
  border-top-color: #011538;
  border-right-color: #011538;
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
a.btn_paint:hover:after {
  border-bottom-color: #011538;
  border-left-color: #011538;
  transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}

/*ボタン(白)*/
a.btn_paint_white span:after {
    content: "＋";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position:absolute;
    right: 2rem;
}
a.btn_paint_white {
	color: #fff;
  font-size: 1vw;
  font-weight: bold;
  background: transparent;
  text-align: center;
  line-height: 3em;
  border: 2px solid #fff;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
    text-decoration: none;
}
a.btn_paint_white:before,
a.btn_paint_white:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease .3s;
}
a.btn_paint_white:before {
  right: -3em;
  border-right: 3em solid transparent;
  border-bottom: 3.2em solid #fff;
  transform: translateX(-100%);
}
a.btn_paint_white:after {
  left: -3em;
  border-left: 3em solid transparent;
  border-top: 3.2em solid #fff;
  transform: translateX(100%);
}
a.btn_paint_white:hover {
  color: #011538;
}
a.btn_paint_white:hover::before {
  transform: translateX(-49%);
}
a.btn_paint_white:hover::after {
  transform: translateX(49%);
}

/* ---- foot_contact ---- */
.foot_contact{
    margin-top: 10%;
    background: url("../img/common/footer_bg.jpg") no-repeat center bottom;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 5%;
}
.foot_contact h2{
    width: 100%;
    height: auto;
    font-size: 3vw;
    color: #fff;
    text-align: center;
    font-weight: 900; 
    padding-top: 5%;
}
.foot_contact h2 span{
    display: block;
    font-size: 1.25vw; 
}
.included_text{
    text-align: center;
    color: #fff;
    margin: 3% 0;
}
.foot_contact_container{
    width: 60%;
    margin: 0 auto;
    background: rgba(255,255,255,0.7);
    padding: 5% 10%;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.foot_contact_container h3{
    color: #011538;
    font-size: 1vw;
    font-weight: 900;
    margin-bottom: 2%; 
    
}
.foot_contact_container p{
    text-align: center;
    color: #011538;
}
.foot_contact_btn a.btn_paint{
    top:1vw;
}
.foot_phone_number{
    margin-top: 10%;
    font-size: 2em;
    font-weight: 900;
}
.foot_phone_number:before{
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;  
}
.foot_tel a{
    color: #011538;
    text-decoration: none;
    font-weight: bold;
}

/*footer*/

footer{
    margin-top: -10%;
	padding-bottom: 1%;
     background-image: linear-gradient(180deg, rgba(1, 21, 56, 1), rgba(19, 63, 113, 1) 100%);
	padding-top: 5%;
    z-index:-20;
    color: #fff;
}
.footer_top,.footer_middle{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 3% 10%;
    line-height: 2em;
}
.footer_top{
    font-size: 1.2vw;
}
.footer_middle .indent:before{
    content: "-";
}
.footer_middle .indent{
    text-indent: 1em;
}
.footer_btm{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 3% 10%;
    line-height: 2em;
    
}
.footer_tel:before{
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;    
}
.footer_fax:before{
    content: "\f1ac";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;    
}
.company_name{
    width: 25%;
}
footer .sns_ico{
    padding-top: 5%;
}
.footer_btm small{
    display: block;
    font-size: 0.7vw;
    text-align: right;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    color: #8DB0EF;
    text-decoration: underline;
    transition: 0.3s;
}

@media screen and (max-width: 1400px) {
    .foot_contact_container{
    width: 80%;
}
.footer_top,.footer_middle,.footer_btm{
    width: 90%;
    padding: 3% 5%;
}
}
@media screen and (max-width: 1050px) {
    a.btn_paint,a.btn_paint_white {
        font-size: 14px;
    }
    .foot_contact_container{
    width: 90%;
    }
    .foot_contact h2{
        font-size: 4vw;
    }
    .foot_contact h2 span{
    font-size: 2vw; 
}
    .included_text{
        width: 90%;
        margin: 3% auto;
        font-size: 14px;
    }
    .foot_contact_container h3{
        font-size: 1.8em;
    }
    .foot_contact_container p{
        font-size: 14px;
}

.foot_phone_number{
    font-size: 25px!important;
    font-weight: 900;
}
    footer{
    margin-top: 0%;
}
    .footer_top{
    font-size: 16px;
        padding: 3% 0%;
}
    .footer_middle,.footer_btm{
        font-size: 14px;
        padding: 3% 0%;
    }
    .company_name{
    width: 40%;
}
}
@media screen and (max-width: 630px) {
    .foot_contact_container{
        flex-direction:column;
    }
    .included_text{
        font-size: 14px;
    }
    .foot_contact_btn{
        width: 60%;
        margin: 0 auto;
    }
    .foot_contact_container h3{
        font-size: 16px;
    }
    .foot_contact_container p{
        font-size: 14px;
}
    .foot_tel{
        margin-top: 10%;
    }
    .foot_phone_number{
    margin-top: 2%;
}
        .footer_top{
        width: 90%;
        flex-wrap:wrap;
        justify-content: space-between;
    }
    .footer_top,.footer_middle{
        width: 100%;
        flex-wrap:wrap;
        justify-content: space-between;
        text-align: left;
    }
    .footer_top li{
        text-align: center;
    }
    .footer_top li,.footer_middle li{
        width: 50%;
        margin: 0 auto;
    }
    .footer_btm{
        flex-direction:column;
        text-align: center;   
    }
    .add{
        padding-bottom: 5%;
    }
    .add,.company_name{
        width: 90%;
        margin: 0 auto;
}
    .footer_btm small{
        font-size: 12px;
    }
    .particles_wrap{
        position:static;
}
}
@media screen and (max-width: 560px) {
h1{
    width: 80vw;
    margin-left: 5%;
}
        .foot_contact_btn{
        width: 100%;
        margin: 0 auto;
    }

 
    .footer_top,.footer_middle{
        flex-direction:column;
        text-align: left;  

    }
         .footer_top li,.footer_middle li{
        width: 90%;
        margin: 0 auto;
             border-bottom: 1px dashed #fff;
             padding: 2% 0
    }
    .footer_top li:last-child,.footer_middle li:last-child{
        border-bottom: none;
    }
    
    
    
    /* 
 .footer_top,.footer_middle{
        display: none;
    }*/
    .footer_btm small{
        text-align: center;
    }

}
@media screen and (max-width: 400px) {
      .menu {
      margin-top: 60px;
  }

}
.grecaptcha-badge { visibility: hidden; }
/* ---- particles.js container ---- */

.particles_wrap{
    position:relative;
    height: auto;
    width: 100%;
}
canvas{
	position:absolute;
	top:0;
	right:0;
	z-index:-2;
}

