@charset "utf-8";

/*--
リンクの初期設定をリセット
------------------------------------*/

a:link { color: black; }
a:visited { color: black; }
a:active { color: black; }
a { text-decoration: none; }




@media screen and (max-width:1000px) {



/*--------------------------------

     画面幅が1000px以下の場合

----------------------------------*/


/*--
ローディング画面の設定
※制御はjquery
------------------------------------*/

.maincontents-nojs {
	display: block;
	height: 100%;
}

.maincontents {
	display: none;
	height: 100%;
	overflow: hidden;
}

.loader-bg-nojs {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 999;
	overflow: hidden;
}

.loader-nojs {
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 999;
	overflow: hidden;
}

.loader-bg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 999;
	overflow: hidden;
}

.loader {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 999;
	overflow: hidden;
}

.loader img {
	width: 20px;
	height: 20px;
	display: block;
}



/*--
ページ全体の余白リセット・書式の指定
------------------------------------*/

html {
	min-height: 100%;
	margin: 0;
	position: relative;
}


body {
	width: 100%;
	min-height: 100%;
	margin: 0 0 300px 0;
	padding: 0;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
	box-sizing: border-box;
}



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/*-------------------------

       ヘッダーの設定

---------------------------*/


/*--
ヘッダーの表示領域の指定
------------------------------------*/

#header {
	width: calc(100% - 60px);
	height: 60px;
	position: fixed;
	right: 0;
	top: 0;
	background-color: #fff;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	z-index: 8888;
	border-bottom: solid 2px #FFB738;
}


/*--
企業ロゴの設定
------------------------------------*/

#logoimg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

#logoimg h1 {
	display: inline-block;
	width: 100%;
	height: 100%;
}


/*--
カーソルの反応領域の拡大
------------------------------------*/

#logoimg h1 a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 0;
	margin: 0;
}


/*--
企業ロゴの画像設定
------------------------------------*/

#logoimg img {
	width: auto;
	height: 38px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

/*-------------------------

     グローバルナビの設定

--------------------------*/



/*--
ナビの表示
------------------------------------*/


.navibutton {
	width: 60px;
	height: 60px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}

.navibutton > span {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-bottom: solid 2px #FFB738;
}

.navi {
	display: none;
}/*--ラジオボタンは非表示--*/

.navi-unshown {
	display: none;
}/*--ラジオボタンは非表示--*/

#navi-open {
	display: inline-block;
	width: 60px;
	height: 100%;
	vertical-align: middle;
	cursor: pointer;
}


/*--
ハンバーガーメニューのアイコン
------------------------------------*/


#navi-open span {
	width: 35px;
	height: 4px;
	position: absolute;
	top: 14px;
	left: 8px;
	background-color: #666;
	border-radius: 4px;
	transition: all 0.2s ease;
	-webkit-backface-visibility:hidden;
}

#navi-open span:before {
	content: '';
	width: 35px;
	height: 4px;
	position: absolute;
	top: 14px;
	left: 0;
	background-color: #666;
	border-radius: 3px;
	transition: all 0.2s ease;
	-webkit-backface-visibility:hidden;
}

#navi-open span:after {
	content: '';
	width: 35px;
	height: 4px;
	position: absolute;
	top: 28px;
	left: 0;
	background-color: #666;
	border-radius: 3px;	
	transition: all 0.2s ease;
	-webkit-backface-visibility:hidden;
}


/*--
メニュータップ時の挙動の設定
------------------------------------*/

#navi-input:checked + #navi-open > span {
	transform: translateY(14px) rotate(45deg);
}

#navi-input:checked + #navi-open > span:before {
	transform: translateY(-14px) rotate(-45deg);
	opacity: 0;
}

#navi-input:checked + #navi-open > span:after {
	transform: translateY(-28px) rotate(-90deg);
}



/*--
タップすることでメニューを閉じる領域の設定
------------------------------------*/

#navi-close {
	display: none;
	position: fixed;
	z-index: -4;
	top: 60px;
	left: 0;
	width: 100%;
	height: calc(100% - 60px);
	opacity: 0;
	background-color: #000;
	transition: 0.3s ease-in-out;
}


/*--
ナビに表示されるメニューの設定
------------------------------------*/

#navi-content {
	width: 100%;
	height: 100%;
	max-height: 280px;
	position: fixed;
	top: 60px;
	left: 0;
	background-color: #fff;
	transition: .3s ease-in-out;
	transform: translateY(-150%);
	z-index: -3;
}

#navi-input:checked ~ #navi-close {
	display: block;
	opacity: 0.5;
}

#navi-input:checked ~ #navi-content {
	transform: translateY(0%);
}



#navi-content ul {
	width: 100%;
	display: inline-block;
	list-style: none;
	font-size: 0px;
	position: relative;
	top: 0;
	z-index: -2;

}

#navi-content li {
	width: 100%;
	height: 70px;
	display: inline-block;
	text-align: center;
	position: relative;
	border-top: solid 1px #000;
	background-color: #fff;
}

#navi-content li:first-child {
	border-top: none;
}/*--メニューの最上段のborderを無効--*/

