@charset "utf-8";
/*<div class="topics-btn-area">*/
.topics-btn-flex {
    margin: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
}

.topics-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    border-radius: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    padding: 8px 4px 8px 24px;
}

.topics-btn:hover {
    cursor: pointer;
}

.topics-btn.selected {
    background-color: #75DAB4;
}

.arrow-02 {
	position: relative;
}

.arrow-02::before,
.arrow-02::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow-02::before{
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #111;
    transition: 0.2s;
}

.arrow-02::after{
	right: 11px;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*終わり*/

/*<div class="topics-area">*/
.topics-area {
    display: none;
}

.topics-area.show {
    display: block;
}

.topics-flex {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 2%;
    width: 100%;
}

.topics-con {
    width: 32%;
    margin-bottom: 60px;
}

.thumb-area {
    width: 100%;
    height: 240px;
}

.topics-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.cate-name {
    font-size: 12px;
    color: #75DAB4;
    margin-top: 24px;
}

.topics-title {
    font-size: 14px;
    margin: 16px 0;
}

.date {
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  

/*<div class="topics-btn-area">*/
    .topics-btn-flex {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }   
    
    .topics-btn {
        width: 40%;
    }
/*終わり*/ 

/*<div class="topics-area">*/
    .topics-con {
        width: 48%;
    }

    .thumb-area {
        height: 200px;
    }    
/*終わり*/ 

}   


/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/  

/*<div class="topics-btn-area">*/
    .topics-btn {
        width: 80%;
    }
/*終わり*/ 

/*<div class="topics-area">*/
    .topics-con {
        width: 100%;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: solid 1px #f9f9f9;
    }
/*終わり*/ 

}