* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

#tmpArea {
    display: none;
}

#top_wrap > div {
    display: flex;
    margin-top: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    text-indent: 10px;
    column-gap: 10px;
    row-gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
}

#top_wrap > div:first-child {
    margin-top: 0;
}

#top_wrap>div>div.active {
    font-size: 25px;
}

section.top {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.top:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.75);
    content: '';
}

#bigImage {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #333;
    overflow: hidden;
    overflow-y: auto;
    z-index: 10000;
}

#bigImage .image-area {
    max-width: 1200px;
    width: 100%;
    margin-top: 50px;
    transition: all 0.3s;
}

#bigImage .image-area.zoom {
    max-width: 100%;
    margin-top: 0px;
}

#bigImage .info-area {
    padding: 20px 0;
    font-weight: bold;
    color: #f1f1f1;
}

#bigImage .close-btn {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 24px;
    font-weight: bold;
    padding: 7px 30px;
    color: #fff;
    background-color: #f00;
    border: 1px solid #c00;
    border-radius: 7px;
    cursor: pointer;
}

body.lock {
    overflow: hidden;
}

.ajax-loader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.75);
    z-index: 10001;
}

.mailto {
    text-decoration: underline;
}
