@charset "UTF-8";

body {
	background-color: white;
}

label {
	margin-bottom: 0;
}

select, input[type="text"] {
	border: 1px solid gray;
	border-radius: 0.2rem;
	padding: 0.1rem 0.2rem;
}

button.flat {
	padding: 2px 10px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.1s;
}
button.blue {
	box-shadow: 1px 1px 2px 0px inset rgba(255,255,255,0.4), -1px -2px 2px 0px inset rgba(0,0,0,0.4);
	background-color: #005DC5;
	border: 1px solid #1B3451;
	color: white;
	transition: all 0.2s;
}
button.blue:hover {
	background-color: #3A80CE;
}
button.blue:active {
	background-color: #054FA2;
}

p {
	margin-bottom: 0.1rem;
}

ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
dl, dd {
	margin: 0;
	padding: 0;
}

ul.disc {
	list-style: disc;
	padding-left: 1.5rem;
}

ul.side-list {
	font-size: 0;
}
ul.side-list li {
	display: inline-block;
	font-size: 1rem;
}

#mask {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	transition: all 0.1s;
}

main section h1 {
	position: relative;
	font-size: 1.3rem;
	border-radius: 6px;
	padding: 0.3rem 1.2rem;
	margin-bottom: 0;
	font-weight: bold;
	background: rgba(175,235,255,0.5);
	color: #005979;
}
main section h1::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	font-size: 0;
	border: 2px solid #0097CE;
	border-width: 7px 3px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
main section h1::after {
	content: "";
	position: absolute;
	bottom: 10px;
	right: 0;
	font-size: 0;
	border: 2px solid #0097CE;
	border-width: 7px 3px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
main section .content {
	margin: 4px 2px;
	padding: 0.1rem 0.5rem;
	border: 1px dashed silver;
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
main section .content > p {
	margin: 0.5rem;
}
main section .content > p:first-child {
	margin-top: 0.2rem;
}
section article > h2 {
	width: 12rem;
	padding: 0.1rem 0.6rem;
	border-bottom: 1px dotted #0097CE;
	font-size: 1.2em;
	font-weight: bold;
}
section article > p {
	margin: 0 2rem;
}
section article > ul {
	margin: 0 2rem;
}

header {
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
	background-color: #0097CE;
	overflow: hidden;
	clear: both;
}

#top-logo {
	float: left;
	position: relative;
	width: 300px;
	height: 80px;
	background-color: white;
	overflow: hidden;
}
#top-logo a {
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url('/img/logo_s.png') center center no-repeat;
	filter: drop-shadow(-2px -2px 2px white) drop-shadow(2px 2px 2px white);
	transition: all 0.5s;
}
#top-logo a:hover {
	background: url('/img/logo_s.png') center center no-repeat, #FFF3;
}
#top-logo::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: -120%;
	background-color: #005DC5;
	width: 120%;
	height: 50%;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	transition: all 0.3s cubic-bezier(0.8, 0.00, 0.07, 1);
}
#top-logo:hover::before {
	left: 0%;
}
#top-logo::after {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	right: -120%;
	background-color: #44D1ED;
	width: 120%;
	height: 50%;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	transition: all 0.3s cubic-bezier(0.8, 0.00, 0.07, 1);
}
#top-logo:hover::after {
	right: 0%;
}

.mob-icon {
	position: fixed;
	z-index: 1002;
	right: 10px;
	width: 31px;
	height: 31px;
	border-radius: 0.3rem;
	transition: all 0.2s;
}
#mob-nav {
	top: 8px;
	box-shadow: 1px 1px 2px 0px inset rgba(255,255,255,0.4), -1px -2px 2px 0px inset rgba(0,0,0,0.4);
	background-color: #005DC5;
	color: white;
}
#mob-nav-icon {
	display: block;
	position: absolute;
	top: 14px;
	left: 7px;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: white;
	transition: all 0.1s ease;
}
#mob-nav-icon::before, #mob-nav-icon::after{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: white;

	transition: all 0.3s ease;
}
#mob-nav-icon::before {
	top: -5px;
}
#mob-nav-icon::after {
	top: 5px;
}
#mob-nav.action {
	background-color: white;
	box-shadow: 0px 0px 0px 0px inset rgba(255,255,255,0.0), 0px 0px 0px 0px inset rgba(0,0,0,0.0);
	border: 1px solid silver;
}
#mob-nav.action #mob-nav-icon {
	width: 0;
	transform: rotateX(180deg);
	background: black;
}
#mob-nav.action #mob-nav-icon::before {
	top: 0;
	transform: rotate(405deg);
	background: black;
}
#mob-nav.action #mob-nav-icon::after {
	top: 0;
	transform: rotate(-405deg);
	background: black;
}

