@charset "UTF-8";

/* ==================
      reset.css
===================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* ==================
        common
===================== */
:root {
	--color-blue: #38A1DB;
	--color-blue_light: #E3F0FB;
	--color-blue_dark: #0072C8;
	--color-black: #333333;
	--color-white: #ffffff;
	--color-red: #E51611;
	--color-gray: #dddddd;
}

body {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 2;
	background-color: #ffffff;
	font-size: 16px;
}

@media (max-width: 768px) {
	body {
		font-size: 14px;
	}
}

img {
	width: 100%;
	object-fit: cover;
}

ul {
	list-style: none;
}

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


h2 {
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	color: var(--color-blue);
	margin-bottom: 4rem;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	margin: 0 auto;
	padding: .5rem 1rem;
	border: none;
	border-radius: 100vmax;
	font-weight: 600;
	color: var(--color-white);
	background: linear-gradient(to right, var(--color-blue_dark) 50%, var(--color-blue) 50%) 100%;
	background-size: 200% 100%;
	transition: background-position 0.3s;
}

.btn:hover {
	background-position: 0 100%;
}

.bold {
	font-weight: 600;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

.container {
	max-width: 1312px;
	padding: 120px 24px;
	margin: 0 auto;
}

.container__blue {
	padding: 120px 24px;
	margin: 0 auto;
	margin-top: 120px;
	background-color: var(--color-blue_light);
}

@media (max-width: 768px) {
	.container {
		padding: 80px 20px;
	}

	.container__blue {
		padding: 80px 20px;
		margin-top: 0px;
	}
}

.wrapper {
	display: grid;
	max-width: 1312px;
	margin: 0 auto;
}

.wrapper>div {
	margin-bottom: 60px;
}

.wrapper>div:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.wrapper>div {
		margin-bottom: 48px;
	}
}


/* ==================
        style
===================== */

/* ==================
        index
===================== */
/* header */
header {
	position: fixed;
	top: 24px;
	left: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	max-width: 1312px;
	margin: 0 auto;
	border-radius: 100vmax;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
	header {
		top: 0;
		left: 0;
		border-radius: 0;
	}
}

/* nav */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	padding: .5rem 2rem;
}

nav .logo {
	display: flex;
	align-items: center;
}

nav .logo img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

nav .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
}

nav .menu {
	display: flex;
	align-items: center;
	gap: 3rem;
}

nav .menu ul {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.link {
	color: transparent;
	background: linear-gradient(to right, var(--color-blue) 50%, var(--color-black) 50%) 100%;
	background-clip: text;
	background-size: 200% 100%;
	transition: background-position 0.3s;
}

.link:hover {
	background-position: 0 100%;
}

@media (max-width: 768px) {
	nav {
		padding: .5rem 20px;
	}

	nav .logo img {
		height: 38px;
	}

	nav .menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		background-color: var(--color-white);
		flex-direction: column;
		justify-content: flex-start;
		gap: 2rem;
		padding: 2rem 0;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
	}

	nav .menu.active {
		transform: translateX(0);
	}

	nav .menu ul {
		flex-direction: column;
		gap: 1.5rem;
		padding: 0;
		font-size: 18px;
	}
}

.drawer-toggle {
	display: none;
	position: relative;
	z-index: 11;
	width: 38px;
	height: 38px;
	cursor: pointer;
}

.drawer-toggle span {
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: var(--color-black);
	border-radius: 100vmax;
	transition: .35s ease-in-out;
}

.drawer-toggle span:nth-child(1) {
	top: 5px;
}

.drawer-toggle span:nth-child(2) {
	top: 18px;
}

.drawer-toggle span:nth-child(3) {
	top: 32px;
}

.drawer-toggle.active span:nth-child(1) {
	top: 18px;
	transform: rotate(-45deg);
}

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

.drawer-toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

@media (max-width: 768px) {
	.drawer-toggle {
		display: block;
	}
}

/* main */

/* kv */
.kv {
	position: relative;
}

.kv h1 {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	text-align: center;
	margin: 0 24px;
}

@media (max-width: 768px) {
	.kv {
		margin-top: 60px;
	}

	.kv h1 {
		top: 12%;
		font-size: 1.5rem;
		line-height: 1.4;
		margin: 0 20px;
	}
}

@media (max-width: 574px) {
	.kv h1 {
		top: 8%;
	}
}

/* about */
.about {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: center;
}

.about img {
	width: 100%;
	max-width: 600px;
	justify-self: center;
}

.about .copy {
	font-size: 2rem;
}

.about .copy span {
	color: var(--color-blue);
}

.about .description__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 768px) {
	.about.container {
		padding-bottom: 0;
	}

	.about {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about img {
		width: 100%;
		max-width: 400px;
	}

	.about .copy {
		font-size: 1.5rem;
	}

	.about .description__wrapper {
		padding: 0 2rem;
		align-items: center;
	}
}

/* feature */
.feature .wrapper {
	background-color: var(--color-white);
	border-radius: 12px;
	box-shadow: 0 2px 24px rgba(7, 5, 121, 0.12);
	padding: 2rem;
	display: block;
}

.feature h2 {
	position: relative;
	z-index: 1;
}

.feature h2::before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
	color: var(--color-gray);
	opacity: .4;
	font-size: 6rem;
	line-height: 1;
	content: attr(data-word);
	pointer-events: none;
}

