/*------------------------------------
汎用
------------------------------------*/
html {
	max-width: 640px;
	min-width: 320px;
}

body {
	max-width: 640px;
	min-width: 320px;
	min-height: 100%;
	padding-bottom: 52px;
	overflow-y: hidden;
}

main {
	background: url(../img/bottom.png), linear-gradient(to bottom, #fff 90%, #6bb7ff 100%);
	background-size: 250vw;
	background-repeat: no-repeat;
	background-position: bottom center;
	padding: 0 0 200px;
}

/*コンティナ*/
.container {
	display: block;
	width: 94%;
	margin: 0 auto;
}

/*汎用flex*/
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

/*パンくずリスト*/
.container-breadcrumbs {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #b3b3b3;
}
#breadcrumbs {
	width: 96%;
	display: flex;
	margin: 0 auto;
}
#breadcrumbs ul {
	display: block;
	list-style: none;
    margin: 0 auto;
    overflow: scroll;
}
#breadcrumbs ul li {
	list-style: none;
	display: table-cell;
	vertical-align: middle;
	font-size: 11px;
	line-height: 3;
	padding: 0 5px;
	overflow-x: scroll;
	white-space: nowrap
}
#breadcrumbs ul li:first-child {
	padding-left: 0;
}
#breadcrumbs ul li a {
    display: block;
    color: #333;
}
#breadcrumbs ul li a .fa-home {
	display: block;
	font-size: 18px;
	margin-top:-3px;
}

