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

/* ---------------------------------------------------------------------------------------------

　   web font

--------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

/* ---------------------------------------------------------------------------------------------

　   サイト全体

--------------------------------------------------------------------------------------------- */

html {
	margin:			0;
	padding:		0;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;/* スマホ文字サイズ自動調整 */
	-webkit-text-size-adjust:	100%;a
	}
*{
	margin:				0;
	padding:			0;
	/* box-sizing:			border-box;	ボックスサイズ枠線まで含める */  
	}
	
body{
	color:#222222;
	font-family:	"Meiryo","メイリオ","ＭＳ　Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;/*チラつき防止*/
	line-height:	160%;
	width:			100%;
	padding:		0;
	border-top:solid 7px #395DAA;
	}
	@media only screen and (max-width: 900px) {
		body{
			line-height:	150%;
			}
		}
	@media only screen and (max-width: 600px) {
		body{
			font-size:		0.8em;
			}
		}

/* ---------------------------------------------------------------------------------------------

　   ページ読み込み　ふわっと表示

--------------------------------------------------------------------------------------------- */

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0
    }
    100% {
      opacity: 1
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }
    100% {
      opacity: 1
    }
  }


/* ---------------------------------------------------------------------------------------------

　   パーツ

--------------------------------------------------------------------------------------------- */

a{
	color:#2e5fa1;
	/*text-decoration:none;*/
	}
a:hover{}

/*赤色文字 料金系*/
.red{
	color:#f00;
	font-weight: bold;
	font-size: 140%;
	}


li{
	list-style-type:none;
	}


/*　回りこみ　*/
.floatleft{
	float:left;
	}
.floatright{
	float:right;
	}
img.floatleft{
	float:left;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
	}
img.floatright{
	float:right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	}
	@media screen and (max-width: 800px) {
		img.floatleft{
			float:none;
			clear: both;
			margin: 5px;
			}
		img.floatright{
			float:none;
			clear: both;
			margin: 5px;
			}
		}



/*　回りこみ解除　*/
.clear{
	clear:both;
	float: none;
	}
.clear:after {
	content: " "; 
	display: block;
	clear: both;
	}

/*PCでのtel:無効に*/
a[href^="tel"] {
	display:block;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
	@media screen and (max-width: 800px) {
		a[href^="tel"] {
			pointer-events: auto;
			}
		}


/* ---------------------------------------------------------------------------------------------

　   画像

--------------------------------------------------------------------------------------------- */
img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}

/* 画像 正方形トリミング object-fit　IE・Edge用　*/
.object-fit-img{
	object-fit: contain;
	font-family: 'object-fit: contain;'
	}

/* ---------------------------------------------------------------------------------------------

　   wrap

--------------------------------------------------------------------------------------------- */

/*ページ全体*/
.wrap{
	overflow: hidden;
	}

/*コンテンツ全体*/
#wrapper{
	width:96%;
	max-width:1000px;
	margin:0 auto;
	}

/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

header#header{
	margin-bottom: 20px;
	}

/*-- サイトタイトル --*/

/*全体*/
.site_ttl{
	width: 100%;
	padding: 15px 0;
	}
.site_ttl .s_ttl_inner{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	}

/*ロゴマーク*/
.site_ttl h1{}
.site_ttl h1 a{
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	}
.site_ttl h1 a:hover{
	opacity: .6;
	}
.site_ttl h1 a img{
	width: 425px;
	height: auto;
	}

/*右上ナビ*/
ul.headernavi{
    padding: 0; 	
    margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	}
ul.headernavi li a{
	font-size:13px;
	margin-right: 14px;
	}
ul.headernavi li a::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	margin-right: 3px;
	}

	@media only screen and ( max-width : 1000px ) {
		.site_ttl .s_ttl_inner{
			display: block;
			}
		/*右上ナビ*/
		ul.headernavi{
			justify-content:flex-start;
			}
		}
	@media only screen and ( max-width : 800px ) {
		ul.headernavi{
			display: none;
			}
		}
	@media only screen and ( max-width : 600px ) {
		header#header{
			margin-bottom: 10px;
			}
		.site_ttl{
			padding-top: 7px;
			padding-bottom: 0;
			}
		/*ロゴマーク*/
		.site_ttl h1 a img{
			width: 70%;
			height: auto;
			}
		}



/*-- ナビメニュー --*/
.h_nav{
	width: 100%;
	margin: 0 auto;
	position: relative;
	}

#gNav{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	}

#gNav a:hover {
	opacity:0.6;
	-webkit-filter: alpha(opacity=60);
	-moz-filter: alpha(opacity=60);
	-ms-filter:"alpha( opacity=60 )";
	-o-filter: alpha(opacity=60);
	filter: alpha(opacity=60);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	}

nav .sub-menu,.mean-container .mean-nav ul ul {/*プルダウン背景*/
	background-color: #ffffff;
	}

#gNav ul.nav {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
#gNav li {
	position: relative;
	list-style: none;
	align-items:center;
	}
#gNav ul.nav > li {
	width: 19.5%;
	}

#gNav ul.nav > li > a {
	position: relative;
	display: block;
	height: 100px;
	color: #40210f;
	font-size: 16px;
	font-weight: bold;
	line-height: 115%;
	text-align: center;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 3px;
	border: dashed 1px #cccccc;
	border-radius: 5px;
	}
#gNav li a:hover {
	color: #40210f;
	background-color: #f9efd2;
	}

#gNav ul.nav > li > a > span{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	width: 100%;
	text-align: center;/*一応BOX内の文字も中央寄せ*/
	}

#gNav ul.nav > li > a > span > img {
	display: block;
	margin: 0 auto 5px auto;
	}
#gNav ul.nav > li > a > span > p{
	display: block;
	color: #c5bba1;
	font-size: 9px;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	line-height: 10px;
	letter-spacing: 0.5px;
	margin-top: 3px;
	}

#gNav .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
	text-align: center;
	font-weight: bold;
    -webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
    transition: all .2s ease;
	}
#gNav .sub-menu a {
    display: block;
    padding: 16px 10px;
    line-height: 1.2em;
	border: none;
	border-radius: 0;
	background-color:#dfe8fe;
	color: #40210f!important;
	}
#gNav .sub-menu li {
	border-bottom: solid 1px #ffffff;
	}
#gNav .sub-menu li:last-child {
	border-bottom: none;
	}
#gNav .sub-menu a:hover:after {
    content: none;
	}
#gNav .sub-menu li {
    display: block;
    font-size: 14px;
    padding: 0;
    margin: 0;
	}
#gNav .sub-menu li:last-child {
    border-bottom: none;
	}
#gNav ul > li:hover {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
	}

#gNav li:hover ul.sub-menu {
    top: 100px;
    visibility: visible;
    opacity: 1;
    z-index: 99;
	}
#gNav li ul li:after {
    content: none;
	}
#gNav li:hover ul.sub-menu a {
    color: #203258;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	}
#gNav .sub-menu li a:hover {
    background-color: #b3cbff;
	}

@media only screen and ( max-width : 980px ) {
	#h_top {
		width: 96%;
		padding-right: 0;
		}
	}
@media only screen and ( max-width : 800px ) {
	 .h_nav {
		display: none;
		}
	}


/* ---------------------------------------------------------------------------------------------

　   ドロワーメニュー

--------------------------------------------------------------------------------------------- */

/*　ドロワーメニュー全体　*/

