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

/*

英語
Avenir LT Pro 45 Book
font-family: "avenir-lt-pro", sans-serif;
font-weight: 300;
font-style: normal;

Avenir LT Pro 55 Roman
font-family: "avenir-lt-pro", sans-serif;
font-weight: 400;
font-style: normal;

Avenir LT Pro 55 Oblique
font-family: "avenir-lt-pro", sans-serif;
font-weight: 400;
font-style: italic;

Avenir LT Pro 65 Medium
font-family: "avenir-lt-pro", sans-serif;
font-weight: 500;
font-style: normal;

Avenir LT Pro 85 Heavy
font-family: "avenir-lt-pro", sans-serif;
font-weight: 700;
font-style: normal;

Avenir LT Pro 85 Heavy Oblique
font-family: "avenir-lt-pro", sans-serif;
font-weight: 700;
font-style: italic;

hoverカラー
#3C3ADD

*/

.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;
	color:#333;
	text-decoration: none;
}

a:hover{
	color:#b81d22;
}

body{
	font-family: "fot-rodin-pron", sans-serif;
	font-size:16px;
	line-height:1.6;
	background: #b81d22;
	padding:15px 15px 0;
}

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

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

.ham_btn img{
	display: block;
	width:100%;
}

.ham_btn img:nth-of-type(1){
	opacity: 0;
	transition: .2s;
}

.ham_btn img:nth-of-type(2){
	opacity: 1;
	transition: .2s;
	position: absolute;
	top:0;
	left: 0;
}

