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

body{
	color: #202020;
	background-color: #F79005;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
	font-size: 1.5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	padding: 20px;
	padding-bottom: 10px;
}

body .base_wrapper{
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.en{
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

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

a{
	text-decoration: none;
	color: #1C2C43;
	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 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}




.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);
}




.scale-big{
	transform: scale(0.8);
	opacity: 0;
	transition: transform .4s ease-out, opacity .2s;
}

.scale-big.inview{
	transform: scale(1);
	opacity: 1;
}


.op{
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	transition-delay: 200ms;
}

.op.inview{
	opacity: 1;
}

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


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	max-width: 1280px;
	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;
}

span.zo{
	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}

main{
	position: relative;
	z-index: 1;
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}

.content_wrapper{
	width: calc(100% - 260px);
	margin: 0 0 0 auto;
}

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


@media (max-width: 1200px){
	.content_wrapper{
		width: 100%;
		margin: auto;
	}
}


.center{
	text-align: center;
}

.w100{
	width: 100%;
}

/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 150px 0;
	z-index: 10;
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
	section{
		padding: 100px 0;
	}
}

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




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

/*  */
.txt_wrappper{
	background-color: #fef8e5;
}

/* 
.txt{
	font-size: 1.45rem;
	font-weight: 500;
	color: #333;
	line-height: 2.5;
} */


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

@media (max-width: 650px){
	.none_650{
		display: none;
	}
	body{
		font-size: 1.35rem;
	}
	
	
}


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





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

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */


.m_btn{
	width: 200px;
	margin-top: 30px;
	text-align: center;
}

.m_btn a{
	background-color: #F79005;
	color: #fff;
	letter-spacing: 0.05em;
	display: block;
	padding: 20px 0;
	line-height: 1;
	border-radius: 45px;
	font-weight: 600;
	font-size: 1.6rem;
	animation: ease;
}

.m_btn a:hover{
	transform: scale(1.07);
}


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


.king{
	font-size: 5.722rem;
	line-height: 1;
}
.biggest{
	font-size: 4.5776rem;
	line-height: 1;
}
.big{
	font-size: 3.6621rem;
	line-height: 1;
}
.s_big{
	font-size: 2.9297rem;
	line-height: 1;
}
.f_txt{
	font-size: 2.3438rem;
	line-height: 1;
}
.s_f_txt{
	font-size: 1.875rem;
	line-height: 1;
}
.txt{
	font-size: 1.5rem;
	line-height: 1.6;
}



/* sub_ttl */


.ac_txt{
	position: relative;
	color: #F79005;
	padding-left: 15px;
	margin-bottom: 20px;
}

.ac_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F79005;
	aspect-ratio: 1 / 1;
	width: 7px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	
}

.sub_ttl{
	padding-left: 15px;
	line-height: 1.8;
	margin-bottom: 60px;
}




/* fv */



.fv_nav .right{
	position: relative;
}


.top_logo{
	background-color: #fff;
	padding: 50px 80px 40px 3%;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
}

.top_logo img{
	height: 55px;
}


.tel_box{
	margin-top: 17px;
	margin-right: 60px;
	text-align: center;
}

.tel_box a{
	display: block;
	background-color: #F9BB03;
	padding: 3px 12px 0px;
	border-radius: 20px;
	line-height: 1.8;
	color: #202020;
	border: solid 2px #F9BB03;
}

.tel_box .sm{
	display: inline-block;
	font-size: 1.3rem;
}

.tel_box a:hover{
	background-color: rgb(249, 187, 3,0);
	color: #F9BB03;
}


.fv_nav{
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
}


.main_nav{
	padding-top: 38px;
	border-top-right-radius: 20px;
	margin-right: 40px;
}

.main_nav a{
	letter-spacing: 0.03em;
	line-height: 1;
	cursor: pointer;
}

.main_nav a:hover{
	color: #F79005;
}

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

.main_nav li{
	position: relative;
}



.openBox{
	position: absolute;
	display: block;
	background-color: #fff;
	bottom: -170px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 0.9em;
	padding: 7px 20px 12px;
	border-radius: 10px;
	transition: all.2s;
}

.openList2 .openBox{
	bottom: -203px;
}

.openBox a{
	position: relative;
	display: block;
	padding: 10px 10px;
}

.openBox a.ac{
	font-size: 1.3em;
	font-weight: 600;
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 3px;
	letter-spacing: 0.05em;
}

.openBox a.ac::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F79005;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 9px;
	aspect-ratio: 1 / 1;
}

.openBox a:nth-child(n+2){
	padding-left: 18px;
}

.openBox a:nth-child(n+2)::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #F79005;
	height: 2px;
	width: 8px;
}

.dli-chevron-down {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	line-height: 1;
	width: 0.6em;
	height: 0.6em;
	border: 0.14em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
	margin-left: 12px;
	margin-bottom: 2px;
}


.main_nav a:hover .dli-chevron-down{
	color: #F79005;
}

.openBox{
	opacity: 0;
	pointer-events: none;
}

.openList.active .openBox{
	opacity: 1;
	pointer-events: all;
}
.openList2.active .openBox{
	opacity: 1;
	pointer-events: all;
}

.openList.active .dli-chevron-down{
	color: #F79005;
	transform: translateY(25%) rotate(-45deg);
}
.openList2.active .dli-chevron-down{
	color: #F79005;
	transform: translateY(25%) rotate(-45deg);
}


.fv {
	position: relative;
	background-color: #fef8e5;
	padding-bottom: 80px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.fv::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 80vh;
	z-index: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.fv .left{
	width: 100%;
}

.top_slider{
	position: relative;
	width: 94%;
	height: 100%;
	margin: 0 auto;
	padding-top: 100px;
}

.top_slider .slider{
	position: relative;
	width: 100%;
	height: 84vh;
	margin: 0 0 0 auto;
	min-height: 500px;
	z-index: 2;
	background-color: #fef8e5;
}
.top_slider .slider li{
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
	border-radius: 20px;
}


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)),url(../img/fv01.jpg);
	background-position: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)),url(../img/fv02.jpg);
	background-position: center;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)),url(../img/fv03.jpg);
	background-position: center;
}

.fv_ac{
	position: absolute;
	top: 30%;
	left: 15%;
	z-index: 10;
	width: 25%;
	max-width: 340px;
	min-width: 240px;
	animation-name: step;
	animation-duration: 3s;
	animation-timing-function: step-end;
	animation-iteration-count: infinite;
}

@keyframes step{
	0% {
		transform: rotate(-3deg);
	}
	
	50% {
		transform: rotate(3deg);
	}

	100%{
		transform: rotate(-3deg);
	}
}


.catch{
	position: absolute;
	top: 250px;
	left: 70%;
	z-index: 2;
	color: #000;
	font-weight: 600;
	height: 210px;
	white-space: nowrap;
}


.catch h2{
	line-height: 1;
	letter-spacing: 0.15em;
	height: 210px;
}

.catch h2 span{
	display: block;
	background-color:#F9BB03;
	padding: 18px;
	height: fit-content;
}

.catch h2 span+span{
	margin-top: 40px;
}


@media (max-width: 1200px){
	.fv_nav .right{
		display: none;
	}
	.top_logo{
		display: none;
	}
	.top_slider .slider{
		height: 75vh;
	}
	.catch h2{
		font-size: 3.8rem;
	}
	.top_slider{
		padding-top: 75px;
	}
	body{
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 10px;
	}
	.fv_ac{
		left: 12%;
		top: 40%;
	}
	.catch{
		left: 62%;
		top: 200px;
	}
}


@media (max-width: 650px){
	.catch h2{
		font-size: 2.2rem;
	}
	.catch h2 span{
		padding: 12px;
	}
	body{
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}
	.top_slider .slider{
		height: 65vh;
		min-height: auto;
	}
	.catch{
		top: 15%;
		left: 53%;
	}
	.top_slider .slider li.top01{
		border-radius: 10px;
	}
	.top_slider{
		padding-top: 80px;
		width: 92%;
	}
	.fv{
		padding-bottom: 30px;
	}
	.fv_ac{
		top: auto;
		bottom: 5%;
		left: 5%;
		width: 170px;
		min-width: auto;
	}
}