button.drawer-toggle,
button.drawer-hamburger,
nav.drawer-nav,
button.drawer-toggle span{
    display: none;
	}

	@media only screen and (max-width: 800px) {

		/*　ドロワーメニュー全体　*/
		button.drawer-toggle,
		button.drawer-hamburger,
		nav.drawer-nav,
		button.drawer-toggle span{
			display: block;
			}

		/*　ハンバーガーアイコンの色　*/
		.drawer-hamburger-icon,
		.drawer-hamburger-icon:after,
		.drawer-hamburger-icon:before {
			background-color: #395DAA!important;
			}

		/*　ドロワーメニュー全体の背景色　*/
		.drawer-nav {
			background: #ffffff!important;
			overflow-y: scroll;
			}
		.drawer-nav ul.drawer-menu {
			padding-bottom: 50px;
			}

		/*　コンテンツ部分にかかる半透明の色　*/
		.drawer-overlay {
			background-color: rgba(0, 0, 0, .4)!important;
			}

		/*　会社名　*/
		.drawer-menu > li > a.drawer-brand{
			margin: 15px!important;
			padding: 10px 5px!important;
			line-height: 100%;
			}
		.drawer-menu > li > a.drawer-brand img{
			width: 85%;
			height: auto;
			}

		/*　メニュー　*/
		.drawer-menu > li > a.drawer-menu-item{
			font-size: 14px;
			font-weight: bold;
			margin: 0 20px 0 20px!important;
			padding: 11px 5px 11px 5px!important;
			color: #395DAA;
			border-top: dotted 1px #AABDE6;
			-webkit-transition-duration: 0.3s;
			-moz-transition-duration: 0.3s;
			-ms-transition-duration: 0.3s;
			-o-transition-duration: 0.3s;
			transition-duration: 0.3s;
			}
		
		.drawer-menu > li:last-child > a.drawer-menu-item{
			/*border-bottom: solid 1px #87a2be;*/
			}
		.drawer-menu li a:hover{
			color: #395DAA;
			text-decoration: none;
			opacity: 0.6;
			}

		.drawer-menu > li > ul,
		.drawer-menu > li > ul > li > ul{
			margin: 0 0 5px 16px!important;
			}

		.drawer-menu > li > ul > li,
		.drawer-menu > li > ul > li > ul > li{
			list-style: none;
			}

		.drawer-menu > li > ul > li > a.drawer-menu-item,
		.drawer-menu > li > ul > li > ul > li > a.drawer-menu-item{
			color: #777777;
			font-size: 11px;
			font-weight: bold;
			line-height: 15px;
			padding: 0 0 18px 0!important;
			margin-left: 0;
			padding-left:8px;
			text-indent:-8px;
			}

		.drawer-menu > li > ul > li > a.drawer-menu-item::before,
		.drawer-menu > li > ul > li > ul > li > a.drawer-menu-item::before{
			content: '- ';
			}

		.drawer-menu li a.drawer-brand,
		.drawer-menu li ul li a.drawer-menu-item{
			border-bottom:none;
			}
		.drawer-menu > li > a > i{
			color: #395DAA;
			font-size: 16px;
			margin-right: 8px;
			}
		
		.drawer--top.drawer-open .drawer-nav {
		  top: 0;
		  overflow: auto;
		  -webkit-overflow-scrolling: touch;
		}

		.drawer--left.drawer-open .drawer-nav,
		.drawer--left .drawer-hamburger,
		.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
		  left: 0;
		  overflow: auto;
		  -webkit-overflow-scrolling: touch;
		}

		.drawer--right.drawer-open .drawer-nav,
		.drawer--right .drawer-hamburger,
		.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
		  right: 0;
		  overflow: auto;
		  -webkit-overflow-scrolling: touch;
		}
		}

	@media only screen and (max-width: 480px) {
		/*　会社名　*/
		.drawer-menu > li > a.drawer-brand{
			margin: 12px 15px!important;
			padding: 8px 5px 2px 5px!important;
			line-height: 100%;
			}
		.drawer-menu > li > a.drawer-brand img{
			width: 60%;
			}
		/*　メニュー　*/
		.drawer-menu > li > a.drawer-menu-item{
			font-size: 13px;
			margin: 0 20px 0 20px!important;
			padding: 9px 5px 9px 5px!important;
			}
		.drawer-menu > li > ul > li > a.drawer-menu-item{
			padding: 0 0 7px 30px!important;
			}
		}

