html{
    font-size: 62.5%;
	scroll-behavior: smooth;
}


body{
	color: #252525;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
	font-size: 1.45rem;
	font-family: "sawarabi-gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}



*{
	margin: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #252525;
	transition: .3s;
}

ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1300ms, transform 1200ms;
	transition-delay: 350ms;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flow_left{
	opacity: 0;
	transform: translateX(-80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_left.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.flow_right{
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.blurup{
	filter: blur(10px);
	opacity: 0;
	transition: all 2s ease;
}
.blurup.inview{
	filter: blur(0);
	opacity: 1;
}


.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .5s;
    transition-delay: clip-path 0.3s, scale 0s;
}



.imgup.inview {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imgup img {
    transition: 1.6s cubic-bezier(0.6, 0, 0.07, 1);
    transform: translateX(-10%) scale(1.4);
}

.imgup.inview img {
    transform: translateX(0) scale(1);
}

.rotation {
    animation: rotateanim 75s linear infinite normal;
}



span.marker {
    background: linear-gradient(transparent 50%, rgb(235, 252, 4,0.6) 50%);
}


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	margin: 0 auto;
}

.flex_center{
	display: flex;
	justify-content: center;
}

.flex{
    display: flex;
}

.flex_end{
	display: flex;
	justify-content: flex-end;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
}

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

.flex_ar{
	display: flex;
	justify-content: space-around;
}

main{
	width: 100%;
}


.tate{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.w100{
	width: 100%;
}



/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 120px 0;
}

@media (max-width: 1020px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
}

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 740px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 60px 0;
    }
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.3rem;
	}
}



@media (max-width: 960px){
	.none_960{
		display: none;
	}
}

@media (max-width: 740px){
	.none_650{
		display: none;
	}
	
	
}


.reverse{
	flex-direction: row-reverse;
}


.center_l{
	display: flex;
	align-items: center;
}

.center_b{
	display: flex;
	align-items: flex-end;
}

body p{
	letter-spacing: 0.06em;
}

i{
	padding-right: 0.4em;
}

.en{
	font-family: "Inter Tight", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}




.scale-big{
	transform: scale(0);
}

.scale-big.inview{
	animation: scalebig 700ms ease 300ms 1 forwards;
}


@keyframes scalebig{
	0%{
		transform: scale(0);
	}
	60%{
		transform: scale(103%);
	}
	100%{
		transform: scale(100%);
	}
}





/* btn */


.m_btn {
	position: relative;
	width: 260px;
	margin-top: 40px;
	overflow: hidden;
}

.m_btn::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transform: translateX(-100%);
	top: 0;
	left: 0;
	opacity: 0.2;
	z-index: 1;
	pointer-events: none;
	transition: all 200ms ease;
}

.m_btn:hover::before{
	transform: translateX(0);
}

.m_btn a,.m_btn p{
	position: relative;
	display: block;
	background-color: #B71502;
	color: #fff;
	padding: 15px 0;
	font-size: 1.8rem;
	padding-left: 25px;
	letter-spacing: 0.05em;
	font-family: "sicsquare", sans-serif;
	font-weight: 600;
	font-style: normal;
	border-radius: 5px;
}

.m_btn p{
	padding-left: 0;
	text-align: center;
}

.m_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background-color: #fff;
	aspect-ratio: 1 / 1;
	width: 30px;
	border-radius: 5px;
}

.m_btn a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/btn_arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 15px;
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
}


header .m_btn a,header .m_btn p{
	font-family: "Inter Tight", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}



/* font-size (ratio 1.25, base 16px)*/


.king{
	font-size: 8.4rem;
}
.biggest{
	font-size: 6.3rem;
}
.big{
	font-size:  4.7rem;
}
.s_big{
	font-size: 3.5rem;
}
.f_txt{
	font-size: 2.6rem;
}
.s_f_txt{
	font-size: 2rem;
}


@media (max-width: 1400px){
	.wrapper{
		margin-left: 30px;
		margin-right: 30px;
	}
}


/* sub_ttl */


.sub_ttl .en{
	position: relative;
	display: block;
	font-size: 1.6rem;
	color: #555;
}



.sub_ttl .ja{
	display: block;
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 40px;
	font-family: "sicsquare", sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.6;
}


.c_box{
	max-width: 1280px;
	margin: 0 auto;
}


html .site_header h1,
html .kasou_top h2{
	visibility: hidden;
}

html.wf-active .site_header h1,
html.wf-active .kasou_top h2{
	visibility: visible;
}




/* header */


h1 a{
	font-size: 3.6rem;
	color: #fff;
	font-family: "ab-kokoro-no1", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: -0.06em;
}

h1 a:hover{
	opacity: 0.75;
}

header{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
	height: 130px;
	transition: all .3s;
}

.hd_inner{
	padding-left: 40px;
	padding-right: 40px;
}

header.change_color{
	background-color: #fff;
}

header.change_color .main_nav a{
	color: #252525;
}

header.change_color h1 a{
	color: #252525;
}

.k_btn a{
	position: relative;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}

.k_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	height: 50%;
	width: 2px;
}

.k_btn p{
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

.k_btn a,.k_btn p{
	display: block;
	padding: 9px 20px;
	background-color: #B71502;
	color: #fff;
	letter-spacing: normal;
	font-size: 1.4rem;
	font-weight: 600;
}

.k_btn p{
	background-color: #ddd;
	color: #252525;
}

.k_btn i{
	font-size: 0.9em;
}

.k_btn a:hover{
	opacity: 0.75;
}

.main_nav{
	margin-top: 12px;
	margin-right: 5px;
}

.main_nav li+li{
	margin-left: 30px;
}

.main_nav li a{
	display: block;
	font-size: 1.6rem;
	color: #fff;
}

.main_nav li a:hover{
	opacity: 0.75;
}




.fv{
	position: relative;
}



.custom-shape-divider-bottom-1756454047 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
	z-index: 10;
}

.custom-shape-divider-bottom-1756454047 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 50px;
}