/* header */


header{
	position: fixed;
	height: 100px;
	top: 0;
	width: calc(100% - 40px);
	background-color: rgb(255, 255, 255,1);
	z-index: 99;
	opacity: 0;
	pointer-events: none;
	transition: all.3s;
}


h1 img{
	height: 50px;
}

h1 a:hover{
	opacity: 0.75;
}

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


header.change_color{
	opacity: 1;
	pointer-events: all;
}

.kasou .top_logo{
	padding: 0;
	background-color: rgb(255, 255, 255,0);
}

.kasou .fv_nav{
	height: 100px;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	background-color: rgb(255, 255, 255,0);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.kasou .fv_nav .top_logo{
	padding: 50px 80px 40px 3%;
	background-color: #fff;
}

.kasou .base_wrapper{
	padding-top: 80px;
}


header.change_fv{
	opacity: 1;
	background-color: #fff;
	pointer-events: all;
}

header .hamburger_menu{
	opacity: 0;
	pointer-events: none;
}

header .fv_nav .top_logo{
	display: none;
}

header .fv_nav .right{
	justify-content: flex-end;
	width: 100%;
}

.index header .fv_nav{
	top: 0;
	height: auto;
}
.kasou header .fv_nav{
	top: 0;
	height: auto;
}

header .fv_nav .tel_box{
	margin-right: 20px;
}

.kasou header .fv_nav.ch .openList2.active .openBox{
	pointer-events: none;
}

.kasou header.change_fv .fv_nav.ch .openList2.active .openBox{
	pointer-events: all;
}
.kasou header .fv_nav.ch .openList.active .openBox{
	pointer-events: none;
}

.kasou header.change_fv .fv_nav.ch .openList.active .openBox{
	pointer-events: all;
}

.index header .fv_nav.ch .openList2.active .openBox{
	pointer-events: none;
}

.index header.change_color .fv_nav.ch .openList2.active .openBox{
	pointer-events: all;
}

.index header .fv_nav.ch .openList.active .openBox{
	pointer-events: none;
}

.index header.change_color .fv_nav.ch .openList.active .openBox{
	pointer-events: all;
}

@media (max-width: 1200px){
	header{
		opacity: 1;
		pointer-events: all;
		width: calc(100% - 20px);
		height: 78px;
		border-top: solid 10px #F79005;
		box-sizing: content-box;
		background-color: rgb(255, 255, 255,0);
	}
	header.change_color{
		background-color: #fff;
	}
	h1 img{
		height: 45px;
	}
	.kasou .fv_nav{
		display: none;
	}
	header.change_fv{
		height: 70px;
	}
	header .hamburger_menu{
		opacity: 1;
		pointer-events: all;
	}

	
}

@media (max-width: 650px){
	h1 img{
		height: 38px;
	}
	header{
		height: 70px;
		width: 100vw;
		border-top: solid 4px #F79005;
	}
	.hd_inner{
		padding-left: 15px;
		padding-right: 5px;
	}
	body.kasou .base_wrapper{
		border-radius: 0px;
		padding-top: 74px;
	}
}



/* news */

.news{
	position: absolute;
	width: 45%;
	max-width: 580px;
	min-width: 390px;
	background-color: #fff;
	bottom: -20px;
	left: 0;
	z-index: 5;
	padding: 40px 3%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.news .img{
	width: 46%;
}

.news .txt_box{
	width: 46%;
	padding-top: 10px;
}

.news .txt_box .f_txt{
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.news .txt_box .f_txt::first-letter{
	color: #F79005;
}

.news .up_ymd{
	color: #F79005;
	display: block;
	margin-bottom: 5px;
}

.news .title{
	display: block;
}

.news a:hover img{
	transform: scale(1.03);
}

.news a:hover{
	opacity: 0.8;
}

@media (max-width: 1200px){
	.news{
		padding: 25px 3%;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.news .txt_box .f_txt{
		font-size: 1.9rem;
		margin-bottom: 5px;
	}
	.news .up_ymd{
		font-size: 1.2rem;
	}
	.news .title{
		font-size: 1.3rem;
	}
	.news .txt_box{
		width: 48%;
	}
	
}

@media (max-width: 650px){
	.news{
		position: static;
		min-width: auto;
		width: 94%;
		padding: 20px;
		margin-top: 20px;
	}
	.fv::before{
		height: 380px;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}
	.news .txt_box .f_txt{
		font-size: 1.6rem;
	}
	.news .up_ymd{
		font-size: 1rem;
	}
	.news .title{
		font-size: 1rem;
	}
	.news .img{
		width: 38%;
	}
	.news .txt_box{
		padding-top: 4px;
		width: 55%;
	}
	

}



/* aboutus */


.aboutus{
	position: relative;
	padding-bottom: 0px;
}

.aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #F9BB03;
	width: 50vw;
	aspect-ratio: 1.5 / 1;
	transform: translate(55%,-55%);
	border-radius: 50%;
}

.aboutus::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fef8e5;
	width: 50%;
	aspect-ratio: 3 / 1.5;
	z-index: -1;
	border-bottom-right-radius: 80px;
	min-height: 400px;
}


.aboutus .sub_top{
	position: absolute;
	top: 180px;
	right: 170px;
	color: #F9BB03;
}

.aboutus .img_area{
	width: 45%;
	padding-left: 20px;
}

.aboutus .img_area .img-pt01{
	width: 75%;
}
.aboutus .img_area .img-pt02{
	width: 35%;
	margin: -80px 0 0 auto;
}

.aboutus .img_area img{
	border-radius: 10px;
}

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

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

.aboutus .txt_box{
	width: 45%;
	max-width: 500px;
	margin: 0 0 0 auto;
	padding-right: 22px;
}

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

.aboutus .txt_box::first-letter{
	color: #F79005;
	font-size: 1.2em;
	padding-right: 3px;
}

.aboutus .eng{
	position: absolute;
	top: 100px;
	right: 2%;
	color: #666;
	font-size: 1.3rem;
	z-index: 5;
}

.aboutus .inner{
	position: relative;
}

.aboutus .ac_ill{
	position: absolute;
	top: 0;
	right: 75px;
	width: 290px;
	z-index: 4;
}

.aboutus .ac_ill02{
	position: absolute;
	top: 7px;
	right: 150px;
	width: 220px;
	z-index: 4;
	animation-name: step;
	animation-duration: 3s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

.aboutus .ani_line{
	position: absolute;
	height: 55%;
	width: 3px;
	top: 55%;
	right: 3%;
	background-color: #cccccc;
	z-index: 0;
}
.aboutus .ani_color_line{
	position: absolute;
	height: 1%;
	width: 3px;
	top: 55%;
	right: 3%;
	background-color: #F9BB03;
	z-index: 1;
}


.img_sec img{
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	object-position: top;
	min-height: 500px;
}


.img_sec{
	position: relative;
}

.img_sec::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255,1) 50%);
	width: 70%;
	height: 120px;
	z-index: 2;
}


.flowing::before{
	left: 0;
	animation: flowing 70s linear infinite;
}

.flowing::after{
	left: 3000px;
	animation: flowing 70s linear infinite;
}

.flowing::before,.flowing::after{
	content: "About Us, About Us, About Us, About Us, About Us,";
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	font-size: 11rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #F79005;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
	letter-spacing: 0.05em;
}

@keyframes flowing{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-3000px);
	}
}


@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column;
	}
	.aboutus .txt_box{
		width: 100%;
		margin-left: 0;
		padding-left: 20px;
		margin-top: 30px;
		max-width: none;
	}
	.sub_ttl{
		margin-bottom: 40px;
		font-size: 3.2rem;
	}
	.aboutus .ac_ill{
		top: 200px;
		width: 240px;
	}
	.aboutus .ac_ill02{
		top: 207px;
		width: 170px;
	}
	.flowing::before, .flowing::after{
		font-size: 8rem;
	}
	.aboutus .img_area .img-pt02{
		margin-top: -60px;
	}
	
}


