@charset "utf-8";
/* 	common.css
======================================================================== */
body{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #707070;
	animation: fadeIn 1.5s ease 0s normal;
}
@keyframes fadeIn {
	0%   { opacity: 0 }
	100% { opacity: 1 }
}
@media screen and (max-width: 767px) {
	body{ font-size: 15px; }
}

* { box-sizing: border-box; }
a,
a:link {
	display: inline-block;
	color:#707070;
	transition: 0.5s;
	text-decoration: none;
}
a:visited,
a:active {
	color:#707070;
}
a:hover {
	text-decoration: none;
	opacity: 0.8;
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}
p { line-height: 180%; }
ul,li { list-style: none; }
img {
	width:auto;
	height: auto;
	vertical-align: bottom;
}
.flex{ display: flex;}
.inline{ display: inline-block;}
.sp{ display: none!important;}
@media screen and (max-width: 767px) {
	.pc{ display: none!important; }
	.sp{ display: block!important; }
}

/* header --------------------------------------------------*/
#head-area{
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,.8);
	padding: 0 15px;
}
#head-area .inner{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1392px;
	height: 150px;
	margin: 0 auto;
}
#head-area .logo{
	display: inline-flex;
	align-items: center;
}
	#head-area .logo img{
		width: 100%;
		max-width: 44px;
	}
	#head-area .logo .txt{
		flex-wrap: wrap;
		margin-left: 32px;
	}
	#head-area .logo .txt .txt_s{
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 1px;
		margin-bottom: 16px;
	}
	#head-area .logo .txt .txt_m{
		font-size: 32px;
		font-weight: 400;
		letter-spacing: 3px;
	}

#nav-toggle {
/* menu button */
	display: none;
}

.wrap{
	margin-top: 150px;
}

/* nav-toggle------ */
#nav-toggle {
	display: block;
	cursor: pointer;
	width: 42px;
	height: 32px;
}
#nav-toggle > div {
	position: relative;
	width: 42px;
	margin: 0 auto;
}
#nav-toggle span {
	width: 100%;
	height: 5px;
	left: 0;
	display: block;
	position: absolute;
	transition: top .5s ease, -webkit-transform .6s ease-in-out;
	transition: transform .6s ease-in-out, top .5s ease;
	transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#head-area #nav-toggle span {
	background: #707070;
}
#nav-toggle span:nth-child(1) { top: 0px;}
#nav-toggle span:nth-child(2) { top: 15px;}
#nav-toggle span:nth-child(3) {	top: 30px;}
.open #nav-toggle span:nth-child(1) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
	top: 0px;
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* nav-toggle------ */

/* z-index ------*/
#nav-toggle {
  z-index: 1000;
}
.wrap {
  z-index: 900;
}
/* z-index ------*/

#global-nav {
	background: #fff;
	/*position: fixed;*/
	top: 0;
	/*right: 0;*/
	bottom: 0;
	z-index: 990;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	padding: 50px 15px;
	overflow-y:auto;
	width: 520px;


position: absolute;
height: 100vh;
right: -15px;
}
	#global-nav .menu_label {
		display: none;
		font-size: 37px;
		margin-bottom: 85px;
	}
	#global-nav ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		list-style: none;
		max-width: 416px;
		margin: 0 auto;
	}
		#global-nav ul li {
			width: 50%;
			position: relative;
			z-index: 2;
			mix-blend-mode: multiply;
			text-align: center;
			transition: .5s;
			opacity: .8;
		}
		#global-nav ul li::after{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-radius: 2px;
			transition: .5s;
		}
			#global-nav ul li.greeting::after{
				width: calc(100% + 3px);
				height: calc(100% + 3px);
				background: #FABA8B 0% 0% no-repeat padding-box;
			}
			#global-nav ul li.works::after{
				height: calc(100% + 3px);
				background: #CBFE57 0% 0% no-repeat padding-box;
			}
			#global-nav ul li.drawn-gallary::after{
				width: calc(100% + 3px);
				height: calc(100% + 3px);
				background: #FAB5E1 0% 0% no-repeat padding-box;
			}
			#global-nav ul li.diary::after{
				height: calc(100% + 3px);
				background: #FDDE50 0% 0% no-repeat padding-box;
			}
			#global-nav ul li.faq::after{
				width: calc(100% + 3px);
				background: #ACE6FF 0% 0% no-repeat padding-box;
			}
			#global-nav ul li.contact::after{
				background: #57FEFE 0% 0% no-repeat padding-box;
			}
		#global-nav ul li a{
			position: relative;
			z-index: 3;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-wrap: wrap;
			color: #707070;
			width: 100%;
			height: 208px;
		}
			#global-nav ul li a .jp{
				display: block;
				width: 100%;
				font-size: 48px;
				margin-bottom: 15px;
			}
			#global-nav ul li.drawn-gallary a .jp{
				font-size: 80px;
			}
			#global-nav ul li a .en{
				display: block;
				width: 100%;
				font-size: 24px;
				font-weight: 300;
			}
		#global-nav ul li a:hover,
		#global-nav ul li:hover{
			opacity: 1;
		}
		#global-nav ul li:hover::after{
			transform: scale(1.05);
		}

#overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.4);
}

/* open */
.open {
}
.open #overlay{
	display: block;
}
/*
.open #head-area .inner{
	max-width: 100%;
}
*/
.open #head-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}


.open #global-nav {
	transition: opacity .6s ease, visibility .6s ease;	
	visibility: visible;
	opacity: 1;
}
.open #global-nav .menu_label {
	display: inline-block;
}
@media screen and (max-width: 767px) {
	#head-area,
	#head-area .inner{
		height: 90px;
	}
	#head-area .logo{
	}
		#head-area .logo img{
			max-width: 30px;
		}
		#head-area .logo .txt{
			margin-left: 25px;
		}
		#head-area .logo .txt .txt_s{
			margin-bottom: 15px;
		}
		#head-area .logo .txt .txt_m{
			font-size: 24px;

		}
	.wrap{
		margin-top: 90px;
	}

	/* nav-toggle------ */
	#nav-toggle {
		width: 30px;
		height: 15px;
	}
	#nav-toggle > div {
		width: 30px;
	}
	#nav-toggle span {
		height: 2px;
	}
	#nav-toggle span:nth-child(1) { top: 0px;}
	#nav-toggle span:nth-child(2) { top: 6px;}
	#nav-toggle span:nth-child(3) {	top: 12px;}
	.open #nav-toggle span:nth-child(1) {
		top: 7px;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 7px;
	}
	/* nav-toggle------ */

	#global-nav {
		background: #fff;
		position: fixed;
		top: 0;
		/*left: 0;*/
		right: 0;
		bottom: 0;
		z-index: 990;
		text-align: center;
		visibility: hidden;
		opacity: 0;
		padding: 50px 20px;
		overflow-y:auto;

		width: 330px;

	}
		#global-nav .menu_label {
			display: none;
			font-size: 37px;
			margin-bottom: 85px;
		}
		#global-nav ul {
			max-width: 272px;
		}
			#global-nav ul li {
				width: 50%;
				position: relative;
				z-index: 2;
				mix-blend-mode: multiply;
				text-align: center;
				transition: .5s;
				opacity: .8;
			}
			#global-nav ul li::after{
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				border-radius: 2px;
				transition: .5s;
			}
				#global-nav ul li.greeting::after{
					width: calc(100% + 3px);
					height: calc(100% + 3px);
					background: #FABA8B 0% 0% no-repeat padding-box;
				}
				#global-nav ul li.works::after{
					height: calc(100% + 3px);
					background: #CBFE57 0% 0% no-repeat padding-box;
				}
				#global-nav ul li.drawn-gallary::after{
					width: calc(100% + 3px);
					height: calc(100% + 3px);
					background: #FAB5E1 0% 0% no-repeat padding-box;
				}
				#global-nav ul li.diary::after{
					height: calc(100% + 3px);
					background: #FDDE50 0% 0% no-repeat padding-box;
				}
				#global-nav ul li.faq::after{
					width: calc(100% + 3px);
					background: #ACE6FF 0% 0% no-repeat padding-box;
				}
				#global-nav ul li.contact::after{
					background: #57FEFE 0% 0% no-repeat padding-box;
				}
			#global-nav ul li a{
				position: relative;
				z-index: 3;
				display: flex;
				align-items: center;
				justify-content: center;
				flex-wrap: wrap;
				color: #707070;
				width: 100%;
				height: 136px;
			}
				#global-nav ul li a .jp{
					display: block;
					width: 100%;
					font-size: 32px;
					margin-bottom: 15px;
				}
				#global-nav ul li.drawn-gallary a .jp{
					font-size: 56px;
				}
				#global-nav ul li a .en{
					display: block;
					width: 100%;
					font-size: 16px;
					font-weight: 300;
				}
			#global-nav ul li a:hover,
			#global-nav ul li:hover{
				opacity: 1;
			}
			#global-nav ul li:hover::after{
				transform: scale(1.05);
			}
}

