html{
    font-size: 62.5%;
}

body{
	color: #2a2a43;
	background-color: #fef8e5;
	/* background: url(../img/noise.png); */
	background-repeat: repeat;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
}

*{
	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(20px);
	transition: opacity 2200ms, transform 3400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition-delay: 350ms;
}

.flowup.de02{
	transition-delay: 400ms;
}
.flowup.de03{
	transition-delay: 450ms;
}
.flowup.de04{
	transition-delay: 500ms;
}

.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flow_left{
	opacity: 0;
	transform: translateX(-100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.4s;
}
.flow_left.inview{
	opacity: 1;
	transform: translateX(0);
}

.flow_right{
	opacity: 0;
	transform: translateX(100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 1;
	transform: translateX(0);
}

.blurup{
	filter: blur(20px);
	opacity: 0;
	transform: translateY(10%);
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blurup.inview{
	filter: blur(0);
	transform: translateY(0%);
	opacity: 1;
}

.ch_blur{
	filter: blur(20px);
	opacity: 0;
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ch_blur.inview{
	opacity: 1;
	filter: blur(0px);
}

.flowup2{
	transform: translateY(-99%);
	opacity: 0;
	filter: blur(10px);
}
.flowup2.inview{
	transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}


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



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

.imgup img {
    transition: 2.2s 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 10s linear infinite normal;
}
@keyframes rotateanim{
  0% {
	transform: translate(-50%,-50%) rotate(0);
  }
  100% {
	transform: translate(-50%,-50%) rotate(360deg);
  }
}



.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.wide{
	max-width: 1400px;
}

.inner{
	margin-left: 60px;
	margin-right: 60px;
}

.inner.min{
	max-width: 1280px;
}

.container{
	padding-left: 5%;
	padding-right: 5%;
	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;
}



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



.w100{
	width: 100%;
}

.kizi{
	line-height: 2.6;
	font-size: 1.8rem;
	font-weight: 700;
}

.kizi p{
	letter-spacing: 0.07em;
}




/*フィルター*/

.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_none650{
	display: block;
}

.br_none1200{
	display: block;
}

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

@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: 740px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 80px 0 60px;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.3rem;
	}
}




/* 文字間 */

.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: 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.05em;
}

i{
	padding-right: 0.4em;
}


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


.en{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}



/* btn */


.m_btn{
	position: relative;
	width: 300px;
	margin-top: 40px;
	z-index: 2;
}

.m_btn a{
	position: relative;
	background-color: #DD4854;
	font-size: 2rem;
	display: block;
	color: #fff;
	font-weight: 500;
	padding: 30px 0;
	border-radius: 50px;
	padding-left: 40px;
	border: solid 2px #DD4854;
}

.m_btn.center{
	margin: 40px auto 0;
}

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

.m_btn a:hover{
	background-color: #fff;
	color: #DD4854;
}

.m_btn a .arrow{
	position: absolute;
	top: 50%;
	right: 42px;
	transform: translateY(-50%);
	width: 24px;
}






/* sub_ttl */




.sub_ttl02{
	font-weight: 900;
	margin-bottom: 50px;
}

.sub_ttl02 .en{
	font-size: 8rem;
	display: block;
	font-weight: 800;
	color: #DD4854;
}

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


/* header */


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

.hd_inner{
	margin-left: 40px;
	margin-right: 60px;
}

h1 img{
	height: 70px;
}

h1 img.change{
	display: none;
}

header.change_color h1 img{
	display: none;
}
header.change_color h1 img.change{
	display: block;
}

.main_nav{
}

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

.main_nav li a{
	letter-spacing: 0.03em;
	color: #fff;
	font-weight: 600;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.hd_btn{
	width: 200px;
}

.hd_btn a{
	display: block;
	background-color: #DD4854;
	color: #fff;
	padding: 10px 0 9px;
	text-align: center;
	border-radius: 40px;
	letter-spacing: 0.04em;
	font-size: 1.4rem;
	border: solid 1px #DD4854;
}

.hd_btn a:hover{
	background-color: #fff;
	color: #DD4854;
}

.hd_btn i{
	margin-right: 5px;
}

.hd_btn+.hd_btn{
	margin-left: 15px;
}

header .top_area{
	margin-bottom: 15px;
}

header.change_color{
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

header.change_color .main_nav a{
	color: #2a2a43;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
}

@media (max-width: 1200px){
	header .top_area{
		display: none;
	}
	.main_nav{
		display: none;
	}
	.hd_inner{
		margin-right: 0;
	}
}

@media (max-width: 740px){
	header{
		height: 70px;
	}
	h1 img{
		height: 48px;
	}
	.hd_inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	
}





/* fv */


.fv{
	position: relative;
	height: 100vh;
}


.top_slider{
	height: 100vh;
	min-height: 400px;
	width: 100%;
}
.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}


.top_slider .slider li{
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
}

.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/top04.jpg);
	background-position: center;
	background-size: cover;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/top05.jpg);
	background-position: center;
	background-size: cover;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/top06.jpg);
	background-position: left;
	background-size: cover;
}

.catch{
	position: absolute;
	bottom: 100px;
	left: 100px;
	z-index: 10;
}

.catch span{
	display: block;
	font-size: 5.6rem;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.07rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.catch span+span{
	margin-top: 40px;
	padding-left: 24px;
}

.catch span:first-child{
	position: relative;
}

.catch span:first-child::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 26px;
	left: -200px;
	height: 5px;
	width: 190px;
	border-radius: 10px;
}

@media (max-width: 1200px){
	.catch span{
		font-size: 4rem;
	}
	.catch{
		left: 50px;
	}
}
@media (max-width: 740px){
	.catch span{
		font-size: 2.2rem;
	}
	.catch span+span{
		margin-top: 25px;
		padding-left: 18px;
	}
	.catch span:first-child::before{
		height: 3px;
		top: 12px;
	}
	.catch{
		left: 30px;
		bottom: 60px;
	}
	.fv{
		height: 70vh;
	}
	.top_slider{
		height: 70vh;
	}
}




/* news */

.news {
	position: relative;
}

.news .left{
	width: 400px;
}
.news .right{
	width: calc(100% - 400px);
}

.news li a{
	padding: 20px 0;
	display: block;
	background-color: #fff;
	border-radius: 80px;
	padding-left: 40px;
}
.news li a .ttl{
	display: block;
	font-size: 1.7rem;
}
.news li a .up_ymd{
	font-weight: 700;
	background-color: #DD4854;
	font-size: 1.5rem;
	color: #fff;
	display: inline-block;
	padding: 8px 15px 6px;
	border-radius: 20px;
	margin-bottom: 10px;
}
.news li a:hover{
	background-color: #ddd;
}

