@charset "UTF-8";
#container {
    width: 100%;
    max-width: 480px;
}
#header_bace {
    background-color: #FFF200;
}
#header {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}
h1 a   {
    background-image: url(../image/sm_header_logo.png);
    text-indent: -9999px;
    display: block;
    background-repeat: no-repeat;
    margin-top: 5px;
    width: 70%;
    position: relative;
    margin-left: 28%;
    background-size: 100% auto;
    height: 10vmax;
}
h2 {
    font-size: 80%;
    font-weight: normal;
    border-top: thin solid #006FBC;
    border-bottom: thin solid #006FBC;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    clear: both;
    width: 30%;
    color: rgba(0,111,188,1.00);
    display: none;
    height: auto;
}

.menu-btn {
    position: fixed;
    top: 15px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(255,242,0,1.00);
    left: 15px;
    margin-top: 5px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #006FBC;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#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: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 130%;
    box-sizing: border-box;
    color: #FFFFFF;
    text-decoration: none;
    padding-top: 12px;
    padding-right: 15px;
    padding-left: 0;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

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

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

.pc {
    display: none;
}
#content {
}
#footer_base {
    background-color: rgba(255,242,0,1.00);
    padding-bottom: 0px;
    margin-bottom: 0px;
    overflow-y: hidden;
    clear: both;
}
#footer {
    clear: both;
}
h3 a {
    display: none;
}
#navB {
    display: none;
}
#sns {
    text-align: center;
    width: 80px;
    margin-top: 25px;
}
#sns ul  {
}
#sns ul li {
}
#FB a {
    background-image: url(../image/facebook_BL.png);
    text-indent: -9999px;
    width: 35px;
    height: 35px;
    display: block;
    background-size: 35px auto;
    float: left;
}
#FB a:hover  {
    background-image: url(../image/facebook_BL.png);
    text-indent: -9999px;
    width: 35px;
    height: 35px;
    display: block;
    background-size: 35px auto;
    float: left;
    opacity: 0.5;
}
#insta a {
    background-image: url(../image/insta_BL.png);
    width: 35px;
    height: 35px;
    background-size: 35px auto;
    text-indent: -9999px;
    display: block;
    float: right;
}
#insta a:hover  {
    background-image: url(../image/insta_BL.png);
    width: 35px;
    height: 35px;
    background-size: 35px auto;
    text-indent: -9999px;
    display: block;
    float: right;
    opacity: 0.5;
}
.pagetop a {
    display: none;
}
#copyright {
    text-align: center;
    clear: both;
    margin-bottom: 15px;
    font-size: 85%;
    color: rgba(0,111,188,1.00);
    padding-top: 15px;
}
