@charset "utf-8";




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

/*inview.cssの読み込み
---------------------------------------------------------------------------*/
@import url("inview.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 {
	top: 0px!important;
	height:80px;
	width: 100%;
	position:relative;
	background: #000;
	background-size:cover;
	padding:0!important;
	margin:0!important;
	display:inline-block;
}

/*ロゴ画像*/
header #logo img {
	width: 150px;		/*幅*/
	position: absolute;	/*画面に対して固定表示*/
	left: 20px;		/*ウィンドウに対して左からの配置場所*/
	top: 30px;			/*ウィンドウに対して上からの配置場所*/
	/*background: #fff;	/*背景色*/
	box-shadow: 0px 0px 30px rgba(0,0,0,0.3);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
}
/*お問合せ
-------------------------------------*/
.contact{
	position: absolute;
	right:80px;
	top:32px;
	background:#ff0000;
	border-radius:40px;
	padding:3px 10px 0;
	color:#fff;
	font-weight:bold;
	font-size:70%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;
	transition: 0.5s;
	animation: opa1 1.5s both;	/*animation.cssの、opa1を実行する。1.5sは1.5秒の事。*/
	text-align: center;
	font-size: 1.5em;	/*文字サイズ*/
	position: absolute;	/*画面に対して固定表示*/
	/*z-index:-1;*/
	box-shadow: 0px 0px 30px rgba(0,0,0,0.3);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
}
#menubar li a {
	display: block;text-decoration: none;
	color: #000;		/*文字色*/
}

/*４つ目(Instagram)を除き、以下のGoogle Fontsを使う。*/
#menubar li:not(:nth-of-type(4)) {
	font-family: 'Big Shoulders Display', cursive;
}

/*マウスオン時*/
#menubar li:hover {
	transform: scale(1.05);		/*105%に拡大*/
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 25%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.2s;	/*0.2秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 90px;		/*幅*/
	line-height: 90px;	/*高さ*/
}

/*２つ目のメニュー(Gallery)*/
#menubar li:nth-of-type(2) {
	left: 1%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.4s;	/*0.4秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 100px;		/*幅*/
	line-height: 100px;	/*高さ*/
}