@media (max-width: 650px){
	.sub_ttl{
		font-size: 2.6rem;
		margin-bottom: 30px;
	}
	.aboutus .img_area{
		width: 80%;
	}
	.ac_txt{
		font-size: 1.4rem;
		margin-bottom: 10px;
	}
	.aboutus .eng{
		font-size: 1rem;
	}
	.aboutus::before{
		width: 350px;
	}
	.m_btn a{
		font-size: 1.4rem;
		padding-top: 17px;
		padding-bottom: 17px;
	}
	.m_btn{
		margin: 25px auto 0;
	}
	.img_sec::before{
		width: 40%;
	}
	.flowing::before, .flowing::after{
		font-size: 5rem;
	}
	.img_sec img{
		min-height: 370px;
	}
	.aboutus .txt_box p + p{
		margin-top: 15px;
	}
	.aboutus .ac_ill{
		top: 170px;
		width: 160px;
		right: 30px;
	}
	.aboutus .ac_ill02{
		top: 177px;
		width: 90px;
		right: 90px;
	}
}



/* service */




.service{
	/* background-color: rgb(249, 187, 3,0.2); */
	background-color: #fff;
	background-image: radial-gradient(circle, #f5f5f5 2px, transparent 2px);
	background-position: 0 0;
	background-size: 14px 14px;
	clip-path: ellipse(130% 100% at bottom);
	margin-top: -100px;
	padding-top: 100px;
}

.service .sub_ttl{
	text-align: center;
	padding-left: 0;
}

.service .ac_txt{
	width: fit-content;
	margin: 0 auto 15px;
}

.service h4{
	letter-spacing: 0.07em;
	margin-bottom: 25px;
	font-weight: 700;
	color: #F79005;
}

.service .left{
	width: 46%;
}

.service .right{
	width: 46%;
}

.service .item .top_txt{
	margin-bottom: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #F79005;
}

.service .right .in{
	max-width: 470px;
	margin: 0 auto;
}

.service .left img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	border-radius: 10px;
}

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


.service .item+.item{
	margin-top: 80px;
}

.service .m_btn a{
	font-size: 1.5rem;
	padding-top: 17px;
	padding-bottom: 17px;
}


@media (max-width: 1200px){
	.service{
		clip-path: ellipse(170% 100% at bottom);
	}
	.service .item{
		flex-direction: column;
		align-items: center;
	}
	.service .left{
		width: 100%;
		max-width: 550px;
	}
	.service .right{
		width: 100%;
		margin-top: 30px;
		max-width: 550px;
	}
	.service .right .in{
		max-width: none;
	}
	.service .left img{
		max-height: 320px;
	}
	.service .item .top_txt{
		text-align: center;
	}
	.service h4{
		text-align: center;
	}
	.service .m_btn{
		margin: 20px auto 0;
	}
}


@media (max-width: 650px){
	.service {
        clip-path: ellipse(260% 100% at bottom);
		padding-top: 50px;
    }
	.service h4{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.service .item .top_txt{
		font-size: 1.8rem;
	}
	.service .item+.item{
		margin-top: 40px;
	}
	.service .right{
		margin-top: 20px;
	}
	.service .m_btn a{
		font-size: 1.4rem;
	}
	.service .ac_txt{
		margin-bottom: 10px;
	}
}




/* service2 */



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


/* .service02 .ani_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-color: rgb(249, 187, 3,1);
	z-index: -1;
	transform: translateY(-100%);
}
.service02 .ani_bg02{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: rgb(249, 187, 3,1);
	z-index: -1;
	transform: translateY(100%);
} */


.service02 .ac_img{
	position: absolute;
	top: 120px;
	left: 50%;
	max-width: 1600px;
	width: 88%;
	z-index: -1;
	transform: translateX(-50%);
}


.service02 .ac_img .kaiten{
	display: inline-block;
	animation: 60s linear infinite rotation;
	transform-origin:center center; 
}

@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg);}
  }



.service02 .ani_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.service02 .inner{
	background-color: rgb(255, 255, 255,0.75);
	padding: 5%;
	box-sizing: content-box;
	border-radius: 10px;
}

.service02 .txt_box{
	padding-left: 15px;
	max-width: 450px;
}

.service02 .sub_ttl{
	margin-bottom: 40px;
}

.service02 .right{
	width: 50%;
}

.service02 .left{
	width: 45%;
}

.service02 .right .img{
	width: 48%;
}

.service02 .right img{
	width: 100%;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	border-radius: 15px;
}


.service02 .btm_area{
	margin-top: 80px;
}

.service02 .btm_area ul{
	flex-wrap: wrap;
	gap: 5px;
}

.service02 .btm_area ul li{
	width: calc((100% - 25px) / 6);
	text-align: center;
	background-color: #fff;
	padding: 15px 0;
}

.service02 .btm_area ul .img{
	display: inline-block;
}

.service02 .btm_area ul .img img{
	display: inline-block;
	width: 30%;
	margin: 0 auto;
}

.service02 .btm_area ul .ttl{
	display: inline-block;
	line-height: 1.6;
	margin-top: 10px;
}


@media (max-width: 1200px){
	.service02 .flex_bet.ch{
		flex-direction: column;
	}
	.service02 .left{
		width: 100%;
	}
	.service02 .right img{
		border-radius: 10px;
		aspect-ratio: 1 / 1;
	}
	.service02 .right{
		width: 100%;
		max-width: 360px;
		margin: 30px 0 0 auto;
	}
	.service02 .btm_area{
		margin-top: 40px;
	}
	.service02 .btm_area ul{
		gap: 10px;
	}
	.service02 .btm_area ul li{
		width: calc((100% - 20px) / 3);
	}
	.service02{
		padding-bottom: 80px;
	}
}


@media (max-width: 650px){
	.service02 .inner{
		padding-top: 0;
		padding-bottom: 0;
	}
	.service02 .sub_ttl{
		margin-bottom: 30px;
	}
	.service02 .btm_area ul .ttl{
		font-size: 1rem;
	}
	.service02{
		padding-bottom: 50px;
	}
}


/* works */

.works{
	padding: 200px 0;
}

.works .cat span{
	display: block;
	margin-left: 170px;
	margin-top: 25px;
}

.works .cat{
	font-weight: 700;
	margin-bottom: 40px;
}

.works .txt_area{
	position: absolute;
	top: 50%;
	left: 0;
	background: #ffffff;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255,0) 100%);
	z-index: 2;
	transform: translateY(-50%);
	padding: 60px 10vw;
	padding-right: 15vw;
}



/* .works .sub_ttl{
	width: fit-content;
	margin: 0 auto 40px;
}

.works .ac_txt{
	width: fit-content;
	margin: 0 auto 15px;
} */


@media (max-width: 1200px){
	.works .txt_area{
		position: static;
		padding: 0;
		transform: translateY(0);
		text-align: center;
		background: rgb(255, 255, 255,0);
		margin-bottom: 40px;
	}
	.works{
		padding: 100px 0;
		background-color: #fef8e5;
	}
	.works .ac_txt{
		width: fit-content;
		margin: 0 auto 15px;
	}
	.works .m_btn{
		margin: 30px auto 0;
	}
	.works .cat span{
		margin-left: 20px;
	}
	.works .sub_ttl{
		padding-left: 0;
	}
	.works .cat{
		padding-left: 15px;
	}
}


@media (max-width: 650px){
	.works{
		padding: 50px 0;
	}
	.works .cat{
		font-size: 2rem;
		margin-bottom: 25px;
		text-align: center;
	}
	.works .txt_area{
		text-align: left;
	}
	.works .sub_ttl{
		text-align: center;
	}
	.works .ac_txt{
		margin-bottom: 10px;
	}
}

/* footer */


footer .top_area{
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 50px;
}

footer{
	background-color: #F79005;
}

.foo_inner{
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}

.foo_logo img{
	height: 60px;
}

.foo_logo {
	margin-bottom: 60px;
}

.foo_btn{
	width: 220px;
}