/*ページネーション*/
.pagination {
	display: flex;
	justify-content: center;
	min-width: 100%;
	line-height: 2;
	background: none;
	text-align: center;
	margin: 24px auto;
}
.pagination span, .pagination a {
	padding: 4px 16px;
	margin: 0 6px;
	width: auto;
	background: #fff;
	box-shadow: 0 0 0 1px #b3b3b3;
	border-radius: 3px;
}
.pagination a {
	display: inline;
	margin: 0 6px;
	padding: 4px 16px;
	color: #333;
}
.pagination a:hover {
	box-shadow: 0 0 0 1px #225fb7;
	color: #225fb7;
	opacity: 1;
}
.pagination .current {
	box-shadow: 0 0 0 1px #225fb7;
	margin: 0 6px;
	color: #225fb7;
	opacity: 1;
}
/*------------------------------------
ヘッダー
------------------------------------*/
header {}
header #header_top {
	border-top: 4px solid  #225fb7;
	border-bottom: 1px solid #b3b3b3;
}
header #header_top.flex-wrap {
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	position: relative;
}
header #header_top .icon {display: none;}
header #header_top .logo {
	width: calc(100% - 46px);
	transition: .3s;
	padding: 8px 0;
}
header #header_top .logo:hover {opacity: .8;}
header #header_top .logo span {
	display: block;
	color: #000052;
	font-size: 10px;
	text-align: center;
	line-height: 1.5;
}
header #header_top .logo img {
	display: block;
	width: 211px;
	margin: 0 auto;
}
header #header_top .tel {display: none;}
/* ハンバーガー */
header #header_top #nav-toggle {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin-left: auto;
	padding: 0;
	width: 54px;
	height: 54px;
	border-left: 1px solid #b3b3b3;
	z-index: 9001;
}
header #header_top #nav-toggle span {
	position: relative;
	display: block;
	width: 32px;
	height: 1px;
	margin: auto;
	background: #000052;
	transition: all .4s;
}
header #header_top #nav-toggle span:nth-child(1) {top:14px;}
header #header_top #nav-toggle span:nth-child(2) {
	top:20px;
	opacity: 1;
	transition: all .3s;
}
header #header_top #nav-toggle span:nth-child(3) {top:26px;}
header #header_top #nav-toggle:hover {cursor: pointer;}
header #header_top #nav-toggle p {
	position: absolute;
	width: 100%;
	bottom: 6px;
	left: auto;
	right: auto;
	color: #000052;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	transform: scale(0.75);
	opacity: 1;
	transition: all .3s;
}
/*メニュー*/
header #header_bottom {
	display: block;
	position: fixed;
	background: #225fb7;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	opacity: 0;
	visibility: hidden;
	transition: .35s ease;
	z-index: 9000;
}
header #header_bottom .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
header #header_bottom nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
header #header_bottom nav a {
	position: relative;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 14px;
	padding: 10px 0;
	z-index: 1;
}
header #header_bottom nav .current {background: #f15a24;}
header #header_bottom nav a:hover {opacity: 1;}
header #header_bottom nav a:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 100%;
	color: transparent;
	opacity: 0;
	background: #f15a24;
	z-index: -1;
	transition: all .3s;
}
header #header_bottom nav a:hover:after {width: 100%; opacity: 1;}
header #header_bottom nav a i {
	color: #fff;
	font-size: 14px;
	margin: 0 12px 0 0;
	opacity: 1;
}
header #header_bottom .tel {
	display: block;
	width: 210px;
	margin-top: 16px;
}
header #header_bottom .tel p{
	color: #fff;
	text-align: center;
	padding: 4px 0;
}
.open {}
.open header #header_top #nav-toggle {
	position: fixed;
	top: 4px;
	right: 0;
	border-left: none;
}
.open header #header_top #nav-toggle span:nth-child(1) {
	transform: rotate(45deg);
	top:21px;
	background: #fff;
}
.open header #header_top #nav-toggle span:nth-child(2) {
	opacity: 0;
}
.open header #header_top #nav-toggle span:nth-child(3) {
	transform: rotate(-45deg);
	top:19px;
	background: #fff;
}
.open header #header_top #nav-toggle p {opacity: 0;}
.open header #header_bottom {
	opacity: 1;
	left: 0;
	width: 100%;
	visibility: visible;
}
/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
トップページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
上
------------------------------------*/
#index_top {
	background: url(../img/index/top_back.jpg) no-repeat;
	background-size: auto 300px;
	padding: 20px 0;
}
#index_top .search {
	width: 100%;
	background: #fff;
	border: 4px solid #ff0000;
	border-radius: 8px;
}
#index_top .search h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ff0000;
	padding: 4px 0 8px;
}
#index_top .search h2 span {
	color: #fff;
	font-size: 14px;
	line-height: 1;
}
#index_top .search h2 img {
	display: block;
	width: 21px;
	margin-right: 10px;
}
#index_top .search .yoyaku {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	height: calc(100% - 34px);
}
#index_top .search .yoyaku .image {
	position: relative;
	width: 100%;
	max-width: 320px;
	height: 225px;
	background: url(../img/index/uketuke.png) bottom right/173px auto no-repeat;
	border-radius: 10px;
}
#index_top .search .yoyaku .image h2 {
	position: absolute;
	top: 20px;
	left: 16px;
	color: #ff0000;
	font-size: 23px;
	line-height: 1.75;
	font-weight: 700;
	background: transparent;
}
#index_top .search .yoyaku a {
	display: block;
	position: relative;
	width: 80%;
	bottom: 2px;
	margin: 14px auto;
	padding: 2px 0;
	background: #ff0000;
	border-radius: 10px;
	box-shadow: 0 3px 0 #990000;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	opacity: 1;
	transition: 0s;
}
#index_top .search .yoyaku a:active {
	bottom: -1px;
	box-shadow: none;
}
#index_top .midashi {width: 100%; overflow: hidden; margin-top: 20px;}
#index_top .midashi .slider-arrow {
	position: absolute;
	content: "";
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 50%;
	transform: translate(0,-50%);
	width: 32px;
	height: 32px;
	border: 1px solid #fff;
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
	transition: all .3s ease;
}
#index_top .midashi .slider-arrow i {
	font-size: 16px;
	color: #fff;
}
#index_top .midashi .slider-arrow.prev {left: 8px;}
#index_top .midashi .slider-arrow.next {right: 8px;}
#index_top .midashi .slider-arrow:hover {opacity: .7;}
#index_top .paypay {
	display: block;
	width: 88%;
	background: #fff;
	margin-top: 20px;
	padding: 15px 4%;
	background: #ff0033;
	border-radius: 8px;
}
#index_top .paypay .left {margin: 0 auto;}
#index_top .paypay .center {margin: 15px auto;}
#index_top .paypay .center p {color: #fff; font-size: .95em; line-height: 1; white-space: nowrap; text-align: center;}
#index_top .paypay .center p.credit {
	margin-top: 15px;
	white-space: unset;
}
#index_top .paypay .center p.big {font-size: 1.75em; line-height: 1; letter-spacing: 2.5px; font-weight: 700; margin: 10px 0 0 .5em;}
#index_top .paypay .center p.big span {display: inline-block; color: #fff; font-size: 1em; line-height: 1; letter-spacing: 2px; font-weight: 700; margin-right: 4px;}
#index_top .paypay .right {display: block; font-size: .95em; color: #000052; text-align: center; background: #fff; padding: 8px 0; border-radius: 5px;}
#index_top .paypay .right em {color: #000052; font-weight: 700;}
#index_top .point div {
	width: 100%;
	background: #f2f2f2;
	margin-top: 20px;
}
#index_top .point div h2 {
	display: flex;
	align-items: center;
	color: #000052;
	font-size: 18px;
	font-weight: 700;
	background: #fff;
	padding: 12px 0 12px 20px;
	border-top: 3px solid #ff0000;
}
#index_top .point div h2 img {
	display: block;
	width: 48px;
	margin-right: 20px;
}
#index_top .point .text {
	width: calc(100% - 48px);
	margin: 0;
	padding: 12px 24px;
}
#index_top .point .text h3 {font-size: 15px;}
#index_top .point .text p {font-size: 12px;}
/*------------------------------------
下
------------------------------------*/
#index_bottom {padding: 0;}
#index_bottom .left {width: 100%;}
#index_bottom .news_list {margin-bottom: 20px;}
#index_bottom .news_list h2 {
	display: flex;
	align-items: center;
	color: #000052;
	font-size: 16px;
	font-weight: 700;
	padding: 0 0 2px 6px;
	border-bottom: 1px solid #000052;
}
#index_bottom .news_list h2 i {
	display: block;
	font-size: 16px;
	color: #000052;
	margin-right: 10px;
}
#index_bottom .news_list .blog_box {
	display: block;
	margin: 20px 0 0;
}
#index_bottom .news_list .item {
	display: flex;
	padding: 10px 2px;
	border-bottom: 1px solid #b3b3b3;
}
#index_bottom .news_list .item:last-child {border-bottom: none;}
#index_bottom .news_list .item .date,
#index_bottom .news_list .item h3 {padding: 0 8px;}
#index_bottom .news_list .item .date {white-space: nowrap;}
#index_bottom .news_list .item h3 {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#index_bottom .news_list .brog_item {
	display: block;
	width: 100%;
	margin: 0 0 10px 0;
}
#index_bottom .news_list .brog_item:last-child {margin: 0;}
#index_bottom .news_list .brog_item img {
	width: 100%;
	height: 150px;
	margin: 0;
	object-fit: cover;
	object-position: 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#index_bottom .news_list .brog_item .date {
	font-size: 13px;
	margin-top: 6px;
	padding: 0 4px;
}
#index_bottom .news_list .brog_item h3 {
	line-height: 1.75;
	font-weight: 700;
	padding: 0 4px 6px;
}
#index_bottom .news_list .more {
	float: right;
	color: #000052;
	margin: 10px 10px 0 0;
}
#index_bottom .news_list .more i {
	position: relative;
	color: #000052;
	font-size: 13px;
	margin-left: 4px;
	top: 0;
}
#index_bottom .news_list:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
}
#index_bottom .banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#index_bottom .banner h3 {display: none;}
#index_bottom .banner a {
	display: block;
	margin: 0 auto;
}
#index_bottom .banner img {
	display: block;
	width: 300px;
	height: 100%;
	margin: 0 auto 10px;
}
#index_bottom .right {display: none;}
/*------------------------------------
フッター
------------------------------------*/
footer {}
footer .flex-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 20px;
}
footer .logo{margin: 0 10px;}
footer .logo span {
	display: block;
	color: #000052;
	text-align: center;
	font-size: 12px;
	line-height: 1.3;
}
footer .logo span.address {
	font-size: 12px;
	line-height: 2;
	margin-top: 8px;
}
footer .logo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	max-width: 316px;
}
footer .contact {margin: 0;}
footer .contact .tel .flex-wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
footer .contact .tel i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	color: #fff;
	font-size: 16px;
	background: #f15a24;
	border-radius: 50%;
	margin-right: 12px;
}
footer .contact .tel div span {
	display: block;
	text-align: center;
	line-height: 1;
}
/* 2024年3月 */
footer .contact .tel div span.holiday {
	display: inline-block;
	font-size: 11px;
}
footer .contact .tel div span.time {font-size: 12px;}
footer .contact .tel div a {
	display: block;
	font-size: 24px;
	color: #333;
	line-height: 1.5;
}
footer .contact .mail {
	display: block;
	width: 75%;
	color: #fff;
	font-size: 15px;
	text-align: center;
	background: #f15a24;
	margin: 0 auto;
	padding: 4px;
	border-radius: 4px;
	border: 1px solid #f15a24;
	opacity: 1;
}
footer .contact .mail i {
	color: #fff;
	font-size: 15px;
	margin-right: 8px;
}
footer .contact .mail:hover {
	color: #f15a24;
	background: #fff;
}
footer .contact .mail:hover i {color: #f15a24;}
footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px auto 0;
}
footer nav a {
	font-size: 14px;
	margin-top: 10px;
	padding: 2px 8px;
	line-height: 1;
	border-right: 1px solid #b3b3b3;
}
footer nav a:last-child {border: none;}
footer #scroll {
	width: 100vw;
	color: #225fb7;
	font-size: 12px;
	text-align: center;
	margin: 20px 0 0 -2%;
	padding: 8px 0;
	border-top: 1px solid #225fb7;
	background: #fff;
	cursor: pointer;
}
footer #scroll i {
	position: relative;
	top: 1px;
	color: #225fb7;
	font-size: 16px;
	margin-right: 8px;
}
footer .copyright {
	color: #fff;
	font-size: 10px;
	text-align: center;
	padding: 10px 0;
	background: #225fb7;
}
/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
車種・料金
------------------------------------*/
#price {}
#price section {margin: 20px auto;}
#price h2.type {
	color: #225fb7;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	background: #ffaaaa;
	padding: 2px 12px;
	margin-bottom: 12px;
}
#price h2.list {
	color: #225fb7;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 12px;
	padding: 2px 2px;
	border-bottom: 3px solid #ff0000;
}
#price h3 {
	font-size: 14px;
	font-weight: 700;
}
#price h3 em {font-size: 14px; font-weight: 700; margin-left: 8px;}
#price h3:before {
	content: "";
	display: inline-block;
	position: relative;
	width: 10px;
	height: 10px;
	top: 0;
	left: 0;
	margin-right: 6px;
	background: #333;
}
#price h4 {
	font-size: 13px;
	font-weight: 700;
	margin-top: 20px;
}
#price .carimg {display: none;}
#price table {
	display: block;
	width: 100%;
	margin: 10px 0;
}
#price table tr {}
#price table tr th{
	display: block;
	width: auto;
}
#price table tr td{display: block;}
#price table thead {
	display: block;
	float: left;
	overflow-x: scroll;
	border-top: 1px solid #aaa;
}
#price table thead tr th {
	display: block; 
	font-size: 13px;
	background: #dcdddd;
	margin-top: -1px;
	padding: 4px 8px;
	border: 1px solid #aaa;
}
#price table tbody {
	display: block; 
	width: auto; 
	overflow-x: auto; 
	white-space: nowrap;
}
#price table tbody tr {border-top: 1px solid #aaa;}
#price table tbody tr th,
#price table tbody tr td {
	display: block;
	font-size: 13px;
	text-align: center;
	margin-top: -1px;
	padding: 4px 8px;
	border: 1px solid #aaa;
	background: #fff;
}
#price table tbody tr{ 
	display: inline-block; 
	margin: 0 -3px;
	min-width: 50%;
}
#price table.hoshou {
	border: 1px solid #aaa;
	border-top: none;
}
#price table.hoshou tr {
	display: block;
	width: 100%;
	margin: 0;
}
#price table.hoshou th {
	display: block;
	width: 100%;
	padding: 4px 0;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #aaa;
}
#price table.hoshou td {
	display: block;
	padding: 4px 0;
	width: 100%;
	text-align: center;
	border: none;
}
#price table tbody tr td {font-weight: 700;}
#price p {margin: 25px 0;}
#price .comments {font-size: 13px;}
#price .comments.st {font-weight: 700;}

