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

/*

英字
font-family: brother-1816, sans-serif;

*/

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

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

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

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

/*IMG*/

a{
	transition:.2s;
}

body{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size:14px;
	line-height:24px;
	background:#f8f8f0;
}

/*ハンバーガー*/
.ham_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width:40px;
	height: 40px;
	position: absolute;
	top:13px;
	right: 15px;
	background:#f45517;
	cursor: pointer;
	z-index: 11;
}

.ham_btn > div{
	position: relative;
	width:60%;
	height: 18px;
}

.ham_btn > div > span{
	display: block;
	width:100%;
	height: 2px;
	background:#fff;
	transition: .3s;
}

.ham_btn > div > span:nth-of-type(1){
	position: absolute;
	top:0;
	left: 0;
	transform-origin: top right;
}

.ham_btn > div > span:nth-of-type(2){
	position: absolute;
	top:50%;
	left: 0;
	margin-top: -1px;
}

.ham_btn > div > span:nth-of-type(3){
	position: absolute;
	bottom:0;
	left: 0;
	transform-origin: bottom right;
}

.ham_open .ham_btn > div > span:nth-of-type(1){
	transform: translateX(-3px) rotate(-42deg);
}

.ham_open .ham_btn > div > span:nth-of-type(2){
	opacity: 0;
	left:24px;
}

.ham_open .ham_btn > div > span:nth-of-type(3){
	transform: translateX(-3px) rotate(42deg);
}

