@charset "utf-8";
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
http://code.google.com/p/html5resetcss/downloads/list
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
th,td{
	text-align: left;
	vertical-align: top;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}




article, aside, dialog, figure, footer, header,hgroup, menu, nav, section { display: block; }

img{border: 0; vertical-align: bottom;-ms-interpolation-mode: bicubic; }


/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
	content:"";
	display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

*{box-sizing: border-box;}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

a{color: #0066cc;text-decoration: underline;}
a:hover{color: #ff6600;transition-duration:0.3s;}

html{
	color: #333333;
	background: white;
	overflow-y: scroll;	/*ここでスクロールバーを常に表示*/
}
body{
	text-align: center;
	font-size: 16px;
	font-family: "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif;

	/*font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
	/*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
	/*font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;*/
	font-weight:500;/*游ゴシック体用*/
	background-color: white;
	word-wrap: break-word;
	overflow-wrap : break-word;
}
/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast:none){
	/* IE10以降ハック*/
	/*body{font-family: "メイリオ", "Meiryo", sans-serif;}*/
}

/*  #boxが#box-innerを囲む。 -------------------------------*/
/*  #box-innerは#header,#main,#footerを含む ----------------*/
#box{
	width: 1000px;	/* #box-innerとの差が余白 */
	margin: 0 auto;
	background-color: pink;
}

#box-inner{
	width: 960px;	/* #boxとの差が余白 */
	margin: 0 auto;
	text-align: left;
	background-color: yellow;
	box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.2);	/* IE9以降 */
}


@media screen and (max-width: 767px) {/* @@ sm xs 767px以下(スマホ) */

	#box{
		width: 100%;
		box-shadow: none;
	}
	#box-inner{
		width: 100%;
	}
}

#layer {
    position: fixed;
    /*z-index: 500;*/
    background: #000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=0);
    opacity: 0.0;
    display: none;
}


/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
/* PC */
@media (min-width: 768px)  {/* @@ sm 768px～ */

header#page-header{
	width: 100%;
	background: white;	/*ヘッダ背景色*/
	height: 75px;
	margin-bottom: 48px;	/* Header Menuの表示領域 */
}

header#page-header h1{
	color: white;
}
header#page-header h1 a{
}
header#page-header h1 a:hover{
	
}

}/* PC ここまで */

/* スマホ */
@media screen and (max-width: 767px) {/* @@ sm xs 767px以下(スマホ) */

	header#page-header{
		position: relative;
		z-index: 1000;
		background: white;	/*ヘッダ背景色*/
		width: 100%;
		height: 60px;
	}

	header#page-header h1 a{
		width: 300px;
		height: 60px;
		display: block;
		text-indent: 100%;
		overflow: hidden;
		white-space: nowrap;
		background: transparent url(images/logo.png) no-repeat 0 0;
	}

	@media 
	only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (min-device-pixel-ratio: 1.5) {

		header#page-header h1 a{
			background-image: url(images/logo@2x.png); /* 2倍サイズの画像 */
			-webkit-background-size: 260px 60px; /* 表示させるサイズ WebKit */
			background-size: 260px 60px; /* 表示させるサイズ WebKit以外 */
		}

	}

}/* スマホ ここまで */

/*-----------------------------------------------------
@@ Header Menu
------------------------------------------------------*/
/* PC */
@media (min-width: 768px)  {/* @@ sm 768px～ */

#headermenu-btn{display: none;}

ul.headermenu-list{
	display: block;
	position: absolute;
	top: 75px;
	width: 940px;
	padding: 0 10px;
	margin: 10px 10px 20px;
	background-color: #a0a0a0;
	list-style-type: none;
}
ul.headermenu-list li{
	display: inline-block;
	padding: 4px;
}
ul.headermenu-list li a{
	display: block;
	padding: 4px;
	color: white;
}

}/* PC ここまで */

/* スマホ */
@media screen and (max-width: 767px) {/* @@ sm xs 767px以下(スマホ) */

#headermenu-btn{
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;;
	width: 60px;
	height: 60px;
	background: transparent url(images/headermenu-btn-bk.png) no-repeat 0 0;
	text-indent: -100%;
	overflow: hidden;
	white-space: nowrap;
	/*z-index: 1000;*/

}
#headermenu-btn:hover{
	cursor: pointer;
}
#headermenu-btn.clicked{
	background-position:  0 100%;
}