.foo_btn a{
	display: block;
	background-color: #F79005;
	color: #fff;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
	border-radius: 35px;
	font-size: 1.6rem;
	border: solid 2px #F79005;
}

.foo_btn + .foo_btn{
	margin-left: 40px;
}

.foo_btn a:hover{
	background-color: rgb(247, 144, 5 ,0);
	color: #F79005;
}

.copy{
	text-align: center;
	background-color: #F79005;
	color: #fff;
	padding-top: 10px;	
}

.foo_img img{
	height: 400px;
	object-fit: cover;
	width: 100%;
}


@media (max-width: 1200px){
	.foo_img img{
		height: 300px;
	}
	.foo_inner{
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	footer .top_area{
		padding-top: 60px;
	}
	.foo_logo{
		margin-bottom: 30px;
	}
	footer .right{
		margin-top: 30px;
	}
}

@media (max-width: 650px){
	.foo_img img{
		height: 200px;
	}
	footer .flex{
		flex-direction: column;
		align-items: center;
	}
	.foo_btn + .foo_btn{
		margin-left: 0;
		margin-top: 10px;
	}
	.foo_btn a{
		font-size: 1.3rem;
		padding: 7px 0;
	}
	.foo_logo img{
		height: 40px;
	}
	footer p{
		font-size: 1.2rem;
	}
	.foo_btn{
		width: 180px;
	}
	.foo_logo{
		margin-bottom: 15px;
	}
	footer .right{
		margin-top: 20px;
	}
	footer .top_area{
		padding: 40px 30px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}


/* 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;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
}


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

.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: #EC8F26;
}

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

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



.kasou_top{
	position: relative;
	padding: 130px 0 110px;
	width: 94%;
	margin: 20px auto 0;
	background: url(../img/imgarea.jpg);
	background-size: cover;
	background-position: center;
	margin-bottom: 100px;
	border-radius: 20px;
}

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

.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0,0.5);
	backdrop-filter: blur(3px);
	border-radius: 20px;
}

.kasou_top h2{
	letter-spacing: 0.03em;
	margin-bottom:45px;
	text-align: center;
	color: #fff;
}

.kasou_top ol li:not(:last-child){
	position: relative;
}

.kasou_top ol li:not(:last-child)::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/d_arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 24px;
	top: 55%;
	right: -30px;
	transform: translateY(-50%);
}

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

.kasou_top ol{
	margin-left: 3px;
	justify-content: center;
	color: #fff;
	flex-wrap: wrap;
}

.kasou_top ol a{
	color: #fff;
}

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

.k_inner{
	max-width: 1400px;
	margin: 0 auto;
}


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


.sub_ttl2 .en{
	display: block;
	color: #ccc;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.sub_ttl2 .ja{
	display: block;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.sub_ttl2 .ja::first-letter{
	color: #F79005;
}

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

@media (max-width: 650px){
	.kasou_top h2{
		font-size: 3rem;
		line-height: 1.6;
		margin-bottom: 25px;
	}
	.kasou_top h2 .br_650{
		font-size: 0.8em;
	}
	.kasou .pan{
		font-size: 1.2rem;
	}
	.kasou_top{
		padding: 80px 0 60px;
		margin-bottom: 50px;
	}
	.kasou_top ol li:not(:last-child)::before{
		width: 14px;
		right: -16px;
	}
	.kasou_top ol li+li{
		margin-left: 17px;
	}
	.kasou_top::before{
		border-radius: 10px;
	}
}




/* 神薗茂商店についてページ */

.about_top{
	position: relative;
	background-image: radial-gradient(circle, #f5f5f5 2px, transparent 2px);
	background-position: 0 0;
	background-size: 14px 14px;
}


.about_top p.ch{
	text-align: center;
	margin-bottom: 60px;
}

.about_top .txt_box{
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
}



.about_top .btm_txt_box p{
	max-width: 400px;
}


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


.about_top .left{
	width: 45%;
}
.about_top .right{
	width: 45%;
}
.about_top .left .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	border-radius: 10px;
}
.about_top .ill_img{
	position: absolute;
	bottom: 0;
	left: 5%;
	width: 20%;
	min-width: 180px;
}

.about_top .b_txt{
	position: absolute;
	bottom: 0;
	right: 2%;
	font-size: 9rem;
	line-height: 1;
	color: #F9BB03;
	opacity: 0.6;
	letter-spacing: 0.05em;
	transform: translateY(50%);
	z-index: 5;
}

.k_about .kasou_top{
	margin-bottom: 0;
}

.p_service{
	position: relative;
	background-color: #fef8e5;
	z-index: 4;
}

.p_service .item_box{
	flex-wrap: wrap;
	gap: 30px;
}

.p_service .item{
	width: calc((100% - 60px) / 3);
	padding: 25px;
	background-color: #fff;
	padding-top: 30px;
}

.p_service .item img{
	width: 30%;
}

.p_service .item .icon{
	text-align: center;
	margin-bottom: 20px;
}

.p_service h4{
	color: #F79005;
	font-weight: 600;
	letter-spacing: 0.03em;
	margin-bottom: 10px;
	line-height: 1.5;
}

.p_service .item p{
	color: #555;
	font-size: 1.4rem;
}

.outline{
	background-color: #F9BB03;
	padding: 80px 0;
}

.outline .sub_ttl2{
	text-align: left;
}

.outline .inner{
	background-color: #fff;
	padding: 60px 80px;
	width: 97%;
}

.outline .left{
	width: 30%;
}

.outline .right{
	width: 70%;
}

.outline table{
	width: 100%;
}

.outline table th{
	color: #F79005;
	width: 25%;
}

.outline table td{
	width: 75%;
	font-weight: 500;
}

.outline table th,.outline table td{
	padding: 20px 0;
	letter-spacing: 0.1em;
	border-bottom: solid 1px #ccc;
	padding-left: 10px;
}

.outline .map{
	margin-top: 40px;
}

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

.outline .map h4{
	position: relative;
	margin-bottom: 25px;
	padding-left: 14px;
	letter-spacing: 0.05em;
}

.outline .map h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #EC8F26;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
}


@media (max-width: 1200px){
	.about_top .flex_bet{
		flex-direction: column;
	}
	.about_top .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.about_top .right{
		width: 100%;
	}
	.about_top .btm_txt_box p{
		max-width: none;
	}
	.about_top .inner{
		width: 80%;
		max-width: 600px;
	}
	.about_top p.ch{
		margin-bottom: 20px;
	}
	.p_service .item{
		width: calc((100% - 30px) / 2);
	}
	.p_service .inner{
		max-width: 800px;
	}
	.outline .flex{
		flex-direction: column;
	}
	.outline .right{
		width: 100%;
	}
	.outline .left{
		width: 100%;
	}
	.outline .sub_ttl2{
		text-align: center;
	}
	.outline .inner{
		padding: 60px;
	}
	.about_top .b_txt{
		font-size: 5rem;
	}
}

@media (max-width: 650px){
	.sub_ttl2 .ja{
		font-size: 2.4rem;
		line-height: 1.5;
	}
	.sub_ttl2{
		margin-bottom: 30px;
	}
	.sub_ttl2 .en{
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.about_top p.ch{
		font-size: 2rem;
	}
	.about_top{
		padding-bottom: 100px;
	}
	.about_top .ill_img{
		min-width: 140px;
	}
	.p_service .item{
		width: 100%;
	}
	.p_service .item p{
		font-size: 1.2rem;
	}
	.p_service h4{
		font-size: 1.6rem;
		text-align: center;
	}
	.p_service .item_box{
		gap: 20px;
	}
	.outline .inner{
		padding: 40px 10px;
	}
	.outline .sub_ttl2{
		margin-bottom: 20px;
	}
	.outline table th, .outline table td{
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.outline table{
		font-size: 1.3rem;
	}
	.outline .map h4{
		font-size: 1.8rem;
	}
	.outline .map iframe{
		height: 220px;
	}
	.outline{
		padding: 20px 0;
	}
	.about_top .b_txt{
		font-size: 4.4rem;
		letter-spacing: normal;
	}
	.p_service{
		padding-top: 100px;
	}
}



/* LPガス関連ページ */


.gas_top {
	position: relative;
	padding-top: 0;
}

.gas_top .left{
	width: 46%;
}

.gas_top .left img.tp01{
	aspect-ratio: 1.3 / 1;
	width: 80%;
	object-fit: cover;
	border-radius: 10px;
	min-width: 450px;
}
.gas_top .left img.tp02{
	display: block;
	aspect-ratio: 3 / 2.2;
	width: 40%;
	object-fit: cover;
	border-radius: 10px;
	margin: -80px 0 0 auto;
}

.gas_top .left .img{
	height: 100%;
}

.gas_top .right{
	width: 50%;
}

.gas_top .txt_box{
	max-width: 520px;
	width: 86%;
	margin: 0 auto;
}

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

.gas_top .sub_ttl2{
	text-align: left;
}


.gas_top .btm_box{
	position: relative;
	background-color: #fef8e5;
	padding: 35px 25px;
	margin-top: 40px;
	border-radius: 10px;
}

.gas_top ul li{
	position: relative;
	padding: 5px 0;
	padding-left: 18px;
	letter-spacing: 0.03em;
}

.gas_top ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #EC8F26;
	width: 10px;
	height: 2px;
}

.gas_top .btm_box h4{
	margin-bottom: 20px;
	font-weight: 600;
}

.gas_top .ill_img{
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 20%;
	min-width: 160px;
}

.p_feature{
	background-color: #fef8e5;
	background-image: radial-gradient(circle, #fff 2px, transparent 2px);
	background-position: 0 0;
	background-size: 14px 14px;
}

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

.p_feature h4{
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	border-bottom: dotted 4px #EC8F26;
	padding-bottom: 14px;
}

.p_feature .left{
	width: 20%;
}
.p_feature .right{
	width: 72%;
	padding-top: 20px;
}

.p_feature h4 span{
	color: #EC8F26;
	display: inline-block;
	margin-right: 20px;
	padding-left: 5px;
}

.p_feature .cen_txt{
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.8;
}

.p_feature .left img{
	width: 86%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.p_feature .item+.item{
	margin-top: 50px;
}

.p_feature .item_list{
	padding: 0 40px;
}

.gas_ser{
	position: relative;
	background: url(../img/fv01.jpg);
	background-size: cover;
	background-position: center;
}

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

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

.gas_ser ul{
	max-width: 600px;
	margin: 40px auto 0;
}

.gas_ser ul li{
	position: relative;
	border-top: solid 1px #202020;
	padding: 15px 0;
	letter-spacing: 0.05em;
	padding-left: 30px;
}

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

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

.gas_ser .txt_box p.center{
	line-height: 1.8;
}

.case{
	padding-bottom: 0;
}

.case p.ch{
	text-align: center;
}

.case .item{
	background-color: #fff;
	padding: 45px;
	border-radius: 20px;
	width: 49%;
}

.case .item+.item+.item{
	margin-top: 20px;
}

.case .color_box{
	background-color: #F9BB03;
	padding: 100px 0;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
}

.case .item .case_box+.case_box{
	margin-top: 30px;
}

.case .item h4{
	position: relative;
	text-align: center;
	letter-spacing: 0.03em;
	background-color: #fff;
	margin-bottom: 20px;
	z-index: 2;
}


.case .item h4 .en{
	display: block;
	margin-bottom: 18px;
	color: #EC8F26;
}



.case .item p.tp{
	background-color: #F9BB03;
	width: 150px;
	padding: 5px 0;
	text-align: center;
	border-radius: 40px;
	margin-bottom: 10px;
}

.case .item p.blue{
	background-color: rgb(178, 206, 224);
}

.case .item .left{
	width: 23%;
}
.case .item .right{
	width: 67%;
}

.case .item_list{
	position: relative;
	background-color: #F9BB03;
	max-width: 1400px;
	margin: 0 auto;
	gap: 2%;
	flex-wrap: wrap;
}

/* .case .item_list::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	height: 100%;
	left: 50%;
	width: 5px;
	border-right: dotted 6px #F9BB03;
	z-index: 1;
} */

.case .case_box{
	justify-content: space-between;
}

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

.case .top_box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fef8e5;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 100px;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,50%);
}

.case .top_box::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_btm.png);
	background-size: cover;
	background-position: center;
	width: 50px;
	aspect-ratio: 1 / 1;
	bottom: -1%;
	left: 50%;
	transform: translate(-50%,50%);
}

