/*----------------------------------------*/
/* .front-page */
/*----------------------------------------*/

.front-page {
	padding-top: 80px;
}
@media (max-width: 991px) {
	
}

/*----------------------------------------*/
/* .fv */
/*----------------------------------------*/

.front-page .fv {
	position: relative;
	padding: 0 40px 2.08vw 40px;
}
.front-page .fv::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 19.79vw;
	background-color: var(--red);
	z-index: 0;
}
@media (max-width: 991px) {
	.front-page .fv {
		padding: 0 0 2.08vw 0;
	}
}
@media (max-width: 767px) {
	.front-page .fv::after {
		height: 45vw;
	}
}

/* .mv-img */
.front-page .fv .mv-img {
	position: relative;
	z-index: 1;
	width: 95%;
}
.front-page .fv .mv-img .slick-list::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	background-color: #000000;
	aspect-ratio: 1760 / 960;
	border-radius: 1.04vw 30vw 30vw 1.04vw;
	width: 100%;
	height: auto;
	overflow: hidden;
	z-index: 0;
	transition: 0.3s;
}
.front-page .fv .mv-img .slick-track {
	z-index: 1;
}
.front-page .fv .mv-img .img-wrap {
	aspect-ratio: 1760 / 960;
	border-radius: 1.04vw 30vw 30vw 1.04vw;
	height: auto;
	overflow: hidden;
}
.front-page .fv .mv-img .img-wrap img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.front-page .fv .mv-img .slick-list::after,
	.front-page .fv .mv-img .img-wrap {
		border-radius: 0 30vw 30vw 0;
	}
}
@media (max-width: 767px) {
	.front-page .fv .mv-img {
		width: 90%;
	}
	.front-page .fv .mv-img .slick-list::after,
	.front-page .fv .mv-img .img-wrap {
		aspect-ratio: 1 / 1;
		border-radius: 0 50vw 50vw 0;
	}
	.front-page .fv .mv-img .img-left img {
		object-position:0 50%;
	}
}

/* 動き */
.front-page .fv .mv-img {
	opacity: 0;
	transition: opacity .3s linear;
}
.front-page .fv .mv-img.slick-initialized {
	opacity: 1;
}
.front-page .fv .mv-img .slick-slide.slick-scale img,
.front-page .fv .mv-img .slick-slide.slick-current img {
	animation-timing-function:linear;
	animation-duration: 10s;
	animation-name: scaleAnime;
	animation-fill-mode: forwards;
}
@keyframes scaleAnime{
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.3);
	}
}

/* slock ハック */
.front-page .fv .mv-img ul.slick-dots {
	bottom: -5px;
	right: 0;
	width: fit-content;
	font-size: 6;
	line-height: 1;
	z-index: 1;
}
.front-page .fv .mv-img ul.slick-dots li {
	position: relative;
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.front-page .fv .mv-img ul.slick-dots li button:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ffffff;
	opacity: 0.4;
	transition: 0.5s;
}
.front-page .fv .mv-img ul.slick-dots li.slick-active {
	width: 64px;
}
.front-page .fv .mv-img ul.slick-dots li.slick-active button:before {
	width: 64px;
	border-radius: 3px;
	opacity: 1;
}
@media (max-width: 767px) {
	.front-page .page-body {
		position: relative;
		z-index: 0;
	}
	.front-page .fv {
		z-index: 1;
	}
	.front-page .fv .mv-img ul.slick-dots {
		bottom: -90px;
		right: auto;
		left: 11px;
	}
}

/* .mv-txt */
.front-page .fv .mv-txt {
	position: absolute;
	right: 0;
	bottom: 110px;
	width: 100%;
	z-index: 2;
}
.front-page .fv .mv-txt .container {
	max-width: 100%;
}
.front-page .fv .mv-txt .en {
	text-align: right;
	color: #ffffff;
	font-size: 6.3vw;
	font-style: italic;
	font-weight: 600;
	line-height: 1.1;
}
@media (max-width: 991px) {
	.front-page .fv .mv-txt {
		bottom: 80px;
	}
	.front-page .fv .mv-txt .en {
		font-size: 6vw;
	}
}
@media (max-width: 767px) {
	.front-page .fv .mv-txt {
		bottom: -20px;
	}
	.front-page .fv .mv-txt .en {
		text-align: left;
		font-size: 15vw;
	}
	.front-page .fv .mv-txt .container {
		padding: 0 15px;
	}
}

