@charset "UTF-8";
/* CSS Document */

/*

使用フォント

日本語
font-family: "fot-rodin-pron", sans-serif;

英語
font-family: "avenir-lt-pro", sans-serif;

L200
300
R400
M500
H700
B800

*/

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

.img_ma{
	margin-right:auto;
	margin-left:auto;
	display:block;
	max-width: 100%;
}

img{
	max-width: 100%;
	height:auto;
}

/*IMG*/

a{
	transition:.2s;
}

body{
	font-family: "fot-rodin-pron", sans-serif;
	font-size:16px;
	line-height:1.7;
}

@media screen and (max-width:600px) {
	body{
		font-size: 14px;
	}
}

/*ハンバーガー*/
.ham_btn{
	width:70px;
	position: absolute;
	top:50%;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
	display: none;
}

.ham_btn > img{
	transition: .3s;
}

.ham_bg{
	position: fixed;
	top:0;
	left:0;
	z-index: 9;
	background:rgba(0,0,0,0.90);
	width:100%;
	height:100dvh;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

.ham_open .ham_bg{
	opacity: 1;
	pointer-events: auto;
}

.ham_wrap{
	position: fixed;
	right:0;
	top:0;
	z-index: 50;
	width:100%;
	height: 100dvh;
	padding:50px 0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.ham_open .ham_wrap{
	opacity: 1;
	pointer-events: auto;
}

.ham_box{
	width:100%;
	max-height: 100%;
	overflow-y: auto;
	color:#fff;
	padding:0 20px;
}

.ham_nav{
	margin-bottom: 40px;
}

.ham_nav li + li{
	margin-top: 30px;
}

.ham_nav a{
	color:#fff;
	text-decoration: none;
}

.ham_nav a:hover{
	opacity: 0.6;
}

.ham_box .con_btn{
	margin-top: 30px;
}

.ham_close{
	position: absolute;
	top:20px;
	right: 40px;
	width:60px;
	cursor: pointer;
}

@media screen and (max-width:600px) {
	.ham_close{
		right: 20px;
		width:44px;
	}
}

@media screen and (max-width:500px) {
	.ham_box .ft_l img{
		width:150px;
	}
	
	.ham_box .con_btn{
		width:100%;
		height: 100px;
		font-size: 6vw;
	}
	
	.ham_box .con_btn img{
		width: 10vw;
	}
	
	.ham_box .con_btn p{
		margin-left: 4vw;
		margin-right: 6vw;
	}
}

header{
	position: fixed;
	top:0;
	left: 0;
	z-index: 7;
	width:100%;
	background: #000;
	padding:0 10px;
}

.header{
	width:100%;
	max-width: 1200px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin:0 auto;
}

.h_logo{
	width:140px;
}

.h_nav{
	display: flex;
}

.h_nav li{
	margin-left: 40px;
}

.h_nav li a{
	position: relative;
	color:#fff;
	text-decoration: none;
}

.h_nav li a::after{
	display: block;
	content:"";
	width:100%;
	height: 2px;
	background: #fff;
	position: absolute;
	bottom:-2px;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: .2s;
}

.h_nav li a:hover::after{
	transform: scaleX(1);
}

@media screen and (max-width:900px) {
	.h_nav{
		display: none;
	}
	
	.ham_btn{
		display: block;
	}
}

@media screen and (max-width:600px) {	
	.header{
		height: 50px;
		justify-content: center;
	}
	
	.h_logo{
		width:70px;
	}
	
	.ham_btn{
		width:40px;
		right: 10px;
	}
}

.main_img_wrap{
	width:100%;
	height: 100dvh;
	background: url("images/main_img.webp") no-repeat center top;
	background-size: cover;
	padding:40px 10px;
}

.main_img{
	max-width: 1200px;
	height: 100%;
	margin:0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.main_img_text{
	width:60%;
	max-width: 640px;
	color:#fff;
	
}

.main_img_text img{
	display: block;
	width:100%;
	max-width: 560px;
}

.main_img_text p{
	padding-left: 5%;
	margin-top: 24px;
}

@media screen and (max-width:600px) {
	.main_img_wrap{
		background-image: url("images/main_img_sp.webp");
	}
	
	.main_img{
		justify-content: center;
		align-items: center;
		padding-top: 100px;
	}
	
	.main_img_text{
		width:90%;
		font-size: 14px;
	}
	
	.main_img_text img{
		max-width: 260px;
		margin:0 auto;
	}
	
	.main_img_text p{
		margin-top: 15px;
	}
}

.top_news_wrap{
	padding:70px 0 80px;
	padding-left: 10px;
	display: flex;
	justify-content: flex-end;
	background: #0e2940;
	overflow: hidden;
	color:#fff;
	overflow: hidden;
	position: relative;
}

.top_news_wrap::before{
	content:"";
	display: block;
	width:150dvh;
	height: 30px;
	background: #bc1f1c;
	position: absolute;
	top:-50px;
	left: 0;
	transform: rotate(65deg) scaleX(0);
	transform-origin: center left;
	transition: 1s;
}

.top_news_wrap_open::before{
	transform: rotate(65deg) scaleX(1);
}

.top_news{
	width:100%;
	max-width:calc( ( 100vw - 1200px ) / 2 + 1200px );
	position: relative;
	z-index: 2;
}

.heading1{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.heading1 > div{
	display: flex;
	align-items: center;
	font-size: 46px;
	line-height: 1;
}

.heading1 > div::after{
	display: block;
	content:"";
	width:90px;
	height: 1px;
	background: #bc1f1c;
	margin-left: 30px;
}

.heading1 > p{
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	font-family: "avenir-lt-pro", sans-serif;
}

.top_news .heading1 > div{
	font-family: "avenir-lt-pro", sans-serif;
	font-size: 72px;
	font-weight: 700;
}

.top_news_list{
	width:120%;
	padding-bottom: 170px;
	margin-bottom: 0;
}

.top_news_list .slick-track{
	margin:0;
}

.top_news_list_box{
	margin-right: 60px;
}

.top_news_list_box a{
	display: block;
	color:#fff;
	text-decoration: none;
	line-height: 1.5;
	position: relative;
	padding-top: 18px;
}

.top_news_list_box a:hover{
	transform: scale(0.95);
}

.top_news_list_box_cat{
	width:136px;
	height: 36px;
	background: #bc1f1c;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1.3;
	position: absolute;
	top:0;
	right: 0;
}

.top_news_list_box_img{
	width:100%;
	background: url("images/noimage.webp") no-repeat center/cover;
}

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

.top_news_list_box_date{
	height: 40px;
	display: flex;
	align-items: center;
}

.top_news_list_box_date > p{
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	font-style: italic;
	padding-left: 10px;
	white-space: nowrap;
}

.top_news_list_box_date::before{
	display: block;
	content:"";
	width:100%;
	height: 1px;
	background: #fff;
}

.top_news_list .slick-next{
	position: absolute;
	top: auto;
	bottom:0;
	right: 20%;
	transform: none;
	width:92px;
	height: 123px;
	background: url("images/next.webp") no-repeat center/contain;
}

.top_news_list .slick-next::before{
	display: none;
}

.top_news_list .slick-prev{
	position: absolute;
	top: auto;
	bottom:0;
	left: auto;
	right: calc( 20% + 106px );
	transform: none;
	width:92px;
	height: 123px;
	background: url("images/prev.webp") no-repeat center/contain;
}

.top_news_list .slick-prev::before{
	display: none;
}

@media screen and (max-width:950px) {
	.top_news_list_box{
		margin-right: 30px;
	}
}

@media screen and (max-width:600px) {
	.top_news_wrap::before{
		left: 50%;
	}
	
	.top_news{
		padding-right: 10px;
	}
	
	.top_news_list{
		width:100%;
		padding-bottom: 0;
	}
	
	.top_news_list_box{
		display: none;
	}
	
	.top_news_list_box:nth-of-type(-n+3){
		display: block;;
		width:100%;
	}
	
	.top_news_list_box + .top_news_list_box{
		margin-top: 35px;
	}
	
	.top_news_list_box a{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding-top: 0;
	}
	
	.top_news_list_box a:hover{
		transform: none;
	}
	
	.top_news_list_box_img{
		width:50%;
		position: relative;
	}
	
	.top_news_list_box_cat{
		width:100px;
		height: 26px;
		top:-13px;
		font-size: 10px;
	}
	
	.top_news_list_box_text{
		width:47%;
	}
}

@media screen and (max-width:700px) {
	.heading1{
		margin-bottom: 40px;
	}
	
	.heading1 > div{
		font-size: 30px;
	}
	
	.top_news .heading1 > div{
		font-size: 36px;
	}
	
	.heading1 > p{
		font-size: 18px;
	}
}

@media screen and (max-width:500px) {
	.heading1 > div::after{
		width:60px;
		margin-left: 10px;
	}
}

@media screen and (max-width:450px) {
	.heading1 > div{
		font-size: 24px;
	}
	
	.top_news .heading1 > div{
		font-size: 30px;
	}
	
	.heading1 > div::after{
		width:40px;
		margin-left: 10px;
	}
	
	.heading1 > p{
		font-size: 14px;
	}
}

@media screen and (max-width:350px) {
	.heading1 > div{
		font-size: 22px;
	}
	
	.top_news .heading1 > div{
		font-size: 28px;
	}
	
	.heading1 > p{
		font-size: 12px;
	}
}

.top_ser_wrap{
	padding:100px 10px 40px;
}

.top_ser{
	max-width: 1200px;
	margin:0 auto;
}

.top_ser_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_ser_box{
	width:48%;
	margin-bottom: 70px;
	font-size: 18px;
}

.top_ser_box_img{
	width:100%;
}

.top_ser_box_img::before{
	display: block;
	content:"";
	width:100%;
	padding-top: 55%;
}

.top_ser1 .top_ser_box_img{
	background: url("images/ser1.webp") no-repeat center/cover;
}

.top_ser2 .top_ser_box_img{
	background: url("images/ser2.webp") no-repeat center/cover;
}

.top_ser3 .top_ser_box_img{
	background: url("images/ser3.webp") no-repeat center/cover;
}

.top_ser4 .top_ser_box_img{
	background: url("images/ser4.webp") no-repeat center/cover;
}

.top_ser5 .top_ser_box_img{
	background: url("images/ser5.webp") no-repeat center/cover;
}

.top_ser6 .top_ser_box_img{
	background: url("images/ser6.webp") no-repeat center/cover;
}

.top_ser_box_h{
	display: table;
	width:auto;
	background: #000;
	padding:0 15px;
	margin-top: -40px;
	color:#fff;
	font-size: 36px;
	line-height: 1;
	margin-bottom: 30px;
}

.top_ser_box_h > div{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}

@media screen and (max-width:850px) {
	.top_ser_box_h{
		margin-top: -30px;
		font-size: 30px;
		margin-bottom: 20px;
	}
	
	.top_ser_box_h > div{
		height: 60px;
	}
}

@media screen and (max-width:600px) {
	.top_ser_wrap{
		padding:70px 10px 80px;
	}
	
	.top_ser_box{
		width:100%;
		margin-bottom: 0;
		font-size: 14px;
	}
	
	.top_ser_box + .top_ser_box{
		margin-top: 40px;
	}
	
	.top_ser_box_h{
		margin-top: -28px;
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.top_ser_box_h > div{
		height: 56px;
	}
}

.top_rinen_wrap{
	padding:100px 10px;
	position: relative;
	overflow: hidden;
}

.top_rinen_wrap_open{
	color:#fff;
	background: #000;
	transition: .4s;
}

.top_rinen_wrap::before{
	content:"";
	display: block;
	width:150dvh;
	height: 30px;
	background: #bc1f1c;
	position: absolute;
	top:-50px;
	left: 20%;
	transform: rotate(105deg) scaleX(0);
	transform-origin: center left;
	transition: 1s;
}

.top_rinen_wrap_open::before{
	transform: rotate(105deg) scaleX(1);
}

.top_rinen{
	max-width: 1200px;
	margin:0 auto;
	position: relative;
	z-index: 2;
}

.top_rinen_box{
	font-size: 30px;
}

.top_rinen_box + .top_rinen_box{
	margin-top: 100px;
}

@media screen and (max-width:700px) {
	.top_rinen_wrap{
		padding:50px 10px 70px;
	}
	
	.top_rinen_wrap::before{
		left: 30%;
		transform: rotate(110deg) scaleX(0);
	}
	
	.top_rinen_wrap_open::before{
		transform: rotate(110deg) scaleX(1);
	}
	
	.top_rinen_box{
		font-size: 18px;
	}
	
	.top_rinen_box + .top_rinen_box{
		margin-top: 70px;
	}
}

@media screen and (max-width:400px) {
	.top_rinen_box{
		font-size: 16px;
	}
	
	.top_rinen_box .heading1{
		margin-bottom: 30px;
	}
}

.top_com_wrap{
	padding:120px 10px;
}

.top_com{
	max-width: 1200px;
	margin:0 auto;
}

.top_com_tbl{
	border-top: 1px solid #ccc;
}

.top_com_tbl dl{
	border-bottom: 1px solid #ccc;
	display: flex;
}

.top_com_tbl dl dt{
	width:27%;
	min-height: 100px;
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	color:#bc1f1c;
}

.top_com_tbl dl dd{
	width:73%;
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
}

.top_com_tbl_flex{
	display: flex;
	flex-wrap: wrap;
}

.top_com_tbl_flex > p:last-of-type{
	margin-right: 20px;
}

.top_com_tbl_flex > a{
	color:#bc1f1c;
	text-decoration: underline;
	padding-left: 28px;
	background: url("images/ar1.png") no-repeat left center;
	background-size: 20px 20px;
}

.top_com_tbl a:hover{
	opacity: 0.6;
}

.top_com_tbl p a{
	color:#000;
	text-decoration: none;
}

.top_com_tbl_tel{
	margin-left: 15px;
	width:24px;
	display: block;
}

.top_com_tbl_tel img{
	display: block;
}

@media screen and (max-width:600px) {
	.top_com_wrap{
		padding:80px 10px;
	}
	
	.top_com_tbl dl dt{
		width:120px;
		min-height: 60px;
		padding:20px 0;
	}
	
	.top_com_tbl dl dd{
		width:calc( 100% - 120px );
		min-height: 60px;
		padding:20px 0;
	}
	
	.top_com_tbl_flex > a{
		padding-left: 22px;
		background-size:16px 16px;
	}
	
	.top_com_tbl_tel{
		width:20px;
		margin-left: 10px;
	}
}

.top_pro_wrap{
	padding:0 10px;
	margin-bottom: 150px;
}

.top_pro{
	max-width: 1200px;
	margin:0 auto;
}

.top_pro_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_pro_img{
	width:32%;
	background: url("images/pro.webp") no-repeat center 10%;
	background-size: cover;
}

.top_pro_text{
	width:64%;
}

.top_pro_box + .top_pro_box{
	margin-top: 45px;
}

.top_pro_box_h{
	font-size: 24px;
	margin-bottom: 10px;
	border-bottom: 1px solid #bc1f1c;
}

@media screen and (max-width:850px) {
	.top_pro_img{
		width: 300px;
	}
	
	.top_pro_text{
		width:calc( 100% - 330px );
	}
}

@media screen and (max-width:700px) {
	.top_pro_img{
		width:100%;
		background-image: url("images/pro_sp.webp");
		margin-bottom: 35px;
	}
	
	.top_pro_img::before{
		display: block;
		content:"";
		padding-top: 52%;
	}
	
	.top_pro_text{
		width:100%;
	}
	
	.top_pro_box + .top_pro_box{
		margin-top: 30px;
	}
}

@media screen and (max-width:600px) {
	.top_pro_wrap{
		margin-bottom: 100px;
	}
	
	.top_pro_box_h{
		font-size: 18px;
	}
}

footer{
	background: #000;
	padding:80px 0 20px;
	position: relative;
	overflow: hidden;
}

footer::before{
	content:"";
	display: block;
	width:150dvh;
	height: 30px;
	background: #bc1f1c;
	position: absolute;
	top:-50px;
	left: 73%;
	transform: rotate(65deg) scaleX(0);
	transform-origin: center left;
	transition: 1s;
}

.footer_open::before{
	transform: rotate(65deg) scaleX(1);
}

.ft_bg{
	display: block;
	width:100%;
	max-width: 1200px;
	position: relative;
	z-index: 2;
	margin:-30px auto 0;
}

.footer{
	max-width: 1220px;
	padding: 0 10px;
	margin:0 auto;
	color:#fff;
	position: relative;
	z-index: 3;
}

.ft_flex{
	display: flex;
	justify-content:space-between;
	margin-bottom: 100px;
}

.ft_l img{
	width:260px;
}

.ft_l > p{
	margin-top: 20px;
}

.ft_l > p a{
	display: inline-block;
	color:#fff;
	text-decoration: underline;
}

.ft_l > p a:hover{
	text-decoration: none;
	opacity: 0.6;
}

.con_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width:470px;
	height: 130px;
	border:1px solid #fff;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: 30px;
	color:#fff;
	text-decoration: none;
	font-weight: 900;
	position: relative;
}

.con_btn::before{
	content:"";
	display: block;
	position: absolute;
	top:0;
	left: 0;
	width:100%;
	height: 100%;
	background: #fff;
	transform: scale(0);
	transform-origin: center;
	transition: .2s;
	z-index: 1;
}

.con_btn:hover{
	color:#000;
}

.con_btn:hover::before{
	transform: scale(1);
}

.con_btn img{
	width:50px;
	position: relative;
	z-index: 2;
}

.con_btn p{
	margin:0 30px 0 24px;
	position: relative;
	z-index: 2;
}

@media screen and (max-width:800px) {
	footer{
		padding:20px 0;
		position: relative;
	}
	
	footer::before{
		display: none;
	}
	
	.footer{
		position: static;
	}
	
	.ft_flex{
		display: none;
	}
	
	.ft_bg{
		margin-top: 0;
	}
	
	.copy_r{
		line-height: 1.2;
		width:100%;
		text-align: center;
		position: absolute;
		top:50%;
		left: 0;
		transform: translateY(-50%);
	}
}

.page_wrap{
	overflow: hidden;
	position: relative;
	padding-bottom: 120px;
}

.page_wrap::before{
	content:"";
	display: block;
	width:150dvh;
	height: 30px;
	background: #bc1f1c;
	position: absolute;
	top:-50px;
	left: 85%;
	z-index: 2;
	transform: rotate(65deg) scaleX(0);
	transform-origin: center left;
	transition: 1s;
}

.page_wrap_open::before{
	transform: rotate(65deg) scaleX(1);
}

.page_title{
	width:100%;
	height: 160px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:0 10px;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: 72px;
	line-height: 1;
	color:#fff;
	font-weight: 700;
	background: #0e2940;
	margin-bottom: 100px;
}

.page_title > div{
	width:100%;
	max-width: 1200px;
	display: flex;
	align-items: center;
}

.page_title > div::after{
	display: block;
	content:"";
	width:90px;
	height: 1px;
	background: #bc1f1c;
	margin-left: 30px;
}

.page_title br{
	display: none;
}

.wrap1200{
	max-width: 1220px;
	padding:0 10px;
	margin:0 auto;
}

.wrap1000{
	max-width: 1020px;
	padding:0 10px;
	margin:0 auto;
}

.news_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	z-index: 3;
}

.news_l{
	width:calc( 100% - 350px );
	max-width: 730px;
}

.news_l .top_news_list{
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 0;
}

.news_l .top_news_list_box{
	width:48%;
	max-width: 330px;
	margin: 0 0 60px;
}

.news_l .top_news_list_box a{
	color:#000;
}

.news_l .top_news_list_box_date::before{
	background:#000;
}

.news_r{
	width:300px;
}

.news_arch + .news_arch{
	margin-top: 50px;
}

.news_arch_h{
	font-family: "avenir-lt-pro", sans-serif;
	line-height: 36px;
	text-align: center;
	color:#fff;
	font-weight: 500;
	background: #333333;
}

.news_arch_list li{
	border-bottom: 1px dotted #cccccc;
}

.news_arch_list li a{
	display: block;
	padding:15px 5px;
	color:#cc3333;
	text-decoration: none;
}

.news_arch_list li a:hover{
	color:#fff;
	background:#cc3333;
}

@media screen and (max-width:900px) {
	.page_title{
		font-size: 48px;
	}
}

@media screen and (max-width:850px) {
	.news_wrap{
		justify-content: center;
	}
	
	.news_l{
		width:100%;
		max-width: 700px;
	}
	
	.news_r{
		width:100%;
		max-width: 700px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.news_arch{
		width: 48%;
    	max-width: 330px;
	}
	
	.news_arch + .news_arch{
		margin-top: 0;
	}
}

@media screen and (max-width:600px) {
	.page_title{
		height: 100px;
		font-size: 36px;
		margin-bottom: 70px;
	}
	
	.page_title br{
		display: inline;
	}
	
	.page_wrap::before{
		left: 70%;
	}
	
	.page_wrap::before{
		transform: rotate(50deg) scaleX(0);
	}
	
	.page_wrap_open::before {
		transform: rotate(50deg) scaleX(1);
	}
	
	.news_l .top_news_list_box{
		width:100%;
		max-width: 100%;
	}
	
	.page_title > div::after{
		margin-left: 20px;
		width:70px;
	}
}

.news_h{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.news_h > p{
	width:calc( 100% - 200px );
	max-width: 800px;
	font-size: 30px;
	line-height: 1.3;
}

.news_c_d{
	width:160px;
}

.news_cat{
	width:160px;
	height: 40px;
	background: #bc1f1c;
	color:#fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 15px;
}

.news_date{
	font-family: "avenir-lt-pro", sans-serif;
	line-height: 1;
	font-style: italic;
	text-align: right;
}

.news_img{
	margin-bottom: 60px;
}

.news_img img{
	display: block;
	margin:0 auto;
}

.news_content{
	margin-bottom: 100px;
}

.news_content strong{
	font-weight: bold;
}

.news_content em{
	font-style: italic;
}

.news_content li{
	list-style: inherit;
	margin-left: 20px;
}

.news_content a{
	color:#bc1f1c;
	text-decoration: underline;
}

.news_content a:hover{
	text-decoration: none;
	color:#0e2940;
}

.news_content iframe{
	width:100%;
	height: calc( 56.25vw - 20px );
	max-height: 675px;
}

.news_back{
	width:370px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #bc1f1c;
	border:1px solid #bc1f1c;
	color:#fff;
	text-decoration: none;
	margin:0 auto;
}

.news_back:hover{
	color:#bc1f1c;
	background: #fff;
}

@media screen and (max-width:750px) {
	.news_h > p{
		width:100%;
		margin-bottom: 20px;
	}
	
	.news_c_d{
		width:100%;
		display: flex;
		align-items: center;
	}
	
	.news_cat{
		margin-bottom: 0;
		margin-right: 20px;
	}
}

@media screen and (max-width:600px) {
	.news_h{
		margin-bottom: 20px;
	}
	
	.news_h > p{
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.news_cat{
		width:100px;
		height: 30px;
		font-size: 10px;
		margin-right: 10px;
	}
	
	.news_img{
		margin-bottom: 30px;
	}
	
	.news_content{
		margin-bottom: 60px;
	}
	
	.news_back{
		width:240px;
		height: 50px;
	}
}

.con_p{
	margin-bottom: 40px;
}

.contact dl{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	border:3px solid #f2efef;
	margin-bottom: 10px;
}

.contact dt{
	width:290px;
	padding-left: 30px;
	background: #f2efef;
	min-height: 80px;
	display: flex;
	align-items: center;
}

.contact dt span{
	display: inline-block;
}

.contact dd{
	width:calc( 100% - 290px );
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.contact .wpcf7-form-control-wrap{
	display: block;
	width:100%;
}

.contact input[type="text"],.contact input[type="tel"],.contact input[type="email"]{
	display: block;
	background: #fff;
	border-radius: 0;
	border:0;
	width:100%;
	height: 80px;
	padding:10px;
}

.contact textarea{
	display: block;
	background: #fff;
	border-radius: 0;
	border:0;
	width:100%;
	height: 200px;
	padding:10px;
}

.submit{
	display: block;
	width:370px;
	line-height: 1;
	padding:30px;
	border:1px solid #bc1f1c;
	background: #bc1f1c;
	color:#fff;
	font-size: 18px;
	margin:50px auto 20px;
	cursor: pointer;
	transition: .3s;
	font-family: "fot-rodin-pron", sans-serif;
}

.submit:hover{
	background:#fff;
	color:#bc1f1c
}

.submit:disabled{
	background: #999 !important;
	border: 1px solid #999 !important;
	color:#fff !important;
}

.back{
	display: block;
	width:230px;
	line-height: 1;
	padding:24px;
	border:1px solid #999;
	background: #999;
	color:#fff;
	font-size: 18px;
	margin:0 auto;
	cursor: pointer;
	font-family: "fot-rodin-pron", sans-serif;
}

.back:hover{
	background:#fff;
	color:#999;
	transition: .3s;
}

.error{
	width:100%;
	display: block;
	color:#fff !important;
	padding: 4px 10px;
	background:#bc1f1c !important;
	font-size:14px;
	line-height:20px;
}

.wpcf7-not-valid-tip{
	width:100%;
	display: block;
	color:#fff !important;
	padding: 4px 10px;
	background:#bc1f1c !important;
	font-size:14px;
	line-height:20px;
}

.wpcf7-spinner{
	display: none !important;
}

@media screen and (max-width:800px) {
	.contact dt{
		padding-left: 20px;
		width:200px;
	}
	
	.contact dd{
		width:calc( 100% - 200px );
	}
}

@media screen and (max-width:600px) {
	.con_p{
		margin-bottom: 30px;
	}
	
	.contact dt{
		padding-left: 10px;
		width:100%;
		min-height: 0;
		height: 50px;
	}
	
	.contact dd{
		width:100%;
	}
	
	.contact input[type="text"],.contact input[type="tel"],.contact input[type="email"]{
		height: 50px;
	}
	
	.submit{
		width:240px;
		font-size: 16px;
		padding:20px;
		margin-top: 40px;
	}
	
	.back{
		width:140px;
		font-size: 14px;
		padding:15px;
	}
}

.page_link{
	pointer-events: none;
}

.wp-pagenavi{
	width:100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 20px;
}

.wp-pagenavi .extend{
	display: none;
}

.wp-pagenavi .current{
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width:62px;
	height: 62px;
	color:#000;
	text-decoration: none;
	font-family: "avenir-lt-pro", sans-serif;
	margin:0 6px;
	background: url("images/ring.png") no-repeat center/contain;
}

.wp-pagenavi .page{
	opacity: 0.6;
	display: flex;
	justify-content: center;
	align-items: center;
	width:62px;
	height: 62px;
	color:#000;
	text-decoration: none;
	font-family: "avenir-lt-pro", sans-serif;
	margin:0 6px;
	background: url("images/ring.png") no-repeat center/contain;
}

.wp-pagenavi .nextpostslink{
	width:62px;
	opacity: 0.6;
	margin-left: 20px;
}

.wp-pagenavi .previouspostslink{
	width:62px;
	opacity: 0.6;
	margin-right: 20px;
}

.wp-pagenavi .nextpostslink:hover{
	opacity: 1;
}

.wp-pagenavi .previouspostslink:hover{
	opacity: 1;
}

@media screen and (max-width:850px) {
	.wp-pagenavi{
		margin-bottom: 60px;
	}
}

@media screen and (max-width:600px) {
	.wp-pagenavi{
		margin-top: 0;
		margin-bottom: 35px;
	}
	
	.wp-pagenavi .current , .wp-pagenavi .page{
		margin:0 5px;
		width:42px;
		height: 42px;
	}
	
	.wp-pagenavi .nextpostslink{
		width:42px;
		margin-left: 10px;
	}

	.wp-pagenavi .previouspostslink{
		width:42px;
		margin-right: 10px;
	}
}























