@charset "utf-8";

/*--------------------
Reset
--------------------*/
html {
	box-sizing: border-box;
	font-size: 62.5%;
	scroll-behavior: smooth;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
ol,
ul {
	list-style: none;
}
dl,
dt,
dd {
	margin: 0;
}
figure {
	margin: 0;
}
img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
legend {
	display: table;
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
}
legend * {
	clear: both;
}
fieldset {
	border: 0;
	padding: 0.01em 0 0 0;
	margin: 0;
	min-width: 0;
}
body:not(:-moz-handler-blocked) fieldset {
	display: table-cell;
}
button {
	border: none;
}

li {
	list-style-type: none;
}


/*--------------------
Common
--------------------*/

:root {
	--red: #e60012;
	--white: #fffff;
}

html {
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN',
		'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック',
		'MS PGothic', sans-serif;
	letter-spacing: 0.15em;
	font-feature-settings: 'palt';
}
body {
	color: #2a2a2a;
	font-size: 1.6rem;
	line-height: 1.6;
	box-sizing: border-box;
	width: 100%;
	position: relative;
}
.sp-only {
	display: none;
}
.pc-only {
	display: block;
}
.button-primary {
	display: block;
	padding: 13px 20px;
	border: none;
	border-radius: 50px;
	background-color: #e42e15;
	color: #fff;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: 0.15s;
	overflow: hidden;
	position: relative;
}
.button-primary::after {
	background: #fff;
	content: '';
	height: 155px;
	left: -75px;
	opacity: 0.2;
	position: absolute;
	top: -50px;
	-webkit-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
	transform: rotate(35deg);
	-webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: -10;
}
.button-primary:hover {
	transform: translateY(2px);
	box-shadow: none;
}
.button-primary:hover:after {
	left: 120%;
	-webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.read-text {
	margin-bottom: 30px;
}
.note-item {
	padding-left: 1.5em;
	position: relative;
}
.note-item::before {
	content: '※';
	position: absolute;
	left: 0;
	top: 0;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	.button-primary {
		padding: 10px;
		background-color: #e42e15;
		color: #fff;
	}
	.button-primary:hover {
		transform: translateY(0);
		box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
	}
	.read-text {
		margin-bottom: 20px;
	}
}

/*--------------------
Header
--------------------*/
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header .header-logo {
	width: 210px;
	line-height: 1;
}
.header .btn-gNav {
	position: fixed;
	top: 21px;
	right: 20px;
	width: 30px;
	height: 24px;
	z-index: 12;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}
.header .btn-gNav span {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #2a2a2a;
	border-radius: 1px;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}
.header .btn-gNav span:nth-child(1) {
	top: 0;
}

.header .btn-gNav span:nth-child(2) {
	top: 10px;
}
.header .btn-gNav span:nth-child(3) {
	top: 20px;
}
.header .gNav.open span:nth-child(1) {
	top: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header .gNav.open span:nth-child(2),
.header .gNav.open span:nth-child(3) {
	top: 6px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-gNav {
	display: none;
}
.gNav .gNav-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}
.gNav .gNav-menu li:not(:last-child) {
	margin-right: 30px;
}
.gNav .gNav-menu li:not(:last-child) a {
	padding: 10px 0;
	text-decoration: none;
	color: #4a4a4a;
	position: relative;
	transition: 0.2s;
}
.gNav .gNav-menu li:not(:last-child) a:hover {
	color: #e42e15;
}
.gNav .gNav-menu li:not(:last-child) a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	border-bottom: solid 2px #e42e15;
	transition: 0.2s;
}
.gNav .gNav-menu li:not(:last-child) a:hover::after {
	width: 100%;
}
.gNav .gNav-menu li:not(:last-child) a.current {
	color: #e42e15;
	pointer-events: none;
}
.gNav .gNav-menu li:not(:last-child) a.current::after {
	width: 100%;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 1100px) {
	.header {
		position: sticky;
		margin: 0 auto;
		padding: 24px 20px;
	}
	.header .header-logo {
		width: 130px;
		margin: 0;
	}
	.btn-gNav {
		display: block;
	}
	.gNav {
		position: fixed;
		top: 0;
		right: -70%;
		width: 70%;
		height: 100%;
		color: #fff;
		background-color: rgba(250, 250, 250, 0.95);
		box-sizing: border-box;
		z-index: 1;
		padding-top: 50px;
		transition: 0.3s;
	}
	.gNav.open {
		right: 0;
	}
	.gNav .gNav-menu {
		padding: 0 20px;
		width: 100%;
		height: 100%;
		display: block;
		flex-direction: column;
	}
	.gNav .gNav-menu li:not(:last-child) {
		width: 100%;
		margin-right: 0;
		border-bottom: #dbdbdb 1px solid;
		color: #fff;
	}
	.gNav .gNav-menu li:not(:last-child) a {
		padding: 10px 0;
		display: block;
	}
	.gNav .gNav-menu li:not(:last-child) a:hover {
		color: #e42e15;
	}
	.gNav .gNav-menu li:not(:last-child) a::after {
		content: none;
	}
	.gNav .gNav-menu li:not(:last-child) a:hover::after {
		width: 0%;
	}
	.gNav .gNav-menu li:last-child {
		margin-top: 20px;
	}
}

/*--------------------
Main Visual
--------------------*/
.main-visual {
	width: 100%;
	height: 490px;
	line-height: 1;
	text-align: center;
	background: #eeeee9;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	position: relative;
	overflow: hidden;
}

.main-visual-inner {
	width: 100%;
	padding: 0 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main-visual-title {
	font-size: 6.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}
.main-visual-text {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.6;
}

.main-visual-video.app {
	position: absolute;
	right: 0;
	bottom: -95%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	background-size: cover;
}

@media only screen and (max-width: 1280px) {
	.main-visual-video.app {
		right: 0;
		bottom: -5%;
		width: 1000px;
	}
}
/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 1100px) {
	.main-visual {
		height: 350px;
	}
	.main-visual-inner {
		padding: 0 10px;
	}
	.main-visual-title {
		font-size: 2.8rem;
		margin-bottom: 10px;
	}
	.main-visual-text {
		font-size: 1.6rem;
	}
	.main-visual-video.app {
		right: 0%;
		bottom: -30%;
	}
}

/* 
------------------------------ */
@media only screen and (max-width: 800px) {
	.main-visual {
		height: 300px;
	}
	.main-visual-video.app {
		right: 0%;
		bottom: -60%;
		width: 900px;
	}
}
/* 
------------------------------ */
@media only screen and (max-width: 600px) {
	.main-visual {
		height: 292px;
	}
	.main-visual-video.app {
		right: 0%;
		bottom: -20%;
		width: 700px;
	}
}
@media only screen and (max-width: 450px) {
	.main-visual {
		height: 212px;
	}
	.main-visual-video.app {
		right: -40%;
		bottom: -20%;
		width: 700px;
	}
}

/*--------------------
Section: 共通部分
--------------------*/
.main {
	padding-bottom: 80px;
}
.section {
	background: #ffffff;
}
.section:nth-child(odd) {
	background: #f9f9f9;
}
.section .container {
	padding: 80px 20px;
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}
.section .container .section-title {
	font-size: 4.6rem;
	line-height: 1.48;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 60px;
}
/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.main {
		padding-bottom: 60px;
	}
	.section .container {
		padding: 60px 20px;
	}
	.section .container.container--overview {
		flex-direction: column;
	}
	.section .container.container--overview div {
		width: 100%;
	}
	.section .container .section-title {
		font-size: 2.6rem;
		margin-bottom: 40px;
	}
	.section .container.container--overview .section-title {
		text-align: center;
	}
}

/*--------------------
Section: overview
--------------------*/
.overview__box {
}
.container.container--overview {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.container.container--overview::after {
	content: '';
	display: block;
	width: 530px;
	height: 530px;
	background: url(../img/e_cloud-ev/img_overview.png) no-repeat center;
	background-size: contain;
}
.container.container--overview div {
	width: calc((100% - 40px) / 2);
}
.container.container--overview .section-title {
	text-align: left;
	margin-bottom: 30px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.container.container--overview {
		flex-direction: column;
	}
	.container.container--overview::after {
		content: none;
	}
	.container.container--overview div {
		width: 100%;
	}

	.container.container--overview .section-title {
		text-align: center;
	}
	.container.container--overview .section-title::after {
		content: '';
		display: block;
		width: 100%;
		max-width: 320px;
		height: 176px;
		margin: 40px auto 20px;
		background: url(../img/e_cloud-ev/img_overview.png) no-repeat top;
		background-size: cover;
	}
}

/*--------------------
Section: flow
--------------------*/
.flow__list {
	display: flex;
	justify-content: space-between;
}

.flow__list li {
	width: calc((100% - 80px) / 3);
	position: relative;
}
.flow__list li:not(:last-child)::after {
	content: '';
	display: block;
	width: 40px;
	height: 74px;
	background: url(../img/e_cloud-ev/img_flow-arrow.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 100px;
	transform: translateX(40px);
}
.flow__list li div {
	max-width: 265px;
	margin: 0 auto 30px;
}
.flow__list li:last-child div img {
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.flow__list li h3 {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
/* 〜959pxpx：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.flow__list {
		flex-direction: column;
	}

	.flow__list li {
		width: 100%;
	}
	.flow__list li:not(:last-child) {
		margin-bottom: 20px;
	}
	.flow__list li:not(:last-child)::after {
		position: unset;
		margin: 0 auto;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.flow__list li div {
		max-width: 200px;
		margin: 0 auto 20px;
	}
	.flow__list li h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.flow__list li:not(:last-child) p {
		margin-bottom: 20px;
	}
}

/*--------------------
Section: feature
--------------------*/
.feature__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.feature__list li {
	font-weight: bold;
	color: #fff;
	line-height: 1;
	white-space: nowrap;
	margin-bottom: 20px;
	padding: 10px 20px;
	background-color: #2a2a2a;
	border-radius: 50px;
}
.feature__list li:not(:last-child) {
	margin-right: 30px;
}
/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.feature__list {
		margin-bottom: 50px;
		font-size: 14px;
	}

	.feature__list li {
		margin-bottom: 10px;
		padding: 10px 20px;
	}
	.feature__list li:not(:last-child) {
		margin-right: 10px;
	}
}

/*--------------------
Section: 資料請求・お問い合わせ
--------------------*/
.contact__lead {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}
.contact__button a {
	display: block;
	margin: 0 auto;
	padding: 30px;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	background-color: var(--red);
	border-radius: 4px;
	box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
	transition: 0.15s;
}
.contact__button a:hover {
	transform: translateY(2px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	opacity: 0.9;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.contact__lead {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}

	.contact__button a {
		display: block;
		padding: 20px;
		font-size: 1.8rem;
	}
	.contact__button a:hover {
		pointer-events: none;
		transform: translateY(0px);
		opacity: 1;
	}
}

/*
    Footer
--------------------*/
.footer {
	background-color: #323232;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
}
.footer .footer__inner {
	padding: 50px 20px;
	margin: 0 auto;
}
.footer .footer-copy {
}