.custom-shape-divider-bottom-1756454047 .shape-fill {
    fill: #FFFFFF;
}


.top_slider{
	position: relative;
	z-index: 5;
	height: 110vh;
	width: 100%;
	min-height: 500px;
}
.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 2;
}
.top_slider .slider li{
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
}


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.3)),url(../img/top01.jpg);
	background-position-y: 90%;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/top02.jpg);
	background-position: center;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/top03.jpg);
	background-position: center;
}


.catch{
	position: absolute;
	font-size: 6.8rem;
	color: #fff;
	top: 47%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	font-family: "ab-kokoro-no1", sans-serif;
	font-weight: 600;
	font-style: normal;
	white-space: nowrap;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.1),2px 2px 3px rgba(0,0,0,0.1),2px 2px 3px rgba(0,0,0,0.1),2px 2px 3px rgba(0,0,0,0.1);
}

.catch h2{
	letter-spacing: -0.05em;
}

.catch .sm{
	display: block;
	font-size: 0.6em;
	margin-top: 5px;
}
/* 
.catch span{
	background-color: rgb(255, 255, 255,0.8);
	line-height: 1;
	padding: 10px 15px;
} */

.fv .ac_img{
	position: absolute;
	width: 170px;
	top: calc(47% + 170px);
	left: calc(50% + 250px);
	transform: translate(-50%,-50%);
	z-index: 10;
	transition: all 2s ease;
}

.fv_ac.inview{
	left: calc(50% - 250px);
}


.kasou header{
	background-color: #fff;
}

.kasou header .main_nav a{
	color: #252525;
}
.kasou header h1 a{
	color: #252525;
}

.kasou #nav_toggle span{
	background-color: #B71502;
}




@media (max-width: 1200px){
	.main_nav{
		display: none;
	}
	header .btn_area{
		display: none;
	}
	.catch{
		font-size: 6rem;
	}
	header{
		height: 90px;
	}
	.top_slider{
		height: 90vh;
	}
	.hd_inner{
		padding-right: 20px;
	}
}

@media (max-width: 740px){
	.custom-shape-divider-bottom-1756454047 svg{
		height: 70px;
	}
	.catch{
		font-size: 3.2rem;
	}
	.fv .ac_img{
		width: 110px;
	}
	.fv .ac_img{
		top: calc(47% + 100px);
		left: calc(50% + 80px);
	}
	.fv_ac.inview{
		left: calc(50% - 80px);
	}
	header{
		height: 70px;
	}
	h1 a{
		font-size: 2rem;
	}
	.hd_inner{
		padding-left: 20px;
		padding-right: 10px;
	}
}





/* news */

.news{
	padding-bottom: 0;
}


.news .c_box{
	background-color: #f5f5f5;
	padding: 50px;
	border-radius: 10px;
}

.news_list a{
	position: relative;
	display: block;
	padding: 17px 5px;
}

.news_list a::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 8px;
	background: linear-gradient(0deg,rgba(183, 21, 2, 1) 0%, rgba(235, 167, 167, 1) 100%);
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	transition: all .3s ease;
}

.news_list a:hover::before{
	transform: translateY(-50%) scale(0);
}

.news_list a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_red.png);
	aspect-ratio: 1 / 1;
	background-size: cover;
	border-spacing: center;
	width: 16px;
	top: 50%;
	right: 7px;
	transform: translateY(-50%) scale(0);
	transition:  all.3s ease;
}

.news_list a:hover::after{
	transform: translateY(-50%) scale(1);
}

.news_list .title{
	transition: all .3s ease;
}

.news_list a:hover .title{
	opacity: 0.75;
}



.news .left{
	width: 200px;
}

.news .right{
	width: calc(90% - 200px);
}

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

.news_list li:last-child{
	border-bottom: solid 1px #ccc;
}

.news_list .up_ymd{
	background-color: #fff;
	color: #B71502;
	border: solid 1px #B71502;
	font-weight: 600;
	display: inline-block;
	border-radius: 20px;
	padding: 4px 10px 2px;
	font-size: 1.2rem;
	margin-right: 20px;
	letter-spacing: 0.05em;
}


@media (max-width: 1200px){
	.news .flex_bet{
		flex-direction: column;
	}
	.news .right{
		width: 100%;
	}
	.news .left{
		width: 100%;
	}
	.news .inner{
		width: 85%;
	}
	.news .sub_ttl{
		text-align: center;
	}
}

@media (max-width: 740px){
	.news .c_box{
		padding: 40px 20px;
	}
	.sub_ttl .ja{
		font-size: 2.4rem;
		margin-bottom: 20px;
	}
	.news_list .title{
		display: block;
		margin-top: 7px;
		line-height: 1.6;
	}
	.news_list a{
		padding: 17px 10px;
		padding-right: 25px;
	}
	.news_list .up_ymd{
		font-size: 1rem;
	}
	.sub_ttl .en{
		line-height: 1.4;
	}
	.m_btn{
		margin-top: 25px;
	}
	.m_btn a{
		font-size: 1.6rem;
	}
	.m_btn p{
		font-size: 1.6rem;
	}

	
}




/* aboutus */


.aboutus{
	position: relative;
	padding-bottom: 200px;
}
.aboutus .ac_txt{
	position: absolute;
	bottom: 140px;
	right: 10px;
	font-size: 10rem;
	font-weight: bold;
	color: #eee;
	line-height: 1;
	z-index: 1;
}

.aboutus .red{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
}

.aboutus .left{
	position: relative;
	width: 44%;
	z-index: 2;
}
.aboutus .right{
	width: 48%;
	position: relative;
	z-index: 0;
}

.aboutus .txt_box{
	max-width: 460px;
}

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

.aboutus .sub_ttl .ja{
	margin-left: -5px;
}

.aboutus .box{
	width: 50%;
}

.aboutus .img img{
	aspect-ratio: 3 / 2.2;
	width: 100%;
	object-fit: cover;
}

