@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Pacifico);

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body {
    font: 16px/1.5 "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    font-weight: normal;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    color: #595757;
    position: relative;
}

a{
	color: #000;
	text-decoration: none;
}

a:hover, .active{
	font-weight: 600;
}

a:active, a:focus,input:active, input:focus{outline:0;}


/*////////////////////////////////////////////////////////////////////////
 
 ヘッダー

////////////////////////////////////////////////////////////////////////*/
#header{
	text-align: center;
	display: none;
}


#header h1{
}

#mainImg{
	width: 100%;
	height: auto;
	max-width: 100%;
}

#mainImg img{
	margin: 0 auto;
	display: block;
}



/*////////////////////////////////////////////////////////////////////////
 
 フッター

////////////////////////////////////////////////////////////////////////*/

#footer{
	clear: both;
	padding: 5em 1em 4em;
	font-size: 0.7em;
	text-align: center;
}


/*////////////////////////////////////////////////////////////////////////
 
 共通

////////////////////////////////////////////////////////////////////////*/

img{
	max-width: 100%;
	height: auto;
}

section{
	clear:both;
	padding-top: 2rem;
	text-align: center;
}

section h2{
	font-size: 2.5rem;
	font-weight:normal;
	margin: 0 auto 0.5rem;
}

.inner{
	width: 85%;
	margin: 0 auto;
	padding-bottom: 1.5rem;
}


/*　文字
------------------------------------------------------------------------------*/
/*　文字サイズ　*/
.font33{
	font-size: 1.65rem;
}
.font35{
	font-size: 1.75rem;
}
.font48{
	font-size: 2.4rem;
}

@media only screen and (max-width: 799px){
.font33{
	font-size: 1.2rem;
}
.font35{
	font-size: 1.3rem;
	line-height: 1.8rem;
	padding-top: 0.5rem;
}
.font48{
	font-size: 1.5rem;
}
}

/*　文字色　*/
.color_blue{
	color: #0068b7;
}
.color_black{
	color: #000;
}
.color_white{
	color: #fff;
}
.color_yellow{
	color: #fff100;
}
.color_red{
	color: #e60012;
}



/*　表示画像
------------------------------------------------------------------------------*/
/* pcで見たときに表示される画像 */
.pc {display: block !important; }
.sp { display: none !important; }
 
/* spで見たときに表示される画像 */
@media only screen and (max-width: 640px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/*　画像にロゴを重ねる　*/
.image-wrapper {
	position: relative;
	display: inline-block; /* 必要に応じて */
}

.backImage {
	display: block;
	width: 100%;
}

.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%; 
}
.logo2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%; 
}



/*　改行
------------------------------------------------------------------------------*/
/*スマホのみ改行*/
.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
.br-pc {
	display: none;
}
.br-sp {
	display: inline-block;
}
}

/* スマホ以外のデバイス（タブレット、パソコン）のみ改行 */
.br-pctb {
	display: none;
}
@media screen and (min-width: 768px) {
  .br-pctb {
    display: block;
	}
}


/*　文字位置
------------------------------------------------------------------------------*/
/*スマホでは左寄せ、それ以上はセンター寄せ*/
.responsive-text {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.responsive-text {
		text-align: left;
	}
}


/*　リンク
------------------------------------------------------------------------------*/
.link_box_radius {
	background: #727171;
	border-radius: 40px;
	color: #fff;
	padding: 0.5rem 1.5rem;
	text-decoration: none;
	text-align: center;
	transition: background 0.3s;
	border: #727171 solid 2px;
	margin: 20px auto;
	display: inline-block;
	width: fit-content;
}
.link_box_radius:hover {
	background: #fff;
	border: #727171 solid 2px;
	color: #727171;
}

.link_box {
	background: #fff;
	color: #000;
	padding: 0.5rem 1.5rem;
	text-decoration: none;
	text-align: center;
	transition: background 0.3s;
	border: #000 solid 2px;
	margin: 20px auto;
	display: inline-block;
	width: fit-content;
}
.link_box:hover {
	background: #000;
	border: #000 solid 2px;
	color: #fff;
}


/*　その他
------------------------------------------------------------------------------*/
/*追従するトップへボタン　*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 90px;
  right: 10px;
  background-color: #0068b7;
  z-index: 1000;
  border-radius: 50%;
  opacity: 0; /* ← 最初は透明 */
  visibility: hidden; /* ← 最初は見えない */
  transform: translateY(50px); /* ← 下にずらしておく */
  transition: all 0.3s ease;
}

#page_top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* ← 元の位置にスライド */
}

