@charset "UTF-8";

section {
	width: 100%;
}

.container {
	width: 100%;
	margin: auto;
}

.entry-content {
	width: 100%;
	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 {
	width: min(90%,980px);
	font-size: min(5vw, 1.1rem);
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .1rem;
	margin: 0 auto 18px;

}

.txt_center {
	text-align: center;
}

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


.entry-content h1,
.entry-content h2 {
	width: fit-content;
	font-family: var(--font_style_1);
	font-size: min(5vw, 1.8rem);
	font-weight: 600;
	text-align: center;
	color: var(--main-color);
	letter-spacing: .2rem;
	line-height: 1.5;
	border-bottom: 5px solid var(--main-color);
	margin: 16px auto 45px;
	padding: 0 0 8px;
}





.entry-content h3 {
	font-family: var(--font_style_1);
	font-size: 1.2rem;
	text-indent: .3em;
	font-weight: 600;
	text-align: center;
	margin: 0 auto 16px;
}

.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 {
	width: min(100%, 1280px);
	position: relative;
	margin: 0 auto 50px;
}

.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(--font_style_1);
	font-weight: 600;
	font-size: min(8vw, 45px);
	letter-spacing: .2rem;
	color: #f5f5f5;

}

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

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

.top_img .pr_text_2 h3,
.top_img .pr_text_2 h2 {
	font-family: var(--font_style_1);
	font-weight: 700;
	font-size: clamp(1.313rem, 0.813rem + 2.5vw, 2.813rem);
	letter-spacing: .2rem;
	border-bottom: unset !important;
	color: #f5f5f5;

}

.top_img .pr_text_2 p {
	font-family: var(--font_style_1);
	font-weight: 600;
	font-size: clamp(1.125rem, 0.833rem + 1.46vw, 2rem);
	letter-spacing: .2rem;
	color: #f5f5f5;
}

/*応募詳細箇所*/
.koumoku_tb {
	width: min(96%, 980px);
	font-size: 1.1rem;
	font-family: var(--font_style_1);
	font-weight: 500;
	border-collapse: collapse;
	border: 3px solid var(--main-color);
}

.koumoku_tb th,
.koumoku_tb td {
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	line-height: 1.8;
	padding: 21px 16px;
}

.koumoku_tb th {
	background-color: var(--sub-color);
}

.head_cat_name {
	font-family: var(--font_style_1);
	font-weight: 500;
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 32px;
}

.inquiry_link {
	width: min(90%, 980px);
	font-family: var(--font_style_1);
	font-weight: 600;
	letter-spacing: .2rem;
	text-align: center;
	font-size: 1.5rem;
	margin: 21px auto;

}

.inquiry_link a {
	display: block;
	text-decoration: none;
	background-color: var(--sub-color);
	border-radius: 9999px;
	border: 3px solid #333;
	color: #333;
	padding: 32px 0;
}

.inquiry_link a:hover {
	background-color: var(--main-color);
	color: #fff;
}

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

	/*スマホ*/
	/*応募詳細箇所*/
	.koumoku_tb th,
	.koumoku_tb td {
		display: block;
		border-bottom: none;
	}





	.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%;
	}
   /*ポジション*/
		.posi_2 img {
		object-position: 20% 50%;
	}



}

/*スマホ*/


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