/* CSS Document */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: auto !important;
}
a {
    cursor: pointer;
}
/* ========================================
    ヘッダー用 start
========================================= */
header {
    border-bottom: 2px solid #dbdbdb;
    height: auto;
}
header #headerArea {
    width: calc(100% - 30px);
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
}
header #logoImage {
    width: 352px;
}
header #headerLinkArea {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
header #headerLinkArea .headerLink {
    margin-left: 13px;
    color: inherit;
    text-decoration: none;
    display: block;
}
header #headerLinkArea .headerLink:before {
    content: "\25B6";
    color: #1da1f2;
}
header #menuButton {
    display: none;
}
header #menuButton #menuButtonLink {
    background-color: #1da1f2;
}
header #menuButton #menuButtonLink #menuButtonDummy, 
header #menuButton #menuButtonLink #menuButtonDummy:after,
header #menuButton #menuButtonLink #menuButtonDummy:before {
    background: #fff;
}
nav {
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    width: 960px;
}
@media screen and (max-width: 767px){
    header #logoImage {
        max-width: 80%;
    }
    header {
        width: 100%;
    }
    header #headerArea {
        display: block;
    }
    header #headerLinkArea {
        display: none;
    }
    header #menuButton {
        display: block;
        position: absolute;
        top: 13px;
        right: 11px;
    }
    header #menuButton #menuButtonLink {
        display: inline-block;
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 10%;
    }
    header #menuButton #menuButtonLink #menuButtonDummy {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 3px;
        margin: -2px 0 0 -10px;
        transition: .2s;
    }
    header #menuButton #menuButtonLink #menuButtonDummy:after,
    header #menuButton #menuButtonLink #menuButtonDummy:before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 20px;
        height: 3px;
        transition: .3s;
    }
    header #menuButton #menuButtonLink #menuButtonDummy:before {
        margin-top: -10px;
    }
    header #menuButton #menuButtonLink #menuButtonDummy:after {
        margin-top: 7px;
    }
    header #menuButton.close #menuButtonDummy {
        background: transparent!important;
    }
    header #menuButton.close #menuButtonDummy:after,
    header #menuButton.close #menuButtonDummy:before {
        margin-top: 0!important;
    }
    header #menuButton.close #menuButtonDummy:before {
        transform: rotate(-45deg);
    }
    header #menuButton.close #menuButtonDummy:after {
        transform: rotate(-135deg);
    }
    nav.open {
        height: 114px;
        overflow: hidden;
        background: #b5e7ff;
        visibility: visible;
        width: 100%;
    }
    nav.open ul li a {
        margin-left: 13px;
        color: inherit;
        text-decoration: none;
        display: block;
        font-size: 15px;
        line-height: 1.8;
    }
    nav.open ul li a:before {
        content: "\25B6 \FE0E";
        color: #1da1f2;
    }
    nav.open ul li {
        padding: 5px 0;
        border-bottom: 1px solid #fff;
    }
}
/* ========================================
    ヘッダー用 end
========================================= */


/* ========================================
    フッター用 start
========================================= */
footer {
    background: #F4F4F4;
    border-top: 1px solid #dbdbdb;
    padding: 10px 0;
}
footer .GlobalLink {
    margin-left: 30px;
}
.GlobalLink ul {
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 40px;
}
.GlobalLink a:hover {
    text-decoration: none;
}
footer ul li a {
    display: block;
    border-left: 1px solid #786e6a;
    padding-left: 11px;
    padding-right: 11px;
    color: #786e6a;
    text-decoration: none;
    margin-bottom: 3px;
}
footer .CopyArea {
    width: calc(100% - 60px);
    margin: 5px auto 0;
    color: #786e6a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .CopyRight {
	margin-right: 0;
	margin-left: auto;
}
/* ========================================
    フッター用 end
========================================= */
