@charset "utf-8";

/* ============================================================================================== */
/* key visual                                                                                     */
/* ============================================================================================== */

#kv {
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.section__kv .loader__outer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 1s ease;
	opacity: 1;
}

.onload .section__kv .loader__outer {
	opacity: 0;
}

.section__kv .loader {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 2px solid transparent;
	border-top-color: #ccc;
	border-radius: 50%;
	animation: spin 0.75s infinite linear;
	animation-duration: 5s;
}

.section__kv .loader::after {
	content: '';
	position: absolute;
	left: -2px;
	top: -2px;
	display: block;
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
	animation: spin 0.75s infinite ease-in-out alternate;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.section__kv .kv {
	transition: all 2s ease;
	opacity: 0;
}

.onload .section__kv .kv {
	opacity: 1;
}

.kv__img-wrap {
	overflow: hidden;
	position: relative;
	background-color: #FFF;
}

.section__kv #image-reel {
	position: relative;
	width: 100%;
	height: 60vh;
	z-index: 10;
	margin: 0;
	overflow: hidden;
}

.section__kv .image-reel__item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1) rotate(0deg);
	transition: opacity 2s linear, transform 12.5s linear;
	/*transformはFadeTime + IntarvalTime + α秒*/
}

.section__kv img {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width:100%;
	height: 100%;
	object-fit: cover;
}

.section__kv .image-reel__item.show_ {
	opacity: 1;
}

.section__kv .image-reel__item.zoom_ {
	transform: scale(1.1) rotate(0.1deg);
}

/*.night img {
	object-position: 50px 0;
}*/

.day img {
	object-position: -40px 0;
}

.kv__txt-inner {
	width: auto;
	letter-spacing: 0.08rem;
	margin-top: -65px;
	position: relative;
	z-index: 20;
}

.kv-inner__ttl {
	margin-bottom: 8px;
}

/* Lede message */

.lede-message {
	line-height: 1.2;
}

.lede-message:first-child {
	font-size: 2rem;
	padding-bottom: 0;
}

.lede-message:last-child {
	font-size: 7.5rem;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 1;
	letter-spacing: 0.05em;
}

/* ----- */

.kv-inner__txt {
	font-weight: 600;
	font-size: 1.8rem;
	margin-bottom: 12px;
	padding-left: 10px;
}

.kv__txt-wrap p {
	margin: 0;
	font-size: 1.3rem;
	color: #000;
	line-height: 1.6;
	padding-left: 10px;
}

/* ============================================================================================== */
/* Body section                                                                                   */
/* ============================================================================================== */

#news,
#business,
#about,
#careers {
	transition: all 2s ease;
	opacity: 0;
}

.onload #news,
.onload #business,
.onload #about,
.onload #careers {
	opacity: 1;
}

.main-contents {
	overflow: hidden;
	padding-top: 0;
}

.layout-2col-inner {
	max-width: 1100px;
}

.section__ttl {
	margin-bottom: 30px;
}

.section__ttl .ja__txt {
	font-size: 1.3rem;
	display: block;
	padding-top: 5px;
}

.section__txt-wrap {
	position: relative;
	padding: 0;
	margin: -21px auto 0;
	z-index: 1;
}

/* txt-wrap 枠 */

.section__txt-wrap:before,
.section__txt-wrap:after {
	content: "";
	position: absolute;
	top: 0;
	width: 20px;
	height: 20px;
	background-color: transparent;
	border-top: 1px solid rgba(51,51,51,1);
	display: none;
}

.section__txt-wrap:before {
	left: 0;
	border-left: 1px solid rgba(51,51,51,1);
}

.section__txt-wrap:after {
	right: 0;
	border-right: 1px solid rgba(51,51,51,1);
}

/* ----- */

.section__txt-inner {
	text-align: center;
}

.section__txt {
	margin-bottom: 10px;
	text-align: justify;
}

.section__img-wrap {
	width: 100%;
}

.section__img-wrap figure {
	overflow: hidden;
}

/* Button */

.business-wrap .section__btn .btn {
	color: #FFF;
	/*padding: 4px 10px 6px;*/
	min-height: 25px;
	min-width: 60px;
	padding: 3px 5px 5px;
	font-size: 0.9em;
}

/* ============================================================================================== */
/* News                                                                                           */
/* ============================================================================================== */

.news-wrap {
	position: relative;
	background-color: rgba(20,60,120,0.05);
	padding: 110px 0 180px;
	margin: 200px auto 0;
	z-index: 1;
}

