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

/* ------------------------------
背景色を横幅いっぱいに
------------------------------ */

/* ---------------
大枠
--------------- */
.home .container {
	padding-left: 0;
	padding-right: 0;
}

.home section > div {
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width:768px){
	.home .container,
	.home .main {
		width: 100%;
	}

	.home section > div {
		width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ---------------
大枠 - section枠なし
--------------- */
.top_question {
	padding-left: 15px;
	padding-right: 15px;	
}

@media (min-width:768px){
	.top_question {
		width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ---------------
背景色を付けるブロック
--------------- */
.home section:has(.about) {
	margin-top: 60px;
	padding-top: 60px;
	padding-bottom: 60px;
	background: var(--main-color-light);
}

.home section:has(.about) .title_icon {
	margin-top: 0;
}

@media screen and (max-width:767px){
	.home section:has(.about) {
		margin-top: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/* ---------------
検索をcontainer内に入れて背景色を横幅いっぱいに
--------------- */
.top_search {
	width: 100%;
	margin-top: 60px;
	margin-bottom: 0;
	padding: 60px 0;
	background: var(--main-color-light);
}

.home .top_search .title_icon {
	margin-top: 0;
}

@media (min-width:768px){
	.top_search .box {
		width: 1200px;
		min-height: 60px;
		margin: 0 auto;
		padding: 0 15px;
		border: 0;
	}
}

@media screen and (max-width:767px){
	.top_search {
		margin-top: 40px;
		padding: 40px 15px;
	}
}

/* ---------------
連絡先の背景色を横幅いっぱいに
--------------- */
.home .point_contact {
	margin-top: 60px;
	padding: 60px 15px;
	background: var(--main-color-light);
}

/* ------------------------------
アイコン付きの見出し
シンプルな線の見出しに変更
------------------------------ */
.home .title_icon {
	margin-bottom: 2em;
	padding-left: 0 !important;
	font-size: 30px;
	text-align: center;
}

.home .title_icon::before {
	display: none;
}

.home .title_icon::after {
	position: static;
	content: "Title";
	display: block;
	width: 100%;
	height: auto;
	margin-top: 0.5em;
	background: transparent;
	line-height: 1;
	color: #ccc;
	font-size: 20px;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.home .top_job .title_icon::after {
	content: "Job";
}

.home .top_question .title_icon::after {
	content: "Q&A";
}

.home .areamap .title_icon::after {
	content: "Area";
}

.home .point .title_icon::after {
	content: "Point";
}

.home .top_news .title_icon::after {
	content: "Content";
}

.home .top_search .title_icon::after {
	content: "Search";
}

@media screen and (max-width:767px){
	.home .title_icon {
		font-size: 20px;
	}
	
	.home .title_icon::after {
		font-size: 14px;
	}	
}

/* ------------------------------
バナー
------------------------------ */
.job_bnr {
	margin-top: 60px;
}

@media screen and (max-width:767px){
	.job_bnr {
		margin-top: 40px;
	}
}

/* ------------------------------
検索
------------------------------ */
.top_search #searhtab {
	margin-bottom: 0;
}

.top_search .dl_list > div > dl {
	padding: 20px;
	background: #fff;
}

@media screen and (max-width:767px){
	.top_search .dl_list > div > dl {
		padding: 15px 15px 10px;
	}
}

/* ------------------------------
新着コンテンツ
------------------------------ */
@media screen and (max-width:767px){
	.top_news .title_icon {
		margin-top: 80px;
	}
}










