@charset "UTF-8";
@import url(reset.css);


/* ----------------------------------------------------

　  共通スタイル

----------------------------------------------------- */
body{
	color:#444;
	font: size 105%;
	font-family: 'M PLUS 1p', sans-serif;
	letter-spacing: 0.15em;
	background-color:#fff;
	padding:0 0 0 0;
	-webkit-text-size-adjust:100%;/*chromeフォントサイズバグ*/
	text-size-adjust:100%;
	}
#wrap{
	height:100%;width:auto;
	max-height:999999px;/*　android chrome　バグ対策　*/
	overflow:hidden;
	min-width:100%;/*スマホ横画面表示切れ対策*/
	min-height:100%;
	word-break:break-all;
	}

/* ----------------------------------------------------

　  個別クラス設定

----------------------------------------------------- */
.alignC{text-align: center;}
.alignR{text-align: right;}
.alignL{text-align: left;}
.marginT0{margin-top:0 !important;}
.marginT{margin-top:20px;}
.marginT50{margin-top:50px;}
.fontL{	font-size:1.5rem;}
.red{color:#f00;}
.floatL{float:left;}

/* ----------------------------------------------------

　  PC・スマホ表示切替

----------------------------------------------------- */
/***********479px以下　表示・非表示***********/
.pc-on{display:block;}
.m-on{display:none;}
	@media screen and (max-width:1000px){
		span.m-br{display:block;}
		.pc-on{display:none;}
		.m-on{display:block;}
	}

/* ----------------------------------------------------

　  見出し

----------------------------------------------------- */
/***********デザイン１***********/
.h01 {
	padding-bottom: .5em;
	border-bottom: 1px solid #000;
	font-size:1.8em;
	margin-bottom:1em;
	line-height:1.2em;	}
.h01 span {
	display: block;
	color: #888;
	font-size: .5em;
	padding-bottom: .3em;
	}
/***********デザイン２***********/
.h02 {
	position: relative;
	padding: 0 .5em .5em 2em;
	margin-top:2.5em;
	margin-bottom: .5em;
	border-bottom: 1px dashed #1788aa;
	font-size:1.2em;
	color:#0f2444;
	}
.h02::before,
.h02::after {
	position: absolute;
	content: '';
	border-radius: 100%
	}
.h02::before {
	top: .2em;
	left: .2em;
	width: 18px;
	height: 18px;
	background-color: #0f2444;
	}
.h02::after {
	top: .7em;
	left: .7em;
	width: 13px;
	height: 13px;
	background-color: rgba(66, 154, 181, 0.9);
	z-index: 2;
	}
/***********デザイン３***********/
.h03{
	position: relative;
	color: #0f2444;
	font-size: 20px;
	padding: 15px 0　30px 0;
	text-align: center;
	margin: 1.5em 0 3em 0;
	}
  .h03:before {
	content: "";
	position: absolute;
	top: -25px;
	left: 50%;
	width: 150px;
	height: 70px;
	border-radius: 50%;
	border: 4px solid rgba(66, 154, 181, 0.9);
	border-left-color: transparent;
	border-right-color: transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	}

/* ----------------------------------------------------

　  ボタン

----------------------------------------------------- */
div.button{
	text-align:center;
	}
div.button .arrow_btn {
	display: inline-block;
	position:relative;
	bottom:0px;
	min-width:50%;
	max-width:100%;
	margin-top:20px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	background: #1788aa;
	color:#fff;
	border:3px solid  #fff;
	transition: transform ease .3s;
	}
div.button .arrow_btn:hover {
	background: #ffbb33;
	color:#212121;
	cursor: pointer;
	text-decoration: none;
	transition:0.3s;
	}
	@media screen and (max-width:600px){
		div.button .arrow_btn {
			width:100%;
			}
		}		
	@media screen and (max-width:600px){
		div.button .arrow_btn {
			width:100%;
			}
		}

/* ----------------------------------------------------

 * parallax

----------------------------------------------------- */
.sa {
	opacity: 0;
	transition: all .5s ease;	}
.sa.show {
	opacity: 1;
	transform: none;	}
.sa--lr {
	transform: translate(-100px, 0);}
.sa--rl {
	transform: translate(100px, 0);}
.sa--up {
	transform: translate(0, 100px);}
.sa--down {
	transform: translate(0, -100px);}
.sa--scaleUp {
	transform: scale(.5);}
.sa--scaleDown {
  transform: scale(1.5);}
.sa--rotateL {
	transform: rotate(180deg);}
.sa--rotateR {
	transform: rotate(-180deg);}

/* ----------------------------------------------------

　  FLEX

----------------------------------------------------- */
/*Flex親*/
.flex_parent{
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	box-sizing:border-box;
	}
.flex_parent img{
	max-width:100%;
	}

/*Flex子*/
.flex20{flex-basis: 20%;padding:0 10px;}
.flex25{flex-basis: 25%;padding:0 10px;
		display: flex; /* 高さ揃えるため */
		flex-direction: column;/* 高さ揃えるため */}
.flex30{flex-basis: 30%;padding:0 10px;}
.flex40{flex-basis: 40%;padding:0 10px;}
.flex50{flex-basis: 50%;padding:0 10px;}
.flex60{flex-basis: 60%;padding:0 10px;}
.flex70{flex-basis: 70%;padding:0 10px;}
.flex80{flex-basis: 80%;padding:0 10px;}
.flex-car40{flex-basis: 40%;padding:0 10px;order:2;}
.flex-car60{flex-basis: 60%;padding:0 10px;order:1;}
	@media screen and (max-width:1400px){
		.flex-car40{flex-basis: 100%;}
		.flex-car60{flex-basis: 100%;}
	}
	@media screen and (max-width:1200px){
		.flex-car40{flex-basis: 100%;}
		.flex-car60{flex-basis: 100%;}
		.flex50{flex-basis: 100%}
	}
	@media screen and (max-width:1000px){
		.flex20{flex-basis: 100%;text-align: center;}
		.flex20 img{max-width:300px;}
		.flex30{flex-basis: 100%;}
		.flex40{flex-basis: 100%;}
		.flex60{flex-basis: 100%;}
		.flex70{flex-basis: 100%;}
		.flex80{flex-basis: 100%;}
		.flex01{order:1;}
		.flex02{order:2;margin-top:20px;}
		}
	@media screen and (max-width:700px){
		.flex25{flex-basis: 50%;}
		}

/* ----------------------------------------------------

　  HEADER

----------------------------------------------------- */
header {
	height: 80px;
	padding: 10px 4% 10px;
	position: fixed;
	z-index:1000;
	top: 0;
	width: 100%;
	background-color: #0f2444;
	background-image:url(../images/bg-texture02.png);
	display: flex;
	align-items: center;
	letter-spacing:0.1em;
	}
header h1 img{
	max-width:300px;
	}
header a {	
	text-decoration: none;
	color: #fff;
	}

/* ----------------------------------------------------
　  NAV
----------------------------------------------------- */
nav {
	margin: 0 0 0 auto;
	padding-top:10px;
	}
nav ul {
	list-style: none;
	margin: 0;
	display: flex;
	}
nav li {
	margin: 0 0 0 30px;
	font-size: 1rem;
	font-weight: 600;
	text-align:center;
	line-height:1.3em;
	}
nav li span{
	display:block;
	font-size:70%;
	font-weight: normal;
	}
nav li a:hover{
	color:#ffbb33;
	transition : all 0.5s ease 0s;
	}
nav a.current span{
	border-bottom:2px solid #ffbb33;
	}
.sp-nav {
	display: none;
	}
@media screen and (max-width: 1300px) {
	.pc-nav {
		display: none;
		}
	.sp-nav {
		z-index: 1;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: block;
		width: 100%;
		background: rgba(0, 0, 0, .8);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .2s ease-in-out;
		}
	#hamburger {
		position: relative;
		display: block;
		width: 30px;
		height: 25px;
		margin: 0 0 0 auto;
		}
	#hamburger span {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transform: translateY(-50%);
		}
	#hamburger::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
		}
	#hamburger::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 70%;
		height: 2px;
		background-color: #fff;
		}
