@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	height: 100%;
}
body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}


/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}


/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*opa2
---------------------------------------------------------------------------*/
@keyframes opa2 {
	0% {opacity: 0;height: 0px;overflow: hidden;}
	50% {opacity: 0;height: 80px;overflow: hidden;}
	100% {opacity: 1;height: auto;}
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*文字色*/
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	color: #13a7d8;	/*マウスオン時の文字色*/
}


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*最大幅。これ以上広がらないように。*/
	margin: 0 auto;
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	line-height: 0;margin: 0;
	width: 180px;		/*ロゴ画像の幅*/
	padding: 12px 15px;	/*上下、左右に空けるスペース*/
	position: absolute;	/*絶対配置するための指定*/		
	left: 20px;			/*左からの配置場所指定*/
	top: 0px;			/*上からの配置場所指定*/					
	background: linear-gradient(#336699,#3399cc);/*背景グラデーション*/
	border-radius: 0px 0px 5px 5px;	/*角丸にする指定。左上、右上、右下、左下への順番。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;	/*fixedはスクロールに追従しない(固定で表示)為の指定*/
	top: 15px;		/*上からの配置場所*/
	right: 15px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: rgba(0,0,0,0.6) url(../images/ham.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #ff0000 url(../images/ham.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}


/*メニュー設定（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {background: #fff;height: 0px;overflow: hidden;font-size: 14px;}

/*メニュー1個あたりの設定*/
#menubar a {
	display: block;text-decoration: none;
	padding: 15px 20px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*spanタグ（装飾用のテキスト）*/
#menubar span {
	display: block;
	font-size: 0.6em;		/*文字サイズ。60%。*/
	opacity: 0.6;			/*透明度。0.6は60%色が出た状態。*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる指定*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定（900px以上の端末用メニューもこの設定が反映されます）*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f150";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	color: #B1B1B1;		/*アイコンの色*/
	margin-right: 1em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*マウスオン時のアイコンの色（900px以上の端末用メニューもこの設定が反映されます）*/
a.ddmenu:hover::before {
	color: #13a7d8;
}
a.ddmenu_red::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f150";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	color: #D33030;		/*アイコンの色*/
	margin-right: 1em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*マウスオン時のアイコンの色（900px以上の端末用メニューもこの設定が反映されます）*/
a.ddmenu_red:hover::before {
	color: #13a7d8;
}

/*メニューの設定（.shは900px未満の端末向けのメニューです）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.sh {
	display: none;
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールに追従しない(固定で表示)為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 0px;	/*上下、左右へのボックス内の余白*/
}

/*メニューの一番上の線*/
.sh > ul {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*メニュー1個あたりの下線*/
.sh > ul > li {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*装飾文字の左側余白のバランス調整*/
.sh a.ddmenu span {padding-left: 3.8em;}

/*ddmeuを持たないメニューのテキストの左側余白のバランス調整*/
.sh > ul > li > a:not(.ddmenu) {padding-left: 3.2em !important;}


/*ドロップダウンメニュー（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
.ddmenu_parent ul {
	display: none;	
}


/*ドロップダウンメニュー（900px未満の端末向けの設定）
---------------------------------------------------------------------------*/
.sh .ddmenu_parent ul li a {
	border-bottom: 1px solid #ccc;
}

.sh .ddmenu_parent ul a {
	padding-left: 65px !important;	/*ドロップダウンメニューの左側にとる余白*/
}
/*最初のドロップダウンの上の線*/
.sh .ddmenu_parent ul li:first-of-type a {
	border-top: 1px solid #ccc;
}
/*最後のドロップダウンの下線を消す*/
.sh .ddmenu_parent ul li:last-of-type a {
	border-bottom: none;
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	display: block;				/*IE対策*/
	min-height: 0%;				/*IE対策*/
	margin: 0;		/*ボックスの外側に空ける余白*/
	flex: 1 0 auto;
	text-align: center;
}

/*トップページのmainブロックへの上書き*/
.home main {
	margin-top: 0px;			/*ボックスの上側の余白の上書き*/
}

/*mainブロック内のh2タグ*/
main h2 {
	text-align: center;
	margin: 0;
	padding: 0;
}

main h2 img {
	text-align: center;
	margin: auto;
	padding: 0;
	display: block;
}

.title2 {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	text-align: center;
	display: block;
	padding: 0px;
}

.title2_sub {
	font-family: "Noto Sans JP", sans-serif;
font-size: 50%;
letter-spacing: 0.1em;
font-weight: 300;
	display: block;
	margin: 10px 0px 20px;
}

.title3 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 32px;
	text-align: center;
	display: block;
	padding: 0px;
	font-weight: 550;
	color: #333;
}

.title3_sub {
	font-family: Arial, Helvetica, "sans-serif";
font-size: 50%;
letter-spacing: 0.1em;
font-weight: 300;
	display: block;
	margin: 10px 0px 40px;
}

.title_h3 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 24px;
	color: #173261;
	text-align: left;
	padding: 0px 0px 0px 20px;
	margin: 0px auto 30px;
	letter-spacing: 0.05em;/*文字間隔*/
	font-weight: 500;
	width: 98%;
	border-left: 4px solid #173261;
}

/*mainブロック内のh3タグ*/
main h3 {
	padding: 0 20px;				/*上下、左右への余白*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

.p_1 {
	margin: 30px 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	color: #d5d5d5;		/*文字色*/
	font-size: 0.5rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
	background: url(../images/bg_02.jpg) center top repeat-y;	/*背景*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #ffcc99;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #83BFD5;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #d5d5d5;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #333;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}

/*著作部分*/
footer .pr {display: block;}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
    width: 100%;
}

#mainimg-inner {
	height: 100vh;				/*高さ。ウィンドウの高さ一杯に表示させる指定。*/
	display: flex;				/*flexボックスを使う指定*/
	flex-direction: column;		/*子要素を縦並びにする。２つのボタンが縦並びになります。*/
	justify-content: center;	/*並びかたの種類の指定*/
	align-items: center;		/*垂直揃えの指定。上下中央に配置されるように。*/
}
#mainlogo {
	text-align: center;
	width: 80%;	
	}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
	text-align: left;
}


