@charset "UTF-8";

.container{
	width: min(100%, 1280px);
	margin: auto;
}

.entry-content{
	width: min(98%, 1280px);
	margin: 0 auto;
}


h1.entry-title {
	font-family: var(--main_font_family);
	font-size: min(6vw,2rem);
    font-weight: 600;
	text-align: center;
	letter-spacing: .2rem;
	color: #333;
	line-height: 1.5;
	margin: 38px auto 0;
	padding: 8px ;
}





h1.entry-title a{
	text-decoration: none;
	color: #333;
}




.entry-content p{
	font-size: min(5vw,1.1rem);
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin: 0 auto 18px;
	
}

.entry-content strong{
	font-weight: 600;
}


.entry-content h1,
.entry-content h2{
	font-family: var(--main_font_family);
	font-size:min(5vw,1.5rem) ;
    font-weight: 400;
	color: #333;
	line-height: 1.5;
	margin: 100px auto 16px;
	padding: 8px ;
}


.entry-content h2{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


.entry-content h3{
	font-family: var(--sub_font_family);
	font-size: 1.2em;
	text-indent: .3em;
	font-weight: 400;
	margin: 1em auto 1.2em;
	}
	
.entry-content h4{
	font-size: 1rem;
	font-weight: 500;
	margin: 0 auto 1.5em;
	}
	

	
	
.entry-content li{
	line-height: 1.6;
	margin: 0 auto 3px;
}





.entry-content .wp-caption-text{
	width: 98%;
	font-size: 0.8em;
	color: #666;
	line-height: 1.3;
	margin: 0 auto;
}

.entry-content a{
	font-weight: 500;
}

/*ヘッド画像*/
.top_img_box {
	position: relative;
}

.top_img{
	position: relative;
	margin-bottom: 21px;
	overflow: hidden;
}

.top_img img {
	display: block;
	width: 100%;
	height: auto;
	animation: animationZoom 5s ease-in-out forwards;
}

@keyframes animationZoom {
	100% {
		transform: scale(1.1)
	}
}

.top_img .pr_text{
	display: block;
	position: absolute;
	z-index: 10;
	width: fit-content;
	top: 25%;
	left: 0;/*中央*/
	right: 0;
	background: #3333335a;
	text-align: center;
	padding: 18px;
	margin: auto;
}

.top_img .pr_text h3{
	font-family: var(--img_on_fontfamily);
	font-weight: 400;
	font-size: min(8vw,45px);	
	letter-spacing: .2rem;
	color: #f5f5f5;

}

.top_img .pr_text p{
	font-family: var(--img_on_fontfamily);
	font-weight: 400;
	font-size: 1rem;	
	letter-spacing: .2rem;
	color: #f5f5f5;
}

@media only screen and (max-width: 736px) {/*スマホ*/



.entry-content .wp-caption{
	max-width: 100%;
}


/*画像をスクエア*/


.top_img {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: initial;
}

.top_img::before {
	content: "";
	display: block;
    padding-top: 100%;
}



.top_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: 50% 50%;

	
}
	


}/*スマホ*/


@media only screen and  (min-width: 737px) and (max-width: 1024px){



}













