@charset "UTF-8";

/* ==================================================
	Reset
================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #222;
	font-family:
		"LINE Seed JP",
		"Noto Sans JP",
		"Yu Gothic",
		"YuGothic",
		"Meiryo",
		sans-serif;
	font-size: 16px;
	line-height: 1.8;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	padding-top: 79px;
}

body.is-menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dl,
dd {
	margin: 0;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	padding: 0;
	border: 0;
	color: inherit;
	background: transparent;
	cursor: pointer;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

address {
	font-style: normal;
}

/* ==================================================
	Common
================================================== */

.inner {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/* ==================================================
	Header
================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #ececec;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1380px, calc(100% - 40px));
	min-height: 78px;
	margin-inline: auto;
}

.header__logo {
	display: block;
	flex-shrink: 0;
	width: 575px;
}

.header__logo img {
	width: 100%;
	height: auto;
}

.headerNav {
	margin-left: auto;
}

.headerNav__list {
	display: flex;
	align-items: center;
	gap: clamp(22px, 2.5vw, 42px);
}

.headerNav__list li {
	position: relative;
}

.headerNav__list a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 78px;
	color: #222;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.headerNav__list a::after {
	position: absolute;
	right: 0;
	bottom: 15px;
	left: 0;
	width: 0;
	height: 3px;
	margin-inline: auto;
	background: #f39b16;
	border-radius: 10px;
	content: "";
	transition: width 0.25s ease;
}

.headerNav__list a:hover::after {
	width: 100%;
}

/* ==================================================
	Menu button
================================================== */

.menuButton {
	position: relative;
	z-index: 1200;
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #f7aa18;
}

.menuButton span {
	position: absolute;
	left: 11px;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 10px;
	transition:
		top 0.3s ease,
		transform 0.3s ease,
		opacity 0.3s ease;
}

.menuButton span:nth-child(1) {
	top: 14px;
}

.menuButton span:nth-child(2) {
	top: 22px;
}

.menuButton span:nth-child(3) {
	top: 30px;
}

.menuButton.is-open span:nth-child(1) {
	top: 22px;
	transform: rotate(45deg);
}

.menuButton.is-open span:nth-child(2) {
	opacity: 0;
}

.menuButton.is-open span:nth-child(3) {
	top: 22px;
	transform: rotate(-45deg);
}

/* ==================================================
	Drawer
================================================== */

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1100;
	width: min(82%, 380px);
	height: 100dvh;
	padding: 100px 32px 40px;
	background: #fff;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
	transform: translateX(110%);
	transition: transform 0.35s ease;
}

.drawer.is-open {
	transform: translateX(0);
}

.drawer::before {
	position: absolute;
	top: 0;
	right: 100%;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.drawer.is-open::before {
	opacity: 1;
	pointer-events: auto;
}

.drawer__nav li {
	border-bottom: 1px solid #ececec;
}

.drawer__nav a {
	position: relative;
	display: block;
	padding: 18px 4px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.drawer__nav a::after {
	position: absolute;
	top: 50%;
	right: 4px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #f39b16;
	border-right: 2px solid #f39b16;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
	Common button
================================================== */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-width: 350px;
	min-height: 68px;
	padding: 15px 38px;
	border-radius: 100px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease,
		box-shadow 0.25s ease;
}

.button span {
	font-size: 22px;
	line-height: 1;
}

.button:hover {
	transform: translateY(3px);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.button--orange {
	background: #d46608;
}

.button--green {
	background: #15931a;
}

.button--report {
	min-width: 380px;
	background: #52AE7E;
}

/* ==================================================
	Footer
================================================== */

.footer {
	padding: 10px 20px;
	background: #168f27;
}

.footer__inner {
	width: min(1120px, 100%);
	margin-inline: auto;
}

.footer__copyright {
	color: #fff;
	text-align: center;
}

.footer__copyright small {
	font-size: 12px;
	letter-spacing: 0.05em;
}

/* ==================================================
	Responsive
================================================== */

@media screen and (max-width: 1100px) {

	.header__logo {
		width: 270px;
	}

	.headerNav__list {
		gap: 20px;
	}

	.headerNav__list a {
		font-size: 12px;
	}

}

@media screen and (max-width: 900px) {

	.header__inner {
		min-height: 68px;
	}

	.headerNav {
		display: none;
	}

	.menuButton {
		display: block;
	}

}

@media screen and (max-width: 767px) {

	body {
		font-size: 15px;
	}

	.inner {
		width: min(100% - 30px, 600px);
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.header__inner {
		width: calc(100% - 24px);
		min-height: 80px;
	}

	.header__logo {
		width: 305px;
	}


	.menuButton {
		width: 42px;
		height: 42px;
	}

	.menuButton span {
		left: 10px;
		width: 22px;
	}

	.menuButton span:nth-child(1) {
		top: 12px;
	}

	.menuButton span:nth-child(2) {
		top: 20px;
	}

	.menuButton span:nth-child(3) {
		top: 28px;
	}

	.menuButton.is-open span:nth-child(1),
	.menuButton.is-open span:nth-child(3) {
		top: 20px;
	}

	.drawer {
		width: 82%;
		padding: 88px 26px 30px;
	}

	.button {
		width: 100%;
		min-width: 0;
		min-height: 58px;
		padding: 13px 24px;
		font-size: 14px;
	}

	.button--report {
		min-width: 0;
	}

}