@charset "utf-8";


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


/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #333;	/*全体の文字色*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
    font-size: 16px;	/*文字サイズ*/
    line-height: 2;		/*行間*/
    -webkit-text-size-adjust: none;
     background-image: url(../images/header_bg.png);
	
}
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;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

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

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 100%;	/*サイトの最大幅*/
	margin: 0 auto;

}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	padding: 20px;	/*ヘッダー内の余白*/
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	padding: 0px;	/*余白をなしに*/
}
/*ロゴ画像*/
header #logo {
	width: 200px;	/*画像幅*/
	margin: 0 auto;	/*中央配置*/
}
/*ロゴ画像（トップページへの追加設定）*/
.home header #logo {
    display: none;	/*スライドショーの邪魔なので非表示に*/
    background-color: #987F7F;	
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
    position: relative;
    z-index: 10;
    text-align: center;	/*文字を中央に*/
    font-family: 'Questrial', sans-serif;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
    height: 60px;	/*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
    float: left;	/*左に回り込み*/
    width: 12.8%;		/*幅。今回は５個なので、100÷5=20。*/
    font-size: 1.2em;	/*文字サイズ*/
    background-color: #FFFFFF;
    padding-top: 10px;
}
#menubar ul li:nth-child(1){
    float: left;	/*左に回り込み*/
    width: 15%;		/*幅。今回は５個なので、100÷5=20。*/
    font-size: 1.2em;	/*文字サイズ*/
    padding-bottom: 10px;
    padding-left: 1%;
    padding-top: 0px;
    text-align: left;
    background-color: #FFFFFF;
}
#menubar ul li:nth-child(7){
    width: 20%;		/*幅。今回は５個なので、100÷5=20。*/
    height: 60px;
    line-height: 25px;
    font-size: 1.4em;
    font-weight: bold;
    color: #234e65;
    word-spacing: 3px;
}
.menubar_sub{
	font-size:0.6em;
	color: #234e65;
}
#menubar ul li:nth-child(7) a img {
			transition: 0s ;
		}

#menubar ul li:nth-child(7) a img:hover {
			opacity: 1 ;
		}

#menubar ul li a {
	text-decoration: none;display: block;
	height: 50px;		/*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	    color: #27405F;
    font-weight: bold;
	padding-top: 10px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
}
#menubar ul li a:hover {
    color: #8FA2BC;	/*マウスオン時の文字色*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2 {display: none;}

/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
	color: #333;		/*文字色*/
}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	left: 0px;
	width: 94%;
	padding: 90px 3%;
	background: #333;	/*背景色。古いブラウザ用。*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態のこと。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #fff;	/*境界が見辛いので、下線の設定。*/
}
/*ドロップダウンメニューの出現アニメーション*/
#menubar li:hover ul.ddmenu {
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.1s;		/*出現するタイミング（秒後）*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: auto;
	display: inline-block;
	font-size: 85%;	/*文字サイズ*/
}
#menubar ul.ddmenu li a {
	height: auto;
	padding: 20px;	/*メニューテキスト同士の余白*/
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;		/*透明度。色が100%出た状態。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	height: 60px;	/*メニューの高さを少し狭くする*/
}
body.is-fixed-menu #contents {
	margin-top: 3%;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.is-fixed #contents {
	margin-top: 80px;	/*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}

/*装飾文字を非表示にする*/
body.is-fixed-menu #menubar ul li span {
	display: none;
}
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
	height: 50px;
	padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 0px 0 0px;	/*上、左右、下へのコンテンツ内の余白*/
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-delay: 0.5s;		/*出現するタイミング（秒後）*/
	animation-fill-mode: both;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 100px;
	font-size: 300%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
	font-size: 30%;	/*文字サイズ*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 150%;	/*文字サイズ*/
	border-bottom: 1px dashed #333;	/*下線の幅、線種、色*/
	padding-left: 3%;		/*左側に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
/*段落タグ*/
#contents p {
	padding: 0 3% 30px;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 100px;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	background: #d4a500;		/*背景色*/
	color: #fff;			/*文字色*/
	margin: 0 3% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list p {

	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	width: 40%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
#contents .list:nth-of-type(even) .text {
	order: 1;
}

