@charset "UTF-8";

/* header */

.wrap {
    min-height: 100vh;
    position: relative;
    padding-bottom: 130px;
    /*←footerの高さ*/
    box-sizing: border-box;
    /*←全て含めてmin-height:100vhに*/
}

#top-head {
    padding: 0;
    line-height: 1;
    text-decoration: none;
    font-family: "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans", sans-serif;
    font-weight: bold;
}

#top-head .logo {
    float: left;
    font-size: 36px;
}

#mobile-head {
    background-color: rgb(235, 70, 40);
    width: 100%;
    height: 60px;
    z-index: 999;
    position: relative;
    padding: 10px 15px;
}

#mobile-head .logo-img {
    width: 90px;
    padding-left: 5px;
    padding-top: 10px;
}

/* Toggle Button */

#nav-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 101;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    transition: 0.3s ease-in-out;
}
#nav-toggle p {
    width: 40px;
    font-size: 10px;
    color: #ffffff;
    font-weight: 700;
    top: 20px;
    left: -5px;
    position: absolute;
    transform: scale(0.7);
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 7px;
}
#nav-toggle span:nth-child(3) {
    top: 14px;
}

/* #nav-toggle 切り替えアニメーション */

.open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(-45deg);
}

.open #nav-toggle span:nth-child(2) {
    top: 11px;
    transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(45deg);
}

.open #nav-toggle p {
    display: none;
}
/* global navigation */

#global-nav {
    position: absolute;
    top: 60px;
    width: 85%;
    height: 675px;
    border-bottom-width: 1px;
    right: 0;
    opacity: 0;
    background-color: #ffffff;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#global-nav ul {
    padding: 0;
    list-style: none;
    font-size: 13px;
}

#global-nav ul a {
    display: block;
    background-color: #f2f4ec;
    padding: 20px;
    margin: 7px 0px;
    font-weight: 500;
}

#global-nav ul li:first-child {
    margin-top: 0px;
}

#global-nav ul a li {
    display: flex;
    width: 100%;
    color: #3a3a3a;
    text-decoration: none;
}

.open #global-nav {
    opacity: 100;
}

#nav-name {
    display: block;
    color: #eb6a26;
    font-size: 18px;
    padding: 20px;
    text-decoration: none;
}
/*ダイアログ*/
.logout_dialogue {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #333333;
    background-color: #ffffff;
    z-index: 1000;
    padding: 20px 10px;
    height: 250px;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
}
.logout_title {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 500;
}
.logout_dialogue p {
    text-align: center;
    font-size: 16px;
}
.show {
    display: block;
}
