header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: #fff;
    margin-bottom: 1.5rem;
}
header h1 {
    width: 10rem;
}
header h1 a {
    width: 100%;
}
header h1 a img {
    width: 100%;
}
header h1 p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header h1 p span {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}
header h1 p button img {
    height: 1.8rem;
    margin-right: 1.5rem;
}
header #menuBtn {
    width: 2rem;
    position: absolute;
    right: 1.5rem;
}
header #menuBtn img {
    width: 100%;
}

.navBg {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
}
nav {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1.5rem;
}
nav button#closeBtn {
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav button#closeBtn img {
    width: 2rem;
}
nav .navTop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 1.3rem 0;
}
nav .navTop img {
    width: 1.3rem;
}
nav .subMenu-wrapper {
    width: 100%;
}
nav .subMenu-wrapper .subMenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}
nav .subMenu-wrapper .subMenu a.navSub {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    padding: 1rem 0 1rem 2rem;
    border-radius: 1rem;
    position: relative;
}
nav .subMenu-wrapper .subMenu a.navSub::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    top: 0.8rem;
    color: #5453ec;
    font-size: 2rem;
    font-weight: 600;
    display: none;
}
nav .subMenu-wrapper .subMenu a.navSub:active {
    background-color: #e4ecff;
}
nav .subMenu-wrapper .subMenu a.navSub:active::before {
    display: inline-block;
}
nav .subMenu-wrapper .subMenu a.navSub.active::before {
    display: inline-block;
}


footer {
    z-index: 100;
    background-color: #4d4d4d;
    width: 100%;
    padding: 1rem 0;
}
footer p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #9f9f9f;
    text-align: center;
    margin-bottom: 1.5rem;
}
footer pre {
    font-size: 1.3rem;
    font-weight: 400;
    color: #9f9f9f;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

main {
    padding: 0 1.5rem 5rem;
    min-height: calc(100vh - 120.75px);
    position: relative;
}

h2.pageTitle {
    font-size: 1.8rem;
    font-weight: 700;
}
.home.top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    background-image: url(../img/main_bg.png);
    background-size: cover;
    margin-top: -1.5rem;
    margin-bottom: 4rem;
}
.home.top p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #7f7e81;
    line-height: 1.3;
    margin-bottom: 2rem;
}
.home.top p b {
    font-size: 1.4rem;
    font-weight: 500;
    color: #5a59ed;
}
.home.top a.aButton {
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.home.top a.aButton.purple {
    font-weight: 400;
    color: #fff;
}
.home.top a.aButton.yellow {
    font-weight: 400;
    color: #000;
}
.home.top h2.bigTitle {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.home.top pre {
    font-size: 1.6rem;
    font-weight: 500;
    color: #7f7e81;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.purple {
    background-color: #5453ec;
}
.yellow {
    background-color: #e1f44b;
}
.sky {
    background-color: #78a2ff;
}
.blue {
    background-color: #518efc;
}
.green {
    background-color: #01aeaa;
}

.title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}
.title img {
    width: 2rem;
    margin-right: 0.5rem;
}
.title h2 {
    font-size: 2rem;
    font-weight: 700;
}

.btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.btn-wrap.slide {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 1rem;
}
.btn-wrap.slide::-webkit-scrollbar {
    display: none;
}
.aButton {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
}
.aButton.one {
    width: 100%;
}
.aButton.two {
    width: calc(100% / 2 - 1rem);
    color: #000;
    font-weight: 500;
    padding: 3rem 1.5rem;
}
.section.home .aButton.two {
    justify-content: center;
}
.aButton.two img {
    width: 3rem;
    margin-right: 1rem;
}
.aButton.sky img {
    width: 3em;
    margin-right: 1rem;
}
.aButton.blue img {
    width: 4rem;
    margin-right: 1rem;
}
.aButton.purple img {
    height: 3.5rem;
    margin-right: 1rem;
}

.aButton.slide {
    width: 46%;
    min-width: 46%;
    height: 13rem;
    font-size: 1.7rem;
    color: #000;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    border: 0.1rem solid #ececec;
}
.aButton.slide img {
    width: 7rem;
    margin-bottom: 1rem;
}
.aButton.slide:nth-of-type(3) img {
    width: 6.5rem;
}
.aButton.slide:nth-of-type(4) img {
    width: 5.5rem;
    margin-bottom: 1rem;
}

::-webkit-scrollbar {
    display: none;
}
::placeholder {
    color: #a9a9a9;
    font-weight: 300;
}





/* sub */
.section.sub .img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.section.sub .img-wrap img {
    width: 80%;
}
.section.sub pre.sub-top {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
}
.section.sub h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00aaa5;
    margin-bottom: 2rem;
}
.section.sub pre.content {
    font-size: 1.5rem;
    font-weight: 400;
    color: #585858;
    margin-bottom: 3rem;
    line-height: 1.3;
}
.section.sub pre.content span.point1 {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #aeb92f;
    margin-bottom: 0.5rem;
}
.section.sub hr {
    border: 0;
    height: 0.4rem;
    background-color: #e6e6e6;
    margin: 0 -1.5rem 3rem -1.5rem;
}