#top-menu {
	float: right;
	width: 660px;
	background-color: white;
}
#top-menu ul {
	float: right;
	border-left: 3px double silver;
}
#top-menu li {
	position: relative;
	height: 80px;
	overflow: hidden;
}
#top-menu li::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: -120%;
	background-color: #AFEBFF;
	width: 120%;
	height: 100%;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	transition: all 0.3s cubic-bezier(0.8, 0.00, 0.07, 1);
}
#top-menu li:hover::before {
	left: 0%;
}
#top-menu li:not(:last-child) {
	border-right: 1px solid silver;
}
#top-menu li > a {
	position: relative;
	z-index: 1;
	display: inline-block;
	width: 218px;
	height: 80px;
	font-size: 1rem;
	font-weight: bold;
	color: black;
	text-align: center;
	line-height: 80px;
	transition: all 0.2s;
}
#top-menu li > a:hover {
	color: #555;
	text-decoration: none;
	font-size: 1.2rem;
}

#content {
	padding: 0.5rem 0.3rem;
	min-height: calc(100vh - 130px);
}

.breadcrumb {
	width: 960px;
	margin: 0 auto 0.5rem auto;
	padding: 0 10px;
	background-color: transparent;
	font-size: 0.8em;
}
.breadcrumb-item:first-child.active::before, .breadcrumb-item:first-child a::before {
	display: inline-block;
	content: "\f21c";
	margin-right: 0.2em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	transform: scaleX(-1);
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
}

.container {
	width: 960px;
	margin : 0 auto;
	padding: 0;
	overflow: hidden;
	clear: both;
}

.bold-box {
	padding: 0.2rem 1rem 0.5rem 1rem;
	padding-bottom: 8px;
	border-radius: 8px;
	border: 3px solid #0097CE;
}

footer {
	position: relative;
	height: 180px;
	margin-top: 40px;
	padding: 1rem;
	background-color: #0097CE;
	text-align: center;
}
footer p {
	margin-bottom: 0;
}
footer, footer a {
	color: #ccf0ff;
	font-size: 0.8rem;
}
#footer-logo a {
	display: block;
	width: 300px;
	height: 50px;
	margin: 0 auto;
	border-radius: 0.5rem;
	box-shadow: 0 0 0px 30px #0097CE77 inset;
	background: url(/img/logo_s.png) no-repeat center center, #69bddc;
	transition: all 0.2s;
}
#footer-logo a:hover {
	box-shadow: 0 0 0px 30px #0097CE33 inset;
}
footer nav a:hover {
	color: white;
}
footer nav li:not(:last-child)::after {
	content: '|';
	margin: 0 0.5rem;
}

#cont-bp-kun .bp-kun-run {
	position: absolute;
	top: -29px;
	z-index: 3;
	animation: bike_engine 0.1s linear infinite, bike_run 240s linear alternate infinite, bike_jamp 10s infinite;
}
@keyframes bike_engine {
	0% {transform: translateY(0px) rotateZ(0deg);}
	100% {transform: translateY(1px) rotateZ(2deg);}
}
@keyframes bike_run {
	0% {left: 75%;}
	100% {left: 25%;}
}
@keyframes bike_jamp {
	0% {top: -29px;}
	99% {top: -29px;}
	100% {top: -31px;}
}
#cont-bp-kun .bp-kun {
	width: 48px;
	height: 32px;
	background: url('/img/bike.png') no-repeat;
	transition: all 0.2s;
}
#cont-bp-kun .bp-kun:active {
	transform: translate(5px, -6px) rotateZ(40deg);
}

#cont-bp-kun .tree {
	position: absolute;
	top: -62px;
	z-index: 2;
	width: 48px;
	height: 64px;
	background: url('/img/tree01.png') no-repeat;
	opacity: 0;
	animation: tree 1s linear infinite;
}
@keyframes tree {
	0% {left: 10%;opacity: 0;}
	69% {left: 15%;opacity: 0;}
	70% {left: 15%;opacity: 0.7;}
	100% {left: 85%;opacity: 1;}
}

#cont-bp-kun .home {
	position: absolute;
	top: -58px;
	z-index: 1;
	width: 64px;
	height: 64px;
	background: url('/img/home01.png') no-repeat;
	opacity: 0;
	animation: home 7.7s linear infinite;
}
@keyframes home {
	0% {left: 10%;opacity: 0;}
	95% {left: 20%;opacity: 0;}
	96% {left: 20%;opacity: 0.7;}
	100% {left: 80%;opacity: 1;}
}

#contact {
	width: 270px;
	padding: 0.5rem;
	border: 1px solid silver;
	border-radius: 0.4rem;
	text-align: center;
	overflow: hidden;
}
#contact .tel {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0.3rem 0;
	color: #ff7400;
}
#contact .contact-form {
	display: block;
	padding: 5px 50px;
	border-radius: 5px;
	box-shadow: 2px 2px 4px 1px inset rgba(255,255,255,0.4), -2px -2px 4px 1px inset rgba(0,0,0,0.4);
	background-color: #005DC5;
	font-weight: bold;
	color: white;
	text-decoration: none;
}
#contact .contact-form:hover {
	background-color: #3A80CE;
}
#contact .contact-form:active {
	background-color: #054FA2;
}
.list-table h2 {
	font-size: 90%;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #EAEAEA !important;
	padding: 5px 8px;
	color: #333;
}

