@charset "utf-8";




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

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

/*HOMEボタンアニメ用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");




/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100vh;
	/*font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント指定*/
	font-size: 16px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	background: #000;
	color: #ccc;		/*全体の文字色*/
	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%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


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

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
	text-decoration: underline;
}


/*メインイメージ（bg_main.jpgを読み込んでいます）
---------------------------------------------------------------------------*/
/*#mainimg {
	text-indent: -9999px;
	position: fixed;
	top: 0px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/bg_main.jpg) no-repeat center center / cover;
}
*/

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/

#header{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*ロゴ画像*/
header #logo img {
	width: 180px;		/*幅*/
	position: absolute;	/*画面に対して固定表示*/
	left: 10px;		/*ウィンドウに対して左からの配置場所*/
	top: 10px;			/*ウィンドウに対して上からの配置場所*/
	/*background: #000;	/*背景色*/
	/*box-shadow: 0px 0px 30px rgba(0,0,0,0.3);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
}

/*スクロールを促すアイコン*/
.scroll {
	position: absolute;
	left:85%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 100px;	/*画像の幅*/
	/*opacity: 0.7;	/*透明度。0.7は色が70%出た状態の事。*/
}



/*お問合せ
-------------------------------------*/
.contact{
	position: absolute;
	right:80px;
	top:30px;
	background:#ff0000;
	border-radius:40px;
	padding:3px 20px 0;
	color:#fff;
	font-weight:bold;
	font-size:70%;
}

/*キャッチコピー
-------------------------------------------*/
.catch{
	position:absolute;
	right:3%;
	top:15%;
	width:85%;
}


/*キャッチコピー  produced
-------------------------------------------*/
.produced{
	position:absolute;
	left:5%;
	top:92%;
	width:50%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}
#menubar ul {list-style: none;margin: 0;padding: 0;}




/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/

.contents {
	overflow: hidden;
	padding: 0 2% 50px 2%!important;	/*ボックス内の余白。上、右、下、左。*/
	margin:0!important;
}

/*コンテンツ　下余白なし
----------------------------------*/
.pb-none{
	padding: 0 2% 0px 2%!important;	/*ボックス内の余白。上、右、下、左。*/
}

