:root {
	--primary-color: #c52323;
	--primary-dark: #a01a1a;
	--primary-light: #cf2323;
	--base-white: #ffffff;
	--text-dark: #222222;
	--text-gray: #666666;
	--light-gray: #f5f5f5;
	--border-gray: #e0e0e0;
	--accent-gold: #d4a574;

	--shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.16);

	--font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--font-serif: Georgia, 'Times New Roman', serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-base);
	color: var(--text-dark);
	background-color: var(--base-white);
	line-height: 1.6;
	letter-spacing: 0.5px;
	overflow-x: hidden;
}

/* ============ 共通タイポグラフィ ============ */
h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
	margin: 0;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
	margin: 0;
}

h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-dark);
	margin: 0;
}

h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text-dark);
	margin: 0;
}

p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-gray);
	margin: 0;
}

/* ============ 共通ボタン ============ */
.btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	line-height: 1;
}

.btn.btn-primary {
	background-color: var(--primary-color);
	color: var(--base-white);
}

.btn.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.btn.btn-primary:active {
	transform: translateY(0);
}

.btn.btn-primary:disabled {
	background-color: var(--text-gray);
	cursor: not-allowed;
	opacity: 0.6;
}

.btn.btn-secondary {
	background-color: var(--light-gray);
	color: var(--text-dark);
}

.btn.btn-secondary:hover {
	background-color: var(--border-gray);
	transform: translateY(-2px);
}

.btn.btn-sm {
	padding: 8px 16px;
	font-size: 12px;
}

.btn.btn-lg {
	padding: 16px 32px;
	font-size: 16px;
}

.btn.btn-block {
	display: block;
	width: 100%;
}

/* ============ リンク ============ */
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	text-decoration: underline;
	opacity: 0.8;
}

a[target="_blank"]::after {
	content: " ↗";
	font-size: 0.8em;
}

/* ============ リスト ============ */
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

ul li::before {
	content: "→ ";
	color: var(--primary-color);
	font-weight: 600;
	margin-right: 8px;
}

/* ============ テーブル ============ */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

table th {
	background-color: var(--light-gray);
	color: var(--text-dark);
	padding: 12px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid var(--border-gray);
}

table td {
	padding: 12px;
	border-bottom: 1px solid var(--border-gray);
	color: var(--text-gray);
}

table tr:hover {
	background-color: var(--light-gray);
}

/* ============ フォーム ============ */
input,
textarea,
select {
	font-family: var(--font-base);
	font-size: 14px;
	padding: 12px 16px;
	border: 1px solid var(--border-gray);
	border-radius: 6px;
	background-color: var(--base-white);
	color: var(--text-dark);
	transition: all 0.3s ease;
	width: 100%;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(197, 35, 35, 0.1);
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
	color: var(--text-gray);
	opacity: 0.7;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
	color: var(--text-gray);
	opacity: 0.7;
}

input:disabled,
textarea:disabled,
select:disabled {
	background-color: var(--light-gray);
	cursor: not-allowed;
	opacity: 0.6;
}

textarea {
	resize: vertical;
	min-height: 120px;
	font-family: var(--font-base);
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23222222' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

/* ============ チェックボックス・ラジオボタン ============ */
input[type="checkbox"],
input[type="radio"] {
	width: auto;
	margin-right: 8px;
	cursor: pointer;
}

label {
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--text-gray);
}

/* ============ レスポンシブ ============ */
@media (max-width: 768px) {
	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 16px;
	}

	p {
		font-size: 13px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.btn.btn-lg {
		padding: 14px 28px;
		font-size: 14px;
	}
}

/* ============ ユーティリティ ============ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

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

.section-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	color: var(--text-dark);
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto 0;
}

.text-center {
	text-align: center;
}

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

.text-primary {
	color: var(--primary-color);
}

.mt-20 {
	margin-top: 20px;
}

.mt-40 {
	margin-top: 40px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-40 {
	margin-bottom: 40px;
}

/* ============ スクロールアニメーション ============ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

/* ============ グリッド ============ */
.grid {
	display: grid;
	gap: 20px;
}

.grid.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
	.grid.grid-2 {
		grid-template-columns: 1fr
	}
}

.grid.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
	.grid.grid-3 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {
	.grid.grid-3 {
		grid-template-columns: 1fr
	}
}

.grid.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
	.grid.grid-4 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {
	.grid.grid-4 {
		grid-template-columns: 1fr
	}
}

/* ============ カード ============ */
.card {
	background-color: var(--base-white);
	border: 1px solid var(--border-gray);
	border-radius: 8px;
	padding: 30px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-light);
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
	.card {
		padding: 20px
	}
}

/* ============ アコーディオン ============ */
.accordion-item {
	border-bottom: 1px solid var(--border-gray);
	padding: 20px 0;
}

.accordion-item:first-child {
	border-top: 1px solid var(--border-gray);
}

.accordion-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	text-align: left;
	transition: color 0.3s ease;
}

.accordion-trigger:hover {
	color: var(--primary-color);
}

.accordion-trigger .icon {
	font-size: 24px;
	transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	padding-top: 0;
	color: var(--text-gray);
}

.accordion-trigger[aria-expanded="true"]+.accordion-content {
	max-height: 1000px;
	opacity: 1;
	padding-top: 20px;
}

/* ============ 画像ホバー効果 ============ */
.image-hover {
	overflow: hidden;
	border-radius: 8px;
}

.image-hover img {
	transition: transform 0.3s ease;
	display: block;
}

.image-hover:hover img {
	transform: scale(1.05);
}

/* ============ バッジ ============ */
.badge {
	display: inline-block;
	padding: 4px 12px;
	background-color: var(--primary-color);
	color: var(--base-white);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.badge.badge-secondary {
	background-color: var(--light-gray);
	color: var(--text-dark);
}

/* ============ 区切り線 ============ */
hr {
	border: none;
	height: 1px;
	background-color: var(--border-gray);
	margin: 40px 0;
}

/* ./parts/common-header.html */

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
	background-color: #ffffff;
	transition: all 0.3s ease;
	position: sticky;
	top: 0;
	z-index: 30;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

header.scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .logo-area {
	flex: 1;
}

header .logo {
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	color: #222222;
	display: block;
}

header .nav a {
	text-decoration: none;
	color: #222222;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
}

header .nav a:hover {
	color: #c52323;
}

header .nav a.active {
	color: #c52323;
	font-weight: 600;
}

header .nav a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #c52323;
}

header .nav.desktop-nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

@media (max-width: 853px) {

	header .nav.desktop-nav {
		display: none
	}
}

header .nav.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 40;
	background-color: rgba(0, 0, 0, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease-in-out;
}

@media (min-width: 854px) {

	header .nav.mobile-nav {
		display: none
	}
}

header .nav.mobile-nav a {
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

header .nav.mobile-nav a:hover {
	color: #c52323;
}

header .nav.mobile-nav a.active {
	color: #c52323;
}

header .nav.mobile-nav a.active::after {
	display: none;
}

header .menu-btn {
	background: none;
	border: none;
	cursor: pointer;
	z-index: 50;
	padding: 8px;
	display: none;
}

@media (max-width: 768px) {

	header .menu-btn {
		display: flex;
		align-items: center;
		justify-content: center
	}
}

header .menu-btn .material-symbols-outlined {
	font-size: 28px;
	color: #222222;
	transition: color 0.3s ease;
}

header .contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 30px;
	text-decoration: none;
	color: #666666;
	font-size: 12px;
	transition: color 0.3s ease;
}

