@charset "UTF-8";

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

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


h1.entry-title {
	font-family: "Noto Sans JP", sans-serif;
	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 {
	position: relative;
	border-bottom: 5px solid #dddddd;
}

h1.entry-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background-color: var(--main-color);
}



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 h2::before,
.entry-content h2::after {
	content: '';
	width: 50px;
	height: 6px;
	background-color: var(--main-color);
}

.entry-content h2::before {
	margin-right: 20px;
}
.entry-content h2::after {
	margin-left: 20px;
}

.entry-content h3{
	font-family: "Noto Sans JP", sans-serif;
	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: 'M PLUS 1p', sans-serif;
	font-weight: 400;
	font-size: min(8vw,45px);	
	letter-spacing: .2rem;
	color: #f5f5f5;

}

.top_img .pr_text p{
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 400;
	font-size: 1rem;	
	letter-spacing: .2rem;
	color: #f5f5f5;
}


/*スタッフ*/

.staff_grid{
	display: grid;
	column-gap: 120px;
	grid-template-columns: repeat(3, 1fr);
	margin: 35px auto 16px;
}

.staff_img img{
	display: block;
	  width:150px;
  height: 150px;
  border-radius: 50%;  /* 円形にする */
  margin: 0 auto;
}

.staff_box{
	margin-bottom: 32px;
}

.staff_box h3,
.staff_box h4{
   line-height: 1.5;
   margin: 0;
   padding: 0;
}

.staff_box h4 {
	color: #666;
}

.staff_box h3{
	margin-bottom: .5rem;
}


.staff_box p{
   line-height: 1.3;
}

@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%;

	
}


/*スタッフ*/

.staff_grid{
	display: grid;
	column-gap: 24px;
	grid-template-columns: repeat(2, 1fr);
	margin: 35px auto 16px;
}

.staff_img img{
	  width:100px;
  height: 100px;
}
	
.staff_box p{
	font-size: 14px;
}


}/*スマホ*/


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



}