/*会社情報ブロック
---------------------------------------------------------------------------*/
.com_info {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
.com_info dt,
.com_info dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
.com_info dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*記事(dd)設定*/
.com_info dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
	text-align: left;
}


/*施工事例詳細ブロック
---------------------------------------------------------------------------*/
.case_detail {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*左側詳細項目名(dt)設定*/
.case_detail dt {
	width: 7em;	/*幅。7文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*右側詳細内容(dd)設定*/
.case_detail dd {
	width: calc(100% - 7em);	/*「7em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
	text-align: left;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}


/*一覧ページ（list　サムネイルブロックタイプ）
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;			/*枠線の幅、線種、色*/
	padding: 20px;					/*ボックス内の余白*/
	background: #fff;				/*背景色。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*listボックス内のh4タグ*/
.list h4 {
	margin: 10px 0;			/*上下、左右へのh4の外側に空けるスペース*/
	font-size: 1.2em;		/*文字サイズを120%に*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
}

/*listボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.7em;	/*文字サイズを70%に。*/
}

/*IE対策*/
.list div {min-height: 0%;}


/*一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #13a7d8;			/*文字色*/
}

.list2 h4 a {
	color: #13a7d8;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #333;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを70%に。*/
}


/*一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*ピックアップ情報（slickを使用したサムネイルの横スライドショー）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.pickup {
	position: relative;
	background: url(../images/bg_02.jpg) center top repeat;
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*/
}

/*１個あたりのボックス設定*/
.pickup .list {
	margin: 0 5px;	/*上下、左右へのボックスの外側に空けるスペース。２つ目の数字がボックス同士の余白になります。*/
}

.pickup .list a {text-decoration: none;display: block;}

.pickup .list img {
	width: 100%;
	height: 160px;
    object-fit : cover;
    object-position : 50% 50%; 
}

/*ボックス内のh4タグ*/
.pickup .list h4 {
	font-size: 0.85em;	/*文字サイズ。85%*/
}

/*左右の三角矢印の共通設定*/
.slick-arrow {
	position: absolute;z-index: 1;
	bottom: 45%;	/*下からの配置場所*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	padding: 2px 7px;				/*上下、左右へのボックス内の余白*/
	border-radius: 5px;				/*角を丸くする指定*/
}

/*左右の三角矢印の共通設定。マウスオン時。*/
.slick-arrow:hover {
	cursor: pointer;
	opacity: 0.8;
}

/*左右の三角矢印の形、色、サイズ*/
.slick-prev::after,
.slick-next::after {
	display: block;
	content: "▼";		/*この形を出力する。このままだと下向き矢印になってしまうので、下の方の設定でそれぞれ90度回転させています。*/
	color: #fff;		/*三角の色*/
	font-size: 0.5rem;	/*三角のサイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*左側の三角*/
.slick-prev {
	left: 0px;	/*左からの配置場所*/
}

/*左側の三角を回転させる指定*/
.slick-prev::after {
	transform: rotate(90deg);
}

/*右側の三角*/
.slick-next {
	right: 0px;	/*右からの配置場所*/
}

/*右側の三角を回転させる指定*/
.slick-next::after {
	transform: rotate(-90deg);
}

/*施工事例一覧ページ
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	flex-direction: row;	/*子要素を横並びにする*/
}

.example_list {
    width: 98%;
	margin: 0px auto 60px;
}
/*listボックス。１個あたりのボックスの指定です。*/
.list {
	border: none;
	margin: 10px 0px;
	padding: 10px;
}

.list a {text-decoration: none;display: block;}

.list img {
	width: 100%;
    object-fit : cover;
    object-position : 50% 50%; 
}

/*アイコン
---------------------------------------------------------------------------*/
/*アイコンの共通設定*/
.icon {
	display: inline-block;
	padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
	background: #999;	/*背景色。iconクラスだけ適用した場合に出る色です。*/
	color: #fff;		/*文字色*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
}

/*枠線だけが入ったデザイン*/
.waku {
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	border: 1px solid #666;	/*枠線の幅、線種、色*/
}

/*NEWアイコン*/
.newicon {
	background: #e82600;	/*背景色*/
}

/*UPアイコン*/
.upicon {
	background: #0078e8;	/*背景色*/
}

/*option1アイコン（人気）*/
.option1 {
	background: #e80068;	/*背景色*/
}

/*option2アイコン（急募）*/
.option2 {
	background: #5ab600;	/*背景色*/
}

/*option3アイコン（終了）*/
.option3 {
	background: #ccc;		/*背景色*/
}


/*list_base.htmlの設定
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
ul.menu {
	list-style: none;margin: 0;padding: 0;
}

/*メニュー１個あたりの設定*/
ul.menu li {
	width: 100%;			/*幅*/
	margin-bottom: 10px;	/*メニューの上下間に空けるスペース*/
}

/*リンクテキスト*/
ul.menu a {
	display: block;
	padding: 10px 20px;		/*上下、左右へのメニュー内の余白*/
	border-radius: 5px;		/*角を丸くする設定*/
	border: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: linear-gradient(#fff, #eee);/*背景グラデーション*/
}

/*マウスオン時*/
ul.menu a::before {
	content: "";
	border-left: 4px solid #13a7d8;	/*テキストの左側のアクセントラインの幅、線種、色*/
	padding: 3px 15px 3px 0px;		/*アクセントラインの余白。上、右、下、左への順番。15pxがテキストとの間の余白部分になります。*/
}


/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	color: #fff;			/*文字色*/
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 20px;		/*上下、左右へのボタン内の余白*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	background: linear-gradient(#6e4d3e,#503123);/*背景グラデーション*/
	font-size: 1rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	opacity: 0.9;	/*透明度。0.9は色が90%ついた状態のこと。*/
	cursor: pointer;
}

/*listブロック内でのボタン*/
.list .btn a, .list .btn input {
	margin-top: 10px;	/*上にスペースを空ける*/
	display: block;		/*横幅いっぱいに広げる*/
}



/*お問い合わせフォーム
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #ccc;	/*上の枠線の幅、線種、色*/
	padding: 10px 5px;			/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #f5f5f5;		/*背景色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	font-weight: normal;
}

