@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, #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-about {
  height: 400px;
  background-image: url("../images/about-img-sp.png");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 60px
}
.section-bussiness_title {
  color: #4d7eb1;
  font-size: 1.3rem;
   font-family: Open Sans;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  display: inline-block;
  margin-left: 24px;
  margin-bottom: 10px;
}
.section-about_title, .section-massage_titel, .section-company_title {
  color: #4d7eb1;
  font-size: 1.3rem;
  font-family: Open Sans;
  font-weight: 600;
  font-style: italic;
  text-align: left;
  display: inline-block;
  margin-left: 24px;
  margin-bottom: 10px;
  margin-top: 50px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}
.section-about h2{
  margin-left: 24px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.section-business h2, .section-massage h2, .section-company h2 {
  margin-left: 24px
}


.section-about 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-about {
    background-image: url("../images/about-img.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: relative;
    height: 700px;
    margin-bottom: 80px;
  }
  .section-about_img, .section-business {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    box-sizing: border-box;
  }
  .section-about_title {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 150px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7)
  }
  .section-bussiness_title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .section-massage_titel, .section-company_title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 100px
  }
  .section-about h2 {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7)
  }
  .section-about h2, .section-business h2, .section-business h2, .section-company h2, .section-massage h2 {
    font-size: 3.2rem
  }
  .section-about p {
    font-size: 2.4rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7)
  }
}
.press, .robot, .kasime, .kanagata {
  max-width: 1040px;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 50px 24px;
  margin: 50px 24px;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
}
.section-business {
  margin-top: 50px;
}
.section-business h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-business p {
  line-height: 2.4rem;
}
.press img {
  width: 100%;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 30px;
}
.robot img {
  width: 100%;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 30px;
}
.kasime img {
  width: 100%;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 30px;
}
.kanagata img {
  width: 100%;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 30px;
}
@media(min-width: 1040px) {
  .press, .robot, .kasime, .kanagata {
    display: flex;
    padding: 50px 100px;
    margin: 50px auto 0;
  }
  .press img, .robot img, .kasime img, .kanagata img {
    width: 50%;
    margin: 0
  }
  .section-business {
    margin-top: 100px
  }
  .section-business h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 50px;
  }
  .section-business p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-right: 20px
  }
}
.backgroud-img {
  width: 100%;
}
.section-important {
  background: linear-gradient(180deg, #abcff7, #ffffff);
  margin: 50px auto 0;
}
.section-important h2 {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600;
  margin: 50px 0;
}
.section-important p {
  text-align: center;
  line-height: 2.8;
  margin: 20px 24px;
}
.kamera, .nabi, .copy, .renzu {
  display: block;
  object-fit: cover;
  width: 25%;
  height: 30%;
  margin: 20px;
}
.section-important span {
  font-weight: 600;
  text-align: center;
  display: block;
  line-height: 2.8rem;
  margin: 30px 24px
}
.important-img-list-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media(min-width: 480px) {
  .important-wrapper {
    max-width: 1040px;
    margin: 0 auto
  }
  .section-important h2 {
    font-size: 3.2rem;
    margin: 100px 0
  }
  .section-important p {
    line-height: 3;
  }
  .section-important span {
    font-size: 2rem;
    margin: 50px 24px;
  }
}

.section-massage_img {
  width: 85%;
  object-fit: cover;
  border-radius: 30px;
  margin: 50px 24px 30px;
  box-shadow: 0 0px 25px 0 rgba(64, 125, 193, 0.3)
}
.section-massage p {
  line-height: 1.8;
  margin: 20px 24px;
}
@media(min-width: 1040px) {
  .massage-wrapper {
    max-width: 1040px;
    margin: 0 auto;
  }
  .section-massage_titel {
    margin-top: 100px;
    font-size: 1.6rem
  }
  .massage-content {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 50px
  }
  .section-massage_img {
    width: 40%;
    margin: 30px
  }
}
.section-company {
  background: linear-gradient(180deg, #abcff7, #ffffff);
}
.section-company table {
  margin: 50px 24px
}
.section-company td {
  border-bottom: 1px solid rgba(64, 125, 193, 0.3);
  vertical-align: top;
  padding: 15px 15px;
  line-height: 3rem
}
td.title {
  white-space: nowrap;
}
@media(min-width: 480px) {
  .company-wrapper {
    max-width: 1040px;
    margin: 0 auto
  }
  table tr td {
    font-size: 2rem
  }
  .section-company td {
    padding: 25px 55px;
  }
}
.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
  }
}