@charset "utf-8";

/*==============================
 Body
==============================*/
body {
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #06C;
	text-decoration: none;
}
.pc {
	display: none;
}

/*==============================
 Header
==============================*/
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2000;
	background: rgba(255,255,255,1);
	box-sizing: border-box;
}
header .inner {
	position: relative;
	width: 100%;
	height: 120px;
	clear: both;
	margin: 0 auto;
}
header h1 {
	position: absolute;
	top: 20px;
	right: 0px;
	display: none;
	font-size: 1em;
	line-height: 1em;
}
header img.logo {
	position: absolute;
	height: 48px;
	top: 8px;
	left: 10px;
	display: block;
}
header ul.headerNav {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	display: block;
	box-sizing: border-box;
}
header ul.headerNav li {
	width: 50%;
	height: 50px;
	float: left;
	display: block;
}
header ul.headerNav li.pc {
	display: none;
}
header ul.headerNav li.contact {
	position: absolute;
	width: 40px;
	height: 40px;
	top: -55px;
	right: 90px;
	display: block;
	font-size: 0;
	box-sizing: border-box;
}
header ul.headerNav li a.entry,
header ul.headerNav li a.login,
header ul.headerNav li a.logout,
header ul.headerNav li a.mypage {
	width: 100%;
	display: block;
	padding-right: 20px;
	font-size: 1.1em;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	box-sizing: border-box;
}
header ul.headerNav li a.entry {
	background: url("../images/icon_entry_w.png") no-repeat right 10px center #333;
	background-size: 30px;
}
header ul.headerNav li a.login {
	border-left: solid 1px #FFF;
	background: url("../images/icon_login_w.png") no-repeat right 10px center #333;
	background-size: 30px;
}
header ul.headerNav li a.logout {
	border-left: solid 1px #FFF;
	background: url("../images/icon_login_w.png") no-repeat right 10px center #333;
	background-size: 30px;
}
header ul.headerNav li a.mypage {
	background: url("../images/icon_mypage_w.png") no-repeat right 10px center #333;
	background-size: 30px;
}
header ul.headerNav li a.entry img,
header ul.headerNav li a.login img {
	display: none;
}

/*==============================
 Globalnavi PC
==============================*/
nav {
	display: none;
}

/*==============================
 Globalnavi SP
==============================*/
.openMenu {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
}
.btn_nav {
	position: absolute;
	width: 70px;
	height: 70px;
	top: 0;
	right: 0;
}
.open_nav {
	background: #FF3413;
}
.btn_nav img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
.btn_nav img:hover {
	cursor: pointer;
}
.sp_nav_wrap {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	display: none;
	z-index: 10000;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: #FF3413;
	box-sizing: border-box;
}
.sp_nav {
	width: 90%;
	height: auto;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 50px 5% 0;
	padding: 0;
	box-sizing: border-box;
}
.sp_nav .pos1,
.sp_nav .pos2,
.sp_nav .pos3 {
	width: 100%
}
.sp_nav ul.sp_nav_menu {
	display: block;
}
.sp_nav ul.sp_nav_menu li.menuL {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 15px 0 15px 20px;
	font-size: 1.2em;
	line-height: 1em;
	border-top: solid 1px rgba(255,255,255,0.25);
	background: url("../images/list_white.png") no-repeat left 5px top 17px;
	background-size: 10px;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li.menuL a {
	width: 100%;
	float: left;
	clear: both;
	display: block;
	color: #FFF;
}
.sp_nav ul.sp_nav_menu ul {
	float: left;
	margin-top: 10px;
}
.sp_nav ul.sp_nav_menu ul li.menuM {
	width: 100%;
	clear: both;
	display: block;
	padding: 15px 0 20px;
	font-size: 1em;
	line-height: 1em;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu ul li.menuM a {
	color: #FFF;
}
.sp_nav ul.sp_nav_menu ul.menuShop {
	width: 50%;
	float: left;
	display: block;
}
.sp_nav ul.sp_nav_menu ul.menuShop li.menuS {
	float: left;
	clear: both;
	display: block;
	padding: 15px 0 0 15px;
	font-size: 0.9em;
	line-height: 1.2em;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu ul.menuShop li.menuS a {
	color: rgba(255,255,255,0.8);
}

/*==============================
 Common
==============================*/
main {
	width: 100%;
	clear: both;
	display: block;
	padding-top: 120px;
}
.block {
	position: relative;
	width: 90%;
	clear: both;
	display: block;
	margin: 0 auto;
}
button.btnCommon {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: #FF3413;
	box-sizing: border-box;
}
button.btnChange,
button.btnBack,
a.btnBack {
	width: 50%;
	height: 40px;
	display: block;
	margin: 20px auto;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 32px;
	text-align: center;
	color: #BBB;
	cursor: pointer;
	border: solid 4px #DDD;
	border-radius: 20px;
	background: #FFF;
	box-sizing: border-box;
}
a.btnContact {
	width: 90%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto;
	padding-left: 20px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	border-radius: 25px;
	cursor: pointer;
	background: url("../images/icon_contact_w.png") no-repeat left 20px center #FF3413;
	background-size: auto 36px;
	box-sizing: border-box;
}
a.btnOpenPDF {
	width: 50%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	border-radius: 30px;
	cursor: pointer;
	background: url("../images/guide/caution/icon_pdf.png") no-repeat left 20px center #FF3413;
	background-size: 24px;
	box-sizing: border-box;
}
a.btnCommon {
	width: 50%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto;
	padding-right: 10px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	border-radius: 30px;
	cursor: pointer;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
	box-sizing: border-box;
}
.reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*----- Title -----*/
.pageTitleBlock {
	position: relative;
	width: 100%;
	height: 180px;
	clear: both;
	margin: 0 auto;
}
.pageTitleBlock_sub {
	position: relative;
	width: 100%;
	height: 60px;
	clear: both;
	margin: 0 auto;
	background: #FF3413;
	box-sizing: border-box;
}
.searchBg {
	background: url("../images/search/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.shopBg {
	background: url("../images/shop/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.mypageBg {
	background: url("../images/mypage/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.campaignBg {
	background: url("../images/campaign/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.guideBg {
	background: url("../images/guide/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.corporationBg {
	background: url("../images/corporation/title_bg.jpg") no-repeat center center;
	background-size: cover;
}
h2.pageTitle {
	position: absolute;
	width: 100%;
	height: 60px;
	bottom: 0;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 36px;
	text-align: center;
	color: #FFF;
	background: #FF3413;
	box-sizing: border-box;
}
h2.pageTitle span {
	width: 36px;
	display: inline-block;
}
h3.titleMedium {
	width: 100%;
	max-width: 960px;
	height: 35px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1.4em;
	line-height: 30px;
	text-align: left;
	border-bottom: solid 1px #FF3413;
	box-sizing: border-box;
}
h3.titleMedium span {
	width: 5px;
	height: 30px;
	float: left;
	display: block;
	margin-right: 10px;
	background: #FF3413;
}

/*----- Topicpath -----*/
ul.topicpath {
	display: none;
}

/*----- Pager -----*/
ul.pagerBlock {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 20px 0;
	text-align: center;
	box-sizing: border-box;
}
ul.pagerBlock li {
	width: 30px;
	height: 30px;
	margin: 5px;
	font-size: 1em;
	line-height: 30px;
	box-sizing: border-box;
}
ul.pagerBlock li p {
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto;
	color: #FFF;
	box-sizing: border-box;
	background: #FF3413;
}
ul.pagerBlock li a {
	width: 100%;
	height: 30px;
	display: block;
	color: #FF3413;
	border: solid 1px #FF3413;
	box-sizing: border-box;
}

/*
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□　マイページ　□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
*/
/*==============================
 マイページ（共通）
==============================*/
#mypage {
	width: 100%;
	clear: both;
	display: block;
}
#mypage ul.menuTab {
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 20px auto;
	border-bottom: solid 1px #666;
}
#mypage ul.menuTab li {
	display: table;
}
#mypage ul.menuTab li.w01 {width: 10%}
#mypage ul.menuTab li.w02 {width: 21%}
#mypage ul.menuTab li.w03 {width: 23%}
#mypage ul.menuTab li.w04 {width: 34%}
#mypage ul.menuTab li.w05 {width: 10%}
#mypage ul.menuTab li a,
#mypage ul.menuTab li p {
	width: 100%;
	height: 30px;
	display: table-cell;
	font-size: 1.1em;
	line-height: 1.2em;
	vertical-align: middle;
	text-align: center;
	box-sizing: border-box;
}
#mypage ul.menuTab li a {
	color: #000;
	background: linear-gradient(225deg, transparent 5px, #EEE 5px) no-repeat top right;
}
#mypage ul.menuTab li p {
	font-weight: bold;
	color: #FFF;
	background: linear-gradient(225deg, transparent 5px, #666 5px) no-repeat top right;
}

#mypage .mypageBlock {
	width: 90%;
	clear: both;
	margin: 0 auto;
}

/*-- ご予約履歴 --*/
#mypage .listMumber {
	width: 100%;
	clear: both;
	margin: 10px auto;
	text-align: right;
}
#mypage .listMumber select {
	width: 70px;
	height: 40px;
	margin-left: 5px;
	padding: 0 10px;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("../images/arrow_select.png") no-repeat right 10px center;
	background-size: 10px;
}
#mypage table {
	width: 100%;
	clear: both;
	overflow-x: scroll;
	margin: 0 auto;
	border-top: solid 1px #DDD;
	border-left: solid 1px #DDD;
}
#mypage table .bgGray {
	background: #F5F5F5;
}
#mypage table th,
#mypage table td {
	text-align: center;
	border-bottom: solid 1px #DDD;
	border-right: solid 1px #DDD;
}
#mypage table th {
	padding: 5px 0;
	font-size: 0.7em;
	line-height: 1.2em;
	text-align: center;
	color: #FFF;
	background: #666;
}
#mypage table td {
	padding: 10px 0;
	font-size: 0.7em;
	line-height: 1.2em;
	text-align: center;
}
#mypage table td a {
	color: #06C;
	text-decoration: underline;
}
#mypage ul.pager {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 20px auto;
}
#mypage ul.pager li {
	width: 30px;
	display: block;
	margin: 0 5px;
	text-align: center;
	color: #FFF;
}
#mypage ul.pager li a,
#mypage ul.pager li a.arrow,
#mypage ul.pager li p {
	width: 100%;
	height: 30px;
	display: block;
	font-size: 1em;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	color: #CCC;
	border: solid 1px #CCC;
	background: #FFF;
	box-sizing: border-box;
}
#mypage ul.pager li a.arrow {
	border: none;
}
#mypage ul.pager li p {
	color: #FFF;
	border: none;
	background: #FF3413;
}
#mypage ul.pager li a:hover {
	color: #999;
	border: solid 1px #999;
}
#mypage ul.pager li a.arrow:hover {
	color: #999;
	border: none;
}