.aboutus .img.tp01 img{
	aspect-ratio: 1 / 1;
}

.aboutus .img.tp01{
	margin-top: 40px;
	margin-right: 15px;
}

.aboutus .img.tp02{
	margin-bottom: 15px;
}

.aboutus .inner{
	position: relative;
}



@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column-reverse;
	}
	.aboutus .right{
		width: 70%;
		margin: 0 0 0 auto;
	}
	.aboutus .left{
		width: 100%;
		margin-top: -50px;
	}
	.aboutus .txt_box{
		max-width: none;
	}
	.aboutus .inner{
		width: 85%;
	}
	.aboutus{
		padding-bottom: 120px;
	}
	.aboutus .ac_txt{
		font-size: 5.2rem;
		bottom: auto;
		top: 50%;
	}
}

@media (max-width: 740px){
	.aboutus .left{
		margin-top: 20px;
	}
	.aboutus .right{
		width: 100%;
	}
	.aboutus{
		padding-bottom: 70px;
	}
	.aboutus .sub_ttl .ja{
		margin-left: 0;
	}
	.aboutus .ac_txt{
		top: auto;
		font-size: 4rem;
		bottom: -20px;
	}
}




/* thinking */


.thinking{
	position: relative;
	background: url(../img/sky.png);
	background-size: cover;
	background-position: bottom;
	clip-path: ellipse(130% 100% at bottom);
}

.thinking .bus_img{
	position: absolute;
	top: 0;right: 0;
}

/* .thinking::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(255, 255, 255,0.3);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
} */

.thinking .inner{
	position: relative;
	z-index: 1;
}

.thinking .sub_ttl{
	position: relative;
	text-align: center;
}

.thinking ul{
	position: relative;
	font-size: 1.6rem;
	width: fit-content;
	margin: 0 auto;
}

.thinking ul li{
	position: relative;
	padding: 10px 60px;
	border-top: solid 1px #fff;
	letter-spacing: 0.04em;
	padding-left: 45px;
}

.thinking ul li:last-child{
	border-bottom: solid 1px #fff;
}

.thinking ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 24px;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

.thinking .cir{
	position: relative;
	margin-bottom: 50px;
}

/* .thinking .cir::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	aspect-ratio: 1 / 1;
	width: 30%;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
} */

.thinking .txt_box{
	font-size: 1.8rem;
	text-align: center;
}

.thinking .m_btn+.m_btn{
	margin-left: 40px;
}


.thinking .bus_img{
	position: absolute;
	top: 50%;
	right: 0;
	width: 24%;
	transform: translateY(-50%);
}


@media (max-width: 1200px){
	.thinking .txt_box{
		font-size: 1.6rem;
	}
	.thinking .cir{
		margin-bottom: 40px;
	}
}

@media (max-width: 740px){
	.thinking .sub_ttl .en{
		margin-bottom: 5px;
	}
	.thinking{
		clip-path: ellipse(170% 100% at bottom);
	}
	.thinking ul{
		font-size: 1.4rem;
	}
	.thinking ul li::before{
		width: 16px;
	}
	.thinking ul li{
		padding-left: 35px;
	}
	.thinking .txt_box{
		text-align: left;
		font-size: 1.4rem;
	}
	.thinking .txt_box p{
		display: inline;
	}
	.thinking .cir{
		margin-bottom: 20px;
	}
	.thinking .flex_center{
		flex-direction: column;
		align-items: center;
	}
	.thinking .m_btn+.m_btn{
		margin-left: 0;
		margin-top: 18px;
	}
}



/* guide */


.side_sec{
	background-color: #f5f5f5;
}


.side_sec.guide{
	position: relative;
}

.side_sec.guide .line_img{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 1520px;
}


.side_sec .inner{
	position: relative;
	margin-left: 0;
	width: 96%;
	max-width: 1600px;
	z-index: 2;
}

.side_sec .wrap{
	position: relative;
}


.side_sec .txt_area{
	position: absolute;
	top: 50%;
	right: 0;
	background-color: #fff;
	backdrop-filter: blur(3px);
	padding: 40px 50px;
	width: 45%;
	transform: translateY(-50%);
}

.side_sec .imgbox{
	width: 65%;
}

.side_sec .imgbox img{
	width: 100%;
	object-fit: cover;
	height: 600px;
}

.side_sec.safety{
	padding-top: 50px;
	padding-bottom: 160px;
}

.side_sec.safety .inner{
	margin-left: auto;
	margin-right: 0;
}

.side_sec.safety .imgbox{
	margin: 0 0 0 auto;
}

.side_sec.safety .txt_area{
	left: 0;
	right: auto;
}

.side_sec .txt_area .in{
	position: relative;
}

.side_sec .txt_area .in::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #B71502;
	width: calc(100% + 76px);
	height: calc(100% + 60px);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.side_sec .txt_area .ac_img{
	position: absolute;
	top: -40px;
	left: 50%;
	width: 100px;
	transform: translateY(-100%);
	transition: all 1.6s ease;
	z-index: 3;
}

.side_sec .txt_area .ac_img.inview{
	left: 0;
}





@media (max-width: 1200px){
	.side_sec .imgbox{
		width: 100%;
		margin-bottom: 50px;
	}
	.side_sec.safety .imgbox{
		margin-bottom: 50px;
	}
	.side_sec .imgbox img{
		height: 400px;
	}
	.side_sec .txt_area{
		position: static;
		width: 100%;
	}
	.side_sec .inner{
		width: 85%;
		margin: 0 auto;
	}
	.side_sec.safety .inner{
		margin: 0 auto;
	}
	.side_sec .txt_area{
		transform: translateY(0);
	}
	.side_sec.guide{
		padding-bottom: 50px;
	}
	.side_sec.safety{
		padding-bottom: 120px;
	}
}