.ham_bg{
	position: fixed;
	top:0;
	left:0;
	z-index: 20;
	background:rgba(184,29,34,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-top:0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding:20px;
	padding-bottom: 220px;
}

.ham_open .ham_wrap{
	opacity: 1;
}

.ham_box{
	width:100%;
	max-width: 400px;
	max-height: 100%;
	overflow-y: auto;
	pointer-events: none;
}

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

.ham_1{
	position: relative;
	margin-bottom: 30px;
}

.ham_1 > img{
	width:calc( 100% - 140px );
	max-width: 240px;
	position: absolute;
	bottom:0;
	right: 0;
}

.ham_1 ul li + li{
	margin-top: 10px;
}

.ham_1 ul li a{
	color:#fff;
	border-bottom: 1px solid rgba(255,255,255,0);
}

.ham_1 ul li a:hover{
	border-bottom: 1px solid rgba(255,255,255,1);
}

.ham_btn1{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 1px solid #fff;
	height: 50px;
	width:100%;
	border-radius: 100px;
	color:#cc3333;
}

.ham_btn1:hover{
	color:#fff;
	background: #cc3333;
}

.ham_info{
	margin-top: 20px;
	color:#fff;
	font-size: 14px;
}

.ham_info_h{
	font-size: 18px;
	padding-bottom: 4px;
	border-bottom: 1px solid #fff;
	margin-bottom: 12px;
}

.ham_info p span{
	display: inline-block;
}

.ham_info_box_link a:hover{
	color:#f12694;
}

.ham_close{
	width:70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top:10px;
	right: 0;
}

.ham_open .ham_close{
	pointer-events: auto;
}

.ham_close img{
	width:38px;
	display: block;
}

.ham_bg_text{
	display: block;
	width:300px;
	position: absolute;
	bottom:20px;
	right: 20px;
}

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

@media screen and (max-width:440px) {
	.ham_wrap{
		padding-bottom: 20px;
	}
	
	.ham_box{
		position: relative;
		padding-bottom: 200px;
	}
	
	.ham_bg_text{
		width:100%;
		max-width: 300px;
		right: 0;
		bottom:0;
	}
}

.page_wrap{
	background: #fff;
	clip-path: circle(0px at 50% 50dvh);
}

header{
	position: fixed;
	top:0;
	left: 0;
	z-index: 10;
	width:100%;
	padding:30px;
	padding-bottom: 0;
}

.h_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.h_logo{
	width:226px;
	position: relative;
}

.h_logo1{
	transition: .2s;
	opacity: 0;
}

.h_logo2{
	transition: .2s;
	position: absolute;
	top:0;
	left: 0;
}

.h_nav{
	width:630px;
	height: 60px;
	padding:2px 34px 0;
	background: #fff;
	border-radius: 20px;
	display: flex;
	align-items: center;
}

.h_nav ul{
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.h_nav ul li:last-of-type a{
	width:140px;
	height: 36px;
	border-radius: 20px;
	background: #b81d22;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	border:1px solid #b81d22;
}

.h_nav ul li:last-of-type a:hover{
	background: #fff;
	color:#b81d22;
}

.top_img{
	width:100%;
	background: url("images/top_img_bg.webp") no-repeat center/cover;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:10px;
	padding-bottom: 20px;
}

.top_img_text{
	width:100%;
	max-width: 1200px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 110px;
	padding-right: 5%;
}

.top_img_text1{
	width:70%;
	max-width: 760px;
	margin-top: 130px;
}

.top_img_text2{
	width:18%;
	max-width: 160px;
}

.top_img_pict{
	width:100%;
	margin-top: 20px;
}

.top_img_pc{
	width:100%;
	max-width: 1300px;
	display: block;
	margin:0 auto;
}

.top_img_sp{
	display: none;
}

@media screen and (max-width:950px) {
	body{
		padding:5px 5px 0;
	}
	
	header{
		padding:20px 15px 0;
	}
	
	.h_flex{
		position: relative;
	}
	
	.h_nav{
		display: none;
	}
	
	.h_logo{
		width:180px;
	}
	
	.top_img{
		height: calc( 100svh - 5px );
		position: relative;
	}
	
	.top_img_text{
		height:100%;
		padding-top: 0;
		padding-bottom: 100px;
		padding-right: 0;
		align-items: center;
	}
	
	.top_img_text1{
		margin-top: 0;
	}
	
	.top_img_text2{
		position: absolute;
		top:70px;
		right: 5%;
	}
	
	.top_img_pict{
		position: absolute;
		bottom:20px;
		left: 0;
		padding:0 10px;
	}
}

@media screen and (max-width:550px) {
	.top_img_text2{
		top:100px;
	}
	
	.top_img_pc{
		display: none;
	}
	
	.top_img_sp{
		display: block;
	}
}

.top_gr_wrap{
	position: relative;
	padding:60px 10px 140px;
}

.top_gr_wrap::before{
	display: block;
	content:"";
	width:160px;
	height: 360px;
	background: #b81d22;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	position: absolute;
	top:0;
	left:0;
}

.top_gr_wrap::after{
	display: block;
	content:"";
	width:80px;
	height: 180px;
	background: #b81d22;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	position: absolute;
	bottom:0;
	right:0;
}

.top_gr{
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:0 auto;
	padding-left: 60px;
}

.top_gr_h{
	width:240px;
	display: flex;
	flex-direction: row-reverse;
}

.top_gr_h_p1{
	position: relative;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 300;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color:#b81d22;
	font-size: 24px;
	margin-left: 10px;
}

.top_gr_h_p1::after{
	display: block;
	content:"";
	position: absolute;
	bottom:0;
	left: 50%;
	width:1px;
	height: calc( 100% - 130px );
	background: #b81d22;
}

.top_gr_h_p2{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 48px;
	line-height: 1.3;
	color:#000;
	white-space: nowrap;
}

.top_gr_r{
	width:calc( 100% - 270px );
	max-width: 780px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

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

.top_gr_r > img{
	display: block;
	margin-top: 35px;
}

@media screen and (max-width:1350px) {
	.top_gr{
		padding-left: 110px;
	}
}

@media screen and (max-width:800px) {
	.top_gr_wrap{
		padding:20px 10px 80px;
	}
	
	.top_gr_wrap::before{
		width:100px;
		height: 220px;
	}
	
	.top_gr_wrap::after{
		width:60px;
		height: 130px;
	}
	
	.top_gr{
		padding-left: 0;
	}
	
	.top_gr_h{
		padding-left: 90px;
		display: block;
		width:100%;
		margin-bottom: 30px;
	}
	
	.top_gr_h_p1{
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	
	.top_gr_h_p1::after{
		width:calc( 100% - 130px );
		height: 1px;
		bottom:auto;
		left: auto;
		right: 0;
		top:50%;
		transform: translateY(-50%);
	}
	
	.top_gr_h_p2{
		font-size: 36px;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	
	.top_gr_r{
		width:100%;
	}
}

@media screen and (max-width:600px) {
	.top_gr_h{
		margin-bottom: 25px;
	}
	
	.top_gr_h_p1{
		font-size: 18px;
	}
	
	.top_gr_h_p1::after{
		width:calc( 100% - 100px );
	}
	
	.top_gr_h_p2{
		font-size: 24px;
	}
	
	.top_gr_text{
		padding-left: 30px;
	}
	
	.top_gr_text > p + p{
		margin-top: 14px;
	}
}

@media screen and (max-width:360px) {
	.top_gr_h{
		padding-left: 50px;
	}
	
	.top_gr_wrap::before{
		width:70px;
		height: 220px;
	}
}

.top_pro_wrap{
	background: #f6f1f1;
	padding:60px 10px 50px;
}

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

.top_pro_h{
	display: flex;
	align-items: flex-end;
	margin-bottom: 35px;
}

.top_pro_h > p:nth-of-type(1){
	font-size: 36px;
	line-height: 1;
	color:#000;
	margin-right: 30px;
}

.top_pro_h > p:nth-of-type(2){
	color:#b81d22;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1;
}

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

.top_pro_flex + .btn1{
	margin:20px auto 0;
}

.top_pro_list_wrap{
	width:55%;
}

.top_pro_list_box{
	display: flex;
	background: #fff;
	border-radius: 10px;
}

.top_pro_list_box + .top_pro_list_box{
	margin-top: 10px;
}

.top_pro_list_box_h{
	width:120px;
	padding:20px 0 18px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	border-right: 1px solid #f6f1f1;
}

.top_pro_list_box_text{
	width:calc( 100% - 120px );
	display: flex;
	flex-wrap: wrap;
	padding:20px 0 15px;
	padding-left: 10px;
}

.top_pro_list_box_text p{
	padding:0 15px;
	margin-bottom: 3px;
}

.top_pro_slider_wrap{
	width:48%;
	max-width: 570px;
}

.top_pro_slider{
	margin-bottom: 0 !important;
	padding-bottom: 40px;
}

.top_pro_slide{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.top_pro_slide::before{
	content:"";
	display: block;
	padding-top: 65%;
}

.slick-dots{
	bottom:0;
}

.slick-dots li{
	padding:0;
	margin:0 3px;
	width:12px;
	height: 12px;
}

.slick-dots li button{
	width:12px;
	height: 12px;
	border-radius: 10px;
	background: #cccccc;
	padding:0;
	margin: 0;
}

.slick-dots li button:before{
	display: none;
}

.slick-dots li.slick-active button{
	background: #b81d22;
}

.btn1{
	width:240px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #b81d22;
	color:#fff;
	border-radius: 16px;
	border: 1px solid #b81d22;
}

.btn1:hover{
	background: #fff;
	color:#b81d22;
}

.top_pro_list_wrap .btn1{
	margin:25px auto 0;
}

@media screen and (max-width:800px) {
	.top_pro_list_wrap{
		width:100%;
	}
	
	.top_pro_slider_wrap{
		width:100%;
		max-width: 100%;
		margin-bottom: 40px;
	}
}

@media screen and (max-width:600px) {
	.top_pro_h{
		margin-bottom: 20px;
	}
	
	.top_pro_h > p:nth-of-type(1){
		font-size: 24px;
		margin-right: 14px;
	}
	
	.top_pro_h > p:nth-of-type(2){
		font-size: 12px;
	}
	
	.top_pro_slider_wrap{
		margin-bottom: 30px;
	}
	
	.top_pro_slider{
		padding-bottom: 30px;
	}
	
	.top_pro_list_box_h{
		width:80px;
		padding:15px 0 13px;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		border-right: 1px solid #f6f1f1;
	}

	.top_pro_list_box_text{
		width:calc( 100% - 80px );
		padding:15px 0 10px;
	}
	
	.btn1{
		width:190px;
		height: 36px;
	}
}

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

.top_c_r_box{
	width:50%;
	display: block;
	color:#fff;
}

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

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

.top_c_r_box > div{
	width:100%;
	height: 420px;
	display: flex;
	justify-content: center;
	align-content: space-between;
	flex-wrap: wrap;
	background: rgba(0,0,0,0.50);
	padding: 100px 10px 60px;
	transition: .2s;
}

.top_c_r_box_h{
	width:100%;
	text-align: center;
	line-height: 1;
	color:#fff;
}

.top_c_r_box_h p:nth-of-type(1){
	font-size: 36px;
}

.top_c_r_box_h p:nth-of-type(2){
	font-size: 14px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	margin-top: 16px;
}

.top_c_r_box_btn{
	width:260px;
	height: 70px;
	border:1px solid #b81d22;
	background: #b81d22;
	color:#fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	transition: .2s;
}

.top_c_r_box:hover > div{
	background: rgba(0,0,0,0);
}

.top_c_r_box:hover .top_c_r_box_btn{
	background: #fff;
	color:#b81d22;
}

@media screen and (max-width:700px) {
	.top_c_r_box{
		width:100%;
	}
}

@media screen and (max-width:600px) {
	.top_c_r_box > div{
		height: 280px;
		padding:50px 10px 40px;
	}
	
	.top_c_r_box_h p:nth-of-type(1){
		font-size: 24px;
	}

	.top_c_r_box_h p:nth-of-type(2){
		font-size: 12px;
		margin-top: 10px;
	}
	
	.top_c_r_box_btn{
		width:180px;
		height: 50px;
	}
}

.top_info_wrap{
	position: relative;
	padding:80px 10px 90px;
}

.top_info_wrap::before{
	display: block;
	content:"";
	width:160px;
	height: 360px;
	background: #b81d22;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	position: absolute;
	top:0;
	left:0;
}

.top_info{
	max-width: 1200px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	padding-left: 80px;
}

.top_info_l{
	width:35%;
	min-height: 300px;
	border-right: 1px solid #b81d22;
}

.top_info_r{
	width:65%;
	padding-left: 40px;
}

.top_info_box{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.top_info_box + .top_info_box{
	margin-top: 30px;
}

.top_info_box_date{
	width:230px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top_info_box_date p{
	font-size: 30px;
	line-height: 1;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	font-style: italic;
	padding-right: 20px;
	color:#b81d22;
	white-space: nowrap;
}

.top_info_box_date::after{
	display: block;
	content:"";
	width:100%;
	height: 1px;
	background: #999999;
}

.top_info_box_h{
	display: block;
	width:calc( 100% - 230px );
	padding-left: 20px;
	line-height: 1.4;
	padding-top: 3px;
}

.top_info_link{
	display: table;
	position: absolute;
	bottom:0;
	left: 80px;
	line-height: 20px;
	color:#b81d22;
	text-decoration: underline;
	background: url("images/ar1.png") no-repeat right/contain;
	padding-right: 30px;
}

.top_info_link:hover{
	color:#3C3ADD;
	text-decoration: none;
}

@media screen and (max-width:1350px) {
	.top_info{
		padding-left: 120px;
	}
	
	.top_info_l{
		width:310px;
	}
	
	.top_info_r{
		width:calc( 100% - 310px );
	}
	
	.top_info_link{
		left: 120px;
	}
}

@media screen and (max-width:1000px) {
	.top_info_l{
		width:100%;
		min-height: 0;
		border-right: 0;
	}
	
	.top_info_r{
		width:100%;
		padding-left: 0;
	}
	
	.top_info_link{
		position: static;
		margin-top: 30px;
	}
}

@media screen and (max-width:800px) {
	.top_info_wrap{
		padding:40px 10px 50px;
	}
	
	.top_info_wrap::before {
		width: 100px;
		height: 220px;
	}
	
	.top_info{
		padding-left: 70px;
	}
}

@media screen and (max-width:600px) {
	.top_info .top_pro_h{
		margin-bottom: 30px;
	}
	
	.top_info_box + .top_info_box{
		margin-top: 20px;
	}
	
	.top_info_box_date{
		width:100%;
		margin-bottom: 10px;
	}
	
	.top_info_box_date p{
		font-size: 20px;
		padding-right: 10px;
	}

	.top_info_box_h{
		width:100%;
		padding-left: 0;
	}
}

@media screen and (max-width: 360px) {
	.top_info_wrap::before {
		width: 70px;
		height: 220px;
	}
	
	.top_info{
		padding-left: 50px;
	}
}

footer{
	
}

.ft_wrap1{
	position: relative;
}

.ft_wrap2{
	position: relative;
	overflow: hidden;
}

.ft_bg{
	width:auto;
	height: 90%;
	position: absolute;
	top:5%;
	left: 50%;
	margin-left: -150px;
}

.ft_wrap3{
	position: relative;
	z-index: 2;
	background: rgba(246,241,241,0.76);
	padding:0 15px;
}

.ft{
	max-width: 1200px;
	height: 500px;
	margin:0 auto;
	position: relative;
	padding-top: 180px;
}

.ft_since{
	display: block;
	width:70%;
	max-width:520px;
	position: absolute;
	top:40px;
	left: 0;
}

.ft_text{
	position: relative;
	z-index: 2;
}

.ft_name{
	line-height: 1;
	margin-bottom: 40px;
}

.ft_name_p2{
	margin-top: 10px;
	display: flex;
	align-items: flex-end;
}

.ft_name_p2 p:nth-of-type(1){
	font-size: 24px;
	margin-right: 5px;
}

.ft_name_p2 p:nth-of-type(2){
	font-size: 30px;
}

.ft_add{
	margin-bottom: 30px;
}

.ft_tel span{
	display: inline-block;
}

.ft_delta{
	width:370px;
	height: 800px;
	background: #b81d22;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	position: absolute;
	bottom:0;
	right:0;
	z-index: 3;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding:5px 5px 25px;
}

.ft_delta img{
	width:250px;
}

.copy_r{
	position: relative;
	z-index: 3;
	width:100%;
	height: 60px;
	color:#fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #b81d22;
	padding:0 10px;
	padding-top: 2px;
	margin-top: -1px;
}

.copy_r > p{
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
}

.copy_r_pp_wrap{
	width:100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 2px;
}

.copy_r_pp{
	width:100%;
	max-width: 1200px;
}

.copy_r_pp a{
	display: table;
	color:#fff;
	line-height: 14px;
	background: url("images/ar2.png") no-repeat right/contain;
	padding-right: 24px;
}

.copy_r_pp a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 1450px) {
	.ft_delta{
		width:300px;
		height: 650px;
	}
	
	.ft_delta img{
		width:200px;
	}
}

@media screen and (max-width: 700px) {
	.ft_delta{
		width:250px;
		height: 600px;
	}
	
	.ft_delta img{
		width:170px;
	}
}

@media screen and (max-width: 600px) {
	.ft_bg{
		width:170%;
		max-width: 9999px;
		height: auto;
		left: 0;
		top:auto;
		bottom:0;
		margin-left: -20%;
	}
	
	.ft{
		height: 500px;
		padding-top: 100px;
	}
	
	.ft_since{
		width:74%;
	}
	
	.ft_name{
		margin-bottom: 15px;
	}
	
	.ft_name_p2 p:nth-of-type(1){
		font-size: 16px;
	}
	
	.ft_name_p2 p:nth-of-type(2){
		font-size: 24px;
	}
	
	.ft_zip{
		margin-bottom: 4px;
	}
	
	.ft_add{
		margin-bottom: 10px;
	}
	
	.ft_add span{
		display: block;
	}
	
	.ft_tel span{
		display: block;
	}
	
	.ft_delta{
		width:200px;
		height: 420px;
	}
	
	.ft_delta img{
		width:130px;
	}
	
	.copy_r{
		height: 80px;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-content: center;
	}
	
	.copy_r > p{
		line-height: 1.2;
	}
	
	.copy_r_pp_wrap{
		position: static;
		height: auto;
	}
	
	.copy_r_pp{
		margin-bottom: 8px;
	}
}

.page_title_bg{
	background: #b81d22;
	color:#fff;
}

.page_title_wrap{
	position: relative;
	z-index: 5;
}

.page_title_wrap > img{
	display: block;
	width:55%;
	max-width: 700px;
	position: absolute;
	top:50%;
	right: 0;
	transform: translateY(-50%);
}

.page_title{
	width:100%;
	max-width: 1220px;
	height: 270px;
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	margin:0 auto;
	padding:0 10px;
}

.page_title_text > p:nth-of-type(1){
	font-size: 30px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.page_title_text > p:nth-of-type(2){
	font-size: 60px;
	line-height: 1;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
}

.bread_wrap{
	width:100%;
	margin-top: 20px;
}

.breadcrumbs{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.4;
}

.breadcrumbs span{
	display: block;
	margin-right: 10px;
}

.breadcrumbs a{
	color:#fff;
}

.breadcrumbs a:hover{
	color:#fff;
	text-decoration: underline;
}

.bc_ar{
	padding-bottom: 2px;
}

@media screen and (max-width: 600px) {
	.page_title{
		height: auto;
		min-height: 90px;
		padding:10px;
	}
	
	.page_title_text > p:nth-of-type(1){
		font-size: 16px;
	}

	.page_title_text > p:nth-of-type(2){
		font-size: 30px;
	}
	
	.bread_wrap{
		display: none;
	}
}

.contents_wrap{
	max-width: 1240px;
	padding:50px 10px 90px;
	margin:0 auto;
}

.pp_top{
	
}

.pp_top p + p{
	margin-top: 15px;
}

.pp_box{
	display: flex;
	flex-wrap: wrap;
	margin-top: 90px;
}

.pp_box_h{
	width:400px;
	border-right: 1px solid #b81d22;
}

.pp_box_text{
	width: calc( 100% - 400px );
	padding-left: 30px;
	padding-bottom: 20px;
}

.pp_box_text > p + p{
	margin-top: 15px;
}

.pp_list > li{
	list-style: decimal outside;
	margin-left: 20px;
}

.pp_list_box + .pp_list_box{
	margin-top: 30px;
}

.pp_ul1{
	margin-top: 10px;
}

.pp_ul1 > li{
	padding-left: 20px;
	position: relative;
}

.pp_ul1 > li::before{
	display: block;
	content:"◉";
	position: absolute;
	top:0;
	left: 0;
}

.pp_list_box > p{
	margin-top: 10px;
}

.pp_list_box > p a{
	color:#b81d22;
}

.pp_list_box > p a:hover{
	color:#3C3ADD;
}

@media screen and (max-width: 900px) {
	.pp_box{
		margin-top: 60px;
	}
	
	.pp_box_h{
		width:100%;
		border-bottom: 1px solid #b81d22;
		border-right: 0;
		margin-bottom: 20px;
		padding-bottom: 5px;
	}
	
	.pp_box_text{
		padding-left: 0;
		width:100%;
	}
}

@media screen and (max-width: 600px) {
	.contents_wrap{
		padding:30px 10px 50px;
	}
	
	.pp_box{
		margin-top: 40px;
		line-height: 1.4;
	}
	
	.pp_list_box + .pp_list_box{
		margin-top: 20px;
	}
	
	.pp_ul1{
		margin-top: 5px;
	}
	
	.pp_list_box > p{
		margin-top: 5px;
	}
}

.pro_box{
	width:100%;
	border-radius: 20px;
	background: #f6f1f1;
	padding:40px;
}

.pro_box + .pro_box{
	margin-top: 60px;
}

.pro_box_h{
	font-size: 36px;
	line-height: 1;
	margin-bottom: 24px;
}

.pro_box_text{
	width:100%;
}

.pro_box_list{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.pro_box_list > li{
	padding:14px 20px;
	line-height: 1.4;
	background: #fff;
	border-radius: 10px;
	margin-right: 15px;
	margin-bottom: 15px;
}

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

.pro_box_img{
	width:400px;
}

.pro_box_img + .pro_box_text{
	width:calc( 100% - 430px );
}

.pro_box_slide{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.pro_box_slide::before{
	content:"";
	display: block;
	padding-top: 70%;
}

.pro_box_thumbs{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.pro_box_thumb{
	width:calc( ( 100% - 30px ) / 4 );
	margin-top: 10px;
	margin-right: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
}

.pro_box_thumb:first-of-type:last-of-type{
	display: none;
}

.pro_box_thumb:nth-of-type(4n){
	margin-right: 0;
}

.pro_box_thumb::before{
	content:"";
	display: block;
	padding-top: 70%;
}

@media screen and (max-width: 900px) {
	.pro_box{
		padding:30px 20px;
	}
	
	.pro_box_img{
		width:46%;
	}

	.pro_box_img + .pro_box_text{
		width:50%;
	}
}

@media screen and (max-width: 750px) {
	.pro_box_img{
		width:100%;
		margin-bottom: 25px;
	}

	.pro_box_img + .pro_box_text{
		width:100%;
	}
}

@media screen and (max-width: 600px) {
	.pro_box{
		padding:30px 10px 20px;
		border-radius: 10px;
	}
	
	.pro_box + .pro_box{
		margin-top: 40px;
	}
	
	.pro_box_h{
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.pro_box_list > li{
		padding:10px;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.
}

.con_wrap{
	max-width: 1000px;
	margin:0 auto;
}

.con_text{
	margin-bottom: 40px;
}

.con_input{
	border-radius: 20px;
	background: #f6f1f1;
	display: flex;
	flex-wrap: wrap;
}

.con_input + .con_input{
	margin-top: 20px;
}

.con_input_h{
	width:250px;
	min-height: 90px;
	padding-left: 30px;
	display: flex;
	align-items: center;
	border-right: 5px solid #fff;
}

.con_input_box{
	width:calc( 100% - 250px );
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	padding:20px 30px;
}

.con_input_box input[type="text"]{
	width:100%;
	height: 40px;
	padding:0 10px;
	border:none;
	background:#fff;
	font-family: "fot-rodin-pron", sans-serif;
}

.con_input_box textarea{
	width:100%;
	height: 200px;
	padding:10px;
	border:none;
	background:#fff;
	font-family: "fot-rodin-pron", sans-serif;
}

.submit{
	display: block;
	width:280px;
	height: 70px;
	border-radius: 20px;
	background: #b81d22;
	border:1px solid #b81d22;
	color:#fff;
	font-size: 18px;
	margin:40px auto 0;
	cursor: pointer;
	font-family: "fot-rodin-pron", sans-serif;
	transition: .2s;
	appearance: none;
	-webkit-appearance: none;
}

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

.back{
	display: block;
	width:180px;
	height: 50px;
	border-radius: 20px;
	background: #999;
	border:1px solid #999;
	color:#fff;
	margin:20px auto 0;
	cursor: pointer;
	font-family: "fot-rodin-pron", sans-serif;
	transition: .2s;
	appearance: none;
	-webkit-appearance: none;
}

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

.error{
	width:100%;
	display: block;
	color:#fff !important;
	padding: 0 10px;
	background:#b81d22 !important;
	margin-top:6px;
}

.must{
	color:#b81d22;
}

@media screen and (max-width: 600px) {
	.con_text{
		margin-bottom: 20px;
	}
	
	.con_input{
		padding:15px;
		border-radius: 10px;
	}
	
	.con_input + .con_input{
		margin-top: 15px;
	}
	
	.con_input_h{
		width:100%;
		min-height: 0;
		border-right: 0;
		padding:0;
		margin-bottom: 10px;
	}
	
	.con_input_box{
		width:100%;
		padding:0;
	}
	
	.submit{
		font-size: 16px;
		width:240px;
		height: 50px;
		margin-top: 30px;
	}
	
	.back{
		width:140px;
		height: 40px;
		margin-top: 15px;
	}
}

.contents_wrap2{
	padding: 10px 10px 200px;
	position: relative;
}

.com_delta1{
	width:400px;
	height: 800px;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	background: #b81d22;
	position: absolute;
	top:-1px;
	left: 0;
}

.com_top{
	width:100%;
	height: 400px;
	background: url("images/com_top.webp") no-repeat 80% center;
	background-size: cover;
	position: relative;
	z-index: 2;
	margin-bottom: 120px;
}

.com_top_text{
	max-width: 1060px;
	margin:0 auto;
	position: relative;
}

.com_top_text p{
	position: absolute;
	top:100px;
	right: 50px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 48px;
	line-height: 1.3;
	white-space: nowrap;
	color:#000;
}

.com_gre_wrap{
	position: relative;
	padding-bottom: 100px;
}

.com_gre_wrap::after{
	width: 90px;
	height: 200px;
	display: block;
	content:"";
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	background: #b81d22;
	position: absolute;
	bottom:0;
	right: -10px;
}

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

.heading1{
	max-width: 900px;
	margin:0 auto 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
}

.heading1 p:nth-of-type(1){
	font-size: 36px;
	line-height: 1;
	margin-right: 40px;
}

.heading1 p:nth-of-type(2){
	font-size: 14px;
	color:#b81d22;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	line-height: 1.6;
}

.com_gre_text{
	margin-top: 60px;
}

.com_gre_text p + p{
	margin-top: 25px;
}

.com_gre_sign{
	display: flex;
	justify-content: flex-end;
	margin-top: 70px;
}

.com_gre_sign img{
	width:300px;
	display: block;
}

@media screen and (max-width: 1200px) {
	.com_delta1{
		height: 600px;
	}
	
	.com_gre_wrap::after{
		height: 140px;
		width:70px;
	}
}

@media screen and (max-width: 1000px) {
	.com_delta1{
		width:300px;
		height: 500px;
	}
	
	.com_gre_wrap::after{
		height: 100px;
		width:50px;
	}
}

@media screen and (max-width: 600px) {
	.com_delta1{
		width:200px;
		height: 360px;
	}
	
	.com_top{
		height: 300px;
		margin-bottom: 60px;
	}
	
	.com_top_text p{
		top:20px;
		right: 10px;
		font-size: 30px;
	}
	
	.com_gre_wrap{
		padding-bottom: 60px;
	}
	
	.heading1{
		margin-bottom: 20px;
	}
	
	.heading1 p:nth-of-type(1){
		font-size: 24px;
		margin-right: 14px;
	}
	
	.heading1 p:nth-of-type(2){
		font-size: 10px;
		margin-top: 6px;
	}
	
	.com_gre_text{
		margin-top: 0px;
	}
	
	.com_gre_sign{
		margin-top: 30px;
	}
	
	.com_gre_sign img{
		width:240px;
	}
	
	.com_gre_wrap::after{
		height: 70px;
	}
}

.com_box{
	max-width: 900px;
	margin:0 auto 120px;
}

.com_ol_tbl{
	width:100%;
}

.com_ol_tbl th{
	width:270px;
	padding:20px;
	background: #f6f1f1;
	border-right:4px solid #fff;
	border-bottom:4px solid #fff;
	vertical-align: top;
}

.com_ol_tbl td{
	padding:20px;
	background: #fbf9f9;
	border-bottom:4px solid #fff;
	vertical-align: top;
}

@media screen and (max-width: 600px) {
	.com_ol_tbl th{
		width:110px;
		padding:14px 10px;
	}
	
	.com_ol_tbl td{
		padding:14px 10px;
	}
}

.com_his_tbl{
	width:100%;
}

.com_his_tbl th{
	width:160px;
	vertical-align: top;
	padding:20px 0;
	border-bottom: 1px solid #ccc;
}

.com_his_tbl td{
	vertical-align: top;
	padding:20px 0;
	border-bottom: 1px solid #ccc;
}

.com_his img{
	display: block;
	width:100%;
	margin-top: 30px;
}

@media screen and (max-width: 600px) {
	.com_his_tbl th{
		width:80px;
		padding:12px 0;
	}

	.com_his_tbl td{
		padding:12px 0;
	}
}

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

.google-maps {
	position: relative;
	padding-bottom: 400px;
	height: 0;
	overflow: hidden;
	margin-bottom: 40px;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.com_acs{
	max-width: 900px;
	margin:0 auto;
}

.com_acs_ping{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 1.4;
	margin-bottom: 40px;
}

.com_acs_ping > div{
	width:32px;
	margin-right: 20px;
}

.com_acs_flex{
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.com_acs_box{
	width:48%;
	max-width: 430px;
	min-height: 190px;
	padding:20px;
	background: #f6f1f1;
}

.com_acs_box_h{
	border-bottom: 1px solid #b81d22;
	padding:0 15px 10px;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 1.4;
}

.com_acs_box_h div{
	width:40px;
	margin-right: 15px;
}

.com_acs_box > p{
	padding:0 15px;
}

@media screen and (max-width: 750px) {
	.com_acs_box_h{
		padding:0 0 10px;
	}
	
	.com_acs_box_h div{
		margin-right: 10px;
	}
	
	.com_acs_box > p{
		padding:0;
	}
}

@media screen and (max-width: 600px) {
	.contents_wrap2{
		padding-bottom: 80px;
	}
	
	.com_box{
		margin-bottom: 70px;
	}
	
	.google-maps {
		padding-bottom: 300px;
		margin-bottom: 30px;
	}
	
	.com_acs_ping{
		margin-bottom: 30px;
	}
	
	.com_acs_ping > div{
		width:24px;
		margin-right: 10px;
	}
	
	.com_acs_flex{
		justify-content: center;
	}
	
	.com_acs_box{
		width:100%;
		min-height: 0;
		padding: 20px 15px 30px;
	}
	
	.com_acs_box + .com_acs_box{
		margin-top: 20px;
	}
	
	.com_acs_box_h{
		margin-bottom: 15px;
	}
}

.rec_top{
	width:100%;
	height: 400px;
	background: url("images/rec_top.webp") no-repeat center/cover;
	color:#fff;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	text-align: center;
	padding:10px;
	padding-bottom: 50px;
	margin-bottom: 70px;
}

.rec_top1{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	margin-bottom: 34px;
}

.rec_top1::before{
	display: block;
	content:"";
	width:120px;
	height: 1px;
	background: #fff;
}

.rec_top1::after{
	display: block;
	content:"";
	width:120px;
	height: 1px;
	background: #fff;
}

.rec_top1 p{
	font-size: 24px;
	line-height: 1.4;
	padding:0 20px;
}

.rec_top1 p span{
	display: inline-block;
}

.rec_top2{
	width:100%;
	font-size: 48px;
	line-height: 1.4;
}

@media screen and (max-width: 750px) {
	.rec_top2{
		font-size: 36px;
	}
}

@media screen and (max-width: 600px) {
	.rec_top{
		height: 300px;
		padding-bottom: 30px;
		margin-bottom: 50px;
	}
	
	.rec_top1{
		width:100%;
		justify-content: center;
		margin-bottom: 30px;
	}
	
	.rec_top1::before{
		width:calc( 50% - 100px );
	}

	.rec_top1::after{
		width:calc( 50% - 100px );
	}
	
	.rec_top1 p{
		font-size: 18px;
		padding:0 10px;
	}
	
	.rec_top2{
		font-size: 24px;
	}
	
	.rec_top2 span{
		display: inline-block;
	}
}

.rec1_wrap{
	background: url("images/rec1_bg.webp") no-repeat center/contain;
}

.rec1{
	position: relative;
	width:100%;
	max-width: 1200px;
	margin:0 auto 100px;
	display: flex;
	justify-content: center;
}

.rec1_text{
	display: table;
	border-right: 1px solid #b81d22;
	border-left: 1px solid #b81d22;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	padding: 0 50px;
	margin:0 auto;
	font-size: 60px;
	line-height: 1.5;
	position: relative;
	z-index: 2;
	color:#000;
}

.rec1_img{
	width:100%;
	display: block;
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}

.rec1_img_sp{
	display: none;
}

@media screen and (max-width: 1000px) {
	.rec1_text{
		font-size: 48px;
		padding:0 30px;
	}
}

@media screen and (max-width: 600px) {
	.rec1{
		margin-bottom: 40px;
	}
	
	.rec1_text{
		font-size: 26px;
		padding:0 15px;
	}
	
	.rec1_img_sp{
		width:100%;
		display: block;
		position: absolute;
		top:50%;
		left: 0;
		transform: translateY(-50%);
	}

	.rec1_img{
		display: none;
	}
}

.rec2{
	text-align: center;
	font-size: 24px;
	line-height: 1.6;
	margin-bottom: 120px;
}

.rec2 p + p::before{
	content:"";
	display: block;
	width:70px;
	height: 1px;
	background: #b81d22;
	margin:20px auto;
}

@media screen and (max-width: 800px) {
	.sp_none{
		display: none;
	}
	
	.rec2{
		text-align: left;
	}
}

@media screen and (max-width: 600px) {
	.rec2{
		font-size: 16px;
		margin-bottom: 70px;
	}
}

.rec3_wrap{
	padding:30px 0 100px;
	position: relative;
	margin-bottom: 120px;
}

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

.heading2{
	text-align: center;
	margin-bottom: 40px;
}

 .rec3 .heading2{
	 margin-bottom: 30px;
}

.heading2 p:nth-of-type(1){
	font-size: 36px;
	line-height: 1;
	margin-bottom: 12px;
}

.heading2 p:nth-of-type(2){
	font-size: 14px;
	color:#b81d22;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	line-height: 1.6;
}

.rec3_p1{
	font-size: 24px;
	text-align: center;
	margin-bottom: 50px;
}

.rec3_wrap::before{
	display: block;
	content:"";
	width:150px;
	height: 420px;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	background: #b81d22;
	position: absolute;
	top:-1px;
	left: -10px;
}

.rec3_wrap::after{
	width: 100px;
	height: 210px;
	display: block;
	content:"";
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	background: #b81d22;
	position: absolute;
	bottom:0;
	right: -10px;
}

.rec3_ol{
	padding-right: 30px;
}

.rec3_ol_box{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	line-height: 1.4;
}

.rec3_ol_box span{
	font-size: 60px;
	line-height: 1;
	color:#b81d22;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	font-style: italic;
	white-space: nowrap;
	padding-right: 24px;
	letter-spacing: -2px;
}

.rec3_ol_box p{
	font-size: 30px;
}

.rec3_ol_box:nth-of-type(1){
	padding-left: 60px;
}

.rec3_ol_box:nth-of-type(2){
	padding-left: 30px;
}

.rec3_ol_box + .rec3_ol_box{
	margin-top: 28px;
}

@media screen and (max-width: 600px) {
	.rec3_wrap{
		padding-bottom: 60px;
		margin-bottom: 70px;
	}
	
	.rec3_wrap::before{
		width:70px;
		height: 120px;
	}

	.rec3_wrap::after{
		width:60px;
		height: 80px;
	}
	
	.heading2{
		margin-bottom: 30px;
	}
	
	.heading2 p:nth-of-type(1){
		font-size: 24px;
	}
	
	.heading2 p:nth-of-type(2){
		font-size: 10px;
		margin-top: 6px;
	}
	
	.rec3 .heading2{
		margin-bottom: 20px;
	}
	
	.rec3_p1{
		font-size: 18px;
		margin-bottom: 30px;
	}
	
	.rec3_ol{
		padding-right: 0;
	}
	
	.rec3_ol_box:nth-of-type(1){
		padding-left: 0;
	}

	.rec3_ol_box:nth-of-type(2){
		padding-left: 0;
	}

	.rec3_ol_box + .rec3_ol_box{
		margin-top: 20px;
	}
	
	.rec3_ol_box span{
		font-size: 40px;
		padding-right: 20px;
	}
	
	.rec3_ol_box p{
		font-size: 18px;
	}
}

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

.rec_job_img{
	width:100%;
	height: 380px;
	background: url("images/rec_job.webp") no-repeat center/cover;
	margin-bottom: 40px;
}

.rec_job_p1{
	display: table;
	text-align: center;
	margin:0 auto 70px;
	padding:0 20px 10px;
	border-bottom: 1px solid #b81d22;
	line-height: 1.5;
}

.rec_job_p1 span{
	display: inline-block;
}

.rec_flow{
	max-width: 1060px;
	margin: 0 auto;
}

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

.rec_flow_box_h{
	display: flex;
	align-items: center;
	width:290px;
	min-height: 90px;
	padding:20px;
	position: relative;
	background: #f8f4f4;
}

.rec_flow_box_h img{
	width:30px;
	display: block;
	position: absolute;
	bottom:0;
	right: 0;
}

.rec_flow_box_text{
	width:calc( 100% - 290px );
	padding-left: 25px;
	display: flex;
	align-items: center;
}

.rec_flow_box > img{
	display: block;
	width:30px;
	margin:10px 20px;
}

@media screen and (max-width: 800px) {
	.rec_job_img{
		height: 300px;
	}
}

@media screen and (max-width: 600px) {
	.rec_job{
		margin-bottom: 70px;
	}
	
	.rec_job_img{
		margin-bottom: 30px;
		height: 200px;
	}
	
	.rec_job_p1{
		margin-bottom: 40px;
	}
	
	.rec_flow_box_h{
		width:100%;
		min-height: 0;
		padding:15px 10px;
		margin-bottom: 15px;
	}
	
	.rec_flow_box_text{
		width:100%;
		padding:0 10px;
	}
	
	.rec_flow_box > img{
		margin:20px auto;
	}
}

.rec_yoko{
	max-width: 1060px;
	margin:0 auto;
}

.rec_yoko_tbl{
	width:100%;
}

.rec_yoko_tbl + .rec_yoko_tbl{
	margin-top: 60px;
}

.rec_yoko_tbl_th{
	width:160px;
	padding:22px 0 20px;
	border-bottom: 1px dotted #999999;
	vertical-align: top;
}

.rec_yoko_tbl_td1{
	width:60px;
	padding:22px 0 20px;
	border-bottom: 1px dotted #999999;
	vertical-align: top;
}

.rec_yoko_tbl_td2{
	padding:22px 0 20px;
	border-bottom: 1px dotted #999999;
	vertical-align: top;
}

.rec_yoko_tbl_td2 > * + *{
	margin-top: 10px;
}

.rec_yoko_tbl_td2 span{
	display: inline-block;
}

.rec_yoko_tbl_td2 ul li{
	position: relative;
	padding-left: 16px;
}

.rec_yoko_tbl_td2 ul li > span:nth-of-type(1){
	position: absolute;
	top:0;
	left: 0;
}

.rec_yoko_tbl_td2 table th{
	white-space: nowrap;
	width:1px;
}

.rec_yoko_p_last{
	font-size: 18px;
	color:#b81d22;
	text-align: center;
	margin-top: 60px;
}

.rec_yoko_p_last span{
	display: inline-block;
}

@media screen and (max-width: 600px) {
	.rec_yoko .heading2{
		margin-bottom: 15px;
	}
	
	.rec_yoko_tbl + .rec_yoko_tbl{
		margin-top: 40px;
	}
	
	.rec_yoko_tbl_th{
		white-space: nowrap;
		width:1px;
	}
	
	.rec_yoko_tbl_td1{
		white-space: nowrap;
		width:1px;
		padding: 22px 15px 20px;
	}
	
	.rec_yoko_p_last{
		font-size: 16px;
		margin-top: 40px;
	}
}

@media screen and (max-width: 500px) {
	.rec_yoko_tbl_th{
		display: inline-block;
		white-space: nowrap;
		width:auto;
		padding: 17px 0 0;
		border-bottom: 0;
	}
	
	.rec_yoko_tbl_td1{
		display: inline-block;
		white-space: nowrap;
		width:auto;
		padding: 17px 15px 0;
		border-bottom: 0;
	}
	
	.rec_yoko_tbl_td2{
		display: block;
		width:100%;
		padding-top: 12px;
		padding-bottom: 15px
	}
}

.info_wrap{
	padding-top: 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.info_l{
	width:calc( 100% - 380px );
	max-width: 680px;
}

.info_r{
	width:330px;
}

.info_arch > p{
	font-size: 18px;
	line-height: 1;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	margin-bottom: 14px;
	color:#b81d22;
	padding-left: 10px;
}

.info_arch_list > li > a{
	display: block;
	padding:15px 20px;
	margin-top: 8px;
	background: #f6f1f1;
	color:#000;
	border:1px solid #f6f1f1;
}

.info_arch_list > li > a:hover{
	color:#b81d22;
	border:1px solid #b81d22;
}

.info_list_box{
	display: flex;
	padding:15px;
	background: #f6f1f1;
}

.info_list_box:nth-of-type(2n){
	background: #fff;
}

.info_list_box_date{
	width:120px;
	min-height: 60px;
	border-right: 1px solid #ccc;
	display: flex;
	align-items: center;
	font-size: 18px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	font-style: italic;
	color:#b81d22;
}

.info_list_box_h{
	width:calc( 100% - 120px );
	font-size: 18px;
	line-height: 1.4;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

.info_box_h{
	display: flex;
	padding-bottom: 10px;
	border-bottom: 1px solid #b81d22;
	margin-bottom: 24px;
}

.info_box_h > p:nth-of-type(1){
	font-size: 28px;
	line-height: 1.2;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	font-style: italic;
	color:#b81d22;
	white-space: nowrap;
	padding-right: 25px;
}

.info_box_h > p:nth-of-type(2){
	font-size: 24px;
	line-height: 1.4;
}

.info_box_content strong{
	font-weight: bold;
}
.info_box_content em{
	font-style: italic;
}
.info_box_content li{
	list-style: inherit;
	margin-left: 20px;
}

@media screen and (max-width: 900px) {
	.info_l{
		width:100%;
		margin:0 auto 60px;
	}
	
	.info_r{
		width:100%;
		max-width: 680px;
		margin:0 auto;
	}
	
	.info_arch_list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.info_arch_list li{
		width:49%;
	}
	
	.info_arch_list > li > a{
		padding:10px 15px;
	}
}

@media screen and (max-width: 600px) {
	.info_wrap{
		padding-top: 20px;
	}
	
	.info_l{margin-bottom: 40px;}
	
	.info_list_box{
		padding:10px;
	}
	
	.info_list_box_date{
		width:84px;
		font-size: 14px;
	}
	
	.info_list_box_h{
		width:calc( 100% - 84px );
		font-size: 14px;
		padding-left: 10px;
	}
	
	.info_box_h{
		flex-wrap: wrap;
	}
	
	.info_box_h > p:nth-of-type(1){
		font-size: 20px;
		width: 100%;
		margin-bottom: 4px;
	}
	
	.info_box_h > p:nth-of-type(2){
		font-size: 18px;
	}
}

.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.wp-pagenavi .current{
	display: flex;
	justify-content: center;
	align-items: center;
	width:36px;
	height: 50px;
	border:1px solid #f6f1f1;
	background: #f6f1f1;
	margin:0 3px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 300;
}

.wp-pagenavi .page{
	display: flex;
	justify-content: center;
	align-items: center;
	width:36px;
	height: 50px;
	border:1px solid #f6f1f1;
	margin:0 3px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 300;
}

.wp-pagenavi .page:hover{
	border:1px solid #b81d22;
}

.wp-pagenavi .previouspostslink{
	display: flex;
	justify-content: center;
	align-items: center;
	width:36px;
	height: 50px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	color:#b81d22;
	margin-right: 5px;
	transform: rotate(180deg);
}

.wp-pagenavi .nextpostslink{
	display: flex;
	justify-content: center;
	align-items: center;
	width:36px;
	height: 50px;
	font-family: "avenir-lt-pro", sans-serif;
	font-weight: 500;
	color:#b81d22;
	margin-left: 5px;
}

.wp-pagenavi .previouspostslink:hover{
	color:#3C3ADD
}

.wp-pagenavi .nextpostslink:hover{
	color:#3C3ADD
}

@media screen and (max-width: 600px) {
	.wp-pagenavi{
		margin-top: 24px;
	}
	
	.wp-pagenavi > span , .wp-pagenavi > a{
		width:30px !important;
		height: 40px !important;
	}
}

.h_flex{
	border-radius: 20px;
	background: rgba(255,255,255,0);
	transition: .2s;
}

.header_on .h_flex{
	padding-left: 20px;
	background: rgba(255,255,255,1.00);
}

@media screen and (max-width: 950px) { 
	.header_on .h_flex{
		padding:10px;
		border-radius: 10px;
	}
	
	.ham_btn{
		right: 10px;
	}
}

/* move */

.rec3_ol{
	overflow: hidden;
}

.rec3_ol_box{
	transition: .5s;
	opacity: 0;
	position: relative;
	left: 100px;
}

.rec3_ol_box:nth-of-type(2){
	transition-delay: .4s;
}

.rec3_ol_box:nth-of-type(3){
	transition-delay: .8s;
}

/* move end */

























