@font-face {
	font-family: YuGothicM;
	src: local("Yu Gothic Medium");
}

/***********************************
 reset
***********************************/
*, html, body, div, dl, dt, dd, ul, ol, li, header, footer, nav,section,
h1, h2, h3, h4, h5, h6, form, input, textarea, p{
	margin: 0;
	padding: 0;
}
html, body{
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,"游ゴシック Medium",YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	font-size: 16px;
	letter-spacing: 0.02em;
}
dl, ul, ol{
	list-style-type: none;
}
html{
	overflow: auto;
	height: auto;
	min-height: 100%;
}
a{
	color: #4b89ab;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .8s;
	transition: all .8s;
}
a:hover{
	color: #569ec4;
}
a img{
	-webkit-transition: all .8s;
	transition: all .8s;
}
a:hover img{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
nav a:hover img{
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

section img{
	position: relative;
	display: block;
	border-radius: 7px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/***********************************
 base
***********************************/
body{
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 100%;
	line-height: 1.5em;
	color: #161616;
	text-align: center;
}
main{
	padding: 0 0 200px;
}
article{
	position: relative;
	margin: 0 auto;
	padding: 5em 0;
	width: 100%;
	height: auto;
	min-height: 100vh;
	overflow: hidden;
}
#mainimage + article{
	padding-top: 0;
}

section,
div.container{
	clear: both;
	position: relative;
	margin: 0 auto;
}
section{
	padding: 0 3em;
	max-width: 1400px;
}

div#wrapRight{
	position: relative;
	left: 200px;
	width: calc(100% - 200px);
	min-height: 100vh;
}
#dwWrap{
	overflow: hidden;
}

@media screen and (max-width: 840px) {
	main{
		padding: 0;
	}
	section{
		padding: 0 4vw;
		max-width: calc(100% - 8vw);
	}
	div#wrapRight{
		left: unset;
		width: 100%;
	}
}

/***********************************
 others
***********************************/
p{
	margin: 0 0 1.2em;
}
p:last-child{
	margin: 0;
}

.txtAC{
	text-align: center;
}
.txtAL{
	text-align: left;
}
.txtAR{
	text-align: right;
}

ul.disc{
	list-style-type: disc;
	margin-left: 1.25em;
	text-align: left;
}
ul.circle{
	list-style-type: circle;
	margin-left: 1.25em;
	text-align: left;
}
ul.caution{
	margin: 0 0 0 1.25em;
	text-align: left;
}
ul.caution li{
	position: relative;
	padding: 0.13em 0 0;
}
ul.caution li::before {
	position: absolute;
	left: -1.2em;
	display: block;
	content: "※";
}
ol{
	list-style-type: decimal;
	margin-left: 1.75em;
	text-align: left;
}

