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

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  width: 100%;
    position: fixed;  /* 位置を固定する */
  top: 0;  /* 固定する位置を指定 */
  left: 0;  /* 固定する位置を指定 */
  background: #fff;  /* 背景色 */
  z-index: 100000;
}
.headet-menu-nav {
  display: none;
}
.header > a > img {
  position: absolute;
  object-fit: cover;
  height: 32px;
  margin: -13px 0 0 20px;
  display: block;
  text-align: left;
}
.heater-btn_offical {
  display: none;
}


.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation {
  display: none;
  background: linear-gradient(180deg, #abcff7, #ffffff);
  position: absolute;
  top: 64px;
  width: 100%;
  height: 600px;
  z-index: 9999;
  overflow-y: scroll;
}
.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation__list-item {
  border-bottom: solid 1px #ffffff;
}
.navigation__list-item:first-child {
  border-bottom:solid 1px #ffffff;
}
.navigation__link {
  
 font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 30px 60px 30px 15px;
  transition: .5s;
  text-align: left
}
.navigation-inner{
  margin: 50px 70px;
}
 a.heater-btn_offical-inner {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 150px;
    margin: 50px auto;
    padding: 1.7rem 4rem;
    font-weight: bold;
    border: 2px solid #27acd9;
    color: #27acd9;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  a.heater-btn_offical-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(39, 172, 217);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
  }
  a.heater-btn_offical-inner:hover::before {
    transform: translateX(0);
  }
  a.heater-btn_offical-inner:hover {
    color: #fff;
  }
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}
@media(min-width:1040px) {
  .header {
    height: 80px;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
  }
  .headet-menu-nav {
    display: block
  }
  
  
/*  ナビゲーション*/
  
 .headet-menu-nav{
  background:#ffffff;
  color:#fff;
  text-align: center;
}

nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul ul{
  display: block;
}


nav ul li{
  position: relative;
}


.headet-menu-nav ul li a{
  display: block;
  text-decoration: none;
  color: #042950;
  padding:20px 35px;
  transition:all .3s;
  font-weight: 600;
}

.headet-menu-nav ul li li a{
  padding:10px 5px;
}
nav ul li a:hover{
  color:#27acd9; 
}




nav ul li.has-child::before{
  content:'';
  position: absolute;
  left:15px;
  top:25px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

nav ul ul li.has-child::before{
  content:'';
  position: absolute;
  left:6px;
  top:17px;
  width:6px;
  height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}


nav li.has-child ul{
   
  position: absolute;
  left:0;
  top:62px;
  z-index: 4;
   
  background:rgba(255, 255, 255, 0.8);
  width:620px;
   
  visibility: hidden;
  opacity: 0;
 
  transition: all .3s;
  padding: 40px 20px;
  border-radius: 20px
}


nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}


nav li.has-child ul li a{
  color: #fff;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
  color:#3577CA;
}



nav li.has-child ul ul{
  top:0;
  left:182px;
  color:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
  color:#448ED3;
}



@media screen and (max-width:768px){
  nav{
    padding: 0;
  }
  
  nav ul{
    display: block;
  }
  
  nav li.has-child ul,
  nav li.has-child ul ul{
    position: relative;
  left:0;
  top:0;
  width:100%;
  visibility:visible;
  opacity:1;
  display: none;
  transition:none;
}
  
nav ul li a{
  border-bottom:1px solid #ccc;
}



nav ul li.has-child::before{
  left:20px;  
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
  left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}

  .about-nav_title{
    font-size: 2.4rem;}
  
  
  .nav-list-inner{
    margin: 50px;
  }
  .nav-contents{
    display: flex;
        flex-direction: column;
  }
  .nav-contents span{
        color: #4d7eb1;
    font-size: 1.8rem;
    font-family: Open sans;
    font-weight: 600;
    font-style: italic;
    display: inline-block;
   
  }
  
  
  .about-img{
    object-fit: cover;
     object-position: 80% 50%;
    width: 40%;
    margin: 118px 10px 10px ;
  border-radius: 10px;
  }
  
  .workstyle-img{
     object-fit: cover;
     object-position: 90% 50%;
    width: 40%;
    height: 240px;
    margin:140px 10px 10px;
        border-radius: 10px;
  }
  
  .has-child ul {
    display: flex
  }
  
  
  

.about-list_image, .workstyle-list_image, .people-list_image, .entry-list_image {
  width: 20px;
  height: 20px;
}
.about-list, .workstyle-list, .people-list, .entry-list {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin:10px 0;
  list-style: none;
  font-weight: 600;
  color: #042950
}
.btnlinestretches4{
	position:relative;
	color:#333;
	display:inline-block;
    text-decoration: none;
    outline: none;
}


.btnlinestretches4::before,
.btnlinestretches4::after{
	content:'';
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;   
	background:#929292;
	width:100%;
	height:2px;
	transition:all 0.3s ease-in-out;
}
  
.btnlinestretches4::after{
	width:0;
	background:#ccc;
}

  
.btnlinestretches4:hover::after {
	width:100%;
}
 .section-about ul li a, .section-workstyle ul li a, .section-people ul li a, .section-entry ul li a {
    list-style: none;
    font-size: 1.8rem;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .hamburger-menu{
    display: none
  }
  .header-nav {
    display: block;
    text-align: right;
    margin-right: 50px
  }
  .header-nav ul li {
    display: inline-block;
    margin-top: 20px;
    margin-left: 30px;
  }
  .header-nav ul li a {
    font-size: 1.5rem;
    font-weight: 600;
  }
   .header>a>img {
    height: 40px;
    margin: -18px 50px 0;
  }
  .btn_offical {
    display: block;
  }
  a.heater-btn_offical {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 150px;
    margin-top: 5px;
    margin-right: 50px;
    padding: 1.7rem 4rem;
    font-weight: bold;
    border: 2px solid #27acd9;
    color: #27acd9;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  a.heater-btn_offical::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(39, 172, 217);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
  }
  a.heater-btn_offical:hover::before {
    transform: translateX(0);
  }
  a.heater-btn_offical:hover {
    color: #fff;
  }
  .heater-content {
    display: flex;
    justify-content: flex-end;
    width: 1390px
  }
}

アコーディオン

.s_01 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
  color: #042950;
  font-weight: bold;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  font-size: 16px;
    text-align: left;
    padding: 30px 60px 30px 15px;
    border-bottom: solid 1px #FFFFFF;
}


.s_01 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  box-sizing: border-box;

}
.s_01 .accordion_one .accordion_inner .box_one {
  height: 100px;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  line-height: 2.5;
  text-align: left;
  font-size: 1.3rem

  
}














 main {
    background: linear-gradient(180deg, #abcff7,  #ffffff, #ffffff);
  }

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}





 .section-people {
  width: 100%;
  height: 400px;
  background-image: url("../images/interview-img-sp.png");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: relative;
   margin-top: 60px
}
.section-people_title {
  color: #4d7eb1;
  font-size: 1.3rem;
  font-family: Open sans;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  display: inline-block;
  margin: 50px 0 10px 24px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}