/*セクション
----------------------------------------*/
section{
	margin-bottom:100px;
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/

main{
	margin:100vh 0 0;
	background:#000;
}

main h2 {
	font-size: 2em;			/*文字サイズ*/
	margin-bottom: 0px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	/*letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color:#fff;
}

main h2 img{
	height:140px;
}

.h100 img{
	height:70px!important;
}

/*h2見出し内のspanタグ*/
main h2 span {
	display: block;
	font-size: 0.7em;	/*文字サイズ*/
}

/*h3見出し*/
main h3 {
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fff;		/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.3);	/*255,255,255は白の事で0.3は色が30%出た状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 30px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 0px 20px;		/*上下、左右への余白*/
}

/*段落タグ*/
main p {
	padding: 0 30px 30px;		/*上、左右、下への余白*/
}


/*会社案内　白文字キャッチ
-------------------------------------------*/
.white-catch{
	width:100%;
	text-align:center;
	vertical-align: middle;
	color:#fff;
	font-size:130%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight:bold;
	padding:50px 0 50px 0;
	letter-spacing: -0.05em;
}
.company-link-btn{
	float:right;
	width:100%;
}
.company-link-btn img{
	float:right;
	width:130px;
}

.company-link-btn:hover{
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*bg1スタイルのついたコンテンツ*/
.bg1 {
	background: url("../images/bg_company.jpg") no-repeat center center;	/*会社案内　背景画像*/
	background-size:cover;
}

/*bg2スタイルのついたコンテンツ*/
.bg2 {
	background: url(../images/bg2.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*bg3スタイルのついたコンテンツ*/
.bg3 {
	background: url(../images/bg3.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*bg4スタイルのついたコンテンツ*/
.bg4 {
	background: url(../images/bg4.jpg) repeat center top/ 200px;	/*背景画像*/
}

/*HOME 左右分割
---------------------------------*/
/*ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	display: inherit;
	align-items: center;
	margin: 0px 10px 30px;	/*上、左右、下へのボックスの外側に空けるスペース*/
	color: #999;			/*文字色*/
}
/*ボックス内のh4（見出し）タグ*/
.list h4 {
	font-size: 180%;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #fff;	/*文字色*/
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.list h4 a {
	color: #ffff;	/*文字色*/
}
/*ボックス内のp（段落）タグ*/
.list p {
	padding: 0;
}
/*ボックス内のfigure画像*/
.list figure {
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list .text {
	float: left;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 0 0 30px;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	color:#fff;
}

.link-btn{
	float:right;
	width:130px;
	margin-top:20px;
}
.link-btn:hover{
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

.title{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color:#fff;
	font-size:200%;
}

.txt{
	color:#fff;
}


/*お問合せはこちら
----------------------------------------------*/
.contact-btn{
	text-align:center;
	width:90%;
	margin:0 auto;
}
.contact-btn p{
	background:#ff0000;
	padding:10px 0;
	border-radius:40px;
	font-weight:bold;
	font-size:120%;
	text-align:center;
	color:#fff;
}

.phone{
	text-align:center;
}

.phone img{
	width:100%;
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}


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

footer {
	font-size: 0.8em;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #fff;			/*文字色*/
	border-top:solid 1px #333;
	background:#000;
}

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

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

.link{
	width:100%;
	text-align:center;
	display:inline-block;
	padding:10px 0;
}

footer .link ul{
	position:relative;
	margin:0 auto;
	width:30%;
}

footer ul li{
	float:left;
	list-style-type:none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(255,255,255,0.2);
	margin-bottom: 15px;
	border-radius: 5px;
}

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

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

/*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;	/*左よせにする*/
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	right: 20px;		/*右からの配置場所指定*/
	bottom: 100px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	/*background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 100px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


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

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

/*メニューの設定
---------------------------------------------------------------------------*/
#menubar-humberger ul {list-style: none;}

/*ボックス全体の設定*/
#menubar-humberger {
	display: none;				/*デフォルトで非表示にしておく*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールしても動かない為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 10px;		/*ボックス内の余白*/
	text-align: center;	/*テキストをセンタリング*/
	background: rgba(0,0,0,0.9);	/*背景色*/
	font-size: 1.2rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar-humberger li {
	margin-bottom: 5px;	/*下に空けるスペース*/
	padding-bottom:5px;
	border-bottom:solid 1px #333;
}

#menubar-humberger a {
	display: block;text-decoration: none;
	text-align: center;	/*テキストをセンタリング*/
	/*background: #fff;	/*背景色*/
	color: #fff;		/*文字色*/
	/*border-radius: 5px;	/*角丸の指定*/
	/*box-shadow: 0px 0px 50px 10px rgba(255,255,255,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	padding: 5px;	/*余白*/
}

#menubar-humberger li span{
	margin-left:30px;
	font-size:70%;
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #74791b !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;padding: 0px 10px;background: #666; color: #fff; border-radius: 3px;margin: 5px 0;}
.look .color-check {color: #ffcc00 !important;}
.small {font-size: 0.6em;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mt40{margin-top:40px;}
.mt50{margin-top:50px;}
.sh{display:inline;}



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


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

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

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


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

}




/*---------------------------------------------------------------------------
ここから下は画面幅900px以下、かつ画面が「横長」の場合の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:900px) and (orientation: landscape) {


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 0 10% 50px 10%;	/*ボックス内の余白。上、右、下、左。*/
}
	
/*HOME 左右分割
---------------------------------*/
/*ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	margin: 30px 10px 30px;	/*上、左右、下へのボックスの外側に空けるスペース*/
	color: #999;			/*文字色*/
}

	
/*ボックス内のfigure画像*/
.list figure {
	float: right;	/*左に回り込み*/
	width: 100%;		/*幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list .text {
	float: left;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 0%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	color:#fff;
}

	
/*その他
	-------------------------------*/
.sh{display:none;}
	
	

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

}




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


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


/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 280px;	/*幅*/
	left: 5%;		/*ウィンドウに対して左からの配置場所*/
}

/*main
---------------------------------------------------------------------------*/
/*h2見出し*/

main h2 {
	font-size: 3em;			/*文字サイズ*/
	margin-bottom: 0px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	/*letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color:#fff;
}

/*おおきな端末用の開閉ブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar {
	position: absolute;
	overflow: auto;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 33%;		/*メニューブロックの幅*/
	height: 100%;
	padding: 30px 0 0;	/*上、左右、下へのブロック内の余白*/
/*	background: rgba(0,0,0,0.7);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	color: #fff;						/*文字色*/
	transition: 0.5s;
	animation: opa1 2.0s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	color: #fff;	/*文字色*/
	text-shadow: 3px 3px 3px #000; 
}

/*現在表示中のメニュー設定（current）*/
#menubar li.current a {
	background: #666;	/*背景色*/
}


/*メインメニュー（小さな端末、大きな端末共通設定）
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	/*margin-bottom: 30px;	/*下に空けるスペース。メニュー同士の上下間の余白です。*/
	font-size: 1.5em;		/*文字サイズを80%に。*/
	font-weight:bold;
	/*letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	line-height:1.0em;
	margin:0px 20px;
	border-bottom:solid 2px #936f30;
}
#menubar a {
	display: block;text-decoration: none;
	/*text-align: center;	/*テキストを中央に*/
	padding: 20px 0 20px 20px;	/*上下、左右への余白*/
}

#menubar a:hover{
	background:url("../images/bg-gold.png")no-repeat right center;
	color:#4D9EFF;
	animation: opa1 1.0s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
}

#menubar li span{
	font-size:0.7em;
	font-weight:bold;
}
#menubar li img{
	width:80%;
	margin:0 10% 30px;
}

