@charset "UTF-8";


#header {
    padding: 2rem;
}

/*#menu {
    background: rgba(0,0,0,.9);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    text-align: center;
    top: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 1100;
    background-image: ;
    background-size: cover;
}*/
#menu {
    background: rgba(0,0,0,.74);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 1100;
    background-image: ;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-content: center;
}
#menu.open {
    opacity: 1;
    visibility: visible;
}
#menu.open li:nth-child(1) {
    animation-delay: 0.1s;
}
#menu.open li:nth-child(2) {
    animation-delay: 0.2s;
}
#menu.open li:nth-child(3) {
    animation-delay: 0.3s;
}
#menu.open li:nth-child(4) {
    animation-delay: 0.4s;
}
#menu.open li:nth-child(5) {
    animation-delay: 0.5s;
}
#menu.open li:nth-child(6) {
    animation-delay: 0.6s;
}
#menu.open li:nth-child(7) {
    animation-delay: 0.7s;
}
#menu.open li:nth-child(8) {
    animation-delay: 0.8s;
}
#menu.open li:nth-child(9) {
    animation-delay: 0.9s;
}
#menu.open li:nth-child(10) {
    animation-delay: 1s;
}
#menu.open li {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}
#menu ul:hover a {
    opacity: 0.5;
}
#menu ul a {
    -webkit-transform: translateZ(0);
    transition: opacity 0.3s ease-in-out;
}
#menu ul a:hover {
    opacity: 1;
}
#menu .main-nav {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
#menu .main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

#menu .main-nav .bd-t {
    border-top: 1px solid #ccc;
}

#menu .main-nav a {
    color: #ffffff;
    display: block;
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
}
#menu .main-nav a:before {
content: "〉";
display: inline-block;
position: relative;
color: darkturquoise;
margin-right: -5px;
}

#menu .main-nav a:first {
    padding-top: 0;
}
#menu .menu-footer {
    padding: 2rem;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}
#menu .menu-footer ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
#menu .menu-footer ul li {
    display: inline;
    margin: 0 1rem;
}
#menu .menu-footer a {
    color: #ffffff;
    text-decoration: none;
}

.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    float: right;
    height: 26px;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 26px;
    z-index: 1110;
}

/* 20190315 追加 */
/*.toggle-menu p {
    padding: 10px;
    font-size: 1.4rem;
    font-weight: 900;
    border: 1px solid #fff;
    color: #fff;
}*/

.toggle-menu span {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 13px );
    position: absolute;
    top: calc(50% - 1px );
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    width: 26px;
}
.toggle-menu span:before, .toggle-menu span:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    width: 26px;
}
.toggle-menu span:before {
    top: 7px;
}
.toggle-menu span:after {
    top: -7px;
}
.toggle-menu.active span {
    background-color: transparent;
    transition: background 0.2s ease-out;
}
.toggle-menu.active span:before, .toggle-menu.active span:after {
    transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
}
.toggle-menu.active span:before {
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg);
}
.toggle-menu.active span:after {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
}

@media screen and (max-width: 768px) {

    #menu .main-nav ul {
        justify-content: center;
        align-items: flex-start;
        flex-flow: column;
    }
    #menu .main-nav .bd-t {
        border-top: none;
    }
}