@charset "UTF-8";

/*///////*/

.menu-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    height: 6rem;
    width: 6rem;
    justify-content: center;
    align-items: center;
    z-index: 7000;
    background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
	transition: all .4s;
    height: .3rem;
    width: 2.5rem;
    border-radius: .3rem;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: .8rem;
}
.menu-btn span:after {
    top: .8rem;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}


.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6000;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 8rem 1rem 0;
}
.menu-content ul li {
    border-bottom: solid .1rem #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 2rem 1.5rem 2rem 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: .7rem;
    height: .7rem;
    border-top: solid .2rem #ffffff;
    border-right: solid .2rem #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 1.1rem;
    top: 2.9rem;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 6000;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
  z-index: 6000;
}
/* menu下のテキスト */
.menu-address {
  padding:2rem 1rem;
}
.menu-address p {
  text-align: center;
  color:#fff;
  font-size:1.4rem;
  line-height: 2em;
}
.menu-address p.mb-name {
  text-align: center;
  color:#fff;
  font-size:2rem;
  line-height: 1.2;
}
.menu-address p.menu-tel a {
    text-align: center;
    color:#fff;
    font-size:2.4rem;
    line-height: 2em;
  }