.drawer-btn{
	text-align: center;
	width: 80%;
	margin: 15px auto;
	}
.drawer-btn a{
	display: block;
	color: #ffffff;
	font-size: 14px;
	border: solid 1px #87a2be;
	border-radius: 3px;
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
	width: 100%;
	-webkit-transition: .5s all;
	-moz-transition: .5s all;
	-ms-transition: .5s all;
	-o-transition: .5s all;
	transition: .5s all;
	}
.drawer-btn a i{
	color: #87a2be;
	font-size: 14px;
	margin-right: 6px;
	}
.drawer-btn a:hover{
	color: #203258;
	border: solid 1px #ffffff;
	background-color: #ffffff;
	}
	@media only screen and (max-width: 480px) {
		.drawer-btn a{
			font-size: 13px;
			padding-top: 8px;
			padding-bottom: 8px;
			}
		}






/* ---------------------------------------------------------------------------------------------

　   コンテンツ

--------------------------------------------------------------------------------------------- */


main#main{}


/*.mainArea{
	width:100%;
	max-width: 1000px;
	margin:0 auto;
	}*/




/*-- 見出し リボン1 --*/
.ribbon_ttl_1{
	position: relative;
	padding:10px 20px;
	font-size:18px;
	color:#ffffff;
	background: #395DAA;
	text-align: center;
	box-shadow:0 1px 3px rgba(0,0,0,0.25);
	}
.ribbon_ttl_1::before,
.ribbon_ttl_1::after{
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
	border: 5px solid transparent;
	border-top: 5px solid #1A3654;
	}
.ribbon_ttl_1::before{
	right: 0;
	border-left: 5px solid #1A3654;
	}
.ribbon_ttl_1::after{
	left: 0;
	border-right: 5px solid #1A3654;
	}
	@media only screen and (max-width: 600px) {
		.ribbon_ttl_1{
			padding: 7px 10px 9px 10px!important;
			font-size:14px!important;
			}
		}


	
/*-- 見出し リボン2 --*/
.ribbon_ttl_2{
	display: block;
	position: relative;
	background: #395DAA;
	box-shadow: 0px 0px 0px 5px #395DAA;
	border: dashed 2px #87a2be;
	padding: 7px 5px;
	margin-top: 15px;
	margin-bottom: 20px;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	line-height: 140%;
	text-align: center;
	transition: 0.2s;
	} 
.ribbon_ttl_2::after {
	position: absolute;
	content: '';
	left: -7px;
	top: -7px;
	border-width: 0 0 15px 15px;
	border-style: solid;
	border-color: #fff #fff #a8d4ff;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
	}
.ribbon_ttl_2 > span{
	display: block;
	font-size: 9px;
	font-family: 'Quicksand', sans-serif;
	line-height: 140%;
	letter-spacing: 1px;
	}
.ribbon_ttl_2:hover{
	opacity: 1;
	color: #87a2be;
	} 
	@media only screen and (max-width: 600px) {
		.ribbon_ttl_2{
			box-shadow: 0px 0px 0px 3px #395DAA;
			border: dashed 1px #87a2be;
			padding: 7px 5px;
			margin-top: 5px;
			margin-bottom: 10px;
			font-size: 14px;
			line-height: 130%;
			} 
		.ribbon_ttl_2 > span{
			font-size: 8px;
			line-height: 130%;
			}
		.ribbon_ttl_2::after {
			left: -5px;
			top: -5px;
			border-width: 0 0 12px 12px;
			}
		}


	
/*-- 見出し リボン2 --*/
.ribbon_ttl_3{
	display: block;
	position: relative;
	background: #395DAA;
	box-shadow: 0px 0px 0px 5px #395DAA;
	border: dashed 2px #87a2be;
	padding: 1rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 140%;
	text-align: center;
	transition: 0.2s;
	} 