/*-- パスワードの変更／退会 --*/
#mypage .passRenew,
#mypage .withdraw {
	width: 90%;
	clear: both;
	display: block;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
}
#mypage .passRenew h3,
#mypage .withdraw h3 {
	width: 100%;
	clear: both;
	margin: 30px auto;
	font-size: 1.5em;
	line-height: 1em;
	text-align: center;
}
#mypage .passRenew p,
#mypage .withdraw p {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}
#mypage .passRenew dl.passRenew_input {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
}
#mypage .passRenew dl.passRenew_input dt {
	width: 30%;
	float: left;
	padding: 5px 0;
	font-size: 1em;
	line-height: 1.6em;
	text-align: left;
	box-sizing: border-box;
}
#mypage .passRenew dl.passRenew_input dd {
	width: 68%;
	float: right;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1em;
	text-align: left;
	box-sizing: border-box;
}
#mypage .passRenew dl.passRenew_input dd input {
	width: 100%;
	height: 40px;
	margin: 0 1%;
	padding: 0 5px;
	line-height: 1em;
	box-sizing: border-box;
}
#mypage .passRenew dl.passRenew_input dd .note {
	width: 100%;
	clear: both;
	margin: 0;
	padding: 5px 0 0 1%;
	font-size: 0.8em;
	line-height: 1.4em;
	text-align: left;
}
#mypage .withdraw ul.questionary {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	margin: 20px auto;
	padding: 20px 0;
	text-align: center;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
#mypage .withdraw ul.questionary li {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
#mypage .withdraw ul.questionary span {
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1em;
}

/*-- 登録済情報の表示 --*/
#mypage .mypageConfirm {
	width: 90%;
	clear: both;
	margin: 20px auto;
}
#mypage .mypageConfirm table {
	width: 90%;
	clear: both;
	margin: 20px auto;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#mypage .mypageConfirm table td {
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}

/*
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□　Topページ　□□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
*/

/*==============================
 Topページ
==============================*/
/*-- メインビジュアル --*/
#mainVisual {
	position: relative;
	width: 100%;
	clear: both;
	padding-bottom: 20px;
}
#mainVisual img.imgMain {
	width: 100vw;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#mainVisual .imgCopy {
	width: 45%;
	position: absolute;
	top: calc(20%);
	left: calc(50%);
	z-index: 1000;
}

/*-- 簡単！レンタカー予約 --*/
form.searchBlock {
	width: 80%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	border-bottom: solid 1px #CCC;
	background: #FFF;
	box-sizing: border-box;
}
form.searchBlock .searchBlock_title {
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 2em;
	font-weight: bold;
	line-height: 64px;
}
form.searchBlock .searchBlock_title span {
	width: 64px;
	display: inline-block;
	vertical-align: middle;
}
form.searchBlock dl.searchBlock_input {
	width: 100%;
	clear: both;
}
form.searchBlock dl.searchBlock_input dt {
	position: relative;
	width: 100%;
	height: 30px;
	float: left;
	clear: both;
	margin: 10px 0;
	padding-left: 50px;
	font-size: 1.2em;
	line-height: 30px;
	text-align: left;
	color: #FFF;
	border-radius: 15px;
	background: #666;
	box-sizing: border-box;
}
form.searchBlock dl.searchBlock_input dt span {
	position: absolute;
	width: 48px;
	height: 48px;
	top: -10px;
	left: 0px;
	display: block;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 42px;
	text-align: center;
	color: #666;
	border: solid 4px #666;
	border-radius: 24px;
	background: #FFF;
	box-sizing: border-box;
}
form.searchBlock dl.searchBlock_input dd {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1em;
	box-sizing: border-box;
}
form.searchBlock dl.searchBlock_input dd input,
form.searchBlock dl.searchBlock_input dd select {
	height: 50px;
	margin: 0 0 0 2%;
	padding: 0 5px;
	box-sizing: border-box;
}
form.searchBlock dl.searchBlock_input dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("../images/arrow_select.png") no-repeat right 10px center;
	background-size: 10px;
}
form.searchBlock dl.searchBlock_input dd .ip01 {
	width: 32%;
}
form.searchBlock dl.searchBlock_input dd .ip02 {
	width: 40%;
}
form.searchBlock dl.searchBlock_input dd .ip03 {
	width: 72%;
}
form.searchBlock dl.searchBlock_input dd .ip04 {
	width: 68%;
}
form.searchBlock button {
	width: 40%;
	height: 40px;
	clear: both;
	display: block;
	margin: 10px auto;
	font-size: 1.6em;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	background: url("../images/icon_reserve_w.png") no-repeat right 10px center #FF3413;
	background-size: 36px;
	box-sizing: border-box;
}
form.searchBlock .searchBlock_link {
	width: 100%;
	clear: both;
	text-align: center;
}
form.searchBlock .searchBlock_link a.typeLink {
	height: 20px;
	clear: both;
	display: inline-block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 20px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- News for Top --*/
.newsHome {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0 40px;
}
.newsHome .newsHome_innerL,
.newsHome .newsHome_innerR {
	width: 100%;
	clear: both;
	text-align: center;
}
.newsHome .newsTitle {
	clear: both;
	display: block;
	margin: 0 auto 10px;
	font-size: 2em;
	line-height: 64px;
}
.newsHome .newsTitle span.newsTitleIcon {
	width: 64px;
	display: inline-block;
}
.newsHome a.btnNews {
	height: 30px;
	float: right;
	display: inline-block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 30px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}
.newsHome dl.newsHome_list {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 0;
}
.newsHome dl.newsHome_list dt {
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	display: block;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
	color: #999;
	box-sizing: border-box;
}
.newsHome dl.newsHome_list dt span.mark_news,
.newsHome dl.newsHome_list dt span.mark_event {
	width: 15%;
	display: inline-block;
	margin-right: 2%;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
	color: #FFF;
	border-radius: 20px;
}
.newsHome dl.newsHome_list dt span.mark_news {
	background: #1E87C0;
}
.newsHome dl.newsHome_list dt span.mark_event {
	background: #6BB436;
}
.newsHome dl.newsHome_list dd {
	width: 100%;
	float: left;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}
.newsHome dl.newsHome_list dd a {
	text-decoration: underline;
}

/*-- キャンペーンバナー --*/
.bannerHome {
	width: 100%;
	clear: both;
	padding: 0 0 40px;
}
ul.slider {
    width: 90%;
	margin: 0 auto;
	font-size: 0;
	text-align: center;
}
ul.slider img {
	width: 98%;
	height: auto;
	display: inline-block;
}
.slick-prev:before,
.slick-next:before {
	display: none;
}
/* Dots */
.slick-dots {
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '●';
    text-align: center;
    opacity: 1;
    color: #CCC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #FF3413;
}

/*-- 車を探す --*/
.searchHome {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
.searchHome .areaBlock,
.searchHome .typeBlock {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	padding: 20px 0;
	text-align: center;
}
.searchHome .searchTitle {
	clear: both;
	display: block;
	margin: 0 auto 10px;
	font-size: 2em;
	line-height: 64px;
}
.searchHome .searchTitle span.searchTitleIcon {
	width: 64px;
	display: inline-block;
}
.searchHome ul.areaList {
	width: 100%;
	clear: both;
	display: block;
}
.searchHome ul.areaList li {
	position: relative;
	width: 32%;
	height: 160px;
	float: left;
	display: block;
	margin: 0 0.666% 5px;
}
.searchHome ul.areaList li img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
.searchHome ul.areaList li p {
	position: absolute;
	width: 80%;
	height: 24px;
	bottom: 10px;
	left: 0px;
	display: block;
	font-size: 1.2em;
	line-height: 24px;
	color: #FFF;
	border-radius: 0 12px 12px 0;
	background: #FF3413;
	box-sizing: border-box;
}
.searchHome ul.areaList li a.shopLink {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: block;
	z-index: 1000;
	transition: 0.2s;
}
.searchHome ul.areaList li a.shopLink:hover {
	background: rgba(255,255,255,0.7);
}
.searchHome ul.areaList li a.shopIndex {
	position: absolute;
	width: 100%;
	top: calc(50% - 15px);
	display: block;
	transition: none;
	padding: 0 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}
.searchHome img.typeImg {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
.searchHome form {
	width: 100%;
	clear: both;
	padding: 10px 0 0;
}
.searchHome form select {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 10px auto 20px;
	padding: 0 10px;
	font-size: 1.4em;
	line-height: normal;
	border: solid 1px #CCC;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("../images/arrow_select.png") no-repeat right 10px center;
	background-size: 20px;
	box-sizing: border-box;
}
.searchHome form button {
	width: 40%;
	height: 40px;
	clear: both;
	display: block;
	margin: 10px auto;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	background: url("../images/icon_reserve_w.png") no-repeat right 10px center #FF3413;
	background-size: 36px;
	box-sizing: border-box;
}
.searchHome .typeBlock a.typeLink {
	height: 30px;
	display: inline-block;
	padding-right: 25px;
	font-size: 1.2em;
	line-height: 30px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- 法人のお客様へ --*/
.corpHome {
	position: relative;
	width: 100%;
	clear: both;
	background: #FF3413;
}
.corpHome img.corpImg_01,
.corpHome img.corpImg_02 {
	width: 50%;
	height: 240px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
.corpHome img.corpImg_01 {
	float: left;
}
.corpHome img.corpImg_02 {
	float: right;
}
.corpHome .corpBox {
	width: 90%;
	clear: both;
	color: #FFF;
	margin: 0 auto;
	padding: 10px 0 80px;
}
.corpHome .corpTitle {
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 2em;
	line-height: 64px;
	text-align: center;
}
.corpHome .corpTitle span.corpTitleIcon {
	width: 64px;
	display: inline-block;
}
.corpHome dl.corpText {
	width: 90%;
	clear: both;
	margin: 0 auto 20px;
	color: #FFF;
}
.corpHome dl.corpText dt {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
}
.corpHome dl.corpText dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
.corpHome a.corpBtn {
	width: 30%;
	height: 40px;
	float: right;
	clear: both;
	display: block;
	margin: 20px 0;
	padding-right: 10px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 40px;
	color: #FF3413;
	text-align: center;
	border-radius: 20px;
	background: url("../images/arrow_red_right.png") no-repeat right 10px center #FFF;
	background-size: 10px;
	box-sizing: border-box;
}
.corpHome img.truck {
	position: absolute;
	width: 300px;
	bottom: -45px;
	left: 20px;
	z-index: 1000;
}

/*-- ご利用ガイド --*/
.guideHome {
	position: relative;
	width: 100%;
	clear: both;
	padding: 40px 0 40px;
	background: url("../images/top/guide_bg.jpg") no-repeat center top;
	background-size: cover;
}
.guideHome .guideTitle {
	clear: both;
	display: block;
	margin: 0 auto 20px;
	font-size: 2em;
	line-height: 64px;
	text-align: center;
	color: #FFF;
}
.guideHome .guideTitle span.guideTitleIcon {
	width: 64px;
	display: inline-block;
}
.guideHome ul.guideList {
	width: 70%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	text-align: center;
}
.guideHome ul.guideList li {
	width: 33%;
	display: block;
	margin: 0 auto 1px;
}
.guideHome ul.guideList li a {
	width: 100%;
	display: block;
	padding: 20px 0;
	text-align: center;
	background: rgba(255,255,255,0.9);
}
.guideHome ul.guideList li a img {
	width: 72px;
}
.guideHome ul.guideList li a h3 {
	width: 100%;
	height: 50px;
	display: table;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	color: #FF3413;
}
.guideHome ul.guideList li a h3 span {
	display: table-cell;
	vertical-align: middle;
}

/*-- メニュー（ホームのみ） --*/
ul.menuHome {
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 20px auto;
}
ul.menuHome li {
	width: 32%;
	display: block;
}
ul.menuHome li a {
	width: 100%;
	height: 60px;
	display: table;
	padding: 10px 40px 10px 14px;
	color: #FFF;
	border-radius: 10px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
	box-sizing: border-box;
}
ul.menuHome li a img {
	width: 48px;
	float: left;
}
ul.menuHome li a p {
	display: table-cell;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
	vertical-align: middle;
}
ul.menuHome li a p span {
	font-size: 0.7em;
	font-weight: normal;
}

/*
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□　一般ページ　□□□□□□□□□□□□□□□□□□□□□□□□□
□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
*/

/*==============================
 ログイン
==============================*/
.loginWrapp {
	width: 100%;
	clear: both;
	margin: 20px auto;
}
.loginForm {
	width: 90%;
	clear: both;
	display: block;
	margin: 20px auto;
	padding: 0 0 10px;
	text-align: center;
	border: solid 1px #EEE;
	background: #F5F5F5;
	box-sizing: border-box;
}
.loginForm h3 {
	width: 100%;
	clear: both;
	margin: 0 auto 10px;
	padding: 10px 0;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	background: #666;
}
.boxL {}
.boxR {}
.boxFull {}
.loginForm dl.loginForm_input {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 5px 0;
}
.loginForm dl.loginForm_input dt {
	width: 100%;
	float: left;
	clear: both;
	padding: 5px 0;
	font-size: 1.4em;
	line-height: 1em;
	text-align: left;
	box-sizing: border-box;
}
.loginForm dl.loginForm_input dd {
	width: 100%;
	float: left;
	clear: both;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1em;
	text-align: left;
	box-sizing: border-box;
}
.loginForm dl.loginForm_input dd input {
	height: 40px;
	margin: 0;
	padding: 0 5px;
	line-height: 1em;
	box-sizing: border-box;
}
.loginForm dl.loginForm_input dd input.ip01 {
	width: 100%;
}
.loginForm dl.loginForm_input dd input.ip02 {
	width: 26%;
	margin-right: 1%;
}
.loginForm dl.loginForm_input dd input.ip03 {
	width: 16%;
	margin: 0 1%;
}
.loginForm dl.loginForm_input dd input.check {
	width: 20px;
	height: 30px;
	margin-right: 5px;
}
.loginForm button {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 10px auto;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: #FF3413;
	box-sizing: border-box;
}
.loginForm a {
	height: 20px;
	clear: both;
	display: inline-block;
	margin: 0 20px;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 20px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- ログインページ内の新規会員登録 --*/
.loginForm .entryBox {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 0 0 10px;
}

.loginForm .entryBox p {
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}
.loginForm .entryBox p br {
	display: none;
}
.loginForm .entryBox a {
	width: 90%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 13px 20px 13px 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 20px;
	color: #FF3413;
	border: solid 1px #FF3413;
	border-radius: 25px;
	cursor: pointer;
	background: url("../images/icon_entry.png") no-repeat right 20px center #FFF;
	background-size: 28px;
	box-sizing: border-box;
}
.loginForm .entryBox a span {
	width: 40px;
	height: 24px;
	margin: 0 5px 2px 0;
	display: inline-block;
	font-size: 0.7em;
	line-height: 24px;
	vertical-align: middle;
	color: #FFF;
	background: #FF3413;
	box-sizing: border-box;
}
.loginBlock {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
.loginBlock h3 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 30px 0 10px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FF3413;
}
.loginBlock p,
.loginForm p {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
	box-sizing: border-box;
}
.loginBlock p br,
.loginForm p br {
	display: none;
}
.loginBlock button {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto 20px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 20px;
	box-sizing: border-box;
}

/*==============================
 レンタカー予約
==============================*/
#search {
	width: 100%;
	clear: both;
}

/*-- 検索条件の入力 --*/
#search .searchForm {
	width: 90%;
	clear: both;
	margin: 20px auto;
	padding: 20px 5%;
	text-align: center;
	border: solid 1px #EEE;
	background: #F5F5F5;
	box-sizing: border-box;
}
#search .searchForm dl.searchForm_input {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	border-bottom: solid 1px #CCC;
}
#search .searchForm dl.searchForm_input dt {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1em;
	text-align: left;
	box-sizing: border-box;
}
#search .searchForm dl.searchForm_input dd {
	width: 100%;
	float: left;
	clear: both;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: right;
	box-sizing: border-box;
}
#search .searchForm dl.searchForm_input dd span.item {
	width: 20%;
	float: left;
	display: inline-block;
	margin: 12px 0;
	padding: 3px;
	font-size: 0.7em;
	text-align: center;
	color: #FF3413;
	border: solid 1px #FF3413;
	border-radius: 20px;
	background: #FFF;
	box-sizing: border-box;
}
#search .searchForm dl.searchForm_input dd span.blank {
	width: 20%;
	display: inline-block;
}
#search .searchForm dl.searchForm_input dd input,
#search .searchForm dl.searchForm_input dd select {
	height: 40px;
	margin: 5px 0 5px 1%;
	padding: 0 5px;
	line-height: 1.2em;
	box-sizing: border-box;
}
#search .searchForm dl dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("../images/arrow_select.png") no-repeat right 10px center #FFF;
	background-size: 10px;
}
#search .searchForm dl.searchForm_input dd .ip01 {
	width: 34%;
}
#search .searchForm dl.searchForm_input dd .ip02 {
	width: 42%;
}
#search .searchForm dl.searchForm_input dd .ip03 {
	width: 77%;
}
#search .searchForm ul.searchForm_check {
	width: 100%;
	clear: both;
	padding-bottom: 5px;
	text-align: center;
}
#search .searchForm ul.searchForm_check li {
	width: auto;
	display: block;
	padding: 10px 0 0;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
}
#search .searchForm button {
	width: 90%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto 0;
	padding-right: 5%;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: url("../images/icon_reserve_w.png") no-repeat right 5px center #FF3413;
	background-size: 36px;
	box-sizing: border-box;
}

