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


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_icon';
	src: url('../font/sns_icon.eot?hf355k');
	src: url('../font/sns_icon.eot?hf355k#iefix') format('embedded-opentype'),
	url('../font/sns_icon.ttf?hf355k') format('truetype'),
	url('../font/sns_icon.woff?hf355k') format('woff'),
	url('../font/sns_icon.svg?hf355k#sns_icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	color: #fff;
}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}



body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .06em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	background-color: #000;
	color: #fff;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .3s ease-out;
}
.anim.on {
	opacity: 1;
}

main {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 60px;
}

@media screen and (min-width: 813px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 812px) {
	
	.pc { display: none;}

	main {
		padding: 0 min(6vw, 60px);
	}
}



/* ////////////////////////////////////////////////////////////////////////////////

	navi

//////////////////////////////////////////////////////////////////////////////// */

nav {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	color: #fff;
	z-index: 100;
	height: 100vh;
	background-color: #000;
}
nav .navWrap {
	display: flex;
	align-items: center;
    height: 100%;
}

nav .navClose {
	width: 100px;
}
nav .navClose a {
	display: block;
    padding-top: 70px;
    padding-bottom: 15px;
	position: relative;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
nav .navClose a::before,
nav .navClose a::after {
	content: "";
	display: block;
    width: 45%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
nav .navClose a::before {
    transform: translateX(-50%) rotate(45deg);
}
nav .navClose a::after {
    transform: translateX(-50%) rotate(-45deg);
}

nav .navLogo {
	line-height: 0;
	text-align: center;
	padding: 0 15px 20px;
	border-bottom: #252525 solid 1px;
}
nav .navLogo img {
	width: 120px;
}

nav .navMain {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border-left: #252525 solid 1px;
    height: 100%;
}

nav .mainNav {
	/*background: linear-gradient(60deg, #d46514 0%, #8d0006 50%, #000 100%);*/
	padding: 30px 40px;
}
nav .mainNav p {
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 10px;
}
nav .mainNav p a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul {
	font-size: 16px;
}
nav .mainNav ul li {
	margin-bottom: 5px;
}
nav .mainNav ul li a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul li span {
	opacity: .5;
}

nav .otherLink {
	font-family: 'Roboto', sans-serif;
	padding: 15px 25px;
	text-align: center;
}
nav .otherLink p {
	opacity: .5;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
}
nav .otherLink p span {
	display: block;
	font-size: 12px;
	font-weight: 700;
}

#menuButton {
	position: fixed;
    background: linear-gradient(60deg, #d46514 0%, #8d0006 50%, #000 100%);
	top: 50vh;
	left: 0;
	transform: translateY(-50%);
    width: 100px;
    height: 220px;
    line-height: 0;
    padding: 10px;
    text-decoration: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    z-index: 10;
}
#menuButton::after {
	content: "MENU";
	color: #fff;
	font-size: 12px;
	font-weight: bold;
    margin-top: 15px;
    display: block;
}
#menuButton img {
    width: 58%;
}


@media screen and (min-width: 821px) {
	
}
@media screen and (max-width: 820px) {	
	#menuButton {
		width: 68px;
		height: 68px;
		padding: 6px;
		top: 0;
		transform: translateY(0);
	}
	#menuButton::after {
		font-size: 10px;
		margin-top: 10px;
	}
	
	nav {
		bottom: inherit;
		top: 0;
		width: 100vw;
	}
	nav .navLogo img {
		width: 100px;
	}
	
	nav .navClose {
		width: 68px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9999;
	}
	nav .navClose a {
		padding-top: 50px;
		padding-bottom: 10px;
		font-size: 10px;
	}
	nav .navClose a::before,
	nav .navClose a::after {
		width: 50%;
		top: 40%;
	}
	
	nav .navMain {
		width: 100%;
	}
	nav .mainNav {
		padding: min(6vw, 30px) min(6vw, 40px);
	}
	nav .mainNav p {
		font-size: min(4.2vw, 20px);
		margin-bottom: min(3vw, 10px);
	}
	nav .mainNav ul {
		font-size: min(3.4vw, 16px);
	}
	nav .mainNav ul li {
		text-align: center;
	}
}



