@charset "utf-8";
@font-face{
  font-family: 'Hannari'; /* お好きな名前にしましょう */
  src: url(./Hannari.woff) format('woff'); /* モダンブラウザ用 */
  font-weight: normal; /* 念の為指定しておきます */
  font-style: normal;
}

/*==============================================================
/ Reset
/==============================================================*/
body,
dd,
div,
dl,
dt,
footer,
h1,
h2,
h3,
h4,
header,
img,
li,
ol,
p,
section,
table,
td,
th,
tr,
ul {
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: left;
  vertical-align: baseline;
}

img {
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  background: #232B2D;
  color: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック' , 'sans-serif';
}

a {
  color: #096fad;
}

a:visited {
  color: #917ca3;
}

/*==============================================================
/ Header
/==============================================================*/
header {
  background: #F2F0ED;
  color: #151A1C;
}

#header-inner {
  height: 90px;
  margin: 10px auto 0 auto;
  position: relative;
  width: 940px;
}

header nav {
  font-family: 'Hannari';
  font-size:14px; font-size:1.4rem;
  left: 499px;
  position: absolute;
  top: 0;
}

header nav ul {
  margin: 0;
}

header nav li {
  float:left;
  list-style:none;
  text-align: center;
}

header nav li:first-child a {
  border-left: 1px solid #DEDEDE;
}

header nav a,
header nav a:visited {
  border-right: 1px solid #DEDEDE;
  color: #151A1C;
  display: block;
  height: 70px;
  line-height: 70px;
  margin: 10px 0;
  position: relative;
  text-decoration: none;
  width: 109px;
}

header nav a.current:after {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  margin-left: -10px;

  width:0;
  height:0;
  border: 10px solid transparent;
  border-top: 10px solid #232B2D;
}

/*==============================================================
/ Catch
/==============================================================*/

#catch {
  background:#232B2D;
  border-bottom: 1px solid #DEDEDE;
  border-top: 1px solid #DEDEDE;
}

/*==============================================================
/ Main
/==============================================================*/
main {
  background: #F2F0ED;
  color: #151A1C;
  display: block;
  font-size: 12px; font-size: 1.2rem;
  line-height: 180%;
  overflow: hidden;
}

#main-inner {
  margin: 30px auto;
  width: 940px;
}

/*==============================================================
/ Footer
/==============================================================*/

footer {
  font-size: 12px; font-size: 1.2rem;
  line-height: 160%;
  padding: 30px 0 20px 0;
}

#footer-inner {
  margin: 0 auto;
  width: 940px;
}

footer nav {
  margin: 30px 0;
}

footer nav div {
  border-left: 1px solid #404749;
  float: left;
  margin-right: 20px;
  padding-left: 20px;
}

footer nav div:first-child {
  border: none;
  padding: 0;
}

footer nav ul {
  margin-left:20px;
}

footer nav a,
footer nav a:visited {
  color: #FFF;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

footer .copyright {
  display:block;
  text-align:right;
}

/*==============================================================
/ Content
/==============================================================*/

section {
  margin:0 0 40px 0;
}

.col-140 { float: left; margin-left: 20px; width: 140px; }
.col-300 { float: left; margin-left: 20px; width: 300px; }
.col-380 { float: left; margin-left: 20px; width: 380px; }
.col-460 { float: left; margin-left: 20px; width: 460px; }
.col-540 { float: left; margin-left: 20px; width: 540px; }
.col-620 { float: left; margin-left: 20px; width: 620px; }
.clearfix *:first-child { margin-left: 0 }


h1 {
  font-family: 'Hannari';
  font-size: 24px; font-size: 2.4rem;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  width: 940px;
}

h2 {
  border-bottom: 1px solid #DEDEDE;
  font-family: 'Hannari';
  font-size: 19px; font-size: 1.9rem;
  font-weight: bold;
  margin-bottom:20px;
  padding-bottom:10px;
}

p {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------*/
/* Table */

table {
  border-collapse: collapse;
  font-size:12px; font-size:1.2rem;  /* IE6対応 */
  line-height: 140%;                 /* IE6対応 */
  margin: 20px auto 20px 0;
}

td,
th {
  border-left: 5px solid #F2F0ED;
  border-top: 5px solid #F2F0ED;
  padding: 5px 10px;
  vertical-align: top;
}

td:first-child,
th:first-child {
  border-left: none;
}

tr:first-child td,
tr:first-child th {
  border-top: none;
}

th {
  background: #232B2D;
  color: #FFF;
}

/*--------------------------------------------------------------*/
/* List*/

ul {
  margin: 0 auto 0 20px;
}


#info dt {
  border-top: 1px solid #DEDEDE;
  font-weight: bold;
  padding-top: 10px;
}

#info dt:first-child {
  border: none;
  padding:0;
}

#info dd {
  margin-bottom:10px;
}

/*==============================================================
/ ClearFix
/==============================================================*/
.clearfix:after{
    content: ".";
    display: block;
    height: 0;
    font-size:0;
    clear: both;
    visibility:hidden;
}
.clearfix{
    display: inline-block;
}
/* Hides from IE Mac */
* html .clearfix{
    height: 1%;
}
.clearfix{
    display:block;
}
/* End Hack */

/*==============================================================
/ ForEditor
/==============================================================*/
.forEditor{
  background: #F2F0ED;
  color: #151A1C;
  display: block;
  font-size: 12px; font-size: 1.2rem;
  line-height: 180%;
  overflow: hidden;
}
