@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***************************************************************************
only_css 固有CSS
****************************************************************************/

.view {
    overflow: hidden;
    position: relative;
    padding-top: 36.666%;
    margin-bottom: 25px;
}
.view li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.view li img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
.view {
    margin-bottom: 15px;
}
}

.thumb_btn {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}
.thumb_btn li {
    cursor: pointer;
    position: relative;
}
.thumb_btn li:first-child {
    margin-left: 0px;
}
.thumb_btn li span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    font-size: 15px;
    border: 1px solid #FFFFFF;
    background-color: rgba(0,0,0,0.6);
    transition: opacity 0.3s;
}
.thumb_btn li.active span {
    opacity: 0;
}

@media only screen and (max-width: 768px) {
.thumb_btn {
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.thumb_btn:after {
	content: "";
	display: block;
	width: 32.5%;
}
.thumb_btn li {
    width: 32.5%;
    margin-bottom: 5px;
}
.thumb_btn li span {
    font-size: 11px;
}
}