.marker{
	display: inline-block;
	margin: 0 0.1em;
	padding: 0 0.1em;
	background: linear-gradient(transparent 60%, #eaab4b 60%);
	font-size: 1.05em;
}

div.deco{
	position: relative;
}
div.deco::after{
	position: absolute;
	top: 15px;
	bottom: 15px;
	left: -10px;
	right: -10px;
	display: block;
	content: "";
	border-radius: 7px;
	z-index: -1;
}
div.deco.co1::after{
	border: solid 2px #f9c47c;
}
div.deco.co2::after{
	border: solid 2px #c2da67;
}
div.deco.co3::after{
	border: solid 2px #4e8bac;
}
div.deco.co4::after{
	border: solid 2px #0967ab;
}
div.deco.co5::after{
	border: solid 2px #ef91ad;
}
@media screen and (max-width: 840px) {
	div.deco{
		margin: auto;
		width: 90%;
	}
}

/***********************************
 header, footer
***********************************/
header, footer{
	clear: both;
	position: relative;
	display: block;
}

header{
	position: fixed;
	top: 0;
	bottom: 0;
	width: 200px;
	height: 100%;
	min-height: 520px;
	background: #ffffff;
	z-index: 1;
}
header a{
	display: block;
	width: 100%;
	height: 100%;
	letter-spacing: 0;
}
header div.container{
	width: 200px;
	height: calc(100vh - 143px);
	min-height: 343px;
	background: #d9d9c5;
}

header h1{
	position: relative;
	margin: 15px 0 20px;
	width: 200px;
	height: 108px;
}
header h1 a{
	background: url(/images/logo.png) no-repeat center;
	text-indent: -9999px;
}
header h1 a:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

header nav#addMenu{
	position: absolute;
	bottom: 20px;
	width: 200px;
}
header nav#addMenu ul{
	display: block;
	margin: 0 auto;
	width: 179px;
}
header nav#addMenu ul li:last-child{
	margin-top: 10px;
}
header nav#addMenu ul li img{
	display: block;
}
header nav#addMenu ul li a:hover{
	background: #d9d99a;
}
@media screen and (max-height: 500px) {
	header div.container{
		width: 217px;
		min-height: auto;
		overflow-y: scroll;
	}
	
	header nav#addMenu{
		position: relative;
		bottom: unset;
		margin: 25px 0 10px;
	}
}
@media screen and (max-width: 840px) {
	header{
		position: relative;
		bottom: unset;
		width: 100%;
		height: 10vw;
		min-height: auto;
	}
	header div.container{
		display: none;
	}

	header h1{
		margin: 0 auto;
		padding: 1vw 0;
		height: 8vw;
	}
	header h1 a{
		background-size: contain;
	}
}

footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	background: #99998b;
}
footer p{
	text-align: right;
}
footer #copyright{
	text-align: center;
	clear: both;
	padding: 0.5em 0;
	width: 90%;
	letter-spacing: 0;
	font-size: 0.8em;
	color:#FFFFFF;
	margin: 1em auto 0;
	border-top: solid 1px #ffffff;
}

footer div.container{
	padding-top: 35px;
	text-align: left;
}
footer div.container a{
	color: #efefef;
}
footer div.container a:hover{
	color: #ffffff;
}

footer nav#footerNav{
	display: block;
	width:100%;
	float:left;
}

footer nav#footerNav ul{
	width:fit-content;
	margin:auto; 
	display: block;
	vertical-align: middle;
}
footer nav#footerNav ul li{
	float: left;
	position: relative;
	display: inline-block;
	margin: 0 60px 0 0;
}
footer nav#footerNav ul li::after{
	position: absolute;
	top: 0.3em;
	bottom: 0.3em;
	right: -30px;
	display: block;
	border-right: solid 1px #efefef;
	content: "";
}
footer nav#footerNav ul.page li:last-child::after{
	display: none;
}
footer nav#footerNav ul.page li a:link{
	color:#FFFFFF;
	display: block;
	line-height: 1.5em;
}
footer p {
	width:100%;
	display:block;
}

@media screen and (max-width: 840px) {
	footer{
		position: relative;
		bottom: unset;
		background: none;
	}
	footer div.container{
		min-width: calc(100% - 8vw);
	}
	footer nav#footerNav{
		display: none;
	}
	footer #copyright{
		width: 90%;
		color:#161616;
		border-top: solid 1px #161616;
	}
}


/***********************************
 nav
***********************************/
.dwCheck,
.dwBtn,
.drawer-menu{
	display: none;
}