/*----------------------------------------*/
/* 基本 */
/*----------------------------------------*/

.front-page .page-body {
	font-size: 18px;
	line-height: 1.8;
	background-color: #FCFCFC;
}
@media (max-width: 767px) {
	.front-page .page-body {
		font-size: 16px;
	}
}

/*----------------------------------------*/
/* .section */
/*----------------------------------------*/

.front-page .section-title {
	margin-bottom: 50px;
}
.front-page .section-title .en {
	font-size: 15px;
	line-height: 1.4;
}
.front-page .section-title .en.red {
	color: var(--red);
}
.front-page .section-title .title {
	font-size: 48px;
	line-height: 1.4;
	margin: 0;
}
@media (min-width: 768px) {
	.front-page .section .row {
		margin: 0 -23px;
	}
	.front-page .section .row > * {
		padding: 0 23px;
	}
	.front-page .section-title dl dd {
		display: flex;
		align-items: center;
	}
	.front-page .section-title dl dd p {
		flex: 1;
		margin: 0;
		padding-left: 90px;
	}
}
@media (max-width: 767px) {
	.front-page .section-title {
		margin-bottom: 40px;
	}
	.front-page .section-title .en {
		font-size: 12px;
	}
	.front-page .section-title .title {
		font-size: 28px;
	}
	.front-page .section-title dl dd p {
		margin: 10px 0 0 0;
	}
}
 
/*----------------------------------------*/
/* .intro */
/*----------------------------------------*/

.front-page .intro {
	position: relative;
	background-color: var(--red);
	color: #ffffff;
	font-size: 24px;
	padding: 60px 0 100px 0;
	z-index: 1;
}
.front-page .intro .container-wide {
	max-width: 1760px;
}
.front-page .intro h2.min {
	font-size: 62px;
	line-height: 1.4;
	margin: 0 0 30px 0;
}
.front-page .intro h2.min span {
	display: inline-block;
}
@media (min-width: 768px) {
	.front-page .intro .row-flex {
		display: flex;
	}
	.front-page .intro .row-flex .col-txt {
		order: 1;
		width: 50%;
		padding-left: 40px;
	}
	.front-page .intro .row-flex .col-img {
		position: relative;
		width: 50%;
	}
	.front-page .intro .row-flex .col-img .img-wrap {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.front-page .intro .row-flex .col-txt {
		flex: 1;
		padding-left: 5%;
	}
	.front-page .intro .row-flex .col-img {
		width: 620px;
	}
	.front-page .intro .row-flex .col-img .img-wrap {
		top: -20px;
	}
}
@media (max-width: 1199px) {
	.front-page .intro {
		font-size: 18px;
	}
	.front-page .intro h2.min {
		font-size: 48px;
	}
}
@media (max-width: 767px) {
	.front-page .intro {
		font-size: 16px;
		padding: 100px 0 80px 0;
	}
	.front-page .intro .container-wide {
		padding: 0 30px;
	}
	.front-page .intro h2.min {
		font-size: 42px;
	}
	.front-page .intro .row-flex .col-txt {
		margin-bottom: 40px;
	}
}

/*----------------------------------------*/
/* .company */
/*----------------------------------------*/

.front-page .company {
	position: relative;
}
.front-page .company .bg-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1000px;
	overflow: hidden;
	z-index: 0;
}
.front-page .company .bg-wrap img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	.front-page .company .bg-wrap {
		height: 800px;
	}
}
@media (max-width: 399px) {
	.front-page .company .bg-wrap {
		height: 1165px;
	}
}

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

.front-page .about {
	position: relative;
	color: #ffffff;
	padding: 200px 0 100px 0;
	z-index: 1;
}
.front-page .about .row {
	letter-spacing: 0.02em;
}
@media (max-width: 767px) {
	.front-page .about {
		padding: 80px 0 30px 0;
	}
}

/*----------------------------------------*/
/* .message */
/*----------------------------------------*/

