@charset "utf-8";

/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    margin-bottom: 10px;
    margin-right: 5px;
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;
}
a:hover {
    color: #E31C1C;			/*マウスオン時の文字色*/
    text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
    max-width: 80%;	/*サイトの最大幅。「#mainimg」のmax-widthと揃える。*/
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	
}
header .inner {
	height: 100px;	/*高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 250px;	/*画像幅*/
	float: left;	/*左に回り込み*/
	margin-top: 28px;	/*画像の上に空ける余白。上下のバランスをここで調整して下さい。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	margin-top: 10px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	width: 350px;		/*ブロック幅*/
	border-radius: 6px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	text-align: center;			/*文字をセンタリング*/
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
/*TEL*/
.tel {
	font-size: 30px;		/*文字サイズを大きく*/
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight: bold;
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 13px;		/*文字サイズを小さく*/
	letter-spacing: 0.1em;	/*文字間隔*/
	margin-top: -15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	
	clear: both;
	overflow: hidden;
	background: #222;	/*背景色*/
	
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.6%;	/*メニュー幅（100÷6個=16.6%）　もし４個にするなら100÷4=25%になる。*/
	padding-top: 5px;	/*この数字と「#menubar li a」のpaddingの１つ目(7px)の数字を足した合計が「#menubar li a」の３つ目の数字(12px)になるようにする。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;
	color: #fff;	/*文字色*/
	padding: 7px 0px 12px;	/*上、左右、下への余白。上の「#menubar li」のpadding-topの解説と合わせて読んで下さい。*/
}
/*マウスオン時、現在表示中メニュー*/
#menubar li a:hover,
#menubar li.current a {
	background: #fff;	/*背景色*/
	color: #222;		/*文字色*/
	border-radius: 8px 8px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}









/*ボタン設定*/

/*メニューブロック全体の設定*/
#manubar2 {
	margin-top: 5px;
	margin-bottom: 30px;
    display: block;

}


#manubar2 ul li {
	margin-bottom: 15px;
	text-align: center;
	
}

#manubar2 ul li a {
	text-decoration: none;
	width: 300px;	/*メニュー幅*/
	line-height: 60px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #E31C1C;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}

/*マウスオン時の設定*/
#manubar2 ul li a:hover {
	color: #e39b1d;			/*文字色*/
	background-color: #FFF
	;
}







/*ボタン設定*/

/*メニューブロック全体の設定*/
.manubar3 {
	margin-top: 5px;
	margin-bottom: 30px;

		display: block;

}


.manubar3 ul li {
	margin-bottom: 15px;
	text-align: center;
	
}

.manubar3 ul li a {
	text-decoration: none;
	width: 300px;	/*メニュー幅*/
	line-height: 60px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #E31C1C;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}

/*マウスオン時の設定*/
.manubar3 ul li a:hover {
	color: #E31C1C;			/*文字色*/
	background-color: #FFF
	;
}



 
/*メニューブロック全体の設定*/
.menubar4 {
	overflow: hidden;
}
.menubar4 ul li {
	float: left;		/*右にまわりこませる*/
	margin-left: 8px;	/*メニュー間の隙間*/
	margin-bottom: 8px;
	padding-top: 5px;
    
}

.menubar4 ul li a {
	text-decoration: none;
	display: block;
	width: 130px;	/*メニュー幅*/
	line-height: 30px;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	padding: 5px;
	margin-top: 10px;
	background-color: #222;
	margin-bottom: 15px;
}

/*マウスオン時の設定*/
.menubar4 ul li a:hover {
	color: #FFF;			/*文字色*/
	background-color: #666;
}


.my-parts ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.my-parts ul::after {
	content: "";
	display: block;
	clear: both;
}
.my-parts ul li {
	float: left;
	border-left: 1px solid rgba(0,0,0,.1);
    margin-top: 10px;
    margin-bottom: 10px;
    
    width: 18%;
}
.my-parts ul li:last-child {
	border-right: 1px solid rgba(0,0,0,.1);
}
.my-parts ul li a {
	display: block;
	padding: .4em .8em;
	text-decoration: none;
	color: #333;
	background: #fff;
	text-align: center;
    margin-right: 10px;
    margin-left: 10px;
  
}
.my-parts ul li a:hover {
	background: #eee;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	max-width: 1000px;	/*画像の最大幅。「.inner」のmax-widthと揃える。*/
	height: 250px;	/*高さ*/
	position: relative;
	-webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色(50%の黒)の設定。*/
	box-shadow: 1px 2px 2px rgba(0,0,0,0.5);			/*同上*/
	margin-bottom: 30px;
	margin-right: auto;
	margin-left: auto;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 0;	/*上下、左右に空けるボックス内の余白*/
	
}

h1 {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 32px;	/*文字サイズ*/
    letter-spacing: 0.2em;	/*文字間隔を通常に*/
    color: #000;			/*文字色*/
  
}

/*コンテンツのh3タグの設定*/
.contents h2 {
	font-size: 16px;	/*左から、上下、左右への余白*/
	clear: both;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #888;
	padding-top: 50px;
	padding-right: 15px;
	padding-bottom: 4px;
	padding-left: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: none;
	margin-bottom: 50px;
	margin-top: 50px;
}



/*コンテンツのh3タグの設定*/
.contents h3 {
	font-size: 18px;	/*左から、上下、左右への余白*/
	clear: both;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #222;
	padding-top: 50px;
	padding-right: 15px;
	padding-bottom: 4px;
	padding-left: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: none;
	margin-bottom: 50px;
	margin-top: 50px;
}


/*コンテンツのh4タグの設定*/
.main2 h4 {
    text-align: center;
	font-size: 17px;	/*左から、上下、左右への余白*/
	clear: both;
	padding-top: 50px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: none;
	margin-bottom: 30px;
	margin-top: 50px;
    	
}

h5 {
	font-size: 18px;	/*左から、上下、左右への余白*/
	clear: both;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #222;
	padding-top: 50px;
	padding-right: 15px;
	padding-bottom: 4px;
	padding-left: 15px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: none;
	margin-bottom: 50px;
	margin-top: 20px;
}





.color3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;/*フォント指定*/
	font-size: 28px;	/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を通常に*/
	color: #F00;			/*文字色*/
	line-height: 36px;
}


