@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document main
--------------------------------------------------------- */

#main {
	height: 41vw;
	min-height: 500px;
	overflow: hidden;
	background: #242424;
	position: relative;
}

#main:after {
	content: '';
	width: 100%;
	height: 100%;
	background: #F4F9FD;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	opacity: 1;
	transition: opacity 2.5s;
}

.wf-active #main:after {
	opacity: 0;
}

/*
#main:after {
	content: '';
	width: 100%;
	height: 100%;
	background: #F4F9FD;
	position: absolute;
	top: 0;
	left: 0;
	transition: .6s;
}

.wf-active #main:after {
	width: 0;
}
*/

#main .slick-slide {
	height: 41vw;
	min-height: 500px;
	overflow: hidden;
	position: relative;
	/*
        opacity: 1 !important;
        transition: none !important;
    */
}

#main .slick-slide img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
}


/*
#main .slick-slide .cut {
	width: 100vw;
	height: 42.4597364568082vw;
	overflow: hidden;
}

#main .slick-animation .cut {
	animation: maincut 4000ms none;
	animation: maincut 2s 3s both;
	animation-delay: 2s;
	animation-delay: 2.5s;
	animation-name: maincut;
	animation-duration: 4s;
	animation-iteration-count: backwards;
	clip-path: inset(0% 0% 0% 6.0025%);
	clip-path: inset(0% 0% 0% 100%);
}

@keyframes maincut {
	0% {
		width: 0;
	}
	50% {
		width: 0;
	}
	100% {
		width: 100vw;
	}
}
*/

#main .slick-animation img {
	transform-origin: 50% 50%;
	animation: mainzoom 16000ms none;
}

@keyframes mainzoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.08);
	}
}

#main .slick-dots {
	width: 100%;
	height: 6px;
	text-align: center;
	font-size: 0;
	position: absolute;
	left: 0;
	bottom: 30px;
	z-index: 3;
}

#main .slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

#main .slick-dots button {
	vertical-align: top;
	width: 34px;
	height: 6px;
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 6px;
	border: 0;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#main .slick-dots .slick-active button {
	background: #007FC1;
}

#main .title {
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 0 0 6px rgba(0, 0, 0, 0.2);
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-size: 36px;
	white-space: nowrap;
	line-height: 1;
	color: #fff;
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	top: 70%;
	left: 50%;
	z-index: 3;
}

#main .title .effect {
	transform: translateY(55px);
	opacity: 0;
	transition: transform 1.4s  cubic-bezier(0.165, 0.840, 0.435, 1.000), opacity 2.5s;
}

.wf-active #main .title .effect {
	transform: translateY(0);
	opacity: 1;
}

@media only screen and (max-width: 950px) {
	#main .title {
		font-size: 3.5vw;
	}
}


/* ---------------------------------------------------------
	CSS Document news
--------------------------------------------------------- */

#news {
	padding: 0 56px;
	border-bottom: solid 1px #E8E8E8;
}

#news .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1366px;
	height: auto;
	margin: 0 auto;
	padding: 20px 0;
}

#news dl {
	display: flex;
	text-align: left;
	line-height: 1.5;
	flex-flow: row wrap;
	row-gap: 10px;
}

#news dt {
	flex-basis: 25%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #007FC1;
}

#news dd {
	flex-basis: 74%;
	padding-right: 50px;
}

#news dd a {
	text-decoration: none;
	color: #2A2A2A;
}

#news .more {
	width: 125px;
}

#news .more a {
	display: block;
	width: 125px;
	height: 26px;
	border-radius: 26px;
	border: solid 1px #007FC1;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 24px;
	color: #007FC1;
}

#news .more a:hover {
	background: #007FC1;
	color: #fff;
}

#news .more a:after {
	display: inline-block;
	vertical-align: 0.2em;
	content: '';
	width: 5px;
	height: 5px;
	margin: 0 -6px 0 6px;
	border-top: solid 1px #007FC1;
	border-right: solid 1px #007FC1;
	transform: rotate(45deg);
}

#news .more a:hover:after {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
}

/* ---------------------------------------------------------
	CSS Document message
--------------------------------------------------------- */

#message {
	margin-bottom: 100px;
	text-align: justify;
}

@media only screen and (min-width: 780px) {
	#message {
		display: flex;
	}

	#message figure {
		width: 50%;
		background: #ddd url(/include/top/message_01.png) no-repeat center / auto 100%;
	}

	#message figure img {
		display: none;
	}

	#message .row {
		width: 50%;
	}
}

@media only screen and (max-width: 779px) {
	#message figure img {
		width: 100%;
	}
}

@media only screen and (min-width: 1346px) {
	#message figure {
		background-size: 100% auto;
	}
}

#message .row {
	padding: 56px;
	font-size: 16px;
	line-height: 1.8;
}