.front-page .message {
	position: relative;
	color: #ffffff;
	z-index: 1;
	padding: 0 40px;
}
.front-page .message .red-wrap {
	position: relative;
	background-color: var(--red);
	background-image: url("../img/top/message.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	border-radius: 20px;
	max-width: 1360px;
	padding: 80px 0;
	margin: 0 auto;
}
.front-page .message .red-wrap::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.front-page .message .section-title .title {
	font-size: 24px;
}
.front-page .message h3.min {
	font-size: 40px;
	letter-spacing: 0.05em;
	margin: 0 0 30px 0;
}
.front-page .message .row {
	letter-spacing: 0.02em;
}
.front-page .message .row > * > *:last-child {
	margin-bottom: 0;
}
.front-page .message .col-ceo {
	position: relative;
}
@media (min-width: 768px) {
	.front-page .message .col-ceo .ceo {
		position: absolute;
		left: 23px;
		bottom: 0;
		font-size: 22px;
	}
}
@media (max-width: 767px) {
	.front-page .message {
		font-size: 14px;
		padding: 0 15px;
	}
	.front-page .message .red-wrap {
		background-image: url("../img/top/message-sp.png");
		background-position: center top;
		padding: 40px 0;
	}
	.front-page .message .red-wrap .container-wide {
		padding: 0 25px;
	}
	.front-page .message .section-title {
		margin-bottom: 30px;
	}
	.front-page .message .section-title .title {
		font-size: 20px;
	}
	.front-page .message h3.min {
		font-size: 18px;
		letter-spacing: 0;
		margin: 0 0 30px 0;
	}
	.front-page .message .col-ceo .ceo {
		font-size: 120%;
	}
}

/*----------------------------------------*/
/* .profile */
/*----------------------------------------*/

.front-page .profile {
	position: relative;
	z-index: 1;
	background-color: #FCFCFC;
	padding: 100px 0 160px;
}
@media (max-width: 767px) {
	.front-page .profile {
		padding: 30px 0 100px;
	}
}

/*----------------------------------------*/
/* .analysis-items */
/*----------------------------------------*/

.front-page .analysis-items .list-wrap {
	position: relative;
}
.front-page .analysis-items .list-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.front-page .analysis-items .list-wrap ul li {
	display: flex;
	width: 50%;
}
.front-page .analysis-items .list-wrap ul li a {
	display: flex;
	width: 100%;
}
.front-page .analysis-items .list-wrap dl {
	width: 100%;
	font-size: 14px;
	border-top: 1px solid var(--gray);
	border-left: 1px solid var(--gray);
	padding: 30px 0 30px 30px;
	margin-bottom: 30px;
	transition: 0.3s;
}
.front-page .analysis-items .list-wrap dl dt {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 10px;
}
.front-page .analysis-items .list-wrap .arrow-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../img/top/analysis-items.jpg");
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.front-page .analysis-items .list-wrap .col-btn .arrow {
	font-size: 32px;
	font-weight: 500;
	color: #ffffff;
}
.front-page .analysis-items .list-wrap .col-btn .arrow::after {
	color: #092953;
}
@media (min-width: 768px) {
	.front-page .analysis-items .list-wrap ul li {
		padding-right: 30px;
	}
	.front-page .analysis-items .list-wrap ul li a:hover dl {
		border-top: 1px solid var(--red);
		border-left: 1px solid var(--red);
		color: var(--red);
	}
	.front-page .analysis-items .list-wrap .flex-wrap {
		display: flex;
	}
	.front-page .analysis-items .list-wrap .flex-wrap .col-list {
		width: 64%;
	}
	.front-page .analysis-items .list-wrap .flex-wrap .col-btn {
		position: relative;
		width: 36%;
	}
	.front-page .analysis-items .list-wrap .arrow-wrap {
		position: absolute;
		top: 0;
		left: 0;
		width: calc(50vw - 39%);
		height: 500px;
	}
	.front-page .analysis-items .list-wrap .arrow-wrap:hover .arrow::after {
		color: #ffffff;
	}
}
@media (max-width: 767px) {
	.front-page .analysis-items .list-wrap ul {
		margin: 0 -7px;
	}
	.front-page .analysis-items .list-wrap ul li {
		padding: 0 7px;
	}
	.front-page .analysis-items .list-wrap dl {
		display: flex;
		align-items: center;
		min-height: 75px;
		padding: 10px 0 10px 20px;
		margin-bottom: 15px;
	}
	.front-page .analysis-items .list-wrap dl dt {
		font-size: 15px;
		margin-bottom: 0;
	}
	.front-page .analysis-items .list-wrap dl dd {
		display: none;
	}
	.front-page .analysis-items .list-wrap .arrow-wrap {
		height: 200px;
		margin-top: 25px;
	}
	.front-page .analysis-items .list-wrap .col-btn .arrow {
		font-size: 24px;
	}
	.front-page .analysis-items .list-wrap .col-btn .arrow::after {
		width: 30px;
		height: 30px;
	}
}

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

.front-page .news {
	background-color: var(--red);
	color: #ffffff;
	padding: 80px 0;
	margin-top: 170px;
}
.front-page .section.news .article-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: 500;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.front-page .section.news .article-list > ul > li {
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding: 30px 0 30px 15px;
}
.front-page .section.news .article-list .date {
	font-size: 16px;
	width: 125px;
}
.front-page .section.news .article-list .category a {
	display: flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	font-size: 14px;
	line-height: 1.2;
	background-color: #ffffff;
	color: var(--red);
	border-radius: 3px;
	padding: 3px 15px;
}
.front-page .section.news .article-list .title {
	font-size: 19px;
	margin: 0;
}
.front-page .section.news .article-list .title a {
	color: #ffffff;
}
.front-page .section.news .btn {
	background-color: rgba(46,38,36,0.3);
}
@media (min-width: 768px) {
	.front-page .section.news .container {
		position: relative;
	}
	.front-page .section.news .article-list .title {
		flex: 1;
		padding-left: 30px;
	}
	.front-page .section.news .btn {
		position: absolute;
		right: 40px;
		top: 20px;
		width: 240px;
	}
	.front-page .section.news .btn:hover {
		background-color: #ffffff;
		border: 1px solid var(--red);
	}
}
@media (max-width: 767px) {
	.front-page .news {
		padding: 80px 0;
		margin-top: 80px;
	}
	.front-page .section.news .article-list > ul > li {
		flex-wrap: wrap;
		padding: 20px 0 20px 10px;
	}
	.front-page .section.news .article-list .date {
		width: 110px;
	}
	.front-page .section.news .article-list .category a {
		min-height: 27px;
		font-size: 13px;
	}
	.front-page .section.news .article-list .title {
		font-size: 16px;
		width: 100%;
		margin-top: 5px;
	}
	.front-page .section.news .btn {
		margin-top: 25px;
	}
}

/*----------------------------------------*/
/* .recruit */
/*----------------------------------------*/

.front-page .recruit {
	padding: 150px 0 0 0;
}
.front-page .recruit .section-title {
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.front-page .recruit {
		padding: 80px 0 0 0;
	}
}

/*----------------------------------------*/
/* .access */
/*----------------------------------------*/

.front-page .access {
	padding: 150px 0;
}
.front-page .access .inner {
	position: relative;
}
.front-page .access .txt-wrap dl {
	line-height: 1.6;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--gray);
}
.front-page .access .txt-wrap dl:nth-child(3) {
	padding-bottom: 0;
	border-bottom: none;
}
.front-page .access .txt-wrap dl dt {
	font-weight: 500;
	background-image: url("../img/top/icon-search.svg");
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	margin-bottom: 15px;
}
.front-page .access .txt-wrap dl:nth-child(2) dt {
	background-image: url("../img/top/icon-car.svg");
}
.front-page .access .txt-wrap dl:nth-child(3) dt {
	background-image: url("../img/top/icon-train.svg");
}
.front-page .access .txt-wrap dl dd {
	font-size: 16px;
}
.front-page .access .txt-wrap .btn + .btn {
	margin-top: 15px;
}
.front-page .access .map-wrap {
	
}
.front-page .google-map iframe {
	width: 100%;
	height: 100%;
}
@media (min-width: 768px) {
	.front-page .access .txt-wrap {
		max-width: 350px;
	}
	.front-page .access .map-wrap {
		position: absolute;
		top: 0;
		left: 390px;
		width: calc(100vw - 430px);
		border-radius: 20px 0 0 20px;
		overflow: hidden;
	}
	.front-page .google-map {
		width: 100%;
		height: 700px;
	}
}
@media (min-width: 1200px) {
	.front-page .access .map-wrap {
		left: calc(50% - 120px);
		width: calc(50vw + 120px);
	}
}
@media (max-width: 767px) {
	.front-page .access {
		padding: 80px 0 100px 0;
	}
	.front-page .access .txt-wrap dl dt {
		background-size: 20px;
		padding-left: 25px;
	}
	.front-page .google-map {
		height: 345px;
		margin: 30px -15px 0 -15px;
	}
}