/* ////////////////////////////////////////////////////////////////////////////////

	footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
	padding: 100px 60px;
    background-color: rgba(0,0,0,0.50);
	position: relative;
	z-index: 1;
}
footer .ftrLogo {
	width: 180px;
	line-height: 0;
	margin: 0 auto 60px;
}
footer .ftrLogo img {
	width: 100%;
	height: auto;
}

footer .ftrSns {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
footer .ftrSns li {
	margin: 0 20px;
}
footer .ftrSns li a {
	text-decoration: none;
	font-size: 30px;
}

footer .ftrLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .ftrLink li {
    margin: 0 20px;
}
footer .ftrLink li:nth-child(1) img { width: 100px;}
footer .ftrLink li:nth-child(2) img { width: 80px;}
footer .ftrLink li:nth-child(3) img { width: 120px;}


footer .address {
	font-size: 12px;
	text-align: center;
	margin-bottom: 60px;
}
footer .copyright {
	font-size: 10px;
	text-align: center;
}



@media screen and (max-width: 820px) {
	
	footer {
		padding: min(14vw, 100px) min(5vw, 60px);
	}
	footer .ftrLogo {
		width: min(30vw, 180px);
		margin: 0 auto min(8vw, 60px);
	}

	footer .ftrSns {
		margin-bottom: 40px;
	}
	footer .ftrSns li {
		margin: 0 min(4vw, 20px);
	}
	footer .ftrSns li a {
		font-size: min(6.8vw, 30px);
	}

	footer .ftrLink {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
	}
	footer .ftrLink li {
		margin: 0 min(4vw, 20px);
	}

	footer .ftrLogo li:nth-child(1) img { width: min(36vw, 100px);}
	footer .ftrLogo li:nth-child(2) img { width: min(32vw, 80px);}
	footer .ftrLogo li:nth-child(3) img { width: min(42vw, 120px);}

	footer .address {
		font-size: min(2.8vw, 12px);
		margin-bottom: min(8vw, 60px);
	}
	footer .copyright {
		font-size: min(2.6vw, 10px);
	}

}


/* ////////////////////////////////////////////////////////////////////////////////

	mainvisual

//////////////////////////////////////////////////////////////////////////////// */
#mainvisual {
	padding: 100px 60px;
	text-align: center;
}
#mainvisual h1 {
	/*font-family: 'Plus Jakarta Sans', sans-serif;
	font-family: "Times New Roman", Times, "serif";
	font-weight: 700;
	letter-spacing: .1em;*/
	line-height: 0;
}
#mainvisual h1 img {
	width: 180px;
}
#mainvisual h1 p {
	font-size: 28px;
}
#mainvisual h1 span {
	font-weight: 300;
}


@media screen and (min-width: 821px) {
	
}
@media screen and (max-width: 820px) {
	
	#mainvisual {
		padding: min(14vw, 100px) min(6vw, 60px);
	}
	
	#mainvisual h1 img {
		width: min(28vw, 180px);
	}
	#mainvisual h1 p {
		font-size: min(4.6vw, 28px);
		letter-spacing: .1em;
	}
	
}


.sideNav {
	position: fixed;
    top: calc(50vh + 150px);
    left: 45px;
	z-index: 2;
}
.sideNav li {
	margin-bottom: 20px;
}
.sideNav li a {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #666;
}
.sideNav li.current a {
	background-color: #c34510;
}


.yearSelect {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 80px;
}
.yearSelect li {
	width: 20%;
}
.yearSelect li a,
.yearSelect li span {
	display: block;
	position: relative;
	line-height: 0;
	color: #fff;
	text-decoration: none;
	border: #000 solid 1px;
}
.yearSelect li a::after,
.yearSelect li span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}
.yearSelect li a::after { background-image: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); height: 30%;}
.yearSelect li span::after { background-color: rgba(0,0,0,0.7); height: 100%;}

.yearSelect li a.current {
	border: #fff solid 1px;
}
.yearSelect li p {
	/*font-family: 'Plus Jakarta Sans', sans-serif;*/
	font-family: "Times New Roman", Times, "serif";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	position: absolute;
	bottom: 4%;
	left: 6%;
	z-index: 1;
}
.yearSelect li span {
	filter: saturate(0%);
}


.contents {
	background-color: #fff;
}
.contents .contentHead {
    background: linear-gradient(90deg, #8d0006 0%, #d46514 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*font-family: 'Plus Jakarta Sans', sans-serif;*/
	font-family: "Times New Roman", Times, "serif";
	font-weight: 700;
	padding-left: 30px;
	position: sticky;
    top: 0;
    z-index: 3;
}

.contents .contentHead h2 {
	font-size: 26px;
}
.contents .contentHead .singleAnchor {
	display: flex;
	padding: 20px 30px;
	background-color: #c34510;
	position: relative;
}
.contents .contentHead .singleAnchor::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
    transform: translateX(-99%);
    background: linear-gradient(110deg, rgba(195,69,16,0) 50%, rgba(195,69,16,1) 50%);
}
.contents .contentHead .singleAnchor li {
	margin-left: 25px;
}
.contents .contentHead .singleAnchor li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
}

.contents .historyWrap {
	color: #000;
	position: relative;
}
.contents .historyWrap h3 {
	font-size: 20px;
	margin-bottom: 30px;
}
.contents .historyWrap .year {
	position: absolute;
	top: 80px;
	font-size: 140px;
    letter-spacing: .06em;
	/*font-family: 'Plus Jakarta Sans', sans-serif;*/
	font-family: "Times New Roman", Times, "serif";
	font-weight: normal;
	font-style: italic;
	line-height: 1;
	color: #dcdcdc;
}
.contents .historyWrap .pic {
	line-height: 0;
	width: calc(100% + 60px);
	margin-bottom: 50px;
}
.contents .historyWrap .text p {
	font-size: 14px;
	margin-bottom: 25px;
}


.contents .historyWrap:nth-child(even) {
	padding: 80px 240px 80px 60px;
}
.contents .historyWrap:nth-child(even) .year {
	right: 40px;
    transform-origin: left top;
    transform: translate(100%, 0%) rotate(90deg);
}
.contents .historyWrap:nth-child(even) .pic {
	transform: translateX(-60px);
}