.news-inner {
	position: relative;
	max-width: 1000px;
}

.news-inner:before {
	content: "";
	position: absolute;
	background-image: url(../images/home/img-map_.png);
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 97%;
	right: -140px;
	z-index: 0;
	width: 1000px;
	height: 667px;
	transform: scale(0.8);
}

.article-individual {
	margin-right: 25px;
}

.news-wrap .section__ttl-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.news-wrap .section__ttl {
	margin: 0 20px 0 0;
}

.article__link {
	text-decoration: none;
}

.news-date p {
	margin: 8px 0 20px;
}

.news-date .divider {
	margin-bottom: 20px;
	border-color: rgba(20,60,120,0.1);
}

.news__ttl {
	font-size: 1.3rem;
	margin-bottom: 15px;
	font-weight: 600;
	color: rgba(51,51,51,1);
}

.news__txt {
	color: rgba(51,51,51,0.6);
	transition: .2s ease;
	margin: 0;
}

.article__link:hover {
	text-decoration: none;
}

.article__link:hover .news__txt {
	color: rgba(51,51,51,1);
}

/* ============================================================================================== */
/* Our Business                                                                                   */
/* ============================================================================================== */

.business-wrap {
	margin-top: -85px;
}

.column1 .section-contents--inner {
	text-align: center;
}

.business-wrap .section-contents--inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.slide-wrap {
	max-width: 800px;
	margin: 0 auto;
}

.slide__link {
	display: inline-block;
	width: 100%;
	position: relative;
}

.slide__link .slide__img-wrap:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(3,9,18,0.6);
	z-index: 5;
	width: 100%;
	height: 100%;
	transition: .3s ease;
	opacity: 1;
	pointer-events: none;
}

.slide__link:hover .slide__img-wrap:before {
	opacity: 0;
}

.slide__txt-wrap {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	width: calc(100% - 130px);
	margin: 0 auto;
	padding-top: 15px;
}

.business-wrap .slide__ttl {
	display: none;
	font-size: 3.5rem;
	line-height: 1;
	margin: 0 auto 10px;
	border: 4px solid #FFF;
	border-radius: 50%;
	color: #fff;
	padding: 22px;
	text-align: center;
}

.business-wrap .section__txt {
	text-align: center;
	color: #fff;
}

.business-wrap .section__txt .ja__txt {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 5px;
	display: block;
}

.business-wrap .section__txt .en.uppercase {
	font-size: 1.3rem;
	display: block;
	line-height: 1.3;
}

.section__img-wrap {
	position: relative;
}

/* ============================================================================================== */
/* Slick                                                                                          */
/* ============================================================================================== */

/* Slick arrows */

.slider__btn-wrap {
	white-space: nowrap;
	line-height: 0;
}

.slick-arrow {
	background-color: #FFF;
	border-radius: 50%;
	background-image: none;
	width: 35px;
	height: 35px;
	position: relative;
	display: inline-block;
	margin: auto;
	background-size: 0;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
	z-index: 9;
	font-size: 0;
	border: 0;
	line-height: 0;
	padding: 0;
}

.slick-arrow:hover {
	box-shadow: none;
	border: none;
}

.slick-prev:before,
.slick-next:before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: transparent;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}

.slick-prev:before {
	border-right: 9px solid #143c78;
	right: auto;
	left: 12px;
}

.slick-next:before {
	border-left: 9px solid #143c78;
	right: 12px;
	left: auto;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0.3;
}

/* Slick - Dots */

.slick-dots {
	left: 0;
	right: 0;
	bottom: -25px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: rgba(0,0,0,0);
	line-height: 0;
}

.slick-dots li {
	display: inline-block;
	line-height: 0;
}

.slick-dots li button {
	margin: 0 5px;
	width: 6px;
	height: 6px;
	font-size: 0;
	line-height: 0;
	padding: 0;
	border: none;
	background-color: #ccc;
}

.slick-dots li.slick-active button {
	background: rgba(20,60,120,1);
}

/* News Slick */

.news-wrap .ttl-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.news-wrap .slick-container,
.news-wrap .slider-wrapper {
	/*max-width: 780px;*/
	width: 100%;
}

.news-wrap .slick-list {
	margin-right: -25px;
}

.news-wrap .slick-track {
	margin-left: 0;
}

.news-wrap .slick-slide {
	width: auto;
}