#message h3 {
	margin-bottom: 15px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.3;
}

#message p {
	margin-bottom: 40px;
}

/* ---------------------------------------------------------
	CSS Document product
--------------------------------------------------------- */

#product {
	/*margin-bottom: 100px;*/
	padding: 90px 56px 110px;
	/*background: #ddd url(/include/top/product_01.png) no-repeat left / cover;*/
	/*background: #f6faf9 url(/include/top/product_02.png) repeat-x top / auto 100%;*/
	background-color: #E4E4E1;
	background-image: radial-gradient(at top center, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.03) 100%), linear-gradient(to top, rgba(255,255,255,0.1) 0%, rgba(143,152,157,0.60) 100%);
	background-blend-mode: normal, multiply;
}

@media only screen and (max-width: 779px) {
	#product {
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 900px) {
	#product {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: relative;
		z-index: 0;
	}

	#product:before {
		content: '';
		width: calc(37% + 112px);
		height: 100%;
		/*background: url(/include/top/product_01.png) no-repeat top / cover;*/
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	#product .main {
		width: 87%;
		margin-bottom: 50px;
	}

	#product .flex {
		width: 85%;
		padding-top: 0;
	}
}

@media only screen and (max-width: 899px) {
	#product {
		padding: 0 0 110px;
	}
	#product .main {
		padding: 90px 56px 52vw;
		background: url(/include/top/product_01.png) no-repeat top / 100% auto;
	}
	#product .flex {
		margin: -18vw 56px 0;
	}
}

#product h3 {
	margin-bottom: 30px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.3;
}

#product .main p {
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.9;
}

#product .flex {
	display: flex;
	justify-content: space-between;
}

#product .row {
	width: 48%;
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

#product h4 {
	padding-top: 40px;
	line-height: 1;
}

#product h4 .en {
	display: block;
	margin-bottom: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 12px;
	color: #007FC1;
}

#product h4 .ja {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 30px;
}

@media only screen and (max-width: 1100px) {
	#product h4 .ja {
		font-size: 2.5vw;
	}
}

@media only screen and (max-width: 899px) {
	#product h4 .ja {
		font-size: 3.5vw;
	}
}

#product .row p {
	margin: 30px;
	text-align: justify;
	font-size: 16px;
	line-height: 1.9;
}

#product .row li a {
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 188px;
	background: #1F518E;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	position: relative;
}

@media only screen and (max-width: 1200px) {
	#product .row li .sp {
		display: inline;
	}
}

#product .row li a:before {
	content: '';
	width: 26px;
	height: 26px;
	border-radius: 100%;
	background: #fff;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}

#product .row li a:after {
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-top: solid 1px #007FC1;
	border-right: solid 1px #007FC1;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 31px;
}

#product .row li a:hover {
	background: #47A0CE;
}

#product .row .private li a {
	height: 63px;
}

#product .row .private li {
	border-bottom: solid 2px #fff;
}
#product .row .private li:last-of-type {
	border-bottom: none;
}

#product .row .private {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 0;
}

/*#product .row .private:after {*/
/*	content: '';*/
/*	width: 0;*/
/*	height: 0;*/
/*	border: solid 24px transparent;*/
/*	border-top: solid 16px #fff;*/
/*	transform: translateX(-50%);*/
/*	position: absolute;*/
/*	left: 50%;*/
/*	top: -2px;*/
/*	z-index: 0;*/
/*}*/

/* ---------------------------------------------------------
	CSS Document staff
--------------------------------------------------------- */

#staff {
	margin-bottom: 100px;
	text-align: justify;
}

@media only screen and (min-width: 780px) {
	#staff {
		display: flex;
		flex-flow: row-reverse;
		margin-bottom: 140px;
		padding-bottom: 60px;
		position: relative;
		z-index: 0;
	}

	#staff:before {
		content: '';
		width: 86%;
		height: 69%;
		background: #F4F9FD;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
		transform: translateY(25px);
		opacity: 0;
		transition: transform 1.0s, opacity 1.0s;
		transition-delay: 1.1s;
	}

	#staff.effected:before {
		transform: translateY(0);
		opacity: 1;
	}

	#staff:after {
		content: '';
		width: 100%;
		height: 250px;
		background: url(/include/images/f_copy.png) no-repeat top / cover;
		position: absolute;
		bottom: -160px;
		left: 0;
		z-index: -2;
		transform: translateY(25px);
		opacity: 0;
		transition: transform 1.0s, opacity 1.0s;
		transition-delay: 1.4s;
	}

	#staff.effected:after {
		transform: translateY(0);
		opacity: 1;
	}

	#staff figure {
		width: 50%;
		background: url(/include/top/staff_01.png) no-repeat center / auto 100%;
	}

	#staff figure img {
		display: none;
	}

	#staff .row {
		width: 50%;
	}
}

