.main-body {
    position: relative;
    min-height: 100vh;
    margin-bottom: 60px;
}

.main-content > div h1 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.main-content > div .button-div {
    width: 964px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.main-content > div .button-div div {
    width: 100%;
    text-align: center;
}

.main-content > div .button-div div.sub {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.main-content > div .button-div div.sub.hide {
    display: none;
}

.main-content > div .button-div div button {
    width: 100px;
    height: 46px;
    border-radius: 32px;
    border: solid 1px #00aeef;
    background-color: #ffffff;
    color: #00aeef;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
}

.main-content > div .button-div div.sub button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    border: 1px solid #06377b;
    color: #06377b;
}

.main-content > div .button-div div button.active {
    border: solid 1px #00aeef;
    background-color: #00aeef;
    color: #ffffff;
}

.main-content > div .button-div div.sub button.active {
    border: solid 1px #06377b;
    background-color: #06377b;
}

.select-div {
    display: none;
    justify-content: center;
    width: 100%;
    margin-bottom: 5vw;
    padding: 0px 20px;
}

.select-div select {
    display: block;
    width: 50%;
    height: 50px;
    margin: 0 auto;
    background-color: #fff;
    background-image: url(/img/bottom-arrow.png);
    background-position: 95% 50%;
    background-repeat: no-repeat;
    border: 1px solid #222222;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    color: #595959;
    text-align: center;
}

.select-div select.hide {
    display: none;
}

.select-div select#categorySub {
    margin-top: 20px;
}

.search-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.search-div div {
    display: flex;
    border: 1px solid #595959;
    border-radius: 5px;
}

.search-div input {
    width: 200px;
    height: 40px;
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
}

.search-div button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-left: 1px solid #595959;
}

.list-div {
    position: relative;
    padding: 0 17px;
    margin: 0 auto 20px;
}

.list-div .question {
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 4px 1px rgb(34 34 34 / 25%);
    position: relative;
    cursor: pointer;
}

.list-div .question.none {
    display: none;
}

.list-div .question .title-div {
    position: relative;
    width: 100%;
}

.list-div .question .title-div .Q {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    text-align: center;
    font-family: 'Lato';
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    background: #06377b;
}

.list-div .question .title-div .title {
    display: block;
    width: 75%;
    top: 0px;
    margin: 0 auto 0 50px;
    font-size: 16px;
}

.list-div .question .title-div img {
    position: absolute;
    width: 25px;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.list-div .question .title-div img.plus {
    display: block;
}

.list-div .question.active .title-div img.plus {
    display: none;
}

.list-div .question .title-div img.minus {
    display: none;
}

.list-div .question.active .title-div img.minus {
    display: block;
}

.list-div .question .answer {
    position: relative;
    display: none;
    margin-top: 30px;
    cursor: auto;
}

.list-div .question.active .answer {
    display: block;
}

.list-div .question .answer div .A {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    font-family: 'Lato';
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    background: #00aeef;
}

.list-div .question .answer div p {
    margin-left: 50px;
    font-size: 14px;
}

.list-div .question .answer div p img {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.list-div .question .answer div p img:not(:first-of-type) {
    margin-top: 100px;
}

.list-div .question .answer div p span {
    display: block;
    width: 100%;
    text-align: center;
}

.list-div .question .answer div p span:last-of-type {
    margin-bottom: 50px;
}

.list-div .question .answer div p button {
    display: block;
    width: 100px;
    height: 35px;
    margin: 20px 0;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 16px;
}

.paging {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
}

.paging a {
    margin: 0 15px;
    font-size: 18px;
    font-weight: 300;
    color: #6a6a6a;
}

.paging a.this {
    color: black;
    font-weight: 600;
}