/*装飾文字の設定（共通）*/
#contents .list::before {
	font-size: 18vw;
	line-height: 1;
	position: absolute;
	color: rgba(255,255,255,0.15);	/*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
	font-family: 'Tangerine', cursive;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
}
/*奇数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(odd)::before {
	left: -60px;
	top: -40px;
}
/*偶数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(even)::before {
	right: 0px;
	top: -40px;
}
/*１つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(1)::before {
	content: "Works1";
}
/*２つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(2)::before {
	content: "Works2";
}
/*３つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(3)::before {
	content: "Works3";
}

/*ボックス内のボタン（共通）*/
.btn1 a {
	display: block;
	text-decoration: none;
	border: 1px solid #fff;		/*枠線の幅、線種、色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 30px;			/*上下、左右へのボタン内の余白*/
	margin: 40px auto 0;		/*上、左右、下へのボックスの外側への余白*/
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
	background: #fff;	/*背景色*/
	color: #d4a500 !important;		/*文字色*/
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 3%;
}
/*１カラムあたりの設定*/
#contents .list-column {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 32%;						/*ブロック幅*/
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	background: #d4a500;				/*背景色*/
	color: #fff;					/*文字色*/
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
#contents .list-column a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list-column p {
	padding: 0;		/*余白のリセット*/
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-column .text {
	padding: 5%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .list-column figure {
	min-height: 0%;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    position: relative;
    z-index: 1;
    font-size: 80%;	/*文字サイズ*/
    background-color: #255068;	/*背景色*/
    color: #fff;		/*文字色*/
    text-align: center;
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer a:visited {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    overflow: hidden;
    padding-top: 2%;	/*上下、左右へのボックス内の余白*/
	padding-bottom: 1%;
    color: #FFFFFF;
}
/*リンクテキスト*/
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
	color: #fff;
}

#footermenu li a:visited {
	color: #fff;
}
/*マウスオン時*/
#footermenu li a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: right;	/*左に回り込み*/
	width: 30%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	padding-top: 1%;
	font-size: 1.4em;
	color: #fff;	
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    background-color: #101B2F;	/*背景色*/
    padding: 10px 0;	/*上下、左右へのボックス内の余白*/
}
#copyright a {text-decoration: none;}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	margin-bottom: 20px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
}
ul.icon img:hover {
	opacity: 0.8;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eeece4;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
	width: 94%;
	table-layout: fixed;
	margin: 0 3% 30px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	font-size: 130%;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #333;		/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}

/*トップページの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;
}

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -120px;
	padding-top: 120px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 3% 20px 6%;
}
ol {
	padding: 0 3% 20px 6%;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #fff;border: 1px solid #ccc;display: inline-block;padding: 0px 10px !important;border-radius: 4px;}
p.look {margin: 0 3%;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #fff !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 30px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}


.top_slide{
    background-image: url(../images/header_bg.png);
    background-repeat: repeat;
    position: relative;
}

/*css追加PC*/

.wf-roundedmplus1c { 
	font-family: "M PLUS Rounded 1c";
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.top_slide_contact{
    width: 360px;
    height: 220px;
    position: absolute;
    bottom: 13%;
    right: 8%;
    background-image: url(../images/top_contact02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.btn-top_slide{
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
	font-size: 100%;
    background: #255068;
    transition: .4s;
    margin-left: 50px;
    margin-top: 138px;
    border-radius: 10px 10px 10px 10px;
	padding: 4% 6%;
}
.btn-top_slide:hover {
    background-color: #4D748A;
    color: white;
}
.top_slide_comment{
    position: absolute;
    bottom: 13%;
    left: 4%;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    font-size: 3em;
    text-shadow: 1px 2px 4px #576190;
    line-height: 70px;
}

a img {
			transition: 1.0s ;
		}

a img:hover {
			opacity: 0.5 ;
		}


.top_company_logo{
	display: none;
}
.top_content01{
    position: relative;
    display: flex;
    background-image: url(../images/bg02.jpg);
    clear: both;
	padding-top: 2%;
}
.top_content01_main{
	width: 50%;
	float: left;
	font-size: 1.1em;

}
.top_content01_midashi{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.top_content01_main_text{
    text-align: center;	
	margin-top: 6%;
}
.top_content01_img01{
    float: left;
    width: 25%;
}
.top_content01_img02{
	float: right;
	width: 24%;

}


.top_content01_midashi02{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.top_content02_box{
	background-color: #fff;
	padding-top: 5%;
}
.top_content02{
    background-color: #FFFFFF;
    clear: both;
	width: 96%;
	margin: auto;
    display: flex;
   align-items: stretch;	
}
.top_content02_left{
    width: 52%;
	padding-top: 2%;
    float: left;
    font-size: 1.3em;
    background-image: url(../images/top_content02_left_bg.jpg);
	background-repeat: no-repeat;
    background-size: 100% 100%;
}
.top_content02_right_main_img{
	display: block;
}
.top_content02_right_sub_img{
	display: none;
}
.top_content02_comment{

}
.top_content02_point{
    width: 15%;
    float: left;

}
.top_content02_text01 {
    width: 84%;
	padding-left: 1%;
    float: right;
    color: #339cd0;
 	height: 130px;
 	display: table;
}
.text01{
  display: table-cell;
  vertical-align: middle;
}
.top_content02_text02{
    width: 85%;
    float: right;
	color:#007347;	
 	height: 130px;
 	display: table;	
}
.top_content02_text03{
    width: 85%;
    float: right;
	color:#c40606;	
 	height: 130px;
 	display: table;	
}
.top_content02_right{
    float: right;
    width: 46%;
/*    background-image: url(../images/top_content02_right_img.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
}

.top_content03_midashi{
    text-align: center;	
}
.top_content03_box{
    background-image: url(../images/bg02.jpg);	
	padding-top: 4%;
	padding-bottom: 4%;
}
.top_content03{
 	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.btn_menu_left{
	width: 45%;
	float: left;
	margin-right: 1%;
}
.btn_menu_right{
	width: 45%;
	float: right;
	margin-left: 1%;	
}
.btn_menu_l{
    float: left;
    width: 40%;
    position: relative;
}
.btn_menu_r{
    float: right;
	width: 40%;
	position: relative;	
}

.btn_menu_l img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_r img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_img{
	position: relative;
}
.btn_menu_design {
    bottom: 5%;
    left:12%;
    width: 70%;
    text-align: center;
    display: inline-block;
    font-weight: bold;
	font-size: 1.1vw;
    position: absolute;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #fff;
    background: #235182;
    transition: .4s;
    border-radius: 10px;
}

.btn_menu_design:hover {
    background-color: #5E7B9B;
    color: white;
}
.inst_btn{
	text-align: center;
	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.inst_btn img{
	max-width: 100%;
	max-height: 100%;	
}
.blog-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    background: #fff;
}
.blog-entry {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.blog-entry h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.blog-entry p {
    font-size: 1em;
    margin: 5px 0;
}
@media screen and (max-width: 768px) {
    .blog-wrapper {
        padding: 0 10px;
    }
    .blog-entry h3 {
        font-size: 1.2em;
    }
}
.footermenu_box{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
		
}
.footermenu_box_logo{
	width: 100%;
}
.footermenu_box_left{
	float: left;
	width: 60%;
	text-align: left;
}
.footermenu_box_text{
	margin-top: 1%;
	font-size: 1.3em;
}
.footermenu_box_right{
	float: right;
	width: 40%;
}
#sub_Contents{
 	display: block;	
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
}
.sub_top{
    width: 100%;
    font-size: 4em;
    text-align: center;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    padding-top: 9%;
    padding-bottom: 9%;
    text-shadow: 2px 2px #FFFFFF;
    color: #223377;
    background-size: 100% auto;
}
.menu_top01{
    background-image: url(../images/sub_top_img01.png);	
	 background-repeat: no-repeat;
}
.menu_top02{
    background-image: url(../images/sub_top_img02.png);	
	 background-repeat: no-repeat;
}
.menu_top03{
    background-image: url(../images/sub_top_img03.png);	
	 background-repeat: no-repeat;
}
.menu_top_comment{
    text-align: center;
	margin-top: 2%;
	
}
.menu_list{
	margin-top: 5%;	
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 5%;
}
.menu_list_sp{
	display: none;
}	
.menu_list ul li{
    float: left;
    width: 25%;
	
}
.btn-flat-stripe {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.5em 2em;
    text-decoration: none;
    border-left: solid 4px #668ad8;
    border-right: solid 4px #668ad8;
    color: #668ad8;
    text-shadow: 0 0 5px white;
    background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    transition: .4s;
    width: 40%;
    border-radius: 6px;
}

.btn-flat-stripe:hover {
  background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 5px,#e9f4ff 5px, #e9f4ff 9px);
 
}
.menu_box01{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box01_bg.png);
    background-repeat: no-repeat;
    background-position: 110% 30%;
    background-color: #FDFFF9;
}
.menu_box02{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box02_bg.png);
    background-repeat: no-repeat;
    background-position: 100% 30%;
    background-size: 30% auto;
}
.menu_box03{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box03_bg.png);
    background-repeat: no-repeat;
    background-position: 120% 30%;
    background-color: #FDFFF9;
}
.menu_box04{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box04_bg.png);
    background-repeat: no-repeat;
    background-position: 120% 60%;
}
.menu_box_title{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: bold;
    font-size: 3em;
    color: #234e65;
    text-align: center;
}
.menu_box_inner{
	margin-top: 1%;
	width: 78%;
	margin-left: auto;
	margin-right: auto;
}
.menu_img{
    width: 30%;
    float: left;
}
.menu_text{
    width: 65%;
    float: right;
	padding-top: 4%;
}
.menu_text02{
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 2%;
    color: #225077;
    line-height: 160%;
}
.menu_text_pc{
	display: block;
}
.menu_text_sp{
	display: none;
}
.menu_img img{
	width: 100%;
	height: 100%;
}


.wf-mplus1p { 
	font-family: "M PLUS 1p";
}
.company_box01{
	padding-top: 2%;
	padding-bottom: 2%;
}
.compny_caption01{
    background-image: url(../images/compny_caption01.png);
    background-repeat: no-repeat;
    text-align: center;
    width: 640px;
    padding-top: 2%;
    padding-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3em;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: #1A2C4D;
}
.compny_caption02{
    background-image: url(../images/compny_caption02.png);
    background-repeat: no-repeat;
    text-align: center;
    width: 640px;
    padding-top: 2%;
    padding-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3em;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: #5B6216;
}
.company_img{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
	width: 100%;
	margin-top: 3%;
}
.company_img01{
	width: 100%;
}
.company_img02{
	width: 100%;
}
.company_img03{
	width: 100%;
}
.company_img_sp{
	display: none;
}
.company_comment{
    clear: both;
	font-size: 1.1em;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.company_comment_neme{
    text-align: right;
    clear: both;
}
.company_box02{
    background-image: url(../images/bg02.jpg);	
	padding-top: 2%;
	padding-bottom: 2%;
}
.company_motto{
  display: block;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3%;	

}
.company_motto01{
    background-image: url(../images/company_motto01.png);
    background-repeat: no-repeat;
    width: 20%;
    float: left;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 11%;
    padding-bottom: 4.2%;
    background-size: 100% auto;
	line-height: 150%;
	color: #54bba3;
}
.company_motto02{
    background-image: url(../images/company_motto02.png);
    background-repeat: no-repeat;
    width: 20%;
    float: left;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 11%;
    padding-bottom: 4.2%;
    background-size: 100% auto;
	margin-left: 5%;
	color: #f4a72f;	
}
.company_motto03{
	background-image: url(../images/company_motto03.png);
    background-repeat: no-repeat;
    width: 20%;
    float: left;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 11%;
    padding-bottom: 4.2%;
    background-size: 100% auto;
	margin-left: 5%;	
	color: #2ca6e0;	
}

.company_gaiyou{
	margin-top: 3%;
	margin-bottom: 3%;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}





.gaiyou_tbl{
  width:100%;
  border: 2px solid #d6ceb4;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
}
 
.gaiyou_tbl th{
  padding: 6px 8px 5px;
  border-top: solid 1px #ffffff;
  width: 30%;
  overflow: hidden;
  color: #13131e;
  font-style: normal;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eeece4;
}
 

.gaiyou_tbl td{
padding: 5px 10px;
text-align: left;
vertical-align: top;
color: #595960;
background-color: #ffffff;
border-top: dotted 1px #e0dccc;
overflow: hidden;
word-break: break-all;
word-wrap: break-word;
}	


.contact_box{
	margin-top: 3%;
}

.contact_text{
	text-align: center;
	line-height: 140%;
}

	
.contact_tel{
    margin-top: 2%;
    text-align: center;
    line-height: 100%;
    font-size: 2.2em;
    color: #122974;
    font-weight: bold;
}
.contact_tel02{
    margin-top: 2%;
    text-align: center;
    font-size: 0.5em;
    font-weight: normal;
}

#formWrap {
    width: 900px;
    margin: 0 auto;
    color: #110800;
    line-height: 120%;
    font-size: 90%;
    font-weight: normal;
}
table.formTable{
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
table.formTable td,table.formTable th{
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #FFFFFF;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
.formTable_input {
	width:60%; height:40px;
	
}
.form_th{
	display: block;
}
.form_th_l{
	float: left;
	width: 64%;
	margin-top: 2%;
}
.hissu{
    background-color: #E53B3E;
    color: #FFFFFF;
    border-radius: 8px;
	width: 28%;
	float: right;
	text-align: center;
	padding-top: 1.5%;
	padding-bottom: 1%;
}
.form_kakunin{
	margin-top: 2%;
}
.thanks_btn_wrapper{
    width: 194px;
    margin-left: auto;
    margin-right: auto;
    display: block;
	margin-top: 2%;
	margin-bottom: 2%;
}
.thanks_btn {
    display: inline-block;
    position: relative;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #172855;
    transition: .4s;
}
.thanks_btn:hover {
    color: #BACCE1;
}
.thanks_btn:before, .thanks_btn:after {
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.thanks_btn:before {
    border-left: 1px solid #5AB4D4;
    border-top: solid 1px #5AB4D4;
    border-bottom: solid 1px #5AB4D4;
    left: 0;
}
.thanks_btn:after {
  content: '';
  border-top: solid 1px #5AB4D4;
  border-right: solid 1px #5AB4D4;
  border-bottom: solid 1px #5AB4D4;
  right: 0;
}	

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

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #ccc;
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	border: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 90px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 90px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 10px;		/*上からの配置場所*/
	left: 6%;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #000;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu02.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu02.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
body.is-fixed #contents {
	margin-top: 0px;
}

/*コンテンツ
---------------------------------------------------------------------------*/

/*h2タグ*/
#contents h2 {
	margin-bottom: 50px;
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 0px;
}

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}

#contents {
	padding: 0px 0;	/*上下、左右へのコンテンツ内の余白*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    position: relative;
    z-index: 1;
    font-size: 80%;	/*文字サイズ*/
    background-color: #255068;	/*背景色*/
    color: #fff;		/*文字色*/
    text-align: center;
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer a:visited {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    overflow: hidden;
    padding-top: 4%;	/*上下、左右へのボックス内の余白*/
	padding-bottom: 1%;
    color: #FFFFFF;
}
/*リンクテキスト*/
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
	color: #fff;
}

#footermenu li a:visited {
	color: #fff;
}
/*マウスオン時*/
#footermenu li a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: right;	/*左に回り込み*/
	width: 40%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	padding-top: 1%;
	font-size: 1.4em;
	color: #fff;	
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
}
	
	
/*@media screen and (max-width:1000px)追加*/	
	
.top_slide_contact{
    width: 28%;	
    height: 35%;
    position: absolute;
    bottom: 6%;
    right: 4%;
    background-image: url(../images/top_contact02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


.btn-top_slide{
	width: 60%;	
    position: relative;
    display: inline-block;
    font-weight: bold;
	font-size: 0.5em;	
    text-decoration: none;
    color: #FFFFFF;
	text-align: center;
    background: #255068;
    transition: .4s;
    border-radius: 10px 10px 10px 10px;
	padding: 4% 6%;
	margin-left: 13%;
    margin-top: 40%;
}
.btn-top_slide:hover {
    background-color: #4D748A;
    color: white;
}
.top_slide_comment{
    position: absolute;
    bottom: 9%;
    left: 4%;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5em;
    text-shadow: 1px 2px 4px #576190;
    line-height: 50px;
}		
.top_company_logo{
	display: block;
	position: absolute;
	right: 4%;
	top: 2%;
	width: 24%;
}
.top_content01{
    position: relative;
    display: flex;
    background-image: url(../images/bg02.jpg);
    clear: both;
	margin-top: 3%;
	padding-top: 2%;
}
.top_content01_main{
	width: 54%;
	float: left;
	margin-left: 3%;
	font-size: 0.9em;

}
.top_content01_midashi{
	width:100%;
	margin-left: auto;
	margin-right: auto;
}
.top_content01_main_text{
    text-align: left;	
	margin-top: 6%;
}
.top_content01_img01{
    position: absolute;
    width: 24%;
	top:2%;
	right:2%;
}
.top_content01_img02{
   position: absolute;
    width: 21%;
	bottom:0%;
	right:15%;
}


.top_content01_midashi02{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.top_content02_box{
	background-color: #fff;
	padding-top: 5%;
	font-size: 0.7em;
}
.top_content02{
    background-color: #FFFFFF;
    clear: both;
	width: 96%;
	margin: auto;
    display: block;
   align-items: stretch;	
}
.top_content02_left{
    width: 70%;
	padding-top: 2%;
    float: right;
    font-size: 1.3em;
    background-image: url(../images/top_content02_left_bg02.jpg);
	background-repeat: no-repeat;
    background-size: 100% 100%;
}
.top_content02_right_main_img{
	display: none;
}
.top_content02_right_sub_img{
	display:block;
	float: left;
	width: 20%;
}	
.top_content02_comment{

}
.top_content02_point{
    width: 20%;
    float: left;

}
.top_content02_text01 {
    width: 78%;
	padding-right: 1%;
 	height: 140px;	
    float: right;
    color: #339cd0;
 	display: table;
}
.text01{
  display: table-cell;
  vertical-align: middle;
}
.top_content02_text02{
    width: 78%;
	padding-right: 2%;
    float: right;
	color:#007347;	
 	height: 140px;
 	display: table;	
}
.top_content02_text03{
    width: 78%;
	padding-right: 2%;
    float: right;
	color:#c40606;	
 	height: 140px;
 	display: table;	
}
.top_content02_right{
    float: left;
	width: 20%;
/*    background-image: url(../images/top_content02_right_img.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
}
.top_content02_right_sub_img01{
 	width: 120%;
	margin-top: 20%;	
	}
.top_content02_right_sub_img02{
 	width: 120%;
	margin-top: 20%;	
	}
.top_content02_right_sub_img03{
 	width: 120%;
	margin-top: 20%;		
	}	
	
.top_content03_midashi{
    text-align: center;	
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.top_content03_box{
    background-image: url(../images/bg02.jpg);	
	padding-top: 4%;
	padding-bottom: 4%;
}
.top_content03{
 	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}
.btn_menu_left{
	width: 100%;
	display: inline-block;
	float: none;
	margin-right: 0%;
	text-align: center;
}
.btn_menu_right{
	width: 100%;
	display: inline-block;	
	float: none;
	margin-top: 5%;
	margin-left: 0%;	
	text-align: center;
}
.btn_menu_l{
    float: left;
    width: 46%;
    position: relative;
}
.btn_menu_r{
    float: right;
	width: 46%;
	position: relative;	
}

.btn_menu_l img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_r img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_img{
	position: relative;
}
.btn_menu_design {
    bottom: 8%;
    left:12%;
    width: 70%;
    text-align: center;
    display: inline-block;
    font-weight: bold;
	font-size: 2vw;
    position: absolute;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #fff;
    background: #235182;
    transition: .4s;
    border-radius: 10px;
}

.btn_menu_design:hover {
    background-color: #5E7B9B;
    color: white;
}
.inst_btn{
	text-align: center;
	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.inst_btn img{
	max-width: 100%;
	max-height: 100%;	
}

.footermenu_box{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
		
}
.footermenu_box_logo{
	width: 60%;
	margin:auto;
	margin-left: auto;
		
}
.footermenu_box_left{
	float: none;
	width: 100%;
	text-align: center;
}
.footermenu_box_text{
	margin-top: 2%;
	font-size: 1.3em;
}
.footermenu_box_right{
	float: none;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}

#sub_Contents{
 	display: block;	
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
}
.sub_top{
    width: 100%;
    font-size: 2em;
    text-align: center;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    padding-top: 8.5%;
    padding-bottom: 9%;
    text-shadow: 2px 2px #FFFFFF;
    color: #223377;
}
.menu_top{
    background-image: url(../images/sub_top_img01.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}	
.menu_list{
	display: none;
}
.menu_list_sp{
 display: block;
	margin-top: 3%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3%;
}
.menu_list_sp_l{
	float: left;
	width: 50%;
	}
.menu_list_sp_r{
	float: right;
	width: 50%;	
	}	
.btn-flat-stripe {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.3em 4%;
    text-decoration: none;
    border-left: solid 4px #668ad8;
    border-right: solid 4px #668ad8;
    color: #668ad8;
    text-shadow: 0 0 5px white;
    background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    transition: .4s;
    width: 82%;
    border-radius: 6px;
    text-align: center;
    font-size: 1.1em;
}

.btn-flat-stripe:hover {
  background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 5px,#e9f4ff 5px, #e9f4ff 9px);
}	
	
	
}/*@media screen and (max-width:1000px)*/



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	margin-bottom: 30px;
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 20px;
}
#contents section + section {
	margin-top: 30px;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のボタン（共通）*/
.btn1 a {
	padding: 5px 10px;			/*上下、左右へのボタン内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

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

	
	
	
/*@media screen and (max-width:480px)追加*/	
.top_slide_contact{
    width: 42%;	
    height: 50%;
    position: absolute;
    bottom: 17%;
    right: 5%;
    background-image: url(../images/top_contact02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.btn-top_slide{
    width: 77%;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    background: #255068;
    transition: .4s;
    border-radius: 10px 10px 10px 10px;
    padding: 4% 6%;
    margin-left: 4.5%;
    margin-top: 37%;
    font-size: 0.8em;
}
.btn-top_slide:hover {
    background-color: #4D748A;
    color: white;
}
.top_slide_comment{
    position: absolute;
    bottom: 3%;
    left: 4%;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3em;
    text-shadow: 1px 2px 4px #576190;
    line-height: 24px;
}		
.top_company_logo{
	display: block;
	position: absolute;
	right: 6%;
	top: 4%;
	width: 24%;
}
.top_content01{
    position: relative;
    display: flex;
    background-image: url(../images/bg02.jpg);
    clear: both;
	padding-top: 9%;
	margin-top: 5%;
}
.top_content01_main{
	width: 54%;
	float: left;
	margin-left: 3%;
	font-size: 0.9em;

}
.top_content01_midashi{
	width:100%;
	margin-left: auto;
	margin-right: auto;
}
.top_content01_main_text{
    text-align: left;	
	margin-top: 6%;
}
.top_content01_img01{
    position: absolute;
    width: 34%;
	top:10%;
	right:2%;
}
.top_content01_img02{
   position: absolute;
    width: 32%;
	bottom:0%;
	right:2%;
}


.top_content01_midashi02{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.top_content02_box{
	background-color: #fff;
	padding-top: 5%;
	font-size: 0.7em;
}
.top_content02{
    background-color: #FFFFFF;
    clear: both;
	width: 98%;
	margin: auto;
    display: block;
   align-items: stretch;	
}
.top_content02_left{
    width:69%;
	padding-top: 2%;
    float: right;
    font-size: 1.3em;
    background-image: url(../images/top_content02_left_bg02.jpg);
	background-repeat: no-repeat;
    background-size: 100% 100%;
}
.top_content02_right_main_img{
	display: none;
}
.top_content02_right_sub_img{
	display:block;
	float: left;
	width: 18%;
}	
.top_content02_comment{

}
.top_content02_point{
    width: 30%;
    float: left;

}
.top_content02_text01 {
    width: 67%;
	padding-right: 1%;
 	height: 90px;	
    float: right;
    color: #339cd0;
 	display: table;
}
.text01{
  display: table-cell;
  vertical-align: middle;
}
.top_content02_text02{
    width: 67%;
	padding-right: 2%;
    float: right;
	color:#007347;	
 	height: 70px;	
 	display: table;	
}
.top_content02_text03{
    width: 67%;
	padding-right: 2%;
    float: right;
	color:#c40606;	
 	height: 70px;	
 	display: table;	
}
.top_content02_right{
    float: left;
	width: 20%;
/*    background-image: url(../images/top_content02_right_img.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
}
.top_content02_right_sub_img01{
 	width: 150%;
	margin-top: 90%;	
	}
.top_content02_right_sub_img02{
 	width: 150%;
	margin-top: 24%;	
	}
.top_content02_right_sub_img03{
 	width: 150%;
	margin-top: 24%;		
	}	
	
.top_content03_midashi{
    text-align: center;	
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.top_content03_box{
    background-image: url(../images/bg02.jpg);	
	padding-top: 4%;
	padding-bottom: 4%;
}
.top_content03{
 	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}
.btn_menu_left{
	width: 100%;
	display: inline-block;
	float: none;
	margin-right: 0%;
	text-align: center;
}
.btn_menu_right{
	width: 100%;
	display: inline-block;	
	float: none;
	margin-top: 5%;
	margin-left: 0%;	
	text-align: center;
}
.btn_menu_l{
    float: left;
    width: 46%;
    position: relative;
}
.btn_menu_r{
    float: right;
	width: 46%;
	position: relative;	
}

.btn_menu_l img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_r img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.btn_menu_img{
	position: relative;
}
.btn_menu_design {
    bottom: 8%;
    left:12%;
    width: 70%;
    text-align: center;
    display: inline-block;
    font-weight: bold;
	font-size: 2vw;
    position: absolute;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #fff;
    background: #235182;
    transition: .4s;
    border-radius: 10px;
}

.btn_menu_design:hover {
    background-color: #5E7B9B;
    color: white;
}
.inst_btn{
	text-align: center;
	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.inst_btn img{
	max-width: 100%;
	max-height: 100%;	
}

.footermenu_box{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
		
}
.footermenu_box_logo{
	width: 60%;
	margin:auto;
	margin-left: auto;
		
}
.footermenu_box_left{
	float: none;
	width: 100%;
	text-align: center;
}
.footermenu_box_text{
	margin-top: 2%;
	font-size: 1.3em;
}
.footermenu_box_right{
	float: none;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
#footermenu ul {
	float: right;	/*左に回り込み*/
	width: 43%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	padding-top: 1%;
	font-size: 1.4em;
	color: #fff;	
}
	
	
	
	
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;	/*幅*/
	height: 40px;	/*高さ*/
	border: 1px solid #000;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu02.png) no-repeat center top/40px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu02.png) no-repeat center bottom/40px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

#sub_Contents{
 	display: block;	
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
}
.sub_top{
    width: 100%;
    font-size: 2em;
    text-align: center;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    padding-top: 6.5%;
    padding-bottom: 6.5%;
    text-shadow: 2px 2px #FFFFFF;
    color: #223377;	
}
.menu_top{
    background-image: url(../images/sub_top_img01.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}	

.menu_top_comment{
    text-align: left;
	margin-top: 2%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.menu_list{
	display: none;
}
.menu_list_sp{
 display: block;
	margin-top: 3%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3%;
}
.menu_list_sp_l{
	float: left;
	width: 50%;
	}
.menu_list_sp_r{
	float: right;
	width: 50%;	
	}	
.btn-flat-stripe {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.3em 4%;
    text-decoration: none;
    border-left: solid 4px #668ad8;
    border-right: solid 4px #668ad8;
    color: #668ad8;
    text-shadow: 0 0 5px white;
    background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    transition: .4s;
    width: 82%;
    border-radius: 6px;
    text-align: center;
    font-size: 1.1em;
}

.btn-flat-stripe:hover {
  background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 5px,#e9f4ff 5px, #e9f4ff 9px);
}	
.menu_box01{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box01_bg.png);
    background-repeat: no-repeat;
    background-position: 110% 90%;
    background-size: 50% auto;	
    background-color: #FDFFF9;
}
.menu_box02{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box02_bg.png);
    background-repeat: no-repeat;
    background-position: 100% 90%;
    background-size: 40% auto;
}
.menu_box03{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box03_bg.png);
    background-repeat: no-repeat;
    background-position: 120% 94%;
    background-size: 50% auto;
    background-color: #FDFFF9;
}
.menu_box04{
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url(../images/menu_box04_bg.png);
    background-repeat: no-repeat;
    background-position: 120% 96%;
    background-size: 50% auto;
}
.menu_box_title{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-weight: bold;
    font-size: 3em;
    color: #234e65;
    text-align: center;
}
.menu_box_inner{
	margin-top: 1%;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}
.menu_img{
    width: 30%;
    float: left;
}
.menu_text{
    width: 65%;
    float: right;
	padding-top: 4%;
}
.menu_text02{
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 2%;
    color: #225077;
    line-height: 160%;
}
.menu_text_pc{
	display: none;
}
.menu_text_sp{
    display: block;
    clear: both;	
	padding-top: 2%;
}
.menu_img img{
	width: 100%;
	height: 100%;
}
	
	
.contact_box{
	margin-top: 3%;
}

.contact_text{
	text-align: left;
	line-height: 144%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

	
.contact_tel{
    margin-top: 4%;
    text-align: center;
    line-height: 80%;
    font-size: 2.1em;
    color: #122974;
    font-weight: bold;
}
.contact_tel02{
    margin-top: 2%;
    text-align: center;
    font-size: 0.5em;
    font-weight: normal;
}
	
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}	

	
	
	
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;

}
.formTable_input {
	width:100%; height:50px;
	
}
	

	
.company_box01{
	padding-top: 2%;
	padding-bottom: 2%;
}
.compny_caption01{
    background-image: url(../images/compny_caption01.png);
    background-repeat: no-repeat;
    text-align: center;
    width: 90%;
    padding-top: 2.5%;
    padding-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.5em;
	font-weight: bold;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: #1A2C4D;
    background-size: 100% auto;
}
.compny_caption02{
    background-image: url(../images/compny_caption02.png);
    background-repeat: no-repeat;
    text-align: center;
    width: 90%;
    padding-top: 4.6%;
    padding-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.2em;
	font-weight: bold;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: #1A2C4D;
    background-size: 100% auto;
}
.company_img{
  display: block;
  flex-direction: row;
  justify-content: space-between;
	width: 100%;
	margin-top: 7%;
}
.company_img01{
display: none;
	
}
.company_img02{
	width: 53%;
	float: left;
}
.company_img03{
display: none;

}
.company_img_sp{
	display: block;
	width: 46%;
	float: right;	
}
.company_comment{
    clear: both;
	font-size: 1.1em;
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	line-height: 150%;
}
.company_comment_neme{
    text-align: right;
    clear: both;
}
.company_box02{
    background-image: url(../images/bg02.jpg);	
	padding-top: 2%;
	padding-bottom: 2%;
}
.company_motto{
  display: block;
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3%;	

}
.company_motto01{
    background-image: url(../images/company_motto01.png);
    background-repeat: no-repeat;
    width: 50%;
    float: none;
	margin-left: auto;
	margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 20%;
    padding-bottom: 22.2%;
    background-size: 100% auto;
	line-height: 150%;
	color: #54bba3;
	margin-top: 6%;
}
.company_motto02{
    background-image: url(../images/company_motto02.png);
    background-repeat: no-repeat;
    width: 50%;
    float: none;
	margin-left: auto;
	margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 20%;
    padding-bottom: 22.2%;
    background-size: 100% auto;
	color: #f4a72f;	
	margin-top: -10%;
}
.company_motto03{
	background-image: url(../images/company_motto03.png);
    background-repeat: no-repeat;
    width: 50%;
    float: none;
	margin-left: auto;
	margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 20%;
    padding-bottom: 22.2%;
    background-size: 100% auto;
	color: #2ca6e0;	
	margin-top: -4%;	
}

.company_gaiyou{
	margin-top: 3%;
	margin-bottom: 3%;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
	
	
.company_gaiyou{
	margin-top: 3%;
	margin-bottom: 3%;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}	
.gaiyou_tbl th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
  border-radius: 3px;
}
.gaiyou_tbl td{
    display: list-item;
    width: 100%;
    border-top: none !important;
}
	
}/*@media screen and (max-width:480px)*/
