/*------------------------------------
汎用
------------------------------------*/
html {
	min-width: 1000px;
}

body {
	min-width: 1000px;
	min-height: 100%;
	overflow-y: hidden;
}

main {
	background-image: url(../img/bottom.png), linear-gradient(to bottom, #fff 60%, #6bb7ff 100%);
	background-repeat: repeat-x;
	background-position: bottom;
	padding: 0 0 400px;
}

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

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

/*パンくずリスト*/
.container-breadcrumbs {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #b3b3b3;
}

#breadcrumbs {
	width: 980px;
	display: block;
	margin: 0 auto;
}

#breadcrumbs ul {
	display: block;
	list-style: none;
	margin: 0 auto;
}

#breadcrumbs ul li {
	list-style: none;
	display: table-cell;
	vertical-align: middle;
	font-size: 12px;
	line-height: 3;
	padding: 0 0.5rem;
}

#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: 20px;
	margin-top: -1px;
}

/*ページネーション*/
.pagination {
	display: flex;
	justify-content: center;
	min-width: 100%;
	line-height: 2;
	background: none;
	text-align: center;
	margin: 48px auto 0;
}

.pagination span,
.pagination a {
	padding: 4px 16px;
	margin: 0 8px;
	width: auto;
	background: #fff;
	box-shadow: 0 0 0 1px #b3b3b3;
	border-radius: 3px;
}

.pagination a {
	display: inline;
	margin: 0 8px;
	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 8px;
	color: #225fb7;
	opacity: 1;
}

/*------------------------------------
ヘッダー
------------------------------------*/
header {}

header #header_top {}

header #header_top.flex-wrap {
	align-items: center;
}

header #header_top #nav-toggle {
	display: none;
}

header #header_top .icon {
	width: 98px;
	margin-left: 40px;
}

header #header_top .logo {
	margin: 0 auto;
	transition: .3s;
}

header #header_top .logo:hover {
	opacity: .8;
}

header #header_top .logo span {
	display: block;
	text-align: center;
	color: #000052;
	font-size: 14px;
	line-height: 1.3;
}

/* 2024年3月 */
header #header_top .logo span.holiday {
	display: inline-block;
	font-size: 11px;
}

header #header_top .logo img {
	width: 316px;
	margin: 0 auto;
}

header #header_top .tel {
	width: 210px;
}

header #header_top .tel p {
	color: #fff;
	text-align: center;
	background: #333;
	padding: 4px 0;
}

header #header_top .tel a {
	display: block;
	background: #f15a24;
	padding: 10px 12px;
}

header #header_top .tel a img {
	display: block;
	width: 170px;
	margin: 0 auto;
}

header #header_bottom {
	background: #225fb7;
}

header #header_bottom nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

header #header_bottom nav a {
	position: relative;
	width: 16.666666667%;
	color: #fff;
	text-align: center;
	padding: 14px 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;
	margin: 0 10px 0 0;
	opacity: 1;
}

header #header_bottom .tel {
	display: none;
}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
トップページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
上
------------------------------------*/
#index_top {
	background: url(../img/index/top_back.jpg) no-repeat;
	background-size: contain;
	padding: 40px 0;
}

#index_top .search {
	width: 320px;
	height: 358px;
	background: #fff;
	border: 6px solid #ff0000;
	border-radius: 10px;
}

#index_top .search h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ff0000;
	padding: 0 0 6px;
}

#index_top .search h2 span {
	color: #fff;
	font-size: 16px;
	line-height: 1;
}

#index_top .search h2 img {
	display: block;
	width: 31px;
	margin-right: 12px;
}

#index_top .search .yoyaku {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	height: calc(100% - 37px);
	border-radius: 10px;
}

#index_top .search .yoyaku .image {
	position: relative;
	width: 100%;
	height: 245px;
	background: url(../img/index/uketuke.png) bottom right/auto auto no-repeat;
	border-radius: 10px;
}