/*-- 進行 --*/
#search ul.searchStep {
	width: 90%;
	max-width: 1200px;
	clear: both;
	display: block;
	margin: 20px auto;
	border-right: solid 1px #666;
	border-left: solid 1px #666;
	box-sizing: border-box;
}
#search ul.searchStep li {
	position: relative;
	width: 20%;
	height: 42px;
	float: left;
	display: table;
	padding-right: 1%;
	font-size: 0.9em;
	line-height: 1.4em;
	text-align: center;
	border-top: solid 1px #666;
	border-bottom: solid 1px #666;
	box-sizing: border-box;
}
#search ul.searchStep li span {
	display: table-cell;
	vertical-align: middle;
}
#search ul.searchStep li.on {
	position: relative;
	color: #FFF;
	background: #666;
}
#search ul.searchStep li.off {
	background: #FFF;
}
#search ul.searchStep li.off2 {
	background: #FFF;
}
#search ul.searchStep li img {
	position: absolute;
	width: 10px;
	height: 100%;
	top: 0;
	right: -5px;
	z-index: 1000;
}

/*-- 検索結果 --*/
#search .searchResult {
	width: 90%;
	clear: both;
	margin: 20px auto;
}
#search .searchResult .searchResult_number {
	width: 100%;
	clear: both;
	margin: 20px auto;
	padding: 0;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
	box-sizing: border-box;
}
#search .searchResult .searchResult_number sub {
	margin: 0 5px;
	display: inline-block;
	font-size: 1.6em;
	font-weight: bold;
	color: #FF3413;
}
#search .searchResult .vehicleList {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
}
#search .searchResult .vehicleList_type {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 10px;
	font-size: 1.3em;
	line-height: 1em;
	color: #FFF;
	background: #666;
	box-sizing: border-box;
}

/*-- スライド --*/
#search .searchResult .vehiclePhoto {
	position: relative;
	width: 100%;
	float: left;
	display: block;
	margin: 0 2%;
	padding: 20px 0;
}
#search .searchResult .vehiclePhoto ul.slide {
	position: relative;
	width: 100%;
	height: 240px;
	clear: both;
	display: block;
	overflow: hidden;
}
#search .searchResult .vehiclePhoto ul.slide li {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
	text-align: center;
}
#search .searchResult .vehiclePhoto ul.slide li img {
	width: 100%;
	height: 240px;
	object-fit: contain;
	object-position: 50% 50%;
	font-family: 'object-fit: contain; object-position: 50% 50%;'
}
#search .searchResult .vehiclePhoto ul.thumb {
	width: 100%;
	clear: both;
	margin: 0;
	font-size: 0;
}
#search .searchResult .vehiclePhoto ul.thumb li {
	width: 18%;
	display: inline-block;
	margin: 0 1%;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}
#search .searchResult .vehiclePhoto ul.thumb li img {
	width: 100%;
	height: 60px;
	clear: both;
	object-fit: contain;
	object-position: 50% 50%;
	font-family: 'object-fit: contain; object-position: 50% 50%;'
}
#search .searchResult .vehiclePhoto img.naviMark {
	position: absolute;
	width: 20%;
	top: 20px;
	left: 0;
}

/*-- スペック --*/
#search .searchResult .vehicleInfo {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto;
}
#search .searchResult .vehicleInfo table {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
}
#search .searchResult .vehicleInfo table tr+tr {
	border-top: solid 1px #CCC;
}
#search .searchResult .vehicleInfo table th,
#search .searchResult .vehicleInfo table td {
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.6em;
	vertical-align: top;
}
#search .searchResult .vehicleInfo table th {
	width: 25%;
	padding-right: 5%;
	text-align: left;
}
#search .searchResult .vehicleInfo table td {
	width: 70%;
}
/*-- 店長のオススメ --*/
#search .searchResult .vehicleInfo dl.recommend {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
}
#search .searchResult .vehicleInfo dl.recommend dt {
	width: 100%;
	clear: both;
	margin-bottom: 5px;
	padding-right: 5%;
	font-size: 1.3em;
	line-height: 1.6em;
	text-align: center;
	box-sizing: border-box;
}
#search .searchResult .vehicleInfo dl.recommend dt img {
	width: 30px;
	margin: 0 10px;
}
#search .searchResult .vehicleInfo dl.recommend dd {
	width: 100%;
	clear: both;
	padding: 10px 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	border: solid 1px #CCC;
	border-radius: 20px;
	box-sizing: border-box;
}

