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

/*
* MV
******************************************************/
.index-mainvisual {
	height: 100vh;
	position: relative;
}
.swiper-wrapper {
	height: 100vh!important
}
.swiper {
	width: 100%;
	height: 100vh
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh !important;
	overflow: hidden;
	margin-top: 0!important
}
.swiper-slide picture,
.swiper-slide img {
	display: block;
	width: inherit;
	object-fit: cover;
	margin-top: -10px
}  
.index-main-visual-header {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 8;
}
.index-main-visual-header img {
	max-width: 300px;
	width: auto;
	height: auto !important;
}
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	0% {
		opacity: 0;
		transform: translateY(60px);
	  }
	  50% {
		opacity: .4;
	  }
	  70% {
		opacity: .7;
	  }
	  100% {
		opacity: 1;
		transform: translateY(0);
	  }
}
@media screen and (max-width:1000px) {
	.index-mainvisual {
	  height: calc(100vh - 40px)
	}
	.swiper-wrapper {
	  height: calc(100vh - 40px)
	}
	.swiper {
	  height: calc(100vh - 40px)
	}
	.swiper-slide {
	  height: 100vh!important
	}
	.swiper-slide picture {
	  height: calc(100vh - 40px);
	}
	.swiper-slide img {
	  height: calc(100vh - 40px);
	  margin-top: -40px
	}
	.index-main-visual-header img {
		max-width: 230px;
	}
}
/*
* CONTENT
******************************************************/
.index-page-content {
	display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
	width: 100%;
}
.index-page-content-inner {
	width: 50%;
	padding: 120px 0;
}
@media screen and (max-width:960px) {
	.index-page-content {
		display: block;
	}
	.index-page-content-inner {
		width: 100%;
		padding: 80px 0;
	}
}
/*
* HEADING
******************************************************/
.index-heading {
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .2em;
	position: relative;
	margin: 0 0 80px 0;
}
.index-heading::after {
	content: '';
    width: 40px;
    height: 2px;
    display: inline-block;
    background-color: var(--color-primary);
    position: absolute;
    bottom: -5px;
    left: calc(50% - 20px);
}
/*
* NEWS
******************************************************/
.news {
	background-color: var(--bg--color-secondary);
}
.index-news-list {
    margin: 0 auto;
    max-width: 480px;
	border-bottom: 1px solid var(--bg--color-quaternary);
}
.index-news-list dl {
	width: 100%;
	display: grid;
	justify-content: start;
    align-items: center;
    grid-template-columns: 90px 1fr;
	border-top: 1px solid var(--bg--color-quaternary);
}
.index-news-list dt {
	font-size: 1.3rem;
	padding: 20px 0;
}
.index-news-list dd {
	font-size: 1.3rem;
	padding: 20px 20px 20px 0;
	position: relative;
}
.index-news-list dd a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.arrow_r {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	color: var(--bg--color-quaternary);
	text-decoration: none;
}
.arrow_r:after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px  var(--bg--color-quaternary);
	border-right: solid 1px  var(--bg--color-quaternary);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -4px;
	transform: rotate(45deg);
}
@media screen and (max-width:960px) {
	.news {
		padding: 80px 20px;
		width: auto;
	}
	.index-news-list {
		max-width: 320px;
	}
}
/*
* BLOG
******************************************************/
.blog {
	background-color: var(--bg--color-primary);
}
.ge-panel-list {
    margin: 0 auto 60px;
    max-width: 480px;
}
.ge-panel-list li {
	background: var(--color-complementary);
	padding: 3px;
	margin: 0 0 35px 0;
}
.ge-panel-list-item {
	display: grid;
	justify-content: start;
    align-items: center;
    grid-template-columns: 150px 1fr;
}
.ge-panel-list-thumb {
    position: relative;
    box-sizing: border-box;
    width: 130px;
    height: 130px;
    overflow: hidden
}
.ge-panel-list-thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
	filter: grayscale(100%);
	transition: all 0.5s ease-in;
}
@supports (object-fit: cover) {
    .ge-panel-list-thumb img {
        position:static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0
    }
}
.ge-panel-list-item:hover .ge-panel-list-thumb img {
    transition-duration: 0.5s;
	filter: grayscale(0%);
}
.ge-panel-list-thumb::after {
    content: "";
    height: 130px;
    width: 130px;
    z-index: 0;
    box-sizing: border-box;
    top: 0;
    left: 0;
    border-color: inherit
}
.ge-panel-list-desc {
	margin: 16px 30px;
}
.ge-panel-list-desc h3,
.ge-panel-list-desc time {
	text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
	line-height: 1.4;
}
.ge-panel-list-desc time {
	display: block;
	margin: 0 0 1em 0;
	padding:0 0 1em 0;
	position: relative;
}
.ge-panel-list-desc time::after {
	position: absolute;
    display: block;
    content: "";
    background-color: var(--bg--color-quaternary);
    height: 1px;
    width: 9px;
    bottom: 0;
}
@media screen and (min-width:960px) and (max-width:1180px) {
	.ge-panel-list {
		max-width: 420px;
	}
	.ge-panel-list-item {
		grid-template-columns: 120px 1fr;
	}
	.ge-panel-list-thumb {
		width: 120px;
		height: 120px;
	}
}
@media screen and (max-width:960px) {
	.ge-panel-list {
		max-width: calc(100vw - 40px);
		padding: 0 20px;
	}
	.ge-panel-list-item {
		grid-template-columns: 120px 1fr;
		place-items: flex-start;
	}
	.ge-panel-list-thumb {
		width: 120px;
		height: 120px;
	}
	.ge-panel-list-desc h3, .ge-panel-list-desc time {
		font-size: 1.2rem;
	}
}
/*
* PICKUP
******************************************************/
.pickup {
	width: 100%;
	background: var(--color-complementary);
	padding:  80px 0;

}
.pickup-content {
	max-width: 1080px;
	margin: auto;
}
@media screen and (max-width:960px) {
	.pickup {
		width: auto;
	}
	.pickup-content {
		max-width: inherit;
	}
}
