:root {
	--color-bg: #f5f5f5;
	--color-text: #222;
	--color-accent: #2563eb;
	--max-width: 1440px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:16px;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
}

a {
	color: var(--color-accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

header,
main,
footer {
	width: 100%;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0;
}
.container_2 {
	background-color: #fff;
	section{
		max-width: 1200px;
		margin: 0 auto;
		padding: 0;
	}
}

header {
	position: fixed;
	top: 0;
	z-index: 1000;
	background: #ffffff;
	border-top: 5px solid #0767E7;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	.container {
		display:flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.site-title {
		margin: 0 0 0 10px;
		width:156px;
		height:115px;
		background-image:url(/img/logo.png);
		background-size: cover;
		text-indent:-9999px;
	}
	
	nav {
		ul {
			list-style: none;
			padding: 0;
			margin: 0 1rem 0 0;
			display: flex;
			gap: 1.56rem;
			flex-wrap: wrap;
			a {
				font-size: 1rem;
				font-weight:bold;
				color:#000;
			}
			.contact a {
				background-color: #0767E7;
				padding: 9px 18px;
				border: 1px solid #0767E7;
				border-radius: 22px;
				color: #fff;
			}
		}
	}

}

main {
	padding-top:88px;
}

.hero {
	background: url('/img/hero.jpg') center/cover no-repeat;
	height: calc(100vh - 88px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.18);
	z-index: 1;
}

.hero_content {
	position: relative;
	top:-3.4rem;
	z-index: 2;
	text-align: center;
	img {
		margin:0 auto;
	}
	h1 {
		color:#fff;
		font-size:2rem;
		text-shadow:1px 2px 4px rgb(61 70 70);
	}
	.btn_box {
		margin:3rem auto 0;
		display:flex;
		width: 503px;
		justify-content: space-between;
		a {
			text-decoration:none;
		}
	}
}

.link_btn01 {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 244px;
	height: 51px;
	padding: 0 50px;
	background-color: #fff;
	border: 1px solid #0767E7;
	border-radius: 35px;
	position: relative;
	transition: .6s cubic-bezier(0.18, -0.01, 0.3, 1);
	
	span{
		font-size:1rem;
	}
	&:after {
		box-sizing: border-box;
		border-style: solid;
		border-width: 0;
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		background-image: url(/img/icon_arrow_blue.svg);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		transition: .6s cubic-bezier(0.18, -0.01, 0.3, 1);
	}
}
.link_btn01:hover {
	background-color: #0767E7;
	text-decoration:none;
	span {
		color:#fff;
	}
	&:after {
		content: '';
		display: inline-block;
		width: 20px;
		height: 7px;
		background-image: url(/img/icon_arrow_white.svg);
		background-repeat: no-repeat;
		transform: translate(5px, -50%);
	}
}
.link_btn02 {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 244px;
	height: 51px;
	padding: 0 50px;
	background-color: #BE49EB;
	border: 1px solid #BE49EB;
	border-radius: 35px;
	position: relative;
	transition: 0.3s;
	span{
		font-size:1rem;
		color:#fff;
	}
}
.link_btn02:hover{
	opacity: 0.7;
}


.container section, 
.container_2 section {
	padding-top: 7.5rem;
}

.container section h2 ,
.container_2 section h2 {
	margin-left:250px;
	font-size: 4.5rem;
	&::first-letter {
		color: #2371ED;
	}
}
.container_2 section h2 {
	margin-left:50px;
}
.container section .sub_h2, 
.container_2 section .sub_h2 {
	margin-left:470px;
	margin-top: -1.3rem;
	font-size:1.8rem;
	font-weight:normal;
	margin-bottom:55px;
}
.container_2 section .sub_h2 {
	margin-left:270px;
}

.service_lst {
	li {
		display:flex;
		align-items: center;
		margin-bottom:80px;
		img {
			width:50%;
		}
		.service_box {
			width:50%;
			padding:45px;
			h3 {
				font-size:2rem;
			}
			p {
				margin:30px 45px;
			}
			.lnk_btn_box {
				text-align:right;
				a {
					width:240px;
					display:inline-flex;
				}
			}
		}
	}
	li:nth-child(even) {
		flex-direction: row-reverse;
	}
}

.section_wrap {
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
.features_lst {
	width:100%;
	max-width:1080px;
	margin:0 auto;
	display:flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	
	.features_box {
		width:48%;
		margin-bottom:55px;
		position: relative;
		img {
			width:100%;
		}
		p {
			position: absolute;
			color:#fff;
			top: 35%;
			padding: 18px;
			font-size:1.7rem;
		}
		h3 {
			font-size:1.5rem;
			font-weight:bold;
		}
	}
	.features_box:nth-child(1) {
		width:100%;
		.table_box{
			background-image:url(/img/features/01.jpg);
			background-size: cover;
			padding:27px 38px;
			
			table {
				background-color:#fff;
			}
		}
	}
	.features_box:nth-child(6) {
		width:100%;
	}
	
	.table_box {
		overflow-x: auto;
	}
	.table_box table {
		border-collapse: collapse;
		table-layout: fixed;
		width: 100%;
		min-width: 700px;
		text-align: center;
	}
	.table_box table thead th {
		padding: 1em .8em;
		font-weight: bold;
		border-right: 2px solid#fff;
	}
	.table_box table thead th:not(:first-child) {
		background: #4d9bc1;
		color: #fff;
		font-size: 1.2rem;
		border-radius: 15px 15px 0 0;
		padding: 0.5em;
	}
	.table_box table thead th span {
		font-size: 0.6rem;
	}
	.table_box table thead th:nth-child(2) {
		background-color: #f88400;
		position: relative;
	}
	.table_box table tbody {
		border: 2px solid #d2e8f1;
	}
	.table_box table tbody tr {
		background-color: #e6f1f6;
	}
	.table_box table tbody tr:nth-child(odd) {
		background-color: #fff;
	}
	.table_box table td {
		border-left: 2px solid #d2e8f1;
		color: #4d9bc1;
		padding: 0.4em;
		text-align:left;
	}
	.table_box table td.center{
		text-align:center;
		font-weight: bold;
	}
	.table_box table td:nth-child(2) {
		color: #f88400;
		border-right: 2px solid #f88400;
		border-left: 2px solid #f88400;
	}
	.table_box table tr:last-child td:nth-child(2) {
		border-bottom: 2px solid #f88400;
	}
}

.recommended_lst {
	margin:0 80px;
	padding-bottom:30px;
	display:flex;
	flex-direction: column;
	li {
		display:flex;
		margin-bottom:35px;
		align-items: center;
		
		.recom_txt {
			margin-left:75px;
			font-size:1.8rem;
		}
	}
}


footer {
	background: #000;
	color:#fff;
	.container {
		width:100%;
		max-width:1200px;
		padding:50px 0 40px;
		display:flex;
		
		.footer_logo {
			padding-left:85px;
		}
		.footer_content {
			margin-left:35px;
			ul {
				display:flex;
				gap: 1.56rem;
				flex-wrap: wrap;
				margin-bottom:1rem;
				a {
					font-size: 1rem;
					color:#fff;
				}
				
			}
			.company_data {
				a {
					display:flex;
					gap: 0.5rem;
					color:#fff;
				}
			}
			.footer_copy {
				text-align:right;
				font-size:0.88rem;
			}
		}
	}
}








@media (max-width: 640px) {
  .container {
  }

  .hero {
    padding: 1.5rem;
  }
}