/*スマホメニュー*/
	.sp-nav ul {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		}
	.sp-nav li {
		margin: 0;
		padding: 0;
		font-size: 20px;
		letter-spacing: 0.3em;
		}
	.sp-nav li span {
		font-size: 15px;
		}
	.sp-nav li a{
		display: block;
		padding: 20px 0;/*リスト間の間隔調整する！！*/
		}
	.sp-nav li span{
		display:inline-block;
		font-size:80%;
		margin-left:1em;
		}

	/*-閉じるアイコンー*/
	.sp-nav .close {
		position: relative;
		padding-left: 20px;
		}
	.sp-nav .close::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( 45deg );
		}
	.sp-nav .close::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( -45deg );
	}
	.toggle {
		transform: translateY( 0 );
		opacity: 1;
		}
	.main-visual {
		padding: 0 4%;
		}
	}
@media screen and (max-width: 600px) {
	.sp-nav li {
		font-size: 20px;
		letter-spacing: 0.1em;
		 }
	 .sp-nav li span {
		font-size: 15px;
		 }
	 .sp-nav li a{
		padding: 12px 0;/*リスト間の間隔調整する！！*/
		 }  
	}

/* ----------------------------------------------------

　   パンくずリスト

----------------------------------------------------- */
#breadcrumb{
	padding:10px 5%;
	overflow: hidden ;
	color:#fff;
	background-color: #76a7b9;
	background-image:url(../images/bg-texture02.png);
	}
