@charset "UTF-8";
/*===================================================

目次
1:リセット
2:共通スタイル
3:ヘッダーナビメニュー
4:フッター

=====================================================*/
/* 1:リセット ---------------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
  line-height: 1.6rem;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  -webkit-text-size-adjust: 100%;
}
#wrapper {
  position: relative;
  left: 0;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
a:hover {
  font-style: normal;
  text-decoration: underline;
}
/* 2:共通スタイル -----------------------------------*/
h1 {
  width: 100%;
  line-height: 72px;
  background: #1d9959;
}
#mainContents {
  min-height: 480px;
}
#mainContents h2 {
  width: 100%;
  height: 45px;
  /*background: url(../img/message/message_head.png) no-repeat center;*/
  margin-top: 38px;
}
#mainContents h2 span {
  width: 100%;
  line-height: 50px;
  color: #1d9959;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "Helvetica Neue";
  text-align: center;
  display: block;
}
#mainContents dl {
  margin: 60px 0;
  padding: 0 10px;
}
#mainContents dl dt {
  line-height: 1.4rem;
  font-weight: bold;
  font-size: 1.2rem;
  word-break: break-all;
}
#mainContents dl dd {
  line-height: 1.2rem;
  font-size: 1.0rem;
  word-break: break-all;
  margin-top: 20px;
}
.link_green {
  color: #1d9959;
}
/*===============================================
 画面の横幅が769px以上
===============================================*/
/*===============================================
 画面の横幅が769px以上
===============================================*/
/*===============================================
●smart.css  画面の横幅が640pxまで
===============================================*/
#wrapper {
  border: 10px solid #1d9959;
  box-sizing: border-box;
  display: block;
  overflow: auto;
}
#wrapper #mainContents {
  width: 100%;
  display: block;
  float: left;
}
/* 背景画像固定 */
/*===============================================
●縦向きの際に適用
===============================================*/
@media only screen and (orientation: portrait) {
  .background-hack {
    z-index: -1;
    background-color: #cccccc;
    background: url(../../img/common/bg_logo.png) no-repeat center 100px;
    background-size: 60% auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  img {
    max-width: 60%;
    height: auto;
    width: auto;
  }
}
/*===============================================
●横向きの際に適用
===============================================*/
@media only screen and (orientation: landscape) {
  .background-hack {
    z-index: -1;
    background-color: #cccccc;
    background: url(../../img/common/bg_logo.png) no-repeat center 100px;
    background-size: auto 50%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  img {
    max-height: 40%;
    height: auto;
    width: auto;
  }
}
/* Clearfix */
.clearfix:after {
  /*floatの解除、ここがポイント*/
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
  content: ".";
}
.clearfix {
  min-height: 1px;
  /*IE6、7対策*/
}
* html .clearfix {
  height: 1px;
  /*¥*/
  /*/ /*MAC IE5.x対策*/
  height: auto;
  overflow: hidden;
  /**/
}
ul {
  list-style-type: none;
}
ul li a {
  text-decoration: none;
}
/* 3.ヘッダーナビメニュー ------------------------------------------ */
#navBlock {
  position: absolute;
  top: 0;
  right: 0;
}
#navBlock #navBtn {
  float: right;
}
#navBlock #navBox {
  width: 100%;
  background: #1d9959;
  display: inline-block;
}
#navBlock #navBox #closeBtn {
  float: left;
}
#navBlock #navBox ul {
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
}
#navBlock #navBox ul li {
  color: #ffffff;
}
#navBlock #navBox ul li a {
  height: 100px;
  line-height: 100px;
  color: #ffffff;
  border-bottom: 1px solid #56b383;
  display: block;
  margin-left: 20px;
  padding-left: 20px;
}
#navBlock #navBox ul li a:hover {
  text-decoration: none;
}
/* 4:フッター ------------------------------------------ */
#footer {
  width: 100%;
  height: 18%;
  background: #1d9959;
  display: inline-block;
}
#footer ul {
  margin: 0 auto;
  display: table;
  overflow: hidden;
}
#footer ul li {
  border-right: 1px solid #fff;
  display: table-cell;
  float: left;
  margin: 20px -3px 20px 0;
  padding: 0 20px;
}
#footer ul li a {
  color: #fff;
  text-decoration: underline;
}
#footer ul li a:hover {
  text-decoration: none;
}
#footer address {
  color: #fff;
  text-align: center;
  clear: both;
}
