body{
  background-color: #eee;
}

a:hover{
  opacity: 0.7;
}
.head{
  background-color: #FFFFFF;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}
.head_logo{
  width: 7rem;
  margin-left: 1.5rem;
}

/* navi */
.navi ul{
  display: flex;
}
.navi li{
  margin-right: 6rem;
  font-size: 1.5rem;
}
.navi li:last-child{
  margin-right: 3rem;
}
.navi_logo img{
  width: 6.5rem;
  height: 3.5rem;
}
.navi a{
  color: #AF7379;
}
.navi_logo{
  text-align: center;
}

/* local_navi */
.local_navi{
  display: none;
}
.local_navi.active{
  width: 100%;
  padding: 4rem 2rem 2.5rem;
  position: absolute;
  top: 70px;
  left: 0;
  background-color: #EFE1E2;
}
.navi_menu{
  display: none;
}
.local_navi.active .navi_menu{
  display: inline-block;
}
.navi_menu_item{
  margin-bottom: 2rem;
  display: flex;
}
.navi_menu_item img{
  width: 3.5rem;
  margin-right: 0.5rem;
}
.navi_menu_item a{
  font-size: 1.5rem;
  font-weight: 600;
  color: #655657;
}

/* navi_list */
.navi_list{
  display: none;
}
.local_navi.active .navi_list{
  display: flex;
  gap: 1.5rem;
}

/*navi_line*/
.navi_line{
  width: 16rem;
  height: 4rem;
  line-height: 3.5rem;
  border: #fff solid 0.2rem;
  border-radius: 0.8rem;
  background-color: #02B902;
}
.icon_text{
  font-size: 1rem;
  position: absolute;
  left: 5.1rem;
}
.navi_line div{
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.navi_line img{
  width: 4rem;
  height: 3rem;
  margin: 0 0.6rem 0 2rem;
}
.navi_line p{
  /* font-size: 1.5rem; */
  font-size: .8rem;
}

/*navi_lime*/
.navi_lime{
  width: 16rem;
  height: 4rem;
  line-height: 3.5rem;
  border: #fff solid 0.2rem;
  border-radius: 0.8rem;
  background-color: #15BEAB;
}
.navi_lime div{
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.navi_lime img{
  width: 3rem;
  height: 3rem;
  margin: 0 0.6rem 0 2rem;
}
.navi_lime p{
  font-size: 1.5rem;
}

/* ハンバーガー */
.hamburger{
  width: 55px;
  height: 55px;
  margin-right: 7px;
  display: none;
  position: relative;
  transition: 0.3s;
  border-radius: 10px;
  background-color: #AF7379;
}
.hamburger span {
  width: 38px;
  height: 1px ;
  background: #fff;
  position: absolute;
  left: 9px;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 17.5px;
}
.hamburger span:nth-child(2) {
  top: 27.5px;
}
.hamburger span:nth-child(3) {
  top: 37.5px;
}
.hamburger.active span:nth-child(1) {
  top: 27px;
  left: 8px;
  background :#fff;
  transform: rotate(-30deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 27px;
  left: 8px;
  background: #fff;
  transform: rotate(30deg);
}

/* sidebar */
#sidebar{
  z-index: 5;
  position:fixed;
  top: 13.5rem;
  right: 0;
  transition: transform 0.3s, opacity 0.3s;
}
#sidebar.active{
  transform: translateX(100%);
  opacity: 0;
}
#sidebar.hidden {
  transform: translateX(100%);
  opacity: 0;
}
.line{
  height: 16rem;
  margin-bottom: 0.5rem;
}
.lime{
  height: 16rem;
  position: relative;
}
.lime_inner{
  position: absolute;
  top: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
}
.lime_inner img{
  width: 4rem;
  margin-bottom: 1rem;
}
.lime_inner p{
  margin: 0 auto;
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
}

/* background */
.background{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #F0E0E2;
}
.bg_animal{
  width: 24rem;
  height: 21rem;
  position: absolute;
  bottom: 38rem;
  left: 18.3rem;
}
.bg_half_circle{
  width: 100%;
  position: absolute;
  bottom: 0;
}

.line_icon_img img {
  margin-bottom: .5rem;
  font-weight: bold;
}

/* レスポンシブデザイン */
@media screen and (max-width: 699.98px) {
    /* background */
  .bg_animal{
    width: 18rem;
    height: 15.8rem;
    top: 14.4rem;
    left: 0.7rem;
  }
  .bg_half_circle{
    width: 100%;
    height: 18rem;
    top: 26.5rem;
  }
  .white_rectangle{
    background-color: #fff;
    width: 100%;
    height: 40rem;
    position: relative;
  }
  
  header{
  height: 70px;
  }
  .head_logo{
    margin-left: 10px;
    width: 50px;
  }
  .head{
    width: 100%;
    height: 70px;
    position: fixed;
  }
  .navi ul{
    display: none;
  }
  .local_navi{
    display: inline-block;
  }
  .hamburger{
    display: block;
  }
  
  .line_navi_icon img {
    margin-left: 1.6rem;
  }
}