
@charset "UTF-8";


@font-face {
	font-family: 'font1';
	src:url('/img/font1.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}


html{
	font-size: 10px;
	scroll-behavior: smooth;
}
@media (max-width: 850px) {
	html{
		font-size: 1.17vw;
	}
}

html.pc .sp{ display: none !important; }
html.sp .pc{ display: none !important; }

body{
	padding: 0;
	margin: 0;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.6;
	/*letter-spacing: 1.5px;*/
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: "Hiragino Sans", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; /* iPhoneだけ文字が大きくなる現象を防ぐ */
	font-feature-settings: "palt"; /* 文字詰め（フォントにカーニング情報が含まれる場合） */

	 /* iPhoneで上下のバーを抜いた高さ */
	height: -webkit-fill-available;
	height: -moz-available;
}

::-webkit-input-placeholder{ color: #bbb; }
:-moz-placeholder          { color: #bbb; }
:-ms-input-placeholder     { color: #bbb; }

h1{
	margin: 50px 0;
}

h2{
	font-size: 1.8rem;
	margin: 0;
}

h3{
	display: flex;
	align-items: flex-end;
	/*	font-family: bebas-neue-pro, sans-serif;*/
	/*	font-weight: 600;*/
	font-size: 5.6rem;
	letter-spacing: 0.01em;
	margin: 2rem 0 4rem;
}

h4{
	font-size: 1.2rem;
	font-weight: normal;
	margin: 15px 0;
}

p{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-size: 2.3rem;
	line-height: 2.4;
}
@media (max-width: 1000px) {
	p{
		font-size: 2rem;
	}
}

img{
	vertical-align: middle;
	max-width: 100%;
}
img.double{
	display: none;
}
img.double.show{
	display: inline-block;
}

iframe{
	vertical-align: bottom;
	max-width: 100%;
}

a,
a:link,
a:visited{
	color: inherit;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}

/* IE6,7 対策 */
a img{
	border-style: none;
}

a.fade{
	display: inline-block;
	text-decoration: none;
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;
}

a.fade:hover{
	opacity: 0.6;
	filter: alpha(opacity=60);
	text-decoration:none;
}

#page{
	min-height: 100vh;
	background-color: #ebeaea;
}

header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}
header .title img{
	width: 180px;
}

#site-navigation{
/*	flex-grow: 1;*/
	display: flex;
/*	justify-content: space-between;*/
	align-items: center;
}
#site-navigation div{
	display: flex;
	align-items: center;
}
#site-navigation a{
	text-decoration: none;
	white-space: nowrap;
}
#site-navigation .text{
	display: flex;
	align-items: center;
	font-size: 1.9rem;
	line-height: 1;
	letter-spacing: 0.02em;
	margin: 0 30px 0 0;
}
#site-navigation .text .top{
	display: none;
}
#site-navigation .text a:hover{
	color: #0967f5;
}
#site-navigation .text .border{
	height: 0.8em;
	border-left: 1px solid #000;
	margin: 0 0.6em;
}
.sns{
	display: flex;
	align-items: center;
}
.sns a{
	filter: grayscale(100%) brightness(0.8) contrast(2);
	margin: 0 0 0 8px;
	/*	transition: 0.1s linear;*/
}
.sns a:hover{
	filter: grayscale(0%) brightness(1) contrast(1);
}
#site-navigation .nav1 a:hover{
	background-color: #eee;
	box-shadow: 0 -10px 0 10px #eee;
}

#open_nav{
	display: none;
}


label[for="open_nav"] {
	display: none;
	top: 10px;
	right: 10px;
	height: 12vmin;
	width: 14vmin;
	justify-content: center;
	align-items: center;
	z-index: 2150;
	/*	background-color: #fff;*/
}
html.pc label[for="open_nav"] {
/*    display: none;*/
}
label[for="open_nav"] span,
label[for="open_nav"] span:before,
label[for="open_nav"] span:after {
	content: '';
	display: block;
	height: 1px;
	width: 10vmin;
	border-radius: 5px;
	background-color: #000;
	position: absolute;
	transition: 0.3s ease-in-out;
}
label[for="open_nav"] span:before {
	bottom: 3.3vmin;
}
label[for="open_nav"] span:after {
	top: 3.3vmin;
}
label[for="open_nav"] img{
	width: 70px;
}
#open_nav:checked ~ label[for="open_nav"] {
	background-color: transparent;
}
#open_nav:checked ~ label[for="open_nav"] span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#open_nav:checked ~ label[for="open_nav"] span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#open_nav:checked ~ label[for="open_nav"] span::after {
	top: 0;
	transform: rotate(-45deg);
}
.site-header .sp_gnav{
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #bdad77;
	z-index: 1100;
}
label[for="open_nav"] .nav_close{
	/*display: none;*/
}
#open_nav:checked ~ label[for="open_nav"] .nav_open{
	/*display: none;*/
}
#open_nav:checked ~ label[for="open_nav"] .nav_close{
	/*display: block;*/
}

