@charset "UTF-8";

/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	color: #131313;
	font-size: 14px;
	font-family:"Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
	-webkit-text-size-adjust: 100%;
	line-height: 0;
}

/*clearfix*/

.cf:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

.mt-10{ margin-top: 10px; }
.mt-20{ margin-top: 20px; }
.mt-30{ margin-top: 30px; }
.mt-40{ margin-top: 40px; }
.mt-50{ margin-top: 50px; }

.fs-08{ font-size: 8px; }
.fs-09{ font-size: 9px; }
.fs-10{ font-size: 10px; }
.fs-11{ font-size: 11px; }
.fs-12{ font-size: 12px; }
.fs-13{ font-size: 13px; }
.fs-14{ font-size: 14px; }

.ta-ce{ text-align: center; }
.ta-ri{ text-align: right; }
.ta-le{ text-align: left; }

.cl-re{ color: #b70c0c;}

.strong{
	font-weight: 700;
}

.column_banner{
	margin: 10px 0px;
	padding: 10px;
}

sup{
	vertical-align:super;
	font-size: 10px;
}


/* ===================================
全体
=================================== */

#sp_body{
	max-width: 640px;
	margin: 0px auto;
	line-height: 100%;
}

#sp_body img{
	max-width: 100%;
}


#header_line{
	background-color: #3C2B23;
	padding: 5px 0px;
}

#header_line p{
	text-align: center;
}


.content{
}

.content_inner{
	padding: 0 10px;
}


.content h1 {
	font-size: 22px;
	line-height: 1.5em;
	position: relative;
	padding: 10px;
	background-color: #016CB6;
	background: -webkit-repeating-linear-gradient(45deg, #016CB6, #016CB6 1px, #077dcf 1px, #077dcf 3px);
	background: repeating-linear-gradient(45deg, #077dcf, #077dcf 1px, #016CB6 1px, #016CB6 3px);
	margin-bottom: 35px;
	color: #FFF;
	box-shadow: 0 5px 6px rgba(0, 0, 0, .15);
}

.content h1 span {
	display: block;
	padding: 8px;
	border: 1px dashed #FFF;
}

.content h1::before,
.content h1::after {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
}
.content h1::before {
	left: 0;
	border-width: 0 15px 15px 0;
	border-right-color: #095589;
}
.content h1::after {
	right: 0;
	border-style: solid;
	border-width: 15px 15px 0 0;
	border-top-color: #095589;
}

.content h2 {
	color: #016CB6;
	font-size: 20px;
	line-height: 1.5em;
	position: relative;
	padding: 10px 0 10px 10px;
	border-left: 6px solid #ccc;
	margin-bottom: 15px;
}
.content h2::before {
	position: absolute;
	left: -6px;
	bottom: 0;
	content: '';
	width: 6px;
	height: 50%;
	background-color: #016CB6;
}
.content h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 2px solid #016CB6;
}

.content h3{
	font-size: 18px;
	line-height: 1.5em;
	border-bottom: #016CB6 solid 1px;
	padding: 5px 0 5px 0;
	color: #016CB6;
	margin-bottom: 15px;
}

.content h3 {
	font-size: 18px;
	line-height: 1.5em;
	position: relative;
	padding-bottom: .5em;
	border-bottom: 4px solid #ccc;
	color: #016CB6;
	margin-bottom: 15px;
}

.content h3::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 30%;
	height: 4px;
	background-color: #016CB6;
}

.img{
	width: 100%;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.text{
	font-size: 14px;
	line-height: 1.7em;
	margin-bottom: 15px;
}


/* ===================================
パンくず
=================================== */

.breadcrumb {
    -webkit-overflow-scrolling: touch;
}

.breadcrumb::-webkit-scrollbar {
    height: 5px;
}

.breadcrumb::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
}

.breadcrumb::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
}

.breadcrumb {
    padding: 15px 0 5px 0;
    margin: 0 10px 10px 10px;
    overflow-x: auto;
}

.breadcrumb ul {
    display: table;
    list-style: none;
}

.breadcrumb ul li {
    font-size: 12px;
    display: table-cell;
    vertical-align: middle;
    padding-right: 26px;
    position: relative;
    white-space: nowrap;
    list-style: none;
}

.breadcrumb ul li:last-child {
    padding-right: 0;
}

.breadcrumb ul li:last-child:after {
    display: none;
}

.breadcrumb ul li:after {
    position: absolute;
    display: block;
    content: '';
    content: ">";
    top: 3px;
    right: 8px;
}

.breadcrumb ul li a:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #111;
    bottom: -7px;
}

.breadcrumb ul li a,
.breadcrumb ul li span {
    position: relative;
    display: block;
    top: -4px;
}

.breadcrumb ul li span {
    padding: 6px 8px;
}

.breadcrumb.no-scroll ul {
    display: block;
}

.breadcrumb.no-scroll ul li {
    display: inline-block;
    margin-bottom: 16px;
    white-space: normal;
}

.breadcrumb.no-scroll ul li:after {
    top: -4px;
}

@media print,screen and (min-width: 1024px) {
    .breadcrumb ul li a:before {
        height: 1px;
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transition: transform 0.3s ease;
        -moz-transition: transform 0.3s ease;
        -ms-transition: transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }
    .breadcrumb ul li a:hover:before {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
    }
}