.contents .historyWrap:nth-child(odd) {
	padding: 80px 60px 80px 240px;
}
.contents .historyWrap:nth-child(odd) .year {
	left: 40px;
    transform-origin: left bottom;
    transform: translate(0%, -100%) rotate(90deg);
}
.contents .historyWrap:nth-child(odd) .pic {
	transform: translateX(0);
}




@media screen and (min-width: 821px) {
	
}
@media screen and (max-width: 820px) {
	
	.sideNav {
		top: calc(50vh + 22vw);
		left: 2.4vw;
	}
	.sideNav li {
		margin-bottom: 15px;
	}
	.sideNav li a {
		width: 5px;
		height: 5px;
	}
	
	.yearSelect {
		margin-bottom: min(12vw, 80px);
	}
	.yearSelect li {
		width: calc(100% / 3);
	}
	.yearSelect li:last-child {
		display: none;
	}
	
	.yearSelect li p {
		font-size: min(3.6vw, 20px);
		bottom: 3%;
		left: 8%;
	}
	
	
	.contents .contentHead {
		padding-left: 0;
		display: block;
	}
	.contents .contentHead h2 {
		font-size: min(5.6vw, 26px);
		line-height: 1.2;
    	padding: min(2vw, 20px) min(6vw, 30px);
		text-align: center;
	}
	.contents .contentHead .singleAnchor {
		padding: min(2vw, 20px) min(6vw, 30px);
		justify-content: center;
	}
	.contents .contentHead .singleAnchor::before {
		display: none;
	}
	.contents .contentHead .singleAnchor li {
		margin: 0 min(1.5vw, 15px);
	}
	.contents .contentHead .singleAnchor li a {
    	font-size: min(3.8vw, 20px);
	}
	
	
	.contents .historyWrap h3 {
		font-size: min(3.8vw, 20px);
		margin-bottom: min(6vw, 30px);
	}
	.contents .historyWrap .year {
		top: 75vw;
		font-size: min(18vw, 140px);
    	opacity: 0.6;
	}
	.contents .historyWrap .pic {
		width: calc(100% + 6vw);
		margin-bottom: min(8vw, 50px);
	}
	.contents .historyWrap .text {
		position: relative;
		z-index: 1;
	}
	.contents .historyWrap .text p {
		font-size: min(3.2vw, 14px);
		margin-bottom: min(6vw, 25px);
	}
	
	.contents .historyWrap:nth-child(even) {
		padding: min(8vw, 80px) min(6vw, 60px);
	}
	.contents .historyWrap:nth-child(even) .year {
		right: 0vw;
		font-size: min(28vw, 140px);
	}
	.contents .historyWrap:nth-child(even) .pic {
		transform: translateX(-6vw);
	}
	
	
	.contents .historyWrap:nth-child(odd) {
		padding: min(8vw, 80px) min(6vw, 60px);
	}
	.contents .historyWrap:nth-child(odd) .year {
		left: 0vw;
		font-size: min(28vw, 140px);
	}
}


#op {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	background-color: #000;
}
#op img {
    max-width: 220px;
    width: 38vw;
	animation: opLogo 1s ease-out .5s forwards;
	opacity: 0;
}

@keyframes opLogo {
	0% { opacity: 0;}
	100% { opacity: 1;}
}


#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	z-index: 100;
}
#loading .loadingInr {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    padding: 0 min(6vw, 60px);
}

#loading .loadingInr .loLogo {
    width: 325px;
    line-height: 0;
    padding-bottom: 25px;
    border-bottom: #fff solid 1px;
    margin-bottom: 15px;
}
#loading .loadingInr .loTtl {
	/*font-family: 'Plus Jakarta Sans', sans-serif;*/
	font-family: "Times New Roman", Times, "serif";
    font-weight: 600;
	font-size: 30px;
    letter-spacing: .1em;
}
#loading .loadingInr .loTtl span {
    font-weight: 300;
}

#loading .loadingInr .loTtl:last-child {
    font-size: 24px;
	font-feature-settings: "palt";
}

#loading .loadingInr .shuffleYear {
	/*font-family: 'Plus Jakarta Sans', sans-serif;*/
	font-family: "Times New Roman", Times, "serif";
    font-weight: 600;
    font-size: 74px;
	letter-spacing: .1em;
    text-align: center;
    display: flex;
    justify-content: center;
}
#loading .loadingInr .shuffleYear .y02 { width: 14%;}


@media screen and (max-width: 820px) {
	
	#loading .loadingInr .loLogo {
		width: min(56vw, 325px);
		padding-bottom: min(6vw, 25px);
		margin-bottom: min(4vw, 15px);
	}
	#loading .loadingInr .loTtl {
		font-size: min(5.2vw, 30px);
	}
	#loading .loadingInr .shuffleYear {
		font-size: min(10.2vw, 58px);
    	width: min(56vw, 325px);
	}
	
	#loading .loadingInr .loTtl:last-child {
		font-size: min(4.3vw, 24px);
	}
	
}
