@charset "UTF-8";

/* ====================================
	共通
==================================== */
/*フォント*/
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

html{
	font-size:62.5%;
	line-height:240%;
	box-sizing:border-box;
	overflow-x:hidden;
}
body{
	margin:0;
	padding:0;
	color:#222222;
	font-size:1.6rem;
	line-height:2.6rem;
	font-weight:400;
	font-family:"Noto Sans JP", sans-serif;
	letter-spacing:0.04em;
	background:#f7f9fb;
	word-break:break-all;
	box-sizing:border-box;
	position:relative;
	overflow-x: hidden;
}
*{ box-sizing:border-box; }
.hiddenText,
.hiddenText a{
	width:0px;
	height:0px;
	overflow:hidden;
	position:absolute;
}
a{ color:#222222; transition:all .3s ease; text-decoration:none; }
a:hover{ color:inherit; transition:all .3s ease; text-decoration:none; }

a[href*="tel:"]{
	text-decoration:none;
}
@media screen and (min-width:1024px) {
	/*電話*/
	a[href*="tel:"] {
		pointer-events:none;
		cursor:default;
	}
}
address{ font-style:normal; }
b, strong{
	font-weight:bold;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5,h6,
p,dl,ul,ol{ margin:0; padding:0; }
dd,dt{ margin-bottom:0; margin-left:0; }
dt{ font-weight:500; }
ul{ list-style:none; }

/* マウスクリック時 */
a:focus:focus:not(:focus-visible),
svg:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
button:focus:not(:focus-visible){
	outline:none;
}
button,
input,
select,
textarea {
	background-color: #fff;
}
input,
select,
textarea {padding: 5px 10px;}

::placeholder {
  color: #888;
}
em{
	font-style:normal;
	display:block;
}
/*英字指定*/
.en{ font-family:"Lexend"; }

/*赤字*/
.red{ color:#ff1b42; }
/* タブ移動時 */
svg:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible{
	border:2px solid #222222!important;
}


/* ====== *ボタンのベーススタイル* ====== */
.st-btn{ margin-top:70px; position:relative; }
.st-btn a{
	min-width:315px;
	margin:0 auto;
	padding: 16px 60px 16px 30px;
	display:inline-block;
	color:#000;
	font-size: 1.8rem;
	text-align:left;
	border-radius:50px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 116, 191, .1);
	position:relative;
	transition:all .3s ease;
}
.st-btn a:after{
	content:"";
	width:50px;
	height:50px;
	padding:22px;
	border-radius:50%;
	background:linear-gradient(45deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	position:absolute;
	top:50%;
	right:6px;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transition:all .3s ease;
	z-index: 0;
}
.st-btn a:before{
	content: "";
	display: block;
	width: 22px;
	height: 14px;
	background: #fff;
	-webkit-mask-image: url(../img/standard-arrow.svg);
	mask-image: url(../img/standard-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 14px 14px;
	mask-size: 14px 14px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	transition: all .3s;
	z-index: 1;
}
.st-btn a:hover:after{
	width:60px;
	height:60px;
	right: 0px;
}
@media print, screen and (max-width:786px){
	.st-btn{margin-top: 40px;}
	.st-btn a{
		font-size: 1.6rem;
	}
}

/* ====== *見出し* ====== */

.grdText{
	background:linear-gradient(45deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
}
/*見出し*/
.main-heading{
	margin-bottom: 40px;
	font-size:2.2rem;
	font-weight:400;
	color: #373737;
}
.main-heading span{
	font-size:12rem;
	line-height:12rem;
	font-weight:400;
	letter-spacing:-0.02em;
	margin-bottom: 10px;
}
@media print, screen and (max-width: 1240px){
	.main-heading{
		font-size: 2rem;
	}
	.main-heading span{
		font-size:9rem;
		line-height:9rem;
	}
}
@media print, screen and (max-width:900px){
	.main-heading span{
		font-size:7rem;
		line-height:7rem;
		margin-bottom: 5px;
	}
}
@media print, screen and (max-width:600px){
	.main-heading{
		font-size:1.8rem;
	}
	.main-heading span{
		font-size:6rem;
		line-height:6rem;
	}
}
@media print, screen and (max-width:400px){
	.main-heading span{
		font-size:5rem;
		line-height:5rem;
	}
}

.grd-sub-heading{
	padding: 15px 20px;
	margin-bottom:40px;
	font-size:2.8rem;
	line-height: 3.4rem;
	font-weight:500;
	color:#fff;
	border-radius:5px;
	letter-spacing:0.06em;
	background: linear-gradient(45deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
}
@media print, screen and (max-width:600px){
	.grd-sub-heading{
		padding:10px 20px;
		margin-bottom: 30px;
		font-size:2.2rem;
		line-height:2.8rem;
	}
}

@media print, screen and (min-width:767px){
	.sp-only,
	.sp-break{ display:none; }
}
@media print, screen and (max-width:786px){
	.pc-only,
	.pc-break{ display:none; }
}

/*外部リンクアイコンのテキスト*/
.out-link-list a{ display:flex; color:#333; font-size:1.5rem; gap:10px; align-items:center; }
.out-link-list a:after{
	content:"";
	display:inline-block;
	width: 14px;
	height: 14px;
	background: #333333;
	-webkit-mask-image: url(../img/out-link.svg);
	mask-image: url(../img/out-link.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 14px 14px;
	mask-size: 14px 14px;
}

/*文字のカーテンアニメーション*/
.bg-animation:before{
	content:"";
	width:100%;
	height:100%;
	display:block;
	padding: 0 .1em;
	background-image: linear-gradient(#0074bf, #0074bf);
	background-repeat: no-repeat;
	background-size: 0% 1.1em;
	background-position: left 80%;
	z-index: 2;
	position: relative;
}
.bg-animation{
	position: relative;
	display: inline-block;
	padding: 0 .1em;
	opacity: 0; /* 文字は最初消す */
}

/* 背景 */
.inviewArea .bg-animation::before{
	content:"";
	position: absolute;
	left: 0;
	bottom: 0.1em;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#0074bf, #0074bf);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-position: left bottom;
	z-index: 1;
}
/* inviewで発火 */
.inviewArea.is-inview .bg-animation::before{ animation: bgSpan 1.4s ease forwards; }

/* 文字 */
.inviewArea.is-inview .bg-animation{
	animation: textIn 0.4s ease 0.4s forwards;
}
/* 背景アニメ */
@keyframes bgSpan{
	0%{
		background-size: 0% 100%;
		background-position: left bottom;
	}
	55%{
		background-size: 100% 100%;
		background-position: left bottom;
	}
	100%{
		background-size: 0% 100%;
		background-position: right bottom;
	}
}
/* 文字表示 */
@keyframes textIn{
	to{
		opacity: 1;
	}
}




/* ====================================
	グローバルナビゲーション
==================================== */

header{
	width:calc(100% - 40px);
	height: 86px;
	display:flex;
	border-radius:5px;
	justify-content:space-between;
	align-items:center;
	background:#fff;
	padding:15px 20px;
	position:fixed;
	top:20px;
	left:20px;
	box-shadow:0 0 10px rgba(0, 116, 191, .1);
	z-index:999;
}
header > div{
	display:flex;
	align-items:center;
}
header > div > ul{
	display:flex;
	gap:8px;
	margin-right:30px;
}


header > div > ul > li > a,
header > div > ul > li > button{
	border-radius:5px;
	font-size:1.7rem;
	padding: 10px 42px 10px 15px;
	display:flex;
	align-items:center;
	position:relative;
	border:1px solid #0074bf;
	transition:all .3s;
}
header > div > ul > li > a{
	width:150px;
	color:#fff;
	background: linear-gradient(130deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	background-position:right bottom;
	transition: background-position .3s ease;
}
header > div > ul > li > button{
	width: 230px;
	color:#0074bf;
	background:#fff;
}
header > div > ul > li > a:before,
header > div > ul > li > button:before{
	content:"";
	display:block;
	width:20px;
	height:20px;
	border-radius:50%;
	background:#fff;
	position:absolute;
	right:15px;
	transition:all .3s;
}
header > div > ul > li > a:after,
header > div > ul > li > button:after{
	content:"";
	display:block;
	right:15px;
	position:absolute;
	transition:all .3s;
}
header > div > ul > li > button:after{
	width:20px;
	height:8px;
	background:#0074bf;
	-webkit-mask-image:url('../img/simple-arrow.svg');
	mask-image:url(
	'../img/simple-arrow.svg');
	-webkit-mask-repeat:no-repeat;
	mask-repeat:no-repeat;
	-webkit-mask-position:center;
	mask-position:center;
	-webkit-mask-size:8px 8px;
	mask-size:8px 8px;
}
header > div > ul > li > a:after{
	width: 20px;
	height:8px;
	background:linear-gradient(130deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	-webkit-mask-image:url('../img/standard-arrow.svg');
	mask-image:url('../img/standard-arrow.svg');
	-webkit-mask-repeat:no-repeat;
	mask-repeat:no-repeat;
	-webkit-mask-position:center;
	mask-position:center;
	-webkit-mask-size:8px 8px;
	mask-size:8px 8px;
}

header > div > ul > li > button:before{ border:1px solid #0074bf; }
header > div > ul > li > button:after{ transform:rotate(90deg); }

header > div > ul > li > a:hover{ color:#fff;
	background-size: 200% 200%;
}
header > div > ul > li > a:hover:before,
header > div > ul > li > button:hover:before,
header > div > ul > li > a:hover:after,
header > div > ul > li > button:hover:after{
	right: 10px;
}
header > div > ul > li > button:hover{
	color:#fff;
	background:#0074bf;
}

@media print,screen and (max-width:1024px){
	header > div > ul{ display:none; }
}

/*ハンバーガーメニュー*/
.hamburger{
	height:48px;
	width:48px;
	padding:0;
	cursor:pointer;
	border-radius:8px;
	z-index:9999;
	position:relative;
	border:0;
}
.hamburger > span{
	width:40px;
	height:2px;
	background:#0074bf;
	display:inline-block;
	transition:all .3s ease;
	left:4px;
	position:absolute;
}
.hamburger span:nth-of-type(1){
	top:14px;
}
.hamburger span:nth-of-type(2){
	top:24px;
}
.hamburger:after{
	width:100%;
	content:"メニュー";
	color:#0074bf;
	position:absolute;
	font-size:1rem;
	line-height:1rem;
	font-weight:500;
	letter-spacing:0.04em;
	bottom:0px;
	right:0;
	text-align:center;
}


/*閉じてるとき*/
.hamburger[aria-expanded="true"] span:nth-of-type(1){
	-webkit-transform:rotate(35deg);
	transform:rotate(35deg);
	top:16px;
}
.hamburger[aria-expanded="true"] span:nth-of-type(2){
	-webkit-transform:rotate(-35deg);
	transform:rotate(-35deg);
	top:16px;
}
.hamburger[aria-expanded="true"]:after{
	content:"閉じる";
}
.logo{ display:flex; align-items:center; }
.logo img{ margin-right:15px; max-height:60px; max-width:80px; }
.logo strong{
	padding:5px 10px;
	color:#fff;
	font-size:1.6rem;
	font-weight:500;
	border-radius:5px;
	background:#0074bf;
	letter-spacing:0.06em;
}
@media print, screen and (max-width:768px){
	header{
		width: calc(100% - 20px);
		height:70px;
		padding:10px 15px;
		top: 10px;
		left: 10px
	}
	header .logo img {
		margin-right: 10px;
		max-height: 50px;
		max-width: 60px;
	}
	.logo strong{ font-size:1.4rem; }
}


#js-menu-last { display:none; }

.mainmenu{
	width: 50vw;
	max-width:500px;
	height:100vh;
	padding: 90px 50px 50px;
	position:fixed;
	top:0;
	right:0;
	background: #f7f9fb;
	transition:transform .3s ease;
	transform:translateX(100%);
	overflow-y: auto;
	z-index: 999
}

@media print, screen and (max-width:900px){
	.mainmenu{ width:90vw; }
}
.menu-overlay{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.4);
	opacity:0;
	visibility:hidden;
	transition:opacity .3s;
	z-index:998;
}
.menu-overlay.open{
	opacity:1;
	visibility:visible;
}

/* 開いた状態 */
.mainmenu.open{ transform:translateX(0); }

/* エントリーボタン */
.mainmenu .ent-button{ margin-top:40px; }
.mainmenu .ent-button a{
	width:100%;
	display:block;
	padding: 15px 50px 15px 24px;
	border-radius:10px;
	color:#fff;
	background: linear-gradient(45deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	background-position:right bottom;
	position: relative;
	transition: background-position .3s ease;
}
.mainmenu .ent-button a:after{
	content: "";
	display: block;
	width: 35px;
	height: 12px;
	background:linear-gradient(130deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	-webkit-mask-image:url('../img/standard-arrow.svg');
	mask-image:url('../img/standard-arrow.svg');
	-webkit-mask-repeat:no-repeat;
	mask-repeat:no-repeat;
	-webkit-mask-position:center;
	mask-position:center;
	-webkit-mask-size:8px 8px;
	mask-size: 12px 12px;
	position: absolute;
	top:50%;
	right: 25px;
	transition: all .3s;
	transform: translateY(-50%);
}
.mainmenu .ent-button a:before {
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top:50%;
	right: 25px;
	transition: all .3s;
	transform: translateY(-50%);
}
.mainmenu .ent-button span{
	display: block;
	margin-bottom:20px;
	font-size:4.6rem;
	line-height:4.6rem;
	font-weight: 500;
}
.mainmenu .ent-button strong{
	font-size: 1.5rem;
	font-weight:500;
}
.mainmenu .ent-button a:hover{
	background-size: 200% 200%;
}
.mainmenu .ent-button a:hover:before,
.mainmenu .ent-button a:hover:after{
	right: 15px;
}

.mainmenu .out-link-list{
	margin-top:20px;
}
.mainmenu-list .grdText{
	display:block;
	font-size: 3.6rem;
	line-height: 3.6rem;
	font-weight: 500;
	letter-spacing: -0.02em;
}
.mainmenu-list > ul + ul{
	margin-top: 30px;
}
.mainmenu-list > ul > li > a,
.mainmenu-list > ul > li > p{
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
	font-size: 1.5rem;
	position:relative;
}

.mainmenu-list > ul > li > a:after{
	content: "";
	display: block;
	width: 20px;
	height: 12px;
	background: #0074bf;
	-webkit-mask-image: url(../img/simple-arrow.svg);
	mask-image: url(../img/simple-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 12px 12px;
	mask-size:12px 12px;
	transition: all .3s;
	position: absolute;
	top:50%;
	right:10px;
	transform: translateY(-50%);
}
.mainmenu-list > ul > li > a:hover:after{
	right:0;
}

.mainmenu-list .sub-menu li a{
	color:#666666;
}
.mainmenu-list li + li{
	margin-top:10px;
}
.sub-menu> li > ul{ margin-top:10px; text-indent:-1em; padding-left:1em; }
.sub-menu> li > ul > li:before{
	content:"・";
	color:#0074bf;
}

/*メニューのホバー時*/
.mainmenu-list .sub-menu a:hover,
.out-link-list li a:hover{
	color:#222;
	text-decoration:underline;
}

.has-child{ position:relative; }

/*子メニュー*/
.child-menu{
	display:none;
	width: 100%;
	padding: 20px 40px 20px 20px;
	border-radius:5px;
	background:#fff;
	box-shadow:0 0 10px rgba(0, 116, 191, .1);
	position:absolute;
	left: 50%;
	top: 49px;
	transform: translateX(-50%);
}
.child-btn.open + .child-menu{ display:flex; }


.child-menu li a{
	display: block;
	color:#0074bf;
	font-size:1.5rem;
	position:relative;
}
.child-menu li + li{
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px solid #ccc;
}
.child-menu li a:hover{
	color:#222;
	text-decoration:underline;
}
.child-menu li a:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #0074bf;
	-webkit-mask-image: url(../img/simple-arrow.svg);
	mask-image: url(../img/simple-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 10px 10px;
	mask-size: 10px 10px;
	transition: all .3s;
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}



/* ====================================
	フッター
==================================== */
footer{ padding:90px 100px; background:#fff; }

footer > nav,
footer > nav > div,
footer > nav > div > ul,
footer > div,
footer > div > ul{ display:flex; }

footer > div,
footer > nav{ justify-content:space-between; gap:100px; }
footer > nav > div{ gap:30px; }
footer > nav > div > ul{width: calc((100% - 90px) / 4);}


footer > nav > div:nth-of-type(1){width:calc(100% - 387px);max-width: 60%;}
footer > nav > div > ul > li{ width:100%; }
footer > nav > div > ul > li > span,
footer > nav > div > ul > li > a{
	width: 100%;
	display: block;
	font-size:1.8rem;
	line-height:2.9rem;
	position:relative;
	padding-right: 20px;
}

footer > nav > div > ul > li > a:after {
	content: "";
	display: block;
	width: 20px;
	height: 12px;
	background: #0074bf;
	-webkit-mask-image: url(../img/simple-arrow.svg);
	mask-image: url(../img/simple-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 12px 12px;
	mask-size: 12px 12px;
	transition: all .3s;
	position: absolute;
	top: 10px;
	right: 0;
}

footer > nav > div > ul > li > ul{ margin-top:30px; }
footer > nav > div > ul > li > ul a{
	font-size:1.6rem;
	line-height:2.6rem;
	color:#666;
}

footer > nav > div > ul > li > ul a:hover {
	color: #222;
	text-decoration: underline;
}

footer > nav > div > ul > li > ul > li + li{ margin-top:20px; }

footer .ent-button a{
	width: 387px;
	display: block;
	padding: 19px 100px 19px 30px;
	border-radius: 10px;
	color: #fff;
	background: linear-gradient(45deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	background-position:right bottom;
	position: relative;
	transition: background-position .3s ease;
}
footer .ent-button .en{
	display: block;
	margin-bottom:20px;
	font-size:5.6rem;
	line-height:5.6rem;
	font-weight:400;
}
footer .ent-button strong{
	font-size:1.6rem;
	font-weight:500;
}

footer .ent-button a:after{
	content: "";
	display: block;
	width: 50px;
	height: 14px;
	background:linear-gradient(130deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	-webkit-mask-image:url('../img/standard-arrow.svg');
	mask-image:url('../img/standard-arrow.svg');
	-webkit-mask-repeat:no-repeat;
	mask-repeat:no-repeat;
	-webkit-mask-position:center;
	mask-position:center;
	-webkit-mask-size: 14px 14px;
	mask-size: 14px 14px;
	position: absolute;
	top:50%;
	right: 25px;
	transition: all .3s;
	transform: translateY(-50%);
}
footer .ent-button a:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top:50%;
	right: 25px;
	transition: all .3s;
	transform: translateY(-50%);
}
footer .ent-button a:hover {
	background-size: 200% 200%;
}
footer .ent-button a:hover:before,
footer .ent-button a:hover:after{
	right: 15px;
}
footer .out-link-list{ display:flex; gap:30px; }
.copy{
	color:#666;
	font-size:1.4rem;
	padding:10px;
	text-align:center;
	background: #fff;
}
@media print, screen and (max-width:1300px){
	footer{ padding:60px 20px; background:#fff; }
	footer > div, footer > nav {
		gap: 50px;
	}
	footer .ent-button a {
		width: 260px;
	}
	footer > nav > div:nth-of-type(1) { max-width:100%; width: calc(100% - 260px); }
	footer .ent-button .en {
		font-size: 4.6rem;
		line-height: 4.6rem;
	}
}
@media print, screen and (max-width:1001px){
	footer > nav, footer > nav > div, footer > nav > div > ul,
	footer > div, footer > div > ul{  flex-direction: column; }
	footer > nav > div:nth-of-type(1){ display:none; }
	footer .ent-button a{ width:100%; margin-bottom:40px; }
	.copy{
		color: #888;
		font-size:1.2rem;
	}
	footer .out-link-list { gap:15px; }
}




/*pagetop*/
.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.pagetop.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pagetop a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: rgba(0, 116, 191, 1);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-decoration: none;
	transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.pagetop a::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid rgba(0, 116, 191, 1);
	border-right: 2px solid rgba(0, 116, 191, 1);
	transform: rotate(-45deg);
	transition: transform .3s ease;
}
.pagetop a:hover {
	transform: translateY(-4px);
}
@media print, screen and (max-width:768px){
	.pagetop {
		right:10px;
		bottom:10px;
	}
	.pagetop a { font-size:1.2rem; }
}
#requirementsArea{
	padding-top: 180px;
	padding-bottom: 80px;
	padding-left:95px;
	padding-right: 0;
	position:relative;
}
#requirementsArea:before{
	content:"";
	width:400px;
	height:400px;
	position:absolute;
	top:90px;
	left:-80px;
	background:url(../img/plus.png) no-repeat 100% / 100%;
	z-index: -1;
}

#requirementsArea > div{
	padding:60px;
	width:calc(100% - 210px);
	margin-left:auto;
	border-radius:5px 0 0 5px;
	background:#fff;
	box-shadow: 0 0 10px rgba(0, 116, 191, .1);
}

@media print, screen and (max-width:1240px){
	#requirementsArea > div{
		width: 100%;
	}
}
@media print, screen and (max-width:768px){
	#requirementsArea > div{
		width:100%;
	}
	#requirementsArea{
		padding-left:20px;
	}
	#requirementsArea:before{
		content:"";
		width:240px;
		height:240px;
		position:absolute;
		top:80px;
		left:-40px;
		background:url(../img/plus.png) no-repeat 100% / 100%;
		z-index: -1;
	}

}

#requirementsArea .main-heading{
	margin-bottom:0;
}
#requirementsArea .main-heading span{
	display:block;
}
#requirementsArea ul li a{
	padding:20px 150px 20px 20px;
	display:flex;
	border-radius:5px;
	background:#eff1f3;
	border: 1px solid #dee1e2;
	position:relative;
	transition: all .3s;
}
#requirementsArea ul li a:before{
	content:"";
	width:43px;
	height:calc(100% - 40px);
	display:block;
	border-radius:5px;
	background: linear-gradient(45deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	background-position: right bottom;
	transition: all .3s;
	position:absolute;
	right:20px;
	top:20px;
	z-index:0;
}
#requirementsArea ul li a:after{
	width: 43px;
	height: 18px;
	background: #fff;
	-webkit-mask-image: url(../img/standard-arrow.svg);
	mask-image: url(../img/standard-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 18px 18px;
	mask-size: 18px 18px;
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: calc(50% - 20px);
	transform: translateY(calc(50% - 20px));
	right:20px;
	transition: all .3s;
}
#requirementsArea ul li a:hover{
	background-size: 200% 200%;
	box-shadow: 0 0 10px rgba(0, 116, 191, .3);
}
#requirementsArea ul li a:hover:before,
#requirementsArea ul li a:hover:after{
	right:10px;
}
#requirementsArea .img-wrap{
	width: 220px;
	height: 200px;
	margin-right:40px;
	overflow:hidden;
	border:1px solid #dee1e2;
	border-radius:5px;
}

#requirementsArea .img-wrap + div{
	width:calc(100% - 220px);
}
#requirementsArea ul li img{
	display:block;
	width:100%;
	height:100%;
	object-fit: cover;
	transition: all .3s;
}

#requirementsArea ul li a:hover img{
	transform: scale(1.1);
}

#requirementsArea ul li h4{
	margin-bottom: 30px;
	padding-top:20px;
	display: flex;
	font-size:2.8rem;
	line-height:3.4rem;
	font-weight:400;
	gap: 20px;
}
#requirementsArea ul li h4 strong{
	padding: 3px 15px;
	font-size:1.6rem;
	line-height:2.6rem;
	font-weight:500;
	border-radius: 3px;
	background:#f58db6;
}
#requirementsArea ul li p{ line-height:3.2rem; }
#requirementsArea h3{
	padding-left: 1.5em;
	display: inline-block;
	font-size: 2.6rem;
	margin-bottom: 20px;
	letter-spacing: 0.06em;
	background: linear-gradient(45deg, rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position:relative;
}
#requirementsArea h3:before{
	content:"";
	width:20px;
	height: 4px;
	display:block;
	background:linear-gradient(45deg,rgba(0, 116, 191, 1) 0%, rgba(14, 184, 174, 1) 100%);
	position:absolute;
	left:0;
	top:.5em;
}
#requirementsArea * + h3{ margin-top:40px; }