nav#globalNav{
	position: relative;
	top: 10px;
	width: 200px;
	height: 192px;
	overflow: hidden;
}
nav#globalNav ul li{
	position: relative;
	display: block;
	height: 48px;
}
nav#globalNav ul li::before{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 3px;
	display: block;
	margin: auto;
	width: 15px;
	height: 31px;
	content: "";
}
nav#globalNav ul li:nth-child(1):before{ background: url(/images/nav_bg1.png); }
nav#globalNav ul li:nth-child(2):before{ background: url(/images/nav_bg2.png); }
nav#globalNav ul li:nth-child(3):before{ background: url(/images/nav_bg3.png); }
nav#globalNav ul li:nth-child(4):before{ background: url(/images/nav_bg4.png); }
nav#globalNav ul li::after{
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	display: block;
	border-bottom: solid 1px #ffffff;
	content: "";
}
nav#globalNav ul li a{
	display: block;
	height: 48px;
	background-position: center;
	background-repeat: no-repeat;
	text-indent: -9999px;
}
nav#globalNav ul li:nth-child(1) a{ background-image: url(/images/nav1.png); }
nav#globalNav ul li:nth-child(2) a{ background-image: url(/images/nav2.png); }
nav#globalNav ul li:nth-child(3) a{ background-image: url(/images/nav3.png); }
nav#globalNav ul li:nth-child(4) a{ background-image: url(/images/nav4.png); }
nav#globalNav ul li:nth-child(1) a:hover{ background-image: url(/images/nav1_on.png); }
nav#globalNav ul li:nth-child(2) a:hover{ background-image: url(/images/nav2_on.png); }
nav#globalNav ul li:nth-child(3) a:hover{ background-image: url(/images/nav3_on.png); }
nav#globalNav ul li:nth-child(4) a:hover{ background-image: url(/images/nav4_on.png); }

