/* リセットCSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 基本設定 */
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

::-moz-selection {
	color: #fff;
	background-color: #225657b8;
}

::selection {
	color: #fff;
	background-color: #225657b8;
	}

/* ヘッダー */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #299151;
	letter-spacing: 1px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
	color: #2c5aa0;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2c5aa0;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* ヒーローセクション */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.slideshow-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}



/* スライドショー */
#container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	touch-action: pan-y; /* 縦方向のスクロールを許可 */
	}
	
#slides {
	position: relative;
	width: 100%;
	height: 100%;
    background-color: #1a1a1a;
	}
#slides .slide {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	z-index: 0;
	}
#slides .slide .title {
	position: absolute;
	bottom: 60px;
	left: 20px;
	z-index: 2;
	padding-top: 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 4em;
	color: white;
	overflow: hidden;
	}
#slides .slide .title .title-text {
	display: block;
	transform: translateY(1.213em);
	transition: transform 1s ease-in-out;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-size: 5rem;
	}
#slides .slide .slide-partial {
	position: absolute;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 1s ease-in-out;
	}
#slides .slide .slide-partial img {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1s ease-in-out;
	}
	#slides .slide .slide-left {
	top: 0;
	left: 0;
	transform: translateX(-100%);
	}
	#slides .slide .slide-left img {
	top: 0;
	right: 0;
	-o-object-position: 100% 50%;
	object-position: 100% 50%;
	transform: translateX(50%);
	}
	#slides .slide .slide-right {
	top: 0;
	right: 0;
	transform: translateX(100%);
	transition-delay: 0.2s;
	}
	#slides .slide .slide-right img {
	top: 0;
	left: 0;
	-o-object-position: 0% 50%;
	object-position: 0% 50%;
	transition-delay: 0.2s;
	transform: translateX(-50%);
	}
	#slides .slide.active .title .title-text {
	transform: translate(0);
	transition-delay: 0.3s;
	}
	#slides .slide.active {
	z-index: 1;
	}
	#slides .slide.active .slide-partial, #slides .slide.active .slide-partial img {
	transform: translateX(0);
	}
	
	#slide-select {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5em;
	font-weight: lighter;
	color: white;
	list-style: none;
	}
	#slide-select li {
	position: relative;
	cursor: pointer;
	margin: 0 5px;
	}
	#slide-select li.prev:hover {
	transform: translateX(-2px);
	}
	#slide-select li.next:hover {
	transform: translateX(2px);
	}
	#slide-select .selector {
	height: 14px;
	width: 14px;
	border: 2px solid white;
	background-color: transparent;
	transition: background-color 0.5s ease-in-out;
	border-radius: 50%;
	display: block;
	}
	#slide-select .selector.current {
	background-color: white;
	}
	
/* コードペンリンクは削除 */




/* 薄紫色のオーバーレイを削除 */
.slideshow-slide::before {
	content: none;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem 3rem;
	color: white;
	text-align: center;
	z-index: 10;
	position: relative;
	backdrop-filter: blur(5px);
	border-radius: 3px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	animation: fadeIn 1.5s ease-out;
}

.hero-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.welcome {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 0.8rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease-out;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.2;
	animation: fadeInUp 1s ease-out 0.2s both;
	letter-spacing: 0.05em;
	text-shadow: 0 0px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 3rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease-out 0.4s both;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.hero-cta {
	animation: fadeInUp 1s ease-out 0.6s both;
	position: relative;
}

.cta-button {
	display: inline-block;
	padding: 16px 45px;
	background: #000000AA;
	color: white;
	text-decoration: none;
	border-radius: 2px;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	font-size: 1.4rem;
	z-index: 1;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: width 0.4s ease;
	z-index: -1;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.4);
}

.cta-button:hover::before {
	width: 100%;
}

/* ウェルカムセクション */
.welcome-section {
	padding: 100px 0;
	background: linear-gradient(to right, #f8f9fa 0%, #eef1f5 100%);
}

.welcome-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.welcome-text {
	padding-right: 2rem;
}

.welcome-heading {
	font-size: 2.2rem;
	font-weight: 700;
	color: #299151;
	margin-bottom: 1.5rem;
	line-height: 1.3;
	position: relative;
}


.welcome-paragraph {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: #555;
}

.welcome-cta {
	text-align: right;
	margin-top: 2rem;
}

.welcome-link {
	display: inline-flex;
	align-items: center;
	color: white;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	background: linear-gradient(0deg,rgba(11, 51, 18, 1) 0%, rgba(41, 145, 81, 1) 100%);
	box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
	transition: all 0.3s ease;
}

.welcome-link-icon {
	margin-right: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	padding: 5px;
}

.welcome-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(44, 90, 160, 0.4);
}

.welcome-image {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: 70vh;
	display: block;
	transition: transform 0.5s ease;
    object-fit: cover;

}

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