@media print, screen and (max-width:1240px){
	#requirementsArea .img-wrap{
		width: 180px;
		height: 160px;
		margin-right:20px;
	}
	#requirementsArea .img-wrap + div{
		width:calc(100% - 180px);
	}
	#requirementsArea ul li a {
		padding: 20px 90px 20px 20px;
	}
	#requirementsArea ul li h4{ padding-top:10px; margin-bottom:20px; font-size: 2.2rem; }
	#requirementsArea .main-heading{
		margin-bottom:40px;
	}
}
@media print, screen and (max-width:800px){
	#requirementsArea ul li h4{ flex-direction: column; gap:10px; }
	#requirementsArea > div { padding:40px; }
}
@media print, screen and (max-width:650px){
	#requirementsArea ul li a {display:block;padding: 15px 60px 15px 15px;}
	#requirementsArea .img-wrap {
		width:100%;
		height:auto;
		margin-right:0;
	}
	#requirementsArea .img-wrap + div { width:100%; }
	#requirementsArea > div {
		padding: 30px 20px;
	}
	#requirementsArea ul li a:before {
		height: calc(100% - 30px);
		width:30px;
		right:10px;
		top:10px;
	}
	#requirementsArea ul li a:after {
		width: 30px;
		right:10px;
	}
}
@media print, screen and (max-width:400px){
	#requirementsArea ul li img { height:160px; }
}