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

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

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

/*コンティナ*/
.container {
	display: block;
	width: 96%;
	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: 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: 11px;
	line-height: 3;
	padding: 0 6px;
}
#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: -2px;
}

/*ページネーション*/
.pagination {
	display: flex;
	justify-content: center;
	min-width: 100%;
	line-height: 2;
	background: none;
	text-align: center;
	margin: 32px auto 34px;
}
.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;
	width: 100%;
}
header #header_top #nav-toggle {display: none;}
header #header_top .icon {display: none;}
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.4;
}
/* 2024年3月 */
header #header_top .logo span.holiday {
	display: inline-block;
	font-size: 11px;
}
header #header_top .logo img {width: 316px;}
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 .container{width: 100%;}
header #header_bottom nav {
	display: flex;
	justify-content: center;
	align-items: center;
}
header #header_bottom nav a {
	position: relative;
	width: 16.666666667%;
	color: #fff;
	font-size: 13px;
	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;
	font-size: 13px;
	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: 20px 0;
}
#index_top .search {
	width: 240px;
	height: 264px;
	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: center;
	align-items: center;
	flex-direction: column;
	height: calc(100% - 34px);
}
#index_top .search .yoyaku .image {
	position: relative;
	width: 100%;
	height: 177px;
	background: url(../img/index/uketuke.png) bottom right/137px auto no-repeat;
	border-radius: 10px;
}
#index_top .search .yoyaku .image h2 {
	position: absolute;
	top: 28px;
	left: 12px;
	color: #ff0000;
	font-size: 18px;
	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: 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: 460px; height: 272px; 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: 88%;
	background: #fff;
	margin-top: 20px;
	padding: 15px 3%;
	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 em {color: #000052; font-weight: 700;}
#index_top .point div {
	display: flex;
	flex-direction: column;
	width: 48%;
	background: #f2f2f2;
	margin-top: 20px;
}
#index_top .point div h2 {
	display: flex;
	align-items: center;
	color: #000052;
	font-size: 20px;
	font-weight: 700;
	background: #fff;
	padding: 12px 0 12px 20px;
	border-top: 3px solid #ff0000;
}
#index_top .point div h2 img {
	display: block;
	width: 54px;
	margin-right: 20px;
}
#index_top .point .text {
	width: calc(100% - 40px);
	margin: auto;
	padding: 12px 20px;
}
#index_top .point .text h3 {
	width: 100%;
	font-size: 16px;
	text-align: center;
}
#index_top .point .text p {
	width: 100%;
	font-size: 12px;
	text-align: left;
}
/*------------------------------------
下
------------------------------------*/
#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: 18px;
	font-weight: 700;
	padding: 0 0 2px 6px;
	border-bottom: 1px solid #000052;
}
#index_bottom .news_list h2 i {
	display: block;
	font-size: 18px;
	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 10px;}
#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: 232px;
	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: 360px;
	height: 100%;
	margin-bottom: 10px;
}
#index_bottom .right {display: none;}
/*------------------------------------
フッター
------------------------------------*/
footer {}
footer .flex-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
}
footer .logo{margin-right: 40px;}
footer .logo span {
	display: block;
	color: #000052;
	text-align: center;
	font-size: 15px;
	line-height: 1.2;
}
/* 2024年3月 */
footer .logo span.holiday {
	font-size: 12px;
	line-height: 1.4;
}
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: 379px;
}
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: 100%;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: #f15a24;
	margin: 0 auto;
	border-radius: 4px;
	border: 1px solid #f15a24;
	opacity: 1;
}
footer .contact .mail i {
	color: #fff;
	font-size: 16px;
	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;
	width: 80%;
	margin: 30px auto 0;
}
footer nav a {
	font-size: 14px;
	margin: 0 8px;
}
footer nav a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: 900;
	margin-right: 6px;
}
footer #scroll {
	width: 100vw;
	color: #225fb7;
	font-size: 12px;
	text-align: center;
	margin: 20px -2% 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: 40px auto;}