header .contact-info:hover {
	color: #c52323;
}

@media (max-width: 853px) {

	header .contact-info {
		display: none
	}
}

header .contact-info .material-symbols-outlined {
	font-size: 20px;
}

header .contact-info-mobile {
	display: none;
	margin-left: 15px;
	gap: 15px;
	align-items: center;
}

@media (max-width: 853px) {

	header .contact-info-mobile {
		display: flex
	}
}

header .contact-info-mobile a {
	color: #666666;
	text-decoration: none;
	display: flex;
	align-items: center;
}

header .contact-info-mobile a .material-symbols-outlined {
	font-size: 24px;
}

header.mobile-menu-open .mobile-nav {
	opacity: 1;
	pointer-events: auto;
}

header.mobile-menu-open .menu-btn .material-symbols-outlined {
	color: #ffffff;
}

/* ./parts/common-footer.html */

footer {
	background-color: #f5f5f5;
	padding: 50px 30px;
	margin-top: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {

	footer {
		padding: 40px 20px
	}
}

footer .footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

footer .footer-content {
	text-align: center;
	margin-bottom: 40px;
}

footer .footer-content h3 {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 15px;
}

footer .footer-content p {
	font-size: 12px;
	color: #666666;
	line-height: 1.8;
	margin: 8px 0;
}

footer .footer-content a {
	color: #c52323;
	text-decoration: none;
	font-weight: 500;
}

footer .footer-content a:hover {
	text-decoration: underline;
}

footer .footer-bottom {
	border-top: 1px solid #e0e0e0;
	padding-top: 30px;
	text-align: center;
}

footer .footer-bottom p {
	font-size: 10px;
	color: #999999;
	margin: 5px 0;
}

footer .footer-bottom .policy-links {
	margin: 15px 0;
}

footer .footer-bottom .policy-links a {
	color: #c52323;
	font-size: 11px;
	margin: 0 10px;
	text-decoration: none;
}

footer .footer-bottom .policy-links a:hover {
	text-decoration: underline;
}

/* ./parts/about-header.html */

section {
	background-color: #f5f5f5;
	padding: 60px 30px;
}

@media (max-width: 768px) {

	section {
		padding: 40px 20px
	}
}

section h1 {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 20px;
}

section .subtitle {
	font-size: 20px;
	color: #666666;
	text-align: center;
	margin: 0;
}

/* ./parts/furusato-header.html */

.page-header {
	background-color: #f5f5f5;
	padding: 60px 30px;
	text-align: center;
	border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {

	.page-header {
		padding: 40px 20px
	}
}

.page-header .page-header-title {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
	line-height: 1.3;
}

@media (max-width: 768px) {

	.page-header .page-header-title {
		font-size: 32px
	}
}

.page-header .page-header-subtitle {
	font-size: 20px;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {

	.page-header .page-header-subtitle {
		font-size: 16px
	}
}

/* ./parts/privacy-header.html */

section#privacy-header {
	background-color: #f5f5f5;
	padding: 40px 30px;
	text-align: center;
}

@media (max-width: 768px) {

	section#privacy-header {
		padding: 30px 20px
	}
}

section#privacy-header .header-container {
	max-width: 1200px;
	margin: 0 auto;
}

section#privacy-header h1 {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
}

@media (max-width: 768px) {

	section#privacy-header h1 {
		font-size: 32px
	}
}

section#privacy-header .subtitle {
	font-size: 20px;
	color: #666666;
	font-weight: 400;
}

@media (max-width: 768px) {

	section#privacy-header .subtitle {
		font-size: 16px
	}
}

/* ./parts/factory-header.html */

.factory-page-header {
	background-color: #f5f5f5;
	padding: 40px 30px;
	text-align: center;
}

.factory-page-header h1 {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 10px;
}

.factory-page-header .subtitle {
	font-size: 20px;
	color: #666666;
}

/* ./parts/recruit-header.html */

section#recruit-header {
	background-color: #f5f5f5;
	padding: 60px 30px;
	text-align: center;
}

@media (max-width: 768px) {

	section#recruit-header {
		padding: 40px 20px
	}
}

section#recruit-header h1 {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
}

section#recruit-header .subtitle {
	font-size: 20px;
	color: #666666;
}

/* ./parts/about-info.html */

#about-info {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	#about-info {
		padding: 40px 20px
	}
}

#about-info .container {
	max-width: 1200px;
	margin: 0 auto;
}

#about-info .info-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#about-info .info-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#about-info .info-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#about-info .info-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 40px;
}

#about-info .info-table tr {
	border-bottom: 1px solid #e0e0e0;
}

#about-info .info-table tr:last-child {
	border-bottom: none;
}

#about-info .info-table td {
	padding: 16px 0;
}

#about-info .info-table td:first-child {
	width: 150px;
	font-weight: 600;
	color: #222222;
	font-size: 14px;
}

@media (max-width: 768px) {

	#about-info .info-table td:first-child {
		width: 120px;
		font-size: 13px
	}
}

#about-info .info-table td:last-child {
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 768px) {

	#about-info .info-table td:last-child {
		font-size: 13px
	}
}

#about-info .info-table td:last-child a {
	color: #c52323;
	text-decoration: none;
}

#about-info .info-table td:last-child a:hover {
	text-decoration: underline;
}

/* ./parts/contact-header.html */

section.contact-header {
	background-color: #f5f5f5;
	padding: 60px 30px;
	text-align: center;
}

@media (max-width: 768px) {

	section.contact-header {
		padding: 40px 20px
	}
}

section.contact-header h1 {
	font-size: 44px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
}

@media (max-width: 768px) {

	section.contact-header h1 {
		font-size: 32px
	}
}

section.contact-header .subtitle {
	font-size: 20px;
	color: #666666;
	margin: 0;
}

@media (max-width: 768px) {

	section.contact-header .subtitle {
		font-size: 16px
	}
}

/* ./parts/about-philosophy.html */

#about-philosophy {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	#about-philosophy {
		padding: 40px 20px
	}
}

#about-philosophy .container {
	max-width: 1200px;
	margin: 0 auto;
}

#about-philosophy .philosophy-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#about-philosophy .philosophy-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#about-philosophy .philosophy-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#about-philosophy .pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 992px) {

	#about-philosophy .pillars {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {

	#about-philosophy .pillars {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

#about-philosophy .pillar {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#about-philosophy .pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {

	#about-philosophy .pillar {
		padding: 20px
	}
}

#about-philosophy .pillar .icon {
	font-size: 60px;
	color: #c52323;
	margin-bottom: 15px;
	display: block;
}

#about-philosophy .pillar h3 {
	font-size: 18px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 12px;
}

#about-philosophy .pillar p {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

/* ./parts/furusato-about.html */

#furusato-about {
	padding: 60px 30px;
	background-color: #ffffff;
}

#furusato-about .container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-about .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#furusato-about .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#furusato-about .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#furusato-about .about-content {
	display: block;
	margin: 0 auto;
	max-width: 800px;
	text-align: left;
}

#furusato-about .about-content p {
	font-size: 14px;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 20px;
}

#furusato-about .about-content p:last-child {
	margin-bottom: 0;
}

/* ./parts/furusato-message.html */

#furusato-message {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