@media screen and (max-width: 840px) {
	nav#addMenu,
	nav#globalNav{
		display: none;
	}
	
	.dwBtn,
	.drawer-menu{
		display: block;
	}
	/* dwWrap */
	#dwWrap{
		display: table;
		width: 100%;
		height: 100vh;
		box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
		-webkit-transition-duration: .5s;
		transition-duration: .5s;
		overflow: hidden;
	}
	#dwWrap__inner{
		display: table-cell;
	}
	/* drawer menu */
	.drawer-menu{
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0;
		width: 200px;
		height: 100%;
		padding: 60px 0 40px;
		background: #d9d9c5;
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: .5s;
		transition-duration: .5s;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transform-origin: right center;
		-ms-transform-origin: right center;
		transform-origin: right center;
	//	-webkit-transform: perspective(500px) rotateY(-90deg);
	//	transform: perspective(500px) rotateY(-90deg);
		-webkit-transform: scaleX(0.2);
		transform: scaleX(0.2);
		opacity: 0;
	}
	.drawer-menu #gmenu li{
		position: relative;
		display: block;
		height: 48px;
	}
	.drawer-menu #gmenu li::before{
		position: absolute;
		top: 0;
		bottom: 0;
		right: 3px;
		display: block;
		margin: auto;
		width: 15px;
		height: 31px;
		content: "";
	}
	.drawer-menu #gmenu li:nth-child(1):before{ background: url(/images/nav_bg1.png); }
	.drawer-menu #gmenu li:nth-child(2):before{ background: url(/images/nav_bg2.png); }
	.drawer-menu #gmenu li:nth-child(3):before{ background: url(/images/nav_bg3.png); }
	.drawer-menu #gmenu li:nth-child(4):before{ background: url(/images/nav_bg4.png); }
	.drawer-menu #gmenu li::after{
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 20px;
		display: block;
		border-bottom: solid 1px #ffffff;
		content: "";
	}
	.drawer-menu #gmenu li a{
		display: block;
		height: 48px;
		background-position: center;
		background-repeat: no-repeat;
		text-indent: -9999px;
	}
	.drawer-menu #gmenu li:nth-child(1) a{ background-image: url(/images/nav1.png); }
	.drawer-menu #gmenu li:nth-child(2) a{ background-image: url(/images/nav2.png); }
	.drawer-menu #gmenu li:nth-child(3) a{ background-image: url(/images/nav3.png); }
	.drawer-menu #gmenu li:nth-child(4) a{ background-image: url(/images/nav4.png); }
	.drawer-menu #gmenu li:nth-child(1) a:hover{ background-image: url(/images/nav1_on.png); }
	.drawer-menu #gmenu li:nth-child(2) a:hover{ background-image: url(/images/nav2_on.png); }
	.drawer-menu #gmenu li:nth-child(3) a:hover{ background-image: url(/images/nav3_on.png); }
	.drawer-menu #gmenu li:nth-child(4) a:hover{ background-image: url(/images/nav4_on.png); }
	
	.drawer-menu #dw_addMenu{
		display: block;
		margin: 25px auto 10px;
		width: 179px;
	}
	.drawer-menu #dw_addMenu li:last-child{
		margin-top: 10px;
	}
	.drawer-menu #dw_addMenu li img{
		display: block;
	}
	.drawer-menu #dw_addMenu li a{
		display: block;
	}
	.drawer-menu #dw_addMenu li a:hover{
		background: #d9d99a;
	}

	/* checkbox */
	.dwCheck{
		display: none;
	}
	
	/* menu button - label tag */
	.menu-btn{
		position: fixed;
		top: 10px;
		right: 8px;
		display: block;
		width: 40px;
		height: 40px;
		font-size: 10px;
		text-align: center;
		cursor: pointer;
		z-index: 101;
	}
	.bar{
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 40px;
		height: 3px;
		background: #282828;
		-webkit-transition: all .5s;
		transition: all .5s;
		-webkit-transform-origin: left top;
		-ms-transform-origin: left top;
		transform-origin: left top;
	}
	.bar.middle{
		top: 13px;
		opacity: 1;
	}
	.bar.bottom{
		top: 26px;
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
	}
	.menu-btn__text{
		position: absolute;
		bottom: -13px;
		left: 0;
		right: 0;
		margin: auto;
		color: #282828;
		-webkit-transition: all .5s;
		transition: all .5s;
		display: block;
		visibility: visible;
		opacity: 1;
	}
	.menu-btn:hover .bar{
		background: #cccccc;
	}
	.menu-btn:hover .menu-btn__text{
		color: #cccccc;
	}
	.close-menu{
		position: fixed;
		top: 0;
		right: 200px;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,0);
		-webkit-transition-property: all;
		transition-property: all;
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		visibility: hidden;
		opacity: 0;
	}
	
	/* checked */
	.dwCheck:checked ~ .drawer-menu{
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
		z-index: 2;
	}
	.dwCheck:checked ~ #dwWrap{
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transform: translateX(-200px);
		-ms-transform: translateX(-200px);
		transform: translateX(-200px);
	}
	.dwCheck:checked ~ .menu-btn .menu-btn__text{
		visibility: hidden;
		opacity: 0;
	}
	.dwCheck:checked ~ .menu-btn .bar.top{
		width: 56px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		background: #cccccc;
	}
	.dwCheck:checked ~ .menu-btn .bar.middle{
		opacity: 0;
	}
	.dwCheck:checked ~ .menu-btn .bar.bottom{
		width: 56px;
		top: 40px;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		background: #cccccc;
	}
	.dwCheck:checked ~ .close-menu{
		-webkit-transition-duration: 1s;
		transition-duration: 1s;
		-webkit-transition-delay: .6s;
		transition-delay: .6s;
		background: rgba(0,0,0,.5);
		visibility: visible;
		opacity: 1;
		z-index: 3;
	}
}

/***********************************
 #pnList
***********************************/
#pnList{
	background: #e1dec0;
	height: 2.5em;
	font-size: 0.9em;
}
#pnList::after{
	clear: both;
	display: block;
	content: "";
}
#pnList ul{
    margin: 0 auto;
	max-width: 1050px;
	line-height: 2.5em;
}
#pnList ul li{
	position: relative;
	float: left;
	margin: 0 3em 0 0;
}
#pnList ul li:after{
	position: absolute;
	top: 0;
	right: -2em;
	display: block;
	content: ">";
	color: #1d1d1d;
}
#pnList ul li:last-child:after{
	display: none;
}
#pnList ul li a{
	display: inline-block;
	color: #1d1d1d;
}
#pnList ul li a:hover{
	color: #2c9633;
}