.section-people h1{
  margin-left: 24px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  font-size: 2.4rem
}
.section-people p {
  margin-left: 24px;
  margin: 40px 24px;
  line-height: 2.4rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}
@media(min-width: 480px) {
  .section-people {
    background-image: url("../images/interview-img-pc.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: relative;
    height: 700px;
    margin-bottom: 80px;
  }
  .section-people_img {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
  }
  .section-people_title {
   
    margin-top: 150px;
    font-size: 2rem;
    margin-bottom: 10px;
    
  }
  .section-people h1 {
    font-size: 3.2rem
  }
  .section-people p {
    font-size: 2.4rem;
    line-height: 4.6rem;
    
  }
}



.MN-wrapper{
  position: relative
}

.MN-img{
  display: block;
  object-fit: cover;
  width: 340px;
  border-radius: 30px;
  margin: 0 10px 0 auto;
  text-align: center;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
}
.interview-contents_MN{
  max-width:70%;
  background-color: #ffffff;
  padding: 50px 24px;
  position: absolute;
  top:220px;
  border-radius: 30px;
  margin: 0 auto 0 10px;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
  
}
.interview-contents_MN h3{
  font-size: 1.2rem;
  color: #4d7db0;
}

.interview-contents_MN p{
  margin: 20px 0;
  line-height: 1.5
}
.interview-contents_MN span{
  font-size: 1.2rem
}
.interview-text{
  margin-top: 300px
}

.faq_q{
  color: #276eb8;
  margin-bottom: 10px;
    display: flex;
  line-height: 1.5
}
.faq_q:before {
  content: "Q.";
  display: block;
  color: var(--accent-color);
  font-size: var(--v-rythm);
  margin-right: 1rem;
}
.faq_a{
  display: flex;
  line-height: 1.8;
}
.faq_a:before {
  content: "A.";
  display: block;
  color: var(--accent-color);
  font-size: var(--v-rythm);
  margin-right: 1rem;
}
.interview-text_faq{
  margin: 50px 24px;
}

.GN-wrapper{
  position: relative
}
.GN-img{
  display: block;
  object-fit: cover;
  width: 340px;
  border-radius: 30px;
  margin: 0 auto 0 10px;
  text-align: center;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3);
}
.interview-contents_GN{
  max-width:100%;
  background-color: #608fc3;
  color: #ffffff;
  padding: 50px 24px;
  position: absolute;
  top:220px;
  left: 70px;
  border-radius: 30px ;
  display: block;
  margin: 0 10px 0 auto;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
 
}
.interview-contents_GN h3{
  font-size: 1.2rem;
  
}