@media (max-width: 740px){
	.side_sec .txt_area{
		padding: 30px;
	}
	.side_sec .txt_area .in::before{
		width: calc(100% + 45px);
		height: calc(100% + 50px);
	}
	.side_sec .imgbox img{
		height: 220px;
	}
	.side_sec .txt_area .ac_img{
		top: -30px;
		width: 70px;
	}
	.side_sec .imgbox{
		margin-bottom: 30px;
	}
	.side_sec.safety .imgbox{
		margin-bottom: 30px;
	}
	.side_sec.safety{
		padding-top: 0;
		padding-bottom: 60px;
	}
	.side_sec.guide .line_img{
		width: auto;
		height: 100%;
	}
	.side_sec.guide .line_img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

}




/* footer */



footer{
	position: relative;
	z-index: 1;
}

.foo_top{
	position: relative;
	padding: 80px 0;
	color: #fff;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
}
.foo_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(37, 37, 37,0.6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.foo_top .inner{
	position: relative;
	z-index: 1;
}

.foo_top .btn a{
	display: block;
}

.foo_top .btn a i{
	font-size: 0.9em;
}

.foo_top .sub_ttl{
	text-align: center;
}

.foo_top .k_btn a,.foo_top .k_btn p{
	font-size: 1.8rem;
}


.foo_top .sub_ttl .en{
	color: #ccc;
}

.foo_top .k_btn a, .foo_top .k_btn p{
	padding: 10px 28px;
}


.foo_btm{
	text-align: center;
	font-size: 1.35rem;
	padding-top: 50px;
}

.foo_btm .foo_logo{
	font-size: 2.8rem;
	margin-bottom: 15px;
}

.copy{
	margin-top: 50px;
}

.copy p{
	padding: 3px 0;
	background-color: #B71502;
	color: #fff;
	letter-spacing: 0.15em;
	font-weight: 500;
}


@media (max-width: 740px) {
	.foo_top .k_btn a, .foo_top .k_btn p{
		font-size: 1.5rem;
		padding: 10px 20px;
	}
	.foo_top{
		padding: 40px 0;
	}
	.foo_btm .foo_logo{
		font-size: 2.2rem;
	}
}




/* page top */

.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
    background: #fff;
    z-index: 49;
}


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
	background-color: #B71502;
	border: solid 1px #fff;
}

.page_top a i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-weight: 900;
    font-size: 10px;
    color: #fff;
	padding: 0;
}

.page_top.is_animation:hover {
    transform: translateY(-5px);
}

@media (max-width: 740px) {
    .page_top {
        width: 45px;
        height: 45px;
    }
}





/* kasou_top */


.kasou_top{
	position: relative;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 230px 0 90px;
}

.kasou_top h2{
	color: #fff;
	font-size: 4.6rem;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 0.03em;
	font-family: "ab-kokoro-no1", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.kasou_top h2 .en{
	display: block;
	font-size: 2rem;
	color: #ccc;
}

.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(37, 37, 37,0.7);
	backdrop-filter: blur(2px);
	top: 0;
	left: 0;
	z-index: 0;
}

.kasou_top .inner{
	position: relative;
	z-index: 1;
}

.kasou_top ol{
	color: #fff;
	width: fit-content;
	margin: 20px auto 0;
}

.kasou_top ol a{
	position: relative;
	color: #fff;
	padding-right: 24px;
}

.kasou_top ol a::before{
	content: "＞";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
}

.kasou_top ol li+li{
	margin-left: 10px;
}

.kasou_top ol a:hover{
	opacity: 0.75;
}

.kasou_top .ac{
	display: inline-block;
	line-height: 1;
}

.kasou_top .ac img{
	height: 39px;
	margin-top: 4px;
	margin-right: 2px;
}



@media (max-width: 1200px){
	.kasou_top{
		padding-top: 200px;
	}
}


@media (max-width: 740px){
	.kasou_top h2{
		font-size: 3.2rem;
	}
	.kasou_top h2 .en{
		font-size: 1.5rem;
	}
	.kasou_top{
		padding-top: 150px;
		padding-bottom: 70px;
	}
	.kasou_top .ac img{
		height: 27px;
		margin-top: 3px;
	}
}





/* 貸切バスページ */


.case{
	position: relative;
	background: url(../img/sky.jpg);
	background-size: cover;
	background-position: center;
	padding: 80px 0;
}

/* .case::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(255, 255, 255,0.4);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
} */

.case .inner{
	position: relative;
	max-width: 1280px;
	z-index: 1;
	padding: 70px 100px;
	background-color: rgb(255, 255, 255,0.8);
}

.case .num{
	position: relative;
	line-height: 1.2;
	text-align: center;
	letter-spacing: normal;
	font-size: 1.3rem;
	font-weight: 600;
	color: #555;
	width: fit-content;
}

.case .num .bb{
	display: block;
	font-size: 4rem;
	color: #B71502;
	width: 45px;
	letter-spacing: normal;
}

.case .num::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	aspect-ratio: 1 / 1;
	width: 4px;
	border-radius: 50%;
	bottom: -1px;
	left: 0;
}

.case .num::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	height: 2px;
	width: 32px;
	bottom: 0;
	right: 0;
	border-radius: 10px;
}

.case .item_list{
	margin-top: 40px;
	flex-wrap: wrap;
	gap: 40px;
}
.case .item{
	width: calc((100% - 40px) / 2);
	border-radius: 10px;
}
.case .item h4{ 
	position: relative;
	font-size: 2.2rem;
	font-weight: 600;
	font-family: sicsquare, sans-serif;
	margin-bottom: 10px;
	z-index: 2;
}

.case .item .img{
	position: relative;
	width: 60%;
	margin: 0 auto 20px;
	margin-top: -20px;
	z-index: 3;
}
.case .item .img img{
	border-radius: 15px;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.case .item p{
	position: relative;
}

.case .sub_ttl{
	text-align: center;
}

.case .top_area{
	text-align: center;
}

.case .color_box{
	position: relative;
	height: 220px;
	padding: 45px;
	padding-top: 0;
	z-index: 2;
}

.case .color_box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(183, 21, 2,0.1);
	height: calc(100% + 70px);
	width: 100%;
	z-index: 0;
	bottom: 0;
	left: 0;
}