/* 事業内容セクション */
.services {
	padding: 100px 0;
	background: #f8f9fa;
}

/* お知らせセクション */
.news-section {
	padding: 80px 0;
	background: #fff;
}

.news-list {
	margin-bottom: 3rem;
}

.news-item {
	display: flex;
	border-bottom: 1px solid #eee;
	padding: 1.5rem 0;
	transition: all 0.3s ease;
	align-items: center;
}

.news-item:first-child {
	border-top: 1px solid #eee;
}

.news-item:hover {
	background: rgba(44, 90, 160, 0.03);
}

.news-date {
	width: 180px;
	flex-shrink: 0;
	color: #666;
	font-weight: 500;
	padding-right: 2rem;
	display: flex;
	align-items: center;
}

.news-content {
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 40px;
}

.news-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin: 0;
	color: #333;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.news-tag {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	margin-left: 0.8rem;
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 3px;
	letter-spacing: 0.05em;
}

.new-tag {
	background-color: #ff3b30;
	color: white;
	animation: pulse-light 2s infinite;
}

.important-tag {
	background-color: #007aff;
	color: white;
}

@keyframes pulse-light {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
	100% {
		opacity: 1;
	}
}

.news-link {
	color: #299151;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border: 1px solid #299151;
	border-radius: 3px;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-left: 1rem;
}

.news-link:hover {
	background: #299151;
	color: white;
}

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

.news-more-link {
	display: inline-block;
	color: #299151;
	text-decoration: none;
	font-weight: 600;
	padding: 0.8rem 2rem;
	border: 2px solid #299151;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.news-more-link:hover {
	background: #299151;
	color: white;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #299151;
	margin-bottom: 4rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg,rgba(44, 163, 94, 1) 0%, rgba(184, 255, 77, 1) 100%);

	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.service-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-content::before {
	content: '';
	position: absolute;
	top: 180px;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg,rgba(44, 163, 94, 1) 0%, rgba(184, 255, 77, 1) 100%);

	z-index: 1;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card.featured .service-content {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 0 0 15px 15px;
}

.service-card.featured::before {
	background: rgba(255, 255, 255, 0.3);
}

.service-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	border-radius: 15px 15px 0 0;
	position: relative;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.service-content {
	padding: 2rem;
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	text-align: center;
	display: none;
}

.service-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #299151;
}

.service-card.featured .service-content h3 {
	color: white;
}

.service-content ul {
	list-style: none;
	/* margin-bottom: 2rem; */
}

.service-content li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.service-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ef0000;
	font-weight: bold;
}

.service-card.featured .service-content li::before {
	color: rgba(255, 255, 255, 0.8);
}