/* list */
.search-wrap {
    width: 100%;
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}
.search-wrap input.searchInput {
    width: 83%;
    height: 100%;
    border-radius: 1rem;
    border: 0.1rem solid #f3f3f3;
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}
.search-wrap button.searchBtn {
    width: 14%;
    height: 100%;
    border-radius: 1rem;
    background-color: #5453ec;
    padding: 1rem;
}
.search-wrap button.searchBtn img {
    width: 2rem;
}
.category-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.category-wrap2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    gap: 1.5rem;
}
.category-wrap .category-row{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    gap: 1rem;
}
.category {
    display: inline-block;
    width: fit-content;
    white-space: nowrap;
    font-size: 1.7rem;
    font-weight: 400;
    color: #cccccc;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    border: 0.1rem solid #f3f3f3;
    background-color: #fff;
}
.category.active {
    font-weight: 400;
    color: #fff;
    border: 0;
    background-color: #78a2ff;
}

.result-wrap {
    margin-top: 5rem;
}
.result-wrap h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.result-wrap .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.result-wrap .title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00aaa6;
    line-height: 1.2;
}
.result-wrap .title button.openModal {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 3rem;
    background-color: #e1f44b;
}
.result-wrap p.point1 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #aeb92f;
    margin-bottom: 0.5rem;
}
.result-wrap pre {
    font-size: 1.6rem;
    font-weight: 400;
    color: #585858;
    margin-bottom: 3rem;
    line-height: 1.3;
}
.result-wrap pre.last {
    margin-bottom: 5rem;
}
.result-wrap hr {
    border: 0;
    height: 0.3rem;
    background-color: #e5e5e5;
    margin: 0 -1.5rem 3rem;
}
.result-wrap hr:last-of-type {
    display: none;
}

.modal {
    display: none;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 3rem);
    max-height: 60rem;
    overflow-y: scroll;
    background: #fff;
    border-radius: 1rem;
    padding: 3rem 2rem;
}
.modal .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}
.modal .title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4241ea;
    line-height: 1.2;
}
.modal .title button img {
    width: 1.7rem;
    margin: 0;
    margin-left: 0.5rem;
}
.modal p.header {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}
.modal .middle {
    margin-bottom: 2rem;
}
.modal .content {
    margin-bottom: 2rem;
}
.modal pre {
    font-size: 1.6rem;
    font-weight: 500;
    color: #5a5a5a;
    line-height: 1.5;
}

.no-result {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -5rem;
}
.no-result img {
    width: 20%;
    margin-top: 5rem;
    margin-bottom: 1.5rem;
}
.no-result pre {
    font-size: 1.8rem;
    font-weight: 500;
    color: #747474;
    line-height: 1.2;
    text-align: center;
}