#index_top .search .yoyaku .image h2 {
	position: absolute;
	top: 32px;
	left: 16px;
	color: #ff0000;
	font-size: 25px;
	line-height: 1.75;
	font-weight: 700;
	background: transparent;
}

#index_top .search .yoyaku a {
	display: block;
	position: relative;
	width: 80%;
	bottom: 2px;
	margin: auto;
	padding: 4px 0;
	background: #ff0000;
	border-radius: 10px;
	box-shadow: 0 4px 0 #990000;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	opacity: 1;
	transition: 0s;
}

#index_top .search .yoyaku a:active {
	bottom: -2px;
	box-shadow: none;
}

#index_top .midashi {
	width: 625px;
	height: 370px;
	overflow: hidden;
}

#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: 40px;
	height: 40px;
	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: 12px;
}

#index_top .midashi .slider-arrow.next {
	right: 12px;
}

#index_top .midashi .slider-arrow:hover {
	opacity: .7;
}

#index_top .paypay {
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 930px;
	background: #fff;
	margin-top: 40px;
	padding: 20px 25px;
	background: #ff0033;
	border-radius: 8px;
}

#index_top .paypay .left {
	margin-right: 20px;
}

#index_top .paypay .center {}

#index_top .paypay .center p {
	color: #fff;
	font-size: .95em;
	line-height: 1;
	white-space: nowrap;
}

#index_top .paypay .center p.big {
	font-size: 1.75em;
	line-height: 1;
	letter-spacing: 2.5px;
	font-weight: 700;
	margin-top: 10px;
}

#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 .center p.credit {
	margin-top: 10px;
}

#index_top .paypay .right {
	font-size: 1.1em;
	color: #000052;
	text-align: center;
	width: 100%;
	background: #fff;
	margin-left: 15px;
	padding: 14px 0;
	border-radius: 5px;
}

#index_top .paypay .right br {
	display: none;
}

#index_top .paypay .right em {
	color: #000052;
	font-weight: 700;
}

#index_top .point div {
	display: flex;
	flex-direction: column;
	width: 48%;
	margin-top: 40px;
	background: #f2f2f2;
}

#index_top .point div h2 {
	display: flex;
	align-items: center;
	width: calc(100% - 40px);
	color: #000052;
	font-size: 28px;
	font-weight: 700;
	background: #fff;
	padding: 16px 0 16px 40px;
	border-top: 4px solid #ff0000;
}

#index_top .point div h2 img {
	display: block;
	width: 64px;
	height: 64px;
	margin-right: 28px;
}

#index_top .point .text {
	width: calc(100% - 48px);
	margin: auto;
	padding: 18px 24px;
}

#index_top .point .text h3 {
	width: 100%;
	font-size: 21px;
	text-align: center;
}

#index_top .point .text p {
	width: 100%;
	font-size: 13px;
	text-align: left;
}

#index_top .point .text p br {
	display: none;
}

/*------------------------------------
下
------------------------------------*/
#index_bottom {
	padding: 40px 0;
}

#index_bottom .left {
	width: 640px;
}

#index_bottom .news_list {
	margin-bottom: 40px;
}

#index_bottom .news_list h2 {
	display: flex;
	align-items: center;
	color: #000052;
	font-size: 20px;
	font-weight: 700;
	padding: 0 0 2px 6px;
	border-bottom: 1px solid #000052;
}

#index_bottom .news_list h2 i {
	display: block;
	font-size: 20px;
	color: #000052;
	margin-right: 10px;
}

#index_bottom .news_list .blog_box {
	justify-content: flex-start;
	margin: 20px 0 0;
}

#index_bottom .news_list .item {
	display: flex;
	padding: 10px 6px;
	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 12px;
}

#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: 200px;
	margin: 0 20px 0 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 img {
	display: block;
	width: 304px;
	margin-bottom: 20px;
}

#index_bottom .right {
	width: 300px;
}

#index_bottom article {
	background: #fff;
	border: 1px solid #b3b3b3;
	margin-bottom: 30px;
}

