@charset "utf-8";

/*
 *
 *	common style
 *
 */

/*======================================
	common
======================================*/
*, *:before, *:after {
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
/* 	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif; */
font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	color: #353535;
		-webkit-text-size-adjust: 100%;
}


/****** selection ******/
::selection {
	background: #f60d7a;
	color: #fff;
}
::-moz-selection {
	background: #f60d7a;
	color: #fff;
}


/****** a Link ******/
a, a:visited, a img, a:before, a:after,
.hoverBtn {
	color: #353535;
	text-decoration: none;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
		transition: all .4s ease;
	cursor: pointer;
}


/****** images ******/
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


/****** common ******/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.pc {display: none;}
.pcImg {display: none;}

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.wrapper + .wrapper {
	padding-top: 0;
}
strong {
	font-weight: bold;
}

.alC {
	text-align: center;
}
.alR {
	text-align: right;
}

.fontS {
	font-size: .75em;
}
.fontM {
	font-size: .85em;
}

/*======================================
	gHeader
======================================*/
.gHeader {
	position: fixed;
	overflow-y: auto;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	padding: 35px;
	border-right: #eee solid 1px;
	background: #fff;
		-moz-transition: left .4s ease;
		-webkit-transition: left .4s ease;
		-ms-transition: left .4s ease;
		transition: left .4s ease;
	z-index: 1000;
}
.gHeader.show {
	left: 0;
	z-index: 3000;
}
.gHeader:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
		background:-webkit-gradient(linear, left top, right bottom, from(#f60d7a), to(#feb6eb));
		background:-moz-linear-gradient(left, #f60d7a, #feb6eb);
	background:linear-gradient(left, #f60d7a, #feb6eb);
}

.gHeader h1 {
	width: 176px;
	height: 176px;
	padding: 3px;
	background: url(../images/logo-bg.png);
	background-size: cover;
}
.gHeader h1 a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 1;
	padding-top: 1.15em;
	padding-bottom: 1em;
	background: #fff;
	text-align: center;
	letter-spacing: .25em;
	font-family: 'Jaldi';
	font-size: 1.8rem;
	font-weight: bold;
}
.gHeader h1 a span {
	display: block;
	margin-bottom: 1em;
	padding-top: 0.53em;
	font-size: .55em;
	text-align: center;
	letter-spacing: .35em;
}
.gHeader h1 a:hover {
	background: transparent;
	color: #fff;
}


/****** gNav ******/
.gHeader .gNav dl dt {
	margin: 35px 0 .5em;
	font-family: 'Esteban';
	font-size: 1.5em;
}
.gHeader .gNav dl dd {
	line-height: 1.5;
	margin: 0 0 .5em 1em;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: .889em;
}
.gHeader .gNav dl a {
	position: relative;
	padding: .1em .05em;
}
.gHeader .gNav dl a:hover {
	background: #f60d7a;
	color: #fff;
}
.gHeader .gNav dl .current a {
	text-decoration: line-through 1px #f60d7a;
}
/* .gHeader .gNav dl .current a:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	margin-top: -1px; 
	background: #f60d7a;
} */

.gHeader .gNav dl.nesting dt {
	line-height: 1.5;
	margin: 0 0 .5em 0;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 16px;
}
/* .gHeader .gNav dl.nesting dt a {
} */
.gHeader .gNav dl dt.language {
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, .3);
}
/*======================================
	navToggle
======================================*/
.navToggle {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	margin-top: 10px;
	border: #eee solid 1px;
	border-left: none;
	border-radius: 0 5px 5px 0;
	background: #fff;
	cursor: pointer;
	z-index: 1000;
		-moz-transition: left .4s ease;
		-webkit-transition: left .4s ease;
		-ms-transition: left .4s ease;
		transition: left .4s ease;
}
.navToggle:before,
.navToggle:after {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: 8px;
	width: 24px;
	height: 1px;
	background: #f60d7a;
		-moz-transition: transform .4s ease;
		-webkit-transition: transform .4s ease;
		-ms-transition: transform .4s ease;
		transition: transform .4s ease;
}
.navToggle:before {
	box-shadow: #f60d7a 0 -5px 0;
}
.navToggle:after {
	box-shadow: #f60d7a 0 5px 0;
}
.navToggle.close {
	left: 249px;
	z-index: 3000;
}
.navToggle.close:before {
	box-shadow: none;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navToggle.close:after {
	box-shadow: none;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}



/*======================================
	mainContents
======================================*/
.mainContents {
	background: #fff;
}


/****** commonBox ******/
.commonBox {
	padding: 10% 10px;
}
.commonBox.narrow {
	padding: 5% 10px;
}
.commonBox h1 {
	line-height: 1.5;
	margin-bottom: 1.25em;
	text-align: center;
	letter-spacing: .02em;
	font-size: 1.333em;
	font-family: 'Esteban', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
}
.commonBox h2 {
	position: relative;
	line-height: 1.5;
	margin: 3em 0 1.5em;
	padding-bottom: 1em;
	text-align: center;
	letter-spacing: .02em;
	font-size: 1.25em;
	font-family: 'Esteban', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
}
.commonBox h2:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 60px;
	height: 1px;
	margin-left: -30px;
	background: #f60d7a;
}
.commonBox h3 {
	line-height: 1.5;
	margin-bottom: .5em;
	letter-spacing: .02em;
	font-size: 1.05em;
	font-weight: bold;
}

.commonBox p {
	margin-bottom: 2em;
	line-height: 2;
	letter-spacing: .02em;
}
.commonBox dt,
.commonBox dd,
.commonBox li,
.commonBox th,
.commonBox td {
	line-height: 1.5;
	letter-spacing: .02em;
}

/* btn1 */
.commonBox .btn1 {
	display: block;
	width: 120px;
	height: 30px;
	line-height: 30px;
	position: relative;
	border: #474747 solid 1px;
	text-align: center;
	font-size: 1.111em;
	font-family: 'Esteban', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
		transition: all .4s ease;
}
.commonBox .btn1:before,
.commonBox .btn1:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: -30px;
	height: 1px;
	background: #474747;
		-moz-transition: right .4s ease;
		-webkit-transition: right .4s ease;
		-ms-transition: right .4s ease;
		transition: right .4s ease;
}
.commonBox .btn1:after {
	width: 40px;
}
.commonBox .btn1:before {
	width: 10px;
	margin-top: -3px;
		-webkit-transform: rotate(30deg);
		-ms-transform: rotate(30deg);
		-moz-transform: rotate(30deg);
	transform: rotate(30deg);
}
.commonBox a:hover .btn1,
.commonBox a.btn1:hover {
	border-color: #f60d7a;
	background: #f60d7a;
	color: #fff;
}
.commonBox a:hover .btn1:before,
.commonBox a:hover .btn1:after,
.commonBox .btn1:hover:before,
.commonBox .btn1:hover:after {
	right: -50px;
}
.commonBox a:hover .btn1:after,
.commonBox .btn1:hover:after {
	width: 60px;
}

