@charset "UTF-8";

/* セクション11: CTAエリア */
.cta-section {
	background-color: #fff;
	text-align: center;
	color: white;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0 80px 0;
	/* 背景色 */
	overflow-x: hidden;
	/* 横スクロールを防ぐ */
	position: relative;
	box-sizing: content-box;
	max-width: 90vw;
}

.background-layer-company {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/company-background.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	/* 最背面 */
}

.cta-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 90vw;
	margin: 0 auto;
	box-sizing: border-box;
}

.cta-left {
	flex: 1;
	padding-right: 20px;
	white-space: nowrap;
}

.cta-left h2 {
	color: #331107;
	font-weight: 900;
	font-size: 3.6rem;
	text-align: left;
	line-height: 1.6;
}

.cta-right img {
	flex: 1;
	text-align: right;
	position: relative;
	z-index: 2;
}

.cta-banner-image {
	max-width: 100%;
	height: auto;
}

.cta-buttons {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
	gap: 30px;
	width: 100%;
	max-width: 1360px;

}

.cta-buttons button {
	background-color: #1F9884;
	color: white;
	border: none;
	cursor: pointer;
	width: 100%;
	height: 80px;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	padding: 20px;
}

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

.copyright {
	text-align: center;
	margin-top: 20px;
	font-size: 12px;
	color: #888;
}

/* フッター */
.footer-wrap {
	border-top: 1px solid #707070;
	background-color: #fff;
	padding: 20px 0;
	display: flex;
	justify-content: space-around;
	max-width: 90vw;
	margin: 0 auto;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.custom-button {
	background-color: #1F9884;
	/* ボタンの背景色 */
	color: white;
	/* テキストの色 */
	border: none;
	/* ボーダーをなしに */
	border-radius: 10px;
	/* 角を丸く */
	padding: 10px 20px;
	/* パディング */
	font-size: 1rem;
	/* フォントサイズ */
	display: flex;
	/* フレックスボックスを使用 */
	align-items: center;
	/* アイテムを中央に揃える */
	justify-content: space-between;
	/* スペースを均等に */
	cursor: pointer;
	/* カーソルをポインターに */
	margin-top: 20px;
}

.custom-button i {
	margin-left: 10px;
	/* アイコンとテキストの間にスペースを追加 */
}

.custom-button:hover {
	background-color: #17a396;
	/* ホバー時の背景色 */
}

.company-info h5 {
	font-size: 24px;
	font-weight: 500;
}

.footer-section h3 {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 8px;
	font-size: 14px;
}

.footer-section ul li a {
	text-decoration: none;
	color: #555;
	font-size: 0.85rem;
}

.footer-section ul li a:hover {
	text-decoration: underline;
	color: #000;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.footer_sns {
	margin-block-start: 20px;
	justify-content: flex-start;
	align-items: center;
}

.footer-logo_sns {
	max-width: 30px;
	height: auto;
}

.footer_sns a:hover {
	opacity: 0.5;
	transition: linear;
}