 @charset "utf-8";

/* =============================================================================
   汎用スタイル
   ========================================================================== */

.fontMincyo {}

.clear:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}

body {
	/*background: #ddd;*/
	padding-top:75px;
}
@media only screen and (max-width: 999px) {
	body{
		padding-top:60px;
	}
}

body.p-handicraftscafe{
	padding-top:0!important;
}

/*wrap関連*/
.wrap {
	max-width: 800px;
	margin: 0 auto;}
.spNopad {}

/*PC→スマホ 表示・非表示*/
.pcBlock { display: block !important;}
.spBlock { display: none !important;}
.pcInline { display: inline !important;}
.spInline { display: none !important;}
@media only screen and (max-width: 767px) {
	/*wrap関連*/
	.wrap {
		padding: 0 0;}
	.spNopad {
		padding: 0 !important;}

	/*PC→スマホ 表示・非表示*/
	.pcBlock { display: none !important;}
	.spBlock { display: block !important;}
	.pcInline { display: none !important;}
	.spInline { display: inline !important;}
}








/* =============================================================================
   gHead
   ========================================================================== */
#gHead {
	position: fixed;
	width: 100%;
	background: #fff;
	padding: 15px 0;
	box-sizing: border-box;
	z-index: 1002;
	top:0;
}
#gHead .wrap {
	position: relative;
}
#gHead .gh-logo {
	text-align: center;
	margin: 0 auto;
}
#gHead .gh-logo img {
	width: 45px;
}
#gHead .gh-menu {
	display: block;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
#gHead .gh-menu {
	margin: 0;
	padding: 0 0;
	border-radius: 50px;
	border: none;
	background: none;
}
#gHead .gh-menu div {
	height: 24px;
	width: 30px;
	position: relative;
}
#gHead .gh-menu .gh-menu-bar {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #888;
	transition: all .3s;
}
#gHead .gh-menu .gh-menu-bar.mod-top {
	top: 0;
}
#gHead .gh-menu .gh-menu-bar.mod-middle {
	top: 11px;
}
#gHead .gh-menu .gh-menu-bar.mod-bottom {
	bottom: 0;
}
#gHead .gh-menu.is-open .gh-menu-bar.mod-top {
	top: 11px;
	transform: rotate(-45deg);
}
#gHead .gh-menu.is-open .gh-menu-bar.mod-middle {
	background-color: transparent;
}
#gHead .gh-menu.is-open .gh-menu-bar.mod-bottom {
	bottom: 11px;
	transform: rotate(-135deg);
}
@media only screen and (max-width: 999px) {
	#gHead {
		padding: 10px 0;
		/*height:60px;*/
	}
	#gHead .gh-menu {
		left: 4%;
	}
	#gHead .gh-menu div {
		height: 20px;
		width: 28px;
		position: relative;
	}
	#gHead .gh-menu .gh-menu-bar.mod-middle {
		top: 9px;
	}
	#gHead .gh-menu.is-open .gh-menu-bar.mod-top {
		top: 9px;
	}
	#gHead .gh-menu.is-open .gh-menu-bar.mod-bottom {
		bottom: 9px;
	}
	#gHead .gh-logo img{
		width: 40px;
	}
}






/* =============================================================================
   gNav（スマホメニュー）
   ========================================================================== */
.gNav {
	display: block;
	height: 0;
	overflow: hidden;
	transition: all .3s;
	z-index: 1002;
	background: rgba(0,0,0,0.30);
	position: fixed;
	width: 100%;
}
.gNav.is-open {
	overflow-y: scroll;
}
.gNav .inner {
	position: relative;
	background: #fff;
	padding: 50px 0;
	margin: 10%;
}
.gNav .close {
	position: absolute;
	top: 0;
	right: 0;
	background: #555;
	padding: 10px;
}
.gNav .close div {
	height: 24px;
	width: 30px;
	position: relative;
}
.gNav .close .gh-menu-bar {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: all .3s;
}
.gNav .close .gh-menu-bar.mod-top {
	top: 11px;
	transform: rotate(-45deg);
}
.gNav .close .gh-menu-bar.mod-middle {
	background-color: transparent;
}
.gNav .close .gh-menu-bar.mod-bottom {
	bottom: 11px;
	transform: rotate(-135deg);
}
.gNav ul {
	display: table;
	margin: 0 auto;
}
.gNav li {
	padding: 1em 0;
}
.gNav li a {
	color: #231815;
	text-align: left;
	display: block;
}
.gNav li a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 999px) {
	.gNav .close div {
		height: 20px;
		width: 28px;
		position: relative;
	}
	.gNav .close .gh-menu-bar.mod-top {
		top: 9px;
	}
	.gNav .close .gh-menu-bar.mod-bottom {
		bottom: 9px;
	}
}




/* =============================================================================
   page-top
#page-top {
	position: fixed;
	right: 50px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media only screen and (max-width: 767px) {
	#page-top {
		right: 10px;
	}
}
   ========================================================================== */





/* =============================================================================
   gFoot
   ========================================================================== */
#gFoot {
	background: #595757;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}
#gFoot address {
	font-style: normal;
}
#gFoot address h3.logo {
	margin: 0;
	margin-bottom: 20px;
}
#gFoot .copy {
	padding: 0;
	margin-top: 20px;
}
@media only screen and (max-width: 999px) {
	#gFoot {
		padding: 30px 0;
	}
	#gFoot .copy {
		margin-top: 10px;
	}
	#gFoot address h3.logo {
		width: 40%;
		margin: 0 auto;
		margin-bottom: 10px;
	}
}





/* =============================================================================
   content
   ========================================================================== */

#content {}
#content section {}
@media only screen and (max-width: 999px) {
	#content section {}
}


.font26 {
	font-size: calc(16px + (26 - 16) * (100vw - 375px) / (999 - 375));
}
.font20 {
	font-size: calc(14.5px + (20 - 14.5) * (100vw - 375px) / (999 - 375));
}
@media (max-width: 375px) {
	.font26 {
		font-size: 18px;
	}
	.font20 {
		font-size: 14.5px;
	}
}
@media (min-width: 999px) {
	.font26 {
		font-size: 26px;
	}
	.font20 {
		font-size: 20px;
	}
}





