/* special01 */
.special01 {
    padding-top: 185px;
    text-align: center;
}
.special01 h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 140%;
    margin: 30px auto 20px;
}
.special01 h2 span {
    color: var(--main-color);
}
.special01 > div > p {
    font-size: 24px;
    font-weight: 500;
    color: #666;
}
.special01_con {
    position: relative;
    margin: 75px auto 30px;
}
.special01_txt {
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}
.special01_txt h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 5px;
}
.special01_txt p {
    font-size: 20px;
    font-weight: 400;
}
.special01_txt p:first-of-type {
    margin-bottom: 72px;
}
.special01_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
    background-color: var(--sub-color);
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.2s;
}
.special01_btn span {
    font-weight: 700;
}
.special01_btn img {
    margin-left: 20px;
}
.special01_btn:hover {
    background-color: #333;
}

/* modal */
html.modal-active,
body.modal-active {
    overflow: hidden;
}
.modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 99999;
}
.modal-container.on {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on .modal-background .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on.out .modal-background .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}
.modal-container .modal-background .modal {
    display: inline-block;
}
.modal-container .modal-background .modal .inner {
    height: 100%;
    background-color: #fff;
    padding: 38px 60px;
    text-align: left;
}
.modal-container .modal-background .modal .inner li {
    font-size: 18px;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 25px;
}
.modal-container .modal-background .modal .inner li:last-of-type {
    margin: 0;
}
.modal-container .modal-background .modal .inner li span {
    font-weight: 700;
}
.modal-close {
    cursor: pointer;
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}
@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@media (max-width: 1580px) {
    .modal-container .modal-background .modal {
        width: 90%;
        padding: 40px 4vw;
        padding-right: 2vw;
    }
}
.special01_pop_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: var(--title-color);
}
#special01_pop h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* special02 */
.special02 {
    padding: 262px 0px 155px;
    text-align: center;
}
.special02 h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 36px auto 20px;
}
.special02 h2 span {
    color: var(--title-color);
}
.special02 p {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 70px;
    line-height: 180%;
}

/* special03 */
.special03 {
    background-image: url(../img/sub/special03_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 144px 0px 194px;
}
.special03 h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--title-color);
}
.special03 > div > p {
    font-size: 20px;
    font-weight: 500;
    margin: 20px auto 60px;
    line-height: 180%;
}
.special03_con {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
}
.special03_con h3 {
    font-size: 30px;
    font-weight: 700;
    color: #617ca5;
    margin: 48px auto 19px;
}
.special03_con p {
    font-size: 18px;
    font-weight: 500;
    color: #666;
}

/* special04 */
.special04 {
    background-image: url(../img/sub/special04_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 137px 0px 260px;
    color: #fff;
}
.special04_wrap {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
}
.special04_sleep_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 220px;
    background-color: #fff;
    border-radius: 20px;
    padding-left: 210px;
    padding-right: 200px;
}
.special04_sleep_title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #617ca5;
}
.special04_sleep_title p {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 180%;
}
.special04_sleep_title p span {
    color: #617ca5;
    font-weight: 700;
}
.special04_sleep_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    margin: 137px auto 0px;
}
.special04_sleep_con h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 140%;
}
.special04_sleep_con h3 span {
    color: #d6e7ff;
}
.special04_sleep_con p {
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
    margin: 34px 0px 86px;
}
.special04_sleep_con ul {
    max-width: 560px;
    width: 100%;
    display: inline-block;
}
.special04_sleep_con li {
    background-color: #f5f5f5;
    border-radius: 14px;
    line-height: 62px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}
.special04_sleep_con li:nth-of-type(2) {
    margin: 12px 0px;
}
.special04_sleep_con li img {
    margin-right: 20px;
}
.special04_sleep_con > img {
    margin-right: -68px;
}
.special04_sleep_con a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 190px;
    padding-bottom: 11px;
    border-bottom: 1px solid #fff;
    transition: all 0.2s;
    margin-top: 77px;
}
.special04_sleep_con a:hover {
    width: 210px;
}
.special04_clean {
    padding-top: 170px;
}
.special04_clean_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 220px;
    background-color: #fff;
    border-radius: 20px;
    padding-left: 210px;
    padding-right: 200px;
}
.special04_clean_title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #617ca5;
}
.special04_clean_title p {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 180%;
}
.special04_clean_title p span {
    color: #617ca5;
    font-weight: 700;
}
.special04_clean_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    margin: 137px auto 214px;
}
.special04_clean_txt {
    max-width: 560px;
    width: 100%;
}
.special04_clean_txt h3 {
    font-size: 42px;
    font-weight: 700;
}
.special04_clean_txt p {
    font-size: 20px;
    font-weight: 400;
    margin: 13px 0px 62px;
}
.special04_clean_txt li {
    background-color: #f5f5f5;
    border-radius: 14px;
    line-height: 62px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: default;
    transition: all 0.2s;
}
.special04_clean_txt li:nth-of-type(2) {
    margin: 12px 0px;
}
.special04_clean_txt li img {
    margin-right: 20px;
}
.special04_clean_txt li:hover {
    color: #fff;
    background-color: var(--main-color);
}
.special04_clean_txt li:hover img {
    filter: brightness(100);
}
.special04_clean_bot {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.special04_clean_bot h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}
.special04_clean_bot p {
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
}

/* special05 */
.special05 {
    padding-top: 192px;
}
.special05 h2 {
    font-size: 42px;
    font-weight: 400;
}
.special05 h2 span {
    color: var(--title-color);
    font-weight: 700;
}
.special05_con {
    margin-top: 35px;
    padding: 106px 0px 189px;
    background-image: url(../img/sub/special05_con_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.special05_con h3 {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 700;
    color: #617ca5;
}
.special05_con h3 img {
    margin-right: 20px;
}
.special05_con p {
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
}
.special05_con p:first-of-type {
    margin-bottom: 72px;
}