.case .color_box::after{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #B71502;
	height: calc(100% + 50px);
	width: 96%;
	z-index: 0;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}



.p_flow .sub_ttl{
	text-align: center;
}

.p_flow .box{
	position: relative;
	max-width: 320px;
	line-height: 1.6;
	height: 300px;
}

.p_flow .box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	aspect-ratio: 1 / 1;
	width: 18px;
	border-radius: 50%;
	right: -90px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.p_flow .box+.box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	aspect-ratio: 1 / 1;
	width: 18px;
	border-radius: 50%;
	right: auto;
	top: 50%;
	left: -90px;
	transform: translateY(-50%);
}

.p_flow .box .mini{
	font-size: 0.8em;
}

.p_flow .wrap .box+.box{
	margin-top: 80px;
}

.p_flow .wrap+.wrap{
	margin-top: 50px;
}

.p_flow h4{
	margin-bottom: 10px;
	font-size: 2.2rem;
}

.p_flow .flow_list{
	position: relative;
}

.p_flow .flow_list::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}



.p_flow .wrap{
	position: relative;
}

.p_flow .wrap::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: calc(50% - 410px);
	top: 150px;
	left: 50%;
	border-top: dotted 6px #b94f43;
	transform: translate(-100%,-50%);
}

.p_flow .wrap::after{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: calc(50% - 410px);
	top: 230px;
	left: 50%;
	border-top: dotted 6px#b94f43;
	transform: translate(0,-50%);
}


.p_flow .icon{
	text-align: center;
	margin-bottom: 15px;
}

.p_flow .icon img{
	width: 100px;
	aspect-ratio: 1 / 1;
	background-color: rgb(183, 21, 2,0.1);
	padding: 10px;
	border-radius: 50%;
	border: solid 2px #ccc;
}

.p_flow .box p:nth-child(1 of p){
	font-weight: bold;
	color: #B71502;
	letter-spacing: 0.03em;
	padding-left: 2px;
}

.p_flow .inner{
	max-width: 1080px;
}

.p_flow .wrap:last-child:after{
	display: none;
}

.p_flow .box a{
	display: inline-block;
	color: #B71502;
	letter-spacing: 0.06em;
	margin-right: 5px;
	font-weight: 600;
	text-decoration: underline;
	margin-top: 10px;
}

.p_flow .box .fax{
	display: inline;
	font-weight: 600;
}

.p_flow .box a:hover{
	opacity: 0.75;
}



.faq{
	background-color: #f5f5f5;
}


.faq .sub_ttl{
	text-align: center;
}

.faq_accordion li{
	position: relative;
	
}

.faq_accordion li::before{
	content: "";
	position: absolute;
	display: inline-block;
	background-color: #B71502;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}

.faq_accordion{
	margin: 0 auto;
	max-width: 1080px;
}
.faq_accordion li+li{
	margin-top: 20px;
}
.faq_accordion li h4{
    position: relative;
    cursor: pointer;
	font-size: 1.7rem;
    padding: 25px 20px;
	padding-right: 50px;
    transition: all .3s ease;
	border: solid 1px #B71502;
	background-color: #fff;
	border-bottom: 0px;
	display: flex;
}
.faq_accordion li h4 span.en{
	display: inline-block;
	font-size: 1.2em;
	line-height: 1.5;
	margin-right: 0.5em;
	color: #B71502;
}
.faq_accordion li h4::before,
.faq_accordion li h4::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #B71502;
}
.faq_accordion li h4::before{
    top: 48%;
    right: 20px;
    transform: rotate(0deg);
}
.faq_accordion li h4::after{    
    top: 48%;
    right: 20px;
    transform: rotate(90deg);
}
.faq_accordion li h4.close::before{
	transform: rotate(45deg);
}
.faq_accordion li h4.close::after{
	transform: rotate(-45deg);
}

.faq_accordion li .text{
	position: relative;
    display: none;
	border: solid 1px #B71502;
	border-top: 0px;
    padding: 30px 20px;
	background-color: #f8eae9;
}
.faq_accordion li .text::before{
	content: '';
	width: calc(100% - 40px);
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #B71502;
	pointer-events: none;
	z-index: 1;
}
.faq_accordion li .text .flex{
	display: flex;
	justify-content: space-between;
}
.faq_accordion li .text .flex span.en{
	display: inline-block;
	color: #B71502;
	font-size: 1.8em;
	margin-right: 0.5em;
	line-height: 1;
}
.faq_accordion li .text .flex .info{
	width: 100%;
}
.faq_accordion li .text .flex .info p{
	margin-bottom: 5px;
}
.faq_accordion li .text .flex .info p:last-child{
	margin-bottom: 0 !important;
}




@media (max-width: 1200px){
	.p_flow .wrap+.wrap{
		margin-top: 0;
	}
	.p_flow .wrap{
		flex-direction: column;
	}
	.p_flow .box{
		margin: 0 0 0 auto;
		width: 65%;
		max-width: none;
	}
	.p_flow .wrap .box+.box{
		margin-top: 0;
	}
	.p_flow .icon{
		margin-bottom: 0;
	}
	.p_flow .box::before{
		right: auto;
		left: -50px;
	}
	.p_flow .box::before{
		width: 20px;
		top: 47%;
	}
	.p_flow .box+.box::before{
		width: 20px;
		left: -50px;
		top: 47%;
	}
	.p_flow .flow_list::before{
		left: 30px;
	}
	.p_flow .wrap::before{
		width: calc(35% - 80px);
		top: 142px;
		left: 30px;
		transform: translate(0,-50%);
	}
	.p_flow .wrap::after{
		width: calc(35% - 80px);
		right: auto;
		top: 440px;
		left: 30px;
		transform: translate(0,-50%);
	}
	.p_flow{
		padding-bottom: 0;
	}
	.case .item{
		width: 100%;
	}
}


