/*--------- トップページ
------------------------------------*/
/*トップページ*/
.butai figure {
	width: 100%;
	height: auto;
	margin: 0;
}
.butai figure img {
	width: 100%;
	height: auto;
}
.butai dl {
	display: flex;
	font-size: 20px;
}
.butai dl.flex-non {
	display: block;
	font-size: 20px;
}
.butai dl dt {
	font-weight: 100;
}
.butai dl dd {
	font-weight: bold;
	margin-left: 1rem;
    margin-bottom: 10px;
}
.butai dl.flex-non dd {
	margin-left: 0;
    margin-bottom: 10px;
}
.butai p {
	font-size: 26px;
	padding: 0;
}

.trip {
	background: #000;
	padding: 20px 30px;
}
.trip figure {
	width: 640px;
}
.trip figure {
	width: 100%;
	height: auto;
}

.class-img {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.class-img figure {
	width: 350px;
	height: 175px;
	margin-bottom: 10px;
}
.class-img figure img {
	width: 100%;
	height: auto;
}

.media-img {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.media-img figure {
    width: 220px;
    height: 280px;
    margin-bottom: 10px;
    background: #f6f6f6;
    overflow: hidden;
}
.media-img figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.videos {
    display: flex;
    justify-content: space-between;
}
.video {
    position: relative;
    width: 350px;
    height: 0;
    padding: 30px 0 20%;
    overflow: hidden;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profile .two-clm {
	display: flex;
	gap: 2em;
}
.profile .two-clm figure {
	width: 270px;
	margin-right: 20px;
}
.profile .two-clm figure img {
	width: 100%;
	height: auto;
}
.profile .two-clm p {
	font-size: 15px;
	padding: 0;
}

/*スマホお知らせ*/
.top-sp-info {
	margin-bottom: 3rem;
}
.top-sp-info .info-tag {
	font-size: 12px;
}
.top-sp-info .info-title {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}


/*hibikitnessバナー*/
.hibikitness_banner {
	width: 350px;
	margin-bottom: 3rem;
}
.hibikitness_banner img {
	width: 100%;
	height: auto;
}


.lesson-day {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.lesson-day dl {
	border: 1px solid #000;
	text-align: center;
	width: 250px;
	height: auto;
    margin-top: 20px;
}
.lesson-day dl dt {
	background: #000;
    color: #fff;
    height: auto;
}
.lesson-day dl figure {
	width: 100%;
	height: 140px;
}
.lesson-day dl figure img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.lesson-day dl p {
	padding: 10px 0;
}
.lesson-day p.description {
	padding: 2rem;
    width: fit-content;
    margin: 0 auto;
    display: block;
}

.contact-tel {
	font-weight: bold;
	font-size: 35px !important;
}



/*--------- 投稿ページ全般
------------------------------------*/
.post-clm {
	border: 1px solid #606060;
	padding: 10px 20px;
	margin-bottom: 20px;
}
.post-clm  .post-content img {
	width: 225px;
	height: auto;
}

/** single ***/
.single-content img {
	width: 225px;
	height: auto;
}
/* 戻るボタン */
.back-btn {
	position: absolute;
	bottom: 0;
	right: 0;
}






/*--------- ページネーション
------------------------------------*/
.page-numbers {
	display: flex;
	list-style: none;
	padding: 0 10px;
	justify-content: flex-end;
	align-items: flex-end;
	color: #bbb;
}
.page-numbers .current {
	font-weight: bold;
	font-size: 17px;
	position: relative;
	top: 2.3px;
}
.prev.page-numbers {
	background-color: #fff;
}
.prev.page-numbers:before {
	content: url('../images/navi-arrow-prev.png');
	display: block;
	height: 19px;
}
.next.page-numbers {
    background-color: #fff;
}
.next.page-numbers:before {
	content: url('../images/navi-arrow-next.png');
	display: block;
	height: 19px;
}

.pagination {
    border-top: 1px solid #fff;
}

/*--------- 検索結果ページ ページネーション
------------------------------------*/
.nav-links {
	display: flex;
	align-items: center;
    justify-content: flex-start;
}
.nav-links .prev,
.nav-links .next {
	display: none;
}
.nav-links .current {
	font-weight: bold;
}













/*スマホ --------------------
*/
@media screen and (max-width: 667px) {
	.hibikitness_banner {
		width: 100%;
	}
	.butai figure {
		width: 100vw;
		height: auto;
		margin-left: -20px;
	}
	.butai dl {
		font-size: 13px;
	}
	.butai dl.flex-non {
		font-size: 13px;
	}
	.butai p {
		font-size: 13px;
		padding: 0;
	}
	.trip {
		width: 100vw;
		margin-left: -20px;
	}
	.class-img figure {
		margin-bottom: 0;
		margin-left: 0 !important;
		margin-top: -9px;
	}
	.media-img figure {
		width: 220px;
		height: 280px;
		margin-left: 0;
    }
	.videos {
	    flex-direction: column;
	    margin-top: 20px;
	}
	.video {
	    width: 333px;
	    height: 187.312px;
	    margin: 0 auto;
	    margin-bottom: 20px;
	}
	.profile .two-clm {
	    flex-direction: column;
		gap: 0;
	}
	.profile .two-clm figure {
	    width: 100%;
	}
	.lesson-day {
		flex-direction: column;
	}
	.lesson-day dl {
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.lesson-day p.description {
        padding: 25px 0;
        width: fit-content;
        margin: 0 auto;
	}
	.contact-tel {
		font-size: 28px !important;
	}
	.lesson-day dl figure {
	    height: 250px;
	}
	.gallery-img .media-img figure {
		width: 100%;
        height: auto;
	}

}











/*スマホより大きくて、パソコンより小さい --------------------
*/
@media (max-width: 1024px) and (min-width: 668px) {
	.hibikitness_banner {
		width: 100%;
	}
	.butai dl {
		font-size: 15px;
	}
	.butai dl.flex-non {
		font-size: 15px;
	}
	.butai p {
	    font-size: 17px;
	}
	.class-img figure {
		width: 205px;
		height: 110px;
		margin-bottom: 5px;
	}
	.media-img figure {
		width: 190px;
		height: 240px;
    }
	.video {
	    position: relative;
	    width: 48%;
   }
   .lesson-day dl {
		width: 47%;
	}

}





/*追加*/
/* 3ヶ月体験キャンペーン */
.campaign2025 {
	color: red;
	font-size: 20px !important;
	font-weight: 600;
	text-align: center;
	margin: 3px 0 0;
}
.campaign2025 .title {
	font-size: 50px;
}
.campaign2025 .price-txt {
	font-size: 40px;
}
/*スマホ --------------------
*/
@media screen and (max-width: 667px) {
	.campaign2025 {
		font-size: 15px !important;
	}
	.campaign2025 .title {
		font-size: 30px;
	}
	.campaign2025 .price-txt {
		font-size: 24px;
	}
}