@media only screen and (max-width: 779px) {
	#staff figure img {
		width: 100%;
	}
}

@media only screen and (min-width: 1103px) {
	#staff figure {
		background-size: 100% auto;
	}
}

#staff .row {
	padding: 56px;
	font-size: 16px;
	line-height: 1.8;
}

#staff h3 {
	margin-bottom: 15px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.3;
}

#staff p {
	margin-bottom: 40px;
}

/* ---------------------------------------------------------
	CSS Document recruit
--------------------------------------------------------- */

#recruit {
	margin-bottom: 100px;
	text-align: justify;
}

@media only screen and (min-width: 780px) {
	#recruit {
		display: flex;
		margin-bottom: 0;
		padding-bottom: 60px;
		position: relative;
		z-index: 2;
	}

	#recruit:before {
		content: '';
		width: 86%;
		height: 69%;
		background: #F4F9FD;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
		transform: translateY(25px);
		opacity: 0;
		transition: transform 1.0s, opacity 1.0s;
		transition-delay: 1.3s;
	}

	#recruit.effected:before {
		transform: translateY(0);
		opacity: 1;
	}

	#recruit:after {
		content: '';
		width: 86%;
		height: 69%;
		background: #fff;
		position: absolute;
		top: -60px;
		right: 0;
		z-index: -2;
		transform: translateY(25px);
		opacity: 0;
		transition: transform 1.0s, opacity 1.0s;
	}

	#recruit.effected:after {
		transform: translateY(0);
		opacity: 1;
	}

	#recruit figure {
		width: 50%;
		background: url(/include/top/recruit_01.png) no-repeat center / auto 100%;
	}

	#recruit figure img {
		display: none;
	}

	#recruit .row {
		width: 50%;
	}
}

@media only screen and (max-width: 779px) {
	#recruit figure img {
		width: 100%;
	}
}

@media only screen and (min-width: 1103px) {
	#recruit figure {
		background-size: 100% auto;
	}
}

#recruit .row {
	padding: 56px;
	font-size: 16px;
	line-height: 1.8;
}

#recruit h3 {
	margin-bottom: 15px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.3;
}

#recruit p {
	margin-bottom: 40px;
}

/* ---------------------------------------------------------
	CSS Document concept
--------------------------------------------------------- */

#concept {
	height: 400px;
	padding: 120px 56px 0;
	position: relative;
}

#concept:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(/include/top/concept_01.png) no-repeat right top / cover;
	position: absolute;
	top: -60px;
	right: 0;
	z-index: -2;
}

#concept .title {
	max-width: 1366px;
	margin: 0 auto;
	text-align: left;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.9);
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 1.4;
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document blog
--------------------------------------------------------- */

#blog {
	display: flex;
	justify-content: space-between;
}

#blog .row {
	width: 380px;
	padding: 56px;
	text-align: justify;
	font-size: 16px;
	line-height: 1.8;
}

#blog .row p {
	margin-bottom: 40px;
}

#blog .multiple {
	width: calc(100% - 380px);
	padding: 110px 0;
	background: #F4F9FD;
	position: relative;
}

#blog .slick-slide {
	width: 310px;
	padding-left: 30px;
	text-align: justify;
}

#blog .effected [data-slick-index="0"] {
	transition-delay: .9s;
}

#blog .effected [data-slick-index="1"] {
	transition-delay: 1.1s;
}

#blog .effected [data-slick-index="2"] {
	transition-delay: 1.3s;
}

#blog .effected [data-slick-index="3"] {
	transition-delay: 1.5s;
}

#blog .effected [data-slick-index="4"] {
	transition-delay: 1.7s;
}

#blog .effected [data-slick-index="5"] {
	transition-delay: 1.9s;
}

#blog .slick-slide figure {
	width: 280px;
	height: 180px;
	overflow: hidden;
	margin-bottom: 10px;
	background: #fff;
}

#blog .slick-slide figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .6s;
}

#blog .slick-slide:hover figure img {
	transform: scale(1.2);
}

#blog .slick-slide dt {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #007FC1;
}

#blog .slick-slide dd {
	margin-bottom: 5px;
	font-weight: 500;
}

#blog .slick-slide dd a {
	text-decoration: none;
	color: #2A2A2A;
}

#blog .slick-arrow {
	width: 36px;
	height: 26px;
	border-radius: 26px;
	background: #DCE4E3;
	font-family: 'Sawarabi Gothic', sans-serif;
	font-weight: 400;
	font-size: 11px;
	line-height: 26px;
	color: #fff;
	position: absolute;
	top: 56px;
	z-index: 3;
	cursor: pointer;

	transform: translateY(25px);
	opacity: 0;
	transition: background .4s 0s, transform 1.0s 1.6s, opacity 1.0s 1.6s;
}

