header {
    display: flex;
    top: 0;
    min-height: 60px;
    width: 100%;
    color: #000;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: white;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid black;
    z-index: 1000;
}


.page-back {
    cursor: pointer;
    top: 0;
    left: 0;
    height: 60px;
    width: 60px;
    position: fixed;
    z-index: 2000;
    border-bottom-right-radius: 20%;
}

.page-back:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 40%;
    height: 40%;
    background: url(/images/s46/com-btn-arrow.svg) no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%) rotate(-90deg);
}


.hamburger {
    text-align: center !important;
    font-size: 24px;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    line-height: 60px;
    z-index: 2000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-bottom-left-radius: 20%;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 30px;
    top: 30px;
    line-height: 1;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
}

span.nogi {
    background-color: #9e3be2;
}
span.sakura {
    background-color: #f19db5;
}
span.hinata {
    background-color: #5bbee5;
}
span.general {
    background-color: #000;
}

.hamburger span:nth-of-type(1){
    top: 20px;
}
.hamburger span:nth-of-type(3){
    top: 40px;
}

.navbar {
    padding-top: 60px;
    position: fixed;
    background-color: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    transition: 0.3s ease-in-out;
    z-index: 500;
    text-align: center;
    background-color: #fff;
}

.navbar ul {
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    /* border-left: #555 solid 1px;
    border-right: #555 solid 1px; */
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;

    height: 100%;
    /* color: black; */
    font-size: 20px;
    /* border: #555 solid 1px; */
}

.navbar li {
    width: 100%;
    height: 100%;
    padding: 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    vertical-align: middle;
}

.navbar li:first-child {
    border-top: 1px solid black;
}

.navbar li:last-child {
    border-bottom: 1px solid black;
}

.navbar li + li {
    border-top: none; /* 連続するliの間の上ボーダーを削除 */
}

.open #navbar {
    left: 0;
}
.open #hamburger span:nth-of-type(1){
    top: 30px;
    right: 30px;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: calc(24px * 1.414);
}
.open #hamburger span:nth-of-type(2) {
    width: 0;
}
.open #hamburger span:nth-of-type(3) {
    top: 30px;
    right: 30px;
    transform: translate(-50%, -50%) rotate(45deg);
    width: calc(24px * 1.414);
}


.header .logo {
    display: block;
    margin: auto;
    height: 60px;
}