@media (max-width: 650px){
	.p_flow .ac_ttl{
		margin-bottom: 20px;
	}
	.p_flow .flow_list::before{
		left: 0;
	}
	.p_flow .box{
		width: 80%;
		height: 270px;
	}
	.p_flow h4{
		font-size: 1.8rem;
	}
	.p_flow .icon img{
		width: 85px;
	}
	.p_flow .box::before{
		width: 14px;
		left: -30px;
		top: 45%;
	}
	.p_flow .box+.box::before{
		width: 14px;
	}
	.p_flow .box+.box::before{
		left: -30px;
		top: 45%;
	}
	.p_flow .wrap::before{
		left: 0;
		top: 392px;
	}
	.p_flow .wrap::after{
		left: 0;
		top: 123px;
	}
	.p_flow .wrap:last-child::before{
		top: 123px;
	}
	.p_flow .box a{
		display: block;
	}
	.case .num .bb{
		font-size: 3rem;
	}
	.case .num::after{
		width: 28px;
	}
	.case .num::before{
		bottom: -6px;
		left: 5px;
	}
	.case .num::after{
		bottom: -5px;
		right: 5px;
	}
	.case .top_area p{
		display: inline;
	}
	.case .item h4{
		font-size: 1.8rem;
	}
	.case .num{
		font-size: 1.1rem;
	}
	.case .color_box{
		height: auto;
	}
	.case .inner{
		padding: 40px 20px;
	}
	.faq .sub_ttl{
		margin-bottom: 10px;
	}
	.faq .ac_ttl{
		margin-bottom: 20px;
	}
	.faq_accordion li h4{
		font-size: 1.45rem;
		padding: 18px 14px;
		padding-right: 45px;
	}
	.faq_accordion li h4::before, .faq_accordion li h4::after{
		width: 12px;
	}

	.case .color_box{
		padding: 30px;
		padding-top: 0;
	}
	.case{
		padding: 40px 0;
	}
}





/* バス紹介ページ */


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


.intro .ac_txt{
	position: absolute;
	top: 100px;
	right: 10px;
	font-size: 16rem;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #b94f43;
	opacity: 0.2;
}

.intro .ac_txt02{
	position: absolute;
	bottom: 100px;
	left: 10px;
	font-size: 16rem;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #b94f43;
	opacity: 0.2;
}

.intro .ac_txt span{
	width: fit-content;
	display: block;
}

.intro .wrap{
	max-width: 1080px;
	margin: 0 auto;
}

.intro .inner{
	position: relative;
}


.intro .fir{
	position: relative;
	font-size: 1.6rem;
	max-width: 800px;
	margin: 0 auto 100px;
	background-color: rgb(185, 79, 67,0.1);
	padding: 15px 30px;
}

.intro .ill{
	position: absolute;
	width: 120px;
	bottom: -70px;
	right: 0;
}

.intro .item_list{
	max-width: 1280px;
	margin: 0 auto;
}

.intro .item{
	position: relative;
	background-color: rgb(255, 255, 255,0.6);
	padding: 30px 45px;
	border: solid 1px #B71502;
	overflow: hidden;
}

.intro .item .mini_bus{
	position: absolute;
	width: 80px;
	top: 20px;
	left: 80px;
	opacity: 0;
	transition: all 1s ease;
}

.intro .item .mini_bus.inview{
	opacity: 1;
	left: 20px;
}

.intro .item:nth-child(even) .mini_bus{
	left: auto;
	right: -20px;
}

.intro .item:nth-child(even) .mini_bus.inview{
	right: 20px;
}

.intro .item h3{
	position: relative;
	font-size: 2.8rem;
	letter-spacing: 0.03em;
	text-align: center;
	margin-bottom: 45px;
}

.intro .item h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	height: 2px;
	width: 200px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.intro .item ul{
	width: 100%;
}

.intro .item ul li{
	border-top: solid 1px #ccc;
	padding: 15px 0;
	font-size: 1.8rem;
}

.intro .item ul li:last-child{
	border-bottom: solid 1px #ccc;
}

.intro .item .left{
	width: 48%;
}

.intro .item .right{
	width: 48%;
}

.intro .item .left img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}


.intro .item .right .work_slide img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.intro .item .bus{
	text-align: center;
}

.intro .item .bus img{
	max-width: 370px;
	aspect-ratio: auto;
}

.intro .item .top_area{
	margin-bottom: 40px;
}

.intro .item+.item{
	margin-top: 40px;
}

.intro .item .left .pdf{
	background-color: #f8eae9;
}

.intro .pdf a{
	display: block;
}

.intro .pdf a:hover{
	opacity: 0.7;
}

.intro .item .left .pdf img{
	object-fit: contain;
	padding: 15px;
}




@media (max-width: 1200px){
	.intro .ac_txt{
		font-size: 8rem;
		top: 300px;
	}
	.intro .ac_txt02{
		font-size: 8rem;
		bottom: 300px;
	}
}

@media (max-width: 650px){
	.intro .wrap{
		flex-direction: column-reverse;
	}

	.intro .item h3{
		font-size: 2rem;
	}
	.intro .item ul li{
		font-size: 1.3rem;
	}
	.intro .fir{
		font-size: 1.4rem;
	}
	.intro .item .flex_bet{
		flex-direction: column;
	}
	.intro .item .left{
		width: 100%;
	}
	.intro .item .right{
		width: 100%;
	}
	.intro .item{
		padding: 30px 20px;

	}
	.intro .item .bus img{
		max-width: 200px;
	}
	.intro .item .bus{
		margin-bottom: 20px;
	}
	.intro .item .mini_bus{
		width: 50px;
	}
	.intro .slick-dotted.slick-slider{
		margin: 0;
	}
	.intro .ac_txt{
		font-size: 5rem;
		top: 300px;
	}
	.intro .ac_txt02{
		font-size: 5rem;
		bottom: 300px;
	}
	.intro .item+.item{
		margin-top: 20px;
	}
	.intro .item .left .pdf{
		margin-bottom: 15px;
	}
}