.service-link {
	display: inline-block;
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.service-card.featured .service-link {
	color: rgba(255, 255, 255, 0.9);
}

.service-link::after {
	content: '→';
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.service-link:hover::after {
	transform: translateX(5px);
}

/* お問い合わせセクション */
.contact {
	padding: 100px 0;
	background: linear-gradient(0deg,rgba(11, 51, 18, 1) 0%, rgba(29, 102, 76, 1) 100%);
	color: white;
}

.contact .section-title {
	color: white;
}

.contact .section-title::after {
	background: rgba(255, 255, 255, 0.3);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.contact-highlight {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item {
	margin-bottom: 1rem;
	position: relative;
	padding-left: 40px;
}

.highlight-item:last-child {
	margin-bottom: 0;
}

.contact-icon {
	position: absolute;
	left: 0;
	top: 5px;
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.phone-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1zM12 3v10l3-3h6V3h-9z'/%3E%3C/svg%3E");
}

.mail-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.highlight-link {
	display: block;
	color: white;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 0.2rem;
	transition: all 0.3s ease;
}

.highlight-link:hover {
	color: rgba(255, 255, 255, 0.8);
	transform: translateX(5px);
}

.highlight-label {
	display: block;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-label {
	font-weight: 600;
	min-width: 80px;
}

.contact-value {
	font-size: 1.1rem;
}

.contact-value a {
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-value a:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	background: white;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-message{
	color: #FFF;
}

.submit-button {
	width: 100%;
	padding: 15px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.submit-button:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.submit-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* ハニーポット（非表示） */
.honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

/* 必須マーク */
.required {
	color: #ff3b30;
	font-weight: bold;
}

/* 文字数カウンター */
.char-counter {
	text-align: right;
	font-size: 0.8rem;
	color: #FFF;
	margin-top: 0.3rem;
}

/* 確認セクション */
.confirmation-group {
	margin-top: 2rem;
}

.confirmation-box {
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 0;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 確認ヘッダー */
.confirmation-header {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.2rem 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-header h4 {
	color: white;
	font-size: 1.2rem;
	margin: 0 0 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.confirmation-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin: 0;
	font-style: italic;
}

/* 確認内容 */
.confirmation-content {
	padding: 1.5rem;
}

.confirm-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1rem;
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	border-left: 4px solid rgba(184, 255, 77, 0.6);
	transition: all 0.3s ease;
}

.confirm-item:hover {
	background: rgba(255, 255, 255, 0.12);
	border-left-color: rgba(184, 255, 77, 0.8);
}

.confirm-item:last-child {
	margin-bottom: 0;
}

.confirm-label {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
}

.confirm-value {
	color: white;
	word-break: break-word;
	font-size: 0.95rem;
	line-height: 1.4;
	min-height: 20px;
	padding: 2px 0;
}

/* 同意セクション */
.confirmation-agreement {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.2rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* カスタムチェックボックス */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	color: white;
	font-size: 0.95rem;
	line-height: 1.4;
	gap: 0.8rem;
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkbox-custom {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.1);
	margin-top: 0;
	display: inline-block;
	box-sizing: border-box;
}

.checkbox-custom::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: white;
	font-size: 14px;
	font-weight: bold;
	transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
	background: linear-gradient(135deg, rgba(184, 255, 77, 0.8), rgba(44, 163, 94, 0.8));
	border-color: rgba(184, 255, 77, 0.9);
	box-shadow: 0 0 10px rgba(184, 255, 77, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
	transform: translate(-50%, -50%) scale(1);
}

.checkbox-label:hover .checkbox-custom {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);
}

.checkbox-text {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	flex: 1;
	align-self: flex-start;
}

.checkbox-text strong {
	color: white;
	font-size: 1rem;
	line-height: 1.3;
}

.checkbox-text small {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
	font-style: italic;
	line-height: 1.3;
}

/* フッター */
.footer {
	background: #1a1a1a;
	color: white;
	text-align: center;
	padding: 2rem 0;
}

/* アニメーション */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.hamburger {
	display: flex;
	}

	#container {
		width: 100%;
		height: 92%;
	}
	
	.container {
		padding: 0 40px;
	}

	#slides .slide .title .title-text {
		transform: translateY(1.25em);
		font-size: 2rem;
		}

	.nav-menu {
	position: fixed;
	left: -100%;
	top: 70px;
	flex-direction: column;
	background-color: white;
	width: 100%;
	text-align: center;
	transition: 0.3s;
	box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
	padding: 2rem 0;
	}
	
	.nav-menu.active {
	left: 0;
	}
	
	.hero-title {
	font-size: 2rem;
	}
	
	.hero-subtitle {
	font-size: 1.1rem;
	}
	
	.welcome-content {
	grid-template-columns: 1fr;
	gap: 2rem;
	}
	
	.welcome-text {
	padding-right: 0;
	order: 1;
	}
	
	.welcome-cta {
	text-align: center;
	margin-top: 1.5rem;
	}
	
	.welcome-image {
	order: 0;
	margin-bottom: 1rem;
	}
	
	.welcome-heading {
	font-size: 1.8rem;
	}
	
	.services-grid {
	grid-template-columns: 1fr;
	}
	
	.contact-content {
	grid-template-columns: 1fr;
	gap: 2rem;
	}
	
	.section-title {
	font-size: 2rem;
	}
	
	.news-item {
	flex-direction: column;
	}
	
	.news-date {
	width: 100%;
	margin-bottom: 0.5rem;
	padding-right: 0;
	}
	.news-content {
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	}
	
	.news-link {
	margin-left: 0;
	margin-top: 0.8rem;
	}
	
	/* フォーム関連のモバイル対応 */
	.contact-form {
		padding: 5%;
	}

	.confirmation-header {
		padding: 1rem;
	}
	
	.confirmation-header h4 {
		font-size: 1.1rem;
	}
	
	.confirmation-content {
		padding: 1rem;
	}
	
	.confirm-item {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 0.6rem;
	}
	
	.confirm-label {
		font-size: 0.85rem;
		margin-bottom: 0.2rem;
	}
	
	.confirm-value {
		font-size: 0.9rem;
	}
	
	.confirmation-agreement {
		padding: 1rem;
	}
	
	.checkbox-label {
		font-size: 0.9rem;
		gap: 0.7rem;
		align-items: flex-start;
	}
	
	.checkbox-custom {
		width: 18px;
		height: 18px;
	}
	
	.checkbox-custom::after {
		font-size: 12px;
	}
	
	.checkbox-text strong {
		font-size: 0.95rem;
	}
	
	.checkbox-text small {
		font-size: 0.8rem;
	}
	
	.char-counter {
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
	font-size: 1.5rem;
	}
	
	.service-content {
	padding: 1.5rem;
	}
	
	.service-image {
	height: 150px;
	}
	
	.service-content::before {
	top: 150px;
	}
	
	.contact-form {
		padding: 5%;
	}
} 