@charset "utf-8";

/*
===============================================================================
▼ 共通
===============================================================================
*/
/******************************************************************
【目次】
01. 共通
02. コンテナ
03. ヘッダー
04. フッター
05. メイン
06. ページトップへボタン
******************************************************************/

/* ==========================================
  01. 共通
============================================ */

* {
	/* BORDER-BOX : パディングとボーダーを幅と高さに含める */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	/*****************
	remのベース: 10px
	例：font-size: 14px; （ie8用）
	　　font-size: 1.4rem;
	*****************/
	font-size: 62.5%;
}

body {
	color: #000000;
	background-color: #ffffff;
	line-height: 1.6;
	font-size: 1.4em; /*chrome対策 em指定*/
	font-family: 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

	word-wrap: break-word;

	/* iOS4でのテキスト右の隙間対策 */
	letter-spacing: -0.001em;

	/* iOSでの文字サイズ自動調整の解除 */
	-webkit-text-size-adjust: 100%;
}

input,
select,
textarea {
	color: #000000;
	font-family: 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

a:link,
a:visited {
	color: #FD9900;
	text-decoration: underline;
}

a:hover,
a:active {
	color: #FD9900;
	text-decoration: underline;
}

a:focus {
	outline: none;
}

.align-center {
	text-align: center;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.color-red {
	color: #FF004E !important;
}

.color-blue {
	color: #0078be !important;
}

.small-text {
	font-size: 12px;
	font-size: 1.2rem;
}

.bold-text {
	font-weight: bold;
}

.dl-horizontal dt {
	float: left;
	clear: both;
}

.ul-attention {
	margin-left: 1em;
	text-indent: -1em;
}

.ul-decimal,
.ul-disc {
	margin-left: 1.5em;
}

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

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

.op {
	opacity: 0.50;
	filter(alpha=50);
}


/* --------------------------
  入力モード
-------------------------- */
.ime-active {
	ime-mode: active;
}

.ime-inactive {
	ime-mode: inactive;
}

.ime-disabled {
	ime-mode: disabled;
}


/* --------------------------
  clearfix
-------------------------- */
.clearfix:after {content: ".";display: block;clear: both;height: 0;visibility: hidden;}
.clearfix {min-height: 1px;}
* html .clearfix {height: 1px; /*\*//*/height: auto;overflow: hidden;/**/}


/* --------------------------
  調整用余白
-------------------------- */
.m00 {margin: 0 !important;}
.firstchild {margin-top: 0 !important;}
.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}

.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25{margin-bottom: 25px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb50{margin-bottom: 50px !important;}


/* ==========================================
  02. コンテナ
============================================ */

.container {
	width: 100%;
	max-width: 828px;
	margin: 0 auto;
}



/* ==========================================
  03. ヘッダー
============================================ */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000000;
}

#header .inner {
	height: 70px;
	padding: 10px 10px 0 15px;
	border-bottom: 2px solid #4d4d4d;
}

#header .inner h1 {
	float: left;
	padding-top:5px;
	width: 200px;
}

#header .inner #btn-spmenu {
	float: right;
	width: 40px;
	cursor: pointer;
}

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

	#header .inner {
		padding-top: 15px;
	}

	#header .inner h1 {
		width: 60%;
		max-width: 200px;
		padding-top: 0;
	}

	#header .inner #btn-spmenu {
		max-width: 35px;
	}

}

/* --------------------------
  グローバルメニュー
-------------------------- */
#global-menu {
	display: none;
	position: fixed;
	top: 70px;
	width: 100%;
	height: 100%;
}

#global-menu ul {
	height: 100%;
	overflow-y: auto;
}

#global-menu li {
	background: url("../images/gnavi-arrow.png") no-repeat 10px center;
	background-size: 11px 15px;
	background-color: #000000;
	border-bottom: 1px solid #4d4d4d;
	padding: 0 10px 0 30px;
}

#global-menu li.lower {
	/*
	background: url("../images/gnavi-arrow.png") no-repeat 30px center;
	background-size: 6px 7px;
	padding: 0 10px 0 45px;
	*/
	background: none;
	background-color: #000000;
	border-bottom: 1px solid #4d4d4d;
	padding: 0 10px 0 30px;
}

#global-menu a {
	display: block;
	/*height: 40px;*/
	line-height: 40px;
	color: #ffffff;;
	font-size: 16px;
	font-size: 1.6rem;
	text-decoration: none;
}

#global-menu li.active,
#global-menu li.lower.active {
	background-color: #fff6d0;
}

#global-menu li.active a,
#global-menu li.lower.active a {
	color: #000000;
}

.gnavi-icon {
	width: 15px;
	margin-left: 10px;
	vertical-align: middle;
}

.fixed-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
}



/* ==========================================
  04. フッター
============================================ */

#footer {
	width: 100%;
	background-color: #000000;
	color: #ffffff;
	text-align: center;
	padding: 20px 0 10px;
}

#footer .logo {
	width: 60%;
	max-width: 160px;
	margin: 0 auto 10px;
}

#footer #copyright {
	font-size: 11px;
	font-size: 1.1rem;
}



/* ==========================================
  05. メイン
============================================ */

#main {
	margin-top: 70px;
}

#area-eyecatch {
	width: 100%;
	background-color: #ffffff;
}

#area-eyecatch img {
	display: block;
}

#area-eyecatch h1 {
	width: 100%;
	max-width: 828px;
	margin: 0 auto;
}

#contents {
	margin: 20px 0 0;
	padding: 0 10px 30px;
}

#contents h2 {
	font-size: 19px;
	font-size: 1.9rem;
	line-height: 1.4;
	margin-bottom: 1em;
	color: #262847;
}

#contents h3 {
	font-size: 16px;
	font-size: 1.6rem;
	color: #262847;
	margin-bottom: 1em;
}

#contents h4 {
	font-size: 15px;
	font-size: 1.5rem;
	color: #262847;
	margin-bottom: 0.4em;
}

.link-reference a {
	background: url("../images/arrow-orange.png") no-repeat left center;
	padding-left: 10px;
}

.link-back a {
	background: url("../images/arrow-orange-l.png") no-repeat left center;
	padding-left: 10px;
}

a.link_button { color:#262847; text-decoration:none; background:url(../images/arrow_red-l.png) 1em no-repeat, #eeeeee; padding:.5em .8em .5em 2em; display:block; text-align:left; width:max-content; }
a.link_button_center { margin:0 auto;}
a.link_button:hover { color:#DF8300; }

/* ==========================================
  06. ページトップへボタン
============================================ */

#btn-pagetop {
	position: fixed;
	bottom: 75px;
	right: 10px;
}

#btn-pagetop a {
	display: block;
	width: 35px;
	height: 35px;
}

/* ==========================================
  07. PC、SP出し分け
============================================ */
@media print, screen and (min-width: 769px) {
	.sp-only {
		display:none;
	}
	.pc-only {
		display:block;
	}
}
@media print, screen and (max-width: 769px) {
	.pc-only {
		display:none;
	}
	.sp-only {
		display:block;
	}
}