@charset "UTF-8";
/*ローディング*/
.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 555;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loader-none {
	display: none;
}
.loader .txt {
	position: relative;
	width: 230px;
	height: 60px;
	display: inline-block;
	opacity: 0;
}
.loader .txt02 {
	position: relative;
	width: 230px;
	height: 60px;
	display: inline-block;
	opacity: 0;
}
.loader .txt::before {
	content: " ";
	width: 230px;
	height: 60px;
	background: url("../img/svg/G01-pc.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}
.loader .txt02::before {
	content: " ";
	width: 230px;
	height: 60px;
	background: url("../img/svg/G02-pc.svg") no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes blur {
	0% {
		filter: blur(10px);
	}
	100% {
		filter: blur(0);
	}
}
.active {
	opacity: 1 !important;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	animation-name: blur;
	animation-duration: .5s;
}
/*スライドショー*/

.slide {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.slide-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.slide-start {
	animation: slider-1 15s linear infinite;
}
.slide-image:nth-child(1) {
	background-image: url("../img/index/top02.jpg");
	animation-delay: 1s;
}
.slide-image:nth-child(2) {
	background-image: url("../img/index/top03.jpg");
	animation-delay: 6s;
}
.slide-image:nth-child(3) {
	background-image: url("../img/index/top01.jpg");
	animation-delay: 11s;
}
@keyframes slider-1 {
	0% {
		opacity: 0;
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
	}
	4.16% {
		opacity: 1;
	}
	33.33% {
		opacity: 1;
	}
	41.66% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
	}
}
/*スクロールダウン全体の場所*/

.scrolldown2 {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 10px;
	right: 5%;
}
/*Scrollテキストの描写*/

.scrolldown2 span {
	/*描画位置*/
	position: absolute;
	left: 10px;
	bottom: 10px;
	/*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
/* 丸の描写 */

.scrolldown2:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: -4px;
	/*丸の形状*/
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #eee;
	/*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/

@keyframes circlemove {
	0% {
		bottom: 45px;
	}
	100% {
		bottom: -5px;
	}
}
/*上から下にかけて丸が透過→不透明→透過する*/

@keyframes cirlemovehide {
	0% {
		opacity: 0
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
/* 線の描写 */

.scrolldown2:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: 0;
	/*線の形状*/
	width: 2px;
	height: 50px;
	background: #eee;
}
.mainVisual {
	position: relative;
}
.mainVisual .mainTtl {
	color: #fff;
	font-size: 4rem;
	position: absolute;
	bottom: 160px;
	left: 5.35rem;
	animation-name: blur;
	animation-duration: 1.5s;
}
/*------------------------------------------------------------
intro
------------------------------------------------------------*/

.intro {
	width: 100%;
	max-width: 1280px;
	height: auto;
	margin: 160px auto;
}
.intro .txtArea {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.intro .txtArea .txt {
	height: auto;
	margin: 0 auto;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: start;
	min-height: 400px;
}
.intro .txtArea .txt span {
	margin: 0 5px;
	display: inline-block;
}
/*------------------------------------------------------------
section共通
------------------------------------------------------------*/

.service, .strength {
	width: 100%;
	max-width: 1280px;
	height: auto;
	margin: 240px auto 400px;
}
.about {
	width: 100%;
	max-width: 1080px;
	height: auto;
	margin: 240px auto 200px;
}
.serviceArea, .strengthArea, .aboutArea {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.Cnt {
	position: relative;
}
.Cnt .ttl, .Cnt .txt {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.Cnt .ttl {
	font-size: 3rem;
	position: absolute;
	top: 0;
	right: 10%;
}
.Cnt .txt {
	font-size: 1.6rem;
	position: absolute;
	top: 20px;
	right: 30%;
	color: #2D312E;
}
.Cnt .txt span {
	display: inline-block;
	margin: 0 2px;
	letter-spacing: 0.1em;
}
.Cnt .img {
	position: absolute;
	bottom: -160px;
}
.Cnt .Btn {
	position: absolute;
	left: 25%;
	top: 100px;
	display: inline-block;
	height: 100%;
	min-height: 200px;
}
.Cnt .Btn a {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: relative;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.Btn:hover {
	opacity: 0.7;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.Btn:hover .plus {
	margin-top: 10px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.Btn:hover .wave {
	background: #132814;
	;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.waveArea {
	position: absolute;
	top: -30px;
	width: 8px;
	height: 8px;
	left: 15px;
}
.wave {
	display: inline-block;
	content: " ";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #af9679;
}
.wave.ripple {
	position: relative;
}
.wave.ripple::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: -1;
	background: inherit;
	-webkit-animation: ripple 2s cubic-bezier(0.3, 0, 0.1, 1) infinite;
	animation: ripple 2s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}
@-webkit-keyframes ripple {
	0% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
	60% {
		-webkit-transform: scale(4, 4);
		transform: scale(4, 4);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: scale(8, 8);
		transform: scale(8, 8);
		opacity: 0;
	}
}
.Cnt .Btn a {
	position: relative;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
	min-height: 400px;
}
.Cnt .Btn a::after {
	content: " ";
	display: inline-block;
	width: 1px;
	height: 60px;
	background-color: #ABABAB;
	background-position: center;
	background-size: contain;
	position: relative;
	margin-top: 10px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.Cnt .Btn a:hover::after {
	margin-top: 30px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.Bg-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 40vh;
}
.Bg-image02 {
	margin-top: 320px;
}
.bgArea img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}
.movie {
	width: 100%;
	max-width: 900px;
	height: 100%;
	margin: 0 auto;
/*	overflow: hidden;*/
}
.movie video {
	width: 100%;
	height: 100%;
}
.movieArea {
	width: 100%;
	height: 600px;
}

/*------------------------------------------------------------
service-section
------------------------------------------------------------*/

.service .serviceArea .Cnt:nth-child(1) {
	width: 40%;
	height: auto;
	top: 0;
}
.service .serviceArea .Cnt:nth-child(2) {
	width: 50%;
	height: auto;
}
.service .ttl span {
	position: relative;
}
.service .Cnt:nth-child(1)::after {
	content: "01";
	display: inline-block;
	width: 90px;
	height: 1px;
	position: absolute;
	top: -94px;
	writing-mode: horizontal-tb !important;
	font-size: 1.4em;
	color: #EDEDED;
	z-index: -1;
}
.service .Cnt02 {
	position: relative;
}
.service .Cnt02::before {
	content: " ";
	display: inline-block;
	width: 100%;
	max-width: 400px;
	height: 90px;
	background: url("../img/svg/Service02.svg") no-repeat;
	background-position: top;
	background-size: contain;
	position: absolute;
	top: -60px;
	left: -70px;
	transform: rotate(-10deg);
}
/*------------------------------------------------------------
strength-section
------------------------------------------------------------*/

.strength .strengthArea .Cnt:nth-child(1) {
	width: 50%;
	height: auto;
}
.strength .strengthArea .Cnt:nth-child(2) {
	width: 40%;
	height: auto;
	top: 0;
}
.strength .Cnt02 {
	position: relative;
}
.strength .Cnt02::before {
	content: " ";
	display: inline-block;
	width: 100%;
	max-width: 400px;
	height: 90px;
	background: url("../img/svg/Strength02.svg") no-repeat;
	background-position: top;
	background-size: contain;
	position: absolute;
	top: -60px;
	left: -30px;
	transform: scale(1.2) rotate(-10deg);
}
.strength .Cnt:nth-child(2)::after {
	content: "02";
	display: inline-block;
	width: 90px;
	height: 1px;
	position: absolute;
	top: -94px;
	writing-mode: horizontal-tb !important;
	font-size: 1.4em;
	color: #EDEDED;
	z-index: -1;
}
.strength .ttl span {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	line-height: 1;
	font-size: 1.2em;
	writing-mode: horizontal-tb !important
}
.number {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	font-size: 1.5rem;
	margin-bottom: 2px;
}
/*------------------------------------------------------------
about-section
------------------------------------------------------------*/

.about .aboutArea .Cnt:nth-child(1) {
	width: 40%;
	height: auto;
	top: 0;
}
.about .aboutArea .Cnt:nth-child(2) {
	width: 50%;
	height: auto;
}
.about .Cnt:nth-child(1)::after {
	content: "03";
	display: inline-block;
	width: 90px;
	height: 1px;
	position: absolute;
	top: -94px;
	writing-mode: horizontal-tb !important;
	font-size: 1.4em;
	color: #EDEDED;
	z-index: -1;
}
.about .Cnt02 {
	position: relative;
}
.about .Cnt02::before {
	content: " ";
	display: inline-block;
	width: 100%;
	max-width: 400px;
	height: 90px;
	background: url("../img/svg/voice.svg") no-repeat;
	background-position: top;
	background-size: contain;
	position: absolute;
	top: -60px;
	left: -100px;
	transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
}
/*------------------------------------------------------------
768px以下の場合
------------------------------------------------------------*/

/*SP用スライダー*/

@keyframes slider-2 {
	0% {
		opacity: 0;
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
	}
	4.16% {
		opacity: 1;
	}
	33.33% {
		opacity: 1;
	}
	41.66% {
		opacity: 0;
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes ripple {
	0% {
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
	60% {
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0.5;
	}
	100% {
		-moz-transform: scale(2.8, 2.8);
		-webkit-transform: scale(2.8, 2.8);
		transform: scale(2.8, 2.8);
		opacity: 0;
	}
}
@media all and (max-width: 960px) {
	/*ローディング*/
	.loader {
		position: fixed;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		z-index: 555;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.loader-none {
		display: none;
	}
	.loading {
		display: flex;
		flex-direction: column;
	}
	.loader .txt, .loader .txt02 {
		position: relative;
		width: 60px;
		height: 230px;
		display: inline-block;
	}
	.loader .txt::before {
		content: " ";
		width: 60px;
		height: 230px;
		background: url("../img/svg/G01-sp.svg") no-repeat;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
	}
	.loader .txt02::before {
		content: " ";
		width: 60px;
		height: 230px;
		background: url("../img/svg/G02-sp.svg") no-repeat;
		background-size: contain;
		position: absolute;
		top: 0;
		left: 0;
	}
	.scrolldown2 {
		/*描画位置※位置は適宜調整してください*/
		position: absolute;
		bottom: 0;
		right: 50%;
	}
	/*スライダー*/
	.slide-image:nth-child(1) {
		background-image: url("../img/index/top02-sp.jpg");
		animation-delay: 1s;
	}
	.slide-image:nth-child(2) {
		background-image: url("../img/index/top03-sp.jpg");
		animation-delay: 6s;
	}
	.slide-image:nth-child(3) {
		background-image: url("../img/index/top01-sp.jpg");
		animation-delay: 11s;
	}
	.slide-start {
		animation: slider-2 15s linear infinite;
	}
	.mainVisual .mainTtl {
		color: #fff;
		font-size: 3rem;
		position: absolute;
		bottom: 160px;
		left: 2.35rem;
		animation-name: blur;
		animation-duration: 1.5s;
	}
	/*------------------------------------------------------------
intro
------------------------------------------------------------*/
	.intro {
		width: 100%;
		max-width: 90%;
		height: auto;
		margin: 60px auto 100px;
	}
	.intro .txtArea {
		max-width: 100%;
		max-width: 600px;
		height: auto;
		margin: 0 auto;
	}
	.intro .txtArea .txt {
		height: auto;
		margin: 0 auto;
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		text-align: justify;
		font-size: 1.5rem;
		line-height: 1.78;
	}
	.intro .txtArea .txt span {
		margin: 0;
		display: inline-block;
		letter-spacing: .08em;
		margin-bottom: 3px;
		margin-right: 2px;
	}
	.number {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}
	.movieArea {
		width: 100%;
		height: 35vh;
		max-height: 360px;
		position: relative;
	}
	/*------------------------------------------------------------
section共通
------------------------------------------------------------*/
	.service, .strength {
		width: 100%;
		height: auto;
		margin: 100px auto 180px;
	}
	.about {
		width: 100%;
		height: auto;
		margin: 100px auto 20px;
	}
	.serviceArea, .strengthArea, .aboutArea {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.Cnt {
		position: relative;
	}
	.Cnt .ttl, .Cnt .txt {
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	.Cnt .ttl {
		font-size: 2rem;
		position: relative;
		top: 0;
		right: 0;
		margin: 10px 0;
	}
	.Cnt .txt {
		font-size: 1.4rem;
		position: relative;
		top: 0;
		right: 0;
		color: #2D312E;
		text-align: justify;
		margin-bottom: 30px;
	}
	.Cnt .txt span {
		display: inline;
		margin: 5px 0;
		letter-spacing: 0.1em;
		line-height: 1.78;
	}
	.Cnt .img {
		position: relative;
		bottom: 0;
	}
	.Cnt .Btn {
		position: relative;
		left: 0;
		top: 0;
		margin-left: 20px;
		margin-bottom: 80px;
	}
	.Cnt .Btn a {
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		position: relative;
		min-height: 0;
	}
	.waveArea {
		position: absolute;
		top: -2px;
		width: 8px;
		height: 8px;
		left: -20px;
	}
	.wave {
		display: inline-block;
		content: " ";
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #af9679;
	}
	.wave.ripple {
		position: relative;
	}
	.wave.ripple::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		z-index: -1;
		background: inherit;
		-webkit-animation: ripple 2s cubic-bezier(0.3, 0, 0.1, 1) infinite;
		animation: ripple 2s cubic-bezier(0.3, 0, 0.1, 1) infinite;
	}
	.Cnt .Btn {
		position: relative;
		display: inline-block;
		height: auto;
		min-height: 0;
	}
	.Cnt .Btn a {
		position: relative;
	}
	.Cnt .Btn a::after {
		content: " ";
		display: inline-block;
		width: 70px;
		height: 1px;
		background-color: #ABABAB;
		background-position: center;
		background-size: contain;
		position: relative;
		left: 5px;
		margin-top: 0;
		margin-bottom: 5px;
	}
	.Cnt .Btn a:hover::after {
		margin-top: 0;
	}
	/*------------------------------------------------------------
service-section
------------------------------------------------------------*/
	.service .serviceArea .Cnt:nth-child(1) {
		width: 90%;
		height: auto;
		top: 0;
		margin: 40px auto 0;
	}
	.service .serviceArea .Cnt:nth-child(2) {
		width: 90%;
		height: auto;
		margin-left: auto;
	}
	.service .ttl span {
		position: relative;
	}
	.service .Cnt:nth-child(1)::after {
		content: "01";
		display: inline-block;
		width: 100%;
		height: 1px;
		position: absolute;
		top: -15px;
		writing-mode: horizontal-tb !important;
		font-size: 1.4em;
		color: #EDEDED;
		z-index: -1;
	}
	.serviceArea .Cnt .img {
		position: relative;
		left: -10%;
	}
	.service .Cnt02 {
		position: relative;
	}
	.service .Cnt02::before {
		content: " ";
		display: inline-block;
		width: 100%;
		max-width: 80%;
		height: 90px;
		background: url("../img/svg/Service02.svg") no-repeat;
		background-position: top;
		background-size: contain;
		position: absolute;
		top: -60px;
		left: -30px;
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
	}
	/*------------------------------------------------------------
strength-section
------------------------------------------------------------*/
	.strengthArea {
		flex-direction: column;
	}
	.strength .strengthArea .Cnt:nth-child(2) {
		width: 90%;
		height: auto;
		top: 0;
		margin: 40px auto 0;
	}
	.strength .strengthArea .Cnt:nth-child(1) {
		width: 90%;
		height: auto;
		margin-left: auto;
	}
	.strength .Cnt02 {
		position: relative;
	}
	.strength .Cnt02::before {
		content: " ";
		display: inline-block;
		width: 100%;
		max-width: 80%;
		height: 90px;
		background: url("../img/svg/Strength02.svg") no-repeat;
		background-position: top;
		background-size: contain;
		position: absolute;
		top: -60px;
		left: -30px;
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
	}
	.strength .Cnt:nth-child(2)::after {
		content: "02";
		display: inline-block;
		width: 100%;
		height: 1px;
		position: absolute;
		top: -15px;
		writing-mode: horizontal-tb !important;
		font-size: 1.4em;
		color: #EDEDED;
		z-index: -1;
	}
	.strength .Cnt .img {
		position: relative;
		left: -6%;
	}
	.strength .ttl span {
		transform: rotate(45deg);
		writing-mode: horizontal-tb;
		line-height: 1;
		font-size: 1.2em;
	}
	/*------------------------------------------------------------
about-section
------------------------------------------------------------*/
	.about .aboutArea .Cnt:nth-child(1) {
		width: 90%;
		height: auto;
		top: 0;
		margin: 40px auto 0;
	}
	.about .aboutArea .Cnt:nth-child(2) {
		width: 90%;
		height: auto;
		margin-left: auto;
	}
	.about .ttl span {
		position: relative;
	}
	.about .Cnt:nth-child(1)::after {
		content: "03";
		display: inline-block;
		width: 100%;
		height: 1px;
		position: absolute;
		top: -15px;
		writing-mode: horizontal-tb !important;
		font-size: 1.4em;
		color: #EDEDED;
		z-index: -1;
	}
	.aboutArea .Cnt .img {
		position: relative;
		left: -10%;
	}
	.about .Cnt02 {
		position: relative;
	}
	.about .Cnt02::before {
		content: " ";
		display: inline-block;
		width: 100%;
		max-width: 80%;
		height: 90px;
		background: url("../img/svg/voice.svg") no-repeat;
		background-position: top;
		background-size: contain;
		position: absolute;
		top: -60px;
		left: -30px;
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
	}
	.Bg-image {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 20vh;
	}
	.Bg-image02 {
		margin-top: 120px;
	}
	.bgArea img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
	}
}
/*
.media-document{
	inline-controls-bar-height: 100vw;
}*/
