@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

.libre-baskerville-<uniquifier> {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
.sans-serif {
	font-family: "Avenir Next", Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, sans-serif;
}


/* ヘッダー
 ---------------------------------------------------*/
header {
	position: relative;
}
h1 {
	position: absolute;
	top: 1.2em;
	left: 1.2em;
	font-size: 2.5em;
	color: #FFF;
	font-family: "Libre Baskerville", serif;
	/* font-family: 'Montserrat Alternates', sans-serif; */
	font-weight: 400;
	z-index: 100;
}
h1 span {
	font-size: .6em;
}
h1 a {
	color: #FFF;
	text-decoration: none;
	opacity: 1;
	transition: all .3s ease;
}
h1 a:hover {
	opacity: .6;
}
h1 {
	opacity: 0;
	top: 1.3em;
	animation: title .2s ease-in .5s forwards;
}
@keyframes title {
	0% {
		opacity: 0;
		top: 1.3em;
	}
	100% {
		opacity: 1;
		top: 1.2em;
	}
}
div.topText {
	position: absolute;
	font-size: 1.2em;
	bottom: 3em;
	left: 3em;
	z-index: 50;
	color: #FFF;
}
div.topText p {
	position: relative;
	width: 85%;
	max-width: 1000px;
	text-shadow: 0px 0px 4px #666;
}
div.topText p span {
	display: block;
}
div.topText p span.cap {
	font-size: 25px;
	line-height: 1.7;
	margin-bottom: 30px;
	margin-left: 8px;
}
div.topText p span.name {
	font-family: "Libre Baskerville", serif;
	font-weight: 400;
	font-size: 180px;
	letter-spacing: -5px;
	margin-bottom: 30px;
}
div.topText p span.name span {
	font-size: 50px;
	letter-spacing: 1px;
	margin-left: 8px;
}
div.topText p:nth-of-type(2) {
	line-height: 1.7;
}
div.topText {
	opacity: 0;
	left: 3.5em;
	animation: tt .2s ease-in .5s forwards;
}
@keyframes tt {
	0% {
		opacity: 0;
		left: 3.5em;
	}
	100% {
		opacity: 1;
		left: 3em;
	}
}

/* メインイメージ */
div.mainImage {
	width: 100%;
	height: 100vh;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	z-index: 10;
}
div.mainImage img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

/* スクロールダウン */
a.scroll {
	display: inline-block;
	position: absolute;
	right: 40px;
	bottom: 0;
	z-index: 20;
	padding: 10px 10px 110px 13px;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat Alternates', sans-serif;
	line-height: 1;
	letter-spacing: .2em;
	text-decoration: none;
	writing-mode: vertical-lr;
	opacity: 0;
	animation: fade .2s ease-in 1s forwards;
}
a.scroll::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: #FFF;
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
	
}
a.scroll::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: rgba(255, 255, 255, .4);
}
@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
    	transform: scale(1, 1);
    	transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
 	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/* フッター
 ---------------------------------------------------*/
footer {
	width: 100%;
	text-align: center;
	padding: 25px 0;
	background: #333;
}
footer p {
	color: #FFF;
	font-size: .9em;
}


/* アクセスマップ
 ---------------------------------------------------*/
div.main {
	width: 85%;
	padding: 80px 0;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
div.map {
	width: 100%;
	height: 500px;
	margin: 0 0 1em;
}
div.mapWrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div.mapTitle {
}
div.mapBody {
	width: 75%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div.mapBody dl {
	margin-top: .5em;
	padding-left: .8em;
	border-left: 1px solid #DDD;
}
div.mapBody dt {
	padding-top: .3em;
	margin-bottom: .8em;
}
div.mapBody dd {
	padding-bottom: .4em;
	font-size: .9em;
	line-height: 1.7;
}
div.mapBody dd.mailto a {
	position: relative;
	text-decoration: none;
	color: #000;
	padding-bottom: .3em;
	border-bottom: 1px solid #CCC;
}
div.mapBody dd.mailto a::after {
	width: 20px;
	height: 1px;
	background: #0A1A3C;
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	transition: all .6s ease;
}
div.mapBody dd.mailto a:hover::after {
	width: 100%;
}


/* タイトル
 ---------------------------------------------------*/
h2 span {
	display: block;
}
h2 span.en {
	font-size: 3.2em;
	font-weight: 500;
	line-height: 1.7;
}
h2 span.ja {
	color: #777;
}

h3 {
	width: 100%;
	margin: .4em 0 .5em;
	font-size: 2em;
	line-height: 1.7;
}
h3 span {
	display: block;
	font-size: .5em;
}


/* タブレット、スマホ
 ---------------------------------------------------*/
@media (max-width: 959px) {
	/* body {
		border-top: 5px solid #CCC;
	} */
	div.topText p {
		width: 80%;
	}
	div.topText p span.name {
		font-size: 18vw;
	}
	div.mapWrap,
	div.mapBody {
		width: 100%;
		display: block;
	}
	a.scroll {
		right: 15px;
	}
}
@media (max-width: 519px) {
	/* body {
		border-top: 5px solid #000;
	} */
	h1 {
		top: 1em;
		left: .6em;
	}
	@keyframes title {
		0% {
			opacity: 0;
			top: 1.2em;
		}
		100% {
			opacity: 1;
			top: .8em;
		}
	}
	
	div.topText {
		font-size: 1em;
	}
	div.topText p span.cap {
		font-size: 1.2em;
	}
	div.topText p span.cap {
		margin-bottom: 30px;
	}
	div.topText p span.name {
		font-size: 6em;
	}
	div.topText p span.name span {
		font-size: .4em;
		margin-bottom: 4px;
	}
	@keyframes tt {
		0% {
			opacity: 0;
			left: 1.5em;
			bottom: 2.4em;
		}
		100% {
			opacity: 1;
			left: 1.5em;
			bottom: 2.8em;
		}
	}
	
	a.scroll {
		right: 10px;
	}
	
	div.main {
		padding: 40px 0 80px;
	}
	
	h3 {
		margin: .8em 0 .5em;
	}
}