.news-wrap .slick-arrow {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.news-wrap .slick-prev {
	margin: auto 8px 0 0;
}

/* Our Business Slick */

.business-wrap .slick-container,
.business-wrap .slider-wrapper {
	max-width: 800px;
}

.business-wrap .slick-prev,
.business-wrap .slick-next {
	top: 50%;
	position: absolute;
}

.business-wrap .slick-prev {
	left: 10px;
	right: auto;
}

.business-wrap .slick-next {
	right: 10px;
	left: auto;
}

/* ============================================================================================== */
/* Media query                                                                                    */
/* ============================================================================================== */

/* ----------------------------------------------------------------------- */
/* SmartPhone */

@media screen and (min-width: 375px) {

	.kv__txt-inner {
		margin-top: -73px;
	}

	.kv-inner__txt {
		font-size: 2.0rem;
	}

	.child-section__lede {
		font-size: 1.5rem;
	}

	.news-wrap {
		margin: 195px auto 0;
	}

	.news-inner:before {
		/*bottom: 112%;*/
		right: -115px;
	}

}

/* ---------------------------------------------------------------------------------------------- */
/* Tablet                                                                                         */

@media screen and (min-width: 541px) {

	.section__ttl .ja__txt {
		padding-top: 8px;
	}

	/* Key visual */

	.section__kv .loader__outer {
		height: 60vh;
	}

	.kv__txt-inner {
		margin-top: -8em;
	}

	.kv-inner__txt {
		font-size: 2.3rem;
	}

	/* Lede message */

	.lede-message:first-child {
		font-size: 3.5rem;
	}

	.lede-message:last-child {
		font-size: 12rem;
	}

	/* News */

	.news-inner:before {
		right: -23%;
	}

	/* Our Business */

	.business-wrap .slide__txt-wrap {
		padding-top: 0;
	}

	.business-wrap .slide__ttl {
		display: inline-block;
	}

	.business-wrap .section__txt {
		margin-bottom: 20px;
	}

	.business-wrap .section__txt .ja__txt {
		font-size: 2.2rem;
	}

	.business-wrap .section__txt .en.uppercase {
		font-size: 1.6rem;
	}

	/* About, Careers */

	#about .section__txt,
	#careers .section__txt {
		text-align: center;
	}

}

@media screen and (min-width: 768px) {

	/* Key visual */

	.section__kv .loader {
		width: 50px;
		height: 50px;
	}

	/*.night img {
		object-position: unset;
	}*/

	/* Body section */

	.main-contents {
		padding-top: 110px;
	}

	.layout-2col--inner {
		align-items: center;
	}

	.section__txt-wrap {
		position: relative;
		padding: 0;
		text-align: center;
		width: 100%;
		margin: -26px auto 0;
		/*max-width: 600px;*/
	}

	.section__txt {
		margin-bottom: 20px;
	}

	.section__ttl {
		margin-bottom: 40px;
	}

	.section__ttl .ja__txt {
		font-size: 1.4rem;
		padding-top: 15px;
	}

	/* News */

	.news-wrap {
		margin-top: 110px;
		padding-bottom: 200px;
	}

	.news-wrap .section__ttl {
		font-size: 3.0rem;
	}

	.article-individual {
		margin-right: 40px;
	}

	.news-date p {
		margin-bottom: 25px;
	}

	.news-date .divider {
		margin-bottom: 25px;
	}

	.news__ttl {
		font-size: 1.5rem;
	}

	.news-inner:before {
		right: -12%;
	}

	/* News Slick */

	.news-wrap .slick-container,
	.news-wrap .slider-wrapper {
		max-width: none;
	}

	.news-wrap .slick-list {
		margin-right: -40px;
	}

	/* Our Business */

	.business-wrap {
		margin-top: -105px;
		z-index: 2;
		position: relative;
	}

	.business-wrap .slide__ttl {
		margin-bottom: 15px;
	}

	.business-wrap .section__txt .en.uppercase {
		font-size: 1.8rem;
	}

	.slide-wrap .section__txt .ja__txt {
		font-size: 3rem;
	}

	.business-wrap .slick-prev {
		left: 15px;
	}

	.business-wrap .slick-next {
		right: 15px;
	}

}

/* ----------------------------------------------------------------------- */
/* over ipad Pro */

@media screen and (min-width: 834px) {

	.business-wrap .section-contents--inner {
		width: calc(100% - 100px);
		max-width: 800px;
	}

}

/* ----------------------------------------------------------------------- */
/* over ipad landscape */

