
/* desktop */
#menuArea{
  display: none;
  padding-top: 30px;
}
  
#menuArea input {
  display: none;
}

#menuArea .menu-logo{
  display: none;
  margin-left: 100px;
  float: left;
}

#menuArea .open {
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  cursor: pointer;
  position: relative;
  /* top: 8px; */
  z-index: 99999 !important;
}

#menuArea .open:before {
  content: "";
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

#menuArea .open:after {
  content: "";
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  top: 8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

#menuArea .menuOpen {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  float: right;
  border: 1px solid #9E8979;
  border-right: 0px;
  margin-top: 10px;
}

#menuArea .menuOpen p{
  color: #9E8979;
  padding-left: 10px;
}

#menuArea .menuOpen:hover{
  background-color: rgb(158, 137, 121 , 0.1);
}

#menuArea .menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255);
  z-index: 9999;
}

#menuArea .menu label {
  width: 118px;
  height: 50px;
  position: fixed;
  right: -5px;
  top: 40px;
  background-size: 100%;
  cursor: pointer;
  border: 1px solid #9E8979;
}

#menuArea .menu label p{
  color: #9E8979;
  padding-left: 40px;
  padding-top: 9px;
}

#menuArea .menu .menuContent {
  /* position: fixed;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%); */
  padding-bottom: 20px;
  margin-top: 10rem;
}

#menuArea .menu .mountain{
  position: absolute;
  right: 0;
  /* bottom: 300px; */
}

#menuArea .menu .menu-footer{
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 20px;
  color: #373737;
  width: 100%;
}

#menuArea .menu .menu-footer .tel{
  color: #9E8979;
}

#menuArea .menu .menu-footer img{
  padding-left: 10px;
}

#menuArea .menu .menu-footer p{
  border-right: 1px solid #E9CCAD;
  padding-right: 30px;
  padding-left: 10px;
  font-size: 16px;
}

#menuArea .menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

#menuArea .menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

#menuArea .menuEffects ul.menu-list a{
  text-decoration: none;
  color: #373737;
  border-right: 1px solid #E9CCAD;
  font-size: 30px;
  line-height: 40px;
  padding-right: 15px;
}

#menuArea .menuEffects ul.menu-list .list-sub a{
  color: #96908C;
  border-right: 0px solid #E9CCAD;
  font-size: 20px;
}


#menuArea .menuEffects ul.menu-list .list-sub a:hover{
  color: #9E8979;
}

#menuArea .menuEffects ul li{
  list-style-type: none;
}

#menuArea .menuEffects ul li.menu-list-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
  letter-spacing: 8px;
}

#menuArea #menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuArea #menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuArea #menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuArea #menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: rgb(158, 137, 121);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuArea #menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: rgb(158, 137, 121);
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuArea #menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}


/******** mobile *********/
#menuArea-mobile{
  padding-top: 10px;
  height: 90px;
  background: rgba(255, 255, 255, 0.8);
}

#menuArea-mobile .mobile-top-logo{
  display: none;
  float: left;
}
  
#menuArea-mobile input {
  display: none;
}

#menuArea-mobile .menu-logo{
  margin-left: 20px;
  margin-top: 10px;
}

#menuArea-mobile .open {
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  cursor: pointer;
  position: relative;
  /* top: 8px; */
  z-index: 99999;
}

#menuArea-mobile .open:before {
  content: "";
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

#menuArea-mobile .open:after {
  content: "";
  background-color: #9E8979;
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  top: 8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

#menuArea-mobile .menuOpen {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  float: right;
  border: 1px solid #9E8979;
  margin-top: 10px;
  margin-right: 15px;
}


#menuArea-mobile .menuOpen p{
  color: #9E8979;
  padding-left: 10px;
}

#menuArea-mobile .menuOpen:hover{
  background-color: rgb(158, 137, 121 , 0.1);
}

#menuArea-mobile .menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255);
  z-index: 9999;
}

#menuArea-mobile .menu label {
  width: 56px;
  height: 50px;
  position: absolute;
  right: 15px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
  border: 1px solid #9E8979;
}

#menuArea-mobile .menu label p{
  color: #9E8979;
  padding-left: 40px;
  padding-top: 5px;
}

#menuArea-mobile .menu .menuContent {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 20px;
  /* min-width: 80%; */
}

#menuArea-mobile .menu .mountain{
  position: absolute;
  right: 0;
  bottom: 120px;
}

#menuArea-mobile .menu .menu-footer{
  position: fixed;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  bottom: 0;
  color: #373737;
  width: 100%;
  background-color: #F5F5F5;
  padding: 1rem;
}

#menuArea-mobile .menu .menu-footer .logoName{
  font-weight: 600;
  font-size: 20px;
}

#menuArea-mobile .menu .menu-footer .tel{
  color: #9E8979;
  font-size: 30px;
  font-weight: 600;
}

#menuArea-mobile .menu .menu-footer img{
  padding-left: 10px;
}

#menuArea-mobile .menu .menu-footer p{
  font-size: 16px;
}

#menuArea-mobile .menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

#menuArea-mobile .menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}

#menuArea-mobile .menuEffects ul.menu-list {
  min-width: 20rem;
}

#menuArea-mobile .menuEffects ul.menu-list a{
  text-decoration: none;
  color: #373737;
  border-bottom: 1px solid #E9CCAD;
  font-size: 18px;
  line-height: 40px;
  padding-right: 26px;
}

#menuArea-mobile .menuEffects ul.menu-list .list-sub a{
  color: #96908C;
  border-bottom: 0px solid #E9CCAD;
  font-size: 17px;
}

#menuArea-mobile .menuEffects ul li{
  list-style-type: none;
}

#menuArea-mobile .menuEffects ul li.menu-list-item{
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
}

#menuArea-mobile #menuToggle-mobile:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuArea-mobile #menuToggle-mobile:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuArea-mobile #menuToggle-mobile:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuArea-mobile #menuToggle-mobile:checked ~ .menuOpen .open:before {
  content: "";
  background-color: rgb(158, 137, 121);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuArea-mobile #menuToggle-mobile:checked ~ .menuOpen .open:after {
  content: "";
  background-color: rgb(158, 137, 121);
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuArea-mobile #menuToggle-mobile:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}


@media (max-width: 1200px){
  #menuArea{
    display: block;
  }
}



@media (max-width: 375px) {
  #menuArea-mobile .menu .menuContent {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 20px;
    /* margin-top: -170px; */
  }

  #menuArea-mobile .menu .menu-footer .tel{
    font-size: 20px;;
  }

  #menuArea-mobile .menu .menu-footer p {
    font-size: 14px;
    line-height: 1.5em;
  }

  #menuArea-mobile .menuEffects ul.menu-list .list-sub a {
    color: #96908C;
    border-bottom: 0px solid #E9CCAD;
    font-size: 16px;
  }

  #menuArea-mobile .menuEffects ul.menu-list a {
    text-decoration: none;
    color: #373737;
    border-bottom: 1px solid #E9CCAD;
    font-size: 16px;
    line-height: 30px;
    padding-right: 26px;
  }

  #menuArea-mobile .menuEffects ul li {
    list-style-type: none;
    line-height: 1em;
  }
}
