@charset "UTF-8";
/* CSS Document */


* {
	max-width: 100%;
	box-sizing: border-box;
}
header {
	width: 100%;
	min-height: 56px;
	top: 0;
	z-index: 1;
	background: #fff;
	border-bottom: 1px solid #ededed;
}
.fixed {
	position: fixed;
}
h1 {
	background: #5cb9ed;
	color: #fff;
	text-align: center;
	padding: 5px 2%;
	line-height: 1;
	font-size:10px;
	font-size: 1.0rem;
}

.spLogo {
	/* display: inline-block; */
	text-align: center;
	padding: 10px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	z-index: 2;
}

#nav-drawer {
	position: relative;
}
.nav-unshown {
	display:none;
}
#nav-open {
	display: inline-block;
	/* width: 80px;
	height: 56px; */
	vertical-align: middle;
	padding: 12px 64px 35px 12px;
	/* margin: 17px 0 0 10px; */
	/* position: absolute; */
	/* border: 1px solid red; */
	position: absolute;
	z-index: 4;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #555;
	display: block;
	content: '';
	cursor: pointer;
	z-index: 5;
}
#nav-open span {
	margin: 0 0 0 6px;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
#nav-open p {
	display: block;
	padding: 20px 0 0 0;
	font-size: 12px;
}
#nav-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅*/
	height: 100%;
	background: #fff;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	background: #333;
}
#nav-content .closeNav {
	background: #000;
	color: #fff;
	text-align: center;
	width: 80%;
	border-radius: 8px;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 14px;
}
#nav-close.open {
	display: block;/*カバーを表示*/
	opacity: .5;
	transition: .3s ease-in-out;
}

#nav-content.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav {
	margin: 0 0 2em;
}

#nav li {
	border-bottom: 1px solid #ededed;
}
#nav li:last-child {
	border: none;
}
#nav li a {
	display: block;
	height: 70px;
	background: #333;
	color: #fff;
	padding: 20px 0px 20px 4%;
	text-decoration: none;
}
#nav li a span {
	font-size: 18px;
}
#nav li a img {
	display: none;
}

section {
	padding: 0 3%;
}



#footer {
	padding: 0 0 10px;
	background: #5cb9ed;
	text-align: center;
}
#footer ul {
	background: #fff;
	margin: 0 0 1em;
}
#footer li {
	width: 50%;
	float: left;
	box-sizing: border-box;
	border-top: 2px solid #5cb9ed;
	border-right: 1px solid #5cb9ed;
	text-align: center;
}
#footer li:last-child {
	float: right;
	border-left: 1px solid #5cb9ed;
	border-right: 0;
}
#footer li a {
	display: block;
	color: #5cb9ed;
	width: 100%;
	font-size: 14px;
	font-size: 1.4rem;
	text-decoration: none;
	padding: 10px 0;
}

#footer .info {
	margin: 0 0 1em;
}
#footer .info p {
	color: #fff;
	text-align: center;
}
#footer small {
	display: inline-block;
	color: #fff;
	margin: 0 auto;
	padding: 1em 0 0 0;
	border-top: 1px dashed #fff;
	text-align: center;
}

#footer .toTop  {
	position: fixed;
	bottom: 60px;
	right: 0;
	opacity: 0.8;
	z-index: 4;
}
#footer .toTop a {
	display: block;
	background: #5cb9ed;
	width: 60px;
	height: 60px;
	position: relative;
	border-radius: 999px;
}
#footer .toTop i {
	color: #fff;
	font-size: 24px;
	font-size: 2.4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

/* announce */
#wrapper #announce {
	width: 100%;
	display: block;
	justify-content: unset;
	margin: 0 auto 40px;
	text-align: center;
}
#wrapper #announce h2 {
	font-weight: bold;
	font-size: 24px;
	margin: 0 0 0.5em;
}	


@media screen and (min-width: 813px) {
	#wrapper #announce {
		width: 84%;
		display: flex;
		justify-content: space-between;
		margin: 0 auto 40px;
		text-align: left;
	}
	#wrapper #announce h2 {
		font-size: 20px;
		margin: 0;
	}		
}


/* subpage */

h2.secTitle {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
h2.secTitle::after {
	content: " ";
	border-bottom: 2px solid #5cb9ed;
	display: block;
	width: 10%;
	margin: 0 auto 1em;
}
p.subTitle {
	text-align: center;
	margin: -1em 0 2em;
}

.bgActive {
	padding: 1em 3%;
	background: #5cb9ed;
}
.bgActive * {
	color: #fff;
}
.bgActive .secTitle::after {
	border-bottom: 2px solid #fff;
}
#wrapper {
	margin: 0 0 40px;
}
#wrapper > section {
	margin: 0 0 60px;
}

#breadcrumb {
	margin: 0 0 40px;
	padding: 0 3%;
}
#breadcrumb li {
	float: left;
}
#breadcrumb li::after {
	content: ">";
	display: inline-block;
	padding: 0 4px;
}
#breadcrumb li:last-child::after {
	content: "";
	padding: 0;
}

.lead {
	text-align: center;
	padding: 0 5%;
	margin: 0 0 20px;
}

