@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

html{
    font-size: 62.5%;
    box-sizing: border-box;
    background: #fff;
    margin-top: 0 !important;
    width: 100%;
}
body {
    color: var(--basic);
    font-family: 'Noto Sans JP', Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Segoe UI", "Helvetica Neue", HelveticaNeue, Meiryo, sans-serif;
    line-height: 1.5em;
    font-size: 1.6rem;
    text-align: justify;
    min-height: 100vh;
    position: relative;
    text-justify : inter-world;
    font-feature-settings: "palt";
}
* {
    box-sizing: border-box;
}
a {
    cursor: pointer;
}
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
.pc{
    display: block;
}
.sp{
    display: none;
}
.sp_450{
    display: none;
}
:root {
    /* 色指定 */
    --basic: #202954;
    --blue:#3772ce;
    --light-blue: #30b0dd;
    --orange: #f86702;
    --gray: #dddddd;
}
.inner {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}
.inner_800 {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.orange {
    color: var(--orange);
}
.blue {
    color: var(--blue);
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.spacer {
    display: block;
    height: 10px;
}

/* ==============================================================
SP(~768px)
============================================================== */
@media screen and (max-width:768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

@media screen and (max-width:450px) {
    .sp_450{
        display: block;
    }
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */
header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: -moz-available;
}
header img {
    max-width: 336px;
}

@media screen and (max-width:768px) {
    header {
        top: 10px;
        left: 10px;
    }
    header img {
        max-width: 182px;
    }
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */
footer .ftr_top {
    width: 100%;
    background: var(--basic);
    padding: 40px 0;
    letter-spacing: 0.1em;
}
footer .ftr_top .ftr_ttl {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #fff;
    padding-bottom: 13px;
    border-bottom: 1px solid #fff;
}
footer .ftr_top .flex {
    margin-top: 10px;
    align-items: center;
}
footer .ftr_top .flex p {
    width: 55%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}
footer .ftr_top .flex a {
    color: #fff;
}
footer .ftr_top .flex .footer_btn {
    display: block;
    width: 43%;
    text-align: center;
    border: 1px solid #fff;
    font-size: 1.4rem;
    padding: 10px 0;
    transition: .3s;
}
footer .ftr_top .flex .footer_btn:hover {
    background: #fff;
    color: var(--basic);
}
footer #copy {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    background: #fff;
    padding: 20px;
}
footer #copy img {
    display: inline-block;
    max-width: 175px;
    margin: 0 0 10px;
}

@media screen and (max-width:768px) {
    footer .ftr_top {
        padding: 20px 0;
    }
    footer .ftr_top .ftr_ttl {
        font-size: 1.2rem;
        line-height: 1.6em;
    }
    footer .ftr_top .flex p, footer .ftr_top .flex .footer_btn {
        width: 100%;
        font-size: 1.1rem;
    }
    footer .ftr_top .flex .footer_btn {
        font-size: 1.2rem;
        margin-top: 10px;
        padding: 8px 0;
    }
    footer #copy {
        font-size: 1rem;
        padding: 15px 5px;
    }
}