h6{
	background-color: #e0e0e0; /* 背景色 */
	color: #fff; /* 文字色 */
	overflow: hidden;
	padding: 8px;  /* 余白 */
	position: relative;
    margin-top: 120px;
	margin-bottom: 30px;	
}
h6:before{
	background-color: #fff; /* 切り替わる色1 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
h6:after{
	background-color: #fff; /* 切り替わる色2 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}


h6 span {
  font-family: 'Roboto', sans-serif;
  font-size: 100px;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  bottom: -1.6rem;
  left: 0;
}

/*コンテンツの段落タグ設定*/
.contents p {

    padding-bottom: 15px;	/*上、左右、下への余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
    width: 80%;		/*幅*/
    margin-right: auto;
    margin-left: auto;
    padding-top: 30px;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
.main2 {
    width: 60%;		/*幅*/
    margin-right: auto;
    margin-left: auto;
    padding-top: 30px;
}


/*サイドメニュー
---------------------------------------------------------------------------*/

ul.cp_list {
    padding: 0.5em;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
}
ul.cp_list li {
    position: relative;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-left: 1.5px;
    padding-bottom: 0.5em;
    margin-bottom: 5px;
    text-align: left;
    border-bottom: 1px dashed #222222;
}





/*フッター設定
---------------------------------------------------------------------------*/
footer {
    padding-top: 5px;
    padding-bottom: 5px;
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}




/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/

#footermenu {
    width: 90%;	/*幅*/
    margin: 0 auto;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-family: 'Sawarabi Mincho', sans-serif;
}

/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 2%;
}


#footermenu .border {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	margin-top: 8px;
	margin-bottom: 8px;
}
	

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    font-size: 13px;
}
#copyright a {
	text-decoration: none;
}









/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
	line-height: 22px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #222;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*テーブル内の右側*/
.ta1 td{
	text-align: left;
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;	/*背景色。左３つの数字が色のRGB値で、一番右の小数点が透明度。*/
	color: #FFF;
	background-color: #222;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 30px;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 18px;	/*文字サイズ*/
	background: #222;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 40px;	/*幅*/
	line-height: 40px;	/*高さ*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*ボックスの影*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #222;		/*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {
	margin-bottom: 20px;
	margin-top: 30px;
}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #a21e1e;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 20px;}
.sub .big1 {font-size: 100%;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.date {text-align: right;color: #999;font-size: 12px;}


.google-maps {
	padding-bottom:30px; /*これが縦横比*/

}





/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){


h1 {
	font-size: 25px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
}
    
.my-parts ul li {
	float: left;
	border-left: 1px solid rgba(0,0,0,.1);
    margin-bottom: 10px;
    
    width: 30%;
}

}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 95%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #dcdcdc;	/*下の線の幅、線種、色*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
	display: none;
}


h5 {
	font-size: 40px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
}

.main2 h4 {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
		border-bottom-width: 3px;
    font-size: 16px;

}


.color3 {

	font-size: 22px;	/*文字サイズ*/
	line-height: 28px;

}

/*メインメニュー（※トップページ以外）
---------------------------------------------------------------------------*/
/*小さな端末用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	clear: left;
	border-top: 2px solid #999;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅*/
}
#menubar-s li a {
    display: block;
    text-decoration: none;
    text-align: center;	/*文字をセンタリング*/
    padding: 10px 0;	/*右線の幅、線種、色*/
    border-width: 1px;
    border-right-style: solid;
    border-right-color: #E0E0E0;
    background-color: #000000;
    color: #FFFFFF;
}


/*トップページ以外で使っている大きな端末用用メニューを非表示にする
---------------------------------------------------------------------------*/
#menubar {
	display: none;
}