.news li +li{
	margin-top: 15px;
}

.news .ac_img{
	position: absolute;
	bottom: 0;
	left: 0px;
	width: 180px;
	transform: scale(-1,1);
	transition: all 1s ease;
}

.news .ac_img.inview{
	left: 200px;
}

@media (max-width: 1200px){
	.news .flex_bet{
		flex-direction: column;
	}
	.news .left{
		width: 100%;
	}
	.news .right{
		width: 100%;
	}
	.sub_ttl02{
		text-align: center;
		font-size: 5rem;
	}
	.news .m_btn{
		margin: 40px auto 0;
	}
	.news .inner{
		margin: 0 auto;
		width: 92%;
	}
}

@media (max-width: 740px){
	.sub_ttl02 .en{
		font-size: 4rem;
	}
	.sub_ttl02 .ja{
		font-size: 1.5rem;
	}
	.news li a .up_ymd{
		font-size: 1.2rem;
	}
	.news li a .ttl{
		font-size: 1.5rem;
	}
	.news li a{
		padding: 15px 0;
		padding-left: 26px;
	}
	.m_btn a{
		font-size: 1.5rem;
		padding: 20px 0;
		padding-left: 30px;
	}
	.sub_ttl02{
		margin-bottom: 35px;
	}
	.m_btn a .arrow{
		width: 18px;
		right: 41px;
	}
	.news .ac_img{
		width: 80px;
	}
	.m_btn{
		width: 240px;
	}
	.m_btn a::before{
		width: 22px;
	}
}



/* aboutus */


.aboutus{
	position: relative;
	padding-top: 0;
	overflow: hidden;
}

.aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 0;
	transform: translate(-25%,-50%);
	max-width: 1500px;
	width: 90%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	z-index: -1;
}

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

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

.aboutus .img{
	position: relative;
}

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

.aboutus .right{
	position: relative;
	width: 46%;
}

.aboutus .ac_img{
	position: absolute;
	width: 60px;
	top: 0;
	right: -40px;
}

.aboutus .ac_img02{
	position: absolute;
	top: -40px;right: -40px;
	width: 120px;
}

.aboutus .ac_img03{
	position: absolute;
	left: 0;
	bottom: -100px;
	width: 120px;
}

.aboutus .ac_line{
	position: relative;
	margin-bottom: 140px;
	background-color: #ccc;
	padding: 40px 0;
}

.aboutus .ac_line::before{
	content: "";
	display: inline-block;
	position: absolute;
	border-top: dashed 5px #fff;
	height: 5px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.aboutus .ac_line p{
	position: relative;
	z-index: 1;
}

.aboutus .inner{
	max-width: 1400px;
	margin: 0 auto;
	width: 92%;
}

.mask_back {
    position: absolute;
    top: 30px;
	right: -30px;
	z-index: -1;
}

.mask_car_c {
    position: relative;
    mask-image: url(../img/car_shiru.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
	height: 500px;
}

@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column-reverse;
	}
	.aboutus .left{
		width: 100%;
	}
	.aboutus .right{
		width: 100%;
		justify-content: center;
		margin-bottom: 40px;
	}
	.mask_car_c{
		height: 400px;
	}
	.aboutus .txt_box{
		margin: 0 auto;
	}
	.mask_back{
		top: 0;
		right: 0;
		width: 90%;
	}
	.aboutus .ac_img{
		right: auto;
		left: 30px;
	}
	.aboutus .ac_img02{
		right: 0;
	}
}

@media (max-width: 740px){
	.aboutus .ac_line{
		margin-bottom: 50px;
		font-size: 2.6rem;
	}
	.mask_car_c{
		height: 300px;
	}
	.kizi{
		font-size: 1.5rem;
	}
	.mask_back{
		top: 10px;
		right: -10px;
		width: 100%;
	}
	.aboutus .ac_img{
		width: 40px;
		left: 0;
	}
	.aboutus .ac_img02{
		width: 80px;
	}
	.aboutus .ac_img03{
		width: 80px;
		bottom: -60px;
		left: auto;
		right: 0;
	}
}



/*  */


.sale{
	background-color: #DD4854;
	border-top-right-radius: 40px;
	border-top-left-radius: 40px;
	padding-bottom: 0;
}

.sale .wrapper{
	position: relative;
	background-color: #fff;
	width: 90%;
	margin-left: 0;
	padding: 80px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	border-left: 0;
	max-width: 1600px;
}

.sale .ac_txt,.maintenance .ac_txt{
	position: absolute;
	bottom: 0;
	right: 40px;
	font-size: 12rem;
	font-weight: 800;
	color: #ccc;
	z-index: 1;
}

.sale .txt_box{
	max-width: 700px;
	width: 62%;
}

.sale .txt_box p+p{
	margin-top: 20px;
}
.sale .ac_img{
	position: absolute;
	top: 50%;
	right: -60px;
	width: 45%;
	max-width: 720px;
	transform: translateY(-50%);
	z-index: 1;
}


.maintenance{
	background-color: #DD4854;
	padding-top: 100px;
}
.maintenance .wrapper{
	position: relative;
	background-color: #fff;
	width: 90%;
	margin: 0 0 0 auto;
	padding: 80px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-right: 0px;
	max-width: 1600px;
}
.maintenance .ac_img{
	position: absolute;
	bottom: 0;right: 0;
	max-width: 460px;
	width: 37%;
}
.maintenance .txt_box{
	max-width: 920px;
	width: 65%;
}

.maintenance .txt_box p+p{
	margin-top: 20px;
}

@media (max-width: 1200px){
	.sale .txt_box{
		width: 100%;
	}
	.maintenance .txt_box{
		width: 100%;
	}
	.sale .ac_img{
		position: static;
		transform: translateY(0);
		margin: 0 auto 40px;
	}
	.maintenance .ac_img{
		position: static;
		transform: translateY(0);
		margin: 0 auto 40px;
	}
	.sale .ac_img{
		width: 350px;
	}
	.maintenance .ac_img{
		width: 240px;
	}
	.sale .wrapper{
		width: 94%;
		padding: 80px 50px;
	}
	.maintenance .wrapper{
		width: 94%;
		padding: 80px 50px;
	}
	.sale .m_btn{
		margin: 40px auto 0;
	}
	.maintenance .m_btn{
		margin: 40px auto 0;
	}
	.sale .ac_txt, .maintenance .ac_txt{
		font-size: 7rem;
	}
}