@media (max-width: 600px) {
	p{
		font-size: 2.5vmin;
	}
	header{
		position: fixed;
		width: 100vw;
		background-color: #e8e7e7;
		z-index: 2000;
	}
	header .title{
		z-index: 2200;
	}
	header .title img{
		width: 48vw;
	}
	#site-navigation{
		flex-direction: column;
		justify-content: flex-start;
		position: fixed;
		left: 0;
		top: 0px;
		box-sizing: border-box;
		width: 100%;
		height: 100vh;
		padding: 100px 20px 50px;
		background-color: #e8e7e7;
		z-index: 2100;

		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s linear;
	}
	#open_nav:checked ~ #site-navigation{
		opacity: 1;
		pointer-events: auto;
	}
	#site-navigation .nav1 a{
		font-size: 2.5rem;
		margin: 20px 0;
	}
	#site-navigation .nav1 a:hover{
		box-shadow: 0 0 0 10px #eee;
	}
	#site-navigation .text{
		flex-direction: column;
		font-size: 9vmin;
		margin: 0 0 9vmin;
	}
	#site-navigation .text a{
		margin: 4vmin 0;
	}
	#site-navigation .text .top{
		display: block;
	}
	#site-navigation .text .border{
		display: none;
	}
	#site-navigation .sns a img{
		width: 16vmin;
	}
	#site-navigation .sns a{
		margin: 0 2vmin;
	}
	label[for="open_nav"]{
		display: flex;
	}
}

footer{
	position: sticky;
	top: 100vh;
	margin: 33px auto 0;
}
footer a{
	text-decoration: none;
}
footer a:hover{
	text-decoration: underline;
}

.footer1{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer1 a{
	margin: 0 4px;
}
.footer1 .t3{
	font-family: font1;
	font-size: 1.9rem;
	margin: 5px 7px 0;
	text-underline-offset: -2px;
	/*	border-bottom: 1px solid #000;*/
}
.footer1 .t3:hover{
	color: #0967f5;
}
.footer1 .sns a img{
	width: 30px;
}

@media (max-width: 600px) {
	.footer1 .t3{
		font-size: 3.5vmin;
		text-underline-offset: -2px;
	}
	.footer1 .sns a img{
		width: 7vmin;
	}
}

.copyright{
	text-align: center;
	font-size: 1rem;
	padding: 30px 0 20px;
}

.gototop{
	position: fixed;
	right: 15px;
	bottom: 15px;
	opacity: 0;
	pointer-events: none;
}
.gototop.show{
	opacity: 1;
	pointer-events: auto;
}

.page_width1{
/*	max-width: 90%;*/
/*	width: 1110px;*/
	width: 90%;
	margin: 0 auto;
}
.page_width2{
	max-width: 90%;
	width: 880px;
	margin: 0 auto;
}
@media (max-width: 600px) {
	.page_width1{
		width: 100%;
	}
}


@keyframes identifier {
	0%   { opacity: 0.1; }
	50%  { opacity: 0.2; }
	100% { opacity: 0.1; }
}



.YuGothic_Pr6NR{
	font-family: "yu-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.BebasNeueProRegular{
	font-family: bebas-neue-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.BebasNeueProBold{
	font-family: bebas-neue-pro, sans-serif;
	font-weight: 600;
	font-style: normal;
}
.SourceHanSansJPMedium{
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 500;
	font-style: normal;
}
p,
.YuGothic_Pr6NR,
.BebasNeueProRegular,
.BebasNeueProBold,
.SourceHanSansJPMedium{
/*	animation: identifier 2s linear 0s infinite;*/
/*	opacity: 0.1;*/
/*	background-color: #000;*/
/*	filter: blur(10px);*/
/*	transition: opacity 0.5s linear;*/
}
.wf-yu-gothic-pr6n-n4-active p,
.wf-yu-gothic-pr6n-n4-active .YuGothic_Pr6NR,
.wf-bebas-neue-pro-n4-active .BebasNeueProRegular,
.wf-bebas-neue-pro-n6-active .BebasNeueProBold,
.wf-source-han-sans-japanese-n5-active .SourceHanSansJPMedium{
/*	filter: blur(0);*/
/*	animation: none;*/
/*	opacity: 1;*/
/*	background-color: transparent;*/
}


.contents{
}
@media (max-width: 600px) {
	.contents{
		padding-top: 12vmin;
	}
}