#price .paypay {align-items: flex-start; justify-content: flex-start;}
#price .paypay p {margin: 0 0 10px;}
/*------------------------------------
営業所案内
------------------------------------*/
#office {}
#office .flex-wrap {display: block;}
#office .flex-wrap.img img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 8px;
}
#office section {margin: 20px auto 40px;}
#office h2 {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 12px;
	padding: 0 2px 5px;
	border-bottom: 2px solid #225fb7;
}
#office h2 i {
	color: #225fb7;
	font-size: 20px;
	margin-right: 8px;
}
#office p.comments {
	font-size: 14px;
	margin: 4px 0;
}
#office .right {width: 100%;}
#office .right img {
	display: block;
	width: 80%;
	margin: 0 auto;
}
#office .right table.about {
	margin: 10px 0;
	width: 100%;
}
#office .right table.about tr {border-bottom: 1px solid #ccc;}
#office .right table.about tr td {
	font-size: 14px;
	padding: 6px;
}
#office .right table.about tr td i {margin-right: 1em;}
#office .left {}
#office .left p {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
}
#office .left img {
	display: block;
	width: 80%;
	margin: 0 auto;
}
#office .access {
	display: block;
	margin: 20px auto;
}
#office .googlemap {
	position: relative;
	padding-bottom: 72.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
