@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------- general --*/

/*---------- h2 --*/

h2 {
	font-family: var(--serif);
	font-size: 30px;
	line-height: 1.75em;
	letter-spacing: 2px;
}


/*---------- .title --*/

.home_title {
	font-family: YuGo-M;
	font-size: 19px;
	font-style: italic;
	color: var(--color);
	letter-spacing: 1px;
}



@media (1025px <= width) {}

@media (width <= 1023px) {
	h2 {
		font-size: 24px;
	}
}

/*---------------------------------------------------------------------- .introduction --*/

.anime_introduction {
	animation: anime_introduction 20s linear infinite;
}

@keyframes anime_introduction {
	to {
		transform: scale(1.25);
	}
}

.introduction {
	position: relative;
	padding: ;
	overflow: hidden;
}

.introduction::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/asset/image/home/introduction_logo.png?v=20000101) no-repeat center;
	z-index: 100;
}

.fade-area {
	width: 100%;
	height: 100%;
	position: relative;
}

.fade-list {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fade-list:nth-child(1) {
	background-image: url(/asset/image/home/introduction_1.jpg?m=20000101);
}

.fade-list:nth-child(2) {
	background-image: url(/asset/image/home/introduction_2.jpg?m=20000101);
}

.fade-list:nth-child(3) {
	background-image: url(/asset/image/home/introduction_3.jpg?m=20000101);
}

.fade-list:nth-child(4) {
	background-image: url(/asset/image/home/introduction_4.jpg?m=20000101);
}

.fade-list:nth-child(5) {
	background-image: url(/asset/image/home/introduction_5.jpg?m=20000101);
}

.fade-list:nth-child(6) {
	background-image: url(/asset/image/home/introduction_6.jpg?m=20000101);
}

.fade-list:nth-child(7) {
	background-image: url(/asset/image/home/introduction_7.jpg?m=20000101);
}

.fade-list:nth-child(8) {
	background-image: url(/asset/image/home/introduction_8.jpg?m=20000101);
}

.fade-list:nth-child(9) {
	background-image: url(/asset/image/home/introduction_9.jpg?m=20000101);
}

.fade-list:nth-child(10) {
	background-image: url(/asset/image/home/introduction_10.jpg?m=20000101);
}

@media (1024px < width) {
	#introduction {
	}
	
	.introduction {
		height: 700px;
	}
}

@media (width <= 1023px) {
	.introduction {
		height: auto;
		aspect-ratio: 16 / 9;		
	}
	
	.introduction::before {
		background-size: calc(100% - 80px) auto;
	}
}

@media (width <= 767px) {
	.introduction {
		aspect-ratio: 4 / 3;
	}
	
	.copy {
		padding: 100px 0 75px;
	}

	.copy, .copy span {
		font-size: 16vh;
	}
}

@media (width <= 500px) {
	.copy, .copy span {
		font-size: 14vh;
	}
}

@media (501px <= width) and (height <= 800px) {
	.introduction {
		height: 66.7vh;
		aspect-ratio: auto;
	}
}

/*---------------------------------------------------------------------- .news --*/

.news_box {
	display: flex;
	align-items: flex-start;
}

/*----------> ▼ .news_left --*/

.news_left {
	width: 30%;
}

.news_left * {
	width: 100%;
}

/*----------> ▼ .news_right --*/

.news_right {
	width: 70%;
	text-align: right;
}

@media (width <= 767px) {
	.news_box {
		flex-wrap: wrap;
	}

	.news_left, .news_right {
		width: 100%;
	}

	.news_left {
		margin-bottom: 15px;
	}
}

/*----------------------------------------> ▼ .news_left --*/

.index_title_en {
	margin: -10px 0 0;
	font-family: HelveticaCond-UL;
	font-size: var(--font_title_en);
	line-height: 1em;
}

.index_title {
	position: relative;
	margin: 15px 0;
	font: var(--font_title);
}

.index_title:before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 1px;
	background: linear-gradient(to right, #ddf, #ffd);
	background: linear-gradient(to right, var(--theme) 50%, var(--hover) 50.01%, var(--hover));
}

/*---------------------------------------------------------------------- .about --*/

.about {
	background: url(/asset/image/home/about_bg.jpg) no-repeat calc(50vw + 50px) top;
}

/*---------- .about_left --*/

.about .left {
	width: 50%;
}