@media screen and (max-width: 640px) {
	#pnList{
		padding: 0.5em 0;
		height: auto;
		font-size: 0.8em;
	}
	#pnList ul{
		max-width: calc(100% - 5vw);
		line-height: 1.8em;
	}
	#pnList ul li{
		margin: 0 2em 0 0;
	}
	#pnList ul li:after{
		right: -1.3em;
	}	
}

/***********************************
 h2, h3, h4
***********************************/
h2, h3, h4{
	font-weight: normal;
	line-height: 1.5em;
}

h2{
	margin: 0.5em auto 2em;
	font-size: 2.1em;
}
#home h2,
h3{
	margin: 1em auto 3em;
	font-size: 2.1em;
}
h4,
#home h3{
	margin: 0 auto 1em;
	font-size: 1.8em;
}

h4{
	margin: 0 0 35px;
	padding: 30px 0 15px;
	background: url(/images/ttlBar.png) left bottom no-repeat;
	text-align: left;
	font-size: 1.8em;
}

h4.underbar{
	position: relative;
	background: none;
}
h4.underbar::after{
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 80px;
	height: 3px;
	background: #c8c8c8;
	content: "";
}

@media screen and (max-width: 840px) {
	h2,
	h3{
		margin: 0 auto 2em;
		padding: 1em 0 0.8em;
		font-size: 1.6em;
	}
	h4,
	#home h3{
		padding: 0.5em 0 0;
		font-size: 1.6em;
	}
}

/***********************************
 table
***********************************/
table{
	margin: 0.5em auto;
	border-collapse: collapse;
}
table tr:first-child th{
	border-top: solid 3px #535353;
}
table tr:first-child td{
	border-top: solid 3px #eaab4b;
}
table th{
	padding: 10px 30px;
	background: #f1f1f1;
	border-bottom: solid 1px #c1c1c1;
	font-weight: normal;
}
table td{
	padding: 10px 30px;
	text-align:left;
	background: #ffffff;
	border-bottom: solid 1px #c1c1c1;
}

@media screen and (max-width: 840px) {
	table{
		min-width: auto;
	}
	table tr:first-child td{
		border-top: none;
	}
	table th,
	table td{
		display: block;
		padding: 1em 0.6em;
		text-align: left;
		font-size: 0.95em;
	}
}

/***********************************
 .row, .column
***********************************/
.row{
	position: relative;
	display: -webkit-flex;
	display: flex;
	width: calc(100% + 40px);
	margin: 0;
}
.row:after{
	clear: both;
	display: block;
	content: "";
}
.row + .row{
	margin-top: 120px;
}
.column1,
.row .column2,
.row .column3-1,
.row .column3-2,
.row .column4-1,
.row .column4-3,
.row .column5-1{
	display: block;
	float: left;
	margin: 0 40px 0 0;
}
.column1{ width: calc(100% - 40px); clear: both; }
.row .column2{ width: calc(50% - 40px); }
.row .column2.narrow{ width: calc(40% - 40px); }
.row .column2.wide{ width: calc(60% - 40px); }
.row .column3-1{ width: calc((100% /3) - 40px); }
.row .column3-2{ width: calc((100% /3) * 2 - 40px); }
.row .column4-1{ width: calc(25% - 40px); }
.row .column4-3{ width: calc(75% - 40px); }
.row .column5-1{ width: calc((100% /5) - 40px); }