#index_bottom article h3 {
	color: #666;
	font-size: 16px;
	font-weight: 700;
	background: #eee;
	border-bottom: 1px solid #b3b3b3;
	padding: 4px 12px;
}

#index_bottom article h3 span {
	color: #666;
	font-size: 12px;
	padding: 0 4px;
}

#index_bottom article #m-booked-weather-bl250-24657 {
	margin: 12px 0;
}

#index_bottom article #m-booked-weather-bl250-24657 .booked-wzs-250-175 {
	background: transparent !important;
	overflow: auto !important;
	border-radius: 0 !important;
}

#index_bottom article #m-booked-weather-bl250-24657 .booked-wzs-250-175_in {
	overflow: auto !important;
	border-radius: 0 !important;
}

#index_bottom article #m-booked-weather-bl250-24657 .booked-wzs-250-175_in * {
	color: inherit !important;
	text-shadow: none !important;
}

#index_bottom article #m-booked-weather-bl250-24657 .booked-wzs-table-250 {
	border: 1px solid rgba(0, 0, 0, 0.2) !important;
	border-left: none !important;
}

/*#index_bottom article #wij_weather_in_japan .count3 {
	border: none;
}
#index_bottom article #wij_weather_in_japan ul {
	border: none;
	width: 96%;
	margin: 10px auto;
}
#index_bottom article #wij_weather_in_japan ul li .panel {
	display: block;
	margin: 6px auto;
}
#index_bottom article #wij_weather_in_japan .count3 .location {display: none;}*/
#index_bottom article table {
	width: 92%;
	margin: 16px auto;
	padding: 0 2%;
}

#index_bottom article table caption {
	color: #000052;
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 4px;
}

#index_bottom article table thead tr th {
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	padding: 2px 4px;
}

#index_bottom article table tbody tr:nth-child(even) {
	background: #eee;
}

#index_bottom article table tbody tr td {
	padding: 2px 4px;
	font-size: 13px;
	text-align: center;
}

#index_bottom article .comments {
	width: 92%;
	font-size: 13px;
	margin: 10px auto;
}

/*------------------------------------
フッター
------------------------------------*/
footer {}

footer .flex-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 30px 0;
}

footer .logo span {
	display: block;
	color: #000052;
	text-align: center;
	font-size: 16px;
	line-height: 1.2;
}

/* 2024年3月 */
footer .logo span.holiday {
	font-size: 12px;
}

footer .logo span.address {
	font-size: 12px;
	line-height: 2;
	margin-top: 8px;
}

footer .logo img {
	width: 379px;
}

footer .contact {
	margin: 0 70px;
}

footer .contact .tel .flex-wrap {
	padding: 0;
}

footer .contact .tel i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 24px;
	background: #f15a24;
	border-radius: 50%;
	margin-right: 16px;
}

footer .contact .tel div span {
	display: block;
	font-size: 15px;
	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: 13px;
}

footer .contact .tel div a {
	display: block;
	font-size: 32px;
	color: #333;
	line-height: 1.5;
}

footer .contact .mail {
	display: block;
	color: #fff;
	font-size: 18px;
	text-align: center;
	background: #f15a24;
	margin-top: 24px;
	border-radius: 4px;
	border: 1px solid #f15a24;
	opacity: 1;
}

footer .contact .mail i {
	color: #fff;
	font-size: 18px;
	margin-right: 8px;
}

footer .contact .mail:hover {
	color: #f15a24;
	background: #fff;
}

footer .contact .mail:hover i {
	color: #f15a24;
}

footer nav {
	display: flex;
	flex-direction: column;
	padding: 6px 0 6px 40px;
	border-left: 1px solid #b3b3b3;
}

footer nav a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: 900;
	margin-right: 6px;
}

footer #scroll {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -33px;
	right: 0;
	width: 128px;
	height: 32px;
	color: #225fb7;
	font-size: 12px;
	list-style: 1;
	background: #fff;
	cursor: pointer;
}

footer #scroll i {
	color: #225fb7;
	font-size: 16px;
	margin-right: 8px;
}