/*---------- h2 --*/

.about h2 {
	padding: 30px 0;
}


/*---------- .image --*/

.about .image {
	display: flex;
	margin-top: 40px;
}

.about .image img:nth-of-type(n + 2) {
	margin-left: 30px;
}

/*---------- .link --*/

.about .link {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.about .link a {
	width: calc((100% - 30px) / 2);
	background: rgba(32, 93, 154, 1);
	color: #fff;
	text-align: center;
	line-height: 70px;
}

.about .link i::before {
	content: '\f105';
	margin-right: 5px;
}

@media (width <= 767px) {
	.about {
		padding-top: 30px;
		background: none;
	}
	
	.about .left {
		width: 100%;
	}
	
	.about .image img {
		width: calc((100% - 2px) / 3);
	}
	
	.about .image img:nth-of-type(n + 2) {
		margin-left: 1px;
	}
	
	.about .link {
		flex-wrap: wrap;
	}
	
	.about .link a {
		width: 100%;
		line-height: 60px;
	}
	
	.about .link a:nth-of-type(n + 2) {
		margin-top: 15px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.about .link a:hover {
		background: rgba(50, 50, 50, 0.65);
	}
}

/*---------------------------------------------------------------------- .navi --*/

.navi {
	display: flex;
}

.navi a {
	position: relative;
	width: 50%;
	padding: 50px 0;
	overflow: hidden;
}

.navi a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.navi a:nth-of-type(1)::after {
	background: url(/asset/image/home/navi_1.jpg) center / cover;
}

.navi a:nth-of-type(2)::after {
	background: url(/asset/image/home/navi_2.jpg) center / cover;
}

.navi .wrap {
	display: flex;
	flex-wrap: wrap;
	width: 66.7%;
	margin: 0 auto;
	padding: 100px 0;
	background: rgba(0, 0, 0, 0.5);
}

.navi .wrap div {
	width: 100%;
	text-align: center;
}

.navi .wrap div:nth-of-type(1) {
	color: #fff;
	font-family: var(--serif);
	font-size: 30px;
	line-height: 1.75em;
	letter-spacing: 2px;
}

.navi .wrap div:nth-of-type(2) {
	color: #ffd800;
	font-family: Montserrat-R;
	font-size: 15px;
	font-style: italic;envelope
	line-height: ;
	letter-spacing: 1px;
}

@media (width <= 767px) {
	.navi {
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	.navi a {
		width: 100%;
		padding: 15px;

	}
	
	.navi .wrap {
		width: 100%;
		padding: 15px 0;
	}
}

@media (hover: hover) and (pointer: fine) {
	.navi a:hover::after {
		transform: scale(1.1);
	}
}

/*---------------------------------------------------------------------- .contact --*/

.contact {
	background: var(--theme);
}

.contact div {
	color: #fff;
	text-align: center;
}

.contact .title {
	margin: 30px 0;
}

.contact .tel {
	font-size: 40px;
}

.contact .tel .icon::after {
	content: '\f2a0';
	margin-right: 15px;
}

.contact .frame div:last-of-type {
	margin: 30px 0;
	line-height: 1.75em;
}

.contact a {
	display: inline-block;
	width: 1024px;
	max-width: 100%;
	background: #ffd800;
	text-align: center;
	line-height: 70px;
}

.contact a .icon::after {
	content: '\f0e0';
	margin-right: 10px;
}

@media (width <= 767px) {
	.contact a {
		display: inline-block;
		width: 100%;
		max-width: 100%;
		background: #ffd800;
		text-align: center;
		line-height: 60px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.contact a:hover {
		opacity: 0.8;
	}
}

/*---------------------------------------------------------------------- .map --*/

.map iframe {
	display: block;
	height: 300px;
}



/*---------------------------------------------------------------------- #access --*/
/*
#access .frame {
	margin-top: calc(var(--margin) * 0.25);
}

.map {
	width: 100%;
	height: 400px;
	margin-bottom: 40px;
	border-radius: var(--border_radius);
}

@media (1601px <= width) {
	#access .frame {
		width: calc(100% - 200px);
	}
}

@media (width <= 767px) {
	#access {
		padding-bottom: 0;
	}
	
	#access .frame {
		width: 100%;
	}
	
	.map {
		height: auto;
		aspect-ratio: 2 / 1;
		margin-bottom: 0px;
	}
}
*/