/*th（左側）のみの設定*/
.ta1 td {
	text-align: left;	/*左よせにする*/
}

.hissu {color: #f00; font-size: 0.8rem; margin: 0 5px}

/*フォームタグ全般の設定*/
input, textarea, select {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	padding: 5px 10px;
	font-size: 1em;
}


/*よく頂く質問
---------------------------------------------------------------------------*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 10px;	/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.2は色が20%出た状態の事。*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	text-align: left;
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #13a7d8;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
	text-align: left;
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒の事で0.4は色が40%出た状態。*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}


/*一覧ページの「こだわりで検索」のチェックボックス設定（CMS用）
---------------------------------------------------------------------------*/
.specialbox {
	display: inline-block;
	margin-right: 10px;
}


/*ページャー。ページナビボタン。（CMS用）
---------------------------------------------------------------------------*/
/*ページャーブロック全体*/
.pager {
	margin-top: 30px;
	text-align: center;
	color: #999;	/*文字色*/
}

/*リンクテキスト（ボタン１個あたり）*/
.pager a {
	display: inline-block;text-decoration: none;
	margin-bottom: 5px;
	padding: 0 10px;	/*上下、左右へのボタン内の余白*/
	border: 1px solid #13a7d8;	/*枠線の幅、線種、色*/
	background: #13a7d8;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*リンクのマウスオン時*/
.pager a:hover {
	background: #fff;	/*背景色*/
	color: #13a7d8;		/*文字色*/
}

/*リンクのないボタン*/
.pager span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;		/*背景色*/
	color: #999;			/*文字色*/
}


/*各詳細ページ
---------------------------------------------------------------------------*/
/*パンくずリストの設定*/
.box_pankuzu {
	background: url(../images/bg_01.jpg) center top repeat;
	overflow: hidden;
	width: 100%;
	padding: 10px 0px 8px 20px;
	}
.pankuzu {
	padding: 0px;
	margin: 0px;
	font-size: 0.8em;
	color: #173261;
	float: left;
}
.box_pankuzu p {
	margin: 0px;
	padding: 0px 8px 0px 5px;
}


/*パノラマ画像のサイズ設定（※CMS用）
---------------------------------------------------------------------------*/
.panorama-img {
	width: 100% !important;
	height: 200px !important;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #13a7d8 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}
.close {display: none;}
.db {display: block; height: 100% !important;overflow: auto !important;}

.pageback {
	display: inline-block;
	width: 95%;
	text-align: left;
	font-size: 80%;
	margin: 60px auto 0px;
}

.margin_b10 {
	margin-bottom: 10px;
}

.margin_b60 {
	margin-bottom: 60px;
}

.margin_t30 {
	margin-top: 30px;
}

.margin_t10 {
	margin-top: 10px;
}

.box_w{
height: auto;
text-align: center;
width: 100%;
	padding: 30px 0px 50px;
	margin: 0px;
}

.box_campaign{
height: auto;
text-align: center;
width: 100%;
	padding: 30px 0px 0px;
	margin: 0px;
}

.box_01{
	background: url(../images/bg_01.jpg) center top repeat;
height: auto;
text-align: center;
width: 100%;
	padding: 50px 0px 30px;
	margin: 0px;
}

.box_02{
	background: url(../images/bg_03.jpg) center top repeat;
height: auto;
text-align: center;
width: 100%;
	padding: 30px 0px 50px;
	margin: 0px;
}

.box_03{
	background: #e9eef2;
height: auto;
text-align: center;
width: 100%;
	padding: 30px 0px 50px;
	margin: 0px;
}

.box_04{
	background: url("../images/bg_04.jpg") center no-repeat;
    height: auto;
	text-align: center;
	width: 100%;
	padding: 60px 0px 80px;
	margin: 0px;
}

.box_05{
	background: #cca06f;
	color: #fff;
height: auto;
text-align: center;
width: 100%;
	padding: 60px 0px 100px;
	margin: 0px;
}

.pagetitle {
    height: 280px;
    text-align: center;
    width: 100%;
	padding: 150px 0 0;
	margin: 0px;
}

.contents {background:  url("../images/bg_pagetitle_04.jpg") center bottom no-repeat;}
.example {background:  url("../images/bg_pagetitle_03.jpg") center bottom no-repeat;}
.info {background:  url("../images/bg_pagetitle_02.jpg") center bottom no-repeat;}
.contact {background:  url("../images/bg_pagetitle_05.jpg") center bottom no-repeat;}
.subsidy {background:  url("../images/bg_pagetitle_06.jpg") center bottom no-repeat;}

.pagetitle h2 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 32px;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 0px;
	margin: 0;
	color: #fff;
	letter-spacing: 0.16em;/*文字間隔*/
}
.pagetitle p {
	font-family: Arial, Helvetica, "sans-serif";
	color: #BEBEBE;
	font-size: 50%;
	letter-spacing: 0.1em;
	font-weight: 300;
	display: block;
	margin:0px;
}

.footer_btn {
	background: url("../images/bg_footer_btn.jpg") right center no-repeat;
	background-size:cover;
    text-align: center;
    width: 100%;
	padding: 50px 0;
	margin: 0;
}
.footer_btn h4 {
	display: block;
	font-size: 1.4em;
	color: #eee;
	margin: 0 0 30px;
}
.footer_btn i {
	margin-right: 1em;
}
.footer_btn img {
	display: inline-block;
	width: 70%;
	margin: 30px auto 0;
}
.footer_btn p {
	font-size: 0.8em;
	color: #fff;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 0.05em;/*文字間隔*/
}

/*--- フッター問合せボタン　線から塗り（共通設定） ---*/

.btn05{
	font-size: 1.2em;
	width: 70%;
	margin: 8px auto;
	letter-spacing: 0.05em;
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: block;
    color: #333;
    padding: 10px 20px;
    background:#eee;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .1s;/*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover{
	background: #6e4d3e;
	color: #fff;
}

/*線の設定*/
.btn05 span{
    display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 1px;
    background: #fff;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:1px;
    height:0;
    background: #fff;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after{
    width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗に */

/*横線が0.2秒送れて出現*/

.bordercircle1::before{
    right: 0;
    top: 0;
    transition-delay: 0.2s;
}
.bordercircle1::after{
    left: 0;
    bottom: 0;
    transition-delay: 0.2s;
}

/*縦線が出現*/
.bordercircle1 span::before{
    left: 0;
    top: 0;
}
.bordercircle1 span::after{
    right: 0;
    bottom: 0;
}

/*--- 線から塗り（共通設定） ここまで　---*/

#privacy p {
	text-align: left;
}

#privacy th {
	text-align: center;
	vertical-align: top;
	width: 10%;
	font-weight: normal;
}
#privacy td {
	text-align: left;
	vertical-align: top;
}