@media screen and (max-width: 840px) {
	.row{
		display: block;
		width: 100%;
	}
	.row + .row{
		margin-top: 5em;
	}
	.column1,
	.row .column2,
	.row .column2.narrow,
	.row .column2.wide,
	.row .column3-1,
	.row .column3-2{
		clear: both;
		float: unset;
		margin: 0 0 2em;
		width: 100%;
	}
	.row .column2:nth-child(2n){
		margin-bottom: 0;
	}
	.row .column4-1,
	.row .column4-3,
	.row .column5-1{
		background: #ff0000;
		width: calc(50% - 40px);
	}
}

.column1 img,
.row .column2 img,
.row .column3-1 img,
.row .column3-2 img,
.row .column4-1 img,
.row .column4-3 img,
.row .column5-1 img{
	display: block;
	width: 100%;
}
column1,
.row img + img{
	margin-top: 40px;
}
@media screen and (max-width: 64px) {
	.row img + img{
		margin-top: 20px;
	}
}
.column1 img.fixity,
.row .column2 img.fixity,
.row .column3-1 img.fixity,
.row .column3-2 img.fixity,
.row .column4-1 img.fixity,
.row .column4-3 img.fixity,
.row .column5-1 img.fixity{
	display: block;
	margin: 0 auto;
	width: auto;
}

.row .boxShadow{
	width: calc(100% - 2px);
	height: calc(100% - 3px);
	box-shadow: 0px 0px 3px 0px #c4c4c4;
}
.row .boxBorder{
	width: calc(100% - 2px);
	height: calc(100% - 3px);
	border: solid 1px #97bac9;
}
.row.boxRowBorder{
	padding: 40px 0 40px 40px;
	background: #ffffff;
	width: calc(100% - 42px);
	border: solid 1px #cfceac;
}

.row.boxRowBorder + .row.boxRowBorder{
	border-top: none;
	margin-top: -20px;
	padding-top: 0;
}
/*
.row.boxColor{
	padding: 40px 0 40px 40px;
	width:calc(100% - 42px);
	border: solid 1px #ffffff;
}
.row.boxColor.color01{ 	background: #ededed; }
.row.boxColor.color02{ 	background: #f2ecc7; }
.row.boxRowBorder .row:last-child,
.row.boxColor .row:last-child{
	margin: 0;
}
*/

/***********************************
 form
***********************************/
/*
form table{
	margin: 20px 0;
}
form table th span,
span.required{
	color: red;
}
form table + p.memo{
	margin: 0 0 20px;
	text-align: left;
}
*/