footer .copyright {
	color: #fff;
	text-align: center;
	padding: 20px 0;
	background: #225fb7;
}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
車種・料金
------------------------------------*/
#price {}

#price section {
	margin: 80px auto;
}

#price h2.type {
	color: #225fb7;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	background: #ffaaaa;
	padding: 2px 14px;
	margin-bottom: 12px;
}

#price h2.list {
	color: #225fb7;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 12px;
	padding: 2px 2px;
	border-bottom: 4px solid #ff0000;
}

#price h3 {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	margin-top: 10px;
	padding: 0 4px;
	z-index: 2;
}

#price h3 em {
	font-weight: 700;
	margin-left: 8px;
}

#price h3:before {
	content: "";
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	top: -1px;
	left: 0;
	margin-right: 8px;
	background: #333;
}

#price h4 {
	font-size: 16px;
	font-weight: 700;
	margin-top: 20px;
}

#price .carimg {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -70px 0 -15px;
}

#price .carimg img {
	display: block;
	width: auto;
	height: auto;
	margin-left: 20px;
}

#price table {
	display: table;
	border: 1px solid #aaa;
	width: 100%;
	margin: 10px 0;
}

#price table thead tr th {
	font-size: 15px;
	background: #dcdddd;
	padding: 6px 4px;
	border: 1px solid #aaa;
	white-space: nowrap;
}

#price table tbody tr th,
#price table tbody tr td {
	width: 12%;
	font-size: 15px;
	text-align: center;
	padding: 6px 4px;
	border: 1px solid #aaa;
	background: #fff;
	white-space: nowrap;
}

#price table tbody tr th:first-child,
#price table tbody tr td:first-child {
	width: 16%;
}

#price table tbody tr td {
	font-weight: 700;
}

#price table tr th.width {
	width: 450px;
}

#price p {
	margin: 10px 0;
}

#price .comments {
	font-size: 13px;
}

#price .comments.st {
	font-weight: 700;
}

#price .paypay {
	align-items: flex-start;
}

#price .paypay p {
	margin: 0;
}

/*------------------------------------
営業所案内
------------------------------------*/
#office {}

#office .flex-wrap {
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#office .flex-wrap.img img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

#office section {
	margin: 80px auto;
}

#office h2 {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 16px;
	padding: 0 2px 5px;
	border-bottom: 3px solid #225fb7;
}

#office h2 i {
	color: #225fb7;
	font-size: 24px;
	margin-right: 10px;
}

#office p.comments {
	font-size: 16px;
	margin: 8px 0;
}

#office .right {
	width: 75%;
	margin-right: 5%;
}

#office .right img {
	width: 593px;
}

#office .right table.about {
	margin: 20px 0;
	width: 100%;
}

#office .right table.about tr {
	border-bottom: 1px solid #ccc;
}

#office .right table.about tr td {
	font-size: 16px;
	padding: 8px;
}

#office .right table.about tr td i {
	margin-right: 1em;
}

#office .left p {
	font-size: 20px;
	font-weight: 700;
}

#office .access {
	display: block;
	margin: 40px auto;
}

#office .googlemap {
	position: relative;
	padding-bottom: 56.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 {
	justify-content: flex-start;
}

#tourism .course_list h2 {
	width: 100vw;
	height: 500px;
	background: url(../img/tourism/header_bg_summer.jpg) 0% 100% no-repeat;
	margin-bottom: 40px;
}

#tourism .course_list .course_list_box {
	width: 30.33333333333333%;
	margin: 0 0 30px;
	padding: 0 1.5%;
}

#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: 10px 6px;
}

#tourism .course_list .course_list_box .number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 20px;
	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: 18px;
	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: 11px;
	margin-right: 4px;
	padding: 0 4px;
	background: #ff952e;
	border-radius: 4px;
}

#tourism .map {
	margin: 80px 0 0;
}

#tourism .map h2 {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	transform: rotate(.03deg);
	color: #fff;
	font-size: 42px;
	text-align: center;
	margin-bottom: 40px;
	padding: 20px 0;
	background: #ff952e;
}

