#wrap {
    min-height: 100vh;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 1rem;
}
header {
    width: 100%;
    height: 5.5rem;
    display: flex;align-items: center;
    padding: 0 1.5rem;
    position: fixed;
    left: 0;
    top: 0;
}
header a img {width:10rem;}

/* index */
#wrap.index {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbf6eb;
}
#wrap.index img {
    width: 60%;
    max-width: 300px;
}


/* home */
#wrap.home {
    background: url('../img/bg.png') no-repeat center / cover;
    padding: 5.5rem 1.5rem 0;

    display: flex;justify-content: space-between;flex-direction: column;
}
#wrap.home2 {
    background: url('../img/bg_2.png') no-repeat center / cover;
}
.content img.home_intro {
    width: 85%;
    margin-top: 2rem;
    max-width: 500px;
}
.content h2 {
    font-size: 1.6rem;
    opacity: .9;
    font-weight: bold;
    color: #fff;
    margin: 2rem 0 5rem;
}
.content span, .content form {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1.8rem;
}
.content label {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    padding: 1rem;
    padding-left: .5rem;
}
.content input {
    width: 100%;
}
input::placeholder {color: #919192;font-size: 1.3rem;}
input[type="text"], input[type="number"], input[type='date'] {
    border-radius: .5rem;
    border: none;
    background-color: rgba(255, 255, 255, .7);
    padding: 1rem 1rem;
    font-size: 1.6rem;
}
.content span p {
    font-size: 1.4rem;
    line-height: 1.4;
    position: absolute;
    right: .5rem;
    color: #fff;
    top: calc(100% + 1rem);
}
#searchBtn, #anotherResult {
    position: fixed;
    left: 1.5rem;
    bottom: 3rem;
    width: calc(100% - 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .7);
    margin-top: 1rem;
    color: #696767;
    border: none;
    font-weight: 600;
    padding: 1.8rem 2rem;
    border-radius: .7rem;
    font-size: 1.6rem;
    transition: background-color 0.1s ease;
}
#searchBtn img {width: 1em;margin-left: 1rem;}


/* result */
.result {padding: 1rem 3rem 8rem;}
.result h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
}
.result h2 span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.result h2 b {
    font-size: 1.6rem;
    color: #fff;

}
.result table {
    width: 100%;
    margin-top: 3rem;
    border-collapse: collapse;
}
.result table img {width: 6rem;}
.result table td {
    padding: 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, .5);
}
.result table th {
    padding: 1rem 0;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.result table th:last-of-type {border-right: none;}
.result table td:last-of-type {border-right: none;}
.result table th, .result table td {
    width: 50%;
}
.result table .text {
    color: #535353;
    font-weight: bold;
    font-size: 1.4rem;
}
.result table .time {
    color: #fff;
    margin-top: 1.5rem;
    font-size: 1.8rem;
}
.result table .data_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.result table .sun {
    width: 10rem;
}
.result table .moon {
    width: 6rem;
}


/* api 불러오는 속도로딩 */
.plz_stop_timeout {position: fixed;left: 0;top: 0;z-index: 1000;height: 100%;width: 100%;background-color: rgba(0, 0, 0, .3);display: flex;justify-content: center;align-items: center;}
.spinner {margin: 0 auto;width: 8rem;text-align: center;}
.spinner > div {width: 1.5rem;height: 1.5rem;background-color: #fff;
border-radius: 100%;display: inline-block;-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;animation: sk-bouncedelay 1.4s infinite ease-in-out both;}
.spinner .bounce1 {-webkit-animation-delay: -0.32s;animation-delay: -0.32s;}
.spinner .bounce2 {-webkit-animation-delay: -0.16s;animation-delay: -0.16s;}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* 결과없음 */
.noresult {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    height: 100%;
    margin: 8rem 0 2rem;
}