#navi-content li:after {
	font-family: fontawesome;
	content: '\f105';
	display: block;
	font-size: 24px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

#navi-content li a {
	width: 100%;
	height: 100%;
	font-family: 'M PLUS 1p';
	font-size: 15px;
	font-weight: normal;
	display: block;
	white-space: nowrap;
	letter-spacing: 2px;
}

#navi-content li a > span {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
}


/*--
パンくずリスト部分のレイアウト
------------------------------------*/

.midasi {
	width: 100%;
	height: 20px;
	display: block;
	margin: auto;
	position: relative;
	background-color: #000;
}

.pan {
	list-style: none;
	height: 20px;
	width: 90%;
	margin: 0  auto;
	padding: 0;
	position: relative;
	font-size: 0;
}

.pan li {
	height: 20px;
	display: inline-block;
	position: relative;
	margin: 0;
	top: 0;
}


/*--
記号部分の表示
------------------------------------*/

.pan li+li:before {
	font-family: fontawesome;
	content: '\f138';
	width: 12px;
	height: 12px;
	font-size: 12px;
	color: #fff;
	display: inline-block;
	position: relative;
	margin: 4px 10px;
}


/*--
パンくずリストの文章設定
------------------------------------*/

.pan span {
	display: inline-block;
	margin: 2px 0;
	padding: 0;
	height: 16px;
}

.pan a {
	display: inline-block;
	color: #fff;
	height: 16px;
	font-size: 12px;
	letter-spacing: 1px;
	margin: 0;
}


/*--
オンマウス時に下線を表示
------------------------------------*/

.pan a:hover {
	border-bottom: solid 1px #fff;
	margin-bottom: -1px;
}



/*---------------------------

　　　　　　　　フッターの設定

----------------------------*/


/*--
フッターの表示領域の設定
------------------------------------*/

.footerbox {
	width: 100%;
	height: 300px;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	margin: 0;
	background-color: #000;
	overflow: hidden;
}

.footer {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
}


/*--
フッター内の社名ロゴの設定
------------------------------------*/

.toyo {
	width: 100%;
	height: 90px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}


.toyo img {
	width: auto;
	height: 35px;
	position: absolute;
	bottom: 27.5px;
	left: 50%;
	transform: translateX(-50%);
}


/*--
フッター内のテキストの設定
------------------------------------*/

.footerlist {
	width: 100%;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.footer ul {
	width: 100%;
	height: 100%;
	list-style: none;
	font-size: 0;
	display: block;
	position: relative;
}

.footer ul li {
	font-family: 'M PLUS 1p';
	font-weight: normal;
	width: 100%;
	height: 40px;
	font-size: 12px;
	white-space: nowrap;
	text-align: center;
	color: #ffffff;
	display: block;
	position: relative;
}

.footer ul li > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%) translateY(-50%);
}


/*--
個人情報の取扱い規約の設定
------------------------------------*/

.privacypolicy {
	width: 60%;
	height: 50px;
	display: block;
	position: absolute;
	top: 230px;
	left: 20%;
	border: solid 2px #fff;
	overflow: hidden;
}

.privacypolicy a {
	width: 100%;
	height: 100%;
	font-family: 'M PLUS 1p';
	font-weight: normal;
	display: inline-block;
	font-size: 12px;
	color: #fff;
}

.privacypolicy a > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.privacypolicy a:after {
	font-family: fontawesome;
	content: '\f105';
	font-size: 18px;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

	
}
















@media print,screen and (min-width:1001px) {



/*-----------------------------------

       画面幅が1000px以上の場合

-------------------------------------*/



/*--
ページ全体の縦幅を指定
------------------------------------*/

html {
	height: 100%;
	min-height: 800px;
}



/*--
ページ全体の余白リセット・書式の指定
------------------------------------*/

body {
	width: 100%;
	min-width: 1000px;
	height: 100%;
	min-height: 800px;
	margin: 0;
	padding: 0;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
	box-sizing: border-box;
	position: relative;
}

.maincontents-nojs {
	display: block;
	height: 100%;
}

.maincontents {
	display: none;
	height: 100%;
	overflow: hidden;
}



* {
	margin: 0;
	padding: 0;
}



/*--------------------------

  　 ローディング画面の設定

----------------------------*/

.loader-bg-nojs {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 999;
	overflow: hidden;
}

.loader-nojs {
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 999;
	overflow: hidden;
}

.loader-bg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 999;
	overflow: hidden;
}

.loader {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 999;
	overflow: hidden;
}

.loader img {
	width: 40px;
	height: 40px;
	display: block;
}



/*----------------------------

         ヘッダーの設定

-----------------------------*/


/*--
ヘッダーの表示領域の指定-
------------------------------------*/

#header {
	width: 100%;
	max-width: 1440px;
	height: 60px;
	position: relative;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	overflow: hidden;
	box-sizing: border-box;
}


/*--
企業ロゴの設定
------------------------------------*/

#logoimg {
	width: 240px;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	z-index: 2;
}

#logoimg h1 {
	width: 100%;
	/*h1固有のマージンのリセット*/
	font-size: 0;
}