#office .googlemap iframe,
#office .googlemap object,
#office .googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*------------------------------------
観光案内
------------------------------------*/
#tourism {}
#tourism .course_list {}
#tourism .course_list h2 {
	width: 100vw;
	height: 55vw;
	background: url(../img/tourism/header_bg_summer.jpg) 0% 100% no-repeat;
	background-size: 100% auto;
	margin: 0 -2% 20px -2%;
}
#tourism .course_list .course_list_box {
	width: 100%;
	margin-bottom: 20px;
}
#tourism .course_list .course_list_box img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position:50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';	
}
#tourism .course_list .course_list_box .flex-wrap {
	justify-content: flex-start;
	align-items: center;
	margin: 8px 4px;
}
#tourism .course_list .course_list_box .number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	background: #f15a24;
	margin-right: 12px;
	border-radius: 50%;
}
#tourism .course_list .course_list_box h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}
#tourism .course_list .course_list_box p {
	color: #ff952e;
	font-size: 16px;
	line-height: 1;
}
#tourism .course_list .course_list_box ul {
	display: flex;
	margin-top: 12px;
}
#tourism .course_list .course_list_box ul li {
	color: #fff;
	font-size: 10px;
	margin-right: 4px;
	padding: 0 4px;
	background: #ff952e;
	border-radius: 4px;
}
#tourism .map {margin: 20px 0 0;}
#tourism .map h2 {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	transform: rotate(.03deg);
	color: #fff;
	font-size: 28px;
	text-align: center;
	margin-bottom: 20px;
	padding: 10px 0;
	background: #ff952e;
}
#tourism .map img {
	display: block;
	margin: 0 auto;
}
#tourism .map .anboh {margin: -100px auto 0;}
#tourism .map .cars {margin: 20px auto;}
/*------------------------------------
ご利用ガイド
------------------------------------*/
#guide {}
#guide section {margin: 40px auto;}
#guide h2 {
	color: #225fb7;
	font-size: 28px;
	text-align: center;
	line-height: 1;
}
#guide .purpose {
	display: block;
	margin-top: 40px;
}
#guide .purpose .purpose_box {
	margin: 40px 0;
}
#guide .purpose .purpose_box img {
	display: block;
	width: 241px;
	margin: 0 auto;
}
#guide .purpose .purpose_box h3 {
	font-size: 18px;
	text-align: center;	
	margin: 10px 0;
}
#guide .purpose .purpose_box a {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 6px;
	background: #123463;
	border: 1px solid #123463;
	color: #fff;
	font-size: 14px;
	text-align: center;
	border-radius: 5px;
	opacity: 1;
}
#guide .purpose .purpose_box a i {
	color: #fff;
	font-size: 14px;
}
#guide .purpose .purpose_box a:hover {
	background: #fff;
	color: #123463;
}
#guide .purpose .purpose_box a:hover i {
	color: #123463;
}
#guide .yoyaku {}
#guide .yoyaku img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
#guide .yoyaku p {
	text-align: center;
	margin: 10px 0;
	font-size: 14px;
}
#guide .step {
	display: flex;
	width: 96%;
	margin: 40px auto;
}
#guide .step .bar {
	display: block;
	height: 193px;
	margin-right: 15px;
}
#guide .step_box{
	width: 100%;
}
#guide .step h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.75;
	margin: 0 0 20px;
}
#guide .step h4 {
	color: #f15a24;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.75;
	margin: 0 0 5px;
}
#guide .step .flame {
	display: block;
	padding: 10px;
	background: #fff;
	border: 3px solid #b3b3b3;
}
#guide .step .flame.flex-wrap {
	display: block;
}
#guide .step .flame img {
	display: block;
	width: 214px;
	height: 100%;
	margin: 10px auto 0;
}
#guide .step .flame img.norisute {width: 213px;}
#guide .step .flame img.thanksyou {width: 58px;}
#guide .step .flame p {font-size: 14px;}
#guide .step .flame .system {}
#guide .step .flame .list {
	display: block;
	margin: 6px 0;
}
#guide .step .flame .list li {
	width: 100%;
	color: #fff;
	font-size: 15px;
	text-align: center;
	background: #225fb7;
	margin: 6px 0;
	padding: 8px 0;
	border-radius: 5px;
}
#guide .step .flame .tel {
	display: block;
	color: #225fb7;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