form label{
	display: inline-block;
	margin: 2px 0;
	padding: 3px 30px 3px 3px;
	cursor: pointer;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea{
	margin: 0 5px;
	padding: 8px 10px;
	line-height: 1.3em;
	width: calc(100% - 22px - 1.2em);
}
input[type="number"]{
	width: 100px;
}

input[type="radio"],
input[type="checkbox"]{
	margin: 0 5px;
	vertical-align: text-top;
	width: 18px;
	height: 18px;
	font-weight: bold;
	cursor: pointer;
}

select{
	margin: 0 5px;
	padding: 8px;
	cursor: pointer;
}

input[type="button"].btn,
input[type="submit"].btn{
	display: block;
	margin: 50px auto 0;
	padding: 8px 20px;
	min-width: 300px;
	background: #e1e1e1;
	border: solid 1px #adadad;
	-webkit-transition: all .8s;
	transition: all .8s;
}
input[type="button"].btn:hover,
input[type="submit"].btn:hover{
	background: #9c5da3;
	color: #ffffff;
	border: solid 1px #9c5da3;
}

/* placeholder */
textarea[name="detail"]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder{
	color: #b3b3b3;
	line-height: 2em;
}
/* placeholder IE */
textarea[name="detail"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder{
	color: #b3b3b3;
	line-height: 2em;
}
/* placeholder Edge */
@supports (-ms-ime-align: auto){
	textarea[name="detail"]::-ms-input-placeholder,
	input[type="text"]::-ms-input-placeholder,
	input[type="number"]::-ms-input-placeholder,
	input[type="tel"]::-ms-input-placeholder,
	input[type="email"]::-ms-input-placeholder{
		color: #b3b3b3;
		line-height: 2em;
		opacity: 1;
	}
}

/***********************************
 .btn, .btnBox, .btnBoxRow
***********************************/
a.btn{
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
}
a.btn:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
a.btn.celebration{ background-image: url(/images/btnCelebration.png); width: 250px; height: 250px; }

ul.btnBoxContact{
	clear: both;
	display: inline-block;
}
ul.btnBoxContact::after{
	clear: both;
	display: block;
	content: "";
}
ul.btnBoxContact li{
	float: left;
	display: block;
	margin: 0 30px 0 0;
	width: calc(50% - 15px);
	max-width: 340px;
	height: 93px;
}
ul.btnBoxContact li img,
ul.btnBoxContact li a{
	display: block;
	width: 100%;
}
ul.btnBoxContact li:last-child{
	margin: 0;
}

ul.sns{
	display: inline-block;
}
ul.sns li{
	display: inline-block;
	margin: 0 30px 0 0;
}
ul.sns li:last-child{
	margin: 0;
}
ul.sns li a{
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: -9999px;
	height: 100%;
}
ul.sns li a.line{ background-image: url(/images/icon_line.png); width: 22px; }
ul.sns li a.twitter{ background-image: url(/images/icon_twitter.png); width: 26px;}
ul.sns li a.instagram{ background-image: url(/images/icon_instagram.png); width: 21px;}
ul.sns li a:hover{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}
@media screen and (max-width: 840px) {
	/*
	a.btn{
		background-size: contain;
		width: 320px;
		height: 143px;
	}
	*/

	ul.btnBoxContact{
		width: 90%;
		max-width: 340px;
	}
	ul.btnBoxContact li{
		position: relative;
		float: none;
		margin: 0 0 1.5em;
		width: 100%;
	}
	ul.btnBoxContact li:last-child{
		margin: 0;
	}
}

a.btnTxt{
	display: block;
	margin: 0 auto;
	background: #fefaf4;
	width: calc(100% - 4px);
	max-width: 240px;
	height: 60px;
	line-height: 60px;
	color: #eaab4b;
	text-align: center;
	border: solid 2px #eaab4b;
}
a.btnTxt:hover{
	background: #eaab4b;
	color: #ffffff;
}

a.btnTxt2{
	display: inline-block;
	margin: 10px; 
	padding: 0.8em 2em 0.8em 2.02em;
	background: url(/images/btnArrow.png) no-repeat 230px center #00ade6;
	width: 200px;
	height: 33px;
	line-height: 33px;
	color: #ffffff;
	text-align: left;
	text-decoration: none;
	border-radius: 8px;
}
a.btnTxt2:hover{
	background-color: #2c9633;
}

a.btnCircle-arrow{
    position: relative;
	top: calc(50% - 57px);
	left: calc(50% - 57px);
	display: flex;
	justify-content: space-around;
	align-items: center;
    padding: 10px;
    width: 90px;
	height: 90px;
    color: #1d1d1d;
    transition: 0.3s ease-in-out;
	border: solid 2px #1d1d1d;
	border-radius: 50%;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 1.2em;
}
a.btnCircle-arrow:hover{
    background: #f9f7f1;
}
a.btnCircle-arrow::before,
a.btnCircle-arrow::after{
	content: "";
	position: absolute;
	display: block;
	transition: all 0.3s;
	top: 50%;
}
a.btnCircle-arrow::before{
	right: 0.9rem;
	opacity: 0;
	width: 0.3rem;
	height: 2px;
	background: #1d1d1d;
	transform: translateY(-50%);
}
a.btnCircle-arrow::after{
	right: 0.9rem;
	opacity: 0.8;
	width: 0.5rem;
	height: 0.5rem;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
a.btnCircle-arrow:hover::before {
	opacity: 0.8;
	width: 2.8rem;
  right: -1.5rem;
}
a.btnCircle-arrow:hover::after {
	right: -1.5rem;
	opacity: 1;
	width: 0.8rem;
	height: 0.8rem;
}

/**********************************************************************
 
 page
 
**********************************************************************/
br.spBr{
	display: none;
}
@media screen and (max-width: 840px) {
	.spReverse{
		flex-direction: column-reverse;
		display: flex;
	}
	br.spBr{
		display: block;
	}
}

/***********************************
 #mainimage
***********************************/
#mainimage img{
	display: block;
	margin: 0 0 50px;
	width: 99%;
}
@media screen and (max-width: 840px) {
	#mainimage{
		width: 100vw;
	}
}

/***********************************
 home
***********************************/
#home p.message{
	line-height: 2em;
	font-size: 1.2em;
}