/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(3) {
	left: 3%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.6s;	/*0.6秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 70px;		/*幅*/
	line-height: 70px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(4) {
	left: 8%;			/*ウィンドウに対して左からの配置場所*/
	top: 85%;			/*ウィンドウに対して上からの配置場所*/
	animation-delay: 0.8s;	/*0.8秒だけ遅れてアニメーションをスタートさせる設定*/
	background: #fff;	/*背景色*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
}


/*セカンドページ
-------------------------------------*/
.secand-title{
	color:#fff;
	font-weight:bold;
	font-size:120%;
	text-align:center;
	background:url("../images/gold-line.png")repeat-x bottom left/80%;
	width:30%;
	padding:0 0 5px 0px;
}

/*セカンドページ　トップイメージ
----------------------------------------------*/
.secand-image{
	width:100%;
	height:25%;
}

.service-top{
	background:url("../images/service/818-24h-image-top.jpg")no-repeat center top;
	background-size:cover;
}

.service-top01{
	background:url("../images/service/inernet-image-top.jpg")no-repeat center center;
	background-size:cover;
}

.company-top{
	background:url("../images/bg_company.jpg")no-repeat center center;
	background-size:cover;
}

/*セカンドページ　背景白
-------------------------------------*/
.bg-white{background:#fff;color:#000;}

/*セカンドページ　背景黒
-------------------------------------*/
.bg-black{background:#000;color:#fff;}

/*セカンドページ　背景グレー
-------------------------------------*/
.bg-gray{background:#ccc;color:#fff;}



/*サービス　タイトル
-------------------------------------*/
.service-title{
	width:100%;
	text-align:center;
	padding:30px 3%;
}
.service-title img{
	height:80px;
}
/*セカンドページ　サブタイトル白文字
-----------------------------------------*/
/*h3見出し  両側に線*/
.sub-title{
  position: relative;
  padding: 0 20px;
  text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.sub-title:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #fff;
}

.sub-title span {
  position: relative;
  padding: 0 0.5em;
  background: #000;
  font-size:110%;
}

.service-comment{
	font-size:100%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding:40px 0;
}

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

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


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

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

main h2 img{
	height:100px;
}

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

/*h3見出し  両側に茶色の線*/
main h3 {
  position: relative;
  padding: 0 10px;
  text-align: center;
}

main h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #936f30;
}

main h3 span {
  position: relative;
  padding: 0 0.5em;
  background: #000;
  font-size:100%;
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.fs-small{
	font-size:70%;
}


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

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

/*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;	/*背景画像*/
}


/*応答率100％
-------------------------------------------------*/
.title-white{
	padding:40px 10% 0;
	text-align:center;
}

	.jisseki-data{
		color:#fff;
		font-size:120%;
		font-weight:bold;
		text-align:center;
	}

/*サービスページ　　左右分割
------------------------------------------------*/
/*ボックスの設定*/
.list-service {
	display: inherit;
	align-items: center;	/*中のブロックの縦並びの揃え方*/
	/*background: #fff;		/*背景色*/
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	box-shadow: 0px 0px 30px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順番。0,0,0は黒の事で0.5は色が50%出た状態の事。*/
}
/*ボックス内のh4（見出し）タグ*/
.list-service h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 1.25rem;		/*文字サイズ。冒頭で指定しているフォントサイズの1.25倍です。*/
}
/*ボックス内のp（段落）タグ*/
.list-service p {
	padding: 0;		/*余白のリセット*/
	padding-bottom: 20px;
	font-size:100%;
	line-height:2.0em;
}
/*ボックス内のfigure画像*/
.list-service figure {
	width: 100%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list-service .text {
	width: 100%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 0%;	/*上下、左右へのブロック内の余白*/
}
.list-service .text img{
	height:100px;
}

.h200 img{
	height:200px;
}

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

/*マップ、フローなどの図
----------------------------------------------------*/
.illust{
	padding:3% 0%;
	text-align:center;
}
.illust ul{
	margin-left:0;
	padding-left:0;
}
.illust ul li{
	list-style-type:none;
	font-size:90%;
	font-weight:bold;
	
}

/*インターネット取次　グレー背景のブロック
----------------------------------------------------*/
.gray-box{
	padding:3% 0%;
	text-align:center;
}

/*818-24h グレー背景のブロック
----------------------------------------------------*/
.gray-box-24h{
	padding:3% 0%;
	text-align:center;
}

/*グレー背景のブロック
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	/*border-radius: 10px;			/*角丸のサイズ。中の画像が正方形であれば、10pxを50%にすることで円形にすることもできます。*/
	overflow: hidden;
	width: 30%;						/*幅。１行に何個配置したいか、ここの数値を変更してお好みで調整して下さい。*/
	background:#555;
}

.list-container .list p{
	font-size:180%;
	color:#fff;
	font-weight:bold;
	text-align:center;
	line-height:1.5em;
}


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


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

.phone{
	text-align:center;
}

.phone img{
	width:100%;
}

/*インターネット取次サービス
-----------------------------------------------*/
.title-big{
	font-size:110%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	padding:0 0 50px;
}

/*フリーダイヤル
------------------------------------------------*/
.free-dial{
	padding: 0 10%;
}
/*インターネット取次サービス　グレー背景のブロック
----------------------------------------------------*/
.gray-box{
	width:100%;
	text-align:center;
}
.gray-list{
	width:30%;
	float:left;
	background:#555;
	color:#fff;
	font-size:120%;
	font-weight:bold;
	text-align:center;
	padding:20px;
	margin:1.5%;
}

.red-bnr{
	width:100%;
	background:#ff0000;
	padding:10px 0;
	margin-bottom:30px;
	text-align:center;
	font-weight:bold;
	color:#fff;
}

/*セカンドページ　共通　会社概要タイトルなど
---------------------------------------*/
.secand-catch{
	color:#936f30;
	font-size:120%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-weight:bold;
margin:40px 0;
	text-indent: -0.05em;
}

.secand-subtitle{
	color:#936f30;
	font-size:140%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-weight:bold;
margin:40px 0 0;
	text-indent: -0.05em;
}

.secand-subtitle-g{
	color:#936f30;
	font-size:100%;
	text-align:center;
	font-weight:bold;
margin:40px 0 0;
}

.secand-comment{
	font-size:100%;
	padding:40px 0;
}

.secand-comment a{
	color:#000;
	text-decolation:none;
}

.secand-comment span img{
	height:35px;
}

/*h3見出し  両側に茶色の線*/
.recruit-subtitle {
  position: relative;
  padding: 0 10px;
  text-align: center;
	margin-bottom:40px;
}

.recruit-subtitle:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #936f30;
}

.recruit-subtitle span {
  position: relative;
  padding: 0 0.5em;
  background: #fff;
  font-size:120%;
font-weight:bold;
	color: #936f30;
}

/*リクルート　小見出し  背景ブルー*/
.recruit-subtitle-blue {
  position: relative;
  padding:10px;
  text-align: center;
	margin-bottom:40px;
	background: #003a9b;
	color:#fff;
	font-size:120%;
	font-weight:bold;
}

/*ページ内リンク*/
.right-btn{
	width:100%;
	text-align:right;
}

.right-btn p{
	width:40%;
	border:solid 1px #999;
	color:#003a9b;
	padding:10px;
	display:inline-block;
	text-align:center;
	border-radius:6px;
	font-weight:bold;
	background:#ddd;
	font-size:80%;
}

.right-btn p a:hover{
	text-decolation:underline;
}

/*採用情報　リンクバナー
-------------------------------------------*/
/*リクルートサイトへ
----------------------------------------------*/
.recruit-btn{
	text-align:center;
	width:100%;
	margin:0 auto;
}
.recruit-btn p{
	background:#003a9b;
	padding:10px;
	border-radius:40px;
	font-weight:bold;
	font-size:120%;
	text-align:center;
	color:#fff;
}
/*インディードへ
----------------------------------------------*/
.indeed-btn{
	text-align:center;
	width:100%;
	margin:0 auto;
}
.indeed-btn p{
	background:#fff;
	padding:10px;
	border-radius:40px;
	font-weight:bold;
	font-size:120%;
	text-align:center;
	color:#fff;
	border:solid 1px #003a9b;
}
.indeed-btn p img{
	height:30px;
}


/*個人情報保護方針
--------------------------------------*/
.privacy-subtitle{
	color:#936f30;
	font-size:120%;
	font-weight:bold;
margin:40px 0 0;
}

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

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

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

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


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※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 #999;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

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

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

.ta1 a{
	color:#000;
	text-decoration:none;
}

.disc ul li{
	list-style-type:disc!important;
}

.number ul li{
	list-style-type:decimal!important;
}

.number ol li{
	list-style-type:disc!important;
}

.number ol.disc01 li{
	list-style-type:circle!important;
	margin-left:20px;
}




/*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: 100;
	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;}
.line-top{border-top:solid 1px #333;}
.sh{display:inline;}
.pc{display:none;}
.fr{float:right;}
.fl{float:left;}

.red{color:#ff0000;}

/*---------------------------------------------------------------------------
ここから下は画面幅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:1100px) and (orientation: landscape) {


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	/*padding-left: 130px;	/*ボックス内の左側にとる余白*/
}
	