#tourism .map img {
	display: block;
	margin: 0 auto;
}

#tourism .map .anboh {
	margin: -240px auto 0;
}

#tourism .map .cars {
	margin: 60px auto;
}

/*------------------------------------
ご利用ガイド
------------------------------------*/
#guide {}

#guide section {
	margin: 80px auto;
}

#guide h2 {
	color: #225fb7;
	font-size: 48px;
	text-align: center;
	line-height: 1;
}

#guide .purpose {
	display: flex;
	justify-content: center;
	margin-top: 80px;
}

#guide .purpose .purpose_box {
	margin: 0 20px;
}

#guide .purpose .purpose_box img {
	width: 241px;
}

#guide .purpose .purpose_box h3 {
	font-size: 28px;
	text-align: center;
	margin: 10px 0;
}

#guide .purpose .purpose_box a {
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 8px;
	background: #123463;
	border: 1px solid #123463;
	color: #fff;
	font-size: 18px;
	text-align: center;
	border-radius: 5px;
	opacity: 1;
}

#guide .purpose .purpose_box a i {
	color: #fff;
	font-size: 18px;
	margin-left: 10px;
}

#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: 640px;
	margin: 0 auto;
}

#guide .yoyaku p {
	text-align: center;
	margin: 10px 0;
	font-size: 18px;
}

#guide .step {
	display: flex;
	width: 840px;
	margin: 60px auto;
}

#guide .step .bar {
	display: block;
	height: 387px;
	margin-right: 40px;
}

#guide .step_box {
	width: 100%;
}

#guide .step h3 {
	font-size: 38px;
	font-weight: 700;
	margin: 20px 0 30px;
}

#guide .step h4 {
	color: #f15a24;
	font-size: 26px;
	font-weight: 700;
	margin: 10px 0;
}

#guide .step .flame {
	display: block;
	padding: 25px;
	background: #fff;
	border: 4px solid #b3b3b3;
}

#guide .step .flame.flex-wrap {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

#guide .step .flame img {
	display: block;
	width: 300px;
	height: 100%;
	margin-left: 25px;
}

#guide .step .flame img.norisute {
	min-width: 256px;
	max-width: 256px;
	min-height: 177px;
	max-height: 177px;
}

#guide .step .flame img.thanksyou {
	min-width: 117px;
	max-width: 117px;
	min-height: 176px;
	max-height: 176px;
}

#guide .step .flame p {
	font-size: 16px;
}

#guide .step .flame .system {}

#guide .step .flame .list {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

#guide .step .flame .list li {
	width: 130px;
	color: #fff;
	font-size: 24px;
	text-align: center;
	background: #225fb7;
	margin: 0 6px;
	padding: 12px 24px;
	border-radius: 5px;
}

#guide .step .flame .tel {
	display: block;
	color: #225fb7;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
}

#guide .step .flame .tel i {
	font-size: 36px;
	margin-right: 12px;
}

.reservation {
	display: block;
	position: relative;
	width: 80%;
	bottom: 5px;
	margin: 40px auto 0;
	padding: 16px 0;
	background: #ff1d25;
	border-radius: 10px;
	box-shadow: 0 5px 0 #961116;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	opacity: 1;
	transition: 0s;
}

.reservation:active {
	bottom: 0;
	box-shadow: none;
}

.reservation i {
	color: #fff;
	font-size: 28px;
	margin-left: 12px;
}

/*------------------------------------
投稿ページ
------------------------------------*/
#single {
	width: 620px;
	margin: 6px 0 24px;
}

#single p {
	margin: 14px 0;
}

#single img {
	margin: 20px 0;
}

#single a:hover img {
	opacity: .7;
}

#single .wp-caption {
	max-width: 100%;
	margin: 20px 0;
}

#single .wp-caption img {
	margin: 0;
}

#single .wp-caption .wp-caption-text {
	font-size: .9rem;
	margin: 0;
	padding: 5px 0;
}