@media (max-width: 740px){
	.sale .wrapper{
		padding: 50px 20px;
	}
	.sale .ac_img{
		width: 240px;
	}
	.maintenance{
		padding-top: 50px;
	}
	.maintenance .wrapper{
		padding: 50px 20px;
	}
	.maintenance .ac_img{
		width: 170px;
	}
	.sale{
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		padding-top: 50px;
	}
	.sale .ac_txt, .maintenance .ac_txt{
		font-size: 5rem;
	}
	.sale .ac_txt{
		right: auto;
		left: 0;
	}
	.maintenance .ac_txt{
		right: 0;;
	}
}



/* works */


.anime05{
	animation: move05 cubic-bezier(0, 1, 0, 1) infinite 3s forwards;
}


@keyframes move05 {
    0% {
      transform: translate(0, 0) rotate(0);
    }

    10% {
      transform: translate(-4px, -4px) rotate(-4deg);
    }

    20% {
      transform: translate(0, 0) rotate(0);
    }

    30% {
      transform: translate(0, 0) rotate(2deg);
    }

    40% {
      transform: translate(0, 0) rotate(0);
    }

    100% {
      transform: translate(0, 0) rotate(0);
    }
}



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

.works .inner{
	position: relative;
}

.works .ac_img{
	position: absolute;
	left: 0;
	top: -50px;
}

.works .ac_img img{
	width: 150px;
}

.works .ac_img02{
	position: absolute;
	bottom: -50px;
	right: 0;
	width: 220px;
}

.works .sub_ttl02{
	text-align: center;
}

.works .txt_box{
	text-align: center;
	margin-bottom: 80px;
}

.works .ac_txt{
	font-size: 10rem;
	white-space: nowrap;
	font-weight: 800;
	text-align: center;
	border-bottom: dashed 5px #2a2a43;
	border-top: solid 5px #2a2a43;
	letter-spacing: -0.02em;
	padding: 10px 0;
	margin-bottom: 100px;
	overflow: hidden;
	color: #ccc;
}

@media (max-width: 1200px){
	.works .container{
		padding: 0;
	}
	.works .ac_img img{
		width: 100px;
	}
	.works .ac_img{
		left: -30px;
		top: -80px;
	}
}

@media (max-width: 740px){
	.works .ac_txt{
		font-size: 3.2rem;
		margin-bottom: 60px;
	}
	.works .inner{
		margin: 0 auto;
		width: 94%;
	}
	.works .txt_box{
		text-align: left;
		margin-bottom: 50px;
	}
	.works .txt_box p{
		display: inline;
	}
	.works .ac_img img{
		width: 60px;
	}
	.works .ac_img{
		top: -40px;
		left: 0;
	}
	.works .ac_img02{
		width: 120px;
	}
}




/* contents */


.contents{
	position: relative;
	background-color: #dfedfb;
	overflow: hidden;
}

.contents .inner{
	position: relative;
	background-color: #fff;
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px;
	border-radius: 30px;
	width: 90%;
	z-index: 1;
}

.contents .sub_ttl02{
	text-align: center;
}

.contents .item_area{
	max-width: 1080px;
	margin: 0 auto;
}

.contents .item{
	position: relative;
	width: 44%;
	margin: 0 auto;
	height: 260px;
	border-radius: 10px;
}

.contents .item .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 10px;
	z-index: 1;
}

.contents .item a{
	position: relative;
	display: block;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	color: #DD4854;
}

.contents .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all .3s;
}
.contents .item a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: repeating-linear-gradient(-45deg, rgb(222, 71, 84,0.5), rgb(222, 71, 84,0.5) 5px, rgb(222, 71, 84,0.8) 5px, rgb(222, 71, 84,0.8) 10px);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	bottom: -12px;
	right: -12px;
	z-index: 0;
}

.contents .item a:hover::before{
	background-color: rgb(254, 248, 229,0.2);
}

    

.contents .item h4{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 2.2rem;
	font-weight: 700;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	letter-spacing: 0.04em;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	z-index: 2;
}

.contents .item .en{
	display: block;
	font-weight: 800;
	margin-bottom: 10px;
	font-size: 0.8em;
}

.contents .ac_img{
	position: absolute;
	bottom: 0;
	z-index: 0;
}

.contents .ac_img img{
	width: 100%;
	min-width: 800px;
}

@media (max-width: 1200px){
	.contents .sub_ttl02 .en{
		font-size: 6.8rem;
	}
	.contents .inner{
		padding: 60px 40px;
	}
}

@media (max-width: 740px){
	.contents .sub_ttl02 .en{
		font-size: 4rem;
	}
	.contents .sub_ttl02 .ja{
		font-size: 1.6rem;
	}
	.contents .item_area{
		flex-direction: column;
	}
	.contents .item+.item{
		margin-top: 40px;
	}
	.contents .sub_ttl02{
		margin-bottom: 35px;
	}
	.contents .item h4{
		font-size: 1.8rem;
	}
	.contents .ac_img{
		left: 50%;
		transform: translateX(-50%);
	}
	.contents .inner{
		border-radius: 15px;
	}
	.contents .item{
		width: 100%;
	}
	.contents .item .bg{
		height: 200px;
	}
	.contents .item{
		height: 200px;
	}
}




/* neil */


.neil{
	position: relative;
	padding-top: 260px;
	padding-bottom: 100px;
	overflow: hidden;
}

.neil::before{
	content: "";
	display: inline-block;
	background-color: #f9dee5;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1400px;
	height: calc(100% - 120px);
	border-top-left-radius: 1000px;
	border-top-right-radius: 1000px;
	z-index: -2;
}

.neil::after{
	content: "";
	display: inline-block;
	background-color: rgb(255, 255, 255,0.7);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1300px;
	height: calc(100% - 70px);
	border-top-left-radius: 1000px;
	border-top-right-radius: 1000px;
	z-index: -1;
}

/* .neil .st_bg{
	position: absolute;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg, rgb(222, 71, 84,0.5), rgb(222, 71, 84,0.5) 5px, rgb(222, 71, 84,0.8) 5px, rgb(222, 71, 84,0.8) 10px);
	top: 0;
	left: 0;
	z-index: -3;
} */

.neil .sub_ttl02{
	text-align: center;
}

.neil .sub_ttl02 .en{
	display: block;
	font-size: 9rem;
	font-weight: 800;
}

.neil .sub_ttl02 .mini{
	font-size: 4rem;
}

.neil .txt_box{
	text-align: center;
	font-size: 2.2rem;
}