#banner_bilo {
    border: 1px solid silver;
    border-radius: 0.4rem;
	overflow: hidden;
}

ul.paginator-nav li {
	padding: 0 3px;
	font-size: 0.8rem;
}
ul.paginator-nav li:not(:last-child) {
	border-right: 1px solid silver;
}
ul.paginator-nav .total {
	font-size: 1.1rem;
	color: #ff7400;
}

p:last-child {
	margin-bottom: 0;
}

ul.list-table > li {
	padding: 0.5rem 0.4rem;
}
ul.list-table > li:not(:last-child) {
	border-bottom: 1px dotted #CCC;
}

ul.list-table > li dl {
	width: 100%;
	font-size: 0.9em;
	letter-spacing: 0.12em;
	line-height: 1.5em;
	clear: both;
	overflow: hidden;
}

ul.list-table > li dl dt {
	float: left;
	width: 15%;
	font-weight: bold;
}

ul.list-table > li dl dd {
	float: right;
	width: 82%;
}
ul.list-table > li dl dd ul:not(.side-list) li:not(:last-child){
	margin-bottom: 0.1rem;
	border-bottom: 1px dotted #CCC;
}

.w-min { width: 2rem !important; min-width: 2rem !important; }
.w-small-xx { width: 3rem !important; min-width: 3rem !important; }
.w-small-x { width: 4rem !important; min-width: 4rem !important; }
.w-small { width: 6rem !important; min-width: 6rem !important; }
.w-middle-s { width: 8rem !important; min-width: 8rem !important; }
.w-middle-l { width: 10rem !important; min-width: 10rem !important; }
.w-large { width: 12rem !important; min-width: 12rem !important; }
.w-large-x { width: 16rem !important; min-width: 16rem !important; }
.w-large-xx { width: 20rem !important; min-width: 20rem !important; }
.w-max { width: 100% !important; min-width: 100% !important; }

.blue { color: blue; }
.red { color: red; }
.orange { color: orange; }
.bold { font-weight: bold; }
.em {
	color: #0097CE;
	font-weight: bold;
	font-size: 1.2em;
}

.required::after {
	content: "必須";
	display: inline;
	font-size: 0.5rem;
	color: red;
	vertical-align: bottom;
	margin-left: 0.2rem;
}

.price {
	color: red;
	font-size: 1.1rem;
	font-weight: bold;
}

.icon {
	width: 32px;
	height: 32px;
	border-radius: 4px;
	box-shadow: 0 0 1px 1px #b3b3b3 inset;
}
.icon.small {
	width: 16px;
	height: 16px;
	border-radius: 2px;
}
input[type=checkbox] + img.icon {
	filter: contrast(50%);
}
input[type=checkbox]:checked + img.icon {
	filter: none;
}

.icon-check::before {
	content: "\f0c8";
	margin-right: 0.3rem;
	font-family: "Font Awesome 5 Free";
	font-size: 1.3em;
	vertical-align: -9%;
}
input:checked + .icon-check::before {
	content: "\f14a";
}

.g-map-wrapper {
	overflow: hidden;
}
.g-map-wrapper.small {
	width: 300px;
	height: 300px;
}

.frame-dashed {
	margin: 0 0.5rem 0.5rem 0.5rem;
	padding: 0.5rem;
	border: 1px dashed #AAA;
	border-radius: 0.5rem;
}

.cup-dashed {
	margin: 4px 2px;
	padding: 0.2rem 0.5rem 0.2rem 0.5rem;
	border: 1px dashed silver;
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

@media only screen and (min-width: 960px) {
	.is-sp {
		display: none;
	}
	*[id^="mob-"], *[class^="mob-"] { display: none !important;}
}

@media only screen and (max-width: 959px) {
	.is-pc {
		display: none;
	}

	*[id^="desc-"], *[class^="desc-"] { display: none !important;}

	section article > ul { margin:0; }

	#top-logo { width:100%; }

	#top-menu {
		position: fixed;
		right: -80%;
		z-index: 1001;
		width: 80%;
		border-bottom-left-radius: 8px;
		transition: all 0.2s;
	}
	#top-menu ul { width:100%; border:none; }
	#mob-nav.action + #top-menu { right: 0; }
	#top-menu li { display: list-item; }
	#top-menu li, #top-menu li > a { width: 100%; }
	#top-menu li:not(:last-child) {
		border-right:none;
		border-bottom: 1px solid silver;
	}

	#contact { width: 100%; }

	.breadcrumb { width: 100%; }
	.container { width: 100%; }
	ul.paginator-nav li.page-total { display:list-item; border:none; }
	ul.paginator-nav li.page-total .total { font-size:0.8rem; }
	#banner_bilo { margin-bottom: 1.5rem; }
	#banner_bilo img { width: 100%; }
	.page-top, .page-last, ul.paginator-nav li.page-per { display:none; }
	.price { font-size: 1rem; }
}
