@charset "UTF-8";
/* CSS Document */

/*

font-family: vdl-v7gothic, sans-serif;
font-weight: 500;
font-style: normal;

font-family: vdl-v7gothic, sans-serif;
font-weight: 700;
font-style: normal;

font-family: frank-new, sans-serif;
font-weight: 500;
font-style: normal;

font-family: frank-new,sans-serif;
font-weight: 700;
font-style: normal;

*/


/*
01 Layout
========================================================================== */
:root{
	/* color */
	--black:rgba(25,25,25,1);
	--white:rgba(255,255,255,1);
	--gray:rgba(240,240,240,1);
	--yellow:rgba(255,240,0,1);
	--screen:rgba(255,240,0,.97);
}


* {
	color: var(--black);
	font-family: 'frank-new','vdl-v7gothic', 'Yu Gothic', 'YuGothic', '游ゴシック', '游ゴシック体', sans-serif;
	font-style: normal;
	font-weight: 700;
	box-sizing: border-box;
	text-decoration: none;
}

html { height: 100%; }
body {
	height: 100%;
	font-size: 14px;
	text-align: justify;
	line-height: 1.9;
	margin: 0;
	padding: 0;
	background-color: var(--yellow);
	word-break: break-all;
}
.backgroundWhite { background-color: var(--white); }
h1,h2,h3,h4,div,dl,dt,dd,ul,li,img,a,p,span,iframe,small,strong,figure,address,select,input,button,textarea,i,b,hr,sub,time {
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	list-style: none;
	text-align: justify;
	outline: none;
	background: none;
	border: none;
}
select,input {
	cursor: pointer;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
button { cursor: pointer; }
p { line-height: 1.9; }
mark {}
picture { display: block; }
br { line-height: 1; }
sub { bottom: initial; }
svg { display: block; }
small { font-size: 93%; }
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

hr {}

main { overflow: hidden; }
section { position: relative; }

[data-state="loading"] .contentsLoader{opacity:1;}
header,main,footer,.humb,[data-state="loaded"] .contentsLoader{
  visibility: hidden;
  opacity: 0;
  transition:all .4s;
}
[data-state="loaded"] header,
[data-state="loaded"] main,
[data-state="loaded"] footer,
[data-state="loaded"] .humb{
  visibility: visible;
  opacity: 1;
}

/* Indention */
.verWid { display: block !important; }
.verNar { display: none !important; }

/* underconstruction */
.underconstruction {
	padding: 300px;
}
.underconstruction p {
	margin: auto;
	text-align: center;
}
/* notFound */
.dirNotfound {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100% - 185px);
}
.notFound {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.notFound h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.humb {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 20px;
	position: fixed;
	top: 50%;
	left: 85px;
	transform: translate(0,-50%);
	z-index: 100;
	cursor: pointer;
}
.humb.dirRoot {
	top: 50px;
	left: 50px;
}
.humb hr {
	width: 100%;
	height: 3px;
	background-color: var(--black);
	border-radius: 5px;
	transition: .3s ease-out;
}
.humb > hr + hr { margin: 5px 0 0 0; }
.humb:hover hr { width: 50%; }

/* overlay */
.overlay {
	width: 100%;
	height: 100%;
	background-color: var(--screen);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;

}
.overlay h2 {
	width: 250px;
	position: absolute;
	top: 50%;
	left: 25%;
	transform: translate(-35%,-60%);
}
.overlay .gloval {
	width: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}
.overlay .gloval li {
	padding: 12px 0;
	border-bottom: 2px solid var(--black);
}
.overlay .gloval li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 50px 0 5px;
	position: relative;
	white-space: nowrap;
}
.overlay .gloval li a > * { position: relative; }
.overlay .gloval li i { font-size: 30px; }
.overlay .gloval li b {
	font-size: 12px;
	letter-spacing: .08rem;
}
.overlay .sns {
	display: flex;
	align-items: center;
	position: fixed;
	bottom: 50px;
	left: 55px;
}
.overlay .sns > li + li { margin: 0 0 0 8px; }
.overlay .sns img { width: 30px; }
.overlay .close {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 50px;
	left: 75px;
	cursor: pointer;
	z-index: 10;
}
.overlay .close hr {
	width: 100%;
	height: 3px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s ease-out;
}
.overlay .close hr:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.overlay .close hr:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.overlay .close:hover hr:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg); }
.overlay .close:hover hr:nth-child(2) { transform: translate(-50%,-50%) rotate(0deg); }


/* Header ===================== */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 45px 65px 0 35px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
header h1 { width: 150px; }
header h1 a { display: block; }
header ul {
	display: flex;
	justify-content: center;
	padding: 10px 0 0 0;
}
header ul li { width: 30px; }
header ul > li + li { margin: 0 0 0 7px; }

/* Main ===================== */
main {}
main section { overflow: hidden; }

