@charset "UTF-8";
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
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%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*行頭記号を表示しないようにしています*/
ol, ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background: #FF9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #FF9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています

また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  clear: both;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #CCC;
  margin: 1em 0;
}

/*画像の初期位置*/
img {
  vertical-align: bottom;
}

body {
  font-size: 14px;
  line-height: 1.428;
  *font-size: 82%;
  *font: 82%;
  line-height: 1.4;
}

/*------配置------*/
.left {
  float: left;
}

.right {
  float: right;
}

/*
.clear {clear: both;}
*/
.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.hidden {
  display: none;
}

/*------テキスト------*/
.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

/*------色------*/
.red {
  color: #F00;
}

.blue {
  color: #00F;
}

.green {
  color: #0F0;
}

.yellow {
  color: #FF0;
}

.black {
  color: #000;
}

.white {
  color: #FFF;
}

.purple {
  color: #309;
}

.orange {
  color: #F60;
}

/* Text Size
------------------------------------------------------------ */
.txt10 {
  font-size: 10px !important;
}

/* 10px */
.txt11 {
  font-size: 11px !important;
}

/* 11px */
.txt12 {
  font-size: 12px !important;
}

/* 12px */
.txt13 {
  font-size: 13px !important;
}

/* 13px */
.txt14 {
  font-size: 14px !important;
}

/* 14px */
.txt15 {
  font-size: 15px !important;
}

/* 15px */
.txt16 {
  font-size: 16px !important;
}

/* 16px */
.txt17 {
  font-size: 17px !important;
}

/* 17px */
.txt18 {
  font-size: 18px !important;
}

/* 18px */
.txt19 {
  font-size: 19px !important;
}

/* 19px */
.txt20 {
  font-size: 20px !important;
}

/* 20px */
.txt21 {
  font-size: 21px !important;
}

/* 21px */
.txt22 {
  font-size: 22px !important;
}

/* 22px */
.txt23 {
  font-size: 23px !important;
}

/* 23px */
.txt24 {
  font-size: 24px !important;
}

/* 24px */
.txt25 {
  font-size: 25px !important;
}

/* 25px */
.txt26 {
  font-size: 26px !important;
}

/* 26px */
/*margin
------------------------------------------------------------ */
.mg05 {
  margin: 5px !important;
}

.mg10 {
  margin: 10px !important;
}

.mgB05 {
  margin-bottom: 5px !important;
}

.mgB10 {
  margin-bottom: 10px !important;
}

.mgB15 {
  margin-bottom: 15px !important;
}

.mgB20 {
  margin-bottom: 20px !important;
}

.mgB25 {
  margin-bottom: 25px !important;
}

.mgB30 {
  margin-bottom: 30px !important;
}

.mgB35 {
  margin-bottom: 35px !important;
}

.mgB40 {
  margin-bottom: 40px !important;
}

.mgL05 {
  margin-left: 5px !important;
}

.mgL10 {
  margin-left: 10px !important;
}

.mgL15 {
  margin-left: 15px !important;
}

.mgL20 {
  margin-left: 20px !important;
}

.mgL25 {
  margin-left: 25px !important;
}

.mgL30 {
  margin-left: 30px !important;
}

.mgL35 {
  margin-left: 35px !important;
}

.mgL40 {
  margin-left: 40px !important;
}

.mgT05 {
  margin-top: 5px !important;
}

.mgT10 {
  margin-top: 10px !important;
}

.mgT15 {
  margin-top: 15px !important;
}

.mgT20 {
  margin-top: 20px !important;
}

.mgT25 {
  margin-top: 25px !important;
}

.mgT30 {
  margin-top: 30px !important;
}

.mgT35 {
  margin-top: 35px !important;
}

.mgT40 {
  margin-top: 40px !important;
}

.mgR05 {
  margin-right: 5px !important;
}

.mgR10 {
  margin-right: 10px !important;
}

.mgR15 {
  margin-right: 15px !important;
}

.mgR20 {
  margin-right: 20px !important;
}

.mgR25 {
  margin-right: 25px !important;
}

.mgR30 {
  margin-right: 30px !important;
}

.mgR35 {
  margin-right: 35px !important;
}

.mgR40 {
  margin-right: 40px !important;
}

.pd05 {
  padding: 5px !important;
}

.pd10 {
  padding: 10px !important;
}

.pdB05 {
  padding-bottom: 5px !important;
}

.pdB10 {
  padding-bottom: 10px !important;
}

.pdB15 {
  padding-bottom: 15px !important;
}

.pdB20 {
  padding-bottom: 20px !important;
}

.pdB25 {
  padding-bottom: 25px !important;
}

.pdB30 {
  padding-bottom: 30px !important;
}

.pdB35 {
  padding-bottom: 35px !important;
}

.pdB40 {
  padding-bottom: 40px !important;
}

.pdL05 {
  padding-left: 5px !important;
}

.pdL10 {
  padding-left: 10px !important;
}