#page_top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#page_top a::before {
  font-family: FontAwesome;
  content: '\f106';
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#page_top a:hover {
	border-radius: 50%;
	opacity: 0.5;
}


/*　下部固定メニュー　*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}
#sp-fixed-menu li{
	justify-content: center;
	align-items: center;
	width: 50%;
	margin: 0;
	font-size: 1.4rem;
	border-right: 1px solid #fff;
	background: #0068b7;
	line-height: 1.2rem;
}

/*右メニュー*/
#sp-fixed-menu li:last-child{
   border-right: none;
	background: #e60012;
}
/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:10px 0;
}
#sp-fixed-menu .sub{
	font-size: 0.8rem;
}

@media only screen and (max-width: 640px) {
#sp-fixed-menu li{
	line-height: 0.8;
	/*align-items: center; 縦中央揃えしたい時必要
	display: flex;縦中央揃えしたい時必要*/
}
}




/*////////////////////////////////////////////////////////////////////////
 
 section

////////////////////////////////////////////////////////////////////////*/


/*　main
------------------------------------------------------------------------------*/

#main{
}


/*　Googleカレンダー　*/
.googleCalendar iframe {
	width: 100%;
	height: 400px;
}
@media all and (min-width: 768px) {
  .googleCalendar iframe {
	height: 600px;
  }
}

/*　背景あり　*/
.bg_blue{
	background: #0068b7;
	padding-top: 1.5rem;
	margin-bottom: 2rem;
}

/*　販売価格囲い　*/
.box_kakaku{
	margin: 5px auto;
	padding: 0.5% 2%;
	border: solid 2px #fff;
	display: inline-block;
}


/*　sns
------------------------------------------------------------------------------*/
#sns{
	color: #000;
}

/*　LINE（囲み枠）　*/
#sns .line_box{
	margin-bottom: 1rem;
	border: solid 5px #009944;
	border-radius: 20px;
	padding-bottom: 0.6rem;
}
#sns .ttl_box{
	background: #009944;
	padding: 0.5%;
	color: #fff;
	margin-bottom: 0.7rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
#sns .line_box p{
	padding: auto 2%;
}

/* 仕切り線　*/
.dashed-line {
	border: none;
	border-top: 2px dashed #009944;
	margin: 1rem 0;
}

.line_boxBox{
	background: #009944;
	display: block;
	color: #fff;
	padding: 1% 2%;
	margin: 0.5rem 0;
}
#insta{
	margin-bottom: 2rem;
	margin-top: -2rem;
}

#insta img{
	width: 100%;
}


/*　アクセス
------------------------------------------------------------------------------*/
#access{
	color: #000;
}


/*　店舗情報
------------------------------------------------------------------------------*/
#shop_info{
}

#shop_info img{
	margin:0 auto;
	max-width: 400px;
	margin-bottom: 1rem;
}







/*/////////////////////////////////////////////////////////////////////////////

　RESPONSIVE 設定【サイト共通】

/////////////////////////////////////////////////////////////////////////////*/

/*

　800px以上の画面サイズのデバイス（大きなタブレット、デスクトップPCなど）に適用。

-----------------------------------------------------------------------------*/
@media only screen and (min-width: 800px){
	body{
		font-size:20px;
	}
	
  #footer{
		padding: 4rem 1rem 5rem;
	}
}



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

　画面幅640px以下のすべてのデバイス。主にスマートフォン向け。

------------------------------------------------------------------------------*/
@media only screen and (max-width: 640px){
	section{
		padding-top: 1rem;
	}
	section h2{
		font-size: 1.6rem;
		line-height: 2rem;
	}
	.inner{
		width: 94%;
		padding-bottom: 1rem;
	}
}


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

　画面幅799px以下のデバイス。タブレット縦向き、小さめのラップトップや大きめのスマホなど。

------------------------------------------------------------------------------*/
@media only screen and (max-width: 799px){
	#header{
		position: fixed;
		display: block;
		width: 100%;
		z-index: 500;
	}

	#headerWrap{
		position: relative;
		width: 100%;
		height: 50px;
		background: #fff;
	}
	
	#header h1{
		padding-top: 10px;
	}
	
	#header h1 img{
		margin-top: 3px;
		max-height: 30px;
		width: auto !important;
	}
	
	#mainImg{
		padding-top: 50px;
		z-index: -100;
	}
	
	/* main */
	.bg_blue{
		background: #0068b7;
		padding-top: 1rem;
		margin-bottom: 1rem;
	}
	#insta{
		margin-bottom: 2rem;
		margin-top: -1rem;
	}
	.line_boxBox{
	padding: 1% 2% 2%;
	}
}
