/* Hero */

.hero {
    min-height: 670px;
    background: url('../images/hero-visual.png') no-repeat center top;
    position: relative;
}

.hero_logo {
    display: inline-block;
    margin: 15px 0 0 55px;
    max-width: 328px;
}

.hero_logo:hover {
    opacity: 0.8;
}

.hero__container-pc {
    margin-top: 55px;
}

.hero__container-sp {
    display: none;
}

.hero__container-pc li:nth-child(2) {
    top: -25px;
    position: relative;
}

/* Introduction */

.introduction {}

.introduction__title {}

.introduction__container {
    display: flex;
    justify-content: space-between;
    align-items: start;
}


.introduction__text {
    line-height: 33px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Exam */
.exam-section {
    background: url('../images/exam-bg.png') no-repeat center top;
    position: relative;
    margin-top: -95px;
    padding: 110px 0 0;
    text-align: center;
}

.exam-btn {
    display: inline-block;
    margin: 0 auto 130px;
    max-width: 100%;
}

.exam-section a:hover {
    opacity: 0.8;
}

.exam__container1 {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: start;
    gap: 20px;
    margin-bottom: 50px;
}

.exam__container1.sp-only {
    display: none;
}

.exam__container2.sp-only {
    display: none;
}

.exam__container1 li:nth-child(2) {
    position: absolute;
    top: -70px;
    right: -90px;
}

.exam-text {
    text-align: left;
    margin-bottom: 10px;
}

.exam-image2 {}

.exam-btn2 {
    display: inline-block;
    margin: 58px auto 45px;
    max-width: 100%;
}

.exam__container2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* More */

.more {
    background: url('../images/more-bg.png') no-repeat center top;
    position: relative;
    text-align: center;
}

.more__container1 {
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
    position: relative;
}

.more__container1 li:nth-child(2) {
    position: absolute;
    top: -10px;
    right: 0;
}

.more-text {
    margin: 52px 0;
    text-align: left;
}

.more-btn {
    display: inline-block;
    margin: 0 auto 45px;
    position: relative;
    max-width: 100%;
}

.more-btn:hover {
    opacity: 0.8;
}

.more__container2 {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 125px 0;
}

.more__container2 li:first-child {
    background: var(--color-text-white);
    padding: 50px;
    align-self: center;
}

.more__container2 li:nth-child(2) {
    width: 580px;
    max-width: 100%;
    line-height: 33px;
    text-align: left;
}


/* Fixed Button */
.fixed_btn { 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 20px 20px 15px;
    z-index: 999;
    display: none;
}
.fixed_btn a {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    display: block;
}
.fixed_btn a img { width: 100%; }



/* Footer */

footer {
    text-align: center;
    padding: 60px 0 40px 0;
    font-size: 12px;
    background: var(--color-accent);
    color: var(--color-text-white);
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.footer__nav li {
    position: relative;
}

.footer__nav li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background: var(--color-text-white);
    height: 12px;
}

.footer__nav li a {
    color: var(--color-text-white);
    position: relative;
}

.footer__nav li a:hover {
    text-decoration: underline;
}

.footer_text {
    line-height: 1;
}

.footer-img {
    margin: 20px auto 0;
}