:root {
    --main-theme-color: #3C4A60;
    --accent-color: #FD5B32;
    --main-column: 1200px;
    --sub-column: 1024px;
}

* {
    box-sizing: border-box;
    color: var(--main-theme-color);
    font-family: 'Noto Sans JP', sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    background: #F9FAFC;
    overflow-x: hidden;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

.ft-lato {
    font-family: 'Lato', sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%!important;
}

/* header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 0;
    width: 95%;
}
.header-menu,
.hamburger-panel,
.nav-bg {
    display: none;
}
.header-left {
    display: inline-block;
    width: 250px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 250px);
}
.nav {
    width: 100%;
    display: block;
}
.nav-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-list,
.nav-sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-list li:not(:last-child) {
    margin-right: 25px;
}
.nav-list li,
.nav-list li a,
.nav-sp li,
.nav-sp li a {
    color: var(--main-text-color);
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}
.nav-sp li {
    margin-right: 15px;
}
.nav-list .contact a,
.nav-sp .contact a {
    background: rgb(255,147,0);
    background: linear-gradient(71deg, rgba(255,147,0,1) 0%, rgba(255,95,75,1) 100%);
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 15px;
    margin: auto;
    position: relative;
    text-align: center;
    width: 100%;
}
.nav-list .usermenu a,
.nav-sp .usermenu a {
    color: #4887FA;
    display: inline-block;
    text-align: center;
}
.nav-list .usermenu a.company,
.nav-sp .usermenu a.company {
    border: 1px solid #4887FA;
    border-radius: 50px;
    margin: 0 0 5px;
    padding: 3px 10px;
}
.nav-list .usermenu a.student,
.nav-sp .usermenu a.student {
    border-bottom: 1px solid #4887FA;
}
.sp-btn {
    display: none;
}
.nav-sp {
    display: none;
}
@media (max-width: 1468px) {
    .nav-list li,
    .nav-list li a {
        font-size: 14px;
    }
    .nav-list .contact a {
        font-size: 14px;
        padding: 8px 20px;
    }
}
@media (max-width: 1268px) {
    .header-left {
        width: 180px;
    }
    .header-right {
        width: calc(100% - 180px);
    }
    .nav-sp {
        display: flex;
    }
    /* hamberger */
    .header-menu {
        display: block;
        height: 25px;
        position: relative;
        text-align: center;
        width: 25px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 24px;
        height: 20px;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--main-theme-color);
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 1px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 11px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -9px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -12px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    .nav {
        background: #DAE0E6;
        height: 100vh;
        padding: 100px 0;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 300px;
        z-index: 99999;
    }
    .nav.open {
        right: 0;
    }
    .nav-inner {
        padding: 0 25px;
    }
    .nav-inner,
    .nav-list {
        display: block;
    }
    .nav-list {
        margin-right: 0;
    }
    .nav-list li {
        text-align: center;
        width: 100%;
    }
    .nav-list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }
    .nav-list li a {
        font-size: 14px;
    }
    .contact-btn {
        display: none;
    }
    .sp-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp-btn a {
        display: block;
        line-height: 0;
        width: 50%;
    }
    .sp-btn a img {
        max-width: none;
        width: 100%;
    }
    .nav-bg {
        background: rgb(0 0 0 / 65%);
        display: none;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
}
@media (max-width: 568px) {
    .nav-sp .usermenu {
        display: none;
    }
}
@media (max-width: 468px) {
    .nav-sp .contact a {
        font-size: 12px;
        padding: 10px;
    }
}
@media (max-width: 428px) {
    .nav-sp {
        display: none;
    }
}

/* footer */
.footer {
    background: var(--main-theme-color);
    margin-top: auto;
    padding: 80px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-left {
    width: 25%;
}
.footer-right {
    width: 75%;
}
.footer-left .footer-logo {
    display: block;
    margin: 0 0 35px;
}
.footer-left p,
.footer-left p a {
    color: #fff;
    font-size: 14px;
    line-height: 2em;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 45px;
}
.footer-links li {
    display: inline-block;
}
.footer-links li:not(:last-child) {
    margin-right: 35px;
}
.footer-links li a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.footer-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.footer-contact {
    margin-right: 25px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.footer-contact a {
    background: rgb(255,147,0);
    background: linear-gradient(71deg, rgba(255,147,0,1) 0%, rgba(255,95,75,1) 100%);
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    margin: auto;
    position: relative;
    text-align: center;
    width: 100%;
}
.copyright {
    margin: 25px 0 0;
    text-align: right;
}
.copyright p {
    color: #fff;
    font-size: 12px;
}
@media screen and (max-width: 1165px) {
    .footer-left {
        padding-left: 0;
        text-align: center;
        width: 100%;
    }
    .footer-right {
        padding-top: 35px;
        width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links {
        justify-content: space-between;
    }
    .footer-links li {
        margin-top: 25px;
        text-align: center;
        width: 48%;
    }
    .footer-links li:not(:last-child) {
        margin-right: 0;
    }
    .footer-links li:nth-child(-n+2) {
        margin-top: 0;
    }
    .footer-contact {
        margin: 0 0 25px;
        max-width: none;
    }
    .footer-tel {
        max-width: none;
    }
}

#main {
    margin-top: 100px;
    width: 100%;
    margin-right: 0%;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 100px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

#main.size-s {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.common-ttl{
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.common-btn{
    background: rgb(255,147,0);
    background: linear-gradient(71deg, rgba(255,147,0,1) 0%, rgba(255,95,75,1) 100%);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 15px;
    margin: auto;
    position: relative;
    text-align: center;
    width: 100%;
    border: none;
    max-width: 300px;
}

.console {
    display: block;
    color: red;
    font-weight: bold;
    font-size: 14px;
}

.hide {
    /* visibility: hidden; */
    display: none;
}

.price-txt{
    text-align: center;
}
.price-table-wrap{
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
}
.price-table{
    width: 100%;
}
.price-table th{
    padding: 20px;
    color: #fff;
    background: #4887FA;
    border: 1px solid #f1f1f1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}
.price-table td{
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f1f1;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}
.price-table td span{
    font-size: 13px;
}