.case img{
	display: block;
	width: 130px;
	margin: 0 auto;
}

.consul{
	padding-top: 0;
}

.consul .txt_box{
	max-width: 650px;
	margin: 0 auto;
}

.consul .m_btn{
	margin: 30px auto 0;
}

.consul .bg{
	position: relative;
	background: url(../img/fv02.jpg);
	background-size: cover;
	background-position: center;
	padding: 150px 0;
}

.consul .bg::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(255, 255, 255,0.4);
	top: 0;
	left: 0;
	z-index: 0; 
	backdrop-filter: blur(3px);

}

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


@media (max-width: 1200px){
	.gas_top .flex_bet{
		flex-direction: column;
	}
	.gas_top .left{
		width: 70%;
		margin: 0 0 0 auto;
	}
	.gas_top .right{
		width: 100%;
	}
	.gas_top .txt_box{
		max-width: none;
	}
	.gas_top .left img.tp01{
		aspect-ratio: 7 / 4;
		min-width: auto;
	}
	.p_feature .flex_bet{
		flex-direction: column;
	}
	.gas_top .btm_box{
		width: 86%;
		margin: 40px auto 0;
	}
	.p_feature .right{
		width: 100%;
		margin: 0 auto;
	}
	.p_feature .left{
		width: 82%;
		margin: 0 auto 20px;
	}
	.consul .bg{
		padding: 120px 0;
	}
	.gas_ser .txt_box p.center{
		font-size: 1.6rem;
		text-align: left;
	}
	.case .top_box::before{
		width: 90px;
	}
	.case .top_box::after{
		width: 50px;
	}
	.case .item .left{
		padding-right: 0px;
	}
	.case .item .right{
		padding-left: 40px;
		width: 77%;
	}
	.case img{
		width: 140px;
	}
	.case .item p.tp{
		font-size: 1.6rem;
		padding: 4px 0;
	}
	.p_feature .left img{
		width: 30%;
	}
	.p_feature .left .img{
		text-align: center;
	}
	.case .item{
		width: 100%;
	}
	.case .item+.item{
		margin-top: 20px;
	}
}