.box_footer{
	background: url(../images/bg_02.jpg) center top no-repeat;
height: auto;
text-align: center;
width: 100%;
	padding: 20px 0px;
	margin: 80px 0px 20px;
}


/*トップページ取扱商品ボタンの設定
---------------------------------------------------------------------------*/
 /* --- 外枠の定義 ---------------------------------------------*/
.box_product {
  margin         : 0;
  max-width: 100%;                /* BOXの幅             */
  text-align: center;
  padding: 0px 10px;
}

 /* --- 個別のBOXの定義 --------------------------------------- */
.box_product_wrap {
  box-sizing     : border-box;           /* 罫線も含む長さ      */
  border         : none;    /* 枠線の指定          */
  background: #FFFFFF;
  width: 95%;
  margin: 20px auto;
  padding-bottom: 16px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.box_product_l img {
  box-sizing     : border-box;           /* 罫線も含む長さ      */
  border         : none;    /* 枠線の指定          */
  margin         : 0px;                  /* BOXの間     */
  width: 100%;
  height: 100%;
}
.box_product_l h3 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #173261;
  font-size: 1.4em;		/*文字サイズ*/
  font-weight: 500;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
  margin         : 10px auto 5px;                  /* BOXの間     */
  width: 80%;
}
.box_product_l p {
  font-size: 1em;		/*文字サイズ*/
  margin         : 0px auto;                  /* BOXの間     */
  width: 80%;
  word-break: break-all;
}


/*事業内容ページの設定
---------------------------------------------------------------------------*/
.contents {
	width: 100%;
	margin: auto;
	background-color: #fff;
	display: inline-block;
}
.flow h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: center;
	display: block;
	padding: 0px;
}

.bg_contents{
	background: url(../images/bg_contents.jpg) left top no-repeat;
	background-size: 90%;
    height: auto;
    text-align: center;
    width: 100%;
	padding: 40px 0px 30px;
	margin: auto;
}
.bg_contents h3 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.6em;
	display: block;
	padding: 0px 10px 30px;
	margin: 0;
	color: #6e4d3e;
	}
.bg_contents p {
	display: block;
	padding: 0px 8%;
	margin: 0px;
	text-align: left;
	}