/*-- 料金表 --*/
#search .searchResult .vehiclePrice {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	padding: 10px;
	background: #FF3413;
	box-sizing: border-box;
}
#search .searchResult .vehiclePrice table {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
	border-top: solid 1px #FFF;
	border-left: solid 1px #FFF;
	color: #FFF;
}
#search .searchResult .vehiclePrice table th,
#search .searchResult .vehiclePrice table td {
	padding: 15px 0;
	font-size: 1em;
	line-height: 1em;
	border-bottom: solid 1px #FFF;
	border-right: solid 1px #FFF;
	text-align: center;
}
#search .searchResult .vehiclePrice table th {
	width: 30%;
	padding-top: 20px;
}
#search .searchResult .vehiclePrice table th sub {
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.6em;
}
#search .searchResult .vehiclePrice table td {
	width: 23.333%;
}
#search .searchResult .vehiclePrice button.btnMoveOn {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto 5px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	color: #000;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	background: url("../images/arrow_red_right.png") no-repeat right 20px center #FFF;
	background-size: 20px;
}
#search .searchResult .note {
	padding: 5px 0;
	font-size: 0.9em;
	line-height: 1.4em;
}
#search button.btnMoveOn {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 30px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 20px;
}

/*運転免許証見本*/
#search .licenseBlock,
#entry .licenseBlock {
	width: 90%;
	clear: both;
	display: block;
	margin: 10px auto;
	padding: 15px 5px;
	text-align: center;
	border: solid 1px #EEE;
	background: #F5F5F5;
	box-sizing: border-box;
}
#search .licenseBlock img,
#entry .licenseBlock img {
	width: 100%;
}

/*-- 予約完了 --*/
#search .searchThanks {
	width: 90%;
	clear: both;
	margin: 20px auto;
	text-align: center;
}
#search .searchThanks h3 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0 20px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FF3413;
}
#search .searchThanks p {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}


/*==============================
 車種・料金
==============================*/
#vehicle {
	width: 100%;
	clear: both;
}
#vehicle .typeBlock {
	width: 90%;
	clear: both;
	margin: 20px auto;
	border-bottom: solid 1px #FF3413;
}
#vehicle ul.navi {
	width: 100%;
	clear: both;
	margin: 0 auto;
	overflow: hidden;
}
#vehicle div.typeName {
	position: relative;
	width: 100%;
	height: 60px;
	clear: both;
	display: table;
	cursor: pointer;
	margin: 0 auto;
	padding: 10px 0;
	border-top: solid 1px #FF3413;
	background: url("../images/search/open.svg") no-repeat 98% center;
	background-size: 16px;
	box-sizing: border-box;
}
#vehicle div.typeName h3 {
	width: 100%;
	display: table-cell;
	padding: 0 50px 0 10px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	vertical-align: middle;
	border-left: solid 7px #FF3413;
	box-sizing: border-box;
}
#vehicle div.open {
	cursor: pointer;
	background: url("../images/search/close.svg") no-repeat 98% center;
	background-size: 16px;
	box-sizing: border-box;
}
#vehicle ul.typeBox {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
	box-sizing: border-box;
}
#vehicle ul.typeBox .typeBox_vehicle {
	width: 60%;
	display: block;
	margin: 0 auto 20px;
}
#vehicle ul.typeBox .typeBox_info {
	width: 100%;
	display: block;
}
#vehicle ul.typeBox .typeBox_info h4 {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.4em;
    text-align: center;
}
#vehicle ul.typeBox .typeBox_info table {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#vehicle ul.typeBox .typeBox_info table th,
#vehicle ul.typeBox .typeBox_info table td {
	padding: 10px;
	font-size: 1em;
	line-height: 1.6em;
	vertical-align: top;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#vehicle ul.typeBox .typeBox_info table th {
	width: 30%;
}
#vehicle ul.typeBox .typeBox_info table td {
	width: 70%;
}
#vehicle ul.typeBox .typeBox_info a.btnTypeList {
	width: 40%;
	height: 40px;
	clear: both;
	display: block;
    margin: 0 auto;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 20px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
}


/*==============================
 ご利用ガイド
==============================*/
#guide {
	width: 100%;
	clear: both;
}
#guide .block {
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 20px 0;
}
#guide .guideTitle {
	width: 100%;
	margin: 10px auto 20px;
	font-size: 2.4em;
	font-weight: bold;
	text-align: center;
	color: #FF3313;
	box-sizing: border-box;
}
#guide .guideTitle img {
	width: 64px;
	display: inline-block;
	vertical-align: middle;
}
#guide .guideTitle span {
	display: inline-block;
	vertical-align: middle;
}
#guide .guideCopy {
	width: 100%;
	margin: 0 auto;
	font-size: 1.4em;
	text-align: center;
}

/*-- インデックスメニュー --*/
#guide dl.guideMenu {
	position: relative;
	width: 49%;
	display: block;
	margin-bottom: 20px;
}
#guide dl.guideMenu a {
	width: 100%;
	height: 120px;
	display: block;
	padding: 10px 15px;
	border: solid 1px #FF3413;
	background: url("../images/arrow_red_right.png") no-repeat right 20px center;
	background-size: 10px;
	box-sizing: border-box;
}
#guide dl.guideMenu a:hover {
	color: #333;
}
#guide dl.guideMenu img {
	width: 18%;
	max-width: 96px;
	display: block;
}
#guide dl.guideMenu dt {
	position: absolute;
	width: 65%;
    height: 2.4em;
	top: 18px;
	left: 22%;
    display: table;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.2em;
	color: #FF3413;
}
#guide dl.guideMenu dt span {
	display: table-cell;
	vertical-align: middle;
}
#guide dl.guideMenu dd {
	position: absolute;
	width: 60%;
	top: 65px;
	left: 22%;
	font-size: 1em;
	line-height: 1.4em;
}
#guide dl.guideMenu dd br {
	display: none;
}
#guide .guideMenu_common {
	width: 100%;
	display: block;
	padding: 20px 0 10px;
	background: #FF3413;
}
#guide .guideMenu_common ul.guideMenu_list {
	width: 90%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
}
#guide .guideMenu_common ul.guideMenu_list li {
	width: 24%;
    margin-bottom: 10px;
	text-align: center;
	background: #FFF;
}
#guide .guideMenu_common ul.guideMenu_list li a {
	width: 100%;
	display: block;
	padding: 10px 10px 15px;
	text-align: center;
	box-sizing: border-box;
}
#guide .guideMenu_common ul.guideMenu_list li a p {
	width: 100%;
	height: 2.8em;
	display: table;
	font-size: 1em;
	line-height: 1.4em;
}
#guide .guideMenu_common ul.guideMenu_list li a p span {
	display: table-cell;
	vertical-align: middle;
}
#guide .guideMenu_common ul.guideMenu_list li a img {
	width: 60%;
	display: block;
	margin: 0 auto;
}

/*-- ご利用について --*/
#about {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
#about .aboutCopy {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}
#about .aboutRead {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
#about .aboutRead br {
	display: none;
}
#about .arrow {
	width: 0px;
	clear: both;
	margin: 30px auto;
	border-top: solid 20px #CCC;
	border-right: solid 30px transparent;
	border-left: solid 30px transparent; 
}
#about .aboutStep {
	position: relative;
	width: 100%;
	clear: both;
	margin: 20px auto;
}
#about .aboutStep h4 {
	position: relative;
	width: 100%;
	height: 30px;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 30px;
	text-align: center;
	color: #FFF;
	background: #666;
}
#about .aboutStep h4 p.aboutStep_number {
	position: absolute;
	width: 48px;
	height: 38px;
	top: calc(50% - 24px);
	left: -10px;
	padding: 5px 0;
	font-size: 0.8em;
	line-height: 1.4em;
	text-align: center;
	color: #000;
	border: solid 1px #666;
	border-radius: 24px;
	background: #FFF;
}
#about .aboutStep h4 p.aboutStep_number span {
	display: block;
	font-size: 1.6em;
}
#about .aboutStep .aboutStep_box {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px 0;
}
#about .aboutStep .full {
	width: 100%;
}
#about .aboutStep .half_step1 {
	width: 100%;
}
#about .aboutStep .aboutStep_text {
	margin-bottom: 20px;
    font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
#about .aboutStep .centerPos {
	width: 100%;
	display: block;
	padding: 20px 0;
	text-align: center;
}
#about .aboutStep .centerPos a.link {
	display: block;
	margin: 0 auto;
	color: #06C;
}
#about .aboutStep .centerPos a.link img {
	width: 12px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: middle;
}

/*-- ステップ① --*/
#about .aboutStep .img_web_site {
	width: 60%;
	display: block;
    margin: 0 auto 20px;
}
#about .aboutStep .img_qr {
	width: 15%;
	display: block;
    align-self: flex-end;
    margin: 0 auto 20px;
}
#about .aboutStep a.aboutStep_btnStep1 {
	width: 50%;
	height: 50px;
	display: block;
    margin: 0 auto;
	padding-right: 20px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	text-align: center;
	border-radius: 30px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
	box-sizing: border-box;
}
#about .aboutStep h5.minTitle_step1 {
	width: 100%;
	clear: both;
	margin: 0 auto 10px;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	background: #999;
}
#about .aboutStep ul.aboutStep_list1,
#about .aboutStep ul.aboutStep_list2,
#about .aboutStep ul.aboutStep_list4 {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding-bottom: 10px;
	border: solid 1px #CCC;
	background: #F5F5F5;
	box-sizing: border-box;
}
#about .aboutStep ul.aboutStep_list1 li {
	width: 90%;
	margin-left: 5%;
	padding: 5px 0;
	font-size: 1em;
	line-height: 1.6em;
	list-style: disc outside;
}
#about .aboutStep ul.aboutStep_list1 a {
	position: absolute;
	bottom: -25px;
	right: 0;
	display: block;
	padding-left: 20px;
	font-size: 1em;
	line-height: 1.6em;
	color: #06C;
	background: url("../images/arrow_red_right.png") no-repeat left center;
	background-size: 12px;
}

/*-- ステップ② --*/
#about .aboutStep h5.minTitle_step2 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	background: #FF3413;
}
#about .aboutStep ul.aboutStep_list2L {
	position: relative;
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	list-style: decimal outside;
}
#about .aboutStep ul.aboutStep_list2L li {
	width: 100%;
	margin-left: 3%;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	list-style: decimal outside;
}
#about .aboutStep ul.aboutStep_list2L hr {
	width: 100%;
	height: 1px;
	border: 0 none;
	background: #CCC;
}
#about .aboutStep ul.aboutStep_list2L li a {
	text-decoration: underline;
	color: #06C;
}
#about .aboutStep ul.aboutStep_list2L li img.step2_img_step {
	width: 100%;
	display: block;
	margin: 0 auto 20px;
}
#about .aboutStep ul.aboutStep_list2 {
	width: 100%;
	clear: both;
	margin: 10px 0;
}
#about .aboutStep ul.aboutStep_list2 p {
	position: absolute;
	bottom: -25px;
	right: 0;
	display: block;
	font-size: 0.8em;
	line-height: 1.6em;
}
#about .aboutStep ul.aboutStep_list2 li {
	width: 90%;
	margin-left: 5%;
	padding: 5px 0;
	font-size: 0.9em;
	line-height: 1.6em;
	list-style: disc outside;
}
#about .aboutStep .aboutStep_unmanned {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
	padding: 10px 5%;
	border: solid 1px #CCC;
	background: #F5F5F5;
	box-sizing: border-box;
}
#about .aboutStep .aboutStep_unmanned h5.aboutStep_unmannedTitle {
	width: 100%;
	clear: both;
	margin: 0 auto 10px;
	padding: 10px 0;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	border-bottom: solid 5px #333;
}
#about .aboutStep .aboutStep_unmanned dl {
	width: 100%;
	clear: both;
	padding: 15px 0;
}
#about .aboutStep .aboutStep_unmanned dl dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 3em;
	font-weight: bold;
	line-height: 1em;
    text-align: center;
	color: #FF3313;
}
#about .aboutStep .aboutStep_unmanned dl dd {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#about .aboutStep .aboutStep_unmanned dl a {
	width: 50%;
	height: 50px;
	display: block;
	margin: 0 auto;
	padding-right: 20px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	text-align: center;
	border-radius: 30px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
	box-sizing: border-box;
}
#about .aboutStep .aboutStep_unmanned img {
	width: 33.3333%;
	padding: 15px 0;
}