#blog .effected .slick-arrow {
	transform: translateY(0);
	opacity: 1;
}

#blog .slick-arrow:hover {
	background: #2A2A2A;
}

#blog .slick-prev {
	padding-right: 0.5em;
	right: 100px;
}

#blog .slick-next {
	padding-left: 0.5em;
	right: 56px;
}

/* ---------------------------------------------------------
	CSS Document company
--------------------------------------------------------- */

#company {
	padding: 100px 56px;
	/*background: url(/include/top/company_01.png) no-repeat top / cover;*/
	position: relative;
}

#company h3 {
	margin-bottom: 30px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.3;
}

#company p {
	max-width: 900px;
	margin: 0 auto 40px;
	font-size: 16px;
	line-height: 1.9;
}

#company .btn {
	text-align: center;
}


/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin: 0 auto;
	padding: 40px 0 60px 0;
	background: #f0f0f0;
}

#anchor .copy {
	margin-bottom: 50px;
}

#anchor .copy h3 {
	display: inline-block;
	vertical-align: top;
	width: 402px;
	font-size: 32px;
	line-height: 60px;
	position: relative;
	z-index: 1;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
}

#anchor .flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 5%;
	gap: 2%;
	row-gap: 30px;
}

#anchor .row {
	min-width: 200px;
	width: 18%;
	margin: 0;
	padding: 10px 20px 40px;
	border: solid 1px #eee;
	font-size:13px;
	position: relative;
	background: #fff;
}

@media only screen and (max-width: 891px) {
	#anchor .row {
		width: 40%;
	}
}
@media only screen and (min-width: 891px) and (max-width: 1490px) {
	#anchor .row {
		font-size:0.94vmin;
	}
}
@media only screen and (min-width: 641px) and (max-width: 891px) {
	#anchor .row {
		font-size:1.8vmin;
		text-align: center;
	}
}

#anchor .row:hover {
	opacity: 0.6;
}

#anchor .row:after {
	content: '';
	width: 52px;
	height: 52px;
	background: url(/assets/site/private/images/arrow.svg) no-repeat top;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -26px;
}

#anchor .row figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
}
#anchor .row figure a img {
	max-height: 90px;
}

#anchor .name a {
	display: inline-block;
	vertical-align: top;
	width: 210px;
	margin-bottom: 15px;
	border-radius: 36px;
	background: #F3F6F9;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	line-height: 36px;
	color: #007FC1;
}

@media only screen and (max-width: 1590px) {
	#anchor .flex {
		margin: 0 1%;
	}
}


#service-msg {
	max-width: 1366px;
	margin: 0 auto;
	padding: 56px;
	text-align: justify;
	font-size: 16px;
	line-height: 1.8;
	position: relative;
}

#service-msg h3 {
	margin-bottom: 30px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 34px;
	line-height: 1.4;
	/*text-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 0 0 6px rgba(0, 0, 0, 0.2);*/
	color: #000;
}

#service-msg p {
	margin-bottom: 2em;
	font-family: "Noto Serif JP", serif;
	/*text-shadow: 0 0 6px rgba(0, 0, 0, 0.2), 0 0 6px rgba(0, 0, 0, 0.2);*/
	color: #000;
}


.parallax_content{
	min-height: 400px;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
}
.parallax_content:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-image: radial-gradient(#FFF 78%, transparent 150%);
	background-position: 0 0;
	background-size: 8px 8px;
	opacity: 0.7;
	background-attachment: fixed;
}

.front_content{
	padding: 60px;
	background-color: #fff;
}
.parallax_content.img_bg_01{
	background-image: url(/assets/site/include/images/para_bg_01.jpg);
}
.parallax_content.img_bg_02{
	background-image: url(/assets/site/include/top/company_01.png);
}
#concept:before {
	content: none !important;
}



#main {
	margin-top: 119px;
	height: 50vh;
	font-size: 0;
	line-height: 100vh;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

@media only screen and (max-height: 640px) {
	#main {
		background-size: 100% auto;
	}
}
@media only screen and (max-width: 640px) {
	#main {
		height: auto;
	}
}

#main video {
	height: 100vh;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
}

@media only screen and (min-width: 1500px) {
	@media only screen and (max-height: 890px) {
		#main video {
			width: 100%;
			height: auto;
		}
	}
}

@media only screen and (min-height: 890px) {
	@media only screen and (min-width: 1600px) {
		#main video {
			width: 100%;
			height: auto;
		}
	}
}
@media screen and (min-aspect-ratio: 20/9) {
	#main video {
		height: auto;
	}
}
@media screen and (max-aspect-ratio: 16/9) {
	#main video {
		width: auto;
	}
}

#main h2 {
	width: 100%;
	height: 146px;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 3;
}
