@charset "UTF-8";

html {
  font-size: 62.5%;
}


*,
*::before,
*::after,
h1 {
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  margin: 0;
}

p {
  line-height: 1.6;
  font-size: 1.6rem;
}

body {
  width: 100%;
  max-width: 1440px;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin: 0 auto;
  transition: 0.3s;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

/*================================header================================*/

.header{
  position: fixed;
  z-index: 999;
  width: 100%;
  max-width: 1440px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.header-top{
  height: 40px;
  line-height: 40px;
  background-color: #016EDD;
  color: #fff;
  padding: 0 5%;

}

.header-top ul{
  float: right;
}

.init-bottom,
.menu__second-level a{
  font-size: 1.5rem;
}

.header-top ul li{
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  transition: 0.3s;
}

.header-top ul a{
  margin-left: 30px;
}

.header-top ul li:hover{
  color: #000;
}

.header-bottom{
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  text-align: center;
}

.logo-div{
  height: 60px;
  line-height: 82px;
}

.logo{
  width: 180px;
}

.menu-div{
  width: 100%;
}

.menu {
  position: relative;
  width: 100%;
  height: 60px;
  max-width: 1000px;
  margin-left: 8%;
}

.menu > li {
  float: left;
  width: 16%; /* グローバルナビ4つの場合 */
  height: 60px;
  line-height: 60px;
  /* background: rgb(29, 33, 19); */
}

.menu > li a {
  display: block;
  color: #000;
}

.menu > li a:hover {
  color: #fff;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.menu > li:hover {
  background: #016EDD;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.menu__second-level li {
  border-top: 1px solid #111;
}

.menu__second-level li a{
  color: #fff;
}

.menu__second-level li a:hover {
  background: #111;
}

/* floatクリア */
.menu:before,
.menu:after {
  content: " ";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

.menu > li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #016EDD;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  padding: 0;
}

li.menu__single:hover ul.menu__second-level {
  top: 60px;
  visibility: visible;
  opacity: 1;
}

.hamburger,
.globalMenuSp{
  display: none;
}

/*================================ MV ================================*/
.mv {
  text-align: right;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@keyframes slideshow {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}

.mv img {
  width: 90%;
  height: 100vh;
  object-fit: cover;  /* 横幅は画面サイズにあわせて伸縮します */
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  opacity: 0;
  animation :slideshow 32s linear infinite;
}

.mv img:nth-child(2){
  animation-delay: 8s;
}

.mv img:nth-child(3){
  animation-delay: 16s;
}
 
.mv img:last-child{
  animation-delay: 24s;
}

.catchcopy{
  text-align: left;
  position: absolute;
  top: 35%;
  left: 4%;
  color: #000;
}

.title-p{
  margin-bottom: 5px;
  font-size: 5rem;
}

.title-p-span{
  background-color: #fff;
  letter-spacing: 8px;
  font-weight: 600;
}

.blue-p{
  color: #016EDD;
}

/*================================ About ================================*/
.about{
  display: flex;
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
  justify-content: space-around;
}

.about-left{
  text-align: left;
  width: 50%;
  margin: 0 5%;
}

.about-title{
  font-size: 2.6rem;
  line-height: 1.4;
  /* color: #016EDD; */
  letter-spacing: 3px;
}

.about-p{
  font-size: 1.6rem;
  width: 460px;
  padding: 30px 0;
  letter-spacing: 1px;
  line-height: 1.8;
}

.about-btn{
  font-size: 1.6rem;
  padding: 20px;
  display: inline-block;
  border: 1px solid #016EDD;
  color: #016EDD;
  transition: 0.3s;
}

.about-btn:hover{
  background-color: #016EDD;
  color: #fff;
}

.yazirusi {
  display: inline-flex;
} 
.yazirusi::after {
  content: '';
  width: 45px;
  height: 8px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
  margin-left: 15px;
}

.about-right{
  width: 50%;
}

.about-right img{
  width: 100%;
}

/*================================ Service ================================*/
.service{
  background-color: #E8EDF5;
  padding: 80px 0;
}

.service-inner{
  width: 80%;
  margin: 0 auto;
}

.section-sub-title{
  font-size: 1.6rem;
  padding-bottom: 10px;
}

.section-main-title{
  color: #016EDD;
  font-size: 3.4rem;
  letter-spacing: 1px;
  padding-bottom: 50px;
}

.service-box{
  position: relative;
  margin-bottom: 100px;
}

.service-box-img{
  width: 60%;
}

.service-img{
  width: 100%;
}

.service-box-text{
  width: 480px;
  position: absolute;
  background-color: #fff;
  padding: 4% 3%;
  bottom: -8%;
  right: 8%;
}

.service-h3{
  font-size: 2.4rem;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.border{
  width: 80px;
}

.service-p{
  font-size: 1.6rem;
  padding: 30px 0;
  line-height: 1.8;

}

.service-a{
  font-size: 1.6rem;
  color: #016EDD;
  transition: 0.3s;
}

.service-a:hover .arrow-long{
  margin-left: 35px;
}

.arrow-long{
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 3px;
  width: 80px;
  transition: 0.5s;
}

.service-box-2nd{
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  margin-bottom: 100px;
}

.service-box-3rd{
  /* margin-bottom: 0 !important; */
}

.service-box-text-2nd{
  width: 480px;
  position: absolute;
  background-color: #fff;
  padding: 4% 3%;
  bottom: -8%;
  left: 8%;
}

/*================================ Office ================================*/
.office{
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}

.office-flex{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.office-box{
  text-align: center;
  width: 30%;
}

.office-img{
  width: 100%;
}

.office-img-a{
  transition: 0.3s;
}

.office-img-a:hover{
  opacity: 0.8;
}

.office-place{
  font-size: 2rem;
  color: #016EDD;
  padding: 10px 0;
}

.office-address{
  font-size: 1.6rem;
}

/*================================ News ================================*/
.news{
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}

.news-wrapper{
  padding-bottom: 50px;
  margin: 0 auto;
}

.article{
  display: block;
  width: 100%;
  /* height: 80px; */
  line-height: 80px;
  background-color: #fff;
  margin: 0px auto 2px;
  padding: 0px 20px;
  font-size: 1.4rem;
  color: #333;
  border-radius: 1px;
	box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
	transition: .3s;
}

.article:hover {
	box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
	transform: translateX(8px);
}

.article-component{
  font-size: 1.6rem;
  display: inline-block;
  /* line-height: 80px; */
}

/* .category{
  background-color: #E35FD6;
  color: #fff;
  font-size: ;
  letter-spacing: 1px;
  line-height: 20px;
  margin-right: 10px;
  padding: 0 30px;
} */

.date{
  color: #016EDD;
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 2px;
  margin-right: 50px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.arrow{
  position: relative;
  display: inline-block;
  padding-right: 20px;
  float: right;
}

.arrow::before{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1.5px #016EDD;
  border-right: solid 1.5px #016EDD;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  margin-top: 35px;
}

.news-btn-wrapper{
  text-align: right;
}

.news-button{
  display: inline-block;
  padding: 15px 80px;
  font-size: 1.6rem;
  background-image: linear-gradient(90deg, #20BDFF,#5433FF);
  color: #fff;
  transition: 0.3s;
  box-shadow: 0px 3px 4px rgba(0,0,0,0.2);
}

.news-button:hover{
  opacity: 0.8;
}

/*================================ Recruit ================================*/
.recruit{
  text-align: center;
  color: #fff;
}

.recruit-bg{
  background-image: url(img/recruit.png);
  background-size: cover;
  padding: 60px 5%;
}

.recruit-sub-title{
  font-size: 1.6rem;
  padding-bottom: 10px;
}

.recruit-main-title{
  color: #fff;
  font-size: 3.4rem;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.recruit-p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding-bottom: 50px;
}

.recruit-btn-wrapper{
  width: 40%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

.recruit-btn{
  text-align: left;
  font-size: 1.6rem;
  width: 40%;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

.recruit-btn:hover{
  opacity: 0.6;
}

.recruit-btn-a{
  color: #fff;
  display: inline-block;
}

.triangle1{
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-top: 5px;
}

/*================================ Company ================================*/
.company{
  background-color: #E8EDF5;
  padding: 80px 0;
}

.company-inner{
  width: 80%;
  margin: 0 auto;
}

.company-box-wrapper{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.company-box{
  text-align: center;
  width: 30%;
  background-color: #fff;
  border-radius: 3px;
  padding: 30px;
  color: #000;
	transition: 0.3s;
}

.company-box:hover{
  box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
	transform: translateY(-4px);
}

.company-icon{
  width: 80px;
  padding-bottom: 20px;
}

.company-p{
  font-size: 1.8rem;
}

/*================================ Contact ================================*/
.contact{
  text-align: center;
  color: #fff;
}

.contact-bg{
  background-image: url(img/contact.png);
  background-size: cover;
  padding: 60px 5% 80px;
}

.contact-sub-title{
  font-size: 1.6rem;
  padding-bottom: 10px;
}

.contact-main-title{
  font-size: 3.4rem;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.contact-p{
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.tel-form-wrapper{
  display: flex;
  justify-content: space-around;
  width: 70%;
  margin: 0 auto;
}

.contact-tel{
  text-align: right;
}

.phone{
  width: 30px;
  margin-right: 10px;
}

.tel-number{
  color: #fff !important;
  font-size: 3.4rem;
  letter-spacing: 1px;
}

.tel-time{
  font-size: 1.4rem;
}

.contact-mail{
  font-size: 1.6rem;
  color: #fff;
  padding: 20px;
  background-image: linear-gradient(90deg, #f7b733,#fc4a1a);
  width: 300px;
  height: 60px;
  margin-top: 15px;
  transition: 0.3s;
}

.contact-mail:hover{
  opacity: 0.8;
}

/*================================ Footer ================================*/
.footer{
  /* background-color: #000; */
  padding: 60px 0 10px;
  border-top: 1px solid lightgray;
}

.footer-inner{
  width: 70%;
  margin: 0 auto 50px;
  color: #000;
  display: flex;
  justify-content: space-between;
}

.footer-inner-sp{
  display: none;
}

.footer-inner ul{
  padding: 0;
}

.footer-inner ul a{
  color: #000;
  font-size: .slide {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
   
  .slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  };
}

.footer-inner ul li{
  margin-bottom: 18px;
  transition: 0.3s;
}

.footer-inner ul li:hover{
  opacity: 0.6;
}

.footer-banners{
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto 50px;
}

.footer-banner{
  transition: 0.3s;
  margin: 0 1%;
}

.footer-banner:hover{
  opacity: 0.8;
}

.footer-banners div{
  display: inline-block;
}

.footer-banners img{
  width: 160px;
  border: 1px solid #ccc;
}

.happy-img{
  width: 100px !important;
}

.copyright{
  color: #000;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
}