/*-- ステップ③ --*/
#about .aboutStep .aboutStep_while {
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-items: flex-start;
        align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
}
#about .aboutStep .aboutStep_while dl {
	width: 46%;
	margin: 10px 0;
}
#about .aboutStep .aboutStep_while dl img {
	width: 30%;
	float: left;
}
#about .aboutStep .aboutStep_while dl dt {
	width: 65%;
	float: right;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
}
#about .aboutStep .aboutStep_while dl dd {
	width: 65%;
	float: right;
	font-size: 1.2em;
	line-height: 1.6em;
}
#about .aboutStep a.step3_btn {
	width: 50%;
	height: 50px;
	display: block;
	margin: 0 auto;
	padding-right: 20px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	text-align: center;
	border-radius: 30px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- ステップ④ --*/
#about .aboutStep ul.aboutStep_list4 {
	padding: 10px 20px;
}
#about .aboutStep ul.aboutStep_list4 li {
	width: 100%;
	margin-left: 2%;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.4em;
	list-style: disc outside;
}
#about .aboutStep .centerPos img.gus {
	width: 100%;
	display: block;
	margin: 0 auto 20px;
}

/*-- 無人レンタル機のご利用について --*/
#unmanned {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
#unmanned hr {
	width: 100%;
	height: 5px;
	border: 0 none;
	background: #EEE;
}
#unmanned .arrow {
	width: 0px;
	clear: both;
	margin: 10px auto;
	border-top: solid 10px #CCC;
	border-right: solid 15px transparent;
	border-left: solid 15px transparent; 
}
#unmanned .unmannedBlock {
	position: relative;
	width: 100%;
	clear: both;
	margin: 20px auto;
}
#unmanned .unmannedBox {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
}
#unmanned .unmannedBox img {
	width: 60%;
}
#unmanned .unmannedBox dl {
	width: 100%;
	padding-bottom: 20px;
}
#unmanned .unmannedBox dl dt {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.2em;
    text-align: center;
}
#unmanned .unmannedBox dl dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
#unmanned .unmannedBox dl dd br {
	display: none;
}
#unmanned .sugoiBox {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 80px auto 20px;
	padding: 5px;
	border: solid 1px #CCC;
	box-sizing: border-box;
}
#unmanned .sugoiBox .sugoi_title {
	position: absolute;
	width: 40%;
	top: -50px;
	left: calc(50% - 20%);
}
#unmanned .sugoiBox dl {
	width: 50%;
	display: block;
	padding: 80px 10px 10px;
	border: solid 1px #FFF;
	box-sizing: border-box;
}
#unmanned .sugoiBox dl dt {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.2em;
    text-align: center;
}
#unmanned .sugoiBox dl dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.6em;
}
#unmanned .sugoiBox dl.sugoi_01 {
	background: url("../images/guide/unmanned/sugoi_01.png") no-repeat center top 10px #EEE;
    background-size: auto 70px;
}
#unmanned .sugoiBox dl.sugoi_02 {
	background: url("../images/guide/unmanned/sugoi_02.png") no-repeat center top 10px #FF3413;
    background-size: auto 70px;
}
#unmanned .sugoiBox dl.sugoi_03 {
	background: url("../images/guide/unmanned/sugoi_03.png") no-repeat center top 10px #FF3413;
    background-size: auto 70px;
}
#unmanned .sugoiBox dl.sugoi_04 {
	background: url("../images/guide/unmanned/sugoi_04.png") no-repeat center top 10px #EEE;
    background-size: auto 70px;
}
#unmanned .sugoiBox dl.sugoi_01 dt,
#unmanned .sugoiBox dl.sugoi_04 dt,
#unmanned .sugoiBox dl.sugoi_01 dd,
#unmanned .sugoiBox dl.sugoi_04 dd {
	color: #FF3413;
}
#unmanned .sugoiBox dl.sugoi_02 dt,
#unmanned .sugoiBox dl.sugoi_03 dt,
#unmanned .sugoiBox dl.sugoi_02 dd,
#unmanned .sugoiBox dl.sugoi_03 dd {
	color: #FFF;
}
#unmanned .unmannedBlock h3 {
	width: 100%;
	height: 40px;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	background: #666;
}
#unmanned .unmannedBlock h4 {
	width: 100%;
	height: 40px;
	clear: both;
	margin: 20px auto;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 40px;
	color: #FFF;
	border-radius: 20px;
	background: #FF3413;
}
#unmanned .unmannedBlock h4 span {
	display: inline-block;
	margin-right: 20px;
	padding: 0 20px;
	font-size: 1em;
	font-weight: normal;
	line-height: 20px;
	color: #FFF;
	border-right: solid 1px #FFF;
}
#unmanned .unmannedBlock .flowBox {
	width: 100%;
	max-width: 640px;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-end;
		align-items: flex-end;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto 40px;
}
#unmanned .unmannedBlock ol.flowList,
#unmanned .unmannedBlock ol.flowList2 {
	width: 100%;
}
#unmanned .unmannedBlock ol.flowList li,
#unmanned .unmannedBlock ol.flowList2 li {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.4em;
	text-align: center;
}
#unmanned .unmannedBlock .note {
	width: 100%;
	clear: both;
	margin-top: 10px;
	font-size: 1em;
	line-height: 1.2em;
	text-align: center;
}
#unmanned .unmannedBlock .movieBox {
	width: 100%;
	max-width: 1000px;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
}
#unmanned .unmannedBlock .movieTitle {
	position: relative;
	width: 100%;
	max-width: 1000px;
	clear: both;
	margin: 40px auto 20px;
	border-top: solid 5px #FF3413;
}
#unmanned .unmannedBlock .movieTitle span {
	position: absolute;
	width: 200px;
	height: 40px;
	top: -22px;
	left: calc(50% - 100px);
	font-size: 1.4em;
	line-height: 40px;
	text-align: center;
	background: #FFF;
}
#unmanned .unmannedBlock .movieTitle img {
	position: absolute;
	width: 40px;
	top: -55px;
	left: calc(50% - 20px);
	z-index: 1000;
}
#unmanned .unmannedBlock .movieBox .youtubeBox {
	width: 480px;
	height: 270px;
	display: table;
    margin-bottom: 10px;
	text-align: center;
	background: #CCC;
}
#unmanned .unmannedBlock .movieBox .youtubeBox span {
	display: table-cell;
	font-size: 1.6em;
	line-height: 1em;
	vertical-align: middle;
	color: #FFF;
}
#unmanned .unmannedBlock .shopBox {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: stretch;
		align-content: stretch;
		-webkit-align-items: flex-end;
		align-items: flex-end;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
}
#unmanned .unmannedBlock .shopBox dl {
	width: 30%;
    margin-bottom: 20px;
	text-align: center;
}
#unmanned .unmannedBlock .shopBox dl img {
	width: 100%;
}
#unmanned .unmannedBlock .shopBox dl dt {
	width: 100%;
	clear: both;
	padding: 15px 0;
	font-size: 1.4em;
	line-height: 1em;
}
#unmanned .unmannedBlock .shopBox dl dd {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1em;
	line-height: 1.6em;
}
#unmanned .unmannedBlock .shopBox dl a {
	width: 90%;
	height: 40px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	border-radius: 20px;
	background: url("../images/arrow_white_right.png") no-repeat right 10px center #FF3413;
	background-size: 10px;
}

/*-- レンタカーご利用の注意事項 --*/
#caution {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
#caution .cautionBlock {
	position: relative;
	width: 100%;
	clear: both;
	margin: 40px auto;
}
#caution dl.cautionBox {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px auto;
}
#caution dl.cautionBox dt {
	width: 30%;
    clear: both;
    margin-bottom: 10px;
    padding: 10px 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FF3313;
	border: solid 1px #FF3313;
	box-sizing: border-box;
}
#caution dl.cautionBox dd {
	width: 100%;
}
#caution dl.cautionBox dd p {
	font-size: 1.2em;
	line-height: 1.6em;
    text-align: center;
}
#caution .cautionBlock h3 {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
    padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.4em;
	text-align: center;
	color: #FFF;
	background: #666;
}
#caution .cautionText {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
#caution .cautionBlock table.licenseTable {
	width: 100%;
	clear: both;
	margin: 0 auto 10px;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#caution .cautionBlock table.licenseTable th,
#caution .cautionBlock table.licenseTable td {
	padding: 5px;
	font-size: 0.8em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#caution .cautionBlock table.licenseTable th {
	width: 28%;
	text-align: left;
	vertical-align: top;
}
#caution .cautionBlock table.licenseTable td {
	width: 12%;
	text-align: center;
}
#caution .cautionBlock table.licenseTable td.tar {
	text-align: right;
}
#caution .cautionBlock table.licenseTable td.bgRed {
	color: #FFF;
	background: #FF3413;
}
#caution .cautionBlock table.licenseTable td.bgPale {
	background: #FFF5F3;
}
#caution .cautionBlock ol.listL {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
}
#caution .cautionBlock ol.listL li {
	width: 100%;
	margin-left: 3%;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.6em;
	list-style: decimal outside;
	box-sizing: border-box;
}
#caution .cautionBlock ol.listL li h4 {
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
}
#caution .cautionBlock ol.listL li p {
	width: 100%;
	font-size: 0.9em;
}
#caution .cautionBlock ol.listL hr {
	width: 100%;
	height: 1px;
	border: 0 none;
	background: #CCC;
}
#caution .cautionBlock ol.listL li a {
	text-decoration: underline;
	color: #06C;
}
#caution .cautionBlock table {
	width: 100%;
	clear: both;
	margin: 10px auto;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#caution .cautionBlock table th,