#furusato-message .container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-message .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#furusato-message .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#furusato-message .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#furusato-message .message-box {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 8px;
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

@media (max-width: 768px) {

	#furusato-message .message-box {
		flex-direction: column;
		padding: 30px 20px;
		align-items: center;
		text-align: center
	}
}

#furusato-message .message-box .message-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	flex-shrink: 0;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
}

@media (max-width: 768px) {

	#furusato-message .message-box .message-avatar {
		width: 60px;
		height: 60px
	}
}

#furusato-message .message-box .message-content {
	flex: 1;
}

#furusato-message .message-box .message-content p {
	font-size: 14px;
	line-height: 1.8;
	color: #666666;
	margin-bottom: 15px;
}

#furusato-message .message-box .message-content p:last-of-type {
	margin-bottom: 0;
}

#furusato-message .message-box .message-content .message-signature {
	font-size: 14px;
	font-weight: 600;
	color: #222222;
	margin-top: 20px;
	text-align: right;
}

@media (max-width: 768px) {

	#furusato-message .message-box .message-content .message-signature {
		text-align: center
	}
}

.message-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	flex-shrink: 0;
	background-color: #c52323;
	display: flex;
	align-items: center;
	justify-content: center;
}

.message-avatar .material-symbols-outlined {
	font-size: 40px;
	color: var(--primary-color);
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

@media (max-width: 768px) {

	.message-avatar {
		width: 60px;
		height: 60px
	}

	.message-avatar .material-symbols-outlined {
		font-size: 30px;
	}
}

/* ./parts/recruit-benefits.html */

section#recruit-benefits {
	padding: 80px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	section#recruit-benefits {
		padding: 60px 20px
	}
}

section#recruit-benefits .container {
	max-width: 1200px;
	margin: 0 auto;
}

section#recruit-benefits .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

section#recruit-benefits .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	section#recruit-benefits .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

section#recruit-benefits .benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 992px) {

	section#recruit-benefits .benefits-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {

	section#recruit-benefits .benefits-grid {
		grid-template-columns: 1fr
	}
}

section#recruit-benefits .benefit-card {
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

section#recruit-benefits .benefit-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {

	section#recruit-benefits .benefit-card {
		padding: 20px
	}
}

section#recruit-benefits .benefit-card .benefit-icon {
	font-size: 48px;
	margin-bottom: 15px;
	color: #c52323;
}

section#recruit-benefits .benefit-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: #c52323;
	margin-bottom: 15px;
}

@media (max-width: 768px) {

	section#recruit-benefits .benefit-card h4 {
		font-size: 16px
	}
}

section#recruit-benefits .benefit-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

section#recruit-benefits .benefit-card ul li {
	font-size: 13px;
	color: #666666;
	line-height: 1.8;
	padding: 6px 0;
	padding-left: 16px;
	position: relative;
}

section#recruit-benefits .benefit-card ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #c52323;
	font-weight: 600;
}

/* ./parts/index-hero.html */

#hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

@media (max-width: 768px) {

	#hero {
		height: 60vh;
		min-height: 400px
	}
}

#hero .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

#hero .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 2;
}

#hero .hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 800px;
	padding: 40px 30px;
	animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {

	#hero .hero-content {
		padding: 30px 20px
	}
}

#hero .hero-title {
	font-size: 50px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 20px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

	#hero .hero-title {
		font-size: 36px;
		margin-bottom: 16px
	}
}

@media (max-width: 480px) {

	#hero .hero-title {
		font-size: 28px;
		margin-bottom: 12px
	}
}

#hero .hero-subtitle {
	font-size: 20px;
	color: #ffffff;
	line-height: 1.6;
	margin-bottom: 40px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

	#hero .hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px
	}
}

@media (max-width: 480px) {

	#hero .hero-subtitle {
		font-size: 14px;
		margin-bottom: 24px
	}
}

#hero .hero-cta {
	display: inline-block;
	background-color: #c52323;
	color: #ffffff;
	padding: 16px 48px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(197, 35, 35, 0.3);
	cursor: pointer;
	border: none;
	font-family: inherit;
}

#hero .hero-cta:hover {
	background-color: #a01a1a;
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(197, 35, 35, 0.4);
}

#hero .hero-cta:active {
	transform: translateY(-1px);
}

@media (max-width: 768px) {

	#hero .hero-cta {
		padding: 14px 40px;
		font-size: 14px
	}
}

#hero .hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: bounce 2s infinite;
}

@media (max-width: 768px) {

	#hero .hero-scroll-indicator {
		bottom: 20px
	}
}

#hero .hero-scroll-indicator .material-symbols-outlined {
	font-size: 28px;
	color: #ffffff;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-15px);
	}
}

/* ./parts/index-news.html */

#news-section {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	#news-section {
		padding: 40px 20px
	}
}

#news-section .news-container {
	max-width: 1200px;
	margin: 0 auto;
}

#news-section .section-header {
	margin-bottom: 50px;
}

#news-section .section-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 10px;
}

#news-section .news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

#news-section .news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

#news-section .news-item:hover {
	padding-left: 10px;
	background-color: rgba(197, 35, 35, 0.02);
}

#news-section .news-item:last-child {
	border-bottom: none;
}

@media (max-width: 768px) {

	#news-section .news-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px
	}
}

#news-section .news-date {
	font-size: 12px;
	color: #666666;
	font-weight: 500;
	min-width: 100px;
}

#news-section .news-content {
	flex: 1;
	margin: 0 30px;
}

@media (max-width: 768px) {

	#news-section .news-content {
		margin: 0;
		margin-bottom: 10px;
		width: 100%
	}
}

#news-section .news-content h3 {
	font-size: 16px;
	color: #222222;
	margin-bottom: 5px;
	font-weight: 600;
}

#news-section .news-content p {
	font-size: 13px;
	color: #666666;
	margin: 0;
}

#news-section .news-link {
	color: #c52323;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
}

#news-section .news-link:hover {
	gap: 8px;
}

@media (max-width: 768px) {

	#news-section .news-link {
		font-size: 11px
	}
}

#news-section .news-footer {
	margin-top: 40px;
	text-align: right;
}

#news-section .news-footer a {
	color: #c52323;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

#news-section .news-footer a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {

	#news-section .news-footer {
		text-align: center
	}

	#news-section .news-footer a {
		font-size: 13px;
	}
}

/* ./parts/about-message.html */

#about-message {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	#about-message {
		padding: 40px 20px
	}
}

#about-message .container {
	max-width: 1200px;
	margin: 0 auto;
}

#about-message .message-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#about-message .message-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#about-message .message-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#about-message .message-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 50px;
	align-items: center;
}

@media (max-width: 768px) {

	#about-message .message-layout {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

#about-message .message-image {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

#about-message .message-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 4;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: right;
	object-position: right;
}

#about-message .message-image .image-caption {
	text-align: center;
	font-size: 14px;
	color: #666666;
	margin-top: 12px;
	font-weight: 600;
}

#about-message .message-content p {
	font-size: 15px;
	color: #666666;
	line-height: 2;
	margin-bottom: 20px;
}

#about-message .message-content p:last-child {
	margin-bottom: 0;
}

#about-message .message-content .signature {
	margin-top: 30px;
	font-size: 14px;
	color: #222222;
	font-weight: 600;
	text-align: right;
}

/* ./parts/factory-safety.html */

