@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%;
}

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 {
  font-size: 62.5%;
  height: 100%;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.inner {
  overflow: hidden;
}
@media only screen and (min-width: 788px) {
  .inner {
    width: 960px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 787px) {
  .inner {
    width: 100%;
  }
}

* {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
  color: #444;
  font-size: 14px;
  /*px表示で*/
  text-align: center;
  line-height: 1.5;
  min-width: 320px;
  background: #fff;
}

#wrapper {
  position: relative;
}

#container {
  overflow: hidden;
  text-align: left;
  padding-bottom: 50px;
}

header#header {
  width: 100%;
  margin-bottom: 20px;
}

footer#footer {
  overflow: hidden;
  color: #fff;
  width: 100%;
  height: 60px;
  padding-top: 20px;
  background: #0062c0;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
h2, h3, h4 {
  font-weight: bold;
  line-height: 1;
}

@media only screen and (min-width: 788px) {
  .br {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 787px) {
  .br {
    display: block;
  }
}

@media only screen and (min-width: 788px) {
  .btnarea {
    margin: 60px auto;
    padding: 0 2em;
  }
}
@media only screen and (min-width: 320px) and (max-width: 787px) {
  .btnarea {
    margin: 30px auto;
    padding: 0 2em;
  }
}

@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

@keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
            transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
            transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
            transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.shiny-btn {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 20px;
  background: #01b901;
}

.shiny-btn img {
  max-width: 100%;
}

.shiny-btn::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 120px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, #ffffff 100%, rgba(255, 255, 255, 0) 0%);
  -webkit-animation-name: shiny;
          animation-name: shiny;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#page_top {
  position: fixed;
  z-index: 97;
  bottom: -70px;
  right: 6%;
}
#page_top a {
  display: block;
  color: #fff;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  background: #0074b7;
}

footer p {
  text-align: center;
  font-size: 11px;
}