/* 旅行のご案内ページ */
/* 
.travel_top .inner{
	max-width: 1080px;
}



.travel_top .item h4{
	position: relative;
	font-size: 2rem;
	border-bottom: solid 1px #B71502;
	padding-left: 20px;
	margin-bottom: 10px;
}

.travel_top .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow02.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 30px;
	top: 50%;
	left: -7px;
	transform: translateY(-50%);
}

.travel_top .item{
	background-color: #f5f5f5;
	padding: 20px 25px;
}
.travel_top .item+.item{
	margin-top: 20px;
}

.travel_top .item_list{
	margin-top: 40px;
} */

.k_travel .case .color_box{
	height: 280px;
}

.k_travel .case .top_area p{
	display: inline;
}

.area{
	background-color: #fff;
}

.area .inner{
	padding-bottom: 120px;
}

.area h4{
	font-size: 2.8rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.area .txt_box{
	max-width: 470px;
}

.area .inner{
	position: relative;
	max-width: 1080px;
}

.area .japan{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45%;
}


.travel_bottom .btn{
	width: 260px;
}

.travel_bottom .btn a{
	display: block;
	color: #B71502;
	border: solid 1px #B71502;
	text-align: center;
	padding: 16px 0;
	letter-spacing: 0.04em;
}

.travel_bottom .btn+.btn{
	margin-left: 20px;
}

.travel_bottom .btn a:hover{
	background-color: #B71502;
	color: #fff;
}

.travel_bottom h3{
	position: relative;
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.travel_bottom h3 .ttl_ac{
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
}

.travel_bottom h3 .ttl_ac img{
	height: 28px;
}

.travel_bottom{
	overflow: hidden;
	text-align: center;
	background-color: rgb(185, 79, 67,0.1);
	padding: 100px 0;
}

.travel_bottom .btn_area{
	margin-top: 20px;
}

.travel_bottom p{
	font-size: 1.6rem;
}

.travel_bottom .inner{
	background-color: rgb(255, 255, 255,0.8);
	backdrop-filter: blur(5px);
	max-width: 1080px;
	padding: 70px 10px 50px;
}

.travel_bottom .ac_img{
	position: absolute;
	top: -20px;
	right: -40px;
	width: 140px;
	opacity: 0;
	transition: all 1s ease;
}

.travel_bottom .ac_img.inview{
	right: 20px;
	opacity: 1;
}


@media (max-width: 1200px){
	.area .japan{
		width: 70%;
		bottom: 0;
		top: auto;
	}
	.area .inner{
		padding-bottom: 300px;
	}
	.k_travel .case .color_box{
		height: auto;
	}
	
}

@media (max-width: 650px){
	.k_travel .case .color_box{
		height: auto;
	}
	.area h4{
		font-size: 2.2rem;
	}
	.area .inner{
		padding-bottom: 200px;
	}
	.travel_bottom h3{
		font-size: 2.2rem;
	}
	.travel_bottom h3 .ttl_ac img{
		height: 22px;
	}
	.travel_bottom p{
		font-size: 1.4rem;
	}
	.travel_bottom .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.travel_bottom .btn+.btn{
		margin-left: 0;
		margin-top: 10px;
	}
	.travel_bottom .ac_img{
		width: 90px;
	}
	.travel_bottom{
		padding: 50px 0;
	}
}




/* 安全への取り組みページ */


.safe_top{
	background-color: rgb(185, 79, 67,0.1);
	padding: 80px 0;
}

.safe_top ul li{
	position: relative;
	padding: 15px 0;
	border-bottom: solid 1px #ccc;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	padding-left: 46px;
}
.safe_top ul li .en{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-weight: 600;
	display: inline-block;
	background-color: #B71502;
	color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
}

.safe_top .inner{
	position: relative;
	max-width: 1280px;
	background-color: #fff;
	padding: 50px 80px;
}

.safe_top .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #B71502;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.safe_top .sub_ttl{
	text-align: center;
}

.goal{
	padding-bottom: 0;
}

.goal .ttl{
	font-size: 2.2rem;
}

.goal .ttl .en{
	font-size: 4.4rem;
	font-weight: 600;
	color: #B71502;
	margin: 0 10px;
}

.goal .ttl p{
	position: relative;
	line-height: 1.5;
	letter-spacing: 0.03em;
	padding-left: 20px;
}

.goal .ttl p::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #B71502;
	height: 2px;
	width: 10px;
	top: 60%;
	left: 0;
}

.goal .left{
	width: 53%;
	justify-content: center;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.goal .right{
	width: 47%;
}

.goal .right .img img{
	width: 100%;
	object-fit: cover;
	height: 500px;
}

.goal .inner{
	margin-right: 0;
}



.measures ul{
	font-size: 1.6rem;
}

.measures ul li{
	position: relative;
	letter-spacing: 0.04em;
	padding: 10px 0;
	padding-left: 22px;
	border-bottom: solid 1px #ccc;
}

.measures ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.png);
	background-size: cover;
	background-position: center;
	aspect-ratio:  1 / 1;
	width: 16px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.measures .inner{
	margin-left: 0;
}

.measures .left{
	width: 47%;
}