#factory-safety {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	#factory-safety {
		padding: 40px 20px
	}
}

#factory-safety .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#factory-safety .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#factory-safety .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#factory-safety .safety-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 992px) {

	#factory-safety .safety-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

#factory-safety .safety-grid .safety-card {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	text-align: center;
	transition: all 0.3s ease;
}

#factory-safety .safety-grid .safety-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#factory-safety .safety-grid .safety-card .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background-color: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
}

#factory-safety .safety-grid .safety-card .icon .material-symbols-rounded {
	font-size: 32px;
	/* アイコン自体のサイズ調整 */
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

#factory-safety .safety-grid .safety-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #c52323;
	margin-bottom: 15px;
}

#factory-safety .safety-grid .safety-card ul {
	text-align: left;
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

#factory-safety .safety-grid .safety-card ul li {
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

#factory-safety .safety-grid .safety-card ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #c52323;
	font-weight: bold;
}

#factory-safety .safety_subtext {
	text-align: center;
	margin-bottom: 50px;
}

/* ./parts/index-recruit.html */

#recruit-section {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	#recruit-section {
		padding: 40px 20px
	}
}

#recruit-section .recruit-container {
	max-width: 1200px;
	margin: 0 auto;
}

#recruit-section .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#recruit-section .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#recruit-section .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#recruit-section .staff-cards {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
	margin-top: 50px;
}

@media (max-width: 768px) {

	#recruit-section .staff-cards {
		gap: 30px
	}
}

#recruit-section .staff-card {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#recruit-section .staff-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	border-style: solid;
	border-width: 0 40px 40px 0;
	border-color: transparent #c52323 transparent transparent;
	z-index: 1;
}

@media (max-width: 768px) {

	#recruit-section .staff-card {
		padding: 20px
	}
}

@media (max-width: 768px) {

	#recruit-section {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px
	}
}

#recruit-section .staff-image {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

#recruit-section .staff-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

#recruit-section .staff-content .staff-name {
	font-size: 16px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 5px;
}

#recruit-section .staff-content .staff-position {
	font-size: 14px;
	color: #666666;
	margin-bottom: 20px;
}

#recruit-section .staff-content .staff-message {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

.recruit-bottom {
	text-align: center;
}

.recruit-bottom .recruit-cta {
	display: inline-block;
	background-color: #c52323;
	color: #ffffff;
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 30px;
}

.recruit-bottom .recruit-cta:hover {
	background-color: var(--primary-light);
	transform: translateY(2px);
	box-shadow: 0 4px 16px rgba(197, 35, 35, 0.3);
}

/* ヒーローエリアのスタイル */
.recruit-hero {
	width: 100%;
	height: 450px;
	position: relative;
}

.hero-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 768px) {

	.hero-image {
		height: 250px
	}
}

.hero-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.hero-text {
	position: absolute;
	bottom: -10px;
	right: -10px;
	background-color: #ffffff;
	width: 50%;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
}

.hero-text h3 {
	font-size: 28px;
	font-weight: 700;
	color: #c52323;
	line-height: 1.4;
	margin-bottom: 20px;
}

@media (max-width: 768px) {

	.hero-text h3 {
		font-size: 22px
	}
}

.hero-text p {
	font-size: 15px;
	color: #444444;
	line-height: 1.8;
	margin: 0;
}

@media (max-width: 768px) {

	.hero-text p {
		font-size: 14px
	}
}


@media (max-width: 768px) {

	#recruit-section .recruit-hero {
		height: auto;
		display: flex;
		flex-direction: column;
	}

	#recruit-section .hero-image {
		position: relative;
		height: 250px;
		width: 100%;
	}

	#recruit-section .hero-text {
		position: relative;
		width: 100%;
		bottom: 0;
		right: 0;
		padding: 25px 20px;
		margin-top: -20px;
		box-sizing: border-box;
	}

	#recruit-section .staff-cards {
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
	}

	#recruit-section .staff-card {
		width: 100%;
		box-sizing: border-box;
	}

	#recruit-section .staff-image {
		max-width: 100%;
	}
}

/* ./parts/about-access.html */

/* 親セクション */
#about-access {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {
	#about-access {
		padding: 40px 20px;
	}
}

/* コンテナ */
#about-access .container {
	max-width: 1200px;
	margin: 0 auto;
}

/* タイトル */
#about-access .access-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#about-access .access-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {
	#about-access .access-title {
		font-size: 28px;
		margin-bottom: 40px;
	}
}

#about-access .access-layout-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

@media (max-width: 768px) {
	#about-access .access-layout-box {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

#about-access .access-info p {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 16px;
}

#about-access .access-info p strong {
	color: #222222;
	font-weight: 600;
}

#about-access .access-info a {
	color: #c52323;
	text-decoration: none;
}

#about-access .access-map {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	#about-access .access-map {
		height: 300px;
	}
}

#about-access .access-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* ./parts/about-history.html */

#about-history {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	#about-history {
		padding: 40px 20px
	}
}

#about-history .container {
	max-width: 1200px;
	margin: 0 auto;
}

#about-history .history-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#about-history .history-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#about-history .history-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#about-history .timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

#about-history .timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background-color: #e0e0e0;
}

@media (max-width: 768px) {

	#about-history .timeline::before {
		left: 20px
	}
}

#about-history .timeline-item {
	margin-bottom: 50px;
	position: relative;
}

#about-history .timeline-item:nth-child(odd) {
	text-align: right;
	padding-right: 52%;
	padding-left: 0;
}

@media (max-width: 768px) {

	#about-history .timeline-item:nth-child(odd) {
		text-align: left;
		padding-right: 0;
		padding-left: 60px
	}
}

#about-history .timeline-item:nth-child(even) {
	text-align: left;
	padding-left: 52%;
	padding-right: 0;
}

@media (max-width: 768px) {

	#about-history .timeline-item:nth-child(even) {
		padding-left: 60px;
		padding-right: 0
	}
}

#about-history .timeline-item::before {
	content: '';
	position: absolute;
	top: 0;
	width: 16px;
	height: 16px;
	background-color: #c52323;
	border: 3px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #e0e0e0;
}

@media (max-width: 768px) {

	#about-history .timeline-item::before {
		left: 12px
	}
}

#about-history .timeline-item:nth-child(odd)::before {
	right: calc(50% - 8px);
}

@media (max-width: 768px) {

	#about-history .timeline-item:nth-child(odd)::before {
		right: auto;
		left: 12px
	}
}

#about-history .timeline-item:nth-child(even)::before {
	left: calc(50% - 8px);
}

@media (max-width: 768px) {

	#about-history .timeline-item:nth-child(even)::before {
		left: 12px
	}
}

#about-history .timeline-year {
	font-size: 18px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 8px;
}

#about-history .timeline-text {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

/* ./parts/factory-process.html */

#factory-process {
	padding: 60px 30px;

}

@media (max-width: 768px) {

	#factory-process {
		padding: 40px 20px
	}
}

#factory-process .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#factory-process .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#factory-process .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#factory-process .process-flow {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

@media (max-width: 768px) {

	#factory-process .process-flow {
		flex-direction: column;
		gap: 40px
	}
}

#factory-process .process-flow .process-step {
	flex: 1;
	text-align: center;
	position: relative;
}

#factory-process .process-flow .process-step .step-number {
	width: 60px;
	height: 60px;
	background-color: #c52323;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	margin: 0 auto 20px;
}