.bg_dot{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fef8e5;
	background-image: radial-gradient(#eeeeee 20%, transparent 20%);
	background-size: 20px 20px;
	z-index: -3;
}

.neil .inner{
	position: relative;
}

.neil .ac_img{
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 220px;
}

.neil .img01{
	position: absolute;
	top: -100px;
	right: 0;
	max-width: 300px;
	width: 17%;
}

.neil .img02{
	position: absolute;
	top: 50%;
	left: 0;
	max-width: 300px;
	width: 17%;
	transform: translateY(-50%);
}

.neil .img03{
	position: absolute;
	bottom: -80px;
	right: 0;
	width: 17%;
	max-width: 300px;
}

.neil .img01 img,.neil .img02 img,.neil .img03 img{
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
}


@media (max-width: 1200px){
	.neil .ac_img{
		width: 150px;
	}
	.neil .img01{
		width: 21%;
		top: -200px;
		right: -50px;
	}
	.neil .img02{
		width: 21%;
		left: -70px;
		top: 47%;
	}
	.neil .img03{
		width: 21%;
		right: -50px;
	}
}

@media (max-width: 740px){
	.neil .sub_ttl02 .mini{
		font-size: 1.6rem;
	}
	.neil .sub_ttl02 .en{
		font-size: 4rem;
	}
	.neil{
		padding-top: 170px;
		padding-bottom: 60px;
	}
	.neil .txt_box{
		font-size: 1.5rem;
	}
	.neil .inner{
		width: 94%;
		margin: 0 auto;
	}
	.neil .ac_img{
		width: 100px;
		bottom: -60px;
	}
	.neil .m_btn+.m_btn{
		margin-top: 20px;
	}
	.neil .img01{
		top: -150px;
		left: 50%;
		transform: translateX(-50%);
		width: 28%;
	}
	.neil .img02{
		top: -100px;
		left: 0;
		transform: translateY(0);
		width: 28%;
	}
	.neil .img03{
		top: -100px;
		right: 0;
		width: 28%;
	}
	.neil .img01 img, .neil .img02 img, .neil .img03 img{
		border-width: 2px;
	}
}


/* footer */



.foo_top{
	padding: 100px 0;
	background: url(../img/car_bg.jpg);
	background-size: cover;
	background-position: center;
	background-position-y: 80%;
}

.foo_top h3{
	font-weight: 800;
	font-size: 8rem;
	text-align: center;
	margin-bottom: 60px;
}



.foo_top .btn_area .m_btn{
	width: 340px;
	margin: 0;
}

.foo_top .btn_area .m_btn+.m_btn{
	margin-left: 60px;
}

.foo_top .btn_area .btn a{
	display: block;
	background-color: #DD4854;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	font-size: 2rem;
	font-weight: 500;
	border-radius: 40px;
}

.foo_top .inner{
	background-color: #fef8e5;
	padding: 60px 0;
	border-radius: 20px;
	max-width: 960px;
	margin: 0 auto;
}



.foo_btm{
	padding: 70px 0;
	background-color: #fff;
}

.foo_btm .inner{
	max-width: 1400px;
	margin: 0 auto;
	width: 94%;
}

.info_table02{
	width: 100%;
	font-size: 1.45rem;
	line-height: 1.7;
}

.info_table02 th{
	width: 30%;
	padding: 16px 0;
	letter-spacing: 0.04em;
	border-bottom: solid 2px #DD4854;
	padding-left: 5px;
	color: #DD4854;
}

.info_table02 td{
	position: relative;
	width: 70%;
	padding: 16px 0;
	letter-spacing: 0.04em;
	padding-left: 5px;
	border-bottom: solid 2px #ccc;
}

.foo_btm .left{
	width: 46%;
}

.foo_btm .right{
	width: 46%;
}

.foo_btm .right iframe{
	width: 100%;
	height: 490px;
	border-radius: 20px;
}

.foo_btm .rubi{
	position: absolute;
	display: inline-block;
	font-size: 1.1rem;
	top: 0;
	left: 18px;
}

.copy{
	background-color: #DD4854;
	color: #fff;
	text-align: center;
	padding: 12px 0;
	font-size: 1.45rem;
}

.foo_btm .banner{
	margin-bottom: 30px;
}

.foo_btm .banner a:hover{
	opacity: 0.75;
}


@media (max-width: 1200px){
	.foo_top .inner{
		width: 94%;
	}
	.foo_top .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.foo_top .btn_area .m_btn+.m_btn{
		margin-left: 0;
		margin-top: 30px;
	}
	.foo_btm .inner{
		flex-direction: column;
	}
	.foo_btm .left{
		width: 100%;
	}
	.foo_btm .right{
		width: 100%;
		margin-top: 40px;
	}
}

@media (max-width: 740px){
	.foo_top h3{
		font-size: 4rem;
		margin-bottom: 35px;
	}
	.foo_top .btn_area .m_btn{
		width: 240px;
	}
	.foo_top .inner{
		padding: 60px 0;
	}
	.foo_top .btn_area .m_btn+.m_btn{
		margin-top: 20px;
	}
	.foo_top{
		padding: 60px 0;
	}
	.foo_btm .right iframe{
		height: 340px;
	}
	.copy{
		font-size: 1.2rem;
	}
	.foo_btm{
		padding: 50px 0;
	}
}




/* page top */

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

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


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
	padding: 15px;
	padding-bottom: 30px;
}

.page_top a .txt{
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 2rem;
	font-weight: 900;
	white-space: nowrap;
	background-color: #2a2a43;
	color: #ffff;
	padding: 3px 14px;
	border-radius: 20px;
}

.page_top a .txt .en{
	font-weight: 900;
}



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

@media (max-width: 740px){
    .page_top {
		width: 90px;
    }
	.page_top a .txt{
		font-size: 1.4rem;
		left: -5px;
	}
	.page_top a {
		padding: 10px;
		padding-bottom: 15px;
	}
	
	
}




/* 下層トップ */


.kasou_top{
	position: relative;
	background: url(../img/kasou_top02.jpg);
	background-size: cover;
	background-position: center;
	padding: 200px 0 120px;
}

.kasou_top h2{
	font-size: 6rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: #fff;
	line-height: 1.6;
}

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

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

.kasou_top ol{
	color: #fff;
	flex-wrap: wrap;
}

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

.kasou_top ol a::before{
	content: ">";
	display: inline-block;
	position: absolute;
	top: 46%;
	right: 0;
	transform: translateY(-50%);
}

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