/*代表電話番号
	-------------------------------*/
.phone{
	text-align:center;
}

.phone img{
	width:60%;
}




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

}

/*---------------------------------------------------------------------------
ここから下は画面幅700px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) {
	
.sh{display:none;}
.pc{display:inline;}	
	
/*サービスページ左右分割　白文字　ボックス内のp（段落）タグ*/
.list-service p {
	padding: 0;		/*余白のリセット*/
	padding-bottom: 20px;
	font-size:100%;
	line-height:2.0em;
}
	
/*採用ページ　ページ内リンク*/
.right-btn p{
	width:180px;
	border:solid 1px #999;
	color:#003a9b;
	padding:10px;
	display:inline-block;
	text-align:center;
	border-radius:6px;
	font-weight:bold;
	background:#ddd;
	font-size:100%;
}

}


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


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


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


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 2em;		/*文字サイズ*/
}

/*１つ目のメニュー(About)*/
#menubar li:nth-of-type(1) {
	left: 20%;			/*ウィンドウに対して左からの配置場所*/
	top: 27%;			/*ウィンドウに対して上からの配置場所*/
	width: 150px;		/*幅*/
	line-height: 150px;	/*高さ*/
}

/*２つ目のメニュー(Gallery)*/
#menubar li:nth-of-type(2) {
	left: 4%;			/*ウィンドウに対して左からの配置場所*/
	top: 45%;			/*ウィンドウに対して上からの配置場所*/
	width: 190px;		/*幅*/
	line-height: 190px;	/*高さ*/
}

/*３つ目のメニュー(Link)*/
#menubar li:nth-of-type(3) {
	left: 18%;			/*ウィンドウに対して左からの配置場所*/
	top: 65%;			/*ウィンドウに対して上からの配置場所*/
	width: 130px;		/*幅*/
	line-height: 130px;	/*高さ*/
}

/*４つ目のメニュー(Instagram)*/
#menubar li:nth-of-type(4) {
	left: 7%;			/*ウィンドウに対して左からの配置場所*/
	top: 80%;			/*ウィンドウに対して上からの配置場所*/
}

	
/*メニューの設定
---------------------------------------------------------------------------*/
#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%;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ共通*/
.contents {
	padding: 0 10% 100px 10%;	/*ボックス内の余白。上、右、下、左。*/
}
	
/*セカンドページ タイトル
-------------------------------------*/
.secand-title{
	color:#fff;
	font-weight:bold;
	font-size:120%;
	text-align:center;
	background:url("../images/gold-line.png")repeat-x bottom left/80%;
	width:15%;
	padding:0 0 5px 0px;
}
/*セカンドページ　サブタイトル白文字
-----------------------------------------*/
/*サブ見出し  両側に線*/
.sub-title{
  position: relative;
  padding: 0 65px;
  text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.sub-title:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #fff;
}