.products {
	width: 100%;
	background-color: #fff;
	display: inline-block;
	margin: 0 0 35px 0;
}
.products img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.products h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	padding: 0px 15px;
}
.products p{
	margin: 0;
	padding: 0 15px;
	text-align: left;
}

.products_title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.4em;
	text-align: left;
	display: block;
	padding: 0px;
	margin: 30px 0px 20px;
	line-height: 1.2em;
	color: #cca06f;
	}


/*施工の流れの設定
---------------------------------------------------------------------------*/
.flow{
	width: 95%;
	margin: auto;
	background-color: #fff;
	display: inline-block;
}
.flow h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: center;
	display: block;
	padding: 0px;
}

.step {
	font-family: 'Poppins', sans-serif;
	font-size: 1.6em;
	text-align: center;
	display: block;
	padding: 0px;
	color: #cca06f;
	}

.flow_text_l {
	height: 100%;
	width: 90%;
	margin: auto;
	text-align: center;
	display: block;
}
.flow_text_r {
	height: 100%;
	width: 90%;
	margin: auto;
	text-align: center;
	display: block;
}

.flow_next {
	display: block;
	margin: 20px auto;
}



/*窓リフォーム補助金ページ
---------------------------------------------------------------------------*/

.pagetitle_subsidy {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 30px;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 0px;
	margin: 0;
	color: #fff;
	letter-spacing: 0em;/*文字間隔*/
}

.hojokin_title2 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.4em;
	font-weight: 600;
	text-align: center;
	display: block;
	padding: 0px;
	color: #6e4d3e;
}

.hojokin_title3 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.2em;
	font-weight: 600;
	text-align: center;
	display: block;
	padding: 0px;
	color: #6e4d3e;
	margin-top: 20px;
}

.hojokin_title {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.7em;
	text-align: left;
	display: block;
	padding: 0px;
	margin: 0px 0px 10px;
	line-height: 1.2em;
	color: #cca06f;
	}

.sec_hojokin_3 h2 {
	margin-bottom: 30px;
}

.hojokin_h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	padding: 0px 15px;
	margin: 12px 0 10px;
}

/*テーブル設定*/
.sec_hojokin table {
	font-size: 1em;
	width: 95%;
	margin: 0 auto 0;
}