#price h2.type {
	color: #225fb7;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	background: #ffaaaa;
	padding: 2px 12px;
	margin-bottom: 12px;
}
#price h2.list {
	color: #225fb7;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 12px;
	padding: 2px 2px;
	border-bottom: 4px solid #ff0000;
}
#price h3 {
	font-size: 16px;
	font-weight: 700;
}
#price h3 em {font-weight: 700; margin-left: 8px;}
#price h3:before {
	content: "";
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	top: 0;
	left: 0;
	margin-right: 6px;
	background: #333;
}
#price h4 {
	font-size: 14px;
	font-weight: 700;
	margin-top: 20px;
}
#price .carimg {
	display: flex;
	justify-content: flex-end;
	margin: -55px 0 -25px;
}
#price .carimg img {
	display: block;
	height: 80px;
	margin-right: 16px;
}
#price table {
	display: table;
	border: 1px solid #aaa;
	width: 100%;
	margin: 10px 0;
}
#price table thead tr th {
	font-size: 13px;
	background: #dcdddd;
	padding: 6px 2px;
	border: 1px solid #aaa;
	white-space: nowrap;
}
#price table tbody tr th,
#price table tbody tr td {
	width: 12%;
	font-size: 13px;
	text-align: center;
	padding: 6px 2px;
	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: 400px;}
#price p {margin: 10px 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 {
	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: 255px;
}
#office section {margin: 40px 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: 60%;
	margin-right: 5%;
}
#office .right img {width: 395px;}
#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: 6px;
}
#office .right table.about tr td i {margin-right: 1em;}
#office .left {width: 35%;}
#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: 55vw;
	background: url(../img/tourism/header_bg_summer.jpg) 0% 100% no-repeat;
	background-size: 100% auto;
	margin: 0 -2% 30px -2%;
}
#tourism .course_list .course_list_box {
	width: 48%;
	margin: 0 1% 30px;
}
#tourism .course_list .course_list_box img {
	width: 100%;
	height: 220px;
	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: 38px;
	height: 38px;
	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: 40px 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: 40px;
	padding: 10px 0;
	background: #ff952e;
}
#tourism .map img {
	display: block;
	margin: 0 auto;
}
#tourism .map .anboh {
	margin: -230px auto 0;
	width: 84%;
}
#tourism .map .cars {margin: 50px auto 0;}
/*------------------------------------
ご利用ガイド
------------------------------------*/
#guide {}
#guide section {margin: 60px auto;}
#guide h2 {
	color: #225fb7;
	font-size: 36px;
	text-align: center;
	line-height: 1;
}
#guide .purpose {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
#guide .purpose .purpose_box {
	margin: 0 20px;
}
#guide .purpose .purpose_box img {
	width: 100%;
}
#guide .purpose .purpose_box h3 {
	font-size: 22px;
	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: 16px;
	text-align: center;
	border-radius: 5px;
	opacity: 1;
}
#guide .purpose .purpose_box a i {
	color: #fff;
	font-size: 16px;
	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: 16px;
}
#guide .step {
	display: flex;
	width: 90%;
	margin: 40px auto;
}
#guide .step .bar {
	display: block;
	height: 271px;
	margin-right: 30px;
}
#guide .step_box{
	width: 100%;
}
#guide .step h3 {
	font-size: 32px;
	font-weight: 700;
	margin: 10px 0 20px;
}
#guide .step h4 {
	color: #f15a24;
	font-size: 24px;
	font-weight: 700;
	margin: 5px 0;
}
#guide .step .flame {
	display: block;
	padding: 20px;
	background: #fff;
	border: 4px solid #b3b3b3;
}
#guide .step .flame.flex-wrap {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
#guide .step .flame img {
	width: 214px;
	height: 100%;
	margin-left: 20px;
}
#guide .step .flame img.norisute {
	min-width: 170px;
	max-width: 170px;
	min-height: 117px;
	max-height: 117px;
}
#guide .step .flame img.thanksyou {
	min-width: 94px;
	max-width: 94px;
	min-height: 141px;
	max-height: 141px;
}
#guide .step .flame p {font-size: 16px;}
#guide .step .flame .system {}
#guide .step .flame .list {
	display: flex;
	justify-content: center;
	margin: 16px 0;
}
#guide .step .flame .list li {
	width: 110px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	background: #225fb7;
	margin: 0 6px;
	padding: 10px 20px;
	border-radius: 5px;
}
#guide .step .flame .tel {
	display: block;
	color: #225fb7;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}