/*
    ,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: 95%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main2 {
	float: none;
	width: 100%;
}




/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
	float: right;	/*右に回り込み*/
	margin-top: 4px;
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色*/
	border-radius: 50%;	/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;	/*文字をセンタリング*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;	/*内側への影*/
}
/*プラスアイコンの文字*/
section#new h2.close::before {
	content: "＋";
}
/*マイナスアイコンの文字*/
section#new h2.open::before {
	content: "−";
}




/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 30px;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	background: #222;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	border-radius: 5px;	/*角丸のサイズ*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*ボックスの影*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #222;		/*文字色*/
}


/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}


.google-maps {
	position: relative;
	padding-bottom: 60%; /*これが縦横比*/
	height: 0;
	overflow: hidden;
	margin-bottom: 40px;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	text-align: center;
}



}




/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

h1 {
	font-size: 21px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
    margin-left: 10px;
}
    
h4 {
	font-size: 25px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
}

h5 {
	font-size: 35px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
}

    


.color3 {

	font-size: 20px;	/*文字サイズ*/
	line-height: 26px;

}

    
.my-parts ul li {
	float: left;
	border-left: 1px solid rgba(0,0,0,.1);
    margin-bottom: 10px;
    font-size: 14px;
    width: 48%;
}    
    
/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	height: 260px;	/*ボックスの高さ*/

}


}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	
}

/*トップページメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	box-shadow: none;
	border-bottom: 1px solid #dcdcdc;	/*下の線の幅、線種、色*/
}
/*左側（小さい端末だと上に位置するボタン）のボタン「職種で検索」*/
#mainimg #btn_job1 {
	left: 10%;		/*メイン画像に対して左から10%の場所に配置*/
	bottom: 45%;	/*メイン画像に対して下から45%の場所に配置*/
	width: 50%;;	/*画像幅*/
}
/*右側（小さい端末だと下に位置するボタン）のボタン「勤務地で検索」*/
#mainimg #btn_job2 {
	left: 10%;		/*メイン画像に対して左から10%の場所に配置*/
	bottom: 10%;	/*メイン画像に対して下から10%の場所に配置*/
	width: 50%;;	/*画像幅*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 0;	/*上下、左右に空けるボックス内の余白*/
	font-size: 15px;
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	font-size: 16px;	/*上下、左右への余白*/
	border-bottom: 3px solid #222;	/*メニューの上の線の幅、線種、色*/
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
/*コンテンツのh3タグの設定*/
.contents h3 {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
		border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #222;
}
    




h5 {
	font-size: 30px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;	/*文字間隔を通常に*/
}

h5 a {
	text-decoration:none;
	border-bottom-width: 1px;
	border-bottom-style: solid;		/*文字色*/
	color: #333;
}


.color3 {

	font-size: 16px;	/*文字サイズ*/
	line-height: 20px;

}


/*コンテンツの段落タグ設定*/
.contents p {
	padding: 15px 10px 15px;	/*上、左右、下への余白*/
}




/*ボタン設定*/

#manubar2 ul li a {
	text-decoration: none;	/*メニューの高さ*/
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-radius: 6px;
	color: #FFF;
	background-color: #e39b1d;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 8px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	font-size: 13.5px;
	letter-spacing: 0.1em;
}


/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 10px;		/*上へあける余白*/
	padding-bottom: 10px;	/*下へあける余白*/
	text-align: left;		/*メニューテキストを左よせ*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
}
ul.navmenu li {
	display: block;
	padding-top: 7px;
	padding-bottom: 7px;
}




/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	height: 230px;	/*ボックスの高さ*/
	width: 42%;		/*ボックスの幅*/
	padding: 2%;	/*ボックス内の余白*/
	margin: 0px 0px 20px 2%;
}


.list p{

	font-size: 13px;
}




/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 14px;
	text-align: left;
}
/*ボックス内の写真設定*/
.list figure img {
	width: 80%;

}
/*ふきだしアイコンの位置*/
.list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
	width: 50%;
}





/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	width: auto;
	float: none;
}
/*偶数番目のメニューの左のラインを戻す設定*/
.sub ul.submenu li:nth-child(even) a {
	border-left: 1px solid #ccc;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
.sub ul.submenu li a {
	padding: 10px;	/*メニュー内の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 8px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1  {
	font-size: 14px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 30%;
}


/*ふきだしアイコンの位置*/
.list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
	width: 40%;
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}
.fl-half{float:none;width:100%;margin-left:0;}


.google-maps {
	position: relative;
	padding-bottom: 60%; /*これが縦横比*/
	height: 0;
	overflow: hidden;
	margin-bottom: 40px;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	text-align: center;
}
}


/*画面幅400px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:400px){

/*menu内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	height: 250px;	/*ボックスの高さ*/
	width: 42%;		/*ボックスの幅*/
	padding: 2%;	/*ボックス内の余白*/
	margin: 0px 0px 20px 2%;
}



}