.kasou .inner{
	margin: 0;
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

.kasou .inner.min{
	max-width: 1080px;
}

.k_ttl{
	font-size: 4.8rem;
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
}

.k_ttl::first-letter{
	color: #DD4854;
}

.kasou .kizi{
	font-size: 1.6rem;
}

.kasou .sub_ttl02{
	text-align: center;
	margin: 0 auto 60px;
}

.kasou .sub_ttl02.color{
	color: #fff;
}

.kasou .sub_ttl02.color .en{
	color: #fff;
}


@media (max-width: 1200px){
	.kasou_top h2{
		font-size: 5rem;
	}
}


@media (max-width: 740px){
	.kasou_top h2{
		font-size: 3.2rem;
		margin-bottom: 25px;
	}
	.kasou_top{
		padding: 120px 0 80px;
	}
	.kasou .sub_ttl02{
		margin-bottom: 30px;
	}
	.k_inner{
		padding-left: 20px;
		padding-right: 20px;
	}
}




/* 新車・中古車販売ページ */


.kasou section{
	padding: 100px 0;
}



.sale_top .left{
	width: 42%;
}
.sale_top .right{
	width: 52%;
}

.sale_top .left .img img{
	width: 100%;
	aspect-ratio: 3 / 2.2;
	border-radius: 10px;
	object-fit: cover;
	/* border-bottom: solid 4px #DD4854;
	border-right: solid 4px #DD4854; */
}

.sale_top .left .img{
	position: relative;
	width: 60%;
	
}

.sale_top .left .img.tp02{
	margin: -10px 0 0 auto;
}

.sale_top .left .img::before{
	content: "";
    display: inline-block;
    position: absolute;
    background: repeating-linear-gradient(-45deg, rgb(222, 71, 84, 0.5), rgb(222, 71, 84, 0.5) 5px, rgb(222, 71, 84, 0.8) 5px, rgb(222, 71, 84, 0.8) 10px);
    width: 100%;
    height: 100%;
    bottom: -8px;
    right: -8px;
    z-index: -1;
	border-radius: 10px;
}

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




.gallery{
	background-color: #fff;
}


.gallery .gap_area{
	flex-wrap: wrap;
	gap: 40px;
}

.gallery .item{
	width: calc((100% - 80px) / 3);
}

.gallery .item a{
	display: block;
	width: 100%;
}

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

.gallery .mtitle{
	font-size: 2.6rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-weight: 500;
	border-left: solid 4px #DD4854;
	padding-left: 8px;
	margin-bottom: 30px;
}

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



.check_sec{
	text-align: center;
	background: url(../img/zaiko_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}
.check_sec p.fir{
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.check_sec .banner img{
	height: 80px;
}
.check_sec .banner a:hover{
	opacity: 0.75;
}
.check_sec .wrap{
	background-color: rgb(255, 255, 255,0.95);
	padding: 60px 0;
	border-radius: 20px;
}


.satei{
	overflow: hidden;
	background-color: #DD4854;
}

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

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

.satei .ac_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
}

.satei .ac_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 250px;
}

.satei .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
	border-radius: 50%;
	min-width: 780px;
}

@media (max-width: 1200px){
	.sale_top .flex_bet{
		flex-direction: column;
	}
	.sale_top .left{
		width: 100%;
		display: flex;
		margin-bottom: 40px;
	}
	.sale_top .right{
		width: 100%;
	}
	.sale_top .left .img{
		width: 48%;
	}
	.sale_top .left .img.tp02{
		margin-top: 0;
	}
	.k_ttl{
		font-size: 4.2rem;
	}
	.satei .ac_img{
		width: 100px;
	}
	.satei .ac_img02{
		width: 170px;
	}
	.gallery .item{
		width: calc((100% - 50px) / 3);
	}
	.gallery .gap_area{
		gap: 40px 25px;
	}
}

@media (max-width: 740px){
	.k_ttl{
		font-size: 3rem;
		margin-bottom: 40px;
	}
	.kasou .kizi{
		font-size: 1.4rem;
	}
	.kasou section{
		padding: 60px 0;
	}
	.check_sec p.fir{
		font-size: 1.4rem;
	}
	.check_sec .banner img{
		height: 44px;
	}
	.check_sec .wrap{
		padding: 40px 0;
	}
	.satei .ac_img{
		width: 60px;
		top: -30px;
	}
	.satei .ac_img02{
		width: 100px;
		bottom: -40px;
	}
	.sale_top .txt_box br{
		display: none;
	}
	.gallery .item{
		width: calc((100% - 20px) / 2);
	}
	.gallery .gap_area{
		gap: 30px 20px;
	}
	.gallery .mtitle{
		font-size: 2rem;
	}
	.gallery_wrapper+.gallery_wrapper{
		margin-top: 50px;
	}
}




/* 車検・整備・板金ページ */


.syaken{
	position: relative;
	background-color: #DD4854;
}

.syaken .txt_box{
	font-weight: 500;
	line-height: 1.9;
}

.syaken .left{
	width: 25%;
}
.syaken .right{
	width: 68%;
}


.syaken .inner{
	background-color: #fff;
	padding: 60px 80px;
	max-width: 1280px;
	border-radius: 20px;
}

.syaken h4{
	position: relative;
	font-size: 2rem;
	letter-spacing: 0.04em;
	border-bottom: solid 3px #ccc;
	margin-bottom: 10px;
	font-weight: 600;
}

.syaken h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	height: 3px;
	width: 30px;
	bottom: -3px;
	left: 0;
	z-index: 1;
}

.syaken .box+.box{
	margin-top: 20px;
}

.syaken .fir{
	margin-bottom: 15px;
}

.ma_imgarea img{
	height: 700px;
	width: 100%;
	object-fit: cover;
}

.list_sec .inner{
	max-width: 1280px;
}

.list_sec .item{
	padding: 24px 0;
	border-top: solid 2px #ccc;
	line-height: 1.7;
}

.list_sec .item h4{
	font-size: 2.2rem;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	font-weight: 600;
}

.list_sec .item .en{
	color: #DD4854;
	display: inline-block;
	margin-right: 10px;
}

.list_sec .item_area{
	margin-top: 40px;
}

.list_sec p.fir{
	text-align: center;
	line-height: 2;
	font-size: 1.6rem;
}


.list_sec .item:last-child{
	border-bottom: solid 2px #ccc;
}

.list_sec .left{
	width: 300px;
}
.list_sec .right{
	width: calc(96% - 300px);
}

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


.hankin{
	background-color: #fff;
}


@media (max-width: 1200px){
	.ma_imgarea img{
		height: 500px;
	}
	.syaken .flex_bet{
		flex-direction: column;
	}
	.syaken .right{
		width: 100%;
	}
	.syaken .left{
		width: 30%;
		margin: 0 auto 40px;
	}
}