#caution .cautionBlock table td {
	padding: 5px;
	font-size: 0.8em;
	line-height: 1.6em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#caution .cautionBlock table th {
	width: 25%;
	text-align: left;
	vertical-align: top;
	background: #F5F5F5;
}
#caution .cautionBlock .note {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1em;
	line-height: 1.6em;
}
#caution .cautionBlock ul.listL2 {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto 20px;
}
#caution .cautionBlock ul.listL2 li {
	width: 100%;
	margin-left: 3%;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.4em;
	list-style: disc outside;
	box-sizing: border-box;
}
#caution .cautionBlock .attention {
	width: 100%;
	clear: both;
	margin: 10px auto 0;
}
#caution .cautionBlock .attention ul.attentionList {
	width: 100%;
	clear: both;
	margin: 5px auto;
}
#caution .cautionBlock .attention ul.attentionList li {
	width: 100%;
	margin-left: 3%;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.4em;
	list-style: disc outside;
	box-sizing: border-box;
}
#caution .cautionBlock .attention ul.attentionList li p {
	width: 100%;
	margin-top: 5px;
	font-size: 1em;
	line-height: 1.4em;
}
#caution .cautionBlock .attention ul.attentionList li ol li {
	width: 100%;
	clear: both;
	padding: 5px 0 0;
	font-size: 0.8em;
	line-height: 1.4em;
	list-style: decimal outside;
	box-sizing: border-box;
}

/*-- 保険・補償制度について／有料オプション／キャンセル --*/
#insurance, #option, #cancel {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
}
#insurance .insuranceCopy,
#option .optionCopy {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}
#insurance .insuranceRead {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
#option .optionRead {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#option .optionRead br {
	display: none;
}
#insurance .insuranceBlock,
#option .optionBlock,
#cancel .cancelBlock {
	position: relative;
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto 20px;
}
#insurance .insuranceBlock h3,
#option .optionBlock h3,
#cancel .cancelBlock h3 {
	width: 100%;
	height: 30px;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.4em;
	line-height: 30px;
	text-align: center;
	color: #FFF;
	background: #666;
}
#insurance .insuranceBlock .insuranceText,
#option .optionBlock .optionText,
#cancel .cancelBlock .cancelText {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1.6em;
}
#insurance .insuranceBlock .note {
	width: 100%;
	clear: both;
	margin: 20px auto;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}
#insurance .insuranceBlock .note2,
#option .optionBlock .note2,
#cancel .cancelBlock .note2 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	font-size: 1em;
	line-height: 1.6em;
}
#insurance .insuranceBlock img.img_main,
#option .optionBlock img.img_main {
	width: 60%;
	display: block;
    margin: 0 auto 10px;
}
#insurance .insuranceBlock dl.insuranceBox {
	width: 100%;
	max-width: 1200px;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin-bottom: 20px;
}
#insurance .insuranceBlock dl.insuranceBox dt {
	width: 100%;
	clear: both;
	padding: 5px 0;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.6em;
	color: #FF3313;
}
#insurance .insuranceBlock dl.insuranceBox dt br {
	display: none;
}
#insurance .insuranceBlock dl.insuranceBox dd {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.6em;
}
#insurance .insuranceBlock dl.insuranceBox p {
	width: 100%;
	clear: both;
	padding: 20px 0 0;
	font-size: 1em;
	line-height: 1.4em;
	border-top: solid 1px #CCC;
}
#insurance .insuranceBlock table,
#option .optionBlock table,
#cancel .cancelBlock table {
	width: 100%;
	clear: both;
	margin: 10px auto 5px;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#insurance .insuranceBlock table caption,
#option .optionBlock table caption,
#cancel .cancelBlock table caption {
	width: 100%;
	clear: both;
	margin: 0;
	padding: 5px 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.6em;
	color: #FFF;
	background: #FF3313;
}
#insurance .insuranceBlock table th,
#insurance .insuranceBlock table td,
#option .optionBlock table th,
#option .optionBlock table td,
#cancel .cancelBlock table th,
#cancel .cancelBlock table td {
	padding: 5px;
	font-size: 1em;
	line-height: 1.4em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#option .optionBlock table td {
	text-align: center;
}
#option .optionBlock table td.tal {
	text-align: left;
}
#insurance .insuranceBlock table th {
	text-align: left;
	vertical-align: top;
	background: #F5F5F5;
}
#option .optionBlock table th {
	background: #F5F5F5;
}
#option .optionBlock table th span {
	font-size: 0.8em;
}
#insurance ul.listL {
	width: 100%;
	max-width: 960px;
	clear: both;
	margin: 0 auto;
}
#insurance ul.listL li {
	width: 100%;
	margin-left: 2%;
	padding: 5px 0;
	font-size: 1em;
	line-height: 1.6em;
	list-style: disc outside;
	box-sizing: border-box;
}
#insurance ul.listL hr {
	width: 100%;
	height: 1px;
	border: 0 none;
	background: #CCC;
}
#insurance ul.listL li ul.listS {
	width: 100%;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin-top: 10px;
}
#insurance ul.listL li ul.listS li {
	width: 48%;
	padding: 5px 0;
	font-size: 0.9em;
	line-height: 1.6em;
	text-align: left;
	list-style: none;
	box-sizing: border-box;
}
#option img.img_one_way {
	width: 100%;
	display: block;
	margin: 10px auto;
}

/*-- よくあるご質問 --*/
#guide .faqCatg {
	width: 100%;
	clear: both;
	padding: 10px;
	font-size: 1.3em;
	line-height: 1em;
	color: #FFF;
	text-align: center;
	background: #666;
	box-sizing: border-box;
}
#guide ul.navi {
	width: 100%;
	clear: both;
	margin: 0 auto;
	overflow: hidden;
}
#guide div.question {
	position: relative;
	width: 100%;
	height: 40px;
	clear: both;
	display: table;
	cursor: pointer;
	margin: 20px auto 0;
	border-top: solid 1px #FF3413;
	background: url("../images/arrow_red_down.png") no-repeat 98% center;
	background-size: 12px;
	box-sizing: border-box;
}
#guide div.question .icon_q {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0px;
	left: 0px;
	display: block;
	padding: 10px; 
	background: #FF3413;
	box-sizing: border-box;
}
#guide div.question .icon_q img {
	width: 20px;
}
#guide div.question h3 {
	width: 100%;
	display: table-cell;
	padding: 0 50px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	vertical-align: middle;
	box-sizing: border-box;
}
#guide div.open {
	cursor: pointer;
	background: url("../images/arrow_red_up.png") no-repeat 98% center;
	background-size: 12px;
	box-sizing: border-box;
}
#guide ul.answer {
	position: relative;
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0 20px 100px;
	box-sizing: border-box;
}
#guide ul.answer p {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#guide ul.answer p a.faqLink {
	display: block;
	padding-left: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	color: #06C;
	background: url("../images/arrow_red_right.png") no-repeat left center;
	background-size: 12px;
}

/*-- お問い合わせ --*/
#guide .contactBlock {
	width: 100%;
	clear: both;
}
#guide .contactBlock .text {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}
#guide .contactBlock .text strong {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.1em;
	color: #FF3413;
}
#guide .contactBlock table {
	width: 100%;
	max-width: 960px;
	clear: both;
	margin: 0 auto;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#guide .contactBlock caption {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1em;
	color: #FFF;
	border-bottom: solid 1px #CCC;
	background: #999;
}
#guide .contactBlock table td {
	padding: 5px 10px;
	font-size: 1em;
	line-height: 1.6em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
	background: #F5F5F5;
}
#guide .contactBlock ul li {
	width: 96%;
	margin: 5px 0 5px 4%;
	list-style: disc outside;
}


/*==============================
 店舗情報
==============================*/
#shop {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
}
#shop ul.shopTab {
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	z-index: 6000;
	margin: 20px auto;
}
#shop ul.shopTab li {
	width: 19%;
	height: 40px;
	display: block;
}
#shop ul.shopTab li br {
	display: none;
}
#shop ul.shopTab li a {
	width: 100%;
	height: 30px;
	display: block;
	font-size: 1em;
	font-weight: bold;
	line-height: 28px;
	text-align: center;
	color: #FF3413;
	border: solid 1px #FF3413;
	border-radius: 5px;
	box-sizing: border-box;
}
#shop .shopWrap {
	width: 90%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
}
#shop .shopWrap a.linkIndex {
	height: 20px;
	float: right;
	clear: both;
	display: block;
	margin-bottom: 20px;
	padding-right: 20px;
	font-size: 1em;
	line-height: 20px;
	text-align: right;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}
#shop .shopBlock {
	position: relative;
	width: 90%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 0 0 20px;
	overflow: hidden;
}
#shop #kyoto_nara,
#shop #osaka_out,
#shop #osaka_in,
#shop #hyogo,
#shop #yamaguchi {
	position: absolute;
	height: 90px;
	top: -90px;
}
#shop h3 {
	width: 100%;
	height: 30px;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	color: #FFF;
	background: #666;
}
#shop ul.shopList {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#shop ul.shopList::after {
    content: "";
    display: block;
    width: 48%;
    height: 0;
	/*order: 1; 4列の場合に指定*/
}
#shop ul.shopList li {
	width: 48%;
	margin-bottom: 20px;
	text-align: center;
}
#shop ul.shopList li img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#shop ul.shopList li h4 {
	width: 100%;
	clear: both;
	padding: 10px 0 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
}
#shop ul.shopList li address {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.1em;
	line-height: 1.4em;
}
#shop ul.shopList li a {
	width: 50%;
	height: 30px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding-right: 10px;
	font-size: 1em;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	color: #FFF;
	border-radius: 15px;
	background: url("../images/arrow_white_right.png") no-repeat right 10px center #FF3413;
	background-size: 8px;
	box-sizing: border-box;
}
#shop .shopInfo {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
#shop .shopInfo .shopName {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto 20px;
	text-align: center;
}
#shop .shopInfo .shopName h4 {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 10px;
	font-size: 2.4em;
	line-height: 1em;
}
#shop .shopInfo .shopName address {
	width: 100%;
	clear: both;
	display: block;
	font-size: 1.4em;
	line-height: 1em;
}
#shop .shopInfo .shopTel {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
#shop .shopInfo .shopTel a {
	width: 100%;
	clear: both;
	display: block;
	font-size: 1.6em;
	line-height: 1em;
}
#shop .shopInfo .shopTel a span {
	font-size: 1.2em;
}
#shop .shopInfo .shopTel span.time {
	display: block;
	margin-top: -20px;
	font-size: 0.9em;
}
#shop a.btnReserve {
	width: 70%;
	height: 40px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	border-radius: 20px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
}
#shop .shopInfo img {
	width: 100%;
	height: 180px;
	clear: both;
	display: block;
	margin-bottom: 20px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#shop .shopInfo .shopInfo_R {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#shop .shopInfo .shopInfo_R p {
	width: 100%;
	clear: both;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
}
#shop .shopInfo .shopInfo_R dl {
	width: 100%;
	clear: both;
	padding: 10px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: flex-start;
	align-content: flex-start;
}
#shop .shopInfo .shopInfo_R dl dt {
	width: 25%;
	height: 30px;
	display: block;
	padding: 10px 0;
}
#shop .shopInfo .shopInfo_R dl dt span {
	width: 100%;
	height: 24px;
	display: block;
	font-size: 1em;
	line-height: 24px;
	text-align: center;
	color: #FFF;
	border-radius: 15px;
	background: #FF3413;
}
#shop .shopInfo .shopInfo_R dl dd {
	width: 73%;
	display: block;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.6em;
}
#shop .shopInfo .shopInfo_R table {
	width: 100%;
	clear: both;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
	
}
#shop .shopInfo .shopInfo_R table td {
	padding: 10px 10px;
	font-size: 1.1em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#shop .shopMap {
	width: 100%;
	height: 200px;
	clear: both;
	margin-bottom: 20px;
	overflow: hidden;
}
#shop .shopNote {
	width: 100%;
	clear: both;
	display: block;
	margin: 20px auto 20px;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.6em;
	border-top: solid 1px #CCC;
}