.table {
	overflow-x: auto;
	display: block;
}

.table table {
	width: 100%;
	min-width: 700px;
	border-collapse: collapse;
}

.table th {
	background-color: var(--color-gray);
	color: var(--color-white);
	font-weight: 600;
}

.table th:first-child,
.table td:first-child {
	background-color: var(--color-blue_light);
	color: var(--color-blue);
}

.table th,
.table td {
	padding: 10px;
	border: 1px solid var(--color-gray);
	text-align: center;
	white-space: nowrap;
}

.table th:nth-child(2) {
	background-color: var(--color-blue);
	color: var(--color-white);
	border-top: 4px solid var(--color-blue);
}

.table th:nth-child(2),
.table td:nth-child(2) {
	border-left: 4px solid var(--color-blue);
	border-right: 4px solid var(--color-blue);
}

.table tr:last-child td:nth-child(2) {
	border-bottom: 4px solid var(--color-blue);
}

.table .highlight {
	color: var(--color-blue);
	font-weight: 600;
}

.table .highlight_bg {
	background-color: var(--color-blue_light);
	color: var(--color-blue);
}

.caption {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.caption span {
	color: var(--color-red);
}

@media (max-width: 768px) {
	.feature h2::before {
		font-size: 4rem;
	}

	.caption {
		font-size: 1rem;
	}
}

/* service */
.service h2 {
	position: relative;
	z-index: 1;
}

.service h2::before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
	color: var(--color-white);
	opacity: .4;
	font-size: 6rem;
	line-height: 1;
	content: attr(data-word);
	pointer-events: none;
}

.card {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: auto 1fr;
	gap: 2rem;
	padding: 2rem;
	background-color: var(--color-white);
	border-radius: 12px;
	box-shadow: 0 2px 24px rgba(7, 5, 121, 0.12);
}

.title {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
	display: flex;
	align-items: center;
	gap: 12px;
}

.description {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.title p {
	font-size: 1.5rem;
	margin: 0;
}

.description p {
	margin: 0;
}

.icon {
	width: 24px;
	height: auto;
}

.images {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.images img {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.service h2::before {
		font-size: 4rem;
	}

	.card {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.title,
	.description,
	.images {
		grid-column: 1 / 2;
		grid-row: auto;
	}

	.title p {
		font-size: 1rem;
	}
}

/* footer */
.footer {
	max-width: 1312px;
	padding: 120px 24px 80px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	justify-content: space-between;
	gap: 2rem;
	font-size: 14px;
}

.footer img {
	max-height: 40px;
	width: auto;
}

.contact__common h3 {
	font-size: 2rem;
	margin-top: 0;
	color: var(--color-blue);
}

.contact__service p {
	margin-top: 0;
	margin-bottom: .5rem;
}

.contact__company {
	display: flex;
	justify-content: space-between;
	gap: 2.5rem;
}

address {
	font-style: normal;
}

address ul {
	padding: 0;
	margin: 0;
}

.contact___item {
	min-width: 169px;
}

.contact__company .contact___item .company {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-bottom: .8rem;
}

.gray {
	color: var(--color-gray);
}

.contact__company .contact___item p {
	margin: 0;
}

.contact__company .contact___item .tel {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-wrap: wrap;
}

.contact__company .item .tel p {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.footer {
		grid-template-columns: 1fr;
		padding: 80px 20px;
		font-size: 12px;
	}

	.contact__service,
	.contact__company {
		grid-column: 1 / -1;
	}

	.contact__company {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}



/* ==================
        contact
===================== */
.container__contact {
	max-width: 600px;
	display: grid;
	align-items: center;
	margin: 0 auto;
	padding: 80px 24px;
}

.contact h2 {
	position: relative;
	z-index: 1;
}

.contact h2::before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
	color: var(--color-gray);
	opacity: .4;
	font-size: 6rem;
	line-height: 1;
	content: attr(data-word);
	pointer-events: none;
}

.contact form {
	display: grid;
	gap: 2rem;
}

.item {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 10px;
	align-items: center;
}

.item input {
	min-height: 2.5rem;
	border: 1.5px solid var(--color-gray);
	border-radius: 4px;
}

.item textarea {
	min-height: 2.5rem;
	border: 1.5px solid var(--color-gray);
	border-radius: 4px;
}

.item input,
.item textarea {
	width: 100%;
}

@media (max-width: 768px) {
	.container__contact {
		margin: 0 auto;
		padding: 80px 20px;
	}

	.contact h2::before {
		font-size: 4rem;
	}

	.item {
		grid-template-columns: 1fr;
	}

	.item label {
		margin-bottom: -5px;
	}
}