/* shop toppage & shoppage */
#shop dt {
	width: 100%;
	background: #333;
	margin: 0 auto 15px;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	line-height: 1;
	font-size:16px;
	font-size: 1.6rem;
	padding: 14px 0;
	color: #fff;
	position: relative;
	cursor: pointer;
}
#shop dt i {
	color: #fff;
	position: absolute;
	right: 5%;
}
#shop dt.open i {
	transform: rotateX(180deg)
}
#shop dt:active {
	background: #888;
	color: #fff;
}

#shop li dd {
	display: none;
	margin: 0 0 40px;
	padding: 0 1% 15px;
}
#shop li dd .photo {
	margin: 0 0 10px;
}
#shop li dd .photo img {
	width: 100%;
	height: auto;
}
#shop li dd .address {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
}
#shop li dd .tel {
}
#shop li dd .tel a {
	font-size: 20px;
	font-size: 2.08rem;
}
#shop li dd .line {
	margin: 0 0 2em;
}

#shop li dd .line a img {
	display: block;
	width: 130px;
}


#creditfooter {
	display: none;
}

#wrapper #lineFriend {
	width: 94%;
	background: #2BC52B;
	padding: 10px;
	border-radius: 6px;
	margin: 0 3% 40px;
}
#lineFriend h2 {
	/* padding: 5px 10px; */
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
#lineFriend > p {
	/* padding: 1em 0; */
	margin: 0 0 0.5em;
	font-size: 16px;
	text-align: center;
	color: #fff;
}
#lineFriend > p span {
	color: #F0767A;
	display: block;
}
#lineFriend li {
	/* border: 2px solid #2BC52B;
	border-radius: 6px; */
	margin: 0 0 24px;
	/* padding: 10px; */
	text-align: center;
	box-sizing: border-box;
}
#lineFriend li:last-child {
	margin: 0;
}
#lineFriend li img {
	border: 3px solid #fff;
	border-radius: 6px;
}
#lineFriend li h3 {
	font-weight: bold;
	font-size: 18px;
	margin: 0 0 10px;
}
#lineFriend li h3::after {
	content: "";
	border-bottom: 2px solid #2BC52B;
	display: block;
	width: 60px;
	margin: 0 auto;
	padding: 2px 0 0;
}

@media screen and (min-width: 813px) {
	#breadcrumb {
		margin: 0 auto 40px;
		width: 1280px;
	}

	#wrapper {
		width: 1280px;
		margin: 0 auto 40px;
	}
	#shop ul {
		max-width: 1280px;
	}
	#shop > ul > li {
		width: 50%;
		margin: 0 auto;
		}
		/* #shop > ul > li {
		width: 48%;
		float: left;
		margin: 0 2% 0 0;
	}
	#shop > ul > li:last-child {
		float: right;
		margin: 0;
	} */
	#shop dt {
		cursor: default;
		pointer-events: none;
	}
	#shop dt i {
		display: none;
	}
	#shop > ul > li dd {
		display: block;
	}

	#wrapper #lineFriend {
		width: 48%;
		margin: 0 auto 30px;
		padding: 10px;
		border: none;
	}
	#lineFriend ul {
		text-align: center;
	}
	#lineFriend li {
		display: inline-block;
		width: 30%;
		margin: 0 1%;
	}
	#lineFriend li:last-child {
		margin: 0 1%;
	}
}

/* price */
#price ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 24px;
}
#price li {
	flex: 0 1 calc(50% - 10px);
	margin: 0 5px 10px;
	background: #5cb9ed;
	padding: 0.5em;
}
#price li p,
#price li p span {
	color: #fff;
	text-align: center;
}
#price .name p {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
}
#price .name .base {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: normal;
}
#price .price p {
		font-size: 40px;
		font-weight: bold;
		line-height: 1.5;
}
#price .price p span {
	font-size: 18px;
	font-size: 1.8rem;
}
#price .tax {
	text-align: right;
}
#price .pay {
	text-align: center;
}
#price .pay p {
	font-weight: bold;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 0 10px;
}
#price .pay .pitapa {
	text-align: center;
	font-size: 12px;
}

@media screen and (min-width: 980px) {
	#price li {
		flex: 0 1 calc(25% - 10px);
		margin: 0 5px 10px;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #5cb9ed;
		padding: 1em 0.5em;
	}
	#price li p,
	#price li p span {
		text-align: left;
	}	
	#price li .name {
		width: 45%;
	}
	#price li .price {
		width: 55%;
	}
	#price .name p {
		font-size: 18px;
		font-weight: bold;
		line-height: 1.2;
	}
	#price .name .base {
		font-size: 16px;
		font-weight: normal;
	}
	#price .price p {
			font-size: 30px;
			font-weight: bold;
			line-height: 1.2;
			text-align: right;
	}
	#price .price p span {
		font-size: 18px;
	}
}

@media screen and (min-width: 1200px) {
	#price li {
		padding: 1em;
	}
	#price li .name {
		width: 50%;
	}
	#price li .price {
		width: 50%;
	}
	#price .name p {
		font-size: 24px;
	}
	#price .name .base {
		font-size: 16px;
	}
	#price .price p {
			font-size: 36px;
	}
	#price .price p span {
	}
}