#factory-process .process-flow .process-step .step-title {
	font-size: 16px;
	font-weight: 600;
	color: #c52323;
	margin-bottom: 15px;
}

#factory-process .process-flow .process-step .step-description {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	text-align: center;
}

#factory-process .process-flow .process-step::after {
	content: '→';
	position: absolute;
	right: -45px;
	top: 30px;
	font-size: 24px;
	color: #c52323;
	font-weight: 700;
}

@media (max-width: 768px) {

	#factory-process .process-flow .process-step::after {
		display: none
	}
}

#factory-process .process-flow .process-step:last-child::after {
	display: none;
}

@media (max-width: 768px) {
	#factory-process .process-flow .process-step::before {
		content: '↓';
		display: block;
		font-size: 24px;
		color: #c52323;
		margin-bottom: 15px;
	}

	#factory-process .process-flow .process-step:first-child::before {
		display: none;
	}
}

#factory-process .safety_subtext {
	text-align: center;
	margin-bottom: 50px;
}

/* ./parts/index-about.html */

section#index-about {
	padding: 60px 30px;
	background-color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@media (max-width: 768px) {

	section#index-about {
		padding: 40px 20px
	}
}

section#index-about .container {
	max-width: 1200px;
	margin: 0 auto;
}

section#index-about .section-header {
	text-align: center;
	margin-bottom: 60px;
}

section#index-about .section-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

section#index-about .section-header h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

section#index-about .section-header p {
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
	max-width: 700px;
	margin: 40px auto 0;
}

@media (max-width: 768px) {

	section#index-about .section-header {
		margin-bottom: 40px
	}

	section#index-about .section-header h2 {
		font-size: 28px;
	}

	section#index-about .section-header p {
		font-size: 14px;
	}
}

section#index-about .features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

@media (max-width: 992px) {

	section#index-about .features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media (max-width: 768px) {

	section#index-about .features-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

section#index-about .features-grid .feature-card {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

	section#index-about .features-grid .feature-card {
		padding: 20px
	}
}

section#index-about .features-grid .feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

section#index-about .features-grid .feature-card .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	border-radius: 50%;
	font-size: 30px;
	color: #c52323;
}

section#index-about .features-grid .feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 15px;
}

section#index-about .features-grid .feature-card p {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin: 0;
}

section#index-about .features-grid .feature-card .material-symbols-rounded {
	font-size: 32px;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

section#index-about .cta-button {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

section#index-about .cta-button a {
	display: inline-block;
	padding: 16px 40px;
	background-color: #c52323;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(197, 35, 35, 0.2);
}

section#index-about .cta-button a:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(197, 35, 35, 0.3);
}

@media (max-width: 768px) {

	section#index-about .cta-button a {
		padding: 14px 32px;
		font-size: 14px
	}
}

/* ./parts/factory-gallery.html */

#factory-gallery {
	padding: 60px 30px;
}

@media (max-width: 768px) {

	#factory-gallery {
		padding: 40px 20px
	}
}

#factory-gallery .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#factory-gallery .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#factory-gallery .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#factory-gallery .gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 992px) {

	#factory-gallery .gallery-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {

	#factory-gallery .gallery-grid {
		grid-template-columns: 1fr
	}
}

#factory-gallery .gallery-grid .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
}

#factory-gallery .gallery-grid .gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#factory-gallery .gallery-grid .gallery-item img {
	width: 100%;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#factory-gallery .gallery-grid .gallery-item:hover img {
	transform: scale(1.05);
}

#factory-gallery .gallery-grid .gallery-item .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: white;
	padding: 20px;
	font-size: 14px;
	font-weight: 600;
}

/* ./parts/contact-methods.html */

section#contact-methods {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	section#contact-methods {
		padding: 40px 20px
	}
}

section#contact-methods .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

section#contact-methods .section-title {
	font-size: 28px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 40px;
	text-align: center;
}

@media (max-width: 768px) {

	section#contact-methods .section-title {
		font-size: 24px;
		margin-bottom: 30px
	}
}

section#contact-methods .methods-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 992px) {

	section#contact-methods .methods-grid {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

@media (max-width: 768px) {

	section#contact-methods .methods-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

section#contact-methods .method-card {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

section#contact-methods .method-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {

	section#contact-methods .method-card {
		padding: 24px
	}
}

section#contact-methods .method-card .method-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section#contact-methods .method-card .method-icon .material-symbols-outlined {
	font-size: 48px;
	color: #c52323;
}

section#contact-methods .method-card .method-title {
	font-size: 18px;
	font-weight: 600;
	color: #c52323;
	margin-bottom: 15px;
}

section#contact-methods .method-card .method-info {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 15px;
}

section#contact-methods .method-card .method-info .contact-detail {
	font-size: 20px;
	font-weight: 700;
	color: #222222;
	margin: 15px 0;
}

section#contact-methods .method-card .method-info .hours {
	font-size: 12px;
	color: #999999;
	margin-top: 10px;
}

section#contact-methods .method-card a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
}

section#contact-methods .method-card a:hover {
	text-decoration: underline;
	opacity: 0.8;
}

section#contact-methods .button-link {
	display: inline-block;
	background-color: #c52323;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 15px;
}

section#contact-methods .button-link:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(197, 35, 35, 0.3);
}

/* ./parts/furusato-products.html */

#furusato-products {
	padding: 60px 30px;
	background-color: #ffffff;
}

#furusato-products .container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-products .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#furusato-products .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#furusato-products .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#furusato-products .products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 992px) {

	#furusato-products .products-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {

	#furusato-products .products-grid {
		grid-template-columns: 1fr
	}
}

#furusato-products .product-card {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

#furusato-products .product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#furusato-products .product-card .product-image {
	width: 100%;
	height: 220px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

#furusato-products .product-card .product-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

#furusato-products .product-card .product-title {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 10px;
}

#furusato-products .product-card .product-description {
	font-size: 13px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 15px;
	flex: 1;
}

#furusato-products .product-card .product-price {
	font-size: 16px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 15px;
}

#furusato-products .product-card .product-btn {
	background-color: #c52323;
	color: #ffffff;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 13px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

#furusato-products .product-card .product-btn:hover {
	background-color: bar(--primary-light);
}

/* ./parts/recruit-voices.html */

section#recruit-voices {
	padding: 80px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	section#recruit-voices {
		padding: 60px 20px
	}
}

section#recruit-voices .container {
	max-width: 1200px;
	margin: 0 auto;
}

section#recruit-voices .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

section#recruit-voices .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	section#recruit-voices .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

section#recruit-voices .voices-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 992px) {

	section#recruit-voices .voices-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media (max-width: 768px) {

	section#recruit-voices .voices-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

section#recruit-voices .voice-card {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	/* 三角形の基準点にする */
	overflow: hidden;
}

/* カードからはみ出した部分を隠す */

section#recruit-voices .voice-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {

	section#recruit-voices .voice-card {
		padding: 20px
	}
}

section#recruit-voices .voice-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	/* 三角形の形とサイズ */
	border-style: solid;
	border-width: 0 40px 40px 0;
	/* border-color: [上] [右] [下] [左] */
	border-color: transparent #c52323 transparent transparent;
	z-index: 10;
}