/* ===================================
ページネーション
=================================== */

.pagination {
    padding: 5px;
    margin-bottom: 20px;
	text-align: center;

}

.page {
    display: inline-block;
    padding: 7px 7px;
    margin-right: 4px;
	margin-bottom: 8px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}

.page:hover, .page.gradient:hover {
    background: #fefefe;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFEFE), to(#f0f0f0));
    background: -moz-linear-gradient(0% 0% 270deg,#FEFEFE, #f0f0f0);
}

.page.active {
    border: none;
    background: #616161;
    box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);
    color: #f0f0f0;
    text-shadow: 0px 0px 3px rgba(0,0,0, .5);
}

.page.gradient {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#e9e9e9));
    background: -moz-linear-gradient(0% 0% 270deg,#f8f8f8, #e9e9e9);
}

/* ===================================
PROFILE
=================================== */

.profile{
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 15px;
	border: #8f9b90 dotted 1px;
	line-height: 1.5em;
}

.profile .name{
	background-color:#8f9b90;
	color: #FFF;
	padding: 5px;
	font-size: 14px;
	margin-bottom: 15px;

}

/* ===================================
メニュー
=================================== */

ul#list {
	border: solid 2px #8f9b90;
    padding: 0.5em;
	position: relative;
	margin-top: 2em;
}
ul#list li.active {
	line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
	border-bottom: dashed 1px silver;
	list-style-type: none!important;
	font-weight: bold;
	background-color: #F5F5F5;
}
ul#list li {
	line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
	border-bottom: dashed 1px silver;
	list-style-type: none!important;
}
ul#list li:last-of-type{
	border-bottom: none;
}
ul#list li.active:last-of-type{
	border-bottom: none;
}
ul#list li:before {/*リスト内のアイコン*/
  	content: ">";/*アイコン種類*/
  	position: absolute;
  	left : 0.8em; /*左端からのアイコンまで*/
  	color: #8f9b90; /*アイコン色*/
}
ul#list li.active:before {/*リスト内のアイコン*/
  	content: ">";/*アイコン種類*/
  	position: absolute;
  	left : 0.8em; /*左端からのアイコンまで*/
  	color: #8f9b90; /*アイコン色*/
}
ul#list li:after {/*タイトルタブ*/
  	background: #8f9b90;
  	color: #fff;
  	font-weight: bold;
  	position: absolute;
  	left: -2px;
  	bottom: 100%;
  	padding: 1px 7px;
  	content: "学ぼう！家づくり講座　目次";/*タブの文字*/
  	letter-spacing: 0.05em;/*字間*/
  }


/* ===================================
フッター部分
=================================== */

#security{
	padding: 10px;
	font-size: 10px;
}

.security_left{
	float: left;
	width: 17%;
	margin-right: 3%;
	text-align: center;
}

.security_right{
	float: left;
	width: 75%;
}

footer{
	background-color: #3C2B23;
	color: #fff;
}

footer ul{
	padding: 10px 0px;
	width: 320px;
	text-align: center;
	margin: 0px auto;
	font-size: 12px;
}

footer ul li{
	float: left;
	width: 50%;
	padding: 2px 0px;
}

footer ul li a{
	color: #fff;
}

footer .copyright{
	font-size: 8px;
	text-align: center;
	padding: 10px 0px;
}

.drawer-menu{
	line-height: 12px;
}

/*scroll_top*/

.scroll_top {
	height: 45px;
	width: 50px;
	bottom: 5px;
	position: fixed;
	right: 5px;
	z-index: 10;
	background-color: #fff;
	opacity: 0.7;
	border-radius: 8px;
	text-align: center;
	-moz-box-shadow: 0px 0px 3px #333;
	-webkit-box-shadow: 0px 0px 3px #333;
}
.scroll_top a {
	font-size: 50%;
	color: #000;
	text-shadow: 1px 1px 1px #FFF;
	text-decoration: none;
	display: block;
	padding-top: 5px;
	line-height: 1.3;
}

/*追記フッター建築事例検索20220622*/

.con_ex_sch {
	padding: 20px;
	margin: 30px 10px 50px;
	/*border: 1px solid #492e1e;*/
	border-radius: 15px;
	background-color: #f8f9f9;
}

.con_ex_sch .tit_sch{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.con_ex_sch select{
	padding: 10px;
	border-radius: 5px;
	border: 1px #e2e0de solid;
	font-size: 18px;
	color: #333;
	width: 100%;
	box-shadow: 5px 5px 0px 0 rgb(73 46 30);
	-webkit-appearance: none;
	background-color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(/home/sp/images/yaji_icon.png);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center right 10px;
	box-sizing: border-box;
	cursor: pointer;
}
.con_ex_sch select:focus {
	outline: 0;
}

/*関連ページ*/

.related_page {
    border: solid 2px #8f9b90;
    padding: 0.5em;
    margin-top: 10px;
    line-height: 1.5;
}

.related_page_tit {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.related_page_item {
    margin-bottom: 10px;
}

.related_page_item:last-of-type {
    margin-bottom: 0;
}

.page_tit {
    padding: 5px;
    font-weight: bold;
    background-color: #f5f5f5;
    margin-bottom: 15xp;
}
