/******************************
ヘッダー
******************************/
#header {
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #000;
    filter: alpha(opacity=50);
    height: 70px;
    transition: all 1s ease-in-out;
    font-weight: normal;
    box-shadow: 3px 3px 7px rgba(255, 255, 255, 0.2);
    top: 0;
}
#header .inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
#header .logo {
    position: absolute;
    width: 50px;
    top: 10px;
}
#header .logo a {
    height: 70px;
    display: inline-block;
    width: 50px;
}
#header .logo img {
    width: 50px;
}
@media screen and (max-width:1024px) {
    #header {
        position: absolute;
        height: 50px;
        box-shadow: none;
    }
    #header .logo {
        top: 0;
    }
}
@media screen and (max-width:798px) {
    #header .inner {
        width: 100%;
    }
}
/******************************
PCナビ
******************************/
#header .sp-nav {
    display: none;
}
#header nav {
    width: 100%;
}
#header nav a {
    display: inline-block;
    margin: 0 auto 5px;
    color: #fff;
}
#header nav .main-nav {
    display: flex;
    display: flex;
    top: 6px;
    position: absolute;
    right: 0;
}
#header .main-nav li {
    margin: 15px;
}
@media screen and (max-width:1024px) {
    #header .pc-nav {
        display: none;
    }
    #header .sp-nav {
        display: block;
    }
}
/******************************
SPナビ
******************************/
.menu-btn {
    width: 50px;
    height: 50px;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
}
.menu-btn span {
    width: 26px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
    position: absolute;
    left: 12px;
}
.menu-btn span:nth-of-type(1) {
    top: 16px;
}
.menu-btn span:nth-of-type(2) {
    top: 24px;
}
.menu-btn span:nth-of-type(3) {
    top: 32px;
}
.open .menu-btn span:nth-of-type(1) {
    width: 27px;
    -webkit-transform: translateY(8px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
}
.open .menu-btn span:nth-of-type(2) {
    opacity: 0;
}
.open .menu-btn span:nth-of-type(3) {
    width: 27px;
    -webkit-transform: translateY(-8px) rotate(315deg);
    transform: translateY(-8px) rotate(315deg);
}
.menu-area {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    color: #FFF;
    background: rgba(0, 0, 0, 0.9);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    z-index: 999;
    display: none;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.menu-area .inner {
    margin: 50px auto 0;
    height: calc(100vh - 50px);
    display: table;
    width: 90%;
}
.sp-logo {
    width: 200px;
    margin-top: 10px;
    position: absolute;
    left: 30px;
}
.menu-area .list-wrap {
    display: table-cell;
    vertical-align: middle;
}
.menu-area a {
    color: #fff;
    display: block;
}
.menu-area dl {
    margin: 0 auto;
}
.menu-area dl ul {
    margin: 0 auto 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.menu-area dl li {
    padding: 10px 10px 0 10px;
    float: left;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.menu-area .item-list {
    border-bottom: 1px solid #555;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    font-family: 游明朝, 'Yu Mincho', YuMincho, 'Noto Serif JP', serif,'游ゴシック', YuGothic, 'Meiryo', 'メイリオ';
}
.menu-area .item-list small{
    font-size: 16px;
}
.menu-area .list-wrap img {
    width: 25px;
}
@media screen and (max-width:798px) {
    #header .menu-area .inner {
        width: 90%;
    }
}
@media screen and (min-width:560px) {
    .menu-area dl ul {
        margin-bottom: 50px;
    }
}