@media 
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {

	#headermenu-btn{
		background-image: url(images/headermenu-btn-bk@2x.png); /* 2倍サイズの画像 */
		-webkit-background-size: 60px 120px; /* 表示させるサイズ WebKit */
		background-size: 60px 120px; /* 表示させるサイズ WebKit以外 */
	}

}


ul.headermenu-list{
	display: none;	/* 最初は非表示 */
	position: absolute;
	top: 60px;
	padding: 0;
	margin: 0;
	background-color: white;
	width: 100%;
	box-shadow: 0px 6px 6px -6px #999999;
	list-style-type: none;
}
ul.headermenu-list li{
	display: block;
	padding: 0px;
}
ul.headermenu-list li a{
	display: block;
	background-color: #a0a0a0;
	color: white;
	border-bottom: 1px solid white;
	padding: 10px 8px;
}
ul.headermenu-list li:last-child a{
	border-bottom: none;
}

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
#page-footer{
	clear: both;
	width: 100%;
	background: #b1ddaf;	/*フッタ背景色*/
	padding: 20px 0;
}

/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
#main{	/*#mainは#sidemenuと#contentsを囲む*/
	width: 940px;
	margin: 0 10px;
	padding: 10px 0 20px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

#sidemenu{
	width: 220px;
	background-color: #ffc;	/*メニュー背景色*/
	line-height: 1em;
}
#contents{
	width: 700px;
	background-color: #cff;	/*本文外側背景色*/
}
#contents-inner{
	margin: 0 10px 0 10px;
	background-color: white;
}

@media screen and (max-width: 767px) {/* @@ sm xs 767px以下(スマホ) */
	#main{
		width: 100%;
		display: block;
		margin: 0;
		padding: 10px 10px;
		overflow: hidden;
		background: red;
	}

	#sidemenu{
		width: auto;
		margin: 0;
	}
	#contents{
		width: auto;
		margin: 0 0 20px;
	}
	#contents-inner{
		margin: 0;
	}
}

p.err-box{
	color: red;
	border: 1px solid red;
	padding: 8px;
}

/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
	line-height: 1.5;
	margin-bottom: 1em;
	color: #404040;
}
p.indent1{
	text-indent: -1em;
	margin-left: 1em;
}


/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon{ime-mode:active;}
.imeoff{ime-mode:disabled;}

.right{text-align: right;}
.center{text-align: center;}
.left{text-align: left;}

.nowrap{white-space: nowrap;}

a:hover img{
	opacity: 0.7;
}

@media screen and (max-width: 767px) {/* スマホ */
	.pc{display: none !important;}
}/* スマホ */

@media (min-width: 768px)  {/* PC */
	.sp, .smp{display: none;}
}/* PC */


/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, img, object {
    max-width: 100%;
    height: auto;
}

/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34{
    width:100%;   /*横幅いっぱいにwidthを指定*/
    height:0px;   /*高さはpaddingで指定するためheightは0に*/
    position: relative;
}
.video169{padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/}
.video34 {padding-bottom: 75%;  /*高さをpaddingで指定(4:3)*/}

.video169 iframe, .video34 iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*-----------------------------------------------------
@@ 箇条書き
------------------------------------------------------*/
ul.link{
	margin: 8px 12px 24px 24px;
}
ul.link li{
	list-style-type: disc;
	margin-bottom: 4px;
	padding-left: 8px;
}
ul.link li a{
	color: #0066cc;
	text-decoration: none;
}
ul.link li a:hover{
	text-decoration: underline;
}


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/


/*-----------------------------------------------------
@@ sidemenu サイドメニュー
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
h2.page-title{
	color: #000000;
	font-size: 25px;
	line-height: 1.4;
	margin-bottom: 24px;
	border: none;
	text-align: left;
	font-weight: normal;
}





/* @@ なんか */


/*-----------------------------------------------------
@@ フォーム
------------------------------------------------------*/
form{vertical-align:baseline;}
input,textarea{outline:0;}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
	border: 1px solid #737373;
	padding: 4px;
	font-size: 15px;
}
select{
	border: 1px solid #737373;
	font-size: 15px;
	height: 2em;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
	border: 1px solid #737373;
	background-color: #ffc;
}
select, input, textarea, button { 
	vertical-align:middle;
	font-family: inherit;
}