.interview-contents_GN p{
  margin: 20px 0;
  line-height: 1.8
}
.interview-contents_GN span{
  font-size: 1.2rem
}




.FH-wrapper{
  position: relative
}

.FH-img{
  display: block;
  object-fit: cover;
  width: 340px;
  border-radius: 30px;
  margin: 0 10px 0 auto;
  text-align: center;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3);
}
.interview-contents_FH{
  max-width:70%;
  background-color: #ffffff;
  padding: 50px 24px;
  position: absolute;
  top:220px;
  border-radius: 30px;
  border:solid 1px #4d7db0;
  margin: 0 auto 0 10px;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
  
  
}

.interview-contents_FH h3{
  font-size: 1.2rem;
  color: #4d7db0;
}

.interview-contents_FH p{
  margin: 20px 0;
  line-height: 1.8
}
.interview-contents_FH span{
  font-size: 1.2rem;

}
.interview-text{
  margin-top: 300px
}
@media(min-width: 1040px) {
  .section-interview {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
  }
  .MN-img{
    width: 510px
  }
  .interview-contents_MN p {
    width: 600px;
  }
  .interview-contents_MN {
    top:290px
  }
  .interview-contents_MN h3,.interview-contents_GN h3,.interview-contents_FH h3{
  font-size: 1.4rem;
}

.interview-contents_MN p,.interview-contents_GN p,.interview-contents_FH p{
  font-size: 1.8rem
}
.interview-contents_MN span,.interview-contents_GN span,.interview-contents_FH span{
  font-size: 1.4rem;
  line-height: 1.8
}
  .interview-text{
    margin-top: 260px;
    margin-bottom: 100px
  }
  .interview-text_faq {
    margin-top: 50px;
  }
  .interview-contents_GN {
    top:280px;
    left: 440px
  }
  .GN-img{
    width: 520px
  }
   .FH-img{
    width: 510px
  }
  .interview-contents_FH p {
    width: 600px;
  }
  .interview-contents_FH {
    top:290px
  }
}



  .footer {
  margin-bottom: 50px;
}
.section-footer_img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
  background-image: url("../images/footer-msg-img.png");
  background-position: center;
  background-size: auto 100%;
  position: relative;
  margin-top: 50px;
  
}
.section-footer_img p {
  width: 70%;
  margin: 0 auto;
  color: #FFF;
  line-height: 35px;
  padding-top: 130px;
}
.section-fotter_btn {
  position: absolute;
  top: 300px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
a.btn_sinnsotu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 180px;
  margin: 10px auto;
  padding: 2rem 4rem;
  font-weight: bold;
  background: #2361a3;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
a.btn_sinnsotu::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #fff;
}
a.btn_sinnsotu::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #fff;
}
a.btn_sinnsotu:hover {
  background: #2361a3;
  color: #fff;
}
a.btn_tyuuto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 180px;
  margin: auto;
  padding: 2rem 4rem;
  font-weight: bold;
  background: #fff;
  color: #2361a3;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
