@charset "UTF-8";

@charset "UTF-8";
@media (max-width: 768px){
nav {
  position: fixed;
  z-index: 100;
}

.drawer-list {
  background-color: #fff;
  z-index: 100;
  background-size: cover;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  transform: translate(100vw, 0);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
  box-sizing: border-box;
  pointer-events: none;
  padding-top: 110px;
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
  border-bottom-left-radius: 100vw;
}
.drawer-list ul{
  height: 80%;
  width: 85%;
  margin: 0 auto;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  align-content: space-around;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.drawer-list li:not(:first-child){
  border-bottom: 1px solid #333;
  width: 100%;
  list-style: none;
  text-transform: uppercase;
  pointer-events: auto;
  white-space: nowrap;
  box-sizing: border-box;
  transform: translatex(100vw);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
}


.drawer-list a{
  font-weight: 900;
  color: #49A03A;
  text-align: center;
  display: block;
  padding: 4rem 0 0;
  font-size: calc(24px - .5vw);
  text-align: left;
}

.drawer-list a::before{
  content: '';
  position: absolute;
  right: 25%;
  margin: auto;
  bottom: 10px; /*下線の上下位置調整*/
  display: inline-block;
  width: 50%; /*下線の幅*/
  height: 1px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  border-bottom: 1px solid #49A03A;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.drawer-list a:hover::before{
  transform: scaleX(1);
}
.drawer-list a span{
  display: block;
}
.drawer-list a .en{
  font-weight: 900;
  color:#000;
}
.drawer-list a .ja{
  font-size: 1.1rem;
  letter-spacing: 0.3em;  
  color: #333;          
}

input.hamburger {
  display: none;
}
input.hamburger:checked ~ .drawer-list {
  transform: translatex(0);
  border-bottom-left-radius: 0;
}
input.hamburger:checked ~ .drawer-list li {
  transform: translatex(0);
}
input.hamburger:checked ~ label > i {
  background-color: transparent;
  transform: rotate(90deg);
}
input.hamburger:checked ~ label > i:before {
  transform: translate(-50%, -50%) rotate(315deg);
}
input.hamburger:checked ~ label > i:after {
  transform: translate(-50%, -50%) rotate(-315deg);
}


label.hamburger {
  z-index: 9999;
  display: block;
  height: 40px;
  width: 40px;
  position: fixed;
  top: 70px;
  right: 15px;
  display: flex;
  justify-content: center;
}
label.hamburger:hover {
  cursor: pointer;
}
label text {
  display: flex;
  justify-content: center;
}
label.hamburger > i {
  position: absolute;
  margin: 0 25%;
  width: 20px;
  height: 2px;
  top: 47%;
  background-color: #000;
  pointer-events: auto;
  transition-duration: 0.35s;
  transition-delay: 0.35s;
}
label.hamburger > i:before, label.hamburger > i:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 50%;
  background-color: #000;
  content: "";
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}
label.hamburger > i:before {
  transform: translate(-50%, -7px);
}
label.hamburger > i:after {
  transform: translate(-50%, 7px);
}


.bodoni_3{
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem;
  line-height: 8rem;
  letter-spacing: 2px;
  position: relative;
  color: #198A0A;
  text-align: left;
  }

.bodoni_3::after{
  content: "";
  position: absolute;
  left: 0;
  margin: auto;
  bottom: 13px;
  display: inline-block;
  width: 80px;
  border-bottom: 1px solid #198A0A;
}

.content{
  width: 85%;
  margin: 0 auto;
}

}