.pdL15 {
  padding-left: 15px !important;
}

.pdL20 {
  padding-left: 20px !important;
}

.pdL25 {
  padding-left: 25px !important;
}

.pdL30 {
  padding-left: 30px !important;
}

.pdL35 {
  padding-left: 35px !important;
}

.pdL40 {
  padding-left: 40px !important;
}

.pdT05 {
  padding-top: 5px !important;
}

.pdT10 {
  padding-top: 10px !important;
}

.pdT15 {
  padding-top: 15px !important;
}

.pdT20 {
  padding-top: 20px !important;
}

.pdT25 {
  padding-top: 25px !important;
}

.pdT30 {
  padding-top: 30px !important;
}

.pdT35 {
  padding-top: 35px !important;
}

.pdT40 {
  padding-top: 40px !important;
}

.pdR05 {
  padding-right: 5px !important;
}

.pdR10 {
  padding-right: 10px !important;
}

.pdR15 {
  padding-right: 15px !important;
}

.pdR20 {
  padding-right: 20px !important;
}

.pdR25 {
  padding-right: 25px !important;
}

.pdR30 {
  padding-right: 30px !important;
}

.pdR35 {
  padding-right: 35px !important;
}

.pdR40 {
  padding-right: 40px !important;
}

/* clearfix */
* html .clearfix {
  height: 1%;
}

.clearfix {
  *zoom: 1;
  display: inline-table;
  display: block;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.inner {
  position: relative;
}
@media only screen and (min-width: 960px) {
  .inner {
    width: 960px;
    margin: 0 auto;
  }
}

#scroller {
  position: absolute;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

.btn, .btn_01, .box input[type="submit"],
.box input[type="send"],
.box input[type="button"], .btn_02, .box a[class="btn"] {
  position: relative;
  display: block;
  color: #fff !important;
  font-family: メイリオ, Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  width: 80%;
  margin: 0 auto 10px;
  border-radius: 25px;
}
.btn:hover, .btn_01:hover, .box input[type="submit"]:hover,
.box input[type="send"]:hover,
.box input[type="button"]:hover, .btn_02:hover, .box a[class="btn"]:hover {
  color: #fff !important;
}

.btn_01, .box input[type="submit"],
.box input[type="send"],
.box input[type="button"] {
  font-size: 109%;
  line-height: 24px;
  padding: 5px 10px;
  background: #1d4c7c;
}
.btn_01:hover, .box input[type="submit"]:hover,
.box input[type="send"]:hover,
.box input[type="button"]:hover {
  color: #fff !important;
}

.btn_02, .box a[class="btn"] {
  font-size: 117%;
  padding: 10px;
  background: #1d4c7c;
}
.btn_02:hover, .box a[class="btn"]:hover {
  color: #fff !important;
}

i {
  margin-right: 5px;
}

#nav ul li a {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

.inner {
  overflow: hidden;
  min-width: 960px;
  width: 960px;
  margin: 0 auto;
}

* {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  color: #808080;
  font-size: 14px;
  /*px表示で*/
  text-align: center;
  line-height: 1.5;
  min-width: 960px;
}

#wrapper {
  overflow: hidden;
  background: url(../img/up/pc/bg.png);
}

#container {
  overflow: hidden;
  text-align: left;
  padding-bottom: 100px;
}

header#header {
  position: relative;
  width: 100%;
  margin: 0 auto 20px;
  background: #0c1f49;
}

#main {
  float: right;
  width: 620px;
  margin-left: 10px;
}

#sub {
  float: left;
  width: 320px;
}

footer#footer {
  overflow: hidden;
  color: #fff;
  font-size: 100%;
  width: 100%;
  height: 200px;
  padding-top: 120px;
  background: #003168;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
header#header h1 a {
  display: block;
  position: absolute;
  top: 15px;
  left: 20px;
}
header#header #top .reg {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: 5;
}
header#header .area {
  position: relative;
  width: 960px;
  height: 100px;
  margin: 0 auto;
  padding: 10px 0;
}
header#header .area a.btn_02, header#header .area .box a[class="btn"], .box header#header .area a[class="btn"] {
  font-size: 117%;
  line-height: 1;
  width: 240px;
  padding: 10px;
  position: absolute;
  top: 30px;
  right: 20px;
}

nav#gnav {
  overflow: hidden;
  height: 56px;
  background: #003366;
}
nav#gnav ul {
  margin: 0 auto;
}
nav#gnav ul li {
  display: inline-block;
}
nav#gnav ul li a {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 109%;
  font-family: メイリオ, Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: bold;
  line-height: 50px !important;
  width: 192px;
  height: 56px;
  padding: 5px 0;
}

/*-----------------------------------
 pageTop
-------------------------------------*/
#pagetop a {
  color: #fff;
  display: block;
  padding: 10px 0;
}

