header {
    position: sticky;
    width: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
}
header .header {
    padding: 20px 0;
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header h1 {
    width: 120px;
}
header .header h1 a {
    width: 100%;
}
header .header h1 a img {
    width: 100%;
}
header .header nav {
    display: flex;
    gap: 40px;
}
header .header nav a {
    padding: 5px 0;
    font-size: 20px;
    font-weight: 600;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 100px;
}
main .bnr {
    margin-bottom: 60px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 20px;
    background-color: #ffe98f;
    background-image: url(../img/main-img-1.png);
    background-position: right 80px center;
    background-size: 280px;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 80px 60px;
}
main .mobile {
    display: none;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 0;
    height: 40rem;
    background-size: 18rem;
    background-position: bottom 2rem center;
    gap: 1.5rem !important;
}
main .mobile h2 {
    font-size: 2.4rem !important;
    width: 70% !important;
}
main .mobile p {
    font-size: 1.6rem !important;
    width: 70% !important;
}
main .bnr h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    width: 50%;
    font-family: 'SUIT-ExtraBold';
}
main .bnr p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    width: 50%;
}
main .menu {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
}
main .menu a {
    width: calc(50% - 10px);
    font-size: 30px;
    font-weight: 800;
    height: 200px;
    border-radius: 10px;
    background-color: #f5f6f8;
    background-image: url(../img/main-icon-1.png);
    background-position: right 40px center;
    background-size: 100px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 40px;
}
main .menu a:nth-of-type(2) {
    background-image: url(../img/main-icon-2.png);
}
main .menu a:nth-of-type(3) {
    background-image: url(../img/main-icon-4.png);
}
main .menu a:nth-of-type(4) {
    background-image: url(../img/main-icon-3.png);
}
main .menu a:nth-of-type(5) {
    background-image: url(../img/main-icon-5.png);
}
main .menu a:nth-of-type(6) {
    background-image: url(../img/main-icon-6.png);
}
main > h2 {
    font-size: 24px;
    font-weight: 800;
    padding: 25px 0;
    border-radius: 10px;
    background: #ffe98f;
    text-align: center;
    margin-bottom: 60px;
}
main > h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fcac2b;
    margin-bottom: 15px;
}
main > pre {
    line-height: 1.4;
    margin-bottom: 60px;
    font-size: 18px;
}
main > pre em {
    font-weight: 800;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}
main > p {
    line-height: 1.4;
    font-size: 18px;
    padding: 20px 20px;
    border-radius: 10px;
    background: #f5f6f8;
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    header {
        padding: 0 1.5rem;
    }
    main {
        padding: 0 1.5rem 10rem;
    }
    main .menu a {
        height: auto;
        padding: 4rem 2rem;
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 768px) {
    header .header {
        flex-flow: column nowrap;
        gap: 20px;
    }
    header .header h1 {
        width: 8rem;
    }
    header .header nav {
        gap: 2rem;
    }
    header .header nav a {
        font-size: 1.8rem;
    }
    main .menu a {
        background-size: 5rem;
        background-position: right 1.5rem bottom 2rem;
        padding: 2rem 1.5rem;
        height: 12rem;
        display: block;
    }
    main .bnr {
        display: none;
    }
    main .mobile {
        display: flex;
    }
}