@charset "UTF-8";

/* 基本設定
/* ---------------------------------------- */
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", "Lucida Grande", sans-serif;
}
a {
  text-decoration: none;
  display: inline-block;
}
a:link {
  color: #02C39A;
}
a:visited {
  color: #02C39A;
}
a:hover {
  color: #9CD0F4;
}
a:active {
  color: #02C39A;
}
p {
  line-height: 160%;
}
ul {
  padding: 0;
  list-style: none;
}
b {
  color: #9A3EB9;
}
strong {
  color: #E83428;
}
hr {
  margin: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.imageR {
  overflow: hidden;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
.imageL {
  overflow: hidden;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.textR {margin-bottom: 20px; text-align: right;}
.textL {margin-bottom: 20px; text-align: left;}
.textC {margin-bottom: 20px; text-align: center;}


/* ヘッダー
/* ---------------------------------------- */
header {
  position: relative;
  margin: 0 auto;
  padding: 20px 30px 0;
  width: 940px;
  border-right: 20px solid #02C39A;
  border-left: 20px solid #02C39A;
}
header h1 {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #ccc;
}
header h2 {
  margin: 0;
  font-size: 12px;
}


/* フッター
/* ---------------------------------------- */
footer {
  position: relative;
  margin: 0 auto;
  width: 940px;
  border-right: 20px solid #02C39A;
  border-left: 20px solid #02C39A;
  background: #02C39A;
}
/* コピーライト */
#copyright {
  padding: 40px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
/* ページトップボタン */
#pageTopBtn {
  display: none;
}


/* コンテンツ
/* ---------------------------------------- */
#contents {
  overflow: hidden;
  margin: 0 auto;
  padding: 0 30px 40px;
  width: 940px;
  border-right: 20px solid #02C39A;
  border-left: 20px solid #02C39A;
}
#contents h2 {
  padding: 2px 10px;
  width: 100%;
  
  /*↓グラデーション指定部分↓*/
  background: rgb(5,102,141);
  background: -moz-linear-gradient(top,  rgba(5,102,141,1) 0%, rgba(4,83,114,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(5,102,141,1) 0%,rgba(4,83,114,1) 100%);
  background: linear-gradient(to bottom,  rgba(5,102,141,1) 0%,rgba(4,83,114,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4aae0', endColorstr='#b17fd1',GradientType=0 );
  /*↑グラデーション指定部分↑*/
  
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  text-shadow: 0 -1px 0 #07115E;
}
#contents h3 {
  padding: 0 0 5px;
  border-bottom: 2px solid #02638C;
}
#contents h4 {
  margin: 0;
}

/* パンくず */
.breadcrumb p {
  margin-bottom: 0;
}

/* メインコンテンツ */
#main {
  overflow: hidden;
  float: left;
  width: 640px;
}
#main a:link {
  text-decoration: underline;
}

/* サイドコンテンツ */
#side {
  overflow: hidden;
  float: left;
  padding-left: 30px;
  width: 200px;
}

/* サイドナビゲーション */
#side li a {
  position: relative;
  padding-left: 18px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  width: 100%;
  border-bottom: 1px dashed #ccc;
}
#side li a:before {
  content: "△";
  position: absolute;
  left: 0;
  margin-top: 1px;
  color: #888;
  font-size: 12px;
  -webkit-transform: rotate(90deg);  
  -moz-transform: rotate(90deg);  
  transform: rotate(90deg);  
}


/* モバイル対応
/* ---------------------------------------- */
.sp {
  display: none !important;
}
@media screen and (max-width: 769px) {
  /* 基本設定 */
  html {
    font-size: 12px;
  }
    img { width: 100%; }
  .imageR {
    width: 40%;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .imageL {
    width: 40%;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .pc {
    display: none !important;
  }
  header,
  #contents,
  #main,
  #side,
  footer {
    width: auto;
  }

  /* ヘッダー */
  header {
    padding: 10px 10px 0;
    border-right: 8px solid #02C39A;
    border-left: 8px solid #02C39A;
  }
  header h1 {
    padding-bottom: 8px;
    font-size: 16px;
  }
  header h2 {
    font-size: 10px;
  }

  /* コンテンツ */
  #contents {
    padding: 0 10px;
    border-right: 8px solid #02C39A;
    border-left: 8px solid #02C39A;
  }
  #contents h2 {
    font-size: 16px;
  }
  #contents h3 {
    font-size: 14px;
  }
  #contents h4 {
    font-size: 12px;
  }

  /* サイドコンテンツ */
  #side {
    float: initial;
    padding: 0 0 20px;
    width: 100%;
  }

  /* サイドナビゲーション */
  #side ul {
  }
  #side li {
  }
  #side li a {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  /* バナーエリア */
  .bannerArea {
    text-align: center;
  }
  .bannerArea a {
    display: block;
  }
  .bannerArea img {
    width: 50%;
  }

  /* コピーライト */
  #copyright {
    font-size: 10px;
  }

  /* ページトップボタン */
  #pageTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding-top: 17px;
    line-height: 14px;
    width: 64px;
    height: 64px;
    background: #BA81D1;
    border-radius: 100px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    opacity: .8;
  }
  #pageTopBtn.show { display: block;}
}