#guide .step .flame .tel i {
	font-size: 20px;
	margin-right: 12px;
}
.reservation {
	display: block;
	position: relative;
	width: 96%;
	bottom: 3px;
	margin: 40px auto 0;
	padding: 10px 0;
	background: #ff1d25;
	border-radius: 8px;
	box-shadow: 0 3px 0 #961116;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	opacity: 1;
	transition: 0s;
}
.reservation:active {
	bottom: 0;
	box-shadow: none;
}
.reservation i {
	color: #fff;
	font-size: 20px;
	margin-left: 6px;
}
/*------------------------------------
投稿ページ
------------------------------------*/
#single {
	width: 100%;
	margin-bottom: 24px;
}
#single p {margin: 10px 0;}
#single img {margin: 15px 0;}
#single a:hover img {opacity: .7;}
#single .wp-caption {max-width: 100%; margin: 15px 0;}
#single .wp-caption img {margin: 0;}
#single .wp-caption .wp-caption-text {font-size: .9rem; margin: 0; padding: 5px 0;}
#single h1 {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	padding: 32px 4px;
}
#single h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin: 10px 0;
	padding: 8px 2px;
	border-bottom: 2px solid #225fb7;
}
#single h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 10px 0;
	padding: 10px 16px;
	background: #eee;
}
#single h4 {
	position: relative;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin: 10px 0;
	padding: 10px 18px;
}
#single h4:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 2px;
	width: 10px;
	height: 10px;
	background: #333;
}
/*黒丸リスト*/
#single ul {margin: 12px 0;}
#single ul li {padding: 0 18px;}
#single ul li:before {
	content: "";
	display: inline-block;
	position: relative;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #333;
	margin: 0;
	left: -12px;
	top: -1px;
}
/*数字リスト*/
#single ol {
	counter-reset: li;
	margin: 14px 0;
}
#single ol > li {padding: 0 18px;}
#single ol > li:before {
	counter-increment: li;
	content: counter(li);
	display: inline-block;
	position: relative;
	left: -12px;
	color: #4d2c18;
	margin: 0;
}
#single table {
	display: block;
	width: 100%;
	padding: 12px 0;
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
	overflow-y: hidden;
	overflow-x: auto;
}
#single table thead th {
	padding: 4px 8px;
	font-weight: 700;
	border: 1px solid #aaa;
	background: #dcdddd;
}
#single table tbody th {
	padding: 4px 8px;
	font-weight: 700;
	vertical-align: top;
	border: 1px solid #aaa;
	background: #fffbe4;
}
#single table td {
	padding: 4px 8px;
	vertical-align: top;
	border: 1px solid #aaa;
	background: #fff;
}
#single .aligncenter {
	display: block;
	margin: 0 auto;
}
#single .alignright {float: right;}
#single .alignleft {float: left;}
#single strong {font-weight: bold;}
#single em {font-style: italic;}
#single blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}
#single .clearfix {}
#single .clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
}