@media (max-width: 767px) {

	section#recruit-voices .voice-card {
		padding: 0
			/* スマホで余白が二重にならないよう調整 */

			/* スマホでは三角形を少し小さくする場合 */
	}

	section#recruit-voices .voice-card::before {
		border-width: 0 30px 30px 0;
	}
}

section#recruit-voices .voice-card .voice-image {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	margin-bottom: 20px;
}

section#recruit-voices .voice-card .voice-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}

section#recruit-voices .voice-card .voice-header {
	margin-bottom: 15px;
	padding: 0 2rem;
}

section#recruit-voices .voice-card .voice-header .name {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 5px;
}

section#recruit-voices .voice-card .voice-header .position {
	font-size: 13px;
	color: #666666;
}

section#recruit-voices .voice-card .voice-message {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	padding: 0 2rem 2rem 2rem;
}

/* ./parts/furusato-sites.html */

#furusato-sites {
	padding: 60px 30px;
	background-color: #ffffff;
}

#furusato-sites .container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-sites .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#furusato-sites .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#furusato-sites .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#furusato-sites .sites-intro {
	text-align: center;
	margin-bottom: 40px;
}

#furusato-sites .sites-intro p {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

#furusato-sites .sites-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 992px) {

	#furusato-sites .sites-grid {
		grid-template-columns: 1fr
	}
}

@media (max-width: 768px) {

	#furusato-sites .sites-grid {
		grid-template-columns: 1fr
	}
}

#furusato-sites .site-card {
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

#furusato-sites .site-card:hover {
	background-color: #ffffff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#furusato-sites .site-card .site-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#furusato-sites .site-card .site-icon .material-symbols-outlined {
	font-size: 40px;
	color: #c52323;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

#furusato-sites .site-card .site-name {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 10px;
}

#furusato-sites .site-card .site-description {
	font-size: 13px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 20px;
}

#furusato-sites .site-card .site-btn {
	background-color: #c52323;
	color: #ffffff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 13px;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

#furusato-sites .site-card .site-btn:hover {
	background-color: var(--primary-light);
}

/* ./parts/index-furusato.html */

#furusato-section {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	#furusato-section {
		padding: 40px 20px
	}
}

#furusato-section .furusato-container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-section .furusato-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

#furusato-section .furusato-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	#furusato-section .furusato-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

#furusato-section .furusato-intro {
	text-align: center;
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {

	#furusato-section .furusato-intro {
		font-size: 14px;
		margin-bottom: 40px
	}
}

#furusato-section .products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 50px;
}

@media (max-width: 992px) {

	#furusato-section .products-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 768px) {

	#furusato-section .products-grid {
		grid-template-columns: 1fr
	}
}

#furusato-section .product-card {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

#furusato-section .product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#furusato-section .product-card .product-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

#furusato-section .product-card .product-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#furusato-section .product-card .product-image:hover img {
	transform: scale(1.05);
}

#furusato-section .product-card .product-content {
	padding: 20px;
}

#furusato-section .product-card .product-content .product-name {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 10px;
}

#furusato-section .product-card .product-content .product-description {
	font-size: 13px;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 15px;
}

#furusato-section .product-card .product-content .product-price {
	font-size: 16px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 15px;
}

#furusato-section .product-card .product-content .product-link {
	display: block;
	background-color: #c52323;
	color: #ffffff;
	padding: 10px 16px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 6px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

#furusato-section .product-card .product-content .product-link:hover {
	background-color: var(--primary-light);
}

#furusato-section .furusato-links {
	background-color: #f5f5f5;
	padding: 40px 30px;
	border-radius: 8px;
	text-align: center;
}

@media (max-width: 768px) {

	#furusato-section .furusato-links {
		padding: 30px 20px
	}
}

#furusato-section .furusato-links .links-title {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 20px;
}

#furusato-section .furusato-links .links-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

@media (max-width: 992px) {

	#furusato-section .furusato-links .links-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (max-width: 768px) {

	#furusato-section .furusato-links .links-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

#furusato-section .furusato-links .link-button {
	display: block;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	padding: 15px 12px;
	border-radius: 6px;
	text-decoration: none;
	color: #222222;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
}

#furusato-section .furusato-links .link-button:hover {
	background-color: #c52323;
	color: #ffffff;
	border-color: #c52323;
}

/* ./parts/recruit-application.html */

section#recruit-application {
	padding: 80px 30px;
	background-color: #f5f5f5;
}

@media (max-width: 768px) {

	section#recruit-application {
		padding: 60px 20px
	}
}

section#recruit-application .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

section#recruit-application .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	section#recruit-application .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

section#recruit-application .steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}

@media (max-width: 768px) {

	section#recruit-application .steps {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

section#recruit-application .steps .step {
	text-align: center;
	position: relative;
}

section#recruit-application .steps .step .step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #c52323;
	color: #ffffff;
	border-radius: 50%;
	font-size: 28px;
	font-weight: 700;
	margin: 0 auto 15px;
}

section#recruit-application .steps .step h4 {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 15px;
}

section#recruit-application .steps .step p {
	font-size: 13px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 15px;
}

section#recruit-application .steps .step ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

section#recruit-application .steps .step ul li {
	font-size: 13px;
	color: #666666;
	line-height: 1.8;
	padding: 6px 0;
	padding-left: 16px;
	position: relative;
}

section#recruit-application .steps .step ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #c52323;
	font-weight: 600;
}

section#recruit-application .steps .step::after {
	content: '→';
	position: absolute;
	right: -30px;
	top: 20px;
	font-size: 24px;
	color: #c52323;
}

@media (max-width: 768px) {

	section#recruit-application .steps .step::after {
		display: none
	}
}

section#recruit-application .steps .step:last-child::after {
	display: none;
}

section#recruit-application .cta-button {
	text-align: center;
	margin-top: 50px;
}

section#recruit-application .cta-button a {
	display: inline-block;
	padding: 18px 50px;
	background-color: #c52323;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s ease;
}

section#recruit-application .cta-button a:hover {
	background-color: #a01a1a;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ./parts/furusato-faq.html */

#furusato-faq {
	padding: 60px 30px;
	background-color: #f5f5f5;
}

#furusato-faq .container {
	max-width: 1200px;
	margin: 0 auto;
}

#furusato-faq .section-title {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 40px;
	text-align: center;
}

#furusato-faq .faq-list {
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#furusato-faq .faq-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 0;
}

#furusato-faq .faq-item:last-child {
	border-bottom: none;
}

#furusato-faq .faq-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 30px;
	background-color: #ffffff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #222222;
	text-align: left;
	transition: all 0.3s ease;
}

#furusato-faq .faq-trigger:hover {
	background-color: #f5f5f5;
}

#furusato-faq .faq-trigger .faq-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c52323;
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
}

#furusato-faq .faq-trigger[aria-expanded="true"] {
	background-color: #f5f5f5;
}

#furusato-faq .faq-trigger[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

#furusato-faq .faq-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	padding: 0 30px;
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
}

#furusato-faq .faq-trigger[aria-expanded="true"]+.faq-content {
	max-height: 500px;
	opacity: 1;
	padding: 20px 30px;
}

@media (max-width: 768px) {

	#furusato-faq {
		padding: 40px 20px
	}

	#furusato-faq .faq-trigger {
		padding: 15px 20px;
		font-size: 14px;
	}

	#furusato-faq .faq-trigger[aria-expanded="true"]+.faq-content {
		padding: 15px 20px;
	}

	#furusato-faq .faq-content {
		padding: 0 20px;
	}
}