/* Bread crumbs */
.breadcrumbs_wrap{
	display: flex;
	align-items: center;
	background: #F5F5F5;
	min-height: 146px;
	margin-bottom: 45px;
	padding: 10px 15px;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	/*flex-wrap: wrap;*/
	gap: 10px 10px;
	font-size: 16px;
	color: #000000;
	line-height: 120%;
	width: 100%;
	max-width: 1392px;
	margin: 0 auto;
}
	.breadcrumbs a{
		display: flex;
		align-items: center;
		justify-content: center;
		color: #000000;
		min-width: 48px;
		height: 48px;
		background: #CCC;
		padding: 0 5px;
	}
	.breadcrumbs a.home{
		background: #FDB0AF;
	}
	.breadcrumbs a.post-works-archive{
		background: #CBFE57;
	}
	.breadcrumbs a.post-post{
		background: #FDDE50;
	}
	.breadcrumbs a.post-page{
		background: #4AFEFE;
	}
@media screen and (max-width: 767px) {
	.breadcrumbs_wrap{
		min-height: 90px;
		margin-bottom: 30px;
	}
	.breadcrumbs {
		font-size: 14px;
	}
		.breadcrumbs a{
			min-width: 40px;
			height: 40px;
		}
}

/* pagetop ------------------------------------------*/
.pagetop{
	display: none;
}
.pagetop a{
	display: inline-block;
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 98;
}
@media screen and (max-width: 767px) {
	.pagetop a img{
		width: 70px;
	}
}

/* footer ------------------------------------------*/
footer {
	padding-bottom: 25px;
}
footer .links_wrap{
	position: relative;
	z-index: 1;
	text-align: center;
	background: #E0DFDF;
	margin-bottom: 20px;
	padding: 0 15px;
}
	footer .links_wrap .links {
		text-align: right;
		max-width: 1392px;
		margin: 0 auto;
	}
	footer .links_wrap .links ul{
		display: inline-flex;
		justify-content: flex-end;
		background: #fff;
	}
		footer .links_wrap .links ul li{
			position: relative;
			z-index: 2;
			mix-blend-mode: multiply;
			text-align: center;
		}
		footer .links_wrap .links ul li::after{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
		footer .links_wrap .links ul li.greeting::after{
			width: calc(100% + 2px);
			background: #FABA8B 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li.works::after{
			width: calc(100% + 2px);
			background: #CBFE57 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li.drawn-gallary::after{
			width: calc(100% + 1px);
			background: #FAB5E1 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li.diary::after{
			width: calc(100% + 1px);
			background: #FDDE50 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li.faq::after{
			width: calc(100% + 2px);
			background: #ACE6FF 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li.contact::after{
			background: #57FEFE 0% 0% no-repeat padding-box;
		}
		footer .links_wrap .links ul li a{
			position: relative;
			z-index: 2;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-size: 24px;
			min-width: 130px;
			height: 58px;
			padding: 0 15px;
		}
footer .foot_btm{
	padding: 0 15px;
}
footer .inner{
	max-width: 1392px;
	margin: 0 auto;
}
footer .inner .info {
	margin-bottom: 15px;
}
footer .inner .info .name{
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 16px;
}
footer .inner .info .contact{
	display: flex;
	gap:35px;
	margin-bottom: 20px;
}
footer .inner .copyright{
	font-size: 24px;
	font-weight: 300;
	text-align: right;
}
@media screen and (max-width: 900px) {
	footer .links_wrap .links ul li a{
		position: relative;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		min-width: 100px;
		height: 50px;
		padding: 0 10px;
	}
}
@media screen and (max-width: 767px) {
	footer {
		padding-bottom: 25px;
	}
	footer .links_wrap{
		margin-bottom: 15px;
		padding: 0 15px;
	}
			footer .links_wrap .links ul li.greeting::after{
				width: calc(100% + 1px);
			}
			footer .links_wrap .links ul li.works::after{
				width: calc(100% + 1px);
			}
			footer .links_wrap .links ul li.drawn-gallary::after{
				width: calc(100% + 1px);
			}
			footer .links_wrap .links ul li.diary::after{
				width: calc(100% + 1px);
			}
			footer .links_wrap .links ul li.faq::after{
				width: calc(100% + 1px);
			}
			footer .links_wrap .links ul li a{
				font-size: 16px;
				min-width: 45px;
				height: 32px;
				padding: 0 5px;
			}
	footer .inner .info {
		margin-bottom: 15px;
	}
	footer .inner .info .name{
		font-size: 15px;
		margin-bottom: 14px;
	}
	footer .inner .info .contact{
		display: flex;
		flex-wrap: wrap;
		gap: 7px;
		margin-bottom: 15px;
	}
		footer .inner .info .contact .tel,
		footer .inner .info .contact .mail{
			width: 100%;
		}
	footer .inner .copyright{
		font-size: 16px;
	}
}