.commonBox a.btn-wide {
	padding: 0 8px;
	width: 240px;
	font-size: .85em;
	text-decoration: none;
}
.commonBox .margin-narrow {
	margin-top: 0;
	margin-bottom: 2.5em;
}



/****** pagH ******/
.pageH {
	position: relative;
	padding: 9% 10px 6%;
	text-align: center;
}
.pageH:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
		background:-webkit-gradient(linear, left top, right bottom, from(#f60d7a), to(#feb6eb));
		background:-moz-linear-gradient(left, #f60d7a, #feb6eb);
	background:linear-gradient(left, #f60d7a, #feb6eb);
}
.pageH h1 {
	display: inline-block;
	margin-bottom: .25em;
	padding: 0 .5em;
	line-height: 1.2;
	background: #fff;
	text-align: center;
	letter-spacing: .1em;
	font-size: 3em;
	font-family: 'Esteban', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
}
.pageH h2 {
	line-height: 1.5;
	text-align: center;
	letter-spacing: .02em;
	text-shadow: rgba(0,0,0,.7) 0 0 5px;
	font-weight: bold;
	color: #fff;
}


/****** galPop ******/
.galPop .popup {
	position: relative;
	padding-right: 20px;
	text-decoration: underline;
}
.galPop .popup:before,
.galPop .popup:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
}
.galPop .popup:before {
	width: 12px;
	height: 12px;
	margin: 0 1px 7px 0;
	border: #f60d7a solid 2px;
	border-radius: 50%;
}
.galPop .popup:after {
	width: 2px;
	height: 8px;
	background: #f60d7a;
	margin-bottom: 2px;
	transform: rotate(-45deg);
}


/****** galleryBox ******/
.galleryBox {
	overflow: hidden;
	position: relative;
	padding: 5% 0;
	background: #fff;
}

.galleryBox h2 {
	clear: both;
	margin: 1.5em 0 1em;
	padding: 0 0 0 .5em;
	border-left: #f60d7a solid 7px;
	text-align: left;
	font-size: 1em;
}
.galleryBox h2:after {display: none;}

.galleryBox ul li {
	float: left;
	width: 48%;
	margin-bottom: 1em;
}
.galleryBox ul li:nth-child(odd) {margin-right: 4%;}
.galleryBox ul li img {width: 100%;}
.galleryBox ul li a:hover img {opacity: .5;}



/*======================================
	gFooter
======================================*/
.gFooter {
	padding-bottom: 1em;
	background: #353535;
	color: #fff;
}


/****** orderBox ******/
.gFooter .orderBox-wrap {
	background: url(../images/order-bg.jpg) center;
	background-size: cover;
}
.gFooter .orderBox {
	padding: 40px 1em;
}
.gFooter .orderBox a {
	display: block;
	min-width: 300px;
	margin: 0 auto 24px;
	padding: .5em .25em;
	border: #fff solid 3px;
	text-align: center;
	font-size: 2.25em;
	font-family: 'Esteban';
	color: #fff;
}
.gFooter .orderBox a:hover {
	background: #fff;
	color: #f60d7a;
}
.gFooter .orderBox a:hover span {
	background: #fff url(../images/order-bg.jpg) center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}


/****** snsLink ******/
.gFooter .snsLink {
	margin: 2em 0;
	text-align: center;
	letter-spacing: -.5em;
}
.gFooter .snsLink li {
	display: inline-block;
	margin: 0 25px;
	letter-spacing: normal;
}


/****** nav ******/
.gFooter .nav {
	margin-bottom: 1em;
	text-align: center;
	font-size: .75em;
}
.gFooter .nav a {
	color: #fff;
}


/****** copy ******/
.gFooter .copy {
	text-align: center;
	font-size: .889em;
}

/****** note ******/
.note {
	font-size: 14px;
}
/****** 2-colum ******/
.col-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.col-box .col-img {
	margin-top: 24px;
	margin-left: 0;
}
.col-3 {
	margin-top: 40px;
	gap: 24px;
}
.col-3 p {
  width: 80%;
}
.ph-v,
.ph-h {
	text-align: center;
}
.ph-v img {
		width: 80%;
	}
.ph-h img {
		width: 100%;
	}
.sub-img img {
	width: 80%;
}


/*============================================================================

	responsive

============================================================================*/
@media screen and (min-width:640px) {
	body {
		font-size: 1.125rem;
	}


	/****** common ******/
	.sp {display: none;}
	.pc {display: block;}
	.spImg {display: none;}
	.pcImg {display: inline;}



	/*======================================
		gHeader
	======================================*/
	.gHeader {
		left: 0;
	}



	/*======================================
		navToggle
	======================================*/
	.navToggle {
		display: none;
	}



	/*======================================
		mainContents
	======================================*/
	.mainContents {
		margin-left: 250px;
	}


	/****** galleryBox ******/
	.galleryBox ul li {
		width: 23.5%;
		margin: 0 2% 1em 0;
	}
	.galleryBox ul li:nth-child(odd) {margin-right: 2%;}
	.galleryBox ul li:nth-child(4n) {margin-right: 0;}



	/*======================================
		gFooter
	======================================*/
	.gFooter {
		margin-left: 250px;
		padding-bottom: 2em;
	}


	/****** orderBox ******/
	.gFooter .orderBox {
		padding: 90px 1em;
	}


	/****** snsLink ******/
	.gFooter .snsLink {
		margin: 4em 0;
	}
	.gFooter .snsLink li {
		margin: 0 50px;
	}
/****** 2-colum ******/
	.col-box {
		flex-direction: row;
	}
	.col-box .col-img {
		flex-shrink: 0;
		margin-left: 40px;
	}
		.sub-img img {
		max-width: 300px;
	}
	.ph-v img {
		max-width: 300px;
	}
	/****** 3-colum ******/
	.col-3 {
		gap: 48px;
		margin-top: 60px;
	}
		.col-3 p {
			flex-shrink: 0;
			width: 26%;
		}
		.col-3 p.ph-h {
			width: 30%;
		}

	.flex-center {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}


@media screen and (min-width:850px) {
	/*======================================
		mainContents
	======================================*/
	/****** commonBox ******/
	/* btn1 */
	.commonBox .btn1 {
		width: 150px;
		height: 40px;
		line-height: 40px;
	}
	.commonBox .btn1:before,
	.commonBox .btn1:after {
		right: -40px;
	}
	.commonBox .btn1:after {
		width: 60px;
	}

}