footer#footer #fnav {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
footer#footer #fnav ul {
  position: relative;
  left: 50%;
  float: left;
}
footer#footer #fnav ul li {
  position: relative;
  left: -50%;
  float: left;
  line-height: 1.2;
}
footer#footer #fnav ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}
footer#footer #fnav ul li a {
  color: #fff;
}

a {
  color: #003366;
}
a:hover {
  color: #b7e6e0;
}

h2, h3, h4 {
  font-weight: bold;
  line-height: 1;
}

.box {
  position: relative;
  overflow: hidden;
  line-height: 1.8;
}
.box p, .box li, .box dd, .box h2, .box h3, .box h4, .box h5, .box figure, .box div {
  margin-bottom: 10px;
}
.box dt {
  font-size: 117%;
  font-weight: bold;
}
.box a {
  color: #003366;
  text-decoration: underline;
}
.box a[class="btn"] {
  width: 50%;
}

#sub > section,
#main > section {
  magin-bottom: 5px;
  padding: 5px;
}
#sub > section h2,
#main > section h2 {
  overflow: hidden;
  color: #fff;
  font-family: メイリオ, Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 134%;
  text-align: left;
  line-height: 1 !important;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzViYzZmMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmFhOWRjIi8+PHN0b3Agb2Zmc2V0PSI1MSUiIHN0b3AtY29sb3I9IiMwMTliY2QiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxM2FhZDkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: #1d4c7c;
}

#main section {
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #dcdcdd;
}
#main section h2 {
  color: #fff;
}
#main section .box {
  min-height: 700px;
  padding: 20px;
}
#main section .box dt {
  color: #333;
  font-size: 117%;
  font-weight: bold;
}
#main section .box dd {
  margin-bottom: 10px;
}
#main h3 {
  color: #807264;
  font-size: 134%;
  padding: 10px;
}

aside#sub {
  position: relative;
  color: #808080;
}
aside#sub img {
  text-align: center;
}
aside#sub section {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dcdcdd;
  border-radius: 6px;
  background: #fff;
}
aside#sub section h3 {
  position: relative;
  color: #fff;
  font-family: メイリオ, Meiryo, Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 109%;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzViYzZmMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmFhOWRjIi8+PHN0b3Agb2Zmc2V0PSI1MSUiIHN0b3AtY29sb3I9IiMwMTliY2QiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxM2FhZDkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: #1d4c7c;
}
aside#sub section .box {
  margin-bottom: 10px;
  padding: 20px;
  background: #fff;
}
aside#sub section .box dl {
  text-align: left;
}
aside#sub section .box dl dt {
  font-size: 109%;
}
aside#sub section #login a {
  color: #fff !important;
  text-decoration: underline;
}

*:not(input):not(textarea):not(select) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:active,
input:focus,
textarea:active,
textarea:focus,
select:active,
select:focus {
  outline: medium none;
}

.box input,
.box textarea,
.box select {
  margin-bottom: 10px;
}
.box input[type="password"],
.box input[type="text"],
.box textarea,
.box select {
  display: inline-block;
  color: #737373;
  font-size: 117%;
  width: 100%;
  padding: 10px;
  border: 1px solid #d3cece;
  border-radius: 3px;
  background: #fff;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.box input[type="submit"],
.box input[type="send"],
.box input[type="button"] {
  border: none;
}
.box select {
  width: 50%;
}
.box textarea {
  min-height: 180px;
}

.chk18 #main {
  float: none;
  width: 660px !important;
  margin: 0 auto !important;
}
.chk18 #main h2 {
  text-align: center !important;
}
.chk18 #main .box {
  min-height: 360px !important;
}

.index #top {
  position: relative;
  background: url(../images/bg_top.jpg) top center no-repeat;
}
.index #top .btn_top {
  position: absolute;
  right: 48px;
  bottom: 24px;
  color: #fff;
  z-index: 5;
  background: #f0b6cd;
  border-radius: 6px;
}

#member dl,
#member figure {
  display: inline-block;
  vertical-align: top;
}
#member figure img {
  margin-right: 20px;
  border: 1px solid #999;
}

table {
  width: 100%;
  border: 1px solid #333;
  margin-bottom: 10px;
}
table caption {
  font-size: 117%;
}
table th,
table td {
  font-size: 109%;
  padding: 5px 10px;
  border: 1px solid #807264;
}
table th {
  font-weight: bold;
  width: 30%;
}

table.point {
  width: 80%;
  margin: 0 auto 10px;
}
table.point th {
  text-align: right;
}

/*------------------------------------------------------------
ページリンク
------------------------------------------------------------*/
.pageLink {
  text-align: center;
  width: 100%;
  height: auto;
  padding: 20px 0;
}
.pageLink a {
  margin-left: 5px;
  padding: 10px;
  background: #a2e3f7;
  -moz-transform: all 0.3s;
  -ms-transform: all 0.3s;
  -webkit-transform: all 0.3s;
  transform: all 0.3s;
}
.pageLink a:active {
  color: #fff;
  background: #807264;
}
.pageLink u {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
  padding: 10px;
  background: #807264;
}