body {
    color: #181b39;
    background: #f5f5f5;
    font-feature-settings: "palt";
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
p, ul, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
}
h1, h2, h3 {
    margin: 0;
    font-family: 'Pathway Gothic One', sans-serif;
}
a {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}
a {
    display: block;
    width: 100%;
    height: auto;
    color: #050505;
    text-decoration: none;
}
.gray {
    background: #F8F8F8;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    p {
        font-size: 14px;
    }
}

/* common */
section {
    width: 100%;
    margin: 0 auto;
}

section h2 {
    color: #181b39;
    font-size: 80px;
    margin-bottom: 40px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.btn_l {
    background: #181b39;
    text-align: center;
    padding: 18px 0;
    position: relative;
    border: 2px solid #181b39;
    outline-offset: -2px;
}

.btn_l a {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}

.btn_l::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 40px;
    top: 45%;
}

.btn_l:hover {
    background: #fff;
    border: 2px solid #181b39;
    outline-offset: -2px;
}

.btn_l a:hover {
    color: #181b39;
    transition: all 0.3s;
}

.btn_l:hover::before {
    border-top: 2px solid #181b39;
    border-right: 2px solid #181b39;
}

.btn_m {
    display: inline-block;
    background: #fff;
    border: 2px solid #181b39;
    padding: 6px 30px;
    position: relative;
}

.btn_m a {
    font-size: 16px;
    color: #181b39;
    font-weight: bold;
    padding-right: 5px;
}

.btn_m::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #181b39;
    border-right: 2px solid #181b39;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 8px;
    top: 36%;
}

.btn_m:hover {
    background: #181b39;
    transition: all 0.3s;
}
.btn_m a:hover {
    color: #fff;
}
.btn_m:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 768px) {
    section h2 {
        font-size: 48px;
        margin-bottom: 24px;
    }
    .btn_l {
        padding: 8px 0;
    }
    .btn_l a {
        font-size: 20px;
    }
    .btn_l::before {
        top: 35%;
    }
    .btn_m {
        width: 100%;
        padding: 4px 0;
        text-align: center;
    }
    .btn_m a {
        font-size: 15px;
    }
}