#breadcrumb li {
	float:left ;
	font-style:italic;
	font-size:90%;
	}
#breadcrumb li a{
	text-decoration:none;
	}
#breadcrumb li a:hover{
	text-decoration:underline;
	}
#breadcrumb li:after {
	content: ">" ;
	padding: 0 8px ;
	}
#breadcrumb li:last-child:after {
	content: none ;
	}
@media screen and (max-width:480px){
	#breadcrumb{
		font-size:75%;
		}
	}

/* ----------------------------------------------------

　  トップへ戻る

----------------------------------------------------- */
.go-top{
	display:-inline-block;
	position:fixed;
	right:0px;
	bottom:50px;
	z-index: 10;
	font-size:30px;
	color:#fff;
	padding:10px 5px 5px 10px;
	background-color: rgba(0,0,0,1);
	border:2px solid #fff;
	}
.go-top:hover{
transition:1s;
opacity:0.7;
}
@media screen and (max-width: 834px) {
	.go-top{
		bottom:30px;
		}
	}

/* ----------------------------------------------------

　  FOOTER

----------------------------------------------------- */
footer{
	position:relative;
	padding:20px 5% 0px 5%;
	color:#fff;
	background-color: #0f2444;
	background-image:url(../images/bg-texture02.png);
	overflow:hidden;
	}
footer a:hover{
	color:#ffbb33;
	transition:0.3s;
	}
.f-logo{
	text-align: center;
	}	
.f-logo img{
	width:400px;
	max-width:95%;
	margin-top:20px;
}
.flex-f{flex-basis: 33%;padding:0 10px;
	margin-bottom:20px;
	display: flex; /* 高さ揃えるため */
	flex-direction: column;/* 高さ揃えるため */
	border-right:1px solid #fff;
	text-align: center;
	background: #080a37;
	padding:20px 5px;
	}
.flex-f:last-child{
	border-right:none;
	}
.flex-f i{
	font-size:1.5em;
	padding-bottom:10px;
	}
@media screen and (max-width:1000px){
	footer .flex40,
	footer .flex60{
		flex-basis: 100%;padding:0 10px;
		}
	.f-logo{
		padding-bottom:10px;
		}
	}
 
/*COPYRIGHT*/
#copyright{
	color:#fff;
	background: #000000;
	text-align:center;
	padding:5px 0;
	}
#copyright p.copy{
	font-size:80%;
	}


/* ----------------------------------------------------

　  #MAIN CONTENTS共通設定

----------------------------------------------------- */
#main-contents{
	font-size:105%;
	letter-spacing: 0.15em;
	line-height:1.4em;
	position:relative;
	margin-top:80px;
	}
article{
	margin:0 auto;
	overflow:hidden;
	}
article p{
	margin-bottom:20px;
	}