#single h1 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	padding: 60px 4px;
}

#single h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	margin: 14px 0;
	padding: 10px 2px;
	border-bottom: 3px solid #225fb7;
}

#single h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin: 14px 0;
	padding: 14px 16px;
	background: #eee;
}

#single h4 {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 14px 0;
	padding: 10px 22px;
}

#single h4:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 2px;
	width: 12px;
	height: 12px;
	background: #333;
}

/*黒丸リスト*/
#single ul {
	margin: 14px 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;
	padding: 14px 0;
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
}

#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: flex;
	vertical-align: middle;
	padding: 0 0 14px;
}

#single .date i {
	font-size: 13px;
	line-height: 1;
	margin: 0 6px 0 0;
}

#single .date p {
	line-height: 1;
	margin: 0 20px 0 0;
}

/*タグクラウド*/
#single ul.tagcloud {
	display: flex;
	margin: -6px 0 24px;
	font-size: 11px;
}

#single ul.tagcloud li {
	color: #fff;
	font-size: 11px;
	margin-right: 4px;
	padding: 0 4px;
	background: #ff952e;
	border-radius: 4px;
}

#single ul.tagcloud li:before {
	display: none;
}

/*アイキャッチ*/
#single .eyecatch {
	display: block;
	width: 620px;
	margin: 0 0 24px;
}

#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: flex;
	flex-wrap: wrap;
	width: 620px;
	height: 100%;
	margin-top: 24px;
}

#archive .entry {
	display: block;
	width: calc(48% - 2px);
	background: #fff;
	border: 1px solid #b3b3b3;
	margin: 0 4% 24px 0;
}

#archive .entry:nth-child(even) {
	margin: 0 0 24px 0;
}

#archive .entry img {
	width: 100%;
	height: 220px;
	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 0;
}

#archive .entry h2 span {
	display: block;
	width: 100%;
	word-break: break-all;
}

/*------------------------------------
サイドバー
------------------------------------*/
#sidebar {
	width: 300px;
	margin-top: 20px;
}

#sidebar .widget {}

#sidebar .widget h3 {
	display: none;
}

#sidebar .widget a {
	width: 100%;
}

#sidebar .widget img {
	display: block;
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
}

#sidebar .pickup {
	margin: 10px 0;
}

#sidebar .pickup h2 {
	color: #fff;
	font-size: 16px;
	background: #225fb7;
	padding: 4px 12px;
}

#sidebar .pickup i {
	color: #fff;
	font-size: 16px;
	margin-right: 12px;
}

#sidebar .pickup a {
	display: block;
	width: 288px;
	border-bottom: 1px solid #b3b3b3;
	padding: 8px 6px;
}

#sidebar .pickup a:last-child {
	border-bottom: none;
}

#sidebar .pickup a h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666;
	font-weight: 700;
	line-height: 1.75;
}

#sidebar .pickup a h3 br {
	display: none;
}

#sidebar .pickup a .date {
	color: #666;
	font-size: 12px;
}

/*------------------------------------
お問い合わせフォーム
------------------------------------*/
#contact {
	margin: 80px auto;
}

#contact section {
	margin: 48px auto;
}

#contact h2 {
	display: block;
	color: #225fb7;
	font-size: 42px;
	text-align: center;
	line-height: 1;
	padding: 0 0 12px;
}

#contact h3 {
	font-size: 22px;
	line-height: 1.5;
	margin: 12px 0;
	padding: 6px 2px;
	border-bottom: 1px solid #225fb7;
}

#contact h4 {
	font-size: 18px;
	line-height: 1;
	margin: 40px 0 20px;
	padding: 6px 0 9px 8px;
	border-left: 6px solid #225fb7;
	border-bottom: 1px solid #225fb7;
}

#contact .flow {
	width: 920px;
	margin: 40px auto;
}

#contact .flow h4 {
	display: flex;
	align-items: center;
	border: 1px solid #225fb7;
	margin: 0 0 20px;
	padding: 0;
}