/*==============================
 イベント&キャンペーン情報
==============================*/
#campaign {
	width: 100%;
	clear: both;
}
.campaignHome {
	padding: 20px 0 60px;
	background: url("../images/campaign/img_bottom.png") no-repeat center bottom #EEE;
	background-size: 100%;
}
#campaign .campaignBlock {
	position: relative;
	width: 96%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
    padding: 20px 0;
}
#campaign .campaignTitle {
	clear: both;
	display: block;
	margin: 0 auto 10px;
	font-size: 2em;
	line-height: 64px;
	text-align: center;
}
#campaign .campaignTitle span.campaignTitleIcon {
	width: 64px;
	display: inline-block;
}
#campaign dl.campaignList {
	position: relative;
	width: 48%;
	float: left;
	display: block;
	margin: 0 auto 20px;
	padding: 2%;
	background: #FFF;
	filter: drop-shadow(7px 7px 5px rgba(0,0,0,0.2));
	box-sizing: border-box;
}
#campaign dl.campaignList a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: block;
	z-index: 1000;
	transition: 0.2s;
}
#campaign dl.campaignList a:hover {
	background: rgba(255,255,255,0.5);
}
#campaign dl.campaignList img.thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#campaign dl.campaignList dt {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	padding: 5px 4%;
	box-sizing: border-box;
}
#campaign dl.campaignList dt h3 {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
#campaign dl.campaignList dt img.mark {
	position: absolute;
	width: 78px;
	top: -40px;
	left: -40px;
	z-index: 2000;
}
#campaign dl.campaignList dd {
	width: 100%;
	clear: both;
	padding: 5px 4%;
	font-size: 1.1em;
	line-height: 1.4em;
	box-sizing: border-box;
}
#campaign a.campaignBtn {
	width: 50%;
	height: 40px;
	clear: both;
	display: block;
	margin: 20px auto;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	border-radius: 30px;
	background: url("../images/arrow_white_right.png") no-repeat right 20px center #FF3413;
	background-size: 10px;
}

/*-- キャンペーン詳細ページ --*/
#campaign .campBox {
	position: relative;
	width: 100%;
	clear: both;
	margin: 10px auto;
}
#campaign .campBox h3.campTitle {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 2.4em;
	line-height: 1.6em;
	text-align: center;
}
#campaign .campBox h3.campTitle img.flag {
	width: 10%;
	display: inline-block;
}
#campaign .campBox .campCopy {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 1.6em;
	text-align: center;
}
#campaign .campBox dl.campInfo {
	width: 100%;
	clear: both;
	padding: 10px 0;
	border-bottom: solid 5px #EEE;
}
#campaign .campBox dl.campInfo dt,
#campaign .campBox dl.campInfo dd {
	width: 100%;
    clear: both;
    display: block;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
#campaign .campBox dl.campInfo dt {
	font-weight: bold;
    color: #CCC;
}
#campaign .campBox dl.campInfo dd b.red {
	color: red;
}
#campaign a.btnBack_camp {
	width: 240px;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	text-align: center;
	border-radius: 25px;
	background: #FF3413;
	background-size: 20px;
}


/*==============================
 法人のお客様へ
==============================*/
#corporation {
	width: 100%;
	clear: both;
	margin-bottom: 40px;
}
#corporation .bgGray {
	background: #F5F5F5;
}
#corporation .corpBlock {
	width: 100%;
	clear: both;
}
#corporation .corpBox {
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
}
#corporation .corpCopy {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 2.4em;
	line-height: 1.4em;
	text-align: center;
}
#corporation .corpCopy2 {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	/*color: #FF3313;*/
}
#corporation .corpRead {
	width: 100%;
	clear: both;
	display: block;
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 1.6em;
	text-align: center;
}
#corporation dl.corpList {
	width: 32%;
	display: block;
	margin-bottom: 20px;
}
#corporation dl.corpList .subject {
	width: 100%;
	clear: both;
	margin-bottom: 5px;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	color: #FF3313;
}
#corporation dl.corpList dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
}
#corporation dl.corpList dd {
	width: 100%;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
}
#corporation .corpStrength {
	position: relative;
	width: 90%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-webkit-align-content: flex-start;
		align-content: flex-start;
		-webkit-align-item: flex-start;
		align-item: flex-start;
		/*-webkit-flex-wrap: wrap;
		flex-wrap: wrap;*/
	margin: 20px auto;
	padding: 40px 20px 20px;
	border: solid 5px #FF3313;
	border-radius: 20px;
	box-sizing: border-box;
}
#corporation .corpStrength .corpStrength_title {
	position: absolute;
	width: 70%;
	top: -20px;
	left: calc(50% - 35%);
	display: block;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.6em;
	text-align: center;
	color: #FF3313;
	background: #FFF;
}
#corporation .corpStrength dl.corpStrength_list {
	width: 30%;
	display: block;
}
#corporation .corpStrength dl.corpStrength_list img {
	width: 60%;
	max-width: 200px;
	display: block;
	margin: 0 auto;
}
#corporation .corpStrength dl.corpStrength_list dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
}
#corporation .corpStrength dl.corpStrength_list dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
#corporation .corpText {
	width: 90%;
	clear: both;
	margin: 0 auto 10px;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}
#corporation a.btnForm_corp {
	width: 50%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding-left: 30px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	text-align: center;
	border-radius: 25px;
	background: url("../images/icon_contact_w.png") no-repeat left 20px center #FF3413;
	background-size: 30px;
	box-sizing: border-box;
}
#search .corpForm_title {
	width: 100%;
	clear: both;
	display: block;
	margin: 40px 0 20px;
	font-size: 2.4em;
	line-height: 1.6em;
	text-align: center;
}


/*==============================
会社概要・特別商取引法に基づく表示
==============================*/
#outline {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#outline table {
	width: 100%;
	clear: both;
	margin: 0 auto;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
#outline table th,
#outline table td {
	padding: 15px 10px;
	font-size: 1em;
	line-height: 1.6em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
#outline table th {
	width: 20%;
	text-align: left;
	vertical-align: top;
}
#outline ol li {
	width: 96%;
	margin-left: 7%;
	list-style: decimal outside;
}
#outline ul li {
	width: 96%;
	margin-left: 7%;
	list-style: disc outside;
}


/*==============================
お知らせ
==============================*/
#news {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
}
#news dl.newsList {
	width: 100%;
	float: left;
	clear: both;
	padding: 15px 0;
	border-bottom: solid 1px #CCC;
}
#news dl.newsList dt {
	position: relative;
	width: 100%;
    clear: both;
	display: block;
    margin-bottom: 10px;
	font-size: 1em;
	line-height: 1.6em;
	color: #999;
	box-sizing: border-box;
}
#news dl.newsList dt span.mark_news,
#news dl.newsList dt span.mark_event {
	width: 25%;
	display: inline-block;
	margin-right: 5%;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
	color: #FFF;
	border-radius: 20px;
}
#news dl.newsList dt span.mark_news {
	background: #1E87C0;
}
#news dl.newsList dt span.mark_event {
	background: #6BB436;
}
#news dl.newsList dd {
	width: 100%;
    clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
#news dl.newsList dd a {
	text-decoration: underline;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	clear: both;
	margin: 20px 0;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	float: both;
	margin-bottom: 20px;
	font-size: 1.3em;
	line-height: 1.4em;
	text-align: center;
}
#news .content {
	width: 100%;
	float: both;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	border-top: solid 1px #CCC;
}
#news .page_navi {
	position: relative;
	width: 100%;
	clear: both;
	border-top: solid 1px #CCC;
}
#news .page_navi .prev {
	position: absolute;
	width: auto;
	max-width: 40%;
	top: 0px;
	left: 0px;
	display: flex;
	padding: 20px 0;
	align-items: center;
	font-size: 1em;
	line-height: 20px;
	box-sizing: border-box;
}
#news .page_navi .prev a {
	padding-left: 15px;
	text-decoration: none;
	background: url("../images/arrow_red_left.png") no-repeat left center;
	background-size: 8px;
}
#news .page_navi .next {
	position: absolute;
	width: auto;
	max-width: 40%;
	top: 0px;
	right: 0px;
	display: flex;
	padding: 20px 0;
	align-items: center;
	font-size: 1em;
	line-height: 20px;
	box-sizing: border-box;
}
#news .page_navi .next a {
	padding-right: 15px;
	text-decoration: none;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 8px;
}
#news .page_navi a.btnList {
	width: 30px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
#news .page_navi a.btnList span {
	width: 30px;
	height: 1px;
	clear: both;
	display: block;
	margin: 0 auto 7px;
	background: #FF3413;
}