/*日付*/
#single .date {
	display: block;
	vertical-align: middle;
	padding: 0 0 10px;
}
#single .date p {margin: 0;}
#single .date i {
	font-size: 13px;
	line-height: 1;
	margin: 0 6px 0 0;
}
#single .date span {
	font-size: 12px;
	line-height: 1;
	margin: 0;
}

/*タグクラウド*/
#single ul.tagcloud {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 16px;
	font-size: 11px;
}
#single ul.tagcloud li {
	color: #fff;
	font-size: 11px;
	margin: 0 4px 4px 0;
	padding: 0 4px;
	background: #ff952e;
	border-radius: 4px;
}
#single ul.tagcloud li:before {display: none;}

/*アイキャッチ*/
#single .eyecatch {
	display: block;
	width: 100%;
	margin: 0 auto 12px;
}
#single .eyecatch img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
/*------------------------------------
記事一覧
------------------------------------*/
#archive {
	display: block;
	width: 100%;
	height: 100%;
	margin-top: 20px;
}
#archive .entry {
	display: block;
	width: calc(100% - 2px);
	background: #fff;
	border: 1px solid #b3b3b3;
	margin:0 auto 20px;
}
#archive .entry:nth-child(even) {margin:0 0 20px 0;}
#archive .entry img {
	width: 100%;
	height: 50vw;
	object-fit: cover;
	object-position: 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#archive .entry h2 {padding: 10px 16px;}