#logoimg h1 a {
	/*カーソルの反応領域の拡大*/
	width: 100%;
	display: block;
}


/*--
企業ロゴの画像設定
------------------------------------*/

#logoimg img {
	width: 100%;
	height: auto;
	transform: rotate(0.002deg);/*アンチエイリアスをかける*/
}


/*--
ロゴ画像オンマウス時に半透明にする
------------------------------------*/

#logoimg a:hover {
	opacity: 0.7;
}

/*-------------------------------

        グローバルナビの設定

---------------------------------*/

.navibutton {
	display: none;
}

/*--
ナビの表示
------------------------------------*/

.navi {
	width: auto;
	height: 100%;
	position: relative;
	margin: auto 0 auto auto;
}

.navi ul {
	width: auto;
	height: 100%;
	list-style: none;
	display: flex;
	position: absolute;
	right: 10px;

}

.navi li {
	width: auto;
	height: auto;
	display: block;
	text-align: center;
	position: relative;
	margin: 10px 0 auto 0;
}

.navi li a {
	font-family: 'M PLUS 1p';
	letter-spacing: 2px;
	color: #444;
	width: auto;
	height: auto;
	position: relative;
	font-size: 14px;
	padding: 10px;
	display: block;
	transition: color 0.5s ease;
	transform: rotate(0.2deg);/*アンチエイリアスをかける*/
}


/*------------------------------------

     オンマウス時のナビゲーションの表示

---------------------------------------*/


/*--
ボーダーの開始地点を中央に固定
------------------------------------*/

.navi li a:before {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s ease;
	border: #ccc;
	display: block;
}

.navi li a:after {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	right: -1px;
	bottom: -1px;
	transition: all 0.2s ease;
	border: #ccc;
	display: block;
}


/*--
マウスオーバー時にボーダーを伸ばす
------------------------------------*/

.navi li a:hover:before {
	width: 100%;
	height: 100%;
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
}

.navi li a:hover:after {
	width: 100%;
	height: 100%;
	border-bottom: solid 1px #aaa;
	border-right: solid 1px #aaa;
}


/*--
マウスオーバー時に文字色を変える
------------------------------------*/

.navi li a:hover {
	color: #aaa;
}



/*--
パンくずリスト部分のレイアウト
------------------------------------*/

.midasi {
	width: 100%;
	height: 20px;
	display: block;
	margin: auto;
	position: relative;
	background-color: #000;
}

.pan {
	list-style: none;
	height: 20px;
	width: 90%;
	max-width: 1296px;
	margin: 0  auto;
	padding: 0;
	position: relative;
	font-size: 0;
}

.pan li {
	height: 20px;
	display: inline-block;
	position: relative;
	margin: 0;
	top: 0;
}


/*--
記号部分の表示
------------------------------------*/

.pan li+li:before {
	font-family: fontawesome;
	content: '\f138';
	width: 12px;
	height: 12px;
	font-size: 12px;
	color: #fff;
	display: inline-block;
	position: relative;
	margin: 4px 10px;
}


/*--
パンくずリストの文章設定
------------------------------------*/

.pan span {
	display: inline-block;
	margin: 2px 0;
	padding: 0;
	height: 16px;
}

.pan a {
	display: inline-block;
	color: #fff;
	height: 16px;
	font-size: 12px;
	letter-spacing: 1px;
	margin: 0;
}


/*--
オンマウス時に下線を表示
------------------------------------*/

.pan a:hover {
	border-bottom: solid 1px #fff;
	margin-bottom: -1px;
}



/*---------------------------

     　　　　フッターの設定

-----------------------------*/


/*--
フッターの表示領域の設定
------------------------------------*/

.footerbox {
	width: 100%;
	height: 90px;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	margin: 0;
	background-color: #000;
	overflow: hidden;
}

.footer {
	width: 100%;
	max-width: 1440px;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}


/*--
フッター内の社名の設定
------------------------------------*/

.toyo {
	width: 220px;
	height: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	padding: 0 10px 0 0;
	overflow: hidden;
}

.toyo:after {
	content: '';
	position: absolute;
	border-right: solid 1px #ddd;
	height: 50px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.toyo img {
	width: 100%;
	height: auto;
}


/*--
フッター内のテキストの設定
------------------------------------*/

.footerlist {
	width: 220px;
	height: 100%;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 250px;
}

.footer ul {
	width: auto;
	list-style: none;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
}

.footer ul li {
	font-size: 12px;
	white-space: nowrap;
	color: #ffffff;
	margin: 0 auto;
}


/*--
プライバシーポリシーの設定
------------------------------------*/

.privacypolicy {
	width: 100%;
	height: 100%;
	max-width: 1440px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.privacypolicy a {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	position: absolute;
	right: 20px;
	bottom: 20px;
	transition: all 0.2s ease;
}


/*--
マウスオーバー時のアニメーション
------------------------------------*/

.privacypolicy a:after {
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	transition: all 0.2s ease;
	opacity: 0;
	position: absolute;
	top: 70%;
	left: 0;
	background-color: #fff;
}

.privacypolicy a:hover:after {
	opacity: 1;
	top: 100%;
}


}