.sub-title span {
  position: relative;
  padding: 0 1em;
  background: #000;
  font-size:200%;
}

	
.service-comment{
	font-size:140%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding:40px 0;
}

/*セカンドページ　トップイメージ
----------------------------------------------*/
.secand-image{
	width:100%;
	height:30%;
}
/*818-24hのトップ画像*/
.service-top{
	background:url("../images/service/818-24h-image-top.jpg")no-repeat center center;
	background-size:cover;
}

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

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

/*h3見出し  両側に茶色の線*/
main h3 {
  position: relative;
  padding: 0 65px;
  text-align: center;
}

main h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #936f30;
}

main h3 span {
  position: relative;
  padding: 0 1em;
  background: #000;
  font-size:200%;
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

	
/*セカンドページ　共通　会社概要タイトルなど
---------------------------------------*/
.secand-catch{
	color:#936f30;
	font-size:200%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-weight:bold;
margin:40px 0;
}

.secand-subtitle{
	color:#936f30;
	font-size:250%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-weight:bold;
margin:40px 0 0;
}

.secand-subtitle-g{
	color:#936f30;
	font-size:200%;
	text-align:center;
	font-weight:bold;
margin:40px 0 0;
}
	
/*リクルート　タイトル
	-----------------------*/
.recruit-subtitle span {
  position: relative;
  padding: 0 0.5em;
  background: #fff;
  font-size:200%;
font-weight:bold;
	color: #936f30;
}

/*採用情報　リンクバナー
-------------------------------------------*/
/*リクルートサイトへ
----------------------------------------------*/
.recruit-btn{
	text-align:center;
	width:60%;
	margin:0 auto;
}
.recruit-btn p{
	background:#003a9b;
	padding:20px;
	border-radius:40px;
	font-weight:bold;
	font-size:180%;
	text-align:center;
	color:#fff;
}
/*インディードへ
----------------------------------------------*/
.indeed-btn{
	text-align:center;
	width:60%;
	margin:0 auto;
}
.indeed-btn p{
	background:#fff;
	padding:20px;
	border-radius:40px;
	font-weight:bold;
	font-size:140%;
	text-align:center;
	color:#fff;
	border:solid 1px #003a9b;
}
.indeed-btn p img{
	height:50px;
}

/*採用ページ　ページ内リンク*/
.right-btn p{
	width:180px;
	border:solid 1px #999;
	color:#003a9b;
	padding:10px;
	display:inline-block;
	text-align:center;
	border-radius:6px;
	font-weight:bold;
	background:#ddd;
	font-size:100%;
}
	
/*セカンドページ　コメント
	---------------------------------*/
.secand-comment{
	font-size:120%;
	padding:40px 0;
}
	
/* 818-24h  応答率100％
-------------------------------------------------*/
.title-white{
	padding:40px 20% 0;
	text-align:center;
}
	


/*サービスページ　　左右分割
------------------------------------------------*/
/*ボックスの設定*/
.list-service {
	display: flex;
	align-items: center;	/*中のブロックの縦並びの揃え方*/
	/*background: #fff;		/*背景色*/
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
	box-shadow: 0px 0px 30px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順番。0,0,0は黒の事で0.5は色が50%出た状態の事。*/
}
/*ボックス内のh4（見出し）タグ*/
.list-service h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 1.25rem;		/*文字サイズ。冒頭で指定しているフォントサイズの1.25倍です。*/
}
/*ボックス内のp（段落）タグ*/
.list-service p {
	padding: 0;		/*余白のリセット*/
	padding-bottom: 20px;
	font-size:120%;
	line-height:2.0em;
}
/*ボックス内のfigure画像*/
.list-service figure {
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list-service .text {
	width: 48%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 2%;	/*上下、左右へのブロック内の余白*/
}
.list-service .text img{
	height:150px;
}

.h200 img{
	height:200px;
}

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

/*マップ、フローなどの図
----------------------------------------------------*/
.illust{
	padding:3% 10%;
	text-align:center;
}

.illust ul li{
	list-style-type:none;
	font-size:160%;
	font-weight:bold;
}
	
/*グレー背景のブロック
----------------------------------------------------*/
.gray-box{
	padding:3% 20%;
	text-align:center;
}
	


/*インターネット取次サービス
-----------------------------------------------*/
.title-big{
	font-size:200%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	padding:0 0 50px;
}
	
/*フリーダイヤル
------------------------------------------------*/
.free-dial{
	padding: 0 30%;
}
	
/*お問合せはこちら
----------------------------------------------*/
.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%;
}
	

/*個人情報保護方針
--------------------------------------*/
.privacy-subtitle{
	color:#936f30;
	font-size:140%;
	font-weight:bold;
margin:40px 0 0;
}

	
/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(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;}
.pc{display:inline;}


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

}

