@charset "UTF-8";

body {
  height: 100%;
  margin: 0;
  width: 100%;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

/*fade******************************************/

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

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

/*navArea******************************************/

#navArea {
  z-index: 1000;
}

nav {
  position: fixed;
  top: 0;
  right: -3000px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 5;
  overflow-y: scroll;
  padding-right: 10px;
}

.open nav {
  right: 0px;
}

nav .inner {
  transition-duration: 0.2s;
}

.inner {
  overflow-y: scroll;
  background-color: #e6e6e6;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.innerMenu img {
  width: 250px;
  padding-top: 30px;
  padding-bottom: 30px;
}



.inner a {
  display: block;
}

.mbMenu {
  padding-right: 5px;
}

.mbMenu p {
  color: #232323;
  font-family: "source-han-sans-cjk-ja", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mbMenu a {
  text-decoration: none;
  color: #232323;
  padding-right: 20px;
}

.menuType1 a {
  border-top: 1px solid #232323;
  padding-top: 13px;
  padding-left: 20px;
  height: 50px;
  font-family: "source-han-sans-cjk-ja", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.menuType {
  border-top: 1px solid #232323;
  padding-top: 20px;
}

.menuType2 a {
  padding-left: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menuType3 {
  padding-left: 20px;
  padding-bottom: 20px;
}

.menuType3 p {
  font-family: "source-han-sans-cjk-ja", sans-serif;
  font-weight: 600;
  font-style: normal;
}


.menuType4 a {
  border-top: 1px solid #232323;
  padding-top: 30px;
  padding-left: 20px;
  height: 50px;
}

.menuType1 :hover {
  background-color: #e4826c;
  color: #e6e6e6;
  transition: 0.3s;
}

.menuType2 :hover {
  background-color: #e4826c;
  color: #e6e6e6;
  transition: 0.3s;
}





/*mask******************************************/

.open #mask {
  display: block;
  background-color: #232323;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.9;
  cursor: pointer;
  overflow-y: hidden;
  transition: all 1s ease-in-out;
  z-index: 4;

}



.dropdown__lists {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 10000;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
}

.dropdown__list {
  background-color: #f1f1e9;
  height: 60px;
  transition: all .3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #deab9f;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__lists li {
  line-height: 1.6em;
}

.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*ドロップダウン ここまで******************************************/