@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* template variables */
:root {
	--root-font-size: 10px;
	--themed-color: #58b1ac;
	--themed-fade: #f0f8f8;
	--gradient-start: #58b1ac;
	--gradient-end: #b2d71f;
	--fontSize-h1-pc: 40px;
	--fontSize-h2-pc: 32px;
	--fontSize-h3-pc: 24px;
	--fontSize-p-pc: 18px;
	--fontSize-h1-sp: 24px;
	--fontSize-h2-sp: 20px;
	--fontSize-h3-sp: 18px;
	--fontSize-p-sp: 16px;
	--fontSize-button-pc: 24px;
	--fontSize-title-pc: 50px;
	--fontSize-button-sp: 18px;
	--fontSize-title-sp: 38px;
}

html {
	font-size: var(--root-font-size);
	font-family: 'Noto Sans JP', 'Lato', 'ヒラギノ角ゴ ProN',
		'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック',
		'MS PGothic', sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Common */

.container {
	margin: 0 auto;
}

.flex--container {
	display: flex;
	justify-content: center;
}

.flexColumn--container {
	display: flex;
	flex-direction: column;
}

.section--wrapper {
	box-sizing: border-box;
}

.section--container {
	padding: 35px 95px 0 95px;
	max-width: 1200px;
	margin: 0 auto;
}

.section--container:last-child {
	padding-bottom: 35px;
}

/*--------------------
Section: 共通部分
--------------------*/
.main {
}
.section {
	background: #ffffff;
}
.section:nth-child(odd) {
	background: #fff9f9;
}
.section .container {
	padding: 100px 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.section .container.container--wide,
.section .container.container--wide + .container {
	max-width: 100%;
}
.section .container.container--wide {
	padding: 0;
}
.section .container .section-title {
	font-size: 4.6rem;
	line-height: 1.48;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 60px;
}

.section .container .section-lead {
	margin-bottom: 60px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.main {
	}
	.section .container {
		padding: 50px 20px;
	}
	.section .container::before {
		width: 100px;
		height: 53px;
		margin-bottom: 20px;
	}
	.section .container .section-title {
		font-size: 2.6rem;
		margin-bottom: 40px;
	}
	.section .container .section-title.section-title--red {
	}
	.section .container .section-title.section-title--red::before {
		content: '';
		display: block;
		text-align: center;
		width: 166px;
		height: 160px;
		margin: 0 auto;
		background: url(../img/e_cloud-red/img_red-man_1.svg) no-repeat center;
		background-size: contain;
		transform: translateY(-15%);
	}
	.section .container .section-lead {
		margin-bottom: 30px;
	}
}

/* SP ENDS
------------------------------ */

/*--------------------
Header
--------------------*/
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	overflow: hidden;
	box-sizing: border-box;
}
.header .header-logo {
	width: 225px;
	line-height: 1;
}
.header .btn-gNav {
	position: fixed;
	top: 20px;
	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) {
	background: #ffffff;
	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;
	background: #ffffff;
	-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-size: 1.4rem;
	font-weight: bold;
}
.gNav .gNav-menu li:not(:last-child) {
	margin-right: 20px;
}
.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: var(--themed-color);
}
.gNav .gNav-menu li:not(:last-child) a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	border-bottom: solid 2px var(--themed-color);
	transition: 0.2s;
}
.gNav .gNav-menu li:not(:last-child) a:hover::after {
	width: 100%;
}

.gNav .gNav-menu li a {
	text-decoration: none;
	font-weight: bold;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.header {
		position: sticky;
		margin: 0 auto;
	}
	.header .header-logo {
		width: 130px;
		margin: 0;
	}
	.btn-gNav {
		display: block;
	}
	.gNav {
		position: fixed;
		top: 0;
		right: -60%;
		width: 60%;
		height: 100%;
		color: #fff;
		background-color: rgba(207, 0, 0, 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;
		height: 100%;
		display: block;
		flex-direction: column;
		box-sizing: border-box;
	}
	.gNav .gNav-menu li:not(:last-child) {
		width: 100%;
		margin-right: 0;
		border-bottom: #fff 1px solid;
		color: #fff;
	}
	.gNav .gNav-menu li:not(:last-child) a {
		padding: 10px 0;
		color: #fff;
		display: block;
	}
	.gNav .gNav-menu li:not(:last-child) a:hover {
		color: #fff;
	}
	.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;
	}

	.gNav-menu .button-primary {
	}
}