#archive .entry h2 .title {
	color: #225fb7;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 4px 0;
}
#archive .entry h2 .date {margin-top: 12px;}
#archive .entry h2 .date i {
	font-size: 13px;
	line-height: 1;
	margin: 0 6px 0 ;
}
#archive .entry h2 span {
	display: block;
	width: 100%;
	word-break: break-all;
}
/*------------------------------------
サイドバー
------------------------------------*/
#sidebar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-top: 2px;
}
#sidebar .widget {width: 100%;}
#sidebar .widget h3 {display: none;}
#sidebar .widget a {width: 100%;}
#sidebar .widget img {
	display: block;
	width: 100%;
	height: 100%;
	margin-bottom: 16px;
}
#sidebar .pickup {display: none;}
/*------------------------------------
お問い合わせフォーム
------------------------------------*/
#contact {margin: 40px auto;}
#contact section{margin: 24px auto;}
#contact h2 {
	display: block;
	color: #225fb7;
	font-size: 28px;
	text-align: center;
	line-height: 1;
	padding: 0 0 6px;
}
#contact h3 {
	font-size: 18px;
	line-height: 1.5;
	margin: 12px 0;
	padding: 4px 2px;
	text-align: center;
	border-bottom: 1px solid #225fb7;
}
#contact h4 {
	font-size: 16px;
	line-height: 1;
	margin: 30px auto 10px;
	padding: 6px 0 9px 6px;
	border-left: 5px solid #225fb7;
	border-bottom: 1px solid #225fb7;
}
#contact .flow{
	width: 100%;
	margin: 20px auto;
}
#contact .flow h4{
	line-height: 1.5;
	border: 1px solid #225fb7;
	margin: 0 auto 10px;
	padding: 0;
}
#contact .flow h4 span{
	display: block;
	padding: 8px 10px;
	font-size: 15px;
}
#contact .flow h4 .num{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	background: #225fb7;
	padding: 8px 0;
}
#contact .flow h4 .num img{
	display: block;
	width: 32px;
	height: 32px;
	margin-right: 10px;
}
#contact .form{
	width: 100%;
	margin: 20px auto;	
}
#contact .form ul{margin: 4px 0 0;}
#contact .form ul li{
	font-size: 13px;
	padding-left: 1em;
	text-indent: -1em;
}