@media (max-width: 740px){
	.list_sec .item{
		flex-direction: column;
	}
	.list_sec .left{
		width: 100%;
		margin-bottom: 20px;
	}
	.list_sec .right{
		width: 100%;
	}
	.list_sec .left .img img{
		height: 200px;
	}
	.list_sec .item h4{
		font-size: 1.8rem;
	}
	.list_sec p.fir{
		text-align: left;
	}
	.ma_imgarea img{
		height: 350px;
	}
	.syaken .inner{
		padding: 40px 20px;
		border-radius: 10px;
	}
	.syaken h4{
		font-size: 1.8rem;
	}
	.syaken .left{
		margin-bottom: 20px;
	}
}





/* 施工実績・お客様の声ページ */



.w_top .inner{
	position: relative;
}

.w_top .ac_img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50px;
}

.w_top .ac_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 160px;
}

.w_top h3{
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
}

.w_top h3::first-letter{
	color: #DD4854;
}

.w_top p.fir{
	font-size: 2rem;
	text-align: center;
}


.w_blog{
	background-color: #fff;
}



.w_blog li{
	width: calc((100% - 90px) / 4);
}

.w_blog ul{
	flex-wrap: wrap;
	gap: 30px;
}

.w_blog ul a{
	display: block;
	overflow: hidden;
}

.w_blog .thumbnail{
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
	border-radius: 10px;
}

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

.w_blog .ttl{
	font-size: 1.8rem;
}
.w_blog .up_ymd{
	font-size: 1.6rem;
	color: #DD4854;
	display: block;
	margin-bottom: 7px;
}

.w_blog ul a:hover .thumbnail img{
	transform: scale(1.05);
}



.voice{
	background-color: #DD4854;
}

.voice_list{
	gap: 40px;
	flex-wrap: wrap;
}

.voice .item{
	background-color: #fff;
	padding: 30px 40px;
	line-height: 2;
	border-radius: 10px;
	font-size: 1.8rem;
	border-bottom: solid 2px #777;
	border-right: solid 2px #777;
	width: calc((100% - 40px) / 2);
}



.voice .wrap{
	background-color: #fef8e5;
	padding: 80px;
	border-radius: 20px;
}



@media (max-width: 1200px){
	.w_blog li{
		width: calc((100% - 30px) / 2);
	}
	.w_blog li:nth-child(n+3){
		margin-top: 40px;
	}
	.w_top .ac_img02{
		width: 110px;
	}
	.w_top .ac_img{
		width: 30px;
	}
	.voice .item{
		width: 100%;
	}
	.voice_list{
		gap: 20px;
	}
	.voice .wrap{
		padding: 60px;
	}
}

@media (max-width: 740px){
	.w_top h3{
		font-size: 3rem;
	}
	.w_top p.fir{
		font-size: 1.6rem;
	}
	.w_top .ac_img02{
		width: 80px;
		bottom: -40px;
	}
	.voice .wrap{
		padding: 50px 20px;
		border-radius: 10px;
	}
	.voice .item{
		font-size: 1.4rem;
		padding: 20px;
	}
	.w_blog .ttl{
		display: block;
		font-size: 1.5rem;
		line-height: 1.5;
	}
	.w_blog li {
        width: calc((100% - 15px) / 2);
    }
	.w_blog li:nth-child(n+3){
		margin-top: 20px;
	}
	.w_blog ul{
		gap: 15px;
	}
}





/* よくある質問・お問い合わせページ */



.faq .left li{
	position: relative;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.faq .left li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 6px;
	top: 54%;
	left: 10px;
	transform: translateY(-50%);
}

.faq .left li+li{
	margin-top: 7px;
}

.faq .left li a{
	display: block;
	background-color: #fff;
	padding: 15px 0;
	padding-left:25px;
	border-radius: 5px;
	letter-spacing: 0.05em;
}

.faq .left{
	position: sticky;
	width: 200px;
	height: fit-content;
	top: 200px;
}

.faq .right{
	width: calc(95% - 200px);
	max-width: 1000px;
	margin: 0 0 0 auto;
}


.faq .right .item_box{
	background-color: #fff;
	padding: 40px;
	border-radius: 15px;
}

.faq h4{
	position: relative;
	font-size: 2.8rem;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
	padding-left: 30px;
}

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


.faq .item .mark{
	font-size: 2rem;
	display: block;
	background-color: #DD4854;
	color: #fff;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	text-align: center;
	line-height: 34px;
	margin-right: 15px;
}

.faq .item{
	padding: 30px 0;
	border-top: solid 1px #ccc;
}

.faq .item .txt{
	display: block;
	display: flex;
}

.faq .item .qq .txt{
	font-size: 2rem;
}

.faq .item .qq{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.faq .item .aa{
	display: flex;
	align-items: center;
	line-height: 1.5;
}

.faq .item .aa .mark{
	background-color: #eee;
	color: #555;
}

.faq .item .aa .txt{
	width: calc(100% - 40px);
}

.faq .txt_box{
	font-size: 2rem;
	text-align: center;
	line-height: 2;
	margin-bottom: 60px;
}

.faq .right .item_box+.item_box{
	margin-top: 40px;
}

#pur{
	padding-top: 120px;
	margin-top: -120px;
}
#syaken{
	padding-top: 160px;
	margin-top: -120px;
}
#tenken{
	padding-top: 160px;
	margin-top: -120px;
}
#tosou{
	padding-top: 160px;
	margin-top: -120px;
}


.sub_ttl03{
	position: relative;
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: 0.04em;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-weight: 700;
}

.sub_ttl03::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	height: 3px;
	width: 50px;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}


.co_sec_img img{
	height: 700px;
	object-fit: cover;
	width: 100%;
}

.co_sec_img{
	position: relative;
}

.custom-shape-divider-top-1770342230 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1770342230 svg {
    position: relative;
    display: block;
    width: calc(127% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1770342230 .shape-fill {
    fill: #FEF8E5;
}

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

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

.custom-shape-divider-bottom-1770342344 .shape-fill {
    fill: #FEF8E5;
}

.co_top{
	position: relative;
	background-color: #DD4854;
}

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

.co_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 500px;
	background-color: #fef8e5;
}

.co_top .item{
	width: 48%;
	padding: 40px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
}

.co_top .item .num{
	font-size: 4rem;
	padding-right: 10px;
	display: block;
	color: #DD4854;
	letter-spacing: normal;
	text-align: center;
	font-weight: 700;
	margin-bottom: 15px;
}

.co_top .item .num .sm{
	font-size: 0.7em;
}

.co_top .item a:hover{
	opacity: 0.75;
}

.co_top .item ul{
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
}

.co_top .item ul li{
	position: relative;
	padding-left: 20px;
	letter-spacing: 0.1em;
}

.co_top .item 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: 54%;
	left: 0;
	transform: translateY(-50%);
}