.ham_bg{
	position: fixed;
	top:0 !important;
	left:0;
	z-index: 9;
	background:#f8f8f0;
	width:100%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

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

.ham_open header{
	background: #fff !important;
}

.ham_open .h_logo a img:nth-of-type(1){
	display: block !important;
}

.ham_open .h_logo a img:nth-of-type(2){
	display: none !important;
}

.ham_wrap{
	position: fixed;
	right:0;
	top:0 !important;
	z-index: 10;
	width:100%;
	padding-top:0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

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

.ham_box{
	width:100%;
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.ham_box > ul{
	width:100%;
}

.ham_box > ul > li{
	width:200px;
	margin: 0 auto 20px;
}

.ham_box > ul > li:last-of-type{
	margin-bottom: 0;
}

.ham_box > ul > li > a{
	display: block;
	font-size: 14px;
	line-height: 36px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	text-decoration: none;
	background: #f45517;
	border:1px solid #f45517;
}

.ft_nav > li > a:hover{
	background:#fff;
	color:#f45517;
}

@media screen and (min-width:1001px) {
	.ham_btn{
		display: none;
	}
}

header{
	width:100%;
	position: absolute;
	top:0;
	left: 0;
	z-index: 10;
	transition: .3s;
}

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:20px;
}

.header > h1{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}

.header > h1 img{
	height: 56px;
}

.header > h1 > div:nth-of-type(1){
	margin-right: 20px;
}

.header nav > ul{
	display: flex;
}

.header nav > ul > li{
	margin-left: 15px;
}

.header nav > ul > li > a{
	display: block;
	width:154px;
	font-size: 14px;
	line-height: 36px;
	font-weight: bold;
	color:#fff;
	background:#f45517;
	border:1px solid #f45517;
	text-decoration: none;
	text-align: center;
}

.header nav > ul > li > a:hover{
	background:#fff;
	color:#f45517;
}

@media screen and (max-width:1350px) {
	.header{
		padding:10px 15px;
	}
	
	.header > h1{
		font-size: 12px;
		line-height: 18px;
	}
	
	.header > h1 img{
		height: 46px;
	}
	
	.header nav > ul > li{
		margin-left: 10px;
	}
	
	.header nav > ul > li > a{
		width:100px;
	}
}

@media screen and (max-width:1000px) {	
	.header nav{
		display: none;
	}
}

@media screen and (max-width:600px) {
	.header > h1{
		font-size: 10px;
		line-height: 16px;
	}
	
	
	.header > h1 > div:nth-of-type(2){
		width:100%;
		margin-top: 6px;
	}
	
	.header > h1 > div:nth-of-type(2) br{
		display: none;
	}
}

@media screen and (max-width:360px) {
	.header > h1 > div:nth-of-type(2) br{
		display: inline;
	}
}

.top_header{
	width:100%;
	position: absolute;
	top:0;
	left: 0;
	transition: .3s;
	display: flex;
	justify-content: space-between;
	padding:20px;
	z-index: 10;
}

.top_header > h1{
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}

.top_header > h1 > div:nth-of-type(1){
	margin-bottom: 10px;
}

.top_header nav > ul{
	display: flex;
	padding-top: 26px;
}

.top_header nav > ul > li{
	margin-left: 15px;
}

.top_header nav > ul > li > a{
	display: block;
	width:154px;
	font-size: 14px;
	line-height: 36px;
	font-weight: bold;
	color:#fff;
	background:#f45517;
	border:1px solid #f45517;
	text-decoration: none;
	text-align: center;
}

.top_header nav > ul > li > a:hover{
	background:#fff;
	color:#f45517;
}

.top_main{
	position: relative;
	padding:0 10px;
	margin-bottom: 50px;
}

.top_slider_wrap{
	height: calc( 100% - 140px );
	padding-left: 300px;
}

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

.top_slide1{
	background-image: url("images/top_slide1.webp");
	background-position: 45% 90%;
}

.top_slide2{
	background-image: url("images/top_slide2.webp");
}

.top_slide3{
	background-image: url("images/top_slide3.webp");
}

.top_slide4{
	background-image: url("images/top_slide4.webp");
}

.top_slide5{
	background-image: url("images/top_slide5.webp");
}

.top_slide_man{
	position: absolute;
	bottom:140px;
	left: 20px;
}

.top_slide_enjoy{
	width:calc( 100% - 290px );
	padding-left: 180px;
	margin-top: -60px;
	position: relative;
	z-index: 2;
	font-size: 30px;
	line-height: 38px;
	font-weight: bold;
}

.top_slide_btn{
	position: absolute;
	bottom:0;
	right: 40px;
}

.top_slide_btn > img{
	transition: .4s;
}

.top_slide_btn:hover > img{
	transform: rotateY(360deg)
}

.top_slide_text1{
	width:80%;
	height: calc( 100% - 170px );
	position: absolute;
	top:165px;
	left:0;
}

.top_slide_text_box{
	position: absolute;
	font-size: 36px;
	line-height: 96px;
	color:#fff;
	font-weight: bold;
	background: #000;
	padding:0 30px;
}

.top_slide_text_box_small{
	position: absolute;
	font-size: 24px;
	line-height: 60px;
	color:#fff;
	font-weight: bold;
	background: #000;
	padding:0 30px;
}

.top_slide_text2{
	width:410px;
	height: 240px;
	position: absolute;
	bottom:300px;
	right:20px;
}

.top_slide_text_box1{
	top:-60px;
	right: 0;
}

.top_slide_text_box2{
	top:0px;
	left: 25px;
}

.top_slide_text_box3{
	bottom:200px;
	left: 140px;
	z-index: 3;
}

.top_slide_text_box4{
	bottom:360px;
	left: 70px;
	z-index: 3;
}

.top_slide_text_box5{
	top:-80px;
	left: 60px;
}

.top_slide_text_box6{
	top:86px;
	left: 0;
}

.top_slide_text_box7{
	bottom:0;
	right: 0;
}

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

@media screen and (max-width:1500px) {
	.top_slide_text1{
		width:95%;
	}
}

@media screen and (max-width:1300px) {
	.top_slide_btn{
		right:20px;
	}
	
	.top_slide_text2{
		width:360px;
	}
	
	.top_slide_text_box{
		font-size: 28px;
		line-height: 60px;
	}
	
	.top_slide_text_box_small{
		font-size: 20px;
		line-height: 50px;
	}
	
	.top_slide_text_box3{
		left: 100px;
	}
}

@media screen and (max-width:1000px) {
	.top_slider_wrap{
		padding-left: 50px;
	}
	
	.top_slide_man{
		display: none;
	}
	
	.top_slide_enjoy{
		width:calc( 100% - 240px );
		font-size: 24px;
		line-height: 30px;
		padding-left: 0;
	}
	
	.top_slide_btn{
		width:200px;
	}
	
	.top_slide_text1{
		width:100%;
		top:100px;
	}
	
	.top_slide_text2{
		display: none;
	}
	
	.top_slide_text_box1{
		top:0px;
	}
	
	.top_slide_text_box2{
		top:100px;
	}
	
	.top_slide_text_box3{
		left: auto;
		right: 20px;
	}
	
	.top_slide_text_box4{
		bottom:300px;
		left: 50px;
	}
}

@media screen and (max-width:850px) {
	.top_slide_text2{
		display: none;
	}
}

@media screen and (max-width:650px) {
	.top_slider_wrap{
		height:calc( 100% - 90px );
	}
	
	.top_slide_btn{
		width:140px;
		right:10px;
	}
	
	.top_slide_enjoy{
		width:calc( 100% - 150px );
		font-size: 18px;
		line-height: 24px;
		margin-top: -30px;
	}
	
	.top_slide_text1{
		width:100%;
	}
	
	.top_slide_text_box{
		font-size: 22px;
		line-height: 46px;
		padding:0 10px;
	}
	
	.top_slide_text_box_small{
		padding: 0 10px;
	}
}

@media screen and (max-width:500px) {
	.top_slide1{
		background-position: 60% 90%;
	}
	
	.top_slide_btn{
		width:100px;
	}
	
	.top_slide_enjoy{
		width:100%;
		font-size: 14px;
		line-height: 20px;
		margin-top: 0;
		position: absolute;
		bottom: 0;
		left: 0;
		padding-bottom: 20px;
		padding-left: 10px
	}
	
	.top_slide_enjoy img{
		position: absolute;
		bottom:110px;
		left: 0;
	}
	
	.top_slide_enjoy p{
		width:calc( 100% - 120px );
	}
	
	.top_slider_wrap{
		padding-left: 0px;
	}
	
	.top_slide_text_box{
		font-size: 20px;
		line-height: 40px;
		padding:0 10px;
	}
	
	.top_slide_text_box_small{
		font-size: 16px;
		line-height: 36px;
	}
	
	.top_slide_text_box4{
		bottom:140px;
		left: 30px;
	}
}

@media screen and (max-height:820px) and (min-width:1001px) {
	.top_slider_wrap{
		padding-left: 100px;
	}
	
	.top_slide_man{
		display: none;
	}
	
	.top_slide_enjoy{
		padding-left: 0;
	}
	
	.top_slide_text2{
		display: none;
	}
	
	.top_slide_text1{
		width:100%;
		height: calc( 100% - 120px );
		top:140px;
	}
	
	.top_slide_text_box2{
		top:0px;
		left: 20px;
	}
	
	.top_slide_text_box3{
		left: 200px;
		bottom:230px;
	}
	
	.top_slide_text_box4{
		bottom: 350px;
	}
}

.heading1{
	max-width: 1200px;
	padding:15px 10px 10px;
	background:#fff;
	margin:0 auto 50px;
	text-align: center;
}

.heading1 > p:nth-of-type(1){
	font-size: 48px;
	line-height: 100%;
	font-weight: bold;
	font-family: brother-1816, sans-serif;
}

.heading1 > p:nth-of-type(2){
	font-size: 16px;
	line-height: 100%;
	font-weight: bold;
	color:#666666;
	margin-top: 5px;
}

@media screen and (max-width:750px) {
	.heading1 > p:nth-of-type(1){
		font-size: 36px;
	}
	.heading1 > p:nth-of-type(2){
		font-size: 14px;
	}
}

.top_car_list_wrap{
	max-width: 1240px;
	margin:0 auto 30px;
	padding:0 20px;
}

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

.top_car_box{
	width:32%;
	margin-right: 2%;
	margin-bottom: 70px;
}

.top_car_list > li:nth-of-type(3n){
	margin-right: 0;
}

.top_car_box_img{
	position: relative;
	display: block;
	margin-bottom: 15px;
	overflow: hidden;
}

.top_car_box_img > p{
	width:160px;
	font-size: 14px;
	line-height: 32px;
	color:#fff;
	text-align: center;
	background:#000;
	font-family: brother-1816, sans-serif;
	position: absolute;
	top:0;
	left: 0;
	z-index: 2;
}

.top_car_box_img > img{
	width:100%;
	transition: .3s;
	position: relative;
	z-index: 1;
}

.top_car_box_img:hover > img{
	transform: scale(1.2);
}

.top_car_box_h{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

.tbl1{
	width:100%;
	margin-bottom: 15px;
}

.tbl1 th{
	width:120px;
	border-bottom: 1px solid #f45517;
	padding:7px 5px 5px;
	font-weight: bold;
	vertical-align: top;
}

.tbl1 td{
	border-bottom: 1px solid #999;
	padding:7px 5px 5px;
	padding-left: 10px;
}

.tbl1 td span{
	display: inline-block;
}

.top_car_box_btn{
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.top_car_box_btn > a{
	width:144px;
	display: block;
	font-size: 14px;
	line-height: 32px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	background: #f45517;
	border:1px solid #f45517;
	text-decoration: none;
}

.top_car_box_btn > a:hover{
	background: #fff;
	color:#f45517;
}

@media screen and (max-width:750px) {
	.top_car_box{
		width:48.5%;
		margin-right:3%; 
	}
	
	.top_car_list > li:nth-of-type(3n){
		margin-right: 3%;
	}
	
	.top_car_list > li:nth-of-type(2n){
		margin-right: 0;
	}
	
	.tbl1 th{
		width:100px;
	}
}

@media screen and (max-width:500px) {
	.top_car_box{
		width:100%;
		margin-right: 0 !important;
		margin-bottom: 40px;
	}
	
	.tbl1 th{
		width:120px;
	}
}

.top_about_wrap{
	max-width: 1240px;
	margin:0 auto 80px;
	padding:0 20px;
}

.top_about1{
	text-align: center;
	margin-bottom: 10px;
}

.top_about1_text{
	width:96%;
	max-width: 1040px;
	border:5px solid #f45517;
	padding:10px 10px 20px;;
	background: #fff;
	margin:0 auto;
	position: relative;
	z-index: 2;
}

.top_about1_text > p:nth-of-type(1){
	font-size: 24px;
	line-height: 48px;
	font-weight: bold;
	color: #fff;
	background: #f45517;
	margin-bottom: 15px;
}

.top_about1_text > p:nth-of-type(2){
	font-size: 30px;
	line-height: 38px;
	font-weight: bold;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";
	margin-bottom: 14px;
}

.top_about1_text > p:nth-of-type(2) span{
	display: inline-block;
}

.top_about1_text > p:nth-of-type(3){
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
}

.top_about1_img{
	height: 500px;
	position: relative;
	margin-top: -100px;
	background: url("images/top_about1.webp") no-repeat right center;
	background-size: cover;
}

@media screen and (max-width:750px) {
	.top_about1_text > p:nth-of-type(1){
		font-size: 20px;
		line-height: 40px;
	}
	
	.top_about1_text > p:nth-of-type(2){
		font-size: 24px;
		line-height: 32px;
	}
	
	.top_about1_text > p:nth-of-type(3){
		font-size: 14px;
		line-height: 22px;
	}
	
	.top_about1_img{
		height: 350px;
	}
}

@media screen and (max-width:450px) {
	.top_about1_text > p:nth-of-type(1){
		font-size: 18px;
	}
	
	.top_about1_text > p:nth-of-type(2){
		font-size: 20px;
		line-height: 28px;
	}
}

@media screen and (max-width:400px) {
	.top_about1_img{
	}
}

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

.top_about2 > li{
	width:32%;
	max-width: 360px;
	margin-bottom: 50px;
}

.top_about2 > li > h3{
	font-size: 36px;
	line-height: 42px;
	font-weight: bold;
	margin-bottom: 10px;
}

.top_about2 > li > img{
	display: block;
	width:100%;
	margin-bottom: 16px;
}

@media screen and (max-width:850px) {
	.top_about2{
		max-width: 780px;
		margin:0 auto;
	}
	
	.top_about2 > li{
		width:48.5%;
	}
	
	.top_about2 > li:nth-of-type(3){
		margin:0 auto 50px;
	}
}

@media screen and (max-width:750px) {
	.top_about2 > li > h3{
		font-size: 30px;
		line-height: 36px;
	}
}

@media screen and (max-width:500px) {
	.top_about2{
		justify-content: center;
	}
	
	.top_about2 > li{
		width:100%;
	}
}

.top_about_map {
	position: relative;
	padding-bottom: 500px;
	height: 0;
	overflow: hidden;
	margin-bottom: 40px;
}
.top_about_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width:750px) {
	.top_about_map {
		padding-bottom: 300px;
	}
}

.top_about_info1{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.top_about_info1_l{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.top_about_info1_l > div:nth-of-type(1){
	margin-right: 50px;
}

.top_about_info1_l > div:nth-of-type(1) img{
	height: 60px;
}

.top_about_info1_r{
	font-size: 60px;
	line-height: 100%;
	font-weight: bold;
	font-family: brother-1816, sans-serif;
}

.top_about_info1_r span{
	font-size: 30px;
	padding-right: 10px;
}

@media screen and (max-width:1200px) {
	.top_about_info1_l{
		width:100%;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.top_about_info1_l > div:nth-of-type(1){
		margin-right: 30px;
	}
	
	.top_about_info1_r{
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width:750px) {
	.top_about_info1_r{
		font-size: 40px;
	}
	
	.top_about_info1_r span{
		font-size: 20px;
	}
}

@media screen and (max-width:600px) {
	.top_about_info1_l > div:nth-of-type(1){
		margin-right: 0;
	}
	
	.top_about_info1_l > div:nth-of-type(1) img{
		height: 50px;
	}
	
	.top_about_info1_l > div:nth-of-type(2){
		width:100%;
		text-align: center;
	}
	
	.top_about_info1_r{
		font-size: 30px;
	}
	
	.top_about_info1_r span{
		font-size: 16px;
	}
}

.top_about_info2_wrap{
	max-width: 820px;
	margin:0 auto 70px;
}

.top_about_info2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #fff;
	padding:15px 15px 20px;
}

.top_about_info2_box{
	width:48%;
	text-align: center;
	font-size: 24px;
	line-height: 100%;
	font-weight: bold;
}

.top_about_info2_box h3{
	font-size: 18px;
	line-height: 30px;
	background: #eee;
	font-weight: bold;
	margin-bottom: 15px;
}

.top_about_info2_wrap > p{
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width:750px) {
	.top_about_info2_box{
		font-size: 18px;
	}
	
	.top_about_info2_box h3{
		font-size: 16px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width:450px) {
	.top_about_info2_box{
		width:100%;
	}
	
	.top_about_info2 > div:nth-of-type(1){
		margin-bottom: 15px;
	}
}

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

.top_about_info3 > li{
	width:23%;
	margin-bottom: 40px;
}

.top_about_info3 > li > div{
	min-height: 260px;
	padding:30px 20px;
	background:#fff;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
}

.top_about_info3_free{
	position: absolute;
	top:0;
	right: 0;
	width:80px;
	line-height: 34px;
	text-align: center;
	color:#fff;
	background:#f45517;
}

.top_about_info3_paid{
	position: absolute;
	top:0;
	right: 0;
	width:80px;
	line-height: 34px;
	text-align: center;
	color:#fff;
	background:#0b1955;
}

.top_about_info3 > li > div > div{
	display: flex;
	justify-content: center;
	align-items: center;
	width:100%;
	height: 100px;
	margin-bottom: 25px;
}

.top_about_info3 > li > div > h3{
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	font-weight: bold;
}

.top_about_info3 > li > div > h3 > p:nth-of-type(2){
	font-size: 14px;
	line-height: 20px;
	margin-top: 6px;
}

.top_about_info3 > li > div > h3 span{
	display: inline-block
}

.btn1{
	display: block;
	width:100%;
	max-width: 330px;
	font-size: 16px;
	line-height: 54px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color:#fff;
	border:1px solid #f45517;
	background:#f45517;
	margin:0 auto;
}

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

@media screen and (max-width:800px) {
	.top_about_info3 > li{
		width:48%;
	}
	
	.top_about_info3 > li > div{
		min-height: 0;
	}
}

@media screen and (max-width:450px) {
	.top_about_info3 > li > div{
		padding:20px 10px;
	}
	
	.top_about_info3 > li > div > div{
		height: 70px;
		margin-bottom: 15px;
	}
	
	.top_about_info3 > li:nth-of-type(1) > div > div img{
		height: 70px;
	}
	
	.top_about_info3 > li:nth-of-type(2) > div > div img{
		height: 60px;
	}
	
	.top_about_info3 > li:nth-of-type(3) > div > div img{
		height: 50px;
	}
	
	.top_about_info3 > li:nth-of-type(4) > div > div img{
		height: 60px;
	}
	
	.top_about_info3 > li > div > h3{
		font-size: 14px;
		line-height: 20px;
	}
	
	.top_about_info3 > li > div > h3 > p:nth-of-type(2){
		font-size: 12px;
		line-height: 18px;
		margin-top: 3px;
	}
	
	.top_about_info3_free{
		font-size: 12px;
		width:60px;
		line-height: 28px;
	}
	
	.top_about_info3_paid{
		font-size: 12px;
		width:60px;
		line-height: 28px;
	}
}

.top_fc{
	position: relative;
	max-width: 1240px;
	margin:0 auto;
	padding:0 20px;
}

.top_fc_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-right: 220px;
}

.top_fc_list > li{
	width:32%;
	margin-bottom: 25px;
	text-align: center;
}

.top_fc_list > li > div{
	width:100%;
	margin-bottom: 15px;
}

.top_fc_list > li > p span{
	display: inline-block;
}

.top_fc_man{
	position: absolute;
	bottom:20px;
	right: 0;
}

@media screen and (max-width:1000px) {
	.top_fc_list{
		padding-right: 140px;
	}
	
	.top_fc_man{
		width:180px;
	}
}

@media screen and (max-width:850px) {
	.top_fc_list{
		padding-right: 0;
	}
	
	.top_fc_man{
		display: none;
	}
}

@media screen and (max-width:700px) {
	.top_fc_list > li{
		width:48%;
	}
}

@media screen and (max-width:700px) {
	
}

footer{
	margin-top: 150px;
}

.footer{
	height: 440px;
	padding:40px 10px 0;
	background: url("images/ft_bg.webp") no-repeat center/cover;
	position: relative;
}

.ft_nav{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.ft_nav > li{
	width:150px;
	margin: 0 10px 20px;
}

.ft_nav > li > a{
	display: block;
	font-size: 14px;
	line-height: 36px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	text-decoration: none;
	background: #f45517;
	border:1px solid #f45517;
}

.ft_nav > li > a:hover{
	background:#fff;
	color:#f45517;
}

.ft_logo{
	display: table;
	margin:0 auto 20px;
}

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

.ft_name{
	font-size: 24px;
	line-height: 100%;
	text-align: center;
	font-weight: bold;
	color:#fff;
	margin-bottom: 14px;
}

.ft_tel{
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	font-weight: bold;
	color:#fff;
	margin-bottom: 14px;
}

.ft_tel > span{
	font-size: 16px;
	padding-right: 6px;
}

.ft_ad{
	font-size: 16px;
	line-height: 22px;
	color:#fff;
	font-weight: bold;
	text-align: center;
}

.ft_enjoy{
	width:100%;
	position: absolute;
	bottom:0;
	left: 0;
}

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

.copy_r_wrap{
	background:#333333;
	padding:20px;
	color:#fff;
}

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

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

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

.copy_r > p{
	font-size: 14px;
	line-height: 20px;
}

.copy_r > p:last-of-type{
	font-family: brother-1816, sans-serif;
}

@media screen and (max-width:600px) {
	.copy_r{
		text-align: center;
	}
	
	.copy_r > p{
		width:100%;
	}
	
	.copy_r > p:first-of-type{
		margin-bottom: 6px;
	}
}

@media screen and (max-width:500px) {
	footer{
		margin-top: 50px;
	}
	
	.footer{
		height: 360px;
	}
	
	.ft_nav{
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
	
	.ft_nav > li{
		width:calc( 50% - 12px );
		margin:0 6px 12px;
	}
	
	.ft_nav > li > a{
		line-height: 28px;
	}
	
	.ft_logo{
		width:250px;
	}
	
	.ft_name{
		font-size: 18px;
	}
	
	.ft_tel{
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.ft_tel > span{
		font-size: 14px;
	}
	
	.ft_ad{
		font-size: 14px;
	}
}

.sp_ft_btn{
	width:100%;
	position: fixed;
	bottom:-50px;
	left: 0;
	display: none;
	z-index: 10;
	transition: .3s;
}

.sp_ft_btn > a{
	width:calc( 50% - 25px );
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	background:#f45517;
	border-right: 1px solid #fff;
}

.sp_ft_btn > a:last-of-type{
	border:0;
	width:50px;
}

.sp_ft_btn > a:last-of-type img{
	height: 22px;
}

@media screen and (max-width:700px) {
	body{
		padding-bottom:50px;
	}
	
	.sp_ft_btn{
		display: flex;
	}
}

.wrap1200{
	max-width: 1240px;
	padding:0 20px;
	margin:40px auto 0;
}

.heading1_2{
	position: relative;
	max-width: 1200px;
	padding:15px 10px 10px;
	background:#fff;
	margin:0 auto 90px;
	text-align: center;
}

.heading1_2 > p{
	position: relative;
	z-index: 2;
}

.heading1_2 > p:nth-of-type(1){
	font-size: 48px;
	line-height: 100%;
	font-weight: bold;
	font-family: brother-1816, sans-serif;
}

.heading1_2 > p:nth-of-type(2){
	font-size: 16px;
	line-height: 100%;
	font-weight: bold;
	color:#666666;
	margin-top: 5px;
}

.heading1_2 > div{
	width:100%;
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
}

.heading1_2 > div > img{
	display: block;
	margin:0 auto;
}

@media screen and (max-width:750px) {
	.heading1_2 > p:nth-of-type(1){
		font-size: 36px;
	}
	.heading1_2 > p:nth-of-type(2){
		font-size: 14px;
	}
}

.price_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
}

.price_box_h{
	width:100%;
	font-family: brother-1816, sans-serif;
	font-size: 16px;
	line-height: 22px;
	color:#fff;
	background:#000;
	padding:6px 15px;
	margin-bottom: 30px;
}

.price_tbl{
	width:330px;
}

.price_tbl > div:nth-of-type(1){
	margin-bottom: 45px;
}

.price_tbl_box h3{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}

.price_tbl_box h3 > p:nth-of-type(2){
	font-size: 14px;
	color:#f45517;
}

.price_car_list{
	width:calc( 100% - 380px );
	display: flex;
	flex-wrap: wrap;
}

.price_car_box{
	width:31%;
	margin-right: 3.5%;
	margin-bottom: 50px;
}

.price_car_list > li:nth-of-type(3n){
	margin-right: 0;
}

.price_car_box > a:first-of-type{
	display: block;
	margin-bottom: 15px;
	overflow: hidden;
}

.price_car_box > a:first-of-type img{
	width:100%;
	transition: .3s;
}

.price_car_box > a:first-of-type:hover img{
	transform: scale(1.1);
}

.price_car_h{
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 12px;
}

.price_car_box > a:last-of-type{
	width:100%;
	max-width:144px;
	display: block;
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	text-align: center;
	color:#fff;
	text-decoration: none;
	background:#f45517;
	border:1px solid #f45517;
	padding:7px;
	margin:0 auto;
}

.price_car_box > a:last-of-type:hover{
	background: #fff;
	color:#f45517;
}

@media screen and (max-width:1000px) {
	.price_tbl{
		width:250px;
	}
	
	.price_car_list{
		width:calc( 100% - 280px );
	}
}

@media screen and (max-width:800px) {
	.price_tbl{
		width:100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.price_tbl_box{
		width:48%;
	}
	
	.price_car_list{
		width:100%;
	}
}

@media screen and (max-width:550px) {
	.price_tbl{
		margin-bottom: 40px;
	}
	
	.price_tbl_box{
		width:100%;
	}
	
	.price_tbl > div:nth-of-type(1){
		margin-bottom: 25px;
	}
	
	.price_car_list{
		justify-content: space-between;
	}
	
	.price_car_box{
		width:48%;
		margin-right: 0 !important;
	}
}

.price_cancel{
	display: flex;
	flex-wrap: wrap;
	background:#fff;
	padding:30px;
	margin-bottom: 100px;
}

.price_cancel_h{
	width:100%;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.price_cancel_l{
	width:calc( 100% - 330px );
	max-width: 570px;
	padding-right: 30px;
}

.price_cancel_r{
	width: 330px;
}

.price_cancel_r h3{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
}

.price_cancel_r .tbl1 th{
	width:130px;
}

@media screen and (max-width:700px) {
	.price_cancel_l{
		width:100%;
		padding: 0;
		margin-bottom: 30px;
	}
}

@media screen and (max-width:400px) {
	.price_cancel{
		padding:30px 20px;
	}
}

.price_op{
	margin-bottom: 60px;
}

.heading2{
	width:100%;
	font-size: 16px;
	line-height: 32px;
	text-align: center;
	background: #000;
	color:#fff;
	font-family: brother-1816, sans-serif;
	margin-bottom: 30px;
}

.price_op > p{
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	color:#f45517;
	margin-bottom: 50px;
}

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

.price_op_box{
	width:31%;
	margin-right: 3.5%;
	margin-bottom: 60px;
}

.price_op_list > li:nth-of-type(3n){
	margin-right: 0;
}

.price_op_box img{
	display: block;
	width:100%;
	margin-bottom: 10px;
}

.price_op_h{
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

.price_op_price{
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
	color:#f45517;
}

@media screen and (max-width:700px) {
	.price_op_list{
		justify-content: space-between;
	}
	
	.price_op_box{
		width:48%;
		margin-right: 0;
	}
}

@media screen and (max-width:400px) {
	.price_op_h{
		font-size: 14px;
		line-height: 20px
	}
	
	.price_op_price{
		font-size: 14px;
		line-height: 20px
	}
}

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

.price_pay_l{
	width:410px;
}

.price_pay_r{
	width:calc( 100% - 410px );
}

.price_pay_r > p:nth-of-type(1){
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}

@media screen and (max-width:800px) {
	.price_pay{
		justify-content: space-between;
	}
	
	.price_pay > div{
		width:48%;
	}
}

@media screen and (max-width:500px) {
	.price_pay > div{
		width:100%;
	}
	
	.price_pay_l{
		margin-bottom: 20px;
	}
	
	.price_pay_l > img{
		display: block;
		margin:0 auto;
	}
	
	.price_pay_r > p:nth-of-type(1){
		text-align: center;
	}
}

.list_h{
	margin-bottom: 30px;
}

.list_p1{
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	font-weight: bold;
	color:#f45517;
	margin-bottom: 30px;
}

.list_link{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

.list_link_month{
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	padding:0 30px;
}

.list_link_btn{
	display: flex;
	align-items: center;
	width:90px;
	font-size: 14px;
	line-height: 100%;
	color:#000;
	text-decoration: none;
}

.list_link_btn:hover{
	color: #f45517;
}

.list_link_btn p{
	padding-top: 3px;
}

.list_link_btn span{
	font-size: 24px;
	line-height: 100%;
}

.list_link_prev{
	justify-content: flex-end;
}

.list_link_prev span{
	padding-left: 14px;
}

.list_link_next span{
	padding-right: 14px;
}

@media screen and (max-width:450px) {
	.list_p1{
		font-size: 14px;
		line-height: 22px;
	}
	
	.list_link_month{
		font-size: 18px;
		line-height: 24px;
		padding:0 10px;
	}
	
	.list_link_btn{
		width:80px;
		font-size: 12px;
	}
	
	.list_link_btn span{
		font-size: 18px;
	}
	
	.list_link_prev span{
		padding-left: 8px;
	}
	
	.list_link_next span{
		padding-right: 8px;
	}
}

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

.car_list_img{
	width:120px;
}

.car_list_img > li{
	height: 150px;
	border-bottom:2px solid #c9c6c6;
	padding-top: 25px;
}

.car_list_img > li:first-of-type{
	border-top:2px solid #c9c6c6;
}

.car_list_img > li > a{
	display: block;
	width:105px;
	color:#fff;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	overflow: hidden;
}

.car_list_img > li > a > div{
	width:100%;
	height: 80px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: .3s;
}

.car_list_img > li > a:hover > div{
	transform: scale(1.2);
}

.car_list_img > li > a > p{
	font-size: 10px;
	line-height: 20px;
	background:#f45517;
	position: relative;
}

.car_list_cal{
	width:calc( 100% - 120px );
	overflow: auto;
}

.car_list_cal > li{
	width:1080px;
	height: 150px;
	border-bottom:2px solid #c9c6c6;
	padding-top: 25px;
}

.car_list_cal > li:first-of-type{
	border-top:2px solid #c9c6c6;
}

.car_list_cal > li > h2{
	font-family: brother-1816, sans-serif;
	font-weight: bold;
	margin-bottom: 10px;
}

.car_list_cal > li > table{
	
}

.car_list_cal > li > table th{
	text-align: center;
	font-weight: bold;
}

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

.car_list_cal_tbl > li{
	text-align: center;
}

.car_list_cal_tbl > li > p{
	font-size: 16px;
	line-height: 100%;
	font-weight: bold;
}

.car_list_cal_tbl > li > p:first-of-type{
	margin-bottom: 10px;
}

.car_list_cal_tbl > .Sun > p:first-of-type{
	color:#ff0000;
}

.car_list_cal_tbl > .Sat > p:first-of-type{
	color:#0066cc;
}

.car_list_cal_tbl > li > .batsu{
	color:#ff0000;
}

.car_detail{
	margin: 70px 0 60px;
}

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

.car_img_main{
	width:50%;
}

.car_img_main_slide{
	width:100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.car_img_main_slide:before {
    content:"";
    display: block;
    padding-top: 75%; /* 高さを幅の75%に固定 */
}

.car_img_list{
	width:48%;
}

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

.car_img_main_thumb{
	width:19%;
	margin-bottom: 1.5%;
	background:#000;
	cursor: pointer;
}

.car_img_main_thumb_img{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.6;
}

.thumbnail-current .car_img_main_thumb_img{
	opacity: 1;
}

.car_img_main_thumb_img:before {
    content:"";
    display: block;
    padding-top: 75%; /* 高さを幅の75%に固定 */
}

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

.car_text1{
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 60px;
}

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

.car_spec_l{
	width:47%;
}

.car_spec_list > li{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 10px;
}

.car_spec_list > li > h3{
	width:110px;
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	color:#fff;
	font-weight: bold;
	background: #f45517;
}

.car_spec_list > li > p{
	width:calc( 100% - 140px );
	padding-top: 1px;
	font-weight: bold;
}

.car_spec_list1{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 10px;
	border-bottom: 1px solid #999;
	margin-bottom: 25px;
}

.car_spec_list1 > li{
	width:48%;
}

.car_spec_r{
	width:50%;
}

.car_trank{
	padding:15px 15px 40px;
	background:#fff;
}

.car_trank > h3{
	font-size: 16px;
	line-height: 42px;
	font-weight: bold;
	text-align: center;
	background:#eeeeee;
	margin-bottom: 20px;
}

.car_trank > p{
	margin-bottom: 20px;
}

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

.car_trank_img > div{
	width:48%;
	text-align: center;
}

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

@media screen and (max-width:1100px) {
	.car_spec_l{
		width:340px;
	}
	
	.car_spec_r{
		width: calc( 100% - 370px );
	}
	
	.car_spec_list1 > li{
		width:100%;
	}
}

@media screen and (max-width:750px) {
	.car_spec_l{
		width:100%;
		margin-bottom: 40px;
	}
	
	.car_spec_r{
		width:100%;
	}
	
	.car_spec_list1 > li{
		width:49%;
	}
}

@media screen and (max-width:600px) {
	.car_spec_list > li > h3{
		width:90px;
	}
	.car_spec_list > li > p{
		width:calc( 100% - 104px );
	}
}

@media screen and (max-width:500px) {
	.car_spec_list1 > li{
		width:100%;
	}
}

.car_detail .top_about1_text{
	text-align: center;
}

.car_price{
	margin-bottom: 70px;
}

.car_price .price_tbl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 770px;
	margin:0 auto 60px;
}

.car_price .price_tbl .price_tbl_box{
	width:48%;
	max-width: 330px;
}

@media screen and (max-width:550px) {
	.car_price .price_tbl{
		justify-content: center;
	}
	
	.car_price .price_tbl .price_tbl_box{
		width:100%;
	}
	
	.car_price .price_tbl .price_tbl > div:nth-of-type(1){
		margin-bottom: 25px;
	}
}

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

.car_price2_box{
	width:48%;
	background:#fff;
	padding:30px;
}

.car_price2_box > h3{
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

.car_price2_box > p{
	margin-bottom: 10px;
}

.car_price2_tbl{
	margin-top: 20px;
}

.car_price2_tbl > h4{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

.car_price2_tbl .tbl1{
	max-width: 330px;
}

.car_price2_tbl .tbl1 th{
	width:130px;
}

.car_price2_tbl a{
	display: table;
	padding-right: 26px;
	font-size: 14px;
	line-height: 20px;
	color:#000;
	text-decoration: underline;
	font-weight: bold;
	background: url("images/ar1.png") no-repeat center right;
}

.car_price2_tbl a:hover{
	color:#f45517;
	text-decoration: none;
}

@media screen and (max-width:700px) {
	.car_price2_box{
		width:100%;
		padding:30px 20px;
	}
	
	.car_price2 .car_price2_box:nth-of-type(1){
		margin-bottom: 40px;
	}
}

.car_cal{
	margin-bottom: 70px;
}

.car_cal > p{
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	color:#f45517;
	margin-bottom: 60px;
}

.car_cal_list_wrap{
	position: relative;
	padding:0 100px;
	margin-bottom: 50px;
}

.car_cal_list{
	max-width: 950px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin:0 auto;
}

.car_cal_box{
	width:48%;
	max-width: 440px;
	margin-bottom: 60px;
}

.car_cal_list .car_cal_box:nth-of-type(3) , .car_cal_list .car_cal_box:nth-of-type(4){
	margin-bottom: 0;
}

.car_cal_box > h3{
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.car_cal_box table{
	width:100%;
	border-collapse: separate;
	border-spacing: 3px;
}

.car_cal_box table th{
	height: 40px;
	text-align: center;
	background: #eee;
	font-size: 16px;
	line-height: 100%;
	font-weight: bold;
}

.car_cal_box table td{
	height: 50px;
	text-align: center;
	background:#fff;
	font-size: 16px;
	line-height: 100%;
	font-weight: bold;
}

.car_cal_box table .Sun{
	background:#f4e1e1;
	color:#f00;
}

.car_cal_box table .Sat{
	background:#d2e8f7;
	color:#0066cc;
}

.car_cal_box table td > p:nth-of-type(2){
	font-size: 18px;
	margin-top: 6px;
}

.car_cal_box table td > .batsu{
	color:#ff0000;
}

.car_cal_prev{
	width:50px;
	height: 100%;
	position: absolute;
	top:0;
	bottom:0;
	left: 0;
	background:#f45517;
	display: flex;
	justify-content: center;
	align-items: center;
}

.car_cal_next{
	width:50px;
	height: 100%;
	position: absolute;
	top:0;
	bottom:0;
	right: 0;
	background:#f45517;
	display: flex;
	justify-content: center;
	align-items: center;
}

.car_cal_prev:hover img{
	animation: car_cal_prev 1s linear infinite;
}

.car_cal_next:hover img{
	animation: car_cal_next 1s linear infinite;
}

@keyframes car_cal_prev{
  0% {
	  transform: translateX(0);
  }

  25% {
	  transform: translateX(-5px);
  }

  50% {
	  transform: translateX(0px);
  }

  75% {
	  transform: translateX(2px);
  }

  100% {
	  transform: translateX(0);
  }
}

@keyframes car_cal_next{
  0% {
	  transform: translateX(0);
  }

  25% {
	  transform: translateX(5px);
  }

  50% {
	  transform: translateX(0px);
  }

  75% {
	  transform: translateX(-2px);
  }

  100% {
	  transform: translateX(0);
  }
}

@media screen and (max-width:950px) {
	.car_cal_list_wrap{
		padding:0 70px;
	}
	
	.car_cal_prev{
		width:36px;
	}
	
	.car_cal_next{
		width:36px;
	}
	
	.car_cal_prev img{
		width:12px;
	}
	
	.car_cal_next img{
		width:12px;
	}
}

@media screen and (max-width:700px) {
	.car_cal_list{
		justify-content: center;
	}
	
	.car_cal_box{
		width:100%;
	}
	
	.car_cal_list .car_cal_box:nth-of-type(2){
		margin-bottom: 0;
	}
	
	.car_cal_list .car_cal_box:nth-of-type(3) , .car_cal_list .car_cal_box:nth-of-type(4){
		display: none;
	}
}

@media screen and (max-width:450px) {
	.car_cal_list_wrap{
		padding:0 20px;
	}
	
	.car_cal_box{
		margin-bottom: 40px;
	}
	
	.car_cal_box > h3{
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 20px;
	}
	
	.car_cal_box table th{
		font-size: 14px;
	}
	
	.car_cal_box table td{
		font-size: 14px;
	}
	
	.car_cal_box table td > p:nth-of-type(2){
		font-size: 16px;
	}
	
	.car_cal_prev{
		width:30px;
		height: 80px;
		bottom:0;
		top:50%;
		left:-20px;
		margin-top: -40px;
	}
	
	.car_cal_next{
		width:30px;
		height: 80px;
		bottom:0;
		top:50%;
		right:-20px;
		margin-top: -40px;
	}
	
	.car_cal_prev img{
		display:block;
		width:8px;
	}
	
	.car_cal_next img{
		display:block;
		width:8px;
	}
}

.car_cal_tire{
	background:#fff;
	max-width: 950px;
	margin:0 auto;
	padding:20px 30px 30px;
}

.car_cal_tire > h3{
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	margin-bottom: 12px;
}

.car_res{
	max-width: 1040px;
	margin:0 auto;
	padding-bottom: 70px;
}

.car_res_h{
	font-size: 30px;
	line-height: 36px;
	font-weight: bold;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
}

.car_res_tel{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 40px;
}

.car_res_tel > p{
	padding:0 20px;
}

.car_res_tel > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
}

.car_res_tel > div > p:nth-of-type(1){
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	padding-right: 6px;
}

.car_res_tel > div > p:nth-of-type(2){
	padding:0 20px;
}

.car_res_tel > div > a{
	color:#000;
	text-decoration: none;
	font-size: 32px;
	line-height: 36px;
	font-weight: bold;
	font-family: brother-1816, sans-serif;
}

.car_res_tel > div > a:hover{
	color:#f45517;
}

@media screen and (max-width:450px) {
	.car_res_h{
		font-size: 22px;
		line-height: 28px;
	}
	
	.car_res_tel > div > a{
		font-size: 26px;
		line-height: 30px;
	}
	
	.car_res_tel > div > p:nth-of-type(2){
		width:100%;
		text-align: center;
	}
}

.car_res .top_about1_text{
	width:100%;
	text-align: center;
	margin-bottom: 25px;
}

.car_res_text1{
	font-size: 16px;
	text-align: center;
	margin-bottom: 25px;
}

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

.car_res_pdf > a{
	width:48%;
	max-width: 470px;
	height: 70px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 22px;
	color:#000;
	text-decoration: none;
	font-weight: bold;
	border:2px solid #fff;
	margin-bottom: 12px;
}

.car_res_pdf > a:hover{
	border:2px solid #f45517;
}

.car_res_pdf > a > p{
	margin-right: 24px;
}

@media screen and (max-width:500px) {
	.car_res_pdf > a{
		width:100%;
		height: 50px;
		font-size: 14px;
	}
	
	.car_res_pdf > a > p{
		margin-right: 14px;
	}
	
	.car_res_pdf > a > div{
		width:24px;
	}
}

.car_res_foreigners{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 45px;
}

.car_res_foreigners > a{
	color:#000;
	text-decoration: underline;
	margin:0 4px;
}

.car_res_foreigners > a:hover{
	color:#f45517;
	text-decoration: none;
}

.car_res_form{
}

.car_res_form table{
	width:100%;
}

.car_res_form table th{
	width:260px;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	padding:12px 30px;
	background: #eee;
	border-bottom: 10px solid #f8f8f0;
	border-right: 10px solid #f8f8f0;
}

.car_res_form table .vt{
	vertical-align: top;
}

.car_res_form table td{
	padding:12px 30px;
	background: #fff;
	border-bottom: 10px solid #f8f8f0;
}

.car_res_form table td input[type="date"]{
	display: inline-block;
	width:150px;
	height: 24px;
	border:1px solid #999;
	padding-left: 6px;
	position: relative;
}

.car_res_form table td input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
	opacity: 0;
}

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

.form_date select{
	display: inline-block;
	width:50px;
	height: 24px;
	border:1px solid #999;
	margin-left: 12px;
	margin-right: 6px;
	text-align: center;
}

.form_access{
	margin-top: 15px;
}

.form_access > li{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.form_access > li > label{
	position: relative;
	padding-left: 36px;
}

.form_access > li > label > input{
	position: absolute;
	top:2px;
	left: 0;
	margin:0;
	width:20px;
	height: 20px;
	display: block;
}

.form_access > li > div{
	width:calc( 100% - 190px );
}

.form_acces_time{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_acces_time > p:first-of-type{
	margin-right: 5px;
}

.form_acces_time > div{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form_acces_time select{
	display: inline-block;
	width:50px;
	height: 24px;
	border:1px solid #999;
	margin: 0 6px;
	text-align: center;
}

.form_price{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
}

.form_price_subtotal{
	font-size: 14px;
	line-height: 30px;
	padding-right: 30px;
}

.form_price_total{
	font-size: 24px;
	line-height: 40px;
	color:#f45517;
}

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

.form_opt > p{
	width:100%;
	margin-bottom: 15px;
}

.form_opt > label{
	width:100%;
	position: relative;
	padding-left: 36px;
	margin-right: 30px;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.form_opt > label > input[type="checkbox"]{
	position: absolute;
	top:2px;
	left: 0;
	margin:0;
	width:20px;
	height: 20px;
	display: block;
}

.form_opt > label > p{
	margin-right: 6px;
}

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

.form_opt_kazu input{
	display: block;
	width:50px;
	height: 24px;
	padding:5px;
	margin-right: 6px;
}

.form_h{
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	margin: 70px 0 30px;
}

.form_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.car_res_form table td input[type="text"]{
	display: inline-block;
	width:100%;
	max-width:230px;
	height: 30px;
	border:1px solid #999;
	padding-left: 6px;
	position: relative;
}

.form_flex > input{
	margin-right: 20px;
}

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

.form_ninzu select{
	display: inline-block;
	width:50px;
	height: 30px;
	border:1px solid #999;
	text-align: center;
	position: relative;
}

.form_ninzu p{
	margin-left: 20px;
	margin-right: 5px;
}

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

.form_birth select{
	display: inline-block;
	width:50px;
	height: 30px;
	border:1px solid #999;
	text-align: center;
	position: relative;
}

.form_birth select:first-of-type{
	width:100px
}

.form_birth p{
	margin-left: 5px;
	margin-right: 12px;
}

.car_res_form table .zip input[type="text"]{
	width:120px;
}

.car_res_form table .address input[type="text"]{
	max-width:500px;
}

.car_res_form table td textarea{
	display: block;
	margin-top: 12px;
	width:100%;
	max-width:500px;
	height: 150px;
	border:1px solid #999;
	padding: 6px;
	position: relative;
}

.form_need{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background:#fff;
	padding:10px;
	margin:60px 0;
}

.form_need_h{
	width:210px;
	height: 100px;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
}

.form_need > ul{
	width:calc( 100% - 210px );
	max-width: 740px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-left: 30px;
}

.form_need > ul > li{
	width:48%;
	max-width: 350px;
	padding-left: 20px;
	position: relative;
}

.form_need > ul > li > span{
	position: absolute;
	top:0;
	left: 0;
}

.form_need > ul > li > p{
	font-size: 14px;
	line-height: 20px;
}

.form_need > ul > li > p:first-of-type{
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 4px;
}

@media screen and (max-width:720px) {
	.form_need{
		padding-bottom: 20px;
	}
	
	.form_need_h{
		width:100%;
		height: 50px;
		margin-bottom: 20px;
	}
	
	.form_need > ul{
		padding-left: 0;
		width:100%;
	}
}

@media screen and (max-width:500px) {
	.form_need > ul > li{
		width:100%;
		max-width: 100%;
	}
	
	.form_need > ul > li:first-of-type{
		margin-bottom: 20px;
	}
}

.car_form_doui{
	display: flex;
	justify-content: center;
	align-items: center;
}

.car_form_doui > label{
	position: relative;
	padding-left: 36px;
	margin-right: 30px;
	margin-bottom: 10px;
}


.car_form_doui > label input{
	position: absolute;
	top: 2px;
	left: 0;
	margin: 0;
	width: 20px;
	height: 20px;
	display: block;
}

.form_btn .submit{
	width:100%;
	max-width:340px;
	display:table;
	margin:0 auto;
	border:1px solid #f45517;
	padding:20px 0;
	font-size:24px;
	color:#fff;
	background:#f45517;
	transition:.2s;
	line-height:100%;
	cursor:pointer;
	text-align:center;
	font-weight: bold;
	-webkit-appearance: none;
}

.form_btn .submit:hover{
	background:#fff;
	color:#f45517;
}

@media screen and (max-width:750px) {
	.car_res_form table th{
		display: block;
		width:100%;
		border-right: 0;
		padding:15px;
	}
	
	.car_res_form table td{
		display: block;
		width:100%;
		padding:15px;
	}
}

@media screen and (max-width:500px) {
	.car_res_form table td input[type="date"]{
		width:120px;
	}
	
	.form_access > li > div{
		width:100%;
		padding-left: 36px;
	}
	
	.form_birth select{
		width:40px;
	}
	
	.form_birth select:first-of-type{
		width:70px
	}
	
	.form_h{
		margin-top: 40px;
	}
	
	.form_need{
		margin:40px 0;
	}
	
	.form_btn .submit{
		max-width: 240px;
		padding:15px;
		font-size: 18px;
	}
}

.shop_slider_wrap{
	margin-bottom: 50px;
}

.shop_slider{
	height: 500px;
	margin-bottom: 0;
}

.shop_slide{
	height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.shop_slider .slick-dots{
	bottom:20px;
}

.shop_slider .slick-dots li{
	margin: 0 2px;
}

.shop_slider .slick-dots li button::before {
	font-size: 16px;
	opacity: 1;
	color:#fff;
}

.shop_slider .slick-dots li button::before {
	font-size: 15px;
	opacity: 1;
	color:#fff;
}

.shop_slider .slick-dots li.slick-active button:before{
	color:#000;
}

.shop_location{
	margin-bottom: 70px;
}

.shop_location .top_about_info1{
	align-items: flex-start;
}

.shop_location .top_about_info1_l{
	width:54%;
}

.shop_location .top_about_info1_l > div:nth-of-type(2){
	width:100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 30px;
	line-height: 36px;
	font-weight: bold;
	margin-top: 20px;
}

.shop_location .top_about_info1_l > div:nth-of-type(2) > p:nth-of-type(2){
	font-size: 18px;
	line-height: 24px;
}

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

.shop_map_btn{
	width:170px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:5px 4px;
	padding-right:5px;
	font-size: 12px;
	line-height: 16px;
	color:#000;
	text-decoration: none;
	background:#fff;
	border:1px solid #ccc;
	text-align: left;
}

.shop_map_btn:hover{
	border:1px solid #f45517;
}

.shop_map_btn > div:nth-of-type(1){
	width:29px;
	height: 29px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shop_map_btn > div:nth-of-type(2){
	width:calc( 100% - 34px );
}

@media screen and (max-width:1200px) {
	.shop_location .top_about_info1_l{
		width:100%;
	}
	
	.shop_location .top_about_info1_l > div:nth-of-type(2){
		justify-content: center;
	}
	
	.shop_map_list{
		justify-content: center;
	}
	
	.shop_map_list .shop_map_btn{
		margin: 10px 10px 0;
	}
}

@media screen and (max-width:600px) {
	.shop_location .top_about_info1_l > div:nth-of-type(2){
		font-size: 24px;
		line-height: 30px;
	}
	
	.shop_location .top_about_info1_l > div:nth-of-type(2) > p:nth-of-type(2){
		font-size: 14px;
		line-height: 24px;
	}
}

.heading3{
	max-width: 500px;
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #000;
	margin:0 auto 50px;
	padding:0 20px 10px;
}

.heading3 span{
	display: inline-block;
}

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

.shop_loc_time_l{
	width:50%;
}

.shop_loc_time_r{
	width:47%;
}

.shop_loc_time_r > ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.shop_loc_time_r > ul > li{
	width:48.5%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
	font-weight: bold;
}

.shop_loc_time_r > ul > li > h4{
	width:calc( 100% - 120px );
	min-height: 32px;
	background:#000;
	color:#fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:5px;
	font-weight: bold;
}

.shop_loc_time_r > ul > li > h4 span{
	display: inline-block;
}

.shop_loc_time_r > ul > li > p{
	padding-left: 15px;
}

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

@media screen and (max-width:950px) {
	.shop_loc_time_l{
		width:100%;
		margin-bottom: 40px;
	}
	
	.shop_loc_time_l img{
		display: block;
		width:100%;
		max-width: 487px;
		margin:0 auto;
	}
	
	.shop_loc_time_r{
		width:100%;
		max-width: 540px;
		margin:0 auto;
	}
}

@media screen and (max-width:500px) {
	.shop_loc_time_r > ul{
		max-width: 260px;
		margin:0 auto;
	}
	
	.shop_loc_time_r > ul > li{
		width:100%;
	}
}

.shop_access{
	margin-bottom: 80px;
}

.shop_access_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background:#fff;
	padding:30px 0;
	font-weight: bold;
	margin-bottom: 30px;
}

.shop_access_text{
	width:50%;
	display: flex;
	flex-wrap: wrap;
}

.shop_access_text > h3{
	width:50%;
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-right: 1px solid #ccc;
	font-weight: bold;
}

.shop_access_text > h3 > div > img{
	display: block;
	margin: 0 auto 25px;
}

.shop_access_h1{
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
}

.shop_access_h2{
}

.shop_access_h3{
	width:80px;
	line-height: 34px;
	color:#fff;
	background:#f45517;
	margin:10px auto 0;
}

.shop_access_h4{
	width:80px;
	line-height: 34px;
	color:#fff;
	background:#0b1955;
	margin:10px auto 0;
}

.shop_access_text > div{
	width:50%;
	padding-left: 20px;
	padding-top: 6px;
}

.shop_access_text > div > p{
	margin-bottom: 20px;
}

.shop_access_text > div > p:last-of-type{
	margin-bottom: 0;
}

.shop_access_img{
	width:50%;
	padding: 6px 50px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.shop_access_img_box{
	width:48%;
	max-width: 230px;
	text-align: center;
}

.shop_access_img_box > p{
	margin-top: 10px;
	font-weight: bold;
}

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

.shop_access_map_box .shop_map_btn{
	margin-bottom: 10px
}

@media screen and (max-width:950px) {
	.shop_access_text{
		width:100%;
		margin-bottom: 50px;
	}
	
	.shop_access_text > div{
		padding-right: 30px;
	}
	
	.shop_access_img{
		width:100%;
		max-width: 560px;
		margin:0 auto;
		padding:0 30px;
	}
	
	.shop_access_map{
		justify-content: space-around;
	}
}

@media screen and (max-width:550px) {
	.shop_access_box{
		padding:40px 20px;
	}
	
	.shop_access_text{
		margin-bottom: 30px;
	}
	
	.shop_access_text > h3{
		width:100%;
		min-height: 0;
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-right: 0;
		border-bottom: 1px solid #ccc;
	}
	
	.shop_access_text > div{
		width:100%;
		padding:0;
	}
	
	.shop_access_img{
		padding:0;
	}
	
	.shop_access_map_box{
		width:100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 30px;
	}
	
	.shop_access_map_box .shop_map_btn{
		margin:0 10px 10px;
	}
}

@media screen and (max-width:450px) {
	.shop_access_img{
		justify-content: center;
	}
	
	.shop_access_img_box{
		width:100%;
		margin-bottom: 20px;
	}
	
	.shop_access_map .shop_access_img_box{
		margin-bottom: 0;
	}
}

.shop_about h2{
	margin-bottom: 60px;
}

.shop_about .top_about2{
	margin-bottom: 30px;
}

@media screen and (max-width:850px) {
	.shop_about .top_about2 > li:nth-of-type(3){
		margin:0 0 50px;
	}
}

.shop_about_kkryk > h3{
	margin-bottom: 20px;
}

.shop_about_kkryk > p{
	text-align: center;
	margin-bottom: 50px;
}


/*コンタクトフォーム*/
.con_box{
	max-width:730px;
	margin:60px auto 0;
}

.con_box > p{
	font-size:14px;
	line-height:24px;
	text-align: center;
}

.con_box dl, .con_box dl dt, .con_box dl dd {
	margin: 0;
	padding: 0;
}

.con_box dl {
	background: #eee;
	width: 100%;
	margin-top:40px;
	border:1px solid #ccc;
	border-top:0;
}

.con_box dl dt, .con_box dl dd {
	padding: 3px;
}

.con_box dl dt {
	clear: left;
	float: left;
	width: 210px;
	padding:20px 10px;
	font-size:14px;
	line-height:100%;
	font-weight:bold;
	border-top: 1px solid #ccc;
	border-bottom:0;
	color:#000;
}

.con_box dl dd {
	background: #fff;
	border-top: 1px solid #ccc;
	margin-left: 210px;
	min-height:55px;
	padding:8px 10px;
	position:relative;
	font-size:14px;
	text-align:left;
	line-height:100%;
	border-left: 1px solid #ccc;
}

.con_box dl .must{
	background:url(images/must.jpg) no-repeat 98% 12px #fff;
}

.con_box dl dd input[type="text"] {
	height:36px;
	width:calc( 100% - 66px );
	border:1px solid #999;
	font-size:14px;
	padding:0 6px;
	background:#fff;
}

.con_box dl dd textarea {
	height:150px;
	width:calc( 100% - 66px );
	border:1px solid #999;
}

.con_box dl dd .w45{
	width:45% !important;
}

@media screen and (max-width:730px) {
	.con_box dl dt {
		clear: left;
		float: none;
		width: 100%;
		padding:20px 10px;
		font-size:14px;
		line-height:100%;
		font-weight:bold;
		border-top: 1px solid #ccc;
	}

	.con_box dl dd {
		margin-left: 0;
		min-height:auto;
		padding:14px 10px;
		border-left:0;
	}
	
	.con_box dl dd .w45{
		width:calc( 100% - 66px ) !important;
	}
	
	.con_box dl dd:first-of-type {
		border-top:1px solid #ccc;
	}
	
	.con_box dl .must{
		background:url(images/must.jpg) no-repeat 98% 18px #fff;
	}
}

.con_box .submit{
	width:250px;
	display:table;
	margin:0 auto;
	border:1px solid #f45517;
	padding:20px 0;
	font-size:22px;
	color:#fff;
	background:#f45517;
	transition:.2s;
	margin-top:30px;
	line-height:100%;
	cursor:pointer;
	text-align:center;
	-webkit-appearance: none;
}

.con_box .submit:hover{
	background:#fff;
	color:#f45517;
}

.con_box .back{
	width:150px;
	display:table;
	margin:0 auto;
	border:1px solid #999;
	padding:15px 0;
	font-size:22px;
	color:#fff;
	background:#999;
	transition:.2s;
	line-height:100%;
	cursor:pointer;
	text-align:center;
	margin-top:20px;
	-webkit-appearance: none;
}

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

.con_box .error{
	display: block;
	color:#fff !important;
	padding: 0 10px;
	background:#f33 !important;
	font-size:14px;
	line-height:20px;
	margin-top:6px;
}

.con_box .doui{
	display: table;
	margin:40px auto 0;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}
/*コンタクトフォームここまで*/


/* move */

.top_slide_text_box{
	transition: .4s;
	transform: scaleX(0);
	transform-origin: left;
}

.top_slide_text_box > p{
	transition: .4s;
	transition-delay: .4s;
	opacity: 0;
}

.top_slide_text_box_small{
	transition: .4s;
	transform: scaleX(0);
	transform-origin: left;
}

.top_slide_text_box_small > p{
	transition: .4s;
	transition-delay: .4s;
	opacity: 0;
}

.top_slide_text_box_opan{
	transform: scaleX(1);
}

.top_slide_text_box_opan > p{
	opacity: 1;
}

/* move end */




