#menubar .home a:hover{
	background:none;
	transition: none;
	animation: none;
}
/*メニューの設定
---------------------------------------------------------------------------*/
#menubar-humberger ul {list-style: none;}

/*ボックス全体の設定*/
#menubar-humberger {
	display: none;				/*デフォルトで非表示にしておく*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールしても動かない為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 50px;		/*ボックス内の余白*/
	text-align: center;	/*テキストをセンタリング*/
	background: rgba(0,0,0,0.9);	/*背景色*/
	font-size: 1.2rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar-humberger li {
	margin-bottom: 20px;	/*下に空けるスペース*/
	padding-bottom:20px;
	border-bottom:solid 1px #333;
}

#menubar-humberger a {
	display: block;text-decoration: none;
	text-align: center;	/*テキストをセンタリング*/
	/*background: #fff;	/*背景色*/
	color: #fff;		/*文字色*/
	/*border-radius: 5px;	/*角丸の指定*/
	/*box-shadow: 0px 0px 50px 10px rgba(255,255,255,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	padding: 5px;	/*余白*/
}

#menubar-humberger li span{
	margin-left:30px;
	font-size:80%;
}	
	
	
/*お問合せ
-------------------------------------*/
.contact{
	position: absolute;
	right:150px;
	top:30px;
	background:#ff0000;
	border-radius:40px;
	padding:3px 40px 0;
	color:#fff;
	font-weight:bold;
	font-size:80%;
}
/*キャッチコピー
-------------------------------------------*/
.catch{
	position:absolute;
	right:3%;
	top:10%;
	width:50%;
}
	
/*produced
-------------------------------------------*/
.produced{
	position:absolute;
	left:60%;
	top:95%;
	width:20%;
}
	
/*スクロールを促すアイコン*/
.scroll {
	position: absolute;
	left:95%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 100px;	/*画像の幅*/
	/*opacity: 0.7;	/*透明度。0.7は色が70%出た状態の事。*/
}	
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 0 10% 50px 10%!important;	/*ボックス内の余白。上、右、下、左。*/
}
	
	
/*HOME 左右分割
---------------------------------*/
/*ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	margin: 30px 10px 30px;	/*上、左右、下へのボックスの外側に空けるスペース*/
	color: #999;			/*文字色*/
}

/*ボックス内のh4（見出し）タグ*/
.list h4 {
	font-size: 160%;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #fff;	/*文字色*/
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}	
/*ボックス内のfigure画像*/
.list figure {
	float: right;	/*左に回り込み*/
	width: 50%;		/*幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list .text {
	float: left;	/*右に回り込み*/
	width: 40%;		/*幅*/
	margin: 5%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	color:#fff;
}

.link-btn{
	float:right;
	width:180px;
	margin-top:20px;
}
.link-btn:hover{
	filter: brightness(1.1);	/*少しだけ明るくする*/
}	
	
/*会社案内　白文字キャッチ
-------------------------------------------*/
.white-catch{
	width:100%;
	text-align:center;
	vertical-align: middle;
	color:#fff;
	font-size:200%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight:bold;
	padding:100px 0 50px 0;
}
.company-link-btn{
	float:right;
	width:100%;
}
.company-link-btn img{
	float:right;
	width:180px;
}

	
/*お問合せはこちら
----------------------------------------------*/
.contact-btn{
	text-align:center;
	width:40%;
	margin:0 auto;
}
.contact-btn p{
	background:#ff0000;
	padding:10px;
	border-radius:40px;
	font-weight:bold;
	font-size:140%;
	text-align:center;
	color:#fff;
}

.phone{
	text-align:center;
}

.phone img{
	width:40%;
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(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.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「Gallery」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #74791b;	/*背景色*/
}

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


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

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}
	
	
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5em;	/*文字サイズ*/
	/*background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 100px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}



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

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

}


/*---------------------------------------------------------------------------
ここから下は画面幅1400px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1200px) {
/*produced
-------------------------------------------*/
.produced{
	position:absolute;
	left:60%;
	top:93%;
	width:20%;
}
}

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

/*ボックス内のh4（見出し）タグ*/
.list h4 {
	font-size: 180%;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #fff;	/*文字色*/
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
	
/*メニュー　幅
	------------------------------*/
#menubar{
	width:25%;
}
	
/*メニュー　span
	-----------------------------------*/
#menubar li span{
	font-size:0.7em;
	font-weight:normal;
}
	
	
.produced{
	position:absolute;
	left:65%;
	top:92%;
	width:20%;
}
	
}