@media (max-width: 650px){
	.gas_top .txt_box{
		width: 100%;
	}
	.gas_top .sub_ttl2{
		text-align: center;
	}
	.gas_top .right ul li+li{
		margin-top: 20px;
	}
	.gas_top .left{
		margin-bottom: 40px;
		width: 100%;
	}
	.gas_top .btm_box{
		width: 100%;
	}
	.p_feature .cen_txt{
		font-size: 1.6rem;
		text-align: left;
		margin-bottom: 30px;
	}
	.p_feature .left{
		width: 100%;
		margin-bottom: 10px;
	}
	.p_feature .right{
		width: 100%;
		padding-top: 0;
	}
	.p_feature h4{
		font-size: 1.8rem;
		margin-bottom: 10px;
		line-height: 1.6;
		padding-bottom: 7px;
	}
	.p_feature .item+.item{
		margin-top: 30px;
	}
	.p_feature .left img{
		width: 40%;
	}
	.p_feature .item_list{
		padding: 0 10px;
	}
	.gas_ser .txt_box p.center{
		font-size: 1.35rem;
	}
	.case .top_box{
		padding-bottom: 70px;
	}
	.case .top_box::before{
		width: 70px;
	}
	.case .top_box::after{
		width: 40px;
	}
	.case .item h4 .s_big{
		font-size: 2.2rem;
	}
	.case .item h4 .en{
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.case .color_box{
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		padding: 50px 0;
	}
	.case .item p.tp{
		font-size: 1.3rem;
	}
	.case .item p.tp{
		width: 70%;
		margin: 0 auto 15px;
	}
	.case .item{
		padding-left: 20px;
		padding-right: 20px;
		border-radius: 10px;
	}
	.case .item .right{
		padding-left: 0px;
		width: 100%;
	}
	.case img{
		width: 100px;
	}
	.case .item .left{
		padding-right: 0;
		width: 100px;
		margin: 0 auto 15px;
	}
	.case .item h4{
		margin-bottom: 20px;
	}
	.case .item h4 .f_txt{
		font-size: 2rem;
	}
	.case .inner{
		width: 96%;
	}
	.case .item_list::before{
		border-right: dotted 3px #F9BB03;
		width: 3px;
	}
	.case .item+.item{
		margin-top: 20px;
	}
	.consul .bg{
		padding: 80px 0;
	}
	.case .case_box{
		flex-direction: column;
	}
	.gas_top .btm_box h4{
		font-size: 1.6rem;
		text-align: center;
	}
	.gas_top .ill_img{
		bottom: -40px;
		right: 0;
		width: 120px;
		min-width: auto;
	}
	.case p.ch{
		line-height: 1.7;
	}
	.gas_ser ul{
		margin-top: 20px;
	}
}



/* リフォーム関連ページ */

.reno_top{
	padding: 0;
}

.reno_top .left{
	width: 46%;
}

.reno_top .left .img img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.reno_top .right{
	width: 46%;
}

.reno_top .sub_ttl2{
	text-align: left;
	margin-bottom: 50px;
}


.reno_top .btm_box{
	position: relative;
    background-color: #fef8e5;
    padding: 35px 25px;
    margin-top: 40px;
    border-radius: 10px;
}

.reno_top .btm_box .ill_img{
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 20%;
	min-width: 150px;
}

.reno_top .btm_box ul li{
	position: relative;
    padding: 5px 0;
    padding-left: 18px;
    letter-spacing: 0.03em;
}

.reno_top .btm_box ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #EC8F26;
	width: 10px;
	height: 2px;
}

.reno_top .btm_box h4{
	margin-bottom: 20px;
	font-weight: 600;
}

.reno_top p.s_big{
	margin-bottom: 45px;
}

.reno_top p.cir_ttl{
	position: relative;
	padding-left: 24px;
	margin-top: 20px;
	margin-bottom: 15px;
}

.reno_top p.cir_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #EC8F26;
	aspect-ratio: 1 / 1;
	width: 17px;
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.reno_top .co_box{
	margin-top: 80px;
}



.reno_top .right ul{
	margin-top: 15px;
	font-size: 1.7rem;
}

.reno_top .right ul li{
	letter-spacing: 0.1em;
}

.reno_top .right .s_f_txt{
	position: relative;
	padding-left: 15px;
	line-height: 1.8;
}

.reno_top .right .s_f_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 87%;
	width: 4px;
	background-color: #EC8F26;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.kitchen .sub_ttl2{
	text-align: left;
}
.kitchen .item{
	border-top: solid 1px #ccc;
	padding: 60px 20px;
}

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

.kitchen .f_ttl{
	margin-bottom: 25px;
}

.kitchen ul li{
	letter-spacing: 0.1em;
}

.kitchen ul{
	margin-bottom: 20px;
}

.kitchen .item .left{
	width: 45%;
}
.kitchen .item .right{
	width: 50%;
}


.kitchen .item .left .img{
	position: relative;
}

.kitchen .item .left .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}


.kitchen .item .left img{
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.merit{
	position: relative;
	background: url(../img/fv02.jpg);
	background-size: cover;
	background-position: center;
}

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

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

.merit .item_list{
	gap: 60px;
	margin-top: 80px;
	flex-wrap: wrap;
}

.merit .item{
	width: calc((100% - 180px) / 4);
}

.merit .item .txt_box p{
	font-size: 1.4rem;
}

.merit .item h4{
	margin-bottom: 20px;
}

.merit .item h4 .en{
	display: inline-block;
	margin-bottom: 10px;
	color: #EC8F26;
	font-size: 1.3em;
	letter-spacing: 0.05em;
}


.p_flow p.center{
	line-height: 1.8;
	margin-bottom: 100px;
}

.p_flow .inner{
	position: relative;
	max-width: 850px;
}

.p_flow .item_list{
	position: relative;
}

.p_flow .item_list::before{
	content: "";
	display: inline-block;
	position: absolute;
	border-left: dotted 4px #EC8F26;
	left: 48px;
	top: 0;
	width: 10px;
	height: 100%;
	z-index: -1;
}

.p_flow .cir{
	text-align: center;
	background-color: #EC8F26;
	color: #fff;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	height: 100px;
	width: 100px;
	padding-top: 20px;
}

.p_flow .left span{
	display: inline-block;
	font-size: 1.5em;
	margin-top: 4px;
	letter-spacing: 0.05em;
}

.p_flow .item+.item{
	margin-top: 60px;
}



.p_flow .left{
	width: 200px;
}
.p_flow .right{
	width: calc(100% - 200px);
}
.p_flow .right h4{
	position: relative;
	margin-bottom: 15px;
	padding-left: 17px;
	letter-spacing: 0.05em;
}

.p_flow .right h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #EC8F26;
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
}

@media (max-width: 1200px){
	.reno_top .flex_bet{
		flex-direction: column-reverse;
	}
	.reno_top .right{
		width: 100%;
	}
	.reno_top .left{
		width: 70%;
		margin-top: 30px;
	}
	.reno_top .btm_box{
        margin: 40px auto 0;
	}
	.kitchen .item{
		flex-direction: column;
	}
	.kitchen .item .left{
		margin-bottom: 40px;
		width: 100%;
	}
	.kitchen .item .right{
		width: 100%;
	}
	.kitchen .inner{
		width: 80%;
	}
	.kitchen .item .left img{
		border-radius: 10px;
		aspect-ratio: auto;
		height: 300px;
	}
	.merit .item{
		width: calc((100% - 60px) / 2);
	}
	.p_flow p.center{
		text-align: left;
	}
	.kitchen .item .left .img::before{
		content: "";
		display: inline-block;
		position: absolute;
		background-color: #fff;
		background: linear-gradient(180deg,rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 100%);
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
	}
}


@media (max-width: 650px){
	.p_flow p.center{
		font-size: 1.6rem;
		margin-bottom: 50px;
	}
	.p_flow .cir{
		width: 70px;
		height: 70px;
		font-size: 1.6rem;
		padding-top: 14px;
	}
	.p_flow .left{
		width: 90px;
	}
	.p_flow .right{
		width: calc(100% - 90px);
	}
	.p_flow .right h4{
		font-size: 1.8rem;
	}
	.p_flow .item_list::before{
		left: 34px;
	}
	.k_contact p.ch{
		line-height: 1.8;
	}
	.reno_top .right .s_f_txt{
		font-size: 1.6rem;
	}
	.reno_top .right ul{
		font-size: 1.6rem;
	}
	.reno_top .left{
		width: 100%;
	}
	.reno_top .left .img img{
		width: 100%;
		height: 200px;
		object-fit: cover;
	}
	.reno_top .co_box{
		margin-top: 30px;
	}
	.reno_top p.cir_ttl{
		line-height: 1.8;
		font-size: 1.5rem;
	}
	.reno_top p.cir_ttl::before{
		width: 12px;
	}
	.reno_top .btm_box h4{
		font-size: 1.6rem;
		text-align: center;
	}
	.reno_top .btm_box .ill_img{
		min-width: auto;
		width: 120px;
		right: 0;
		bottom: -60px;
	}
	.reno_top .btm_box{
		width: 100%;
	}
	.kitchen .item{
		padding: 20px 0;
	}
	.kitchen .item .left img{
		height: 190px;
	}
	.kitchen .item .left{
		margin-bottom: 20px;
	}
	.kitchen .f_ttl{
		font-size: 1.8rem;
		text-align: center;
	}
	.kitchen .sub_ttl2{
		margin-bottom: 10px;
		text-align: center;
	}
	.kitchen .inner{
		width: 90%;
	}
	.merit .item_list{
		margin-top: 30px;
	}
	.merit .item{
		width: 100%;
	}
	.merit .item_list{
		gap: 40px;
	}
	.merit .item h4{
		font-size: 2rem;
	}
	.reno_top .sub_ttl2{
		margin-bottom: 30px;
	}
}