.co_top .item ul li+li{
	margin-left: 16px;
}

.co_top .item p.ch{
	font-size: 2rem;
}



.co_top .txt_box{
	text-align: center;
	line-height: 2;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
}

input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #eee;
	width: 100% !important;
}

input[type="text"].mini{
	width: 120px !important;
}

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #eee;
}


input{
	appearance: auto;
}


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

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

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

.contact_table{
	width: 100%;
}


.contact_table .ib td .che_box{
	margin-right: 40px;
	display: inline;
}

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

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

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

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	border-bottom: solid 1px #ccc;
}

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: solid 1px #ccc;
}



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

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 19px 0 17px;
	letter-spacing: 0.05em;
	border-radius: 40px;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #DD4854;
	border: solid 2px #DD4854;
	color: #fff;
	font-size: 1.5rem;
	margin-top: 40px;
	font-weight: bold;
}

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 50px;
	line-height: 2;
	font-size: 1.4rem;
}


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

.form_attention p a:hover{
	opacity: 0.75;
}


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

.postal_btn:hover{
	opacity: 0.7;
}

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

.contact_table .mark{
	line-height: 40px;
	padding: 0 5px;
	padding-right: 10px;
}

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


.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.4rem;
	text-align: left;
	letter-spacing: 2px;
	line-height: 200%;
	color: #555;
}

.form_accordion h4{
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 26px;
	font-weight: 500;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px #ccc;
}

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

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

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

.Label{
	font-size: 1.6rem;
	letter-spacing: 2px;
	padding: 15px;
	display: block;
	color: #DD4854;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #fff;
	border: solid 1px #DD4854;
	border-radius: 30px;
}

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

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

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

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

.mail_area .wrap{
	background-color: #fff;
	padding: 60px 80px;
	margin-top: 60px;
	border-radius: 10px;
}


.contact_table td .tyui {
    display: block;
    font-size: 1.3rem;
	line-height: 2;
    margin-top: 10px;
    color: #b1191c;
}

.co_open p .rubi{
	position: absolute;
	top: 12px;
	left: 25px;
	font-size: 0.8em;
	letter-spacing: 0.1em;
}


@media (max-width: 1200px){
	.co_sec_img img{
		height: 500px;
	}
	.custom-shape-divider-bottom-1770342344 svg{
		height: 70px;
	}
	.custom-shape-divider-top-1770342230 svg{
		height: 70px;
	}
	.contact_table th,.contact_table td{
		width: 100%;
		display: block;
	}
	.contact_table th{
		border-bottom: 0;
		padding-bottom: 0;
	}
	.contact_table .ib td .che_box{
		display: block;
	}
	.contact_table .ib td .che_box+.che_box{
		margin-top: 5px;
	}
	.mail_area .wrap{
		padding: 60px;
	}
	.sub_ttl03{
		font-size: 2.4rem;
	}
	.co_top .item .num{
		font-size: 3.6rem;
	}
	.co_top .item_area{
		flex-direction: column;
	}
	.co_top .item{
		width: 100%;
	}
	.co_top .item+.item{
		margin-top: 30px;
	}
	.faq .left{
		width: 140px;
	}
	.faq .left li{
		font-size: 1.6rem;
	}
	.faq .right{
		width: calc(95% - 140px);
	}
	.faq h4{
		font-size: 2.4rem;
		margin-bottom: 30px;
	}
}

@media (max-width: 740px){
	.faq .txt_box{
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	.faq .flex_bet{
		flex-direction: column;
	}
	.faq .left{
		position: static;
		width: 80%;
		margin: 0 auto;
	}
	.faq .right{
		width: 100%;
	}
	.faq .right .item_box{
		margin-top: 40px;
		padding: 40px 20px 20px;
	}
	.faq h4{
		font-size: 2rem;
		padding-left: 20px;
	}
	.faq h4::before{
		width: 24px;
	}
	.faq .item .qq .txt{
		font-size: 1.6rem;
		width: calc(100% - 43px);
	}
	.faq .item .mark{
		font-size: 1.6rem;
		width: 28px;
		height: 28px;
		line-height: 29px;
	}
	.faq .item{
		padding: 20px 0;
	}
	.co_sec_img img{
		height: 320px;
	}
	.custom-shape-divider-top-1770342230 svg{
		height: 40px;
	}
	.custom-shape-divider-bottom-1770342344 svg{
		height: 40px;
	}
	.co_top .txt_box{
		font-size: 1.5rem;
		margin-bottom: 25px;
	}
	.sub_ttl03{
		font-size: 2rem;
	}
	.co_top .item .num{
		font-size: 3rem;
	}
	.co_top .item p.ch{
		font-size: 1.6rem;
	}
	.co_top .item{
		padding: 40px 20px;
	}
	.co_top .item+.item{
		margin-top: 20px;
	}
	.co_top::before{
		height: 320px;
	}
	.mail_area .wrap{
		margin-top: 30px;
		padding: 35px 25px;
	}
	.form_accordion{
		margin-top: 20px;
	}
	.faq .left li a{
		background-color: rgb(255, 255, 255,0);
		padding: 0;
		width: fit-content;
		text-decoration: underline;
		color: #1a0dab;
		padding-left: 24px;
	}
	.faq .left{
		background-color: #fff;
		padding: 20px;
		border-radius: 10px;
	}
	.faq .left li+li{
		margin-top: 10px;
	}
	#pur{
		padding-top: 70px;
		margin-top: -70px;
	}
	#syaken{
		padding-top: 90px;
		margin-top: -70px;
	}
	#tenken{
		padding-top: 90px;
		margin-top: -70px;
	}
	#tosou{
		padding-top: 90px;
		margin-top: -70px;
	}
}



/* Coco.nailページ */


.nail_top{
	background-color: #fff;
}

.nail_top .txt_box{
	position: relative;
	z-index: 1;
	font-size: 1.8rem;
	text-align: center;
	line-height: 2;
}

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

.nail_top .inner{
	position: relative;
}

.nail_top .ac_img{
	position: absolute;
	top: 0;
	right: 0;
	max-width: 300px;
	width: 20%;
	z-index: 0;
}

.nail_top .ac_img img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	border-radius: 50%;
}

.nail_top .ac_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 300px;
	width: 20%;
	z-index: 0;
}
.nail_top .ac_img02 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	border-radius: 50%;
}


