@charset "UTF-8";
/*============================
	- html5 reset style
	- text
	- box
	- display
	- list
	- table
	- form parts
	- icon
	- clearfix
============================*/
/*============================
	html5 reset style
============================*/
html,body,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,pre,address,code,
a,em,img,
small,strong,sub,sup,var,b,i,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,figcaption,figure,
footer,header,menu,nav,main,section,
input,mark,audio,video,
time,mark,audio,video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1;
}
article,aside,figcaption,figure,
footer,header,menu,nav,section {
display:block;
}
ul {
list-style:none;
}
a {
text-decoration: none;
color: #222;
}
img {
vertical-align:top;
}
em {
font-style:normal;
}
table {
border-collapse:collapse;
border-spacing:0;
}
input,select {
vertical-align:middle;
}
input,select,textarea,button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font:inherit;
border:0;
border-radius: 0;
box-shadow:none;
}
input:focus,select:focus,textarea:focus,button:focus {
outline:0;
box-shadow: none;
}
label {
cursor: pointer;
}
/*----------------------------
	modules
-----------------------------*/
:root {
	--white: #fff;
	--black: #222;
	--light-black: #333;
	--gray: #f1f1f1;
	--gray-2: #9e9f9f;
	--yellow: #e0d800;
	--aoboshi: "Aoboshi One", serif;
	--fs-10: .625rem;
	--fs-12: .75rem;
	--fs-13: .8125rem;
	--fs-14: .875rem;
	--fs-16: 1rem;
	--fs-18: 1.125rem;
	--fs-19: 1.1875rem;
	--fs-20: 1.25rem;
	--fs-22: 1.375rem;
	--fs-24: 1.5rem;
	--fs-25: 1.5625rem;
	--fs-29: 1.8125rem;
	--fs-30: 1.875rem;
	--fs-31: 1.9375rem;
	--fs-34: 2.125rem;
	--fs-35: 2.1875rem;
	--fs-50: 3.125rem;
	--fs-60: 3.75rem;
}
.bold { font-weight: bold; }
.block { display: block; }
.inblock { display: inline-block; }
.link { display: block; }