/* Button */
.button-primary {
	display: block;
	padding: 13px 20px;
	border: none;
	border-radius: 50px;
	background: var(--themed-color);
	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);
}

.button-secondary {
	display: block;
	padding: 20px 95px;
	border: none;
	border-radius: 50px;
	background: #fff;
	color: var(--themed-color);
	text-align: center;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: 0.15s;
	overflow: hidden;
	position: relative;
	width: 60%;
	font-size: 24px;
	box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.button-secondary:hover {
	opacity: 0.7;
}

.button--wrapper {
	text-align: center;
	margin: 35px auto 15px auto;
}

.button__center {
	margin: 0 auto;
}

/* Button〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.button-secondary {
		font-size: 18px;
		padding: 20px;
		width: 90%;
	}
}

/* Hero */
.container {
	position: relative;
	width: 100%;

	.content {
		position: absolute;
		top: 15%;
		left: 10%;
		color: black;
		padding: 20px;
		border-radius: 8px;
	}

	h1 {
		font-size: var(--fontSize-h1-pc);
		margin: 0 0 10px 0;
		font-weight: bold;
		margin-bottom: var(--fontSize-h1-pc);
	}

	h2 {
		font-weight: bold;
		font-size: var(--fontSize-h2-pc);
		margin: 0 0 var(--fontSize-h2-pc) 0;
	}

	h3 {
		font-size: var(--fontSize-h3-pc);
		margin: 0 0 10px 0;
	}

	p {
		margin: 5px 0;
		font-size: var(--fontSize-p-pc);
		line-height: 1.5;
	}
}

.primary-button {
	position: relative;
	display: inline-block;
	margin-top: 15px;
	padding: 10px 40px;
	font-size: var(--fontSize-button-pc);
	color: white;
	background: linear-gradient(
		to right,
		var(--gradient-start),
		var(--gradient-end)
	);
	border: none;
	overflow: hidden;
	border-radius: 30px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family: 'Arial', sans-serif;
	transition: background 0.3s ease; /* Smooth transition */
}

.primary-button::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: url('./icon/icon-download.svg') no-repeat center center;
	background-size: contain;
}

.primary-button:hover {
	background: linear-gradient(to right, #4a9e98, #a5c51c);
}

.video-container {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	/* background: url('./image/sample_background_image.png') no-repeat center
		center/cover; */
}

#loading-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	z-index: -1;
}
#background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.only_sp {
	display: none;
}

/* HERO 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.container {
		h1 {
			font-size: var(--fontSize-h1-sp);
			margin: 0 0 30px 0;
			margin-bottom: 50px;
			line-height: 38px;
		}

		h2 {
			font-weight: bold;
			font-size: var(--fontSize-h2-sp);
			margin: 0 0 var(--fontSize-h2-sp) 0;
			line-height: 26px;
		}

		h3 {
			font-size: var(--fontSize-h3-sp);
			margin: 0 0 10px 0;
		}

		p {
			margin: 5px 0;
			font-size: var(--fontSize-p-sp);
			line-height: 1.5;
		}

		.content {
			top: 10%;
			left: 3%;
		}
	}

	.only_sp {
		display: block;
	}

	.primary-button {
		margin-top: 50px;
		font-size: var(--fontSize-button-sp);
	}
}

/* Service */

.container {
}

.background--themed-fade {
	background: var(--themed-fade);
}

.serviceTitle--wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 50%;
	padding: 35px 15px 0 20px;
}

.serviceTitle--wrapper h3,
.serviceTitle--wrapper h1,
.serviceTitle--wrapper p {
	width: 100%;
	text-align: left;
}

.serviceTitle--wrapper h3 {
	padding-bottom: 20px;
	line-height: 36px;
}

.serviceTitle--wrapper h1 {
	font-size: var(--fontSize-title-pc);
}

.serviceTitle--wrapper:nth-child(2) {
	width: 70%;
}

.serviceTitle--inner {
	padding: 45px 20px;
	border-radius: 8px;

	h2 {
		line-height: 37px;
	}
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 1280px) {
	.serviceTitle--wrapper h1 {
		font-size: 50px;
	}
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.section--container {
		padding: 3%;
		margin-top: 50px;
	}
	.flex--container {
		flex-direction: column;
		justify-content: center;
	}
	.flex-reverse {
		flex-direction: column-reverse;
	}
	.serviceTitle--wrapper {
		margin: 0 auto;
		padding: 10px;
		max-width: 100%;
		box-sizing: border-box;

		h1 {
			font-size: 28px;
			margin-bottom: 25px;
			line-height: 40px;
		}

		h3 {
			line-height: 30px;
			padding: 0;
		}
	}
	.serviceTitle--wrapper:nth-child(2) {
		width: 100%;
		box-sizing: border-box;
	}
}

/* banner */

.background--themed {
	background: var(--themed-color);
}

.banner--wrapper {
	text-align: center;
	color: white;
}

.banner--container {
	padding: 35px;
}

.icon-line-both::before,
.icon-line-both::after {
	display: inline-block;
	width: 60px;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	content: '';
}

.icon-line-both::before {
	background-image: url('./icon/icon-line-left.svg');
	margin-right: 50px;
}

.icon-line-both::after {
	background-image: url('./icon/icon-line-right.svg');
	margin-left: 50px;
}

.icon-line-both {
	position: relative;
}

.banner--container h2 {
	font-weight: normal;
}

.transition--message {
	padding: 50px 0 0 0;
	text-align: center;
}

.text-themed-color {
	color: var(--themed-color);
	line-height: 60px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.icon-line-both::before {
		margin-right: 5px;
	}
	.icon-line-both::after {
		margin-left: 5px;
	}

	.icon-line-both::before,
	.icon-line-both::after {
		width: 30px;
		height: 30px;
	}

	.banner--container {
		padding: 35px 15px;

		.icon-line-both {
			font-size: 16px;
		}
	}

	.transition--message {
		padding-bottom: 0;
	}

	.transition--message h1 {
		margin-bottom: 0;
		padding: 0 10px;
	}
}

/* 外部影響 */

.outerEffect--container {
	text-align: center;
}

.outerEffect--container p {
	text-align: right;
}

.arrow-down {
	text-align: center;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.outerEffect--wrapper {
	text-align: center;
	padding-top: 25px;
}

.outerEffect--inner {
	padding: 50px 70px;
	justify-content: space-around;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.outerEffect--inner {
		padding: 5%;

		.text-small {
			font-size: 12px;
		}
	}

	.image--container {
		margin: 0 auto;
		margin-bottom: 25px;
	}

	.ouuterEffect--content {
		margin: 15px 0 30px 0;

		img {
			margin: 0 auto;
		}
	}

	.outerEffect--container h1 {
		margin-top: 15px;
		margin-bottom: 0px;
	}

	.outerEffect--wrapper h1 {
		margin: 15px 0 15px 0;
	}
}

/* Banner */
.eValue__banner--wrapper {
	margin-top: 35px;
	padding: 0 5%;
	.eValue__banner--container {
		padding: 30px;
		border-radius: 10px;
		border: 10px solid var(--themed-color);
		text-align: center;

		img {
			margin: 0 auto 20px auto;
		}
	}
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.eValue__banner--wrapper {
		padding: 0;

		.eValue__banner--container {
			padding: 10px;

			h1 {
				margin: 0;
			}
		}
	}
}

/* サービス紹介 */
.features--container {
	text-align: center;
	padding: 5%;

	.image--wrapper {
		margin: 5% 0;
		position: relative;

		img {
			margin: 0 auto;
		}
	}

	h2 {
		font-size: 40px;
	}

	.for__pc {
		display: block;
	}

	.for__sp {
		display: none;
	}
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.features--container {
		margin-top: 15px;
		.for__pc {
			display: none;
		}

		.for__sp {
			display: block;
		}

		h2 {
			font-size: var(--fontSize-h1-sp);
		}
	}
}

/* 利用イメージ */

.howtouse--wrapper {
	margin-bottom: 20px;
	border: 40px solid var(--themed-color);
	box-sizing: border-box;

	h1 {
		text-align: center;
	}

	p {
		max-width: 800px;
		margin: 0 auto 35px auto;
	}
}
.slick--container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
.slick-slide {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;

	img {
		width: auto;
		max-width: 100%;
		max-height: 400px;
		margin: 0 auto;
		border-radius: 10px;
		display: block;
	}
}
.slick-prev:before,
.slick-next:before {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	z-index: 1;
}
.slick-dots li button:before {
	color: #333;
	font-size: 20px;
	img {
		max-width: 100%;
		border-radius: 10px;
	}
}
.slick-prev {
	left: -50px;
}

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

.howtouse--wrapper {
	padding: 5% 10%;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.howtouse--wrapper {
		padding: 3% 5%;
		h1 {
			margin-bottom: 15px;
		}
	}

	.slick-slide {
		img {
			max-height: 125px;
		}
	}

	.slick-prev {
		display: none;
	}

	.slick-next {
		display: none;
	}
}

/* よくある質問 */

.Qa--wrapper {
	padding: 35px 0;

	h1 {
		text-align: center;
	}
}

.faq--section {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 10px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item:nth-child(odd) {
	margin-right: 50px;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px 10px 25px;
	width: 100%;
	cursor: pointer;
	font-size: var(--fontSize-p-pc);
	line-height: var(--fontSize-h3-pc);
}

.faq-question:hover,
.faqHeader:hover {
	background-color: #e0f0f0;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #fff;
	padding: 0 10px;
	line-height: var(--fontSize-h3-pc);
}

.faqHeader {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
	cursor: pointer;
}

.faqHeader::after {
	content: '+';
	font-size: 24px;
}

input[type='checkbox'] {
	display: none;
}

input[type='checkbox']:checked ~ .faq-answer {
	max-height: 150px;
	padding: 10px;
	font-size: var(--fontSize-p-pc);
}

input[type='checkbox']:checked + .faqHeader::after {
	content: '-';
}

.faq--section {
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(1, 1fr);
}

.faq-item:nth-child(even),
.faq-item:nth-child(odd) {
	margin-right: 25px;
	padding: 0 3%;
}

input[type='checkbox']:checked ~ .faq-answer {
	font-size: var(--fontSize-p-sp);
	max-height: 155px;
}

/* Contact */

.contact-section {
	text-align: center;
	padding: 5% 0;
	background-color: #e0f8f8;
	margin-top: 40px;

	h2 {
		font-size: var(--fontSize-h1-pc);
		margin-bottom: 40px;
	}

	p {
		font-size: var(--fontSize-h3-pc);
		margin-bottom: 24px;
		line-height: var(--fontSize-h2-pc);
	}
}

.contact-button {
	background-color: #68c1c1;
	color: #fff;
	padding: 15px 30px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	font-size: 16px;
}

.contact-button:hover {
	background-color: #50a1a1;
}

.contact-text {
	margin-bottom: 20px;
}

/* 〜959px：SP
------------------------------ */
@media only screen and (max-width: 959px) {
	.contact-section {
		padding: 10% 0;
		h2 {
			font-size: var(--fontSize-h2-sp);
			font-weight: bold;
		}

		p {
			font-size: var(--fontSize-p-sp);
			font-weight: bold;
		}
	}
	footer {
		text-align: center;
		padding: 25%;
	}
}

footer {
	text-align: center;
	padding: 5% 0;
}