/* inner */
.inner {
	display: flex;
	max-width: 1500px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* Title */
.ttlBasic {
  display: flex;
  flex-direction: column;
}
.ttlBasic i { font-size: 38px; }
.ttlBasic b {
	font-size: 13px;
	letter-spacing: .1rem;
}
.ttlBasic a {
	margin: 25px 0 0 0;
	padding: 4px 40px;
	border: 2px solid var(--black);
	font-size: 11px;
	line-height: 1;
	letter-spacing: .05rem;
	text-align: center;
	border-radius: 12px;
	transition: .3s ease-out;
}
.ttlBasic a:hover { background-color: var(--white); }
.ttlBasic sub {
	width: 85%;
	margin: 35px auto 0 auto;
	font-size: 12px;
	line-height: 2.2;
	letter-spacing: .03rem;
}

/* arrow */
.arrow {
  display: inline-flex;
  letter-spacing: .03rem;
  position: relative;
}
.arrow:before,
.arrow:after {
  content: '';
  position: absolute;
  bottom: 0;
}
.arrow:before {
  width: 100%;
  height: 2px;
  background-color: var(--black);
  right: 3px;
}
.arrow:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 0 13px;
  border-color: transparent transparent transparent var(--black);
  right: 0;
}

/* decoration line */
.deco {
	width: 3px;
	height: 100%;
	background-color: var(--white);
	position: absolute;
	top: 0;
	z-index: -1;
	transform: skewX(-15deg);
	opacity: .75;
}

/* Footer ===================== */
footer {
	padding: 0 0 100px 0;
	position: relative;
}
footer button {
	display: flex;
	justify-content: flex-end;
	width: 15px;
	height: 65px;
	position: absolute;
	top: 25px;
	left: 80px;
}
footer button:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 13px 9px;
	border-color: transparent transparent var(--black) transparent;
	position: absolute;
	top: -2px;
	left: 0;
}
footer button hr {
	width: 2px;
	height: 100%;
	background-color: var(--black);
	margin: 0 6px 0 0;
}
footer p {
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer p i {
	font-size: 12px;
	letter-spacing: .15rem;
}
footer p > i + i { margin: 15px 0 0; }
footer p img { width: 200px; }
footer ul {
	display: flex;
	align-items: center;
	position: absolute;
	top: 32px;
	right: 75px;
}
footer ul li { width: 27px; }
footer ul > li + li { margin: 0 0 0 9px; }



@media screen and (max-width:1040px) {

body { font-size: 13px; }

.humb {
	top: 50px;
	left: 50px;
}

.overlay.verNav {}
.overlay h2 {
	width: 210px;
	margin: 0 auto;
	padding: 10vw 0 40px;
	position: relative;
	top: initial;
	left: initial;
	transform: none;
}
.overlay .gloval {
	width: 60%;
	margin: 0 auto;
	position: relative;
	top: initial;
	left: initial;
	transform: none;
}
.overlay .gloval li i { font-size: 27px; }
.overlay .sns {
	display: flex;
	align-items: center;
	width: 60%;
	margin: 40px auto 20vw;
	position: relative;
	bottom: initial;
	left: initial;
}
.overlay .sns img { width: 27px; }
.overlay .close {
	top: 30px;
	left: 45px;
}

.ttlBasic sub { width: 100%; }

header {
	justify-content: center;
	padding: 100px 0 0 0;
	position: relative;
	top: initial;
	left: initial;
}
header h1 { width: 220px; }
header ul {
	position: absolute;
	top: 40px;
	right: 40px;
}

}


@media screen and (max-width:840px) {

.humb {
	width: 38px;
	height: 20px;
}
.humb.dirRoot {
	top: 50px;
	left: 35px;
}

.overlay .close {
	width: 42px;
	height: 42px;
	top: 30px;
	left: 35px;
}

footer ul {
	justify-content: center;
	margin: 30px auto;
	position: relative;
	top: initial;
	right: initial;
}
footer button { display: none; }

}


@media screen and (max-width:640px) {


.verWid { display: none !important; }
.verNar { display: block !important; }

p { line-height: 2.1; }

.humb {
	top: 40px;
	left: 25px;
}
.humb.dirRoot {
	top: 40px;
	left: 25px;
}
.overlay .close {
	top: 20px;
	left: 25px;
}
.overlay h2 {
	width: 160px;
	padding: 20vw 0 40px;
}
.overlay .gloval { width: 80%; }
.overlay .gloval li a { padding: 0; }
.overlay .gloval li i {
	font-size: 18px;
	letter-spacing: -.05rem;
}
.overlay .gloval li b {
	font-size: 11px;
	letter-spacing: .03rem;
}
.overlay .sns { width: 80%; }
.ttlBasic i {
	font-size: 30px;
	letter-spacing: -.03rem;
}
.ttlBasic a {
	width: 70%;
	margin: 20px 0 0 0;
	font-size: 10px;
	letter-spacing: .02rem;
}
.ttlBasic sub {
	font-size: 13px;
	line-height: 2.1;
}

header {
	padding: 0;
	position: fixed;
	top: 25vh;
	left: 0;
	z-index: -1;
	overflow: hidden;
}
header h1 {
	width: 90vw;
	position: relative;
	right: -25vw;
	opacity: .65;
}
header ul { display: none; }

footer { padding: 0 0 75px 0; }
footer p i { letter-spacing: .08rem; }
footer p > i + i { margin: 13px 0 0 0; }
footer p img { width: 180px; }

}