.fee{
	position: relative;
}

.fee .left{
	width: 47%;
}
.fee .right{
	width: 47%;
}


.fee .left .img img{
	width: 100%;
	height: 380px;
	border-radius: 10px;
	object-fit: cover;
}

.fee .left .img{
	position: relative;
}

.fee .left .img::before{
	content: "";
    display: inline-block;
    position: absolute;
    background: repeating-linear-gradient(-45deg, rgb(222, 71, 84, 0.5), rgb(222, 71, 84, 0.5) 5px, rgb(222, 71, 84, 0.8) 5px, rgb(222, 71, 84, 0.8) 10px);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    bottom: -12px;
    right: -12px;
    z-index: -1;
}

.fee .inner+.inner{
	margin-top: 120px;
}

.fee .tyui{
	margin-top: 15px;
	line-height: 1.4;
	font-weight: 700;
}



.menu ul li{
	position: relative;
	font-size: 2rem;
	padding: 22px 0;
	padding-left: 25px;
	border-top: solid 1px #ccc;
}

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

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

.fee .tyui{
	color: #DD4854;
}



.gallery02{
	background-color: #fff;
}

.nail_flow{
	position: relative;
	background-color: #DD4854;
}

.nail_flow .k_ttl{
	color: #fff;
}

.nail_flow .k_ttl::first-letter{
	color: #fff;
}

.nail_flow .item_area{
	flex-wrap: wrap;
	gap: 20px;
}

.nail_flow .item{
	position: relative;
	width: calc((100% - 60px) / 3);
	background-color: #fff;
	padding: 30px 20px;
	line-height: 1.6;
	border-radius: 5px;
}

.nail_flow .item h4{
	position: relative;
	font-size: 2.2rem;
	border-bottom: solid 3px #ccc;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.nail_flow .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	height: 3px;
	width: 30px;
	bottom: -3px;
	left: 0;
	z-index: 1;
}

.nail_flow .btn{
	width: fit-content;
	margin-top: 20px;
}

.nail_flow .btn a{
	color: #DD4854;
	border: solid 1px #DD4854;
	padding: 7px 30px 10px;
	display: block;
	border-radius: 40px;
}

.nail_flow .btn a:hover{
	background-color: #DD4854;
	color: #fff;
}

.nail_flow .btm_box{
	background-color: #fff;
	margin-top: 50px;
	border-radius: 5px;
	padding: 40px;
	line-height: 1.6;
}


.nail_flow .btm_box li{
	letter-spacing: 0.04em;
}
.nail_flow .btm_box li+li{
	margin-top: 14px;
}

.nail_flow .btm_box h5{
	font-size: 2.2rem;
	margin-bottom: 25px;
}

.nail_flow .ac_num{
	position: absolute;
	color: #DD4854;
	opacity: 0.2;
	font-size: 8rem;
	bottom: 0;
	right: 15px;
	line-height: 1;
	pointer-events: none;
}

.nail_flow .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #DD4854;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 30px;
	top: 50%;
	right: -24px;
	transform: translateY(-50%);
	z-index: 1;
}

.nail_flow .item:last-child::before{
	display: none;
}

.nail_flow .item::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/f_arrow.png);
	background-size: cover;
	background-position: center;
	top: 50%;
	right: -20px;
	aspect-ratio: 1 / 1;
	width: 20px;
	transform: translateY(-50%);
	z-index: 2;
}

.nail_flow .item:last-child::after{
	display: none;
}


section.nail_co{
	position: relative;
	overflow: hidden;
	padding-top: 200px;
}

.nail_co .txt_box{
	font-size: 2rem;
	text-align: center;
	line-height: 1.6;
}

.nail_co::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f9dee5;
	height: 200%;
	width: 1100px;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}
.nail_co::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(255, 255, 255,0.7);
	height: 200%;
	width: 1000px;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.nail_co .inner{
	position: relative;
	z-index: 2;
}

@media (max-width: 1200px){
	.nail_top .ac_img img{
		width: 150px;
	}
	.nail_top .ac_img02 img{
		width: 150px;
	}
	.nail_top .ac_img{
		top: -50px;
	}
	.nail_top .ac_img02{
		bottom: -50px;
	}
	.nail_flow .item{
		width: calc((100% - 30px) / 2);
	}
	.nail_flow .item h4{
		font-size: 1.8rem;
	}
}

@media (max-width: 740px){
	.nail_top .txt_box{
		font-size: 1.5rem;
	}
	.nail_top .txt_box p+p{
		margin-top: 15px;
	}
	.nail_top .txt_box br{
		display: none;
	}
	.fee .flex_bet{
		flex-direction: column;
	}
	.fee .left{
		width: 100%;
	}
	.fee .left .img img{
		height: 200px;
	}
	.fee .right{
		width: 100%;
		margin-top: 30px;
	}
	.fee .inner+.inner{
		margin-top: 60px;
	}
	.menu ul li{
		font-size: 1.6rem;
	}
	.nail_flow .item{
		width: 100%;
	}
	.nail_flow .item::before{
		right: auto;
		left: 50%;
		top: auto;
		bottom: -24px;
		transform: translateX(-50%);
	}
	.nail_flow .item::after{
		top: auto;
		bottom: -20px;
		right: auto;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
	}
	.nail_flow .btm_box{
		padding: 30px;
		margin-top: 30px;
	}
	.nail_flow .btm_box h5{
		font-size: 1.8rem;
	}
	.nail_flow .btn{
		margin-top: 10px;
	}
	section.nail_co{
		padding-top: 100px;
	}
	.nail_co::before{
		top: 60px;
		height: 400%;
	}
	.nail_co::after{
		height: 400%;
	}
	.nail_co .txt_box{
		font-size: 1.6rem;
	}
}


.back_btn{
	width: 100%;
	max-width: 300px;
	margin: 40px auto 0;
}

.back_btn a{
	display: block;
	background-color: #DD4854;
	color: #fff;
	border-radius: 40px;
	padding: 24px 0;
	text-align: center;
	font-size: 1.8rem;
}

.back_btn a:hover{
	opacity: 0.75;
}


@media (max-width: 740px){
	.back_btn a{
		font-size: 1.6rem;
		padding: 20px 0;
	}
	.back_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: #DD4854;
	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 #DD4854;
    color: #DD4854;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
	border-radius: 50px;
}

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

.thanks .custom-shape-divider-bottom-1763002765 .shape-fill{
	fill: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
	.thanks_attention{
		font-size: 1.4rem;
	}
	.thanks_ttl .ja{
		font-size: 2.6rem;
		margin-top: 5px;
	}
}