@charset "UTF-8";
/* CSS Document */

/*  ページ全体  */
#content_container { 
	font-family: Raleway, sans-serif; 
	padding: 30px 10px; 
	color: #404040;

}

#content_container h3 {
	font-size: 1.6em; 
	line-height: 1.4em;
	color: #2c3e50; 
	margin-bottom: 20px; 
	font-weight: 600; 
	text-align: center;
}

.content {
	max-width: 1000px; 
	margin: 30px auto; 
}

.block_bg {
	display: block;
	background-color: #b3e0dc;
	padding: 30px;
	width: 90%;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}





/*  トップ  */
#hero {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(to bottom, #ffffff, #daf0ee);
}

#hero img {
	width: 70%;
	max-width: 800px;
	margin: 30px auto;
	display: block;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#hero h2 {
	font-weight: 700;
	font-size: 2.2em;
	color: #2c3e50;
	margin-bottom: 10px;
	line-height: 1.3;
}



/*  イントロ*/
#intro {
	background-image: url(images/img_ita_bg2.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;
}


#intro .content .block_bg img {
	display: block;
	width: 70%;
	max-width: 600px;
	margin: 0 auto 4px auto;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.intro_text {
	line-height: 1.8;
	font-size: 1.05em;
	margin: 20px auto;
}

.cprt {
	margin: 0 auto 14px auto;
	text-align: center;
	font-size: 12px;
}


.intro-bonus-images {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	margin-top: 15px;
}

.intro-bonus-images img {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	margin-bottom: 4px;
}

.intro-bonus-images {
	flex-wrap: wrap;
}

.intro-bonus-images img {
	width: calc(50% - 5px);
	max-width: none;
}

.intro-bonus-images img:last-child {
	width: 100%;
}


/* お問い合わせセクション */
#contact-section {
	background-image: url(images/img_ita_bg.jpg);		background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;
}

#contact-section h2 {
	font-size: 1.8em;
	color: #2c3e50;
	margin-bottom: 20px;
	font-weight: 700;
}

#contact-section .section-block {
	background-color: #b3e0dc;
	padding: 30px;
	margin: 30px auto;
	width: 90%;
	border-radius: 8px;
}

#contact-section .section-block p {
	line-height: 1.8;
	font-size: 1.05em;
	margin-bottom: 15px;
}

#contact-section ul {
	margin: 15px 0 15px 20px;
	line-height: 1.8;

}

#contact-section ul li {
	margin-bottom: 8px;
		list-style: disc !important;
}

.cta-area {
	padding: 50px auto;
	text-align:center;
}

.cta-button {
	dsplay: block;
	background-color: #285bbf;
	color: white;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1.1em;
	margin-top: 20px;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #264480;
}

.official-site-button {
	display: inline-block;
	background-color: #1aa8c4;
	color: white;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1.1em;
	transition: background-color 0.3s ease;
}

.official-site-button:hover {
	background-color: #0c7f96;
}






@media only screen and (max-width: 768px) {

#content_container { 
		padding: 20px 0; 
}

#hero h2 {
	font-size: 2em;
	padding: 0 10px;
}
	
#content_container h3 {
	font-size: 1.4em; 
}

#hero img {
	width: 90%;
}

.block_bg,
#contact-section .section-block {
	width: 95%;
	padding: 20px;
}

#intro .content .block_bg img {
	width: 90%;
}

#contact-section h2 {
	font-size: 1.5em;
	padding: 0 10px;
}
	
}

@media only screen and (max-width: 480px) {
#hero h2 {
	font-size: 1.6em;
}
	
#hero img {
	width: 100%;
}

#content_container h3 {
	font-size: 1.2em; 
}
	
#contact-section h2 {
	font-size: 1.3em;
}
	
.cta-button {
	padding: 12px 30px;
	font-size: 1em;
}
	

	

}