textarea{overflow: auto;}/* 内容が少ないのに薄くスクロールバーが出る事への対策。IEのみ  */

input,textarea,select,button{
	margin: 2px 4px 2px 0;
}
input[type="submit"], button {
	border: 1px solid #737373;
	border-radius: 3px;
	padding: 6px 12px;
	font-size: 15px;
	line-height: 1.2;
	overflow:visible;
	-webkit-appearance: none;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100;Gren+3D */
background: #eeeeee; /* Old browsers */
background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */

}
input[type="submit"]:hover,
button:hover {
	cursor: pointer;
}

label{
	font-size: 15px;
	margin-right: 1em;
}

/* placeholder属性 */
:placeholder-shown {
	color: #737373; }
::-webkit-input-placeholder {/* Google Chrome, Safari, Opera 15+, Android, iOS */
	color: #737373; }
:-moz-placeholder {/* Firefox 18- */
	color: #737373; opacity: 1; }
::-moz-placeholder {/* Firefox 19+ */
	color: #737373; opacity: 1; }
:-ms-input-placeholder {/* IE 10+ */
	color: #737373; }


/*-----------------------------------------------------
@@ サンプル
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ twentyfourteennのページネーション
------------------------------------------------------*/
div.pagination{
	margin: 24px 0 24px 0;
	text-align: center;
}

div.pagination span,
div.pagination a,
div.pagination sapn.current{
	font-size: 11pt !important;
	display: inline-block;
	vertical-align: middle;
		padding:6px 9px 6px 9px !important;
		margin-right:3px !important;
		text-decoration:none !important;
		border-radius:3px !important;	
}
div.pagination span, div.pagination a{
		color:#707070 !important;
		background:#FFFFFF !important;
		border-radius:3px !important;	
		-moz-border-radius:3px !important;
		-webkit-border-radius:3px !important;
		border:solid 1px #dcdcdc  !important;
		margin-bottom: 4px;
}
div.pagination a:hover {
		border-color:#202020 !important;
		background:#525252 !important;
		color:#fff !important;
}
div.pagination span.current{
		color:#fff !important;
		background:#525252 !important;
		-moz-border-radius:3px !important;
		-webkit-border-radius:3px !important;
		border:solid 1px #202020 !important;
}


.return-list{
	text-align: center;
	font-size: 15px;
	margin: 36px 0 0;
}

form.post-password-form input[type='submit']{
	border: 1px solid #707070;
	border-radius: 3px;
	background-color: #ccc;
}
form.post-password-form input[type='submit']:hover{
	cursor: pointer;
}


/*-----------------------------------------------------
@@ for WordPress
http://hijiriworld.com/web/wp-native-css/
------------------------------------------------------*/
.entry strong { font-weight: bold; }
.entry em { font-style: italic; }
.entry blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }

img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}

.entry p{
	line-height: 2;
}


/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
#pageTop{
	/*background:#DDD;
	border-radius:5px;
	color:#FFF;
	padding:20px;*/
	position:fixed;
	bottom:10px;
	right:10px;
	background: transparent url(images/top_back.png) no-repeat 0 0;
	width: 40px;
	height: 40px;
	display: block;
	font-size: 1px;
	text-indent: -9988px;
	overflow: hidden;
	opacity: 0.7;
}
#pageTop:hover{
	/*background:#EEE;*/
}

@media 
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {


	#pageTop{
		background-image: url(images/top_back@2x.png);
			-webkit-background-size: 40px 40px; /* 表示させるサイズ WebKit */
			background-size: 40px 40px; /* 表示させるサイズ WebKit以外 */
	}

}


/*-----------------------------------------------------
@@ Retina用背景画像
------------------------------------------------------*/
@media 
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {

	div.retinaback {
		background-image: url(images/aaaaa@2x.png);
		background-size: 100px 100px;
	}

	/*
		background-size: contain;
		background-size: cover;
	*/

}

/* @@ sm xs 767px以下(スマホ) */
@media screen and (max-width: 767px) {
}

/* @@ sm 768px～(991px) ()は↓と一緒に使えば */
@media (min-width: 768px)  {
}

/* @@ md 992px～(1119px) ()は↓と一緒に使えば */
@media (min-width: 992px) {
}

/* @@ lg 1200px以上 */
@media (min-width: 1200px) {
}