article a{
	text-decoration: underline;
	color:#0f244f;
	}
  article a:hover{
	color:#ff4500;
	}
/* ----------------------------------------------------
　  Background
----------------------------------------------------- */
.contents-wrap{
	margin:0 auto;
	padding:60px 5%;
	overflow:hidden;
	}
.bg-01{
	background-color:#fff;
	}
.bg-02{
	background-color:#f3f2ea;
	background-image:url(../images/bg-texture01.png);
	}
/* ----------------------------------------------------
　PAGE TITLE
----------------------------------------------------- */
.title{
	text-align:center;
	background-size:cover;
	background-position: center;
	color:#fff;
	text-shadow:0 0 20px #020831,0 0 10px rgb(11, 3, 56);
	background-image: url(../images/bg-title.jpg);
	}
.overlay{
	background-color:rgba(0, 0, 0, .5);
	overflow:hidden;
	padding:60px 5%;
	}
 .pagetitle-h1 {
	position: relative;
	padding-bottom: 30px;
	font-size: 2.5rem;
	line-height: 3rem;
	text-align: center;
	font-weight: 700;
	font-style: normal;
	}
.pagetitle-h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background-image:
		repeating-linear-gradient(45deg, #b4a983 0px, #b4a983 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
		repeating-linear-gradient(135deg, #b4a983 0px, #b4a983 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 8px 8px;
}
.pagetitle-h2 {
	margin-top: 10px;
	font-size: 1.2rem;
	text-align: center;
	font-weight: 500;
	font-style: normal;
}
  p.pagetitle-p{
	margin-top: 10px;
	letter-spacing: 0.3em;
	font-weight: 400;
	font-style: normal;
  }
@media screen and (max-width: 600px) {
	.overlay{
		padding:30px 5%;
		}	
	.pagetitle-h1 {
			font-size: 2rem;
		}
	.pagetitle-h2 {
			font-size: 1.1rem;
		}
	p.pagetitle-p{
			letter-spacing: 0.1em;
		}
	}

/* ----------------------------------------------------

　  個別ページ設定

----------------------------------------------------- */
/* ----------------------------------------------------
　index.html
----------------------------------------------------- */
ul.plan{
	margin-bottom:20px;
	}
ul.plan li {
	line-height: 1.5;
	padding: 0.5em 1em 0.5em 2em;
	border-bottom: dashed 1px silver;
	list-style-type: none!important;
	text-indent: -2em;
	}
ul.plan li:before {
	/*リスト内のアイコン*/
	font-family: "Font Awesome 5 Free";
	content: "\f6de";/*アイコン種類*/
	font-weight: 900;
	color: #ffbb33; /*アイコン色*/
	padding-right: 0.5em;
	font-size:1.5em;
	}

/* ----------------------------------------------------
　gomi.html
----------------------------------------------------- */
.imgC100{
	text-align: center;
}
.imgC100 img{
	max-width: 100%;
}
@media screen and (max-width:1200px){
	.m-marginB50{
		margin-bottom:50px;
		}
	}
/*フロー図*/
.flow {
	padding-left: 120px;
	position: relative;
	margin:0px 30px 0 30px;
	}
.flow::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -8px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
	}
.flow > li {
	position: relative;
	}
.flow > li:not(:last-child) {
	margin-bottom: 8vh;
	}
.flow > li .icon {
	font-size: 14px;
	color: #fff;
	background: rgb(107,144,219);
	background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
	background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
	padding: 8px 20px;
	display: block;
	position: absolute;
	top: 0;
	left: -120px;
	z-index: 100;
	}
.flow > li .icon::after {
	content: "";
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #66d5e9;
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	}
.flow > li dl {
	padding-left: 70px;
	position: relative;
	}
@media screen and (max-width:800px){
	.flow > li dl {
		padding-left: 20px;
		}
	}
.flow > li dl::before,
.flow > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	}
.flow > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #6b90db;
	border-radius: 50%;
	left: -4px;
	}
.flow > li dl::after {
	width: 50px;
	border-bottom: 1px dashed #999;
	position: absolute;
	left: 5px;
	}
@media screen and (max-width:800px){
	.flow > li dl::after {
		width: 10px;	
		}
	}
