@charset "UTF-8";

/*------------------------------
共通
------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style-type: none;
}

ol li {
    list-style-type: none;
}

i {
    font-style: normal;
}


html {
    font-size: clamp(2px, min(0.8vw, 1.3vh), 12px);
}

body {
    font-family: 'Noto Sans JP', sans-serif, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica;
    line-height: 1.7;
    background-color: #fff;
    color: #333;
}

.relative {
    position: relative;
}

button,
a {
    cursor: pointer;
    transition-duration: 300ms;
}


.wrapper {
    width: 65%;
    max-width: 105vh;
}

.maxPer {
    height: 100%;
    width: 100%;
}

main {
    background-image: linear-gradient(0deg, rgb(216 238 236), rgb(231 245 250));
}

/* .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
} */

.txt-blue {
    color: #1d2088;
}

.txt-accent {
    color: #ff4c00;
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.absoluteCenter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.spf {
    display: none;
}

@media screen and (max-width: 767px) {
    html {
        width: 100%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .spf {
        display: flex;
    }
}