#contact .flow h4 span {
	padding: 0 20px;
	font-size: 18px;
}

#contact .flow h4 .num {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	background: #225fb7;
	padding: 14px 24px 4px;
}

#contact .flow h4 .num img {
	width: 48px;
	height: 48px;
}

#contact .form {
	width: 768px;
	margin: 20px auto;
}

#contact .form ul {
	margin: 10px 0 0;
}

#contact .form ul li {
	text-align: center;
}

#contact table {
	display: table;
	width: 100%;
	border-collapse: collapse;
	line-height: 1.5;
}

#contact table th {
	width: 32%;
	padding: 2%;
	vertical-align: middle;
}

#contact table th span {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	text-align: center;
	margin-right: 8px;
	padding: 0 8px;
	background: #f00;
	border-radius: 4px;
}

#contact table td {
	width: 60%;
	padding: 2%;
	vertical-align: middle;
}

#contact table td .car-type-inner {
	align-items: center;
}

#contact table td a {
	color: #fff;
	height: auto;
	background: #f00;
	padding: 6px 14px;
	border: 1px solid #f00;
	border-radius: 4px;
	opacity: 1;
}

#contact table td a:hover {
	color: #f00;
	background: #fff;
}

#contact table .persons {
	display: flex;
}

#contact table .persons p {
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding-right: 20px;
}

#contact table .persons p span {
	padding: 0 10px 0 6px;
}

#contact table .persons.adult_age p span {
	padding: 0 16px 0 6px;
}

#contact table input,
#contact table textarea,
#contact table select {
	width: calc(100% - 22px);
	padding: 10px;
	background: #fffbe4;
	border: 1px solid #ccc;
	box-shadow: none;
}

#contact table select {
	height: 30px;
}

#contact table textarea {
	height: 80px;
	resize: vertical;
}

#contact input[type="submit"] {
	display: block;
	position: relative;
	top: -3px;
	color: #fff;
	font-size: 16px;
	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;
}

#contact .other {
	margin: 60px auto 80px;
}

#contact .other p {
	font-size: 16px;
	margin-bottom: 10px;
}

#contact p.red {
	color: #f00;
	font-size: 16px;
	font-weight: bold;
	word-break: break-all;
}

/* 2024年3月 */
#contact .address {
	display: flex;
	/* align-items: baseline; */
	margin-bottom: 48px;
	/* padding: 0 20px; */
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
}

/* 2024年3月 */
#contact .address a {
	color: #225fb7;
	font-size: 32px;
	/* margin-right: 32px; */
	line-height: 1.75;
}

#contact .address a i {
	color: #225fb7;
	font-size: 32px;
	margin-right: 10px;
}

/* 2024年3月 */
#contact .address p {
	display: block;
	/* margin-left: auto; */
}

/* 2024年3月 */
#contact .address p span {
	color: #225fb7;
	font-size: 18px;
	/* margin-left: 16px; */
}

/* 2024年3月 */
#contact .address p span.holiday {
	display: block;
	font-size: 14px;
}

#contact .notice li {
	list-style-type: decimal;
	margin: 0 0 0.5em 2em;
}

#contact .notice table {
	width: auto;
	table-layout: auto;
	border: 1px solid #225fb7;
	background: #fff;
	margin: 0 0 0.5em 2.5em;
}

#contact .notice table tr th,
#contact .notice table tr td {
	width: auto;
	border: 1px solid #225fb7;
	padding: 8px 24px;
}

#contact .notice strong {
	font-weight: 700;
	font-size: 15px;
}

/*------------------------------------
固定バー
------------------------------------*/
#fix-tel {
	display: none;
}

/*------------------------------------
404.php
------------------------------------*/
#notfound {
	padding: 148px 0;
}

#notfound .flex-wrap {
	justify-content: center;
	align-items: center;
}

#notfound .char {
	padding-left: 50px;
}

#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;
	width: 70px !important;
}

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

/* 2024年7月 */
#price table tbody tr td {
	vertical-align: middle;
}

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