@charset "UTF-8";
.menu-btn {
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    display: flex;
    height: 5rem;
    width: 5rem;
    justify-content: center;
    align-items: center;
    z-index: 6000;
    background-color: hsla(0,0%,100%,0.8);
}
.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: #151515;
    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 {
  display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
    background-color: #1F1F1F;
}
.menu-content-header {
  width:100%;
  height:8rem;
  background-color:#C0C0C0;
  position: fixed;
  z-index: 5000;
}
.menu-content ul {
    padding: 8rem 1rem 0;
}
.menu-content ul li {
    border-bottom: solid 1px #9A9A9A;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 2rem;
    box-sizing: border-box;
    color:#fff;
    text-decoration: none;
    padding: 1rem 0.6rem 1rem 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: .7rem;
    height: .7rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 2rem;
}

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

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* menu下のテキスト */
.menu-address {
  padding:2rem 1rem;
}
.menu-address p {
  text-align: center;
  color:#fff;
  line-height: 1.5;
}
.menu-address p.menu-tel a {
    text-align: center;
    color:#fff;
    line-height: 1.5;
  }
/*====================================================================
.s_02 .accordion_one
====================================================================*/

.menu-content {
  height: 100vh; /* 例えばヘッダーが高さ10remの場合 */
  overflow-y: auto;
}

#mb-menu-outer{padding-top:8.5rem}
.mb-menu-inner{
  background-color:#585858;
}
.mb-menu-header{
  background-color:#222222;
  color:#fff;
  padding:0.5em 0.5em 0.7em 1rem;
}
.mb-menu-contents{
  display: grid;
  grid-template-columns: 1fr;
}
.mb-menu-contents div a{
  display: block;
  position: relative;
  font-size:1.8rem;
  color:#fff;
  line-height: 5rem;
  text-decoration: none;
  height: 7rem;
  border-bottom:solid 1px #ddd;
  border-right:solid 1px #ddd;
  padding:1rem 1rem 1rem 2rem ;
}
.mb-menu-contents div a::after{
  content:"▶";
 position: absolute;
  right:2rem;
  top:1rem;
  font-size:1rem;
}