@media screen and (max-width: 840px) {
	#home p.message{
		font-size: 1.1em;
	}
}

/***********************************
 privacy
***********************************/
#privacy section{
	text-align: left;
	max-width: 70%;
}
@media screen and (max-width: 640px) {
	#privacy section{
		max-width: calc(100% - 8vw);
	}
}

#privacy section ul{
	list-style-type: disc;
	margin-left: 1.25em;
	text-align: left;
}
#privacy section ul li,
#privacy section ol li{
	margin: 0 0 0.4em;
}


/***********************************
 notation
***********************************/






/***********************************
 contact
***********************************/
#contact table{
	margin: 2em auto 1em;
	width: 90%;
	max-width: 800px;
}
#contact table th,
#contact table td{
	padding: 10px;
}
#contact table th{
	width: 150px;
}

#contact p.memo{
	margin: auto;
	width: 90%;
	max-width: 800px;
	text-align: left;
}

#thanksBox{
	margin: 50px 0;
	line-height: 1.8em;
}
#thanksBox + input{
	margin: 0 auto 50px;
}

@media screen and (max-width: 840px) {
	#contact table{
		width: 95%;
	}
	#contact table th,
	#contact table td{
		padding: 0.5em 1em;
	}
	#contact table th{
		width: auto;
	}

	#contact p.memo{
		width: 95%;
		text-align: left;
	}
}

/***********************************
 privacy
***********************************/
p.law{
	padding: 0 20px 10px;
	text-align: left;
}
dl.law{
	margin: 0 20px 15px;
	text-align: left;
}
dl.law dt{
	margin: 0 0 10px 0;
	font-weight: bold;
}
dl.law dd{
	margin: 0 0 10px 20px;
}


/***********************************
 Animation
***********************************/
/* fadeUp */

.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
	
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
	 
article{
//	opacity: 0;
}

/**** h2 ***/

h2.line{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	border-top: solid 1px black;
	border-bottom: solid 1px black;
	line-height:7vw;
}

.h2_bg_orange::before{
	content: "";
	position: absolute;
	top: -3vw;
	left: 20px;
	width: 5vw;
	height: 5vw;
	z-index: -1;
	background-color: #f9c47c;
}

.h2_bg_green::before{
	content: "";
	position: absolute;
	top: -3vw;
	left: 20px;
	width: 7vw;
	height: 7vw;
	z-index: -1;
	background-color: #c4db6a;
}

.h2_bg_blue::before{
	content: "";
	position: absolute;
	top: -3vw;
	left: 20px;
	width: 7vw;
	height: 7vw;
	z-index: -1;
	background-color: #76abdb;
}

.h2_bg_pink::before{
	content: "";
	position: absolute;
	top: -3vw;
	left: 20px;
	width: 7vw;
	height: 7vw;
	z-index: -1;
	background-color: #ef92ad;
}

.h2_bg_purple::before{
	content: "";
	position: absolute;
	top: -3vw;
	left: 20px;
	width: 7vw;
	height: 7vw;
	z-index: -1;
	background-color: #9c5da3;
}