.bg-black {
	background-color: var(--black);
	color: var(--white);
}
.bg-light-black {
	background-color: var(--light-black);
	color: var(--white);
}
.bg-white { background-color: var(--white); }
.pc { display: none; }
/*----------------------------
	base layout
-----------------------------*/
body {
	-webkit-text-size-adjust: 100%;
	font: 1rem / 1.5 "Noto Sans JP", sans-serif;
	font-style: normal;
	font-weight: 400;
	color: var(--black);
}
/*----------------------------
	fadein
-----------------------------*/
.fadein {
	opacity: 0;
	transform: translateY(50px);
	transition: 1.5s;
}
.fadein.is-animated {
	opacity: 1;
	transform: translateY(0);
}
/*----------------------------
	header
-----------------------------*/
.header {
	width: 100%;
	position: fixed;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white);
	padding-left: 20px;
	box-sizing: border-box;
}
.sitetitle {
	width: 100px;
	height: auto;
}
.sitetitle picture { display: block; }
.sitetitle img {
	width: 100%;
}
.nav {
	background: url(../images/common/logo_black.png)bottom 20px right 20px /158px no-repeat,var(--light-black);
	padding: 80px 21px 201px;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	transition: .3s;
	overflow-y: scroll;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	width: 100%;
}
.is-active .nav {
	opacity: 1;
	visibility: visible;
}
.list-lang {
	border: solid 1px var(--white);
	display: flex;
	border-radius: .875rem;
	max-width: max-content;
	margin-left: 20px;
	margin-bottom: 40px;
}
.link-lang {
	color: var(--white);
	line-height: 1;
	padding: 5px 22px;
	box-sizing: border-box;
	display: block;
	border-radius: .875rem;
}
.is-current .link-lang {
	color: var(--black);
	background-color: var(--white);
}
.list-nav {
	max-width: max-content;
	margin: 0 0 60px;
}
.list-nav_item + .list-nav_item {
	margin-top: 30px;
}
.link-nav {
	color: var(--white);
	font-size: var(--fs-14);
	display: flex;
	align-items: center;
}
.link-nav::before {
	content: "";
	background: url(../images/common/icon_diamond.png)center/100% no-repeat;
	width: .6875rem;
	height: .6875rem;
	display: block;
	margin-right: 8px;
}
.link-nav em {
	font-family: var(--aoboshi);
	font-size: var(--fs-24);
	margin-right: 7px;
	letter-spacing: .06em;
	line-height: 1.458;
}
.link-nav span {
	margin-top: 8px;
}
.list-newtab_item + .list-newtab_item {
	margin-top: 15px;
}
.link-newtab {
	background-color: var(--white);
	font-size: var(--fs-13);
	line-height: 1;
	max-width: 275px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px 12px 23px;
	box-sizing: border-box;
}
.link-newtab::after {
	content: "";
	background: url(../images/common/icon_newtab.png)center/100% no-repeat;
	width: .9375rem;
	height: .75rem;
	display: block;
}
.list-sns {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-height: max-content;
}
.list-sns_item + .list-sns_item {
	margin-top: 5px;
}
.link-sns {
	background-color: var(--white);
	border-radius: 5px 0 0 5px;
	display: block;
	box-sizing: border-box;
	padding: 8px;
}
.link-sns_img {
	width: 2.0625rem;
	height: auto;
}
.link-sns_text {
	display: none;
}
.menu_outer {
	background-color: var(--light-black);
	color: var(--white);
	font-size: var(--fs-10);
	font-family: var(--aoboshi);
	padding: 12px 8px 8px;
	cursor: pointer;
	text-align: center;
}
.menu_outer::before {
	content: "";
	mask: url(../images/common/icon_diamond.png) center / 100% no-repeat;
	-webkit-mask: url(../images/common/icon_diamond.png) center / 100% no-repeat;
	background-color: var(--gray-2);
	width: .75rem;
	height: .75rem;
	display: block;
	margin: 0 auto 2px;
}
.is-active .menu_outer {
	padding: 0;
}
.is-active .menu_outer::before {
	content: none;
}
.is-active .menu {
	color: transparent;
	font-size: 0;
	width: 50px;
	height: 50px;
	position: relative;
	display: block;
}
.is-active .menu::before,
.is-active .menu::after {
	content: "";
	width: 65px;
	height: 1px;
	background-color: var(--white);
	position: absolute;
	left: -7px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.is-active .menu::before {
	transform: rotate(45deg);
}
.is-active .menu::after {
	transform: rotate(-45deg);
}
/*----------------------------
	contents
-----------------------------*/
.sec {
	padding: 80px 20px;
}
.sec_title_outer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 43px;
}
.sec_title_outer::before {
	content: "";
	background: url(../images/common/icon_diamond.png)center/100% no-repeat;
	width: .6875rem;
	height: .6875rem;
	display: block;
	margin-right: 7px;
	margin-top: 3px;
}
.sec_title-en {
	font-family: var(--aoboshi);
	font-size: var(--fs-22);
	font-weight: normal;
	line-height: 1.454;
	letter-spacing: 0.06em;
	margin-right: 7px;
}
.sec_title-ja {
	font-size: var(--fs-13);
	margin-top: auto;
}
.link-square {
	max-width: 275px;
	width: 82%;
	margin-left: auto;
	margin-right: auto;
	font-size: var(--fs-13);
	line-height: 1;
	padding: 12px 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.icon-newtab::after {
	content: "";
	width: .9375rem;
	height: .75rem;
	mask: url(../images/common/icon_newtab.png) center / 100% no-repeat;
	-webkit-mask: url(../images/common/icon_newtab.png) center / 100% no-repeat;
	background: var(--white);
	display: block;
}
.bg-white.icon-newtab::after {
	background-color: var(--black);
}
.icon-arrow::after {
	content: "";
	width: .5rem;
	height: .875rem;
	background: url(../images/common/icon_arrow.png) center / 100% no-repeat;
	display: block;
}
.notfound {
	text-align: center;
	padding: 120px 20px 60px;
	box-sizing: border-box;
	font-weight: bold;
}
.contents_wrap {
	padding: 120px 20px 60px;
	box-sizing: border-box;
}
/*----------------------------
	footer
-----------------------------*/
.footer {
	padding: 61px 40px 40px;
	box-sizing: border-box;
	font-size: var(--fs-14);
	line-height: 1;
	position: relative;
}
.footer_info {
	margin-bottom: 40px;
}
.link-footerlogo {
	margin-bottom: 40px;
}
.footer_info .bold {
	margin-bottom: 10px;
}
.link-footer {
	color: var(--white);
}
.list-footer {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.list-footer_item {
	width: 50%;
	margin-bottom: 20px;
}
.footer .list-lang {
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
}
.copyright_outer {
	text-align: center;
	font-size: var(--fs-12);
}
/*----------------------------
	footer
-----------------------------*/
@media screen and (min-width: 961px){
	/*----------------------------
		header
	-----------------------------*/
	.header {
		display: flex;
		align-items: center;
		position: absolute;
		padding-top: 20px;
		padding-bottom: 20px;
		background-color: transparent;
		background-color: var(--white);
	}
	.sitetitle {
		width: 67px;
	}
	.nav {
		opacity: 1;
		visibility: visible;
		background: var(--white);
		position: static;
		overflow-y: auto;
		height: auto;
		padding: 0 2.76%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.header .list-lang {
		border-color: var(--black);
		order: 2;
		margin-bottom: 0;
		margin-left: 3.177%;
	}
	.header .link-lang {
		color: var(--black);
	}
	.list-nav {
		max-width: none;
		display: flex;
		justify-content: flex-end;
		margin: 4px 0;
		gap: min(4.504%,40px);
		order: 1;
		width: calc(100% - (7.9375rem + 3.177%));
		min-width: 740px;
	}
	.list-nav_item + .list-nav_item {
		margin-top: 0;
	}
	.link-nav {
		color: var(--black);
		font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
	}
	.link-nav::before {
		content: none;
	}
	.link-nav em {
		display: none;
	}
	.link-nav .bold {
		font-weight: normal;
	}
	.list-newtab,.menu_outer {
		display: none;
	}
	.header .is-current .link-lang {
		color: var(--white);
		background-color: var(--black);
	}
	/*----------------------------
		contents
	-----------------------------*/
	.notfound,.contents_wrap {
		font-size: var(--fs-20);
		padding: 200px 20px 120px;
	}
}
@media screen and (min-width: 769px){
	:root {
		--fs-28: 1.75rem;
		--fs-36: 2.25rem;
		--fs-40: 2.5rem;
		--fs-42: 2.625rem;
		--fs-47: 2.9375rem;
		--fs-80: 5rem;
	}
	/*----------------------------
		base layout
	-----------------------------*/
	.pc { display: block; }
	.sp { display: none; }
	.inner {
		max-width: 1232px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.sec {
		padding: 160px 20px;
	}
	.sec_title_outer {
		justify-content: flex-start;
		margin-bottom: 60px;
	}
	.sec_title-en {
		font-size: var(--fs-30);
	}
	.sec_title-ja {
		font-size: var(--fs-18);
		margin-bottom: .3125rem;
	}
	.list-sns {
		top: 50%;
		bottom: auto;
		margin: 0;
		transform: translate(calc(7.875rem + 20px), -50%);
	}
	.list-sns_item + .list-sns_item {
		margin-top: 20px;
	}
	.link-sns {
		display: flex;
		align-items: center;
		padding: 10px 20px;
		transition: .5s;
	}
	.link-sns:hover {
		transform: translateX(calc(-7.875rem - 20px));
	}
	.link-sns_img {
		margin-right: 20px;
	}
	.link-sns_text {
		display: inline-block;
		font-size: var(--fs-18);
	}
	/*----------------------------
		footer
	-----------------------------*/
	.footer .inner {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.link-footerlogo {
		margin-bottom: 58px;
	}
	.footer img {
		width: 300px;
		height: auto;
	}
	.footer_info {
		width: calc(100% - 380px);
		font-size: var(--fs-18);
	}
	.footer_info .text + .text {
		margin-top: 19px;
	}
	.list-footer {
		width: 380px;
		font-size: var(--fs-18);
		margin-top: 104px;
		margin-bottom: 83px;
	}
	.list-footer_item {
		margin-bottom: 30px;
	}
	.footer .outer {
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
	}
	.list-lang_outer {
		width: 380px;
	}
	.copyright_outer {
		width: calc(100% - 380px);
		text-align: left;
		font-size: var(--fs-14);
	}
	.footer .list-lang {
		margin-left: 0;
	}
}