.sec_hojokin table th {
	width: 40%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.sec_hojokin table th.hojokin01 {
	background-color: #336699;
}
.sec_hojokin table .hojokin02 {
	background-color: #DADADA;
	text-align: center;
	color: #333333;
}
.sec_hojokin table td {
	padding: 10px;
}

.flex_hojokin table th {
	width: 50%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}

.w_mmk {
	font-size: 1.4em;
	color: mediumvioletred;
	font-weight: bold;
}

.betuwaku_01 {
	background-color: #ffffcc;
	padding: 15px 20px;
	margin: 20px auto;
	width: 95%;
	}
.betuwaku_01 p {
	padding: 0;
	margin: 0;
	}
.betuwaku_h4 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	padding: 0px 0px;
	margin: 0px;
}
.hojokin_table table th {
	width: 30%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.td_01 {
	width: auto;
	padding: 10px;
	text-align: center;
	font-weight: normal;
}
.td_02 {
	width: 30%;
	padding: 10px;
	text-align: center;
	font-weight: normal;
}

.hojokin_table_02 table th {
	width: 55%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.hojokin_table_02 p {
	padding: 0;
	margin: 0;
}

.text_c {
	text-align: center;
}
.text_l {
	text-align: left;
}
.betuwaku_01 img {
	width: 16px;
	height: 16px;
	margin-right: 5px;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc_banner { display: none !important; }
.sp_banner { display: block !important; }


/*フェードインの設定
---------------------------------------------------------------------------*/
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(60px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* フェードイン(初期値) */
.scroll-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.scroll-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}


/*時間差で遅れてフェードインの設定
---------------------------------------------------------------------------*/
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box_delay{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp_delay {
animation-name:fadeUpAnime2;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime2{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*取扱商品のオンマウス設定
---------------------------------------------------------------------------*/
/* 背景が右から出現＋テキスト */
.bgRL{
	position:relative;/*テキストの基点となる位置を定義*/
}

.bgRL span.mask{
	position:relative;/*背景色の基点となる位置を定義*/
    display: block;
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.bgRL span.mask::before{
	content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateX(100%);
	background:rgba(23,50,97,0.5);/*背景色*/
	width:100%;
	height: 100%;	
}

.bgRL:hover span.mask::before{/*hoverした時の変化*/
	opacity:1;
	transform: translateX(0);
}

.bgRL span.cap{
	position: absolute;
	opacity:0;
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	z-index:3;/*テキストを前面に出す*/
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
	letter-spacing: 0.12em;/*文字間隔*/
}

.bgRL:hover span.cap{/*hoverした時の変化*/
	opacity:1;
}

/*リンク画像の拡大設定
---------------------------------------------------------------------------*/
/*　リンク画像の拡大　*/
.zoomIn img{
	transform: scale(1);
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img{/*hoverした時の変化*/
	transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

.mask_img{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}


/*スクロールを促すアイコン*/
.scroll {
	position: absolute;z-index: 2;
	left: 50%;bottom: 0px;transform: translateX(-50%);
	width: 30px;	/*画像の幅*/
}

/*トップ　メイン上のバナー*/
.banner01 {
	position: absolute;z-index: 2;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	width: 75%;	/*画像の幅*/
}
.banner02 {
	position: absolute;z-index: 2;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	width: 70%;	/*画像の幅*/
}

/*GoogleMAPの設定
---------------------------------------------------------------------------*/
.google-maps {
position: relative;
padding-bottom: 90%; /*これが縦横比*/
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}



/*==================================================
施工事例フォトギャラリーのためのcss
===================================*/
.case {
	width: 100%;
	margin: auto;
}

.case_date {
	font-size: 1.2em;
	color: #8A8A8A;
	text-align: right;
	margin: 5px 0px;
	}


/*詳細ページの画像切り替え（imgchg_pack.js）※一般のhtmlテンプレートで利用。
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
	margin: 0 auto 16px;
	text-align: center;
	width: 100%;
}

/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index: 2;
	position: relative;
	overflow: hidden;
}

/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index: 1;
	position: absolute;
	left: 0px;
	top: 0px;
	margin: auto;
	overflow: hidden;
}

/*大きな画像のボックスの中の画像*/
#item-image img {
	width: 100%;
}

/*サムネイル画像*/
.thumbnail {
	width: 80px;	/*画像の幅*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}

.thumbnail:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}


/*---------------------------------------------------------------------------
ここから下は画面が縦向きの場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (orientation:portrait) {


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*spanタグ。大きな文字の指定です。*/
mainimg-inner span {
	display: block;		/*改行させる*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {animation-name: opa2;animation-duration: 1s;animation-fill-mode: both;}

/*ヘッダーブロック*/
header {
	position: fixed;			/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	display: flex;				/*flexボックスを使う指定*/
	align-items: center;		/*垂直揃えの指定。上下中央に配置されるように。*/
	background: linear-gradient(#336699,#3399cc);/*背景グラデーション*/
	box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅、広げる量の順番。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: calc(100% - 40px);	/*幅。左右に各20pxずつ余白を入れたいので、40pxになっています。*/
	top: 20px;left: 20px;		/*上から、左からの配置場所指定*/
}

/*ロゴ画像*/
header #logo {
	position: static;background: none;border-radius: 0px;
	text-align: center;	/*ロゴをセンタリング*/
	padding: 0 20px;	/*上下、左右への余白*/
	width: 180px;		/*ロゴ画像の幅*/
}


/*menubar（.pcは900px以上の端末向けのメニューです）
---------------------------------------------------------------------------*/
#menubar {height: auto;overflow: visible;}

/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}

/*メニューのボックス全体の設定*/
.pc {
	display: block;
	flex: 1;
}

.pc > ul {
	display: flex;
	justify-content: space-between;
	flex: 1;
}

/*メニュー１個あたりの設定*/
.pc li {
	text-align: center;	/*テキストをセンタリング*/
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ddmenu ulの幅となる基準を作っておく*/
}


/*ドロップダウンメニュー（900px以上の端末向けの設定）
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.pc ul ul {
	position: absolute;			/*絶対配置するための指定*/
	width: 100%;				/*親のliタグに幅を合わせる*/
}

/*メニュー１個ごとに入れる線*/
.pc .ddmenu_parent ul li a {
	border: 1px solid #ccc;
	border-top: none;
}

/*最初のドロップダウンにのみ上の線を入れる*/
.pc .ddmenu_parent ul li:first-of-type a {
	border-top: 1px solid #ccc;
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 0px;	/*ボックスの外側に空ける余白*/
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 20px 50px;	/*上下、左右へのボックス内の余白*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainlogo {
	text-align: center;
	width: 55%;
	}

/*スクロールを促すアイコン*/
.scroll {
	bottom: 20px;	/*下からの配置場所*/
	width: 40px;	/*画像の幅*/
}


/*バナー　メインスライドショー*/
.banner01 {
	left: 90%;
	bottom: 5px;	/*下からの配置場所*/
	width: 28%;	/*画像の幅*/
}
.banner02 {
	left: 85%;
	bottom: 20px;	/*下からの配置場所*/
	width: 25%;	/*画像の幅*/
}


/*バナー　トップコンテンツ内*/
.box_banner {
  display:flex;
  margin         : 0;
  max-width: 1500px;                /* BOXの幅             */
  text-align: center;
	}

.banner_img {
	width: 50%;
}
	

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	padding: 30px 50px 60px;	/*上下、左右へのボックス内の余白*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.5;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。*/
#new dt span.icon-bg1 {
	background: #528dc9;	/*背景色*/
}
#new dt span.icon-bg2 {
	background: #f32218;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}

/*会社案内ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
.com_info dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
.com_info dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.5;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。*/
.com_info dt span.icon-bg1 {
	background: #528dc9;	/*背景色*/
}
.com_info dt span.icon-bg2 {
	background: #f32218;	/*背景色*/
}

/*記事(dd)設定*/
.com_info dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}

/*施工事例詳細ブロック
---------------------------------------------------------------------------*/
.case_detail {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*左側詳細項目名(dt)設定*/
.case_detail dt {
	width: 14em;	/*幅。文字(em)分。*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*右側詳細内容(dd)設定*/
.case_detail dd {
	width: calc(100% - 14em);	/*「em」は上の「#dt」のwidthの値です。*/
	text-align: left;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*施工事例一覧ページ
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	flex-direction: row;	/*子要素を横並びにする*/
}

.example_list {
    overflow: hidden;
    width: 80%;
	margin: 0px auto 60px;
	text-align: left;
}
/*listボックス。１個あたりのボックスの指定です。*/
.list {
    float: left;
	border: none;
	width: 32%;
	margin: 0px 5px 10px;
	padding: 10px;
}

.list a {text-decoration: none;display: block;}

.list img {
	width: 100%;
	height: 160px;
    object-fit : cover;
    object-position : 50% 50%; 
}

/*一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	padding-left: 10px;	/*ボックス内の左側にだけ余白を作る*/
}


/*一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*list2ブロック内でのline設定*/
.list2 dl.line dd {
	width: calc(50% - 8em - 10px);	/*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
	margin-right: 10px;				/*２列になった際の間のスペース*/
}

.list2 dl.line {border-top: none;}

.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: 1px solid #ccc;
}


/*ピックアップ情報（slickを使用したサムネイルの横スライドショー）
---------------------------------------------------------------------------*/
/*左側の三角*/
.slick-prev {
	left: -15px;	/*左からの配置場所*/
}
/*右側の三角*/
.slick-next {
	right: -15px;	/*右からの配置場所*/
}


/*list_base.htmlの設定
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
ul.menu {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*メニュー１個あたりの設定*/
ul.menu li {
	width: 49%;		/*幅*/
	margin-bottom: 20px;	/*メニューの上下間に空けるスペース*/
}

/*リンクテキスト*/
ul.menu a {
	padding: 20px 30px;	/*上下、左右へのメニュー内の余白*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 26%;		/*幅*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*ボタンの設定*/
.pagetop a {
	right: 50px;		/*右からの配置場所指定*/
	bottom: 50px;		/*下からの配置場所指定*/
}



/*よく頂く質問
---------------------------------------------------------------------------*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
	width: 80%;
	margin: auto;
}

/*==================================================
施工事例フォトギャラリーのためのcss
===================================*/
.case {
	width: 80%;
	margin: auto;
}

/*サムネイル画像*/
.thumbnail {
	width: 120px;	/*画像の幅*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}

.thumbnail:hover {
	border: 1px solid #999;	/*マウスオン時の枠線の幅、線種、色*/
}


/*パノラマ画像のサイズ設定（※CMS用）
---------------------------------------------------------------------------*/
.panorama-img {
	height: 500px !important;
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 70%;display: inline;}

.w50 {width: 50%;text-align: center;}
.w60 {width: 60%;text-align: center;}
.w70 {width: 70%;text-align: center;}
.w80 {width: 80%;text-align: center; margin: auto;}
.w90 {width: 90%;text-align: center;}
.w100 {width: 100%;text-align: center;}

.magin_rl50 {margin: 0px 50px;}
.magin_rl100 {margin: 0px 100px;}
.magin_rl200 {margin: 0px 200px;}

.text_bold {
	font-weight: bold;
	font-size: 1.1rem;
}

.title3 {
	letter-spacing: 0.12em;/*文字間隔*/
	font-weight: 500;
}

.title_h3 {
	width: 80%;
	margin: 0px auto 30px;
}

.box_w{
	padding: 60px 0px 100px;
}

.box_campaign{
height: auto;
text-align: center;
width: 90%;
	padding: 60px 0px 0px;
	margin: auto;
}

.box_02{
	padding: 60px 0px 100px;
}
.box_03{
	padding: 60px 0px 100px;
}

.footer_btn h4 {
	display: block;
	font-size: 1.8em;
}
.footerlogo {
	text-align: center;
	width: 12%;
	display: block;
}
.footer_btn img {
	display: inline-block;
	width: 30%;
	margin: 30px auto 0;
}
/*--- フッター問合せボタン　線から塗り（共通設定） ---*/

.btn05{
	font-size: 1.2em;
	width: 30%;
	margin: 0 5px;
    display: inline-block;
}

 /* --- 外枠の定義 ---------------------------------------------*/
.box_product {
  display:flex;
  margin         : 0;
  max-width: 1500px;                /* BOXの幅             */
  text-align: center;
  padding: 0px 20px;
}

 /* --- 個別のBOXの定義 --------------------------------------- */
.box_product_wrap {
  display:flex;
  box-sizing     : border-box;           /* 罫線も含む長さ      */
  border         : none;    /* 枠線の指定          */
  background: #FFFFFF;
  width: 50%;
  margin: 10px;
  padding-bottom: 0;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
}

.box_product_l img {
  box-sizing     : border-box;           /* 罫線も含む長さ      */
  border         : none;    /* 枠線の指定          */
  margin         : 0px;                  /* BOXの間     */
  width: 40%;
  height: 100%;
  float: left;
}
.box_product_l h3 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #173261;
  font-size: 1.4em;		/*文字サイズ*/
  font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
  margin         : 20px 0px 10px;                  /* BOXの間     */
  float: left;
  width: 60%;
}
.box_product_l p {
  font-size: 0.8em;		/*文字サイズ*/
  margin         : 0px;                  /* BOXの間     */
  float: right;
  width: 60%;
  word-break: break-all;
}


/*事業内容ページの設定
---------------------------------------------------------------------------*/
.bg_contents{
	background: url(../images/bg_contents.jpg) left bottom no-repeat;
	background-size: 65%;
    height: auto;
    text-align: center;
    width: 100%;
	padding: 80px 0px 60px;
	margin: auto;
}
.bg_contents h3 {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 3.2em;
	display: block;
	padding: 0px 10px 30px;
	margin: 0;
	color: #6e4d3e;
	}
.bg_contents p {
	text-align: center;
	}
.products {
	width: 100%;
	background-color: #fff;
	display: inline-block;
	margin: 0 0 35px 0;
}
.products img{
	width: 35%;
	height: auto;
}
.products h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	padding: 0px;
}
.products p{
	margin: 0;
	padding: 0;
}

.products_title {
	font-family: 'Poppins', sans-serif;
	font-size: 60px;
	text-align: left;
	display: block;
	padding: 0px;
	margin: 50px 0 20px;
	line-height: 1.2em;
	color: #cca06f;
	}

.products_right {
	float: right;
}
.products_text_l {
	height: 100%;
	width: 65%;
	padding: 0 100px;
	text-align: left;
	display: block;
	float: left;
}

.products_left {
	float: left;
}
.products_text_r {
	height: 100%;
	width: 65%;
	padding: 0 100px;
	text-align: left;
	display: block;
	float: right;
}


/*施工の流れの設定
---------------------------------------------------------------------------*/
.flow{
	width: 80%;
	margin: auto;
	background-color: #fff;
	display: inline-block;
}
.flow img{
	width: 40%;
}
.flow h3{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: center;
	display: block;
	padding: 0px;
}

.step {
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	text-align: center;
	display: block;
	padding: 0px;
	color: #cca06f;
	}

.flow_right {
	float: right;
}
.flow_text_l {
	height: 100%;
	width: 60%;
	padding: 0 5%;
	text-align: center;
	display: block;
	float: left;
}

.flow_left {
	float: left;
}
.flow_text_r {
	height: 100%;
	width: 60%;
	padding: 0 5%;
	text-align: center;
	display: block;
	float: right;
}

.flow_next {
	display: block;
	margin: 20px auto;
}

/*GoogleMAPの設定
---------------------------------------------------------------------------*/
.google-maps {
position: relative;
padding-bottom: 40%; /*これが縦横比*/
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}


/*窓リフォーム補助金ページ
---------------------------------------------------------------------------*/
.sec_hojokin {
	height: auto;
	text-align: center;
	width: 100%;
	padding: 0px 0px 30px;
	margin: 0px;
	}

.sec_hojokin_2 {
	height: auto;
	text-align: center;
	width: 100%;
	padding: 30px 0px 30px;
	margin: auto;
	}

.sec_hojokin_3 {
	height: auto;
	text-align: center;
	width: 80%;
	padding: 0px 0px 30px;
	margin: auto;
	}

.hojokin_title {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.7em;
	text-align: left;
	display: block;
	padding: 0px;
	margin: 0px 0px 10px;
	line-height: 1.2em;
	color: #cca06f;
	}

.hojokin_title3 {
	font-size: 1.4em;
	margin-top: 0;
}

.hojokin_h3 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 1.4em;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	padding: 0px 0px;
	margin: 12px 0 5px;
}

/*テーブル設定*/
.sec_hojokin table {
	font-size: 1.1em;
	width: 100%;
	margin: 0 auto 0;
}

.sec_hojokin table th {
	width: 40%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.sec_hojokin table th.hojokin01 {
	background-color: #336699;
}
.sec_hojokin table .hojokin02 {
	background-color: #DADADA;
	text-align: center;
	color: #333333;
}
.sec_hojokin table td {
	padding: 10px;
}
.w_mmk {
	font-size: 1.4em;
	color: mediumvioletred;
	font-weight: bold;
}
.flex_hojokin {
	display: flex;
	margin: auto;
	}
.flex_l {
	width: 50%;
	margin-right: 5px;
	}
.flex_r {
	width: 50%;
	margin-left: 5px;
	}

.flex_hojokin table th {
	width: 50%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}

.hojokin_table h3 {
    font-size: 18px;
	padding: 0;
	margin: 10px 0 0;
}
.hojokin_table p {
	padding: 0;
	margin: 0 0 10px;
}
.hojokin_table table {
	width: 100%;
	margin-bottom: 20px;
}
.hojokin_table table th {
	width: 30%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.td_01 {
	width: auto;
	padding: 10px;
	text-align: center;
	font-weight: normal;
}
.td_02 {
	width: 30%;
	padding: 10px;
	text-align: center;
	font-weight: normal;
}

.hojokin_table_02 table th {
	width: 60%;
	padding: 10px;
	color: whitesmoke;
	text-align: center;
	font-weight: normal;
}
.hojokin_table_02 p {
	padding: 0;
	margin: 0;
}

.betuwaku_01 {
	background-color: #ffffcc;
	padding: 15px 20px;
	margin: 20px 0;
	width: 100%;
	}

.betuwaku_01 p {
	padding: 0;
	margin: 0;
	}

.betuwaku_h3 {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #173261;
    font-size: 18px;		/*文字サイズ*/
	font-weight: 600;
	text-align: left;
	display: block;
	margin: 0;
}

.text_c {
	text-align: center;
}
.text_l {
	text-align: left;
}
.padding_lr_5 {
	padding: 0 5px;
}
.padding_lr_10 {
	padding: 0 10px;
}
.margin_lr_5 {
	margin: 0 5px;
}
.margin_lr_10 {
	margin: 0 10px;
}

.betuwaku_01 img {
	width: 16px;
	height: 16px;
	margin-right: 5px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_banner { display: block !important; }
.sp_banner { display: none !important; }



/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}