html {
    font-size: 100%;
}

body {
    color: #24292e;
    font-family:メイリオ;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.3rem;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
    font-size: 1.2rem;
}

h2 {
    font-size: 2.5rem;
    color: #046bd1;
    font-weight:600;
}

h3 {
    font-size: 1.8rem;
    color: #046bd1;
    font-weight:500;
}

.site-title {
    line-height: 1px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.site-title a {
    color: #ffffff;
    display: block;
    margin-left: 10px;
}

/* ヘッダ */
#header {
    max-width: 100%;
    background-color:#03284d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-right: 4%;
    height: 65px;
}

/* ヘッダ2 */
.global-list {
    display: flex;
    animation-delay: 0.2s;
}

.global-item1 {
    padding-top: 2%;
    padding-left: 3%;
    padding-right: 2%;
    font-size: 1.0rem;
    margin-left: 4%;
}

.global-item1 a {
	background: #16244e;
    color: #ffff;
    animation-delay: 0.2s;
}

.global-item2 {
    padding: 2% 0;
    font-size: 1.0rem;
    margin-left: 4%;
}

.global-item2 a {
	background: #16244e;
    color: #ffff;
}

.fadeInTrigger {
    opacity: 0;
}

.fadeInLeft {
    animation-name: fadeInLeft1;
    animation-duration: 1.0s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;

    z-index: 10000;
    background: #16244e;
    text-align:right;
    right: 0;
    position: fixed;
    top: 0;
    width: 50%;
}

@keyframes fadeInLeft1 {
    0% {
        opacity: 1;
        transform: translateX(200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft1;
    animation-duration: 1.0s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 1;

    background: #16244e;
    text-align:right;
    right: 0;
    position: fixed;
    top: 0;
    width: 50%;
}

@keyframes fadeOutLeft1 {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(200px);
    }
}