.ribbon_ttl_3::after {
	position: absolute;
	content: '';
	left: -7px;
	top: -7px;
	border-width: 0 0 15px 15px;
	border-style: solid;
	border-color: #fff #fff #a8d4ff;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
	}
.ribbon_ttl_3 > span{
	display: block;
	font-size: 9px;
	font-family: 'Quicksand', sans-serif;
	line-height: 140%;
	letter-spacing: 1px;
	}
.ribbon_ttl_3:hover{
	opacity: 1;
	color: #87a2be;
	} 
	@media only screen and (max-width: 600px) {
		.ribbon_ttl_3{
			box-shadow: 0px 0px 0px 3px #395DAA;
			border: dashed 1px #87a2be;
			padding: 0.7rem;
			margin-top: 5px;
			margin-bottom: 10px;
			font-size:  1.2rem;
			line-height: 130%;
			} 
		.ribbon_ttl_3 > span{
			font-size: 8px;
			line-height: 130%;
			}
		.ribbon_ttl_3::after {
			left: -5px;
			top: -5px;
			border-width: 0 0 12px 12px;
			}
		}






/*-- 見出し ボーダー1 --*/
.border1 {
	font-size: 18px;
	padding: .5em .75em;
	background-color: #f6f6f6;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.border1::first-letter {
	color: #395DAA;
	}
.border1 i {
	color: #395DAA;
	}


/*-- 見出し ふきだし1 --*/
.balloon {
	display: inline-block;
	position: relative;
	color: #412112;
	background-color: #E7EDFD;
	padding: 12px 15px;
	border-radius: 7px;
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 19px;
	}
.balloon::before {
	content: "";
	position: absolute;
	border: 6px solid transparent;
	border-top: 10px solid #E7EDFD;
	top: 100%;
	left: 5%;
	}
.balloon p {
	margin: 0;
	padding: 0;
	}