/* ./parts/privacy-content.html */

section {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	section {
		padding: 40px 20px
	}
}

section .policy-section {
	margin-bottom: 40px;
}

section .policy-section h3 {
	font-size: 18px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f5f5f5;
}

section .policy-section p {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 15px;
}

section .policy-section p:last-child {
	margin-bottom: 0;
}

section .policy-section ul {
	margin: 15px 0;
	padding-left: 0;
}

section .policy-section ul li {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 10px;
	padding-left: 24px;
	position: relative;
}

section .policy-section ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: #c52323;
	font-weight: 600;
}

section .contact-section {
	background-color: #f5f5f5;
	padding: 30px;
	border-radius: 8px;
	margin-top: 40px;
}

section .contact-section h4 {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 15px;
}

section .contact-section p {
	font-size: 13px;
	color: #666666;
	line-height: 1.8;
	margin-bottom: 10px;
}

section .contact-section p strong {
	color: #222222;
	font-weight: 600;
}

section .contact-section p a {
	color: #c52323;
	text-decoration: none;
}

section .contact-section p a:hover {
	text-decoration: underline;
}

section .last-update {
	text-align: right;
	font-size: 12px;
	color: #999999;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

/* ./parts/contact-form.html */

#contact-form-section {
	padding: 60px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	#contact-form-section {
		padding: 40px 20px
	}
}

#contact-form-section .section-title {
	font-size: 28px;
	font-weight: 700;
	color: #c52323;
	margin-bottom: 40px;
	text-align: center;
}

#contact-form-section .form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

	#contact-form-section .form-wrapper {
		padding: 20px
	}
}

#contact-form-section .form-group {
	margin-bottom: 24px;
}

#contact-form-section .form-group:last-child {
	margin-bottom: 0;
}

#contact-form-section .form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 8px;
}

#contact-form-section .form-group label .required {
	color: #c52323;
	margin-left: 4px;
}

#contact-form-section .form-group input,
#contact-form-section .form-group textarea,
#contact-form-section .form-group select {
	width: 100%;
	padding: 12px 16px;
	font-size: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	transition: all 0.3s ease;
	background-color: #ffffff;
	color: #222222;
}

#contact-form-section .form-group input:focus,
#contact-form-section .form-group textarea:focus,
#contact-form-section .form-group select:focus {
	outline: none;
	border-color: #c52323;
	box-shadow: 0 0 0 3px rgba(197, 35, 35, 0.1);
}

#contact-form-section .form-group input::-moz-placeholder,
#contact-form-section .form-group textarea::-moz-placeholder,
#contact-form-section .form-group select::-moz-placeholder {
	color: #999999;
	opacity: 0.7;
}

#contact-form-section .form-group input::placeholder,
#contact-form-section .form-group textarea::placeholder,
#contact-form-section .form-group select::placeholder {
	color: #999999;
	opacity: 0.7;
}

#contact-form-section .form-group input:disabled,
#contact-form-section .form-group textarea:disabled,
#contact-form-section .form-group select:disabled {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

#contact-form-section .form-group textarea {
	resize: vertical;
	min-height: 150px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#contact-form-section .form-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23222222' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
	padding-right: 36px;
	cursor: pointer;
}

#contact-form-section .form-group .error-message {
	display: block;
	color: #c52323;
	font-size: 12px;
	margin-top: 6px;
}

#contact-form-section .form-group .help-text {
	font-size: 12px;
	color: #666666;
	margin-top: 6px;
}

/* プライバシーポリシー全文表示ボックス */

#contact-form-section .privacy-policy-window {
	width: 100%;
	height: 160px;
	/* ウィンドウの高さ */
	overflow-y: scroll;
	/* 縦スクロールを有効に */
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 15px;
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

#contact-form-section .privacy-policy-window h3 {
	font-size: 14px;
	color: #222;
	margin: 15px 0 5px 0;
	font-weight: 700;
}

#contact-form-section .privacy-policy-window h3:first-child {
	margin-top: 0;
}

#contact-form-section .checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 24px;
}

#contact-form-section .checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

#contact-form-section .checkbox-group input[type="checkbox"]:checked {
	background-color: #c52323;
	border-color: #c52323;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
}

#contact-form-section .checkbox-group input[type="checkbox"]:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(197, 35, 35, 0.1);
}

#contact-form-section .checkbox-group label {
	margin: 0;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	cursor: pointer;
}

#contact-form-section .checkbox-group label a {
	color: #c52323;
	text-decoration: none;
	cursor: pointer;
}

#contact-form-section .checkbox-group label a:hover {
	text-decoration: underline;
}

#contact-form-section .form-actions {
	display: flex;
	gap: 12px;
	margin-top: 40px;
}

@media (max-width: 768px) {

	#contact-form-section .form-actions {
		flex-direction: column
	}
}

#contact-form-section .form-actions .btn {
	flex: 1;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#contact-form-section .form-actions .btn.btn-submit {
	background-color: #c52323;
	color: #ffffff;
}

#contact-form-section .form-actions .btn.btn-submit:hover:not(:disabled) {
	background-color: #a01a1a;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

#contact-form-section .form-actions .btn.btn-submit:disabled {
	background-color: #999999;
	cursor: not-allowed;
	opacity: 0.7;
}

#contact-form-section .form-actions .btn.btn-reset {
	background-color: #f5f5f5;
	color: #222222;
}

#contact-form-section .form-actions .btn.btn-reset:hover {
	background-color: #e0e0e0;
}

#contact-form-section .form-message {
	padding: 14px 16px;
	border-radius: 6px;
	margin-bottom: 24px;
	font-size: 14px;
	display: none;
}

#contact-form-section .form-message.success {
	display: block;
	background-color: #f0f9ff;
	border-left: 4px solid #10b981;
	color: #059669;
}

#contact-form-section .form-message.error {
	display: block;
	background-color: #fef2f2;
	border-left: 4px solid #c52323;
	color: #991b1b;
}

#contact-form-section .form-loading {
	display: none;
	text-align: center;
	padding: 20px;
	color: #666666;
}

#contact-form-section .form-loading.show {
	display: block;
}

#contact-form-section .form-loading .spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #e0e0e0;
	border-top-color: #c52323;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-right: 10px;
	vertical-align: middle;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* プライバシーポリシーモーダル */
.privacy-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: auto;
}

.privacy-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.privacy-modal .modal-content {
	background-color: #ffffff;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	animation: slideUp 0.3s ease;
}

@media (max-width: 768px) {
	.privacy-modal .modal-content {
		width: 95%;
		max-height: 90vh
	}
}