/* お問い合わせページ */


.p_tel{
	padding: 60px 0;
	
}

.p_tel a{
	display: block;
	border: solid 1px #000;
	padding: 40px 0 30px;
	border-radius: 140px;
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
}

.p_tel a:hover{
	background-color: #F9BB03;
}


.p_tel .num{
	margin-top: 30px;
	letter-spacing: normal;
	margin-bottom: 20px;
}

.p_tel a span{
	font-size: 0.75em;
}

.k_contact main{
	overflow: visible;
}

.mailform{
	padding-top: 0;
}


input[type="checkbox"]{
	font-size: 1.5rem;
	width: 20px;
	height: 40px;
	border: solid 1px #bababa;
	background-color: #fff;
	border: solid 1px #aaa;
	display: table-cell;
	margin-bottom: 5px;
}

input[type="text"]{
	height: 50px;
	font-size: 1.5rem;
	padding: 10px;
	background: #fff;
	border-radius: 5px;
	width: 100% !important;
}

input[type="email"]{
	height: 50px;
	font-size: 1.5rem;
	padding: 10px;
	border-radius: 5px;
	background: #fff;
}

select#tiki{
	background-color: #fff;
	padding: 10px;
	font-size: 1.5rem;
	height: 50px;
	letter-spacing: 0.05em;
	border-radius: 5px;
}

.postal_btn{
	background-color: #F79005;
	color: #fff;
	font-weight: 500;
	height: 40px;
	margin-left: 10px;
	padding: 0 30px;
	transition: all .3s;
	text-align: center;
}

.postal_btn:hover{
	opacity: 0.7;
}

td .box.mini{
	width: 300px !important;
	height: 40px;
}

.contact_table td p{
	height: 40px;
	line-height: 40px;
	padding: 0 11px 0 8px;
}

.contact_table td .flex{
	margin-bottom: 10px;
}


textarea{
	padding: 10px;
	font-size: 1.5rem;
	background: #fff;
	width: 100% !important;
	height: 120px !important;
}

.contact_table th span,.form_attention span{
	color: #666;
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.4rem;
}

.contact_table th span.ac,.form_attention span.ac{
	color: #fff;
	background-color: #F79005;
	padding: 4px 8px 3px;
}

.contact_table th span.ac.nini{
	color: #F79005;
	background-color: #fff;
	border: solid 1px #F79005;
}

input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline-block;
	margin-right: 20px;
}


.form_attention{
	font-size: 1.4rem;
	margin-top: 40px;
	width: fit-content;
	margin: 40px auto 0;
	text-align: left;
}

.form_accordion{
	text-align: left;
	margin-top: 40px;
}

.form_attention p+p{
	margin-top: 10px;
}

input[type="checkbox"] + label{
	cursor: pointer;
}

.Label{
	font-size: 1.6rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	border-bottom: solid 2px #F79005;
	color: #F79005;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #F79005;
	border-right: 2.5px solid #F79005;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(135deg);
	text-decoration: transparent;
	top: calc(50% - 6px);
	right: 20px;
	margin-bottom: 1em;
}

.Label, .co_open{
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}

input[type="checkbox"].toggle{
	display: none;
}

.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

.form_accordion p{
	font-size: 1.45rem;
	text-align: left;
	letter-spacing: 2px;
	padding: 1% 0;
	padding-left: 1%;
	line-height: 200%;
}

.form_accordion h4{
	margin-top: 20px;
	font-size: 1.8rem;
	position: relative;
	padding-left: 26px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: dashed 1px #333;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.co_open{
	height: 0;
	overflow: hidden;
}

button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 7px 0;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #F79005;
	color: #fff;
	border: solid 1px #F79005;
	font-size: 1.6rem;
	margin-top: 40px;
	font-weight: 500;
}

.form_btn button:hover{
	background-color: #fff;
	color: #F79005;
}

.contact_table th span.ac.nini{
	color: #F79005;
	background-color: #fff;
	border: solid 1px #F79005;
}



.contact_table{
	width: 100%;
}

.mail_area{
	background-color: #f5f5f5;
	padding: 100px 0;
}

.contact_table th{
	width: 30%;
	font-weight: 500;
	margin-bottom: 15px;
}

.contact_table tr+tr th{
	margin-top: 30px;
}


.mailform .content_box{
	background-color: #fef8e5;
	padding: 80px 120px;
	border-radius: 10px;
}

.mailform .sub_ttl2{
	margin-bottom: 50px;
}

.k_contact p.ch{
	text-align: center;
}

.contact_table th,.contact_table td{
	padding: 15px 0;
}

.contact_table th{
	display: table-cell;
	vertical-align: middle;
}


@media (max-width: 1200px){
	.contact_table th,.contact_table td{
		display: block;
		padding: 0;
		width: 100%;
	}
	.mailform .content_box{
		padding: 80px;
	}
}

@media (max-width: 650px){
	.mailform .content_box{
		padding: 40px 20px;
	}
	.contact_table tr th{
		width: 100%;
		font-size: 1.5rem;
	}
	.form_attention{
		font-size: 1.3rem;
	}
	input[type="checkbox"] + label{
		font-size: 1.3rem;
	}
	.mailform .sub_ttl2{
		margin-bottom: 30px;
	}
	.p_tel h3{
		font-size: 1.8rem;
	}
	.p_tel a{
		width: 100%;
		padding: 30px 0 20px;
	}
	.p_tel .num{
		font-size: 2.8rem;
	}
	.k_contact p.ch{
		font-size: 1.8rem;
		width: 70%;
		margin: 0 auto;
	}
	.p_tel{
		padding: 30px 0 40px;
	}
	.mailform .inner{
		width: 96%;
	}
}





/* お知らせ一覧 */

.k_blog main{
	overflow: visible;
}


.blog_list{
	overflow: visible;
	padding-top: 0;
}

.blog_list .side_list{
	position: sticky;
	width: 300px;
	top: 200px;
	height: fit-content;
}

.blog_list .blog_item_list{
	width: calc(94% - 300px);
}

.blog_list .main_list{
	flex-wrap: wrap;
	gap: 20px;
}

.blog_list .main_list li{
	width: 100%;
	background-color: #fff;
	
}

.blog_list .main_list li a{
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: solid 1px #ccc;
}

.blog_list .main_list li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #EC8F26;
	aspect-ratio: 3 / 2;
	width: 30px;
	bottom: 10px;
	right: 10px;
	transition:  all.2s;
}

.blog_list .main_list li a .arrow{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	aspect-ratio: 1 / 1;
	width: 20px;
	bottom: 10px;
	right: 10px;
	background-size: cover;
	background-position: center;
	z-index: 2;
	transform: translateX(-25%);
	transition:  all.2s;
}
.blog_list .main_list li a .arrow02{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	aspect-ratio: 1 / 1;
	width: 20px;
	bottom: 10px;
	right: 10px;
	background-size: cover;
	background-position: center;
	z-index: 2;
	transform: translateX(-25%);
	opacity: 0;
	transition:  all.2s;
}

.blog_list .up_ymd{
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 8px;
	color: #EC8F26;
}

.new_mark{
	display: inline-block;
	background-color: #EC8F26;
	color: #fff;
	font-size: 1.4rem;
	margin-left: 5px;
	font-weight: 600;
	line-height: 1;
	padding: 4px 7px;
}

.blog_list .title{
	display: block;
	color: #333;
	padding: 0 8px;
}

.blog_list .main_list li a .left{
	width: 170px;
}
.blog_list .main_list li a .right{
	width: calc(92% - 170px);
	padding-top: 20px;
}

.blog_list .main_list li a img{
	display: inline;
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
}


