@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body, html {
	height: 100%;
	font-family: 'Helvetica Neue', sans-serif;
}
body {
	font-family: "ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
h2 {
	margin-bottom: 60px;
    font-size: 36px;
    font-weight: 600;
	text-align: center;
    color: #222;
}
.logo {
	display: flex;
	align-items: center;
}
.logo img {
	height: 40px;
	width: auto;
	display: block;
}
.wrap {
	display: block;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}


/** form
********************/
#form {
	background-color: #f5f5f5;
	padding: 0 0 70px;
}

.form_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.form_title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}

.form_group {
	margin-bottom: 24px;
}

.form_group label {
	font-weight: bold;
	display: block;
	margin-bottom: 12px;
}

.required {
	background-color: #d60000;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	margin-right: 8px;
	border-radius: 3px;
}
.not_required {
	background-color: #707070;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    margin-right: 8px;
    border-radius: 3px;
}

input, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	background: #f9f9f9;
}

input::placeholder,
textarea::placeholder {
	color: #c3c3c3;
}

textarea {
	height: 120px;
	resize: vertical;
}

.form_note {
	font-size: 13px;
	color: #333;
	margin-bottom: 24px;
}

.form_submit {
	text-align: center;
}

.form_submit button {
	background: linear-gradient(to right, #ff6a00, #ff4500);
	color: #fff;
	border: none;
	padding: 16px 48px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 32px;
	cursor: pointer;
	transition: opacity 0.3s ease;
	width: 50%;
}

.form_submit button:hover {
	opacity: 0.8;
}

.checkbox_group {
	margin-bottom: 15px;
}

.checkbox_group > label {
	/* margin-bottom: 30px; */
}

.checkbox_group .checkbox_items {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	padding: 12px 0;
}

.checkbox_group .checkbox_item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 0!important;
	font-size: 15px;
}

.checkbox_group .checkbox_item input[type="checkbox"] {
	width: auto!important;
	margin: 0!important;
	padding: 6px!important;
}


@media screen and (max-width: 750px) {
	.form_wrap {
		padding: 50px 3%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.form_submit button {
		width: 100%;
	}
}


/** footer
********************/
footer {
	background-color: #1f1f1f;
	color: #eee;
	padding: 40px 20px;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 14px;
}

.footer-wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-left {
	flex: 1;
	min-width: 280px;
}

.footer-logo {
	width: 120px;
	margin-bottom: 16px;
}

.footer-left p {
	line-height: 1.8;
	color: #ccc;
}

.footer-right {
	flex: 1;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-menu,
.footer-policy {
	display: flex;
    justify-content: flex-end;
	width: 100%;
	gap: 20px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 10px 0;
}

.footer-menu a,
.footer-policy a {
	color: #ddd;
	text-decoration: none;
	font-size: 14px;
}

.footer-menu a:hover,
.footer-policy a:hover {
	text-decoration: underline;
}

.footer-copy {
	width: 100%;
	margin-top: 20px;
	font-size: 12px;
	color: #aaa;
	text-align: right;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.footer-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-menu,
	.footer-policy {
		flex-direction: column;
		gap: 6px;
	}
}







.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
    background-color: #fff;
	padding: 20px 40px 20px 20px;
	transition: background-color 0.4s ease; /* ← フェード効果 */
}

.header-inner {
	/* max-width: 1200px; */
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav a {
	text-decoration: none;
	color: #333;
}

.nav .cta {
	background: linear-gradient(to right, #ff6a00, #ff4500);
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
}


/* --- スクロール後 --- */
.site-header.scrolled {
	background-color: #fff;
}
.scrolled .nav a {
	color: #333;
}
.scrolled .nav a:last-child {
	color: #FFF;
}


@media (max-width: 750px) {
	.hamburger {
		display: flex;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 25px;
		height: 25px;
		position: relative;
		cursor: pointer;
		z-index: 1100;
	}

	.hamburger.active span {
		background-color: #333;
	}

	.hamburger span {
		display: block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #333;
		transition: 0.5s ease;
		border-radius: 2px;
	}

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

	.hamburger span:nth-child(2) {
		top: 11px;
	}

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

	/** 開いた時の状態 **/
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg);
		top: 11px;
	}

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

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg);
		top: 11px;
	}

	.nav {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: #fff;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		height: 100vh;
		gap: 40px;
	}

	.nav a {
		font-size: 17px;
		color: #333;
	}

	.nav.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/** 開いた時の状態 **/
	.site-header.scrolled .hamburger span {
		background: #333;
	}
}