/*-- 見出し ふきだし　黄色 --*/
.balloon.yellow {background-color: #f8f074;}
.balloon.yellow::before {border-top: 10px solid #f8f074;}

/*-- 見出し ふきだし　黄緑 --*/
.balloon.green {background-color: #c7e5da;}
.balloon.green::before {border-top: 10px solid #c7e5da;}

/*-- 見出し ふきだし　ピンク --*/
.balloon.pink {background-color:#F8E6FB;}
.balloon.pink::before {border-top: 10px solid #F8E6FB;}

	@media only screen and (max-width: 600px) {
		.balloon {
			padding: 8px 12px;
			border-radius: 5px;
			margin-top: 10px;
			margin-bottom: 14px;
			font-size: 14px;
			}
		}




/*-- 見出し カッコ --*/
.kakko1 {
	color: #395DAA;
	position: relative;
	line-height: 1.4;
	padding:0.5em 1em;
	margin: 12px 0;
	display: inline-block;
	top:0;
	}

.kakko1::before,
.kakko1::after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
	}
.kakko1::before {
  border-left: solid 1px #395DAA;
  border-top: solid 1px #395DAA;
  border-bottom: solid 1px #395DAA;
  left: 0;
	}
.kakko1::after {
  content: '';
  border-top: solid 1px #395DAA;
  border-right: solid 1px #395DAA;
  border-bottom: solid 1px #395DAA;
  right: 0;
	}






/*-- ボタン 四角 --*/
.btn_box{}
.btn_box a{
	display: table;
	width: 50%;
	max-width: 400px;
	box-sizing: border-box;
	position: relative;
	border: solid 1px #9AA1D1;
	border-radius: 3px;
	font-size: 105%;
	margin: 18px auto 45px auto;/*←修正2021年4月12日*/
	padding-top: 17px;
	padding-bottom: 16px;
	color: #395DAA;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	}
/*-- 矢印アイコン --*/
.btn_box a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 3px;
    border-right: 3px solid currentColor;
    border-top: 3px solid currentColor;
    content: "";
	}
.btn_box a:hover {
    background-color: #395DAA;
	border: solid 1px #395DAA;
	border-radius: 3px;
    color: #fff;
	opacity: 1;
	}
	@media only screen and (max-width: 600px) {
		.btn_box a{
			width: 80%;
			max-width: 80%;
			font-size: 100%;
			margin: 12px auto 25px auto;/*←修正2021年4月12日*/
			padding-top: 10px;
			padding-bottom: 10px;
			}
		.btn a {
			font-size: 11px!important;
			padding: 0.5em 0.5em!important;
			margin: 8px 0;
			}
		}





/* ---------------------------------------------------------------------------------------------

　   ページ下 店舗案内

--------------------------------------------------------------------------------------------- */

.shop_info{
	width: 100%;
	margin: 0;
	padding: 20px  0;
	background-color: #E7EDFD;
	}

.shop_info .s_inner{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}

.shop_info .s_wrap{
	width: 31%;
	}

.shop_info .s_wrap h4{
	font-size: 19px;
	color: #395DAA;
	border-bottom: dotted 1px #395DAA;
	padding: 0 0 5px 0;
	margin-bottom: 8px;
	}
.shop_info .s_wrap h4 span{
	display: inline-block;
	}

.shop_info .s_wrap .map a{
	display: inline-block;
	background-color: #395DAA;
	color: #ffffff;
	border-radius: 3px;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 10px 0 10px;
	margin-top: 4px;
	}

.shop_info .s_wrap p{
	font-size: 14px;
	line-height: 150%;
	padding: 0;
	}

.shop_info .s_wrap .add{}

.shop_info .s_wrap .phone{
	font-size: 34px;
	line-height: 110%;
	font-weight: bold;
	font-family: 'Quicksand', sans-serif;
	color: #395DAA;
	padding: 0;
	white-space: nowrap;
	}
.shop_info .s_wrap .phone span,
.shop_info .s_wrap .phone span i,
.shop_info .s_wrap .phone span a{
	display:inline-block;
	}
.shop_info .s_wrap .time{
	font-size: 12px;
	}
	@media only screen and (max-width: 940px) {
		.shop_info .s_wrap{
			width: 46%;
			margin-bottom: 25px;
			}
		.shop_info .s_wrap:last-child{
			margin-bottom: 0;
			}
		}
	@media only screen and (max-width: 800px) {
		.shop_info .s_wrap .phone{
			font-size: 24px;
			letter-spacing: -1px;
			}
		}
	@media only screen and (max-width: 600px) {
		.shop_info .s_wrap{
			width: 100%;
			margin-bottom: 15px;
			}
		.shop_info .s_wrap h4{
			font-size: 12px;
			padding: 0 0 2px 0;
			margin-bottom: 4px;
			}
		.shop_info .s_wrap .phone{
			font-size: 18px;
			letter-spacing: -1px;
			}
		.shop_info .s_wrap p.add,
		.shop_info .s_wrap p.time{
			font-size: 10px;
			}
		.shop_info .s_wrap .map a{
			font-size: 10px;
			margin-top: 2px;
			}
		}




/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */

.cpright{
	text-align: center;
	padding: 1rem 0;
	}

.cpright small{
	font-size: 0.7rem;
	}




/* ---------------------------------------------------------------------------------------------

　   ページトップ

--------------------------------------------------------------------------------------------- */

.pagetop {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
	z-index: 1;
	}
.pagetop a {
    display: block;
    background-color: #395DAA;
	background: rgba(57, 93, 170, .8);
    color: #ffffff;
    font-size: 18px;
	padding: 20px 25px;
	text-align: center;
    text-decoration: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	}
.pagetop a:hover {
    display: block;
    background: rgba(57, 93, 170, 1);
    text-align: center;
    color: #fff;
    text-decoration: none;
	}
	@media only screen and (max-width: 600px) {
		.pagetop a {
			padding: 10px 11px;
			}
		}