@media screen and (min-width: 1024px) {

	/* key visual */

	#kv {
		padding-top: 0;
		width: calc(100% - 100px);
		max-width: 1400px;
	}

	.kv__txt-wrap {
		margin: auto auto 40px;
	}

	.kv__txt-inner {
		margin-top: -156px;
	}

	.kv-inner__ttl {
		margin-bottom: 10px;
	}

	.kv-inner__txt {
		font-size: 3rem;
		margin-bottom: 15px;
	}

	.kv__txt-wrap p {
		font-size: 1.6rem;
	}

	.day img {
		object-position: unset;
	}

	/* main contents */

	.main-contents {
		padding-top: 140px;
	}

	/* Lede message */

	.lede-message:first-child {
		font-size: 4.5rem;
	}

	.lede-message:last-child {
		font-size: 15rem;
	}

	/* Body section */

	.section__txt-wrap {
		padding: 45px 0 0;
	}

	.section__ttl .ja__txt {
		font-size: 1.5rem;
	}

	.section__txt {
		margin-bottom: 35px;
	}

	/* News */

	.news-wrap {
		padding: 80px 0 100px;
		margin: 125px auto 160px;
	}

	.news-inner {
		display: flex;
		/*align-items: flex-start;*/
		justify-content: space-between;
	}

	.news-inner:before {
		transform: scale(1);
		top: -681px;
		right: 0;
	}

	.news-wrap .section__ttl-wrap {
		width: auto;
		justify-content: flex-start;
		position: relative;
		z-index: 7;
		background-color: #f3f5f8;
	}

	.news-wrap .ttl-block {
		justify-content: flex-start;
		width: auto;
	}

	.news__ttl {
		font-size: 1.6rem;
	}

	.article-individual {
		margin-right: 50px;
	}

	/* News Slick */

	.news-wrap .slick-container,
	.news-wrap .slider-wrapper {
		max-width: 700px;
	}

	.news-wrap .slick-list {
		margin-right: -60px;
	}

	/* Business */

	.business-wrap {
		margin-top: 0;
	}

	.business-wrap .slide__link {
		pointer-events: auto;
	}

	.business-wrap .slide__ttl {
		font-size: 4.9rem;
	}

	/* style reset */
	.business-wrap .section__btn .btn {
		min-height: 35px;
		min-width: 80px;
		padding: 8px 10px 10px;
		font-size: 1em;
	}
	/* ----- */

	.business-wrap .slide__link:hover .section__btn .btn {
		color: #FFF;
		/*background-color: #FFF;*/
	}

	.business-wrap .slide__link:hover .section__btn .btn:before {
		border: 1px solid #FFF;
		opacity: 1;
	}

	/* Slick Business */

	.business-wrap .slick-prev {
		left: -50px;
	}

	.business-wrap .slick-next {
		right: -50px;
	}

	/* About, Careers */

	.txt--right .section__img-wrap {
		margin-right: 45px;
	}

	.txt--left .section__img-wrap {
		margin-left: 45px;
	}

	.section__img-wrap {
		width: calc(100% - 285px);
	}

	.txt--left .layout-2col-inner {
		flex-direction: row;
	}

	.txt--right .layout-2col-inner {
		flex-direction: row-reverse;
		align-items: flex-start;
	}

	.section__txt-wrap {
		padding: 40px 0 0;
		margin: 0 auto;
		text-align: center;
		width: 50%;
		max-width: 285px;
	}

	/* txt-wrap 枠 */

	.section__txt-wrap:before,
	.section__txt-wrap:after {
		display: block;
	}

	/* ----- */

	#about .section__txt,
	#careers .section__txt {
		text-align: justify;
	}

}

/* ----------------------------------------------------------------------- */
/* Desktop */

@media screen and (min-width: 1281px) {

	.txt--right .section__img-wrap {
		margin-right: 60px;
	}

	.txt--left .section__img-wrap {
		margin-left: 60px;
	}

	.news-inner {
		max-width: 1000px;
	}

	.news-inner:before {
		transform: scale(1);
		right: -10%;
	}

	.layout-2col {
		overflow: hidden;
	}

	.txt--right .layout-2col-inner {
		float: left;
	}

	.txt--left .layout-2col-inner {
		float: right;
	}

	/* Slick */

	.news-wrap .slick-container,
	.news-wrap .slider-wrapper {
		max-width: 780px;
	}

	.article-individual {
		margin-right: 60px;
	}

}

@media screen and (min-width: 1440px) {

	.txt--right .section__img-wrap {
		margin-right: 70px;
	}

	.txt--left .section__img-wrap {
		margin-left: 70px;
	}

}