.measures .left img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.measures .right{
	width: 53%;
	justify-content: center;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.stats{
	background: url(../img/top02.jpg);
	background-size: cover;
	background-position: center;
	padding: 80px 0;
}

.stats .sub_ttl{
	text-align: center;
}

.stats .wrap{
	background-color: rgb(255, 255, 255,0.8);
	padding: 50px 20px;
}

.stats .inner{
	max-width: 1080px;
}

.stats .item{
	padding: 10px 50px;
	border-right: solid 2px #ccc;
}

.stats .item:first-child{
	border-left: solid 2px #ccc;
}

.stats .item .year{
	font-size: 2.8rem;
}

.stats .item .num{
	font-size: 4rem;
}

.stats .item ul{
	margin-left: 30px;
	margin-top: 10px;
}

.stats .item .color{
	color: #B71502;
}

.safe_bottom{
	padding: 80px 0;
}

.safe_bottom h3{
	font-size: 2.8rem;
	margin-bottom: 25px;
	letter-spacing: 0.03em;
	border-left: solid 4px #B71502;
	line-height: 1.3;
	padding-left: 8px;
}

.safe_bottom .inner{
	max-width: 1080px;
}

.safe_bottom .left{
	width: 200px;
}

.safe_bottom .left a{
	display: block;
	width: 100%;
}

.safe_bottom .left a:hover{
	opacity: 0.75;
}

.safe_bottom .left img{
	object-fit: cover;
	width: 100%;
}

.safe_bottom .right{
	width: calc(96% - 200px);
	max-width: 600px;
}


@media (max-width: 1200px){
	.goal .inner{
		flex-direction: column-reverse;
	}
	.goal .right{
		width: 100%;
		margin-bottom: 40px;
	}
	.goal .right .img img{
		height: 400px;
	}
	.measures .inner{
		flex-direction: column;
	}
	.measures .left{
		width: 100%;
		margin-bottom: 40px;
	}
	.measures .left img{
		height: 400px;
	}
	.measures .right{
		width: 100%;
	}
	.stats .item{
		padding: 10px 25px;
	}
}

@media (max-width: 650px){
	.safe_top ul li{
		font-size: 1.4rem;
	}
	.safe_top .inner{
		padding: 40px 20px;
	}
	.safe_top{
		padding: 50px 0;
	}
	.goal .inner{
		margin: 0 auto;
	}
	.goal .right .img img{
		height: 200px;
	}
	.goal .left{
		width: 100%;
	}
	.goal .ttl{
		font-size: 1.6rem;
	}
	.goal .ttl .en{
		font-size: 3rem;
	}
	.measures .left img{
		height: 200px;
	}
	.measures .inner{
		margin: 0 auto;
	}
	.measures ul{
		font-size: 1.4rem;
	}
	.stats .item .year{
		font-size: 1.4rem;
	}
	.stats .item .num{
		font-size: 2.6rem;
	}
	.stats .flex{
		flex-direction: column;
	}
	.stats .item ul{
		margin: 0;
		font-size: 1.2rem;
	}
	.stats .item{
		padding: 10px 15px;
	}
	.safe_top .inner::before{
		    width: calc(100% - 20px);
    height: calc(100% - 20px);
	}
}



/* 会社概要ページ */



.message {
	position: relative;
}

.message::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(183, 21, 2,0.1);
	bottom: -100px;
	left: 0;
	width: 50%;
	height: 300px;
	z-index: -1;
}

.message .left{
	position: relative;
	width: 46%;
}


.message .left img{
	width: 100%;
	object-fit: cover;
	object-position: bottom;
	min-height: 470px;
}

.message .right{
	width: 54%;
}

.message .inner{
	margin-left: 0;
	width: 100%;
}

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

.message .txt_box{
	max-width: 600px;
	margin: 0 auto;
	width: 90%;
}

.k_com_img{
	max-width: 1280px;
	margin: 100px auto 0;
	width: 90%;
}

.k_com_img .img{
	width: 31%;
}

.k_com_img .img img{
	aspect-ratio: 3 / 2.2;
	width: 100%;
	object-fit: cover;
}

.k_com_img .img+.img{
	margin-top: 40px;
}

.k_com_img .img+.img+.img{
	margin-top: 80px;
}


.company{
	position: relative;
}

.company::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(183, 21, 2,0.1);
	width: 30%;
	height: 300px;
	top: 80px;
	right: 0;
	z-index: -1;
}

.company .sub_ttl{
	text-align: center;
}

.company .inner{
	position: relative;
	max-width: 1080px;
}

.company .ac_img{
	position: absolute;
	top: -40px;
	left: 100px;
	width: 150px;
	opacity: 0;
	transition: all 1.6s ease;
}

.company .ac_img.inview{
	left: -40px;
	opacity: 1;
}


.info_table{
	width: 100%;
}

.info_table th{
	background-color: #B71502;
	color: #fff;
	width: 25%;
}
.info_table td{
	width: 75%;
	background-color: #f5f5f5;
}

.info_table th,.info_table td{
	padding: 20px 0;
	border-bottom: solid 1px #ccc;
	padding-left: 20px;
}

.access{
	position: relative;
	background-color: #f5f5f5;
	padding: 100px 0;
}

.access .sub_ttl{
	text-align: center;
}

.access .inner{
	position: relative;
	max-width: 1280px;
	background-color: #fff;
	padding: 60px 80px 80px;
}

.access .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: solid 1px #B71502;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}

.access iframe{
	width: 100%;
	height: 400px;
}






@media (max-width: 1200px){
	.message .flex_bet{
		flex-direction: column;
	}
	.message .right{
		width: 100%;
	}
	.message .left{
		width: 90%;
		margin: 0 auto 30px;
	}
	.message .left img{
		min-height: auto;
		height: 400px;
	}
}

@media (max-width: 650px){
	.access iframe{
		height: 260px;
	}
	.message .left img{
		height: 200px;
	}
	.k_com_img .img+.img{
		margin-top: 20px;
	}
	.k_com_img .img+.img+.img{
		margin-top: 40px;
	}
	.k_com_img{
		margin-top: 50px;
	}
	.message::before{
		height: 140px;
	}
	.company::before{
		height: 200px;
	}
	.safe_bottom .flex_bet{
		flex-direction: column;
	}
	.safe_bottom .right{
		width: 100%;
	}
	.safe_bottom h3{
		font-size: 2.4rem;
	}
	.safe_bottom .left{
		margin: 0 auto 20px;
	}
	.stats{
		padding: 50px 0;
	}
	.company .ac_img{
		width: 90px;
	}
	.company .ac_img.inview{
		left: 0;
	}
	.access{
		padding: 50px 0;
	}
	.access .inner{
		padding: 40px 20px;
	}
	.access .inner::before{
		    width: calc(100% - 20px);
    height: calc(100% - 20px);
	}
}