.blog_list .side_list h3{
	position: relative;
	letter-spacing: 0.03em;
	margin-bottom: 50px;
	line-height: 1.2;
	padding-left: 16px;
}

.blog_list .side_list h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 90%;
	left: 0;
	width: 3px;
	background-color: #EC8F26;
	top: 54%;
	transform: translateY(-50%);
}

.blog_list .side_list h3::first-letter{
	color: #EC8F26;
}

.blog_list .side_list li{
	letter-spacing: 0.05em;
	font-weight: 600;
}

.blog_list .side_list li a{
	position: relative;
	display: block;
	width: fit-content;
	padding: 10px 30px 10px 30px;
	border-top: solid 1px #ccc;
}
.blog_list .side_list li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #EC8F26;
	aspect-ratio: 1 / 1;
	width: 7px;
	top: 52%;
	transform: translateY(-50%);
	left: 10px;
}
.blog_list .side_list li a:hover{
	color: #EC8F26;
}

.blog_list .side_list li+li{
	margin-top: 10px;
}

.blog_list .main_list li a:hover::before{
	background-color: #EC8F26;
}

.blog_list .main_list li a:hover .arrow{
	opacity: 0;
}
.blog_list .main_list li a:hover .arrow02{
	opacity: 1;
}

.pages{
	display: flex;
	justify-content: space-around;
	margin-top: 60px;
}

.pages a{
	display: block;
	border: solid 1px #111;
	padding: 15px 0;
	font-size: 1.45rem;
	padding-left: 40px;
	padding-right: 40px;
	letter-spacing: 0.03em;
}

.pages .page_next{
	text-align: left;
}
.pages .page_prev{
	text-align: right;
}

.pages div{
	width: 45%;
}

.pages a:hover{
	background-color: #F9BB03;
}


.blog_list .blog_content{
	padding: 0 2%;
}

.blog_list .blog_content .ttl{
	letter-spacing: 0.03em;
	margin-bottom: 20px;
}

.blog_list .blog_content .ttl::first-letter{
	color: #EC8F26;
}

.blog_list .blog_content .text{
	padding-top: 20px;
	margin-top: 5px;
	border-top: solid 1px #ccc;
}

.blog_list .blog_content .up_ymd{
	padding-left: 0;
}

.blog_list .blog_item_list.newspt .main_list li a .right{
	width: 100%;
	padding-top: 0;
}

.bl_ttl{
	position: relative;
	text-align: center;
	letter-spacing: 0.05em;
	width: fit-content;
	margin: 0 auto 40px;
	padding: 0 20px 15px;
}



.bl_ttl::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #aaa;
	transform: translateX(-50%);
	z-index: 1;
}


.bl_ttl::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #F9BB03;
	z-index: 2;
}


.blog_list .item_box+.item_box{
	margin-top: 150px;
}



@media (max-width: 1200px){
	.blog_list .flex_bet{
		flex-direction: column-reverse;
	}
	.blog_list .blog_item_list{
		width: 100%;
	}
	.blog_list .side_list{
		margin-top: 60px;
		width: 100%;
	}
	.blog_list .side_list ul{
		display: flex;
	}
	.blog_list .side_list li+li{
		margin-top: 0;
		margin-left: 10px;
	}
	.blog_list .side_list li a{
		border: solid 1px #ccc;
		padding: 10px 10px 10px 35px;
	}
	.blog_list .side_list h3{
		margin-bottom: 30px;
	}
	.blog_list .side_list li a::before{
		left: 15px;
	}
	.blog_list .side_list li{
		letter-spacing: normal;
		font-size: 1.45rem;
	}
	/* .blog_list .main_list li{
		width: calc((100% - 20px) / 2);
	} */
	.blog_list .main_list{
		gap: 20px;
	}
	
}

@media (max-width: 650px){
	.blog_list .side_list ul{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.blog_list .side_list li+li+li{
		margin-left: 0;
		margin-top: 10px;
	}
	.blog_list .blog_content .ttl{
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.blog_list .blog_content .up_ymd{
		font-size: 1.2rem;
	}
	.blog_list .blog_content .text{
		font-size: 1.4rem;
	}
	.pages{
		margin-top: 40px;
		flex-direction: column;
	}
	.pages a{
		padding: 7px 10px;
	}
	.pages div{
		width: 100%;
	}
	.pages .page_next{
		margin-bottom: 10px;
	}
	.blog_list .side_list h3{
		font-size: 1.8rem;
	}
	.blog_list .side_list li a{
		font-size: 1.2rem;
		letter-spacing: 0.03em;
	}
	.blog_list .side_list li+li{
		margin-left: 0;
	}
	.blog_list .main_list li{
		width: 100%;
	}
	.blog_list .side_list li{
		width: 48%;
	}
	.blog_list .side_list li a{
		display: block;
		width: 100%;
	}
	 .main_list li a .right{
		width: 100%;
	}
	.blog_list .main_list li a .left{
		margin: 0 auto;
	}
}




.main_blog_list .blog_item_list.blogpt .main_list li{
	width: calc((100% - 60px) / 4);
}

.blog_item_list.blogpt .main_list li{
	width: calc((100% - 40px) / 3);
}

.blog_item_list.blogpt li a .left{
	width: 100%;
}

.blog_item_list.blogpt li a .right{
	width: 100%;
	padding-top: 10px;
}

.blog_item_list.blogpt li a img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

.blog_item_list.blogpt li a{
	display: block;
	padding: 10px;
	padding-bottom: 30px;
}

@media (max-width: 1400px){
	.blog_item_list.blogpt .main_list li{
		width: calc((100% - 20px) / 2);
	}
	.blog_item_list.blogpt .main_list{
		gap: 20px;
	}
}



@media (max-width: 1200px){
	.blog_list .blog_item_list.blogpt .flex_bet.ch{
		flex-direction: row;
	}

}



@media (max-width: 650px){
	.blog_list .blog_item_list.blogpt .flex_bet.ch{
		flex-direction: column;
	}
	.blog_list .blog_item_list.blogpt .main_list li{
		width: 100%;
	}
}




.main_blog_list .blog_list .blog_item_list{
	max-width: 1200px;
	margin: 0 auto;
}

.main_blog_list .blog_list .pages{
	max-width: 1200px;
	margin: 80px auto 0;
}

.main_blog_list .blog_item_list{
	width: 100%;
}

.list_btn {
	width: 300px;
	margin: 60px auto 0;
}

.list_btn a{
	display: block;
	background-color: #F9BB03;
	padding: 12px 0;
	text-align: center;
	border: solid 1px #F9BB03;
}

.list_btn a:hover{
	background-color: rgb(80, 175, 97,0);
	color: #F9BB03;
}

@media (max-width: 1400px){
	.blog_main .main_blog_list .main_list li{
		width: calc((100% - 40px) / 3);
	}
	.blog_main .main_blog_list .main_list{
		gap: 20px;
	}
}


@media (max-width: 1200px){
	.blog_main .main_blog_list .main_list li{
		width: calc((100% - 20px) / 2);
	}
	.blog_main .main_blog_list .main_list{
		gap: 20px;
	}
}


@media (max-width: 650px){
	.bl_ttl{
		margin-bottom: 30px;
		font-size: 2.6rem;
	}
	.blog_main .blog_list .item_box+.item_box{
		margin-top: 80px;
	}
	.list_btn{
		margin-top: 30px;
	}
}





/*thanksページ*/

.kasou.thanks .kasou_top{
	margin-bottom: 0;
}

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
	margin-bottom: 30px;
}

.thanks_ttl .ja{
	font-size: 3.4rem;
	display: block;
	margin-top: 10px;
}

.thanks_ttl .en{
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: #EC8F26;
	line-height: 1;
}

.thanks_txt p{
	text-align: center;
}

.thanks_attention{
	font-size: 1.6rem;
	margin-top: 40px;
}

.sbtn{
    margin-top: 40px;
}

.sbtn a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: solid 2px #EC8F26;
    color: #EC8F26;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

.sbtn a:hover{
    background-color: #EC8F26;
	color: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
}