#contact table {
	display: table;
	width: 100%;
	border-collapse: collapse;
	line-height: 1.5;
}
#contact table tr{
	display: block;
	padding: 2% 0;
}
#contact table th,
#contact table td {
	display: block;
	width: 98%;
	padding: 4px 1%;
	font-size: 14px;
	text-align: left;
	vertical-align: middle;
}
#contact table th span {
	display: inline-block;
	font-size: 11px;
	color: #fff;
	text-align: center;
	margin-right: 8px;
	padding: 0 8px;
	background: #f00;
	border-radius: 4px;
}
#contact table td .flex-wrap {display: block;}
#contact table td a {
	display: block;
	color: #fff;
	text-align: center;
	background: #f00;
	margin-top: 10px;
	padding: 6px 14px;
	border: 1px solid #f00;
	border-radius: 4px;
	opacity: 1;
}
#contact table td a:hover {
	color: #f00;
	background: #fff;
}
#contact table td .notice{
	font-size: 13px;
	padding: 4px 0 0 0;
} 
#contact table .persons{
	display: flex;
	align-items: center;
}
#contact table .persons p{
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding: 0 10px;
}
#contact table .persons p span{padding: 0 10px 0 6px;}
#contact table input,
#contact table textarea,
#contact table select {
	width: calc(100% - 18px);
	padding: 8px;
	background: #fffbe4;
	border: 1px solid #ccc;
	box-shadow: none;
}
#contact table select {height: 28px;}
#contact table textarea {
	height: 80px;
	resize: vertical;
}
#contact table .persons.sel_age p:first-of-type select {
	width: auto;
}
#contact table .persons.adult_age p span {
	padding: 0 16px 0 6px;
}
#contact input[type="submit"] {
	display: block;
	position: relative;
	top: -3px;
	color: #fff;
	font-size: 15px;
	margin: 40px auto;
	padding: 12px 80px;
	background: #225fb7;
	border-radius: 4px;
	box-shadow: 0 3px 0 #023f97;
	cursor: pointer;
}
#contact input[type="submit"]:active {
	top: 0px;
	box-shadow: none;
}
#contact input[type="checkbox"] {
	width: auto;
	margin: 0 auto;
}
#contact .other{margin: 30px auto 40px;}
#contact .other p{
	font-size: 15px;
	margin-bottom: 10px;
}
#contact p.red{
	color: #f00;
	font-size: 15px;
	font-weight: bold;
	word-break: break-all;
}

#contact .address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	margin-bottom: 24px;
}
#contact .address a {
	color: #225fb7;
	font-size: 24px;
	margin: 0 16px;
	line-height: 2;
}
#contact .address a i {
	color: #225fb7;
	font-size: 32px;
	margin-right: 10px;	
}
#contact .address p {
	display: block;
	margin: 8px auto 0;
}
#contact .address p span {
	color: #225fb7;
	font-size: 18px;
	margin: 0 8px;
}
/* 2024年3月 */
#contact .address p span.holiday {
	font-size: 14px;
	display: block;
	text-align: center;
}
#contact .notice li {
	list-style-type: decimal;
	margin: 0 0 0.5em 2em;
}
#contact .notice table {
	display: table;
	width: calc(100% - 2em);
	table-layout: auto;
	border: 1px solid #225fb7;
	background: #fff;
	margin: 0 0 0.5em 1em;
}
#contact .notice table tr {display: table-row;}
#contact .notice table tr th,
#contact .notice table tr td {
	display: table-cell;
	width: auto;
	font-size: 12px;
	border: 1px solid #225fb7;
	padding: 4px 8px;
}
#contact .notice strong {font-weight: 700;}
/*------------------------------------
固定バー
------------------------------------*/
#fix-tel {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 48px;
	background: #225fb7;
	padding: 2px 8px;
}
#fix-tel span {
	display: block;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	margin: auto 12px auto 0;
}
#fix-tel img {
	display: block;
	height: 28px;
	margin: auto 12px auto 0;
}
/*------------------------------------
404.php
------------------------------------*/
#notfound {}
#notfound .flex-wrap {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 48px);
}
#notfound .char {}
#notfound .char h2 {
	color: #225fb7;
	font-size: 24px;
	font-weight: 700;
}
#notfound p {color: #225fb7;}
#notfound img {
	width: auto;
	height: 140px;
}
/*------------------------------------
jquery-uiのカレンダー
------------------------------------*/
.ui-datepicker-header {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent!important;
}
.ui-datepicker-header a {
	top: 50%!important;
	bottom: 50%!important;
	transform: translate(0,-50%);
}
.ui-datepicker-header div.ui-datepicker-title {
	display: flex;
	justify-content: center;
	align-items: center;
}
.ui-datepicker-header div.ui-datepicker-title select {
	display: inline-block!important;
	width: auto;
	height: 21px;
	line-height: 1.5;
	margin: 0!important;
	word-spacing: 1px!important;
}
.ui-datepicker-header div.ui-datepicker-title select.ui-datepicker-year {text-align: center!important;}

.grecaptcha-badge{left:6px!important;bottom:58px!important;width:70px!important;}
.grecaptcha-badge:hover{left:6px!important;width:256px!important;}



/* 2024年7月 */
.sp-dn {
	display: none;
}

.sp-span {
	padding-left: 10px;
	font-size: 12px;
}

.use-navi td .use-navi-txt {
	padding-left: 1em;
}

#contact input[type="submit"] {
	margin: 40px auto 0;
}

.once-submit {
	text-align: center;
	font-weight: 700;
}