#guide .step .flame .tel i {
	font-size: 32px;
	margin-right: 12px;
}
.reservation {
	display: block;
	position: relative;
	width: 80%;
	bottom: 4px;
	margin: 40px auto 0;
	padding: 12px 0;
	background: #ff1d25;
	border-radius: 10px;
	box-shadow: 0 4px 0 #961116;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	opacity: 1;
	transition: 0s;
}
.reservation:active {
	bottom: 0;
	box-shadow: none;
}
.reservation i {
	color: #fff;
	font-size: 24px;
	margin-left: 10px;
}
/*------------------------------------
投稿ページ
------------------------------------*/
#single {
	width: 100%;
	margin: 6px 0 24px;
}
#single p {margin: 12px 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: 28px;
	font-weight: 700;
	line-height: 1.5;
	padding: 48px 4px;
}
#single h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	margin: 12px 0;
	padding: 10px 2px;
	border-bottom: 3px solid #225fb7;
}
#single h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin: 12px 0;
	padding: 12px 16px;
	background: #eee;
}
#single h4 {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 12px 0;
	padding: 10px 22px;
}
#single h4:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 2px;
	width: 12px;
	height: 12px;
	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;
	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 12px;
}
#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: 80%;
	margin: 0 auto 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: 90%;
	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: 200px;
	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 {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-top: 16px;
}
#sidebar .widget {
	display: flex;
	width: 100%;
}
#sidebar .widget h3 {display: none;}
#sidebar .widget a {width: 48%;}
#sidebar .widget img {
	display: block;
	width: 100%;
	height: 100%;
	margin-bottom: 16px;
}
#sidebar .pickup {
	width: 49%;
	height: auto;
	margin: 16px 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: calc(100% - 20px);
	border-bottom: 1px solid #b3b3b3;
	margin: 10px auto 0;
	padding: 0 0 8px;
	background: #fff;
	box-shadow: 0 0 0 10px #fff;
}
#sidebar .pickup a:last-child {
	border-bottom: none;
	padding: 0;
}
#sidebar .pickup a h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666;
	font-weight: 700;
}
#sidebar .pickup a .date {
	color: #666;
	font-size: 12px;
}
/*------------------------------------
お問い合わせフォーム
------------------------------------*/
#contact {margin: 60px auto;}
#contact section{margin: 32px auto;}
#contact h2 {
	display: block;
	color: #225fb7;
	font-size: 36px;
	text-align: center;
	line-height: 1;
	padding: 0 0 12px;
}
#contact h3 {
	font-size: 21px;
	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: 100%;
	margin: 40px auto;
}
#contact .flow h4{
	display: flex;
	align-items: center;
	line-height: 1.5;
	border: 1px solid #225fb7;
	margin: 0 0 10px;
	padding: 0;
}
#contact .flow h4 span{
	padding: 0 18px;
	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;
	white-space: nowrap;
	background: #225fb7;
	padding: 14px 20px 4px;
}
#contact .flow h4 .num img{
	width: 42px;
	height: 42px;
}
#contact .form{
	width: 698px;
	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: 62%;
	padding: 2%;
	vertical-align: middle;
}
#contact table td a {
	color: #fff;
	font-size: 13px;
	vertical-align: middle;
	background: #f00;
	padding: 5px 10px;
	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 input,
#contact table textarea,
#contact table select {
	width: calc(100% - 18px);
	padding: 6px;
	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;
}

#contact .address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	margin-bottom: 32px;
	padding: 0 20px;
}
#contact .address a {
	color: #225fb7;
	font-size: 32px;
	margin: 0 16px;
	line-height: 1.75;
}
#contact .address a i {
	color: #225fb7;
	font-size: 32px;
	margin-right: 10px;	
}
#contact .address p {
	display: block;
	margin: 0 auto;
}
#contact .address p span {
	color: #225fb7;
	font-size: 18px;
	margin: 0 8px;
}
/* 2024年3月 */
#contact .address p span.holiday {
	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;}
/*------------------------------------
固定バー
------------------------------------*/
#fix-tel {display: none;}
/*------------------------------------
404.php
------------------------------------*/
#notfound {padding: 148px 0;}
#notfound .flex-wrap {
	justify-content: center;
	align-items: center;
}
#notfound .char {padding-left: 40px;}
#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;
}