@charset "utf-8";

/* ==========================================
カバー
========================================== */

.cover {
	margin: 2rem 0 0;
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.cover::before {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background: linear-gradient(to bottom, rgba(38, 38, 38, 0), rgba(38, 38, 38, .5));
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 2;
}

.cover-area {
	width: 100%;
	margin: 0 auto;
}

.cover-title-block {
	display: inline-block;
    position: absolute;
    bottom: 9.23%;
    left: 7.81%;
    z-index: 3;
}

.cover-title {
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2em;
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 2rem;
}

.cover-sub-title-box {
	margin: 1.8rem 0 0;
	display: flex;
	align-items: center;
}

.cover-sub-title {
    font-size: 2.5rem;
    font-weight: 400;
	font-family: var(--font-family02);
	color: var(--white);
    letter-spacing: 0;
	line-height: 1.2;
}

/* ==========================================
top01
========================================== */

.top01 {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 15rem 1.5rem 15rem;
}

.top01-container {
    max-width: 132.4rem;
    width: 100%;
    margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.top01-title-area {
	width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.top01-news-area {
    margin: 4rem 0 0;
    width: 100%;
}

/* ==========================================
top02
========================================== */

.top02 {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 0 0;
    text-align: center;
}

.top02-container {
    margin: 4rem 0 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.top02-link {
    width: 100%;
    display: block;
	position: relative;
	transition: all .3s;
}

.top02-link:nth-of-type(odd)::before {
    content: "";
    display: block;
    width: 0.1rem;
    height: 23rem;
    background: var(--tertiary);
    position: absolute;
    bottom: 8rem;
    right: 0;
    z-index: 2;
}

.top02-link-img-box {
	width: 100%;
	aspect-ratio: 960 / 500;
	transition: all .3s;
}

.top02-link-img-box img {
	transition: all .3s;
}

.top02-link:hover .top02-link-img-box img {
	opacity: .5;
}

.top02-link-img-box::after {
	content: "";
	display: block;
	width: 8rem;
	height: 8rem;
	background-image: url(../../../../uploads/btn_arrow03.svg) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: 100% !important;
	background-repeat: repeat !important;
	margin: -4rem auto 0;
	transition: all .3s;
	position: relative;
	z-index: 1;
}

.top02-link:hover .top02-link-img-box::after {
	background-image: url(../../../../uploads/btn_arrow04.svg) !important;
	background-attachment: scroll !important;
	background-position: center top !important;
	background-size: 100% !important;
	background-repeat: repeat !important;
}

.top02-link-text-container {
	padding: 4rem 1.5rem 14.5rem;
	width: 100%;
	text-align: center;
}

.top02-link-text-area {
	display: inline-block;
}

.top02-link-text-box {
	margin: 3.5rem 0 0;
}

/* ==========================================
top03
========================================== */

.top03 {
	max-width: 192rem;
	width: 100%;
	margin: 1rem auto 0;
}

/* ==========================================
トップループ
========================================== */

.top-loop-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: auto;
}

.top-loop-wrapper:nth-child(n+2) {
    margin: 1rem 0 0;
}

.top-loop-img-area {
    /* margin: 0 0 0 -.2rem; */
    display: flex;
    animation: loop-slide 50s infinite linear 1s both;
}

.top-loop-img-area-reverse {
    display: flex;
    animation: loop-slide-reverce 50s infinite linear 1s both;
}

.top-loop-img-box{
	display: flex;
    width: 56rem;
    padding: 38rem 0 0;
    margin: 0 .5rem;
    position: relative;
	overflow: hidden;
	gap: 1rem;
}

.top-loop-img-item {
    position: relative;
    width: 27.5rem;
    padding: 38rem 0 0;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop-slide-reverce {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ==========================================
top04
========================================== */

.top04 {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 18rem 0 15rem 1.5rem;
}

.top04-frame {
    max-width: 162rem;
    width: 100%;
    margin: 0 0 0 auto;
}

.top04-container {
    max-width: 135.6rem;
    width: 90%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.top04-img-box {
    max-width: 68rem;
    width: 50.2%;
}

.top04-text-container {
    max-width: 58rem;
    width: 47%;
}

.top04-btn-area {
    margin: 6rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 5.5rem;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <= 1920px) {


	/*===========================================================

	===========================================================*/



}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <= 1024px) {


	/*===========================================================
	カバー
	===========================================================*/

	.cover-title {
		font-size: 4rem;
	}

	.cover-sub-title {
		font-size: 2rem;
	}

	/* ==========================================
	top01
	========================================== */

	.top01 {
		padding: 10rem 1.5rem 12rem;
	}

	.top01-title-area .common-title-box01 {
		flex-direction: row;
	}

	.top01-title-area .common-title-box01 .sub-title01 {
		margin: 1.5rem 0 0;
	}

	.top01-title-area .common-title-box01 {
		flex-direction: row;
	}

    .top01-title-area .common-title-box01 .en-title01 {
        flex-direction: row;
    }

    .top01-title-area .common-title-box01 .en-title01::after {
		width: 0.1rem;
		height: 3rem;
		margin: 1.4rem 3rem 0;
    }

	/* ==========================================
	top02
	========================================== */

	.top02-link-text-container {
		padding: 4rem 1.5rem 12rem;
	}

	/* ==========================================
	top04
	========================================== */

	.top04 {
		padding: 12rem 1.5rem 10rem;
	}

	.top04-frame {
		width: 100%;
	}

} 


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <= 768px) {


	/* ==========================================
	top01
	========================================== */

	.top01 {
		padding: 8rem 1.5rem;
	}

	.top01-title-area {
		display: contents;
	}

	.top01-container .common-title-box01 {
		order: 1;
	}

	.top01-title-area .common-title-box01 {
		flex-direction: column;
	}

    .top01-title-area .common-title-box01 .en-title01 {
        flex-direction: column;
    }

    .top01-title-area .common-title-box01 .en-title01::after {
        width: 3rem;
        height: 0.1rem;
        margin: 1rem 0 3rem;
    }

	.top01-title-area .common-title-box01 .sub-title01 {
		margin: 0;
	}

	.top01-news-area {
		order: 2;
	}

	.top01-container .btn01 {
		margin: 3rem auto 0;
		order: 3;
	}

	/* ==========================================
	top02
	========================================== */

	.top02 {
		padding: 8rem 0 0;
	}

	.top02-container {
		grid-template-columns: repeat(1, 1fr);
	}

	.top02-link:nth-of-type(odd)::before {
		display: none;
	}

	.top02-link-text-container {
		padding: 4rem 1.5rem 8rem;
	}

	.top02-link-img-box::after {
		width: 6rem;
		height: 6rem;
		margin: -3rem auto 0;
	}

	/* ==========================================
	トップループ
	========================================== */

    .top-loop-img-box{
        width: 40rem;
		padding: 26.9rem 0 0;
    }

	.top-loop-img-item {
		width: 20rem;
		padding: 26.9rem 0 0;
	}

	/* ==========================================
	top04
	========================================== */

	.top04 {
		padding: 8rem 1.5rem;
	}

	.top04-container {
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.top04-img-box {
		width: 100%;
	}

	.top04-text-container {
		margin: 4rem 0 0;
		width: 100%;
		text-align: center;
	}

	.top04-btn-area {
		align-items: center;
	}

	.news-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}

} 


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <= 576px) {


	/*===========================================================
	カバー
	===========================================================*/

	.cover-title {
		font-size: 2.4rem;
		text-underline-offset: 1rem;
	}

	.cover-sub-title {
		font-size: 1.5rem;
	}

	.news-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem 2rem;
	}

}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (width <= 414px) {


	/* ==========================================
	top02
	========================================== */

	.top02-link-text-box {
		text-align: left;
	}

	/* ==========================================
	top04
	========================================== */

	.news-list {
		grid-template-columns: repeat(1, 1fr);
	}


}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */