@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Reem+Kufi&display=swap");

body {
	overflow-x: hidden;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
}

.container {
	margin: 0 auto;
	max-width: 1200px;
	width: calc(100% - 30px);
}

@media screen and (max-width: 767px) {
	.is-pc {
		display: none;
	}
}

.is-sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.is-sp {
		display: block;
	}
}

a:hover {
	opacity: .7;
}

.swiper-container {
	overflow: hidden;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
	width: 100%;
	-webkit-transition: all .4s;
	transition: all .4s;
}

header .container {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 30px 0;
}

@media screen and (max-width: 767px) {
	header .container {
		padding: 15px 0;
	}
}

header .container .header-logo {
	-webkit-transition: all .4s;
	transition: all .4s;
}

@media screen and (max-width: 767px) {
	header .container .header-logo {
		width: 100px;
	}
}

@media screen and (max-width: 767px) {
	header .container .header-logo img {
		width: 100%;
	}
}

header .container .header-logo .logo.passive {
	display: none;
}

header .container .header-logo .logo2 {
	display: none;
}

header .container .header-logo .logo2.active {
	display: block;
}

header .container .header-logo-link {
	-webkit-transition: all .4s;
	transition: all .4s;
}

header .container .header-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	list-style-type: none;
}

@media screen and (max-width: 767px) {
	header .container .header-list {
		display: none;
	}
}

header .container .header-list .header-item:nth-of-type(n + 2) {
	margin-left: 10px;
}

@media screen and (min-width: 1000px) {
	header .container .header-list .header-item:nth-of-type(n + 2) {
		margin-left: 45px;
	}
}

header .container .header-list .header-item .header-item-link {
	color: #fff;
	text-decoration: none;
	font-family: "Reem Kufi", sans-serif;
	font-size: 1.125rem;
	-webkit-transition: all .4s;
	transition: all .4s;
}

header .container .header-list .header-item .header-item-link:not(.header-item-link--green):hover {
	color: #02d963 !important;
}

header .container .header-list .header-item .header-item-link.is-active {
	color: #02d963 !important;
}

header .container .header-list .header-item .header-item-link.is-active.header-item-link--green {
	color: #fff !important;
}

.header-item-link--green {
	padding: 13px 20px;
	border-radius: 2rem;
	background-color: #02d963;
	color: #fff;
}

@media screen and (min-width: 1000px) {
	.header-item-link--green {
		padding: 13px 40px;
	}
}

header.scroll {
	background: #fff;
	box-shadow: #efefef 2px 2px 2px;
}

header.active {
	background: #fff;
	box-shadow: #efefef 2px 2px 2px;
}

.header-item-link.scroll {
	color: #333 !important;
}

.header-item-link.scroll.header-item-link--green {
	color: #fff !important;
}

.header-item-link.active {
	color: #333 !important;
}

.header-item-link.active.header-item-link--green {
	color: #fff !important;
}

.header-sp-button {
	display: inline-block;
	margin-right: 60px;
	padding: 8px 18px;
	border-radius: 2rem;
	background-color: #02d963;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.38;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

@media screen and (min-width: 768px) {
	.header-sp-button {
		display: none;
	}
}

header.active .header-sp-button {
	opacity: 0;
	pointer-events: none;
}

/* ハンバーガーボタン */
.hamburger {
	position: absolute;
	top: 13px;
	right: 0;
	z-index: 10;
	width: 50px;
	height: 45px;
	text-align: center;
	cursor: pointer;
}

.hamburger span {
	position: absolute;
	left: 6px;
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 50px;
	background: #fff;
	-webkit-transition: -webkit-transform .4s ease-in-out;
	transition: -webkit-transform .4s ease-in-out;
	transition: transform .4s ease-in-out;
	transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.hamburger span.scroll {
	background: #8d8d8d;
}

.hamburger span:nth-child(1) {
	top: 10px;
}

.hamburger span:nth-child(2) {
	top: 17px;
	opacity: 1;
}

.hamburger span:nth-child(3) {
	top: 24px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 16px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #8d8d8d;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #8d8d8d;
}

nav.globalMenuSp {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	margin-top: 50px;
	width: 100%;
	background: #ededed;
	color: #fff;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity .4s ease, visibility .4s ease;
	transition: opacity .4s ease, visibility .4s ease;
	pointer-events: none;
}

nav.globalMenuSp ul {
	margin: 40px auto 0;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	padding: 0;
	width: 100%;
	list-style-type: none;
	-webkit-transition: .4s all;
	transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
	background: #ddd;
}

nav.globalMenuSp ul li a {
	display: block;
	padding: 12px 0;
	color: #333;
	text-decoration: none;
	font-family: "Reem Kufi", sans-serif;
	font-size: 1.25rem;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;
	pointer-events: auto;
}

.swiper-container {
	position: relative;
}

.swiper-container .mv-textContent {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 51%;
	color: #fff;
}

@media screen and (max-width: 1280px) {
	.swiper-container .mv-textContent {
		width: 84%;
	}
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-textContent {
		width: 90%;
	}
}

.swiper-container .mv-textContent .mv-lead {
	position: relative;
	padding-bottom: 30px;
	text-align: center;
	font-size: 6.75rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-textContent .mv-lead {
		padding-bottom: 15px;
		white-space: nowrap;
		font-size: 3.375rem;
	}
}

@media screen and (max-width: 374px) {
	.swiper-container .mv-textContent .mv-lead {
		white-space: nowrap;
		font-size: 3.125rem;
	}
}

.swiper-container .mv-textContent .mv-lead::after {
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 2px;
	background: rgba(255, 255, 255, .7);
	content: "";
}

.swiper-container .mv-textContent .mv-text {
	padding: 20px 0 0 70px;
	text-align: center;
	font-size: 3.4375rem;
	letter-spacing: .28em;
	line-height: 1.2363;
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-textContent .mv-text {
		padding: 15px 0 0 25px;
		font-size: 1.75rem;
		letter-spacing: .3em;
	}
}

@media screen and (max-width: 374px) {
	.swiper-container .mv-textContent .mv-text {
		white-space: nowrap;
		font-size: 1.5625rem;
	}
}

.swiper-container .mv-footer {
	position: absolute;
	bottom: 60px;
	left: 50%;
	z-index: 10;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50%;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-footer {
		bottom: 30px;
	}
}

.swiper-container .mv-footer .mv-scroll {
	position: relative;
	text-align: center;
	font-family: "Reem Kufi", sans-serif;
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-footer .mv-scroll {
		font-size: .6875rem;
	}
}

.swiper-container .mv-footer .mv-scroll::after {
	position: absolute;
	bottom: -68px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: #fff;
	content: "";
}

@media screen and (max-width: 767px) {
	.swiper-container .mv-footer .mv-scroll::after {
		bottom: -35px;
		height: 30px;
	}
}

.swiper-slide1 {
	background: url(../img/main.png) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
	.swiper-slide1 {
		background: url(../img/main.png) 20% center/cover no-repeat;
	}
}

.swiper-slide2 {
	background: url(../img/main2.png) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
	.swiper-slide2 {
		background: url(../img/main2.png) 80% center/cover no-repeat;
	}
}

.swiper-slide3 {
	position: relative;
	z-index: -10;
	background: url(../img/main3.png) center center/cover no-repeat;
}

.swiper-slide3::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	content: "";
}

.mv {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	height: 900px;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.mv {
		height: 510px;
	}
}

.mv .mv-scroll {
	position: relative;
	padding-bottom: 68px;
	text-align: center;
	font-family: "Reem Kufi", sans-serif;
}

@media screen and (max-width: 767px) {
	.mv .mv-scroll {
		padding-bottom: 35px;
		font-size: .6875rem;
	}
}

.mv .mv-scroll::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: #fff;
	content: "";
}

@media screen and (max-width: 767px) {
	.mv .mv-scroll::after {
		height: 30px;
	}
}

.section-title {
	font-family: "Reem Kufi", sans-serif;
	font-size: 4.875rem;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	.section-title {
		font-size: 2.625rem;
	}
}

.section-text {
	margin-top: 13px;
	color: #02d963;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.section-text {
		margin-top: 5px;
		font-size: .75rem;
	}
}

.vision {
	padding: 118px 0 96px;
}

@media screen and (max-width: 767px) {
	.vision {
		padding: 38px 0 50px;
	}
}

.vision .container {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

@media screen and (max-width: 767px) {
	.vision .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
}

.vision .container::after {
	position: absolute;
	z-index: -10;
	background: url(../img/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
}

@media screen and (min-width: 768px) {
	.vision .container::after {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.vision .container::after {
		top: 0;
		right: 0;
		width: 145px;
		height: 148px;
	}
}

.vision .container .vision-right {
	margin-left: 150px;
}

@media screen and (max-width: 1280px) {
	.vision .container .vision-right {
		margin-left: 80px;
	}
}

@media screen and (max-width: 767px) {
	.vision .container .vision-right {
		margin: 30px 0 0 0;
	}
}

.vision .container .vision-right .vision-lead {
	font-size: 2.5rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.vision .container .vision-right .vision-lead {
		font-size: 1.375rem;
	}
}

.vision .container .vision-right .vision-lead:nth-of-type(2) {
	position: relative;
	right: 23px;
	margin-top: 23px;
}

@media screen and (max-width: 767px) {
	.vision .container .vision-right .vision-lead:nth-of-type(2) {
		right: 0;
		margin-top: 10px;

		-webkit-font-feature-settings: "palt";
		font-feature-settings: "palt";
	}
}

.vision .container .vision-right .vision-lead .vision-lead-inline {
	color: #02d963;
}

.vision .container .vision-right .vision-text {
	position: relative;
	margin-top: 48px;
	font-weight: 500;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.vision .container .vision-right .vision-text {
		margin-top: 28px;
		font-size: .875rem;
	}
}

.vision .container .vision-right .vision-text::after {
	position: absolute;
	bottom: 5px;
	left: -430px;
	z-index: -10;
	width: 290px;
	height: 295px;
	background: url(../img/bg.png) left center/cover no-repeat;
	content: "";
}

@media screen and (max-width: 1280px) {
	.vision .container .vision-right .vision-text::after {
		left: -360px;
	}
}

@media screen and (max-width: 767px) {
	.vision .container .vision-right .vision-text::after {
		display: none;
	}
}

.message {
	position: relative;
	padding: 100px 0 105px;
}

@media screen and (max-width: 767px) {
	.message {
		padding: 50px 0;
	}
}

.message::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;
	width: 80%;
	height: 45%;
	background: #ededed;
	content: "";
}

@media screen and (max-width: 1280px) {
	.message::after {
		width: 100%;
		height: 34.5%;
	}
}

.message .container {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

@media screen and (max-width: 1280px) {
	.message .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
}

.message .container .message-box {
	box-sizing: border-box;
	margin-top: 40px;
	padding: 35px 25px 40px;
	width: 400px;
	background: #fff;
}

@media screen and (max-width: 1280px) {
	.message .container .message-box {
		margin-top: 30px;
		padding: 20px 13px 18px;
	}
}

@media screen and (max-width: 767px) {
	.message .container .message-box {
		width: 100%;
	}
}

.message .container .message-box .message-logo {
	position: relative;
	padding-bottom: 18px;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.message .container .message-box .message-logo {
		margin: 0 auto;
		padding-bottom: 10px;
		width: 150px;
	}
}

@media screen and (max-width: 1280px) {
	.message .container .message-box .message-logo img {
		width: 100%;
	}
}

.message .container .message-box .message-logo::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #02d963;
	content: "";
}

@media screen and (max-width: 1280px) {
	.message .container .message-box .message-logo::after {
		left: -50%;
		width: 200%;
	}
}

.message .container .message-box .message-lead {
	padding-top: 20px;
	color: #02d963;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
	.message .container .message-box .message-lead {
		padding-top: 10px;
		font-size: .75rem;
	}
}

.message .container .message-box .message-boxText {
	padding-top: 20px;
	font-weight: 500;
	line-height: 1.625;
}

@media screen and (max-width: 1280px) {
	.message .container .message-box .message-boxText {
		padding-top: 13px;
		font-size: .875rem;
		line-height: 1.5;
	}
}

.message .container .message-right {
	margin-left: 100px;
}

@media screen and (min-width: 1281px) {
	.message .container .message-right {
		position: absolute;
		right: -200px;
	}
}

@media screen and (max-width: 1280px) {
	.message .container .message-right {
		margin: 50px 0 0 0;
	}
}

@media screen and (max-width: 1280px) {
	.message .container .message-right .message-picture img {
		width: 100%;
	}
}

.message .container .message-right .message-description {
	position: relative;
	bottom: 1px;
	padding: 13px 0 13px 30px;
	background: #02d963;
	color: #fff;
	font-size: .875rem;
}

@media screen and (max-width: 1280px) {
	.message .container .message-right .message-description {
		padding: 10px 0 10px 12px;
		font-size: .625em;
	}
}

.message .message-textContent {
	position: relative;
	margin: 140px auto 0;
	padding: 0 15px;
	max-width: 1200px;
}

@media screen and (max-width: 767px) {
	.message .message-textContent {
		margin: 58px auto 0;
	}
}

.message .message-textContent::after {
	position: absolute;
	right: -184px;
	bottom: 60px;
	width: 1255px;
	height: 245px;
	background: url(../img/bg2.png) left center/cover no-repeat;
	content: "";
}

@media screen and (max-width: 1280px) {
	.message .message-textContent::after {
		right: 0;
		bottom: 60px;
		width: 340px;
		height: 65px;
	}
}

@media screen and (max-width: 374px) {
	.message .message-textContent::after {
		right: 0;
		bottom: 20px;
		max-width: 97vw;
		height: 65px;
	}
}

.message .message-textContent .message-text {
	margin: 0 auto;
	max-width: 995px;
	font-weight: 500;
	line-height: 2;
}

@media screen and (max-width: 1280px) {
	.message .message-textContent .message-text {
		font-size: .875rem;
	}
}

.message .message-textContent .message-text:nth-of-type(n + 2) {
	margin-top: 35px;
}

@media screen and (max-width: 1280px) {
	.message .message-textContent .message-text:nth-of-type(n + 2) {
		margin-top: 43px;
	}
}

.service {
	padding: 100px 0;
	background: #ededed;
}

@media screen and (max-width: 767px) {
	.service {
		padding: 50px 0;
	}
}

.service .service-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

@media screen and (max-width: 1280px) {
	.service .service-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
}

.service .service-box .service-right {
	margin-left: 95px;
}

@media screen and (max-width: 1280px) {
	.service .service-box .service-right {
		margin: 28px 0 0 0;
	}
}

.service .service-box .service-right .service-title {
	font-size: 1.25rem;
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
	.service .service-box .service-right .service-title {
		font-size: 1rem;
		line-height: 1.25rem;
	}
}

.service .service-box .service-right .service-text {
	margin-top: 20px;
	line-height: 1.625;
}

@media screen and (max-width: 1280px) {
	.service .service-box .service-right .service-text {
		margin-top: 13px;
		font-size: .875rem;
		line-height: 1.5;
	}
}

.service .service-box2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 90px;
}

@media screen and (max-width: 1280px) {
	.service .service-box2 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		flex-direction: column;
		margin-top: 30px;
	}
}

.service .service-box2 .service-group {
	width: 29%;
}

@media screen and (max-width: 1280px) {
	.service .service-box2 .service-group {
		width: 100%;
	}
}

@media screen and (max-width: 1280px) {
	.service .service-box2 .service-group:nth-of-type(n + 2) {
		margin-top: 40px;
	}
}

.service .service-box2 .service-group:nth-of-type(n + 2) .service-lead {
	margin-top: 20px;
}

.service .service-box2 .service-group:nth-of-type(n + 2) .service-groupText {
	margin-top: 25px;
}

.service .service-box2 .service-group .service-picture {
	position: relative;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.service .service-box2 .service-group .service-picture {
		margin: 0 auto;
		width: 170px;
	}
}

@media screen and (max-width: 767px) {
	.service .service-box2 .service-group .service-picture img {
		width: 100%;
	}
}

.service .service-box2 .service-group .service-picture .service-image {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
	.service .service-box2 .service-group .service-picture .service-image {
		width: 70%;
	}
}

.service .service-box2 .service-group .service-picture .service-number {
	position: absolute;
	top: 0;
	right: 65px;
	color: #02d963;
	font-size: 4rem;
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
	.service .service-box2 .service-group .service-picture .service-number {
		right: 40%;
	}
}

@media screen and (max-width: 767px) {
	.service .service-box2 .service-group .service-picture .service-number {
		right: 10%;
		font-size: 2.5rem;
	}
}

.service .service-box2 .service-group .service-lead {
	margin-top: 40px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.6;
}

@media screen and (max-width: 1280px) {
	.service .service-box2 .service-group .service-lead {
		margin-top: 8px;
		font-size: 1rem;
	}
}

.service .service-box2 .service-group .service-groupText {
	margin-top: 40px;
	font-weight: 500;
	line-height: 1.625;
}

@media screen and (max-width: 1280px) {
	.service .service-box2 .service-group .service-groupText {
		margin: 18px auto 0;
		width: 88%;
		font-size: .875em;
		line-height: 1.5;
	}
}

.company {
	padding: 100px 0;
}

@media screen and (max-width: 767px) {
	.company {
		padding: 50px 0 60px;
	}
}

.company .container {
	padding: 0;
}

.company .container .company-pictureArea {
	position: relative;
	margin-top: 95px;
}

@media screen and (max-width: 767px) {
	.company .container .company-pictureArea {
		margin-top: 123px;
	}
}

@media screen and (max-width: 767px) {
	.company .container .company-pictureArea .company-picture {
		width: 66.6666%;
	}
}

@media screen and (max-width: 767px) {
	.company .container .company-pictureArea .company-picture img {
		width: 100%;
	}
}

.company .container .company-pictureArea .company-picture2 {
	position: absolute;
	top: -195px;
	right: -200px;
	z-index: -10;
	overflow-x: hidden;
}

@media screen and (max-width: 1280px) {
	.company .container .company-pictureArea .company-picture2 {
		top: -90px;
		right: 0;
		width: 66.6666%;
	}
}

@media screen and (max-width: 767px) {
	.company .container .company-pictureArea .company-picture2 {
		right: -15px;
	}
}

@media screen and (max-width: 767px) {
	.company .container .company-pictureArea .company-picture2 img {
		width: 100%;
	}
}

.company .container .company-table {
	margin: 80px auto 0;
	max-width: 995px;
	width: 100%;
	border-collapse: collapse;
}

@media screen and (max-width: 767px) {
	.company .container .company-table {
		margin: 43px auto 0;
	}
}

.company .container .company-table tr {
	border-top: 1px solid #ccc;
}

.company .container .company-table tr:last-of-type {
	border-bottom: 1px solid #ccc;
}

.company .container .company-table tr th {
	padding-left: 35px;
	width: 25%;
	vertical-align: middle;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.company .container .company-table tr th {
		padding: 0;
		width: 35%;
		font-size: 1rem;
	}
}

.company .container .company-table tr td {
	padding: 40px 0;
	font-weight: 500;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.company .container .company-table tr td {
		padding: 16px 0;
		font-size: .875rem;
		line-height: 1.5;
	}
}

.company .container .company-table tr td .table-inline {
	color: #bbb;
	font-size: .875rem;
}

@media screen and (max-width: 767px) {
	.company .container .company-table tr td .table-inline {
		font-size: .625rem;
	}
}

.company .container .company-table tr td .table-link {
	display: inline-block;
	border-bottom: 1px solid #02d963;
	color: #02d963;
	text-decoration: none;
	-webkit-transition: all .4s;
	transition: all .4s;
}

@media screen and (max-width: 767px) {
	.blog {
		padding: 50px 0 60px;
	}
}

.blog .service-right {
	width: 100%;
}

.blog .fb-page {
	display: block;
	width: 500px;
}

@media screen and (max-width: 767px) {
	.blog .fb-page {
		max-width: 500px;
		width: 100%;
	}
}

footer {
	padding: 25px 0;
}

@media screen and (max-width: 767px) {
	footer {
		padding: 10px 0;
	}
}

footer .copyright {
	color: #888;
	text-align: center;
	font-family: "Reem Kufi", sans-serif;
	font-size: .875rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	footer .copyright {
		font-size: .625rem;
	}
}

.to-top {
	position: fixed;
	right: 100px;
	bottom: 80px;
	z-index: 100;
	display: none;
}

@media screen and (max-width: 767px) {
	.to-top {
		right: 22px;
		bottom: 40px;
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width: 767px) {
	.to-top img {
		width: 100%;
	}
}

.to-top .to-top-text {
	position: fixed;
	right: 115px;
	bottom: 105px;
	display: block;
	color: #fff;
	text-decoration: none;
	font-family: "Reem Kufi", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.to-top .to-top-text {
		right: 32px;
		bottom: 56px;
		font-size: .75rem;
	}
}

.is-show {
	display: block !important;
}

.is-hide {
	display: none !important;
}

.mv-side {
	position: absolute;
	right: 0;
	bottom: 45px;
	left: 0;
	z-index: 10;
	margin: auto;
	width: 100%;
}

@media screen and (min-width: 1281px) {
	.mv-side {
		bottom: 55px;
	}
}

.mv-sideInner {
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	margin: auto;
}

@media screen and (min-width: 1281px) {
	.mv-sideInner {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		padding: 0 124px;
		max-width: 1186px;
	}
}

.mv-bannerBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;

	gap: 20px;
}

@media screen and (min-width: 1281px) {
	.mv-bannerBox {
		gap: 40px;
	}
}

.mv-bannerWrapper {
	max-width: 74px;
	width: 100%;
}

@media screen and (min-width: 1281px) {
	.mv-bannerWrapper {
		max-width: 168px;
	}
}

.mv-banner {
	display: block;
	max-width: 100%;
	width: 100%;
}

.mv-sideText {
	-webkit-transform: scale(.7);
	transform: scale(.7);
	-webkit-transform-origin: center top;
	transform-origin: center top;
	margin-top: 4px;
	color: #fff;
	text-align: right;
	font-size: .625rem;
	line-height: 1.5em;
}

@media screen and (min-width: 1281px) {
	.mv-sideText {
		-webkit-transform: scale(1);
		transform: scale(1);
		margin-top: 20px;
		text-align: center;
	}
}

.award {
	padding-top: 65px;
	padding-bottom: 100px;
}

.award-body {
	margin-top: 32px;
}

@media screen and (min-width: 768px) {
	.award-body {
		margin-top: 35px;
	}
}

.award-text {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: normal;
}

@media screen and (max-width: 1280px) {
	.award-text {
		font-size: 1rem;
		letter-spacing: -.4px;
		line-height: 1.25rem;
	}
}

.award-text--large {
	margin-top: 14px;
	color: #02d963;
	text-align: center;
	font-size: 1.375rem;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.award-text--large {
		margin-top: 25px;
		font-size: 2.5rem;
	}
}

.award-box {
	margin: 60px auto 0;
	max-width: 375px;
}

@media screen and (min-width: 768px) {
	.award-box {
		margin: 90px auto 0;
		max-width: none;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}

.award-bannerBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;

	gap: 40px;
}

@media screen and (min-width: 768px) {
	.award-bannerBox {
		gap: 150px;
	}
}

.award-bannerWrapper {
	max-width: 124px;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.award-bannerWrapper {
		max-width: 280px;
	}
}

.award-banner {
	display: block;
	max-width: 100%;
	width: 100%;
}

.award-footer {
	margin-top: 36px;
	padding: 0 10px;
	text-align: center;
	text-align: right;
	font-size: .625rem;
	line-height: 1.3;
}

@media screen and (min-width: 768px) {
	.award-footer {
		margin-top: 70px;
	}
}

.product {
	padding: 100px 0;
}

@media screen and (max-width: 767px) {
	.product {
		padding: 50px 0;
	}
}

.product-inner {
	padding: 0 18px;
}

@media screen and (min-width: 1281px) {
	.product-inner {
		margin-left: calc((100% - 1200px) / 2);
		padding: 0;
	}
}

.product-body {
	margin-top: 30px;
}

@media screen and (min-width: 1281px) {
	.product-body {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		margin-top: 40px;
	}
}

.product-right {
	margin-top: 30px;
}

@media screen and (min-width: 1281px) {
	.product-right {
		margin-top: 0;
		width: 64%;
	}
}

.product-right img {
	width: 100%;
}

.product-left {
	margin-top: 30px;
}

@media screen and (min-width: 1281px) {
	.product-left {
		margin-top: 0;
		padding-top: 8px;
		width: 40%;
	}
}

.product-lead {
	font-size: 1.375rem;
}

@media screen and (min-width: 768px) {
	.product-lead {
		font-size: 2.5rem;
		line-height: 1.5;
	}
}

.product-lead-inline {
	color: #02d963;
}

.product-text {
	margin-top: 30px;
	font-size: .875rem;
	line-height: 1.85;
}

@media screen and (min-width: 768px) {
	.product-text {
		margin-top: 25px;
		max-width: 390px;
		font-size: 1rem;
		line-height: 1.625;
	}
}

.product-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	box-sizing: border-box;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
	padding: 16px;
	max-width: 310px;
	width: 100%;
	border-radius: 2rem;
	background-color: #02d963;
	text-align: center;
	text-decoration: none;

	gap: 24px;
}

@media screen and (min-width: 768px) {
	.product-link {
		margin-left: initial;
	}
}

.product-linkText {
	display: inline-block;
	margin-left: 10px;
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.product-linkText {
		margin-left: 15px;
		font-size: 18px;
	}
}

.product-linkImg {
	display: inline-block;
	width: 12px;
}

.product-linkImg img {
	max-width: 100%;
	width: 100%;
}

.p-privacy__head {
	padding-top: 100px;
	padding-bottom: 40px;
	background-color: #ededed;
}

@media screen and (min-width: 768px) {
	.p-privacy__head {
		padding-top: 200px;
		padding-bottom: 100px;
	}
}

.p-privacy__head-inner {
	padding-right: 16px;
	padding-left: 16px;
}

@media screen and (min-width: 768px) {
	.p-privacy__head-inner {
		margin-right: auto;
		margin-left: auto;
		max-width: 1200px;
	}
}

.p-privacy__body {
	padding: 60px 0;
	background-color: #fff;
}

@media screen and (min-width: 768px) {
	.p-privacy__body {
		padding: 100px 0;
	}
}

.c-section-title {
	color: #02d963;
	text-transform: uppercase;
	font-family: "Reem Kufi", sans-serif;
	font-size: 32px;
	line-height: 1;
}

@media screen and (min-width: 768px) {
	.c-section-title {
		font-size: 78px;
	}
}

.c-section-sub-title {
	margin-top: 5px;
	padding-left: 5px;
	font-size: 12px;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.c-section-sub-title {
		margin-top: 13px;
		font-size: 16px;
	}
}

.p-privacy__data-row {
	line-height: 2;
}

.p-privacy__data-row + .p-privacy__data-row {
	margin-top: 20px;
}

.p-privacy__data-heading {
	font-size: 16px;
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	.p-privacy__data-heading {
		font-size: 20px;
	}
}

.p-privacy__data-term {
	font-size: 16px;
	font-weight: bold;
}

.p-privacy__data-desc {
	font-size: 14px;
}

.p-privacy__data-term + .p-privacy__data-desc {
	margin-top: 15px;
}

@media screen and (min-width: 768px) {
	.p-privacy__data-term + .p-privacy__data-desc {
		margin-top: 5px;
	}
}