/*==============================
お問い合わせ（共通）
==============================*/
.formCommon {
	width: 90%;
	clear: both;
	margin: 10px auto;
	padding: 20px 0 0;
}
.formCommon .text {
	width: 100%;
	clear: both;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
.formCommon .thanks {
	width: 100%;
	clear: both;
	padding: 40px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: center;
}
.formCommon dl {
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	display: block;
	padding: 10px 0;
}
.formCommon dl+dl {
	border-top: solid 1px #CCC;
}
.formCommon dl a {
	text-decoration: underline;
	color: #06C;
}
.formCommon dl button.btnUpdate {
	width: 80px;
	height: 30px;
	float: right;
	display: block;
	margin-top: 10px;
	font-size: 1em;
	line-height: 20px;
	vertical-align: middle;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	border: none;
	border-radius: 15px;
	background: #FF3413;
}
.formCommon dl a.linkPassword {
	float: right;
	height: 30px;
	display: block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 30px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}
.formCommon dl dt {
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
.formCommon dl dt .must {
	width: 48px;
	height: 20px;
	display: inline-block;
	margin-left: 5px;
	font-size: 0.8em;
	line-height: 20px;
	vertical-align: middle;
	text-align: center;
	color: #FF3413;
	border: solid 1px #FF3413;
	border-radius: 10px;
}
.formCommon dl dt span.option {
	width: 20px;
	display: none;
	margin: 0 10px;
	cursor: pointer;
}
.formCommon dl dt .popUp {
	width: 100%;
	clear: both;
	padding: 5px 0 10px;
	font-size: 0.7em;
	line-height: 1.4em;
	color: #999;
}
.formCommon dl dt .note,
.formCommon dl dd .note {
	margin-top: 5px;
	font-size: 1em;
	line-height: 1.4em;
}
.formCommon dl dd {
	width: 100%;
	float: left;
	font-size: 1.2em;
	line-height: 1.6em;
}
.formCommon dl dd .error {
	margin-left: 5px;
	font-size: 1em;
	line-height: 1.2em;
	color: red;
}
.formCommon dl dd input {
	height: 40px;
	margin: 0 1%;
	font-size: 0.9em;
	box-sizing: border-box;
}
.formCommon dl dd .noBorder {
	border: none;
}
.formCommon dl dd select {
	height: 40px;
	margin: 0 1%;
	padding-right: 30px;
	font-size: 0.9em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background: url("../images/arrow_select.png") no-repeat right 10px center #FFF;
	background-size: 10px;
	box-sizing: border-box;
}
.formCommon dl dd .ip01 {width: 40%}
.formCommon dl dd .ip02 {width: 100%}
.formCommon dl dd .ip03 {width: 20%}
.formCommon dl dd .ip04 {width: 25%}
.formCommon dl dd .ip05 {width: 20%}
.formCommon dl dd textarea {
	margin: 0 1%;
	padding: 5px;
	box-sizing: border-box;
}
.policyBlock {
	width: 100%;
	clear: both;
	text-align: center;
}
.policyBlock a {
	height: 20px;
	clear: both;
	display: inline-block;
	margin: 0 20px;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 20px;
	background: url("../images/arrow_red_right.png") no-repeat right center;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- 入力内容の確認 --*/
.formConfirm {
	width: 90%;
	clear: both;
	margin: 30px auto;
}
.formConfirm h5.formConfirm_titleBar {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	background: #FF3413;
}
.formConfirm table {
	width: 100%;
	clear: both;
	margin: 0 auto;
	border-top: solid 1px #CCC;
	border-left: solid 1px #CCC;
}
.formConfirm table td {
	padding: 10px 5px;
	font-size: 1.2em;
	line-height: 1.4em;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
.formConfirm table td .total {
	font-size: 1em;
	line-height: 1.6em;
	font-weight: bold;
	color: #FF3413;
}
.formConfirm table td .total sub {
	font-size: 1.8em;
}
.formConfirm table td .note {
	width: 100%;
	clear: both;
	display: block;
	font-size: 0.8em;
	color: red;
}

/*クレジットカード*/
.creditBlock {
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
.creditBlock p {
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}
.creditBlock p.declaration {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	color: #FF3413;
	border: solid 1px #FF3413;
	box-sizing: border-box;
}
.creditBlock img {
	width: 100%;
}

/*-- 同意確認 --*/
.agreeBlock {
	width: 100%;
	clear: both;
	margin: 20px auto;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	box-sizing: border-box;
}
.agreeBlock button {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: #FF3413;
	box-sizing: border-box;
}
.agreeBlock #link {
	width: 80%;
	height: 50px;
	clear: both;
	display: block;
	margin: 20px auto 0;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: default;
	background: #DDD;
	box-sizing: border-box;
}
.agreeBlock #link button.activate {
	width: 100%;
	height: 50px;
	clear: both;
	display: block;
	margin: 0 auto;
	font-size: 1em;
	font-weight: bold;
	line-height: 1em;
	color: #FFF;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	background: #FF3413;
	box-sizing: border-box;
}

/*プライバシーポリシー*/
.privacyArea {
	width: 100%;
	max-width: 1200px;
	clear: both;
	margin: 0 auto;
	padding: 20px 40px;
	border: solid 5px #EEE;
	box-sizing: border-box;
}
.privacyArea h4 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}
.privacyArea .text {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.3em;
	line-height: 1.6em;
}
.privacyArea ol.privacyArea_list {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 5% 0;
	border-top: solid 1px #CCC;
	box-sizing: border-box;
}
.privacyArea ol.privacyArea_list li {
	width: 97%;
	clear: both;
	margin-left: 3%;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.2em;
	list-style: decimal outside
}


/*==============================
サイトポリシー／個人情報保護方針
==============================*/
#policy {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding-bottom: 20px;
}
#policy .box {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#policy .box_line {
	padding: 20px 0;
	border-top: solid 1px #CCC;
}
#policy .date {
	width: 100%;
	float: right;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
	padding-bottom: 20px;
	text-align: right;
}
#policy .text {
	width: 100%;
	clear: both;
	padding: 0;
	font-size: 1em;
	line-height: 1.6em;
	text-align: left;
	border: none;
}
#policy h3.subject {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
}
#policy .text a {
	color: #03C;
	text-decoration: underline;
}
#policy .text a:hover {
	color: #CCC;
}
#policy dl {
	width: 100%;
	float: left;
	clear: both;
	padding: 0;
	border: none;
}
#policy dl+dl {
	margin-top: 10px;
}
#policy dl dt {
	width: 4%;
	float: left;
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.6em;
	text-align: right;
}
#policy dl dd {
	width: 94%;
	float: right;
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.6em;
}
#policy dl ul {
	width: 95%;
	float: right;
	clear: both;
	margin-top: 10px;
}
#policy dl ul li {
	float: left;
	clear: both;
	margin-bottom: 5px;
	font-size: 1.1em;
	line-height: 1.4em;
	list-style-position: outside;
	list-style-type: disc;
}
#policy .privacyList {
	width: 100%;
	clear: both;
	padding: 10px 0 20px;
	box-sizing: border-box;
}
#policy .contactBox {
	width: 100%;
	clear: both;
	margin: 20px 0 0;
}
#policy .contactBox h3 {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	padding: 10px 0;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}
#policy .contactBox .text {
	width: 100%;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}
#policy .contactBox .tel {
	width: 100%;
	clear: both;
	margin: 20px 0;
	font-size: 2.4em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
}
#policy .contactBox .tel img {
	width: 40px; 
	display: inline-block;
	margin-right: 10px;
}
#policy .contactBox .tel span {
	display: block;
	font-size: 0.4em;
	font-weight: normal;
}

/*==============================
サイトマップ
==============================*/
#sitemap {
	width: 90%;
	clear: both;
	margin: 0 auto;
}
#sitemap ul.menuL {
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
}
#sitemap ul.menuL::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
	/*order: 1; 4列の場合に指定*/
}
#sitemap ul.menuL li {
	width: 100%;
}
#sitemap ul.menuL li.narrow {
	width: 48%;
}
#sitemap ul.menuL li+li {
	border-top: solid 1px #CCC;
}
#sitemap ul.menuL li a {
	display: block;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1em;
}
#sitemap ul.menuL li a {
	width: 100%;
}
#sitemap ul.menuL li a.w30 {
	width: 48%;
	float: left;
}
#sitemap ul.menuGuide {
	width: 100%;
	float: right;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
    padding: 0 5% 5% 5%;
    box-sizing: border-box;
}
#sitemap ul.menuGuide li {
	width: 48%;
	display: inline-block;
}
#sitemap ul.menuGuide li+li {
	border: none;
}
#sitemap ul.menuGuide li a {
	display: block;
	padding: 5px 0;
	font-size: 1em;
	line-height: 1.2em;
}
#sitemap .menuBox {
	width: 100%;
	float: right;
	display: -webkit-flex;
	display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
    padding: 0 5% 5% 5%;
    box-sizing: border-box;
}
#sitemap ul.menuShop {
	width: 48%;
    margin-bottom: 20px;
}
#sitemap ul.menuShop li,
#sitemap ul.menuShop li.menuShop_area {
	width: 100%;
	display: block;
	box-sizing: border-box;
}
#sitemap ul.menuShop li {
	padding-left: 10%;
}
#sitemap ul.menuShop li.menuShop_area {
	padding-left: 0;
}
#sitemap ul.menuShop li+li {
	border: none;
}
#sitemap ul.menuShop li a {
	display: block;
	padding: 5px 0;
	font-size: 1em;
	line-height: 1em;
}


/*==============================
Footer
==============================*/
footer {
	width: 90%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
}
footer #page-top{
	position: fixed;
	width: 100px;
	right: 20px;
	bottom: 70px;
	z-index: 10000;
	border-radius: 50px;
	background: rgba(0,0,0,0.25);
}

/*フッター上部*/
footer .footerTop {
	position: relative;
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding-bottom: 20px;
	border-bottom: solid 5px #EEE;
}
footer .footerTop img.footerLogo {
	width: 30%;
	float: left;
	clear: left;
}
footer .footerTop ul.footerTop_menu {
	position: absolute;
	width: auto;
	bottom: 15px;
	right: 0px;
}
footer .footerTop ul.footerTop_menu li {
	width: 36px;
	display: inline-block;
	margin-left: 20px;
}

/*フッター中部*/
footer .footerMiddle {
	position: relative;
	width: 100%;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto 20px;
	padding: 10px 0;
}
footer .footerMiddle .pos1 {width: 90%}
footer .footerMiddle .pos2 {width: 90%}
footer .footerMiddle .pos3 {width: 90%}
footer .footerMiddle .pos4 {width: 90%}
footer .footerMiddle ul.footerMiddle_menu {
	clear: both;
	display: block;
	margin: 0 auto;
}
footer .footerMiddle ul.footerMiddle_menu li.menuL {
	float: left;
	clear: both;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 20px 0 0 15px;
	font-size: 1.2em;
	line-height: 1em;
	background: url("../images/list_red.png") no-repeat left top 22px;
	background-size: 10px;
	box-sizing: border-box;
}
footer .footerMiddle ul.footerMiddle_menu li.menuL a {
	width: 100%;
	float: left;
	clear: both;
	display: block;
}
footer .footerMiddle ul.footerMiddle_menu ul {
	float: left;
	margin-top: 10px;
}
footer .footerMiddle ul.footerMiddle_menu ul li.menuM {
	width: 100%;
	clear: both;
	display: block;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1em;
	box-sizing: border-box;
}
footer .footerMiddle ul.footerMiddle_menu ul li.menuM a {
	color: #333;
}
footer .footerMiddle ul.footerMiddle_menu ul.menuShop {
	width: 33.333%;
	float: left;
	display: block;
}
footer .footerMiddle ul.footerMiddle_menu ul.menuShop li.menuS {
	clear: both;
	display: block;
	padding: 10px 0 0 15px;
	font-size: 0.9em;
	line-height: 1.2em;
	box-sizing: border-box;
}
footer .footerMiddle ul.footerMiddle_menu ul.menuShop li.menuS a {
	color: #333;
}

/*フッター下部*/
footer .footerBottom {
	width: 100%;
	clear: both;
	margin: 0 auto;
	border-top: solid 5px #FF3413;
}
footer .footerBottom ul.footerBottom_menu {
	width: 100%;
	clear: both;
	padding: 20px 0;
	text-align: center;
}
footer .footerBottom ul.footerBottom_menu li {
	display: inline-block;
	margin: 5px 0;
	padding-right: 20px;
	font-size: 1em;
	line-height: 1.4em;
}
footer .footerBottom ul.footerBottom_menu li+li {
	padding-left: 20px;
	border-left: solid 1px #CCC;
}
footer .footerBottom img.groupLink {
	width: 50%;
	clear: both;
	margin: 0 25% 20px;
	border: solid 1px #CCC;
}
footer .footerBottom .copyright {
	width: 100%;
	clear: both;
	font-size: 0.8em;
	line-height: 1.2em;
	text-align: center;
	color: #666;
}