a.btn_tyuuto::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #2361a3;
}
a.btn_tyuuto::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #2361a3;
}
a.btn_tyuuto:hover {
  background: #fff;
  color: #2361a3;
}
@media(min-width: 480px) {
  .section-footer_img {
    background-image: url("../images/footerimg.png");
    height: 750px;
  }
  .section-fotter_btn {
    top: 485px;
  }
  .section-footer_img p {
    width: 40%;
    padding-top: 270px;
  }
}
@media(min-width: 1040px) {
  .section-footer_img p {
    width: 60%;
    padding-top: 270px;
    font-size: 2.6rem;
    line-height: 66px;
  }
  .section-fotter_btn {
    position: absolute;
    top: 285px;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1550px
  }
  a.btn_sinnsotu {
    width: 240px;
    margin: 0 230px 0 auto;
    padding: 3rem 6rem;
    font-size: 2.4rem;
  }
  a.btn_tyuuto {
    width: 240px;
    margin: 30px 230px 0 auto;
    padding: 3rem 6rem;
    font-size: 2.4rem;
  }
}
.footer-nav ul {
  display: none;
}
.nav-content-01 {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}
.nav-content-02 {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.footer-nav {
  display: flex;
  justify-content: center;
}
.nav-sanzen, .nav-kankyo, .nav-hito, .nav-entry {
  margin: 15px;
}
a.btn_offical {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 150px;
  margin: 50px auto;
  padding: 2rem 4rem;
  font-weight: bold;
  border: 2px solid #27acd9;
  color: #27acd9;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
a.btn_offical::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(39, 172, 217);
  transform: translateX(-100%);
  transition: all .3s;
  z-index: -1;
}
a.btn_offical:hover::before {
  transform: translateX(0);
}
a.btn_offical:hover {
  color: #fff;
}
.footer-logo {
  display: block;
  height: 50px;
  text-align: left;
  object-fit: cover;
  margin: 50px auto;
}
.copyright {
  text-align: center;
  display: block;
  margin: 0 auto;
}
.nav-titele:hover{
  color: #27acd9;
}
@media(min-width: 900px) {
  .footer-wrapper {
    max-width: 1160;
    margin: 50px auto;
  }
  .footer-inner {
    display: flex;
    margin: 0 auto;
    max-width: 1260px
  }
  .footer-inner_2 {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1260px
  }
  .footer-logo {
    max-width: 1040px;
    margin: 0 100px 0 24px;
  }
  .footer-nav ul {
    display: block;
  }
  .footer-nav a {
    margin: 0;
    
  }
  .nav-titele {
    font-size: 2rem;
    font-weight: 600;
  }
  .nav-content-01 {
    flex-direction: row;
  }
  .nav-content-02 {
    flex-direction: row;
  }
  .nav-content-01 ul li {
    font-size: 1.6rem;
    margin: 35px
  }
  .nav-content-01 ul li {
    display: flex;
    align-items: center;
  }
  
  .nav-content-02 ul li {
    font-size: 1.6rem;
    margin: 35px;
  }
  a.btn_offical {
    margin: 0
  }
}