.flow > li dl dt {
	font-size: 120%;
	font-weight: 500;
	color: rgb(107,144,219);
	margin-bottom: 1vh;
	}
@media screen and (max-width:834px){
	.flow {
		margin:0px 0px 0 0px;
		}
	}
div.comment{
	display: block;
	border:1px solid #666;
	padding:10px;
	margin:10px;
	border-radius: 20px;
	font-size:90%;
}
div.neko{
	width:90%;
	margin:50px auto 0;
	padding: 20px;
	background-color:#edf3f4;
}
@media screen and (max-width:834px){
	div.neko{
		width:100%;
		padding:10px;
		}
	}

/* ----------------------------------------------------
　rentacar.html
----------------------------------------------------- */
/*スライドショー*/
.swiper {
	width:100%;
	max-width:700px;
	text-align: center;
	}
.swiper-slide img{
	max-width: 100%;
	}
.swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 20px solid transparent;
  border-right: 30px solid #ffffff;
  border-top: 20px solid transparent;
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-bottom: 20px solid transparent;
  border-left: 30px solid #ffffff;
  border-top: 20px solid transparent;
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}
span.tax{
	font-size:0.7em;
}

p.kiyaku{
	text-align: center;
}
.DL-img{
	float: left;
	margin-right:10px;
}
.DL-text{
	display:inline-block;
	font-weight:bold;
}


@media screen and (max-width:1400px){
	.swiper {max-width:600px;}
	}
@media screen and (max-width:1000px){
	.swiper {max-width:600px;}
	}
@media screen and (max-width:700px){
	.swiper {max-width:400px;}
	}
@media screen and (max-width:500px){
	.swiper {max-width:300px;}
	}
			
	
/*TABLE*/
.table-rentacar{
	margin:30px auto 0 auto;
	width:100%;
	font-size:90%;
	letter-spacing: 0.05em;
	}
.table-rentacar th{
	text-align: right;
	width:auto;
	padding:5px 10px;
	font-weight:normal;
	border:1px solid #1788aa;
	background-color:#d8e7ec;
	}
.table-rentacar td{
	text-align: left;
	width:auto;
	padding:5px 10px;
	border:1px solid #1788aa;
	background-color:rgba(255,255,255,0.8);
	}
@media screen and (max-width:834px){
	.table-rentacar th,
	.table-rentacar td{
		display:block;
		text-align:center;
		border: none;
		}
	.table-rentacar th{
		background-color:rgb(228, 220, 208);
		padding: 5px 10px 5px 10px;
		margin-top:20px;
		}
	}

/* ----------------------------------------------------
　company.html
----------------------------------------------------- */
.table-company{
	margin:0 auto;
	width:80%;
	max-width:900px;
	color:#000;
	}
.table-company th{
	text-align: right;
	width:auto;
	padding:15px 30px;
	font-weight:normal;
	}
.table-company td{
	text-align: left;
	width:auto;
	padding:15px 30px;
	}
	.table-company tr:nth-child(even){
	background-color:#f3f2ea;
	}
.table-company tr:first-child{
	border-top:3px solid #f3f2ea;
	}
.table-company tr:last-child{
	border-bottom:3px solid #f3f2ea;
	}
@media screen and (max-width:834px){
	.table-company{
		width:90%;
		max-width:90%;
		}
	.table-company tr:nth-child(even){
		background-color:#fff;
		}
	.table-company tr:first-child{
		background-color:#fff;
		}
	.table-company tr:last-child{
		border-bottom:none;
		}
	.table-company th,
	.table-company td{
		display:block;
		text-align:center;
		}
	.table-company th{
		background-color:rgb(228, 220, 208);
		padding: 5px 10px 5px 10px;
		margin-top:20px;
		}
	}

/* ----------------------------------------------------
　contact.html
----------------------------------------------------- */
.contact-wrap{
	margin:0 auto;
	max-width:900px;
	}
@media screen and (max-width:834px){
	.contact-wrap{
		width:90%;
		max-width:90%;
		}
	}
/* ----------------------------------------------------
　agreement.html
----------------------------------------------------- */
iframe{
	width:100%;
	height:600px;
} 