.privacy-modal .modal-header {
	padding: 24px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.privacy-modal .modal-header h2 {
	font-size: 22px;
	font-weight: 700;
	color: #c52323;
	margin: 0;
}

.privacy-modal .modal-header .close-btn {
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999999;
	transition: color 0.3s ease;
}

.privacy-modal .modal-header .close-btn:hover {
	color: #222222;
}

.privacy-modal .modal-body {
	padding: 24px;
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
}

.privacy-modal .modal-body h3 {
	font-size: 16px;
	font-weight: 700;
	color: #222222;
	margin: 20px 0 10px 0;
}

.privacy-modal .modal-body h3:first-child {
	margin-top: 0;
}

.privacy-modal .modal-body p {
	margin: 10px 0;
}

.privacy-modal .modal-body ul {
	margin: 10px 0;
	padding-left: 20px;
}

.privacy-modal .modal-body li {
	margin: 5px 0;
}

.privacy-modal .modal-body li::before {
	content: "• ";
	color: #c52323;
	margin-right: 8px;
}

.privacy-modal .modal-footer {
	padding: 20px 24px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	gap: 12px;
}

@media (max-width: 768px) {
	.privacy-modal .modal-footer {
		flex-direction: column
	}
}

.privacy-modal .modal-footer button {
	flex: 1;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.privacy-modal .modal-footer button.btn-agree {
	background-color: #c52323;
	color: #ffffff;
}

.privacy-modal .modal-footer button.btn-agree:hover {
	background-color: #a01a1a;
}

.privacy-modal .modal-footer button.btn-cancel {
	background-color: #f5f5f5;
	color: #222222;
}

.privacy-modal .modal-footer button.btn-cancel:hover {
	background-color: #e0e0e0;
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ./parts/recruit-positions.html */

section#recruit-positions {
	padding: 80px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	section#recruit-positions {
		padding: 60px 20px
	}
}

section#recruit-positions .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

section#recruit-positions .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	section#recruit-positions .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

section#recruit-positions .position-tabs {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 768px) {

	section#recruit-positions .position-tabs {
		gap: 10px
	}
}

section#recruit-positions .position-tab {
	padding: 12px 24px;
	background-color: #c52323;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

section#recruit-positions .position-tab:hover {
	background-color: #a01a1a;
}

@media (max-width: 768px) {

	section#recruit-positions .position-tab {
		padding: 10px 20px;
		font-size: 13px
	}
}

section#recruit-positions .position-content {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {

	section#recruit-positions .position-content {
		padding: 20px
	}
}

section#recruit-positions .position-content .info-table {
	width: 100%;
	border-collapse: collapse;
}

section#recruit-positions .position-content .info-table tr {
	border-bottom: 1px solid #e0e0e0;
}

section#recruit-positions .position-content .info-table tr:last-child {
	border-bottom: none;
}

section#recruit-positions .position-content .info-table th {
	text-align: left;
	padding: 15px;
	background-color: #f5f5f5;
	font-weight: 600;
	color: #222222;
	width: 150px;
	font-size: 14px;
}

@media (max-width: 768px) {

	section#recruit-positions .position-content .info-table th {
		width: 120px;
		padding: 12px;
		font-size: 13px
	}
}

section#recruit-positions .position-content .info-table td {
	padding: 15px;
	color: #666666;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 768px) {

	section#recruit-positions .position-content .info-table td {
		padding: 12px;
		font-size: 13px
	}
}

section#recruit-positions .position-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

section#recruit-positions .position-content ul li {
	padding: 8px 0;
	padding-left: 20px;
	position: relative;
	color: #666666;
	font-size: 14px;
}

section#recruit-positions .position-content ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #c52323;
	font-weight: 600;
}

/* ./parts/recruit-faq.html */

section#recruit-faq {
	padding: 80px 30px;
	background-color: #ffffff;
}

@media (max-width: 768px) {

	section#recruit-faq {
		padding: 60px 20px
	}
}

section#recruit-faq .recruit-title {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

section#recruit-faq .recruit-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #c52323;
	margin: 15px auto 0;
}

@media (max-width: 768px) {

	section#recruit-faq .recruit-title {
		font-size: 28px;
		margin-bottom: 40px
	}
}

section#recruit-faq .faq-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 0;
}

section#recruit-faq .faq-item:first-child {
	border-top: 1px solid #e0e0e0;
}

section#recruit-faq .faq-item .faq-trigger {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 100%;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: #222222;
	transition: color 0.3s ease;
}

section#recruit-faq .faq-item .faq-trigger:hover {
	color: #c52323;
}

section#recruit-faq .faq-item .faq-trigger .label {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

section#recruit-faq .faq-item .faq-trigger .label .q {
	color: #c52323;
	font-weight: 700;
	font-size: 16px;
}

section#recruit-faq .faq-item .faq-trigger .icon {
	flex-shrink: 0;
	font-size: 20px;
	transition: transform 0.3s ease;
	color: #c52323;
}

section#recruit-faq .faq-item .faq-trigger[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

section#recruit-faq .faq-item .faq-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	padding-top: 0;
}

section#recruit-faq .faq-item .faq-trigger[aria-expanded="true"]+.faq-content {
	max-height: 500px;
	opacity: 1;
	padding-top: 15px;
}

section#recruit-faq .faq-item .faq-answer {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
	padding-left: 28px;
}

section#recruit-faq .faq-item .faq-answer .a {
	display: inline;
	color: #c52323;
	font-weight: 600;
	margin-right: 8px;
}

/* ./parts/recruit-hero.html */

section#recruit-hero {
	position: relative;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
}

section#recruit-hero .hero-image-box {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
		url('https://showachikusan.jp/img/recruit.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 150px 0 0 0;
	z-index: 1;
}

@media (max-width: 768px) {

	section#recruit-hero .hero-image-box {
		width: 100%;
		border-radius: 0
	}
}

section#recruit-hero .hero-container {
	margin: 0 auto 0 0;
	width: 40%;
	position: relative;
	z-index: 2;



}

@media (max-width: 768px) {

	section#recruit-hero .hero-container {
		width: 100%;
		/* 幅をいっぱいに広げる */
		margin: 0
			/* 余白をリセット */



	}
}

section#recruit-hero .hero-content {
	padding: 60px 10% 60px 20%;
	text-align: center;
}

@media (max-width: 768px) {

	section#recruit-hero .hero-content {
		width: 100%;
		padding: 40px 20px;
		background: rgba(0, 0, 0, 0.4)
	}
}

section#recruit-hero .hero-content h1 {
	font-size: 2.5rem;
}

section#recruit-hero h1,
section#recruit-hero .hero-subtitle {
	color: #222;
}

@media (max-width: 768px) {

	section#recruit-hero h1,
	section#recruit-hero .hero-subtitle {
		color: #fff
	}
}

section#recruit-hero .hero-description {
	color: #444;
}

@media (max-width: 768px) {

	section#recruit-hero .hero-description {
		color: #f0f0f0
	}
}

section#recruit-hero .hero-cta {
	display: inline-block;
	background-color: #c52323;
	color: #ffffff;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(197, 35, 35, 0.3);
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 30px;
	width: 100%;
	text-align: left;
}

@media (max-width: 768px) {

	.hero-content {
		padding: 40px 20px
	}
}

h1 {
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

@media (max-width: 768px) {

	h1 {
		font-size: 36px
	}
}

.hero-subtitle {
	font-size: 22px;
	color: #ffffff;
	margin-bottom: 30px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 20px
	}
}

.hero-description {
	font-size: 16px;
	color: #f0f0f0;
	max-width: 600px;
	line-height: 1.8;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}

@media (max-width: 768px) {

	.hero-description {
		font-size: 14px;
		margin-bottom: 20px
	}
}

.hero-cta {
	display: inline-block;
	background-color: #c52323;
	color: #ffffff;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(197, 35, 35, 0.3);
}

.hero-cta:hover {
	background-color: #a01a1a;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(197, 35, 35, 0.4);
}

@media (max-width: 768px) {

	.hero-cta {
		padding: 12px 24px;
		font-size: 14px
	}
}