@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;
  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);
}



.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-entry {
  width: 100%;
  height: 400px;
  background-image: url("../images/entry-img-sp.png");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 60px
}
.section-entry_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-entry h1 {
  margin-left: 24px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  font-size: 2.4rem
}
.section-entry 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-entry {
    background-image: url("../images/entry-img-pc.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: relative;
    height: 700px;
    margin-bottom: 80px;
  }
  .section-entry_img {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
    
  }
  .section-entry_title {

    margin-top: 150px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .section-entry h1 {
    font-size: 3.2rem
  }
  .section-entry p {
    font-size: 2.4rem;
    line-height: 4.6rem;
  }
}


.section-flow {
  margin: 50px auto;
}

.section-flow_title{
   color: #4d7eb1;
  font-size: 1.3rem;
  font-family: Opne sans;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  display: inline-block;
  margin: 50px 24px 10px ;
}
.section-flow h2{
  margin: 0 24px
}


.section-flow ol{
  display: flex;
      flex-direction: row;
    flex-wrap: wrap;
      justify-content: center
}
.section-flow ol li{
     list-style: none;
    background-color: #ffffff;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin: 30px 20px 0px
}
.section-flow ol li span{
  font-weight: 600;
  font-size: 1.8rem;
}
.section-flow p{
  margin: -20px
}
.entry{
    position: relative;
}

.entry::after{
  content: "";
  display: block;
  background: #042950;
  width: 2px;
  height: 40px;
  position: absolute;
  top:160px;
  left:73px;
  z-index: 100
}
.conpany{
  position: relative;
  z-index: 50
}
.conpany::after{
  content: "";
  display: block;
  background: #042950;
  width: 2px;
  height: 40px;
  position: absolute;
  top:160px;
  left:73px
}
.document{
  position: relative
}
.document::after{
  content: "";
  display: block;
  background:#042950;
  width: 2px;
  height: 40px;
  position: absolute;
  top:160px;
  left:73px;
  z-index: 200
}
.test{
  position: relative
}
.test::after{
  content: "";
  display: block;
  background: #042950;
  width: 2px;
  height: 40px;
  position: absolute;
  top:160px;
  left:73px;
  z-index: 200;
}
.jobinterview{
  position: relative
}
.jobinterview::after{
  content: "";
  display: block;
  background: #042950;
  width: 2px;
  height: 40px;
  position: absolute;
  top:160px;
  left:73px
}

@media(min-width: 420px){
  .section-flow {
    max-width: 1160px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    
  }
 
  .section-flow ol{
        justify-content: flex-start;
    margin-top: 100px;
  }
 
  .entry::after,.conpany::after,.document::after,.test::after,.jobinterview::after{
     width:40px;
  height: 2px;
     top:80px;
  left:160px
  }
}
@media(min-width: 480px){
   .section-flow_title{
    font-size: 1.6rem;
    margin: 50px 24px 10px 
  }
 .section-flow h2{
    font-size: 3.2rem;
    margin: 0 24px ;
          text-align: left;
  }
}




.section-jobdescription{
  margin: 50px 0
}


.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li a{
	display: block;
	background:#ddd;
	 margin: 0px 5px;
  padding: 15px 40px;
  border-radius: 10px 10px 0 0;
  
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#fff;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
    border-radius: 10px;
    margin: 0 24px
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.tab{
  justify-content: center
}
.section-jobdescription table tr{
  border-bottom: solid 1px #407dc1;
 
}
.title{
width: 110px
}
.area ul li{
  line-height: 1.5;
  padding:15px;
  border-bottom: solid 1px #2361a3;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.area ul li:last-child{
  border: none
}
.area ul li span{
  color: #2361a3
}

.section-jobdescription h2{
  margin:0 24px 50px
}
.area ul li a{
  color: #abcff7;
  border-bottom: solid 1px #abcff7
}



@media(min-width:1040px) {
  .section-jobdescription {
    max-width: 1160px;
    margin: 100px auto;
    min-height: 50px;
    box-sizing: border-box;
  }
 
  .tab li a{
	
	 margin: 0px 10px;
  padding: 20px 160px;
  
}
  .area{
    padding: 50px
  }
  .section-jobdescription table td {
    line-height: 1.5;
    padding: 20px;
  
}
  .area ul li{
    flex-direction: row;
  }
  .area ul li p{
    width: 700px
  }
}
@media(min-width:480px){
   .section-jobdescription h2{
    font-size: 3.2rem
  }
  
}








.section-tel{
  margin: 50px 24px
}
.section-tel h2{
  margin: 0 24px;
}
.section-tel>p{
 margin: 30px 24px 0px
}
.tel-list{
  border: solid 2px #a2b6cb;
  margin: 50px auto;
  max-width: 1100px

}
.tel-list ul{
  margin: 30px 20px;
}
.tel-list ul li{
  line-height: 2;
  text-align: center
}
.tel-list ul li p{
  font-size: 1.4rem
}
.tel-list ul li span{
  color: #407dc1;
  font-weight: 600;
  font-size: 2.0rem;
  margin-left: 10px
}
.manager{
  background-color: #407dc1;
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
@media(min-width: 480px){
  .section-tel {
    max-width: 1160px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
   
  }
  .section-tel h2{
    font-size: 3.2rem
  }
  .section-tel p{
    font-size: 1.8rem
  }
  tel-list ul li p{
  font-size: 1.6rem
}
  .tel-list ul li span{
  font-size: 2.4rem;
    
}
  
  }


.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
  }
}