.frkm {
  background: #FBFBFB;
  background: -moz-linear-gradient(top, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(50%, #FBFBFB), color-stop(95%, #F8F8F8), color-stop(100%, #F5F5F5));
  background: -webkit-linear-gradient(top, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
  background: linear-gradient(to bottom, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
  border: 1px solid #C00;
  color: #C00;
  text-align: center;
  margin: 15px auto;
  padding: 5px;
  line-height: 1.5em;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.photoFrame {
  box-shadow: 0 0 5px #ccccdc;
  border: 5px solid #fff;
}
.flexibleBox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
}
.fa.animate1 {
  /*アニメーション*/
  animation: animScale 1.9s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}
@keyframes animScale {
  0% {
    transform: scale(0.8, 0.8);
  }
  8% {
    transform: scale(1.2, 1.2);
  }
  13% {
    transform: scale(1, 1);
  }
  19% {
    transform: scale(1.1, 1.1);
  }
  29% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.sp .fa.animate1 {
  display: inline-block !important;
  font-size: 119%;
}
/* Material iconsを利用する */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* 推奨サイズ */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  /* WebKitブラウザサポート */
  -webkit-font-smoothing: antialiased;
  /* Chrome、Safariサポート */
  text-rendering: optimizeLegibility;
  /* Firefoxサポート */
  -moz-osx-font-smoothing: grayscale;
  /* IEサポート */
  font-feature-settings: 'liga';
}
.palt {
  font-feature-settings: "palt" 1;
}
.palt-not {
  font-feature-settings: "palt" 0 !important;
}
/* 【複数行にも対応】長過ぎる文字列を省略して末尾を三点リーダー */
.ellipsis-container p {
  margin: 0;
}
.ellipsis-container {
  background: #eee;
  overflow: hidden;
  width: 100%;
}
.ellipsis-container p {
  font-size: 14px;
  height: 58.8px;
  line-height: 1.4;
  position: relative;
}
.ellipsis-container p:before,
.ellipsis-container p:after {
  background: #eee;
  position: absolute;
}
.ellipsis-container p:before {
  content: "...";
  top: 39.2px;
  right: 0;
}
.ellipsis-container p:after {
  content: "";
  height: 100%;
  width: 100%;
}
/* 【複数行にも対応】長過ぎる文字列を省略して末尾を三点リーダー */
.col-xs-1-5,
.col-sm-1-5,
.col-md-1-5,
.col-lg-1-5,
.col-xs-2-5,
.col-sm-2-5,
.col-md-2-5,
.col-lg-2-5,
.col-xs-3-5,
.col-sm-3-5,
.col-md-3-5,
.col-lg-3-5,
.col-xs-4-5,
.col-sm-4-5,
.col-md-4-5,
.col-lg-4-5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1-5 {
  width: 20%;
  float: left;
}
.col-xs-2-5 {
  width: 40%;
  float: left;
}
.col-xs-3-5 {
  width: 60%;
  float: left;
}
.col-xs-4-5 {
  width: 80%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
  .col-sm-2-5 {
    width: 40%;
    float: left;
  }
  .col-sm-3-5 {
    width: 60%;
    float: left;
  }
  .col-sm-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 1102px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
  .col-md-2-5 {
    width: 40%;
    float: left;
  }
  .col-md-3-5 {
    width: 60%;
    float: left;
  }
  .col-md-4-5 {
    width: 80%;
    float: left;
  }
}
/*@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20%;
        float: left;
    }
    .col-lg-2-5 {
        width: 40%;
        float: left;
    }
    .col-lg-3-5 {
        width: 60%;
        float: left;
    }
    .col-lg-4-5 {
        width: 80%;
        float: left;
    }
}   */
.furueru {
  animation: rumble 0.25s linear infinite;
}
@keyframes rumble {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  12.5% {
    transform: rotate(0.4deg) translate(1px, -1px);
  }
  25% {
    transform: rotate(0.8deg) translate(0px, 1px);
  }
  37.5% {
    transform: rotate(0.4deg) translate(-1px, 0);
  }
  50% {
    transform: rotate(0deg) translate(0, 0);
  }
  62.5% {
    transform: rotate(-0.4deg) translate(1px, 0);
  }
  75% {
    transform: rotate(-0.8deg) translate(0, 1px);
  }
  87.5% {
    transform: rotate(-0.4deg) translate(-1px, -1px);
  }
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}
.scale-blur {
  -moz-transition: -moz-transform 0.1s linear;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  -webkit-transform: scale(0.91);
  -moz-transform: scale(0.91);
  transform: scale(0.91);
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]:after {
  content: attr(data-tooltip);
  position: absolute;
  display: block;
  left: 0px;
  padding: 4px 7px;
  background-color: #1B1C80;
  border-radius: 4px;
  color: #eee;
  white-space: nowrap;
  z-index: 9999;
  transition: 222ms;
  opacity: 0;
  bottom: 0em;
}
[data-tooltip]:hover:after {
  transition-delay: 222ms;
  opacity: 1;
  bottom: -1em;
}
.ie8 [data-tooltip]:after,
.ie8 [data-tooltip]:hover:after {
  visibility: hidden;
}
.clear hr {
  display: none;
}
/* Goto top */
#goto-top {
  position: fixed;
  bottom: 19px;
  right: 1px;
  z-index: 999;
  width: 48px;
  height: 48px;
  margin: 0;
  opacity: 0.65;
  cursor: pointer;
  background: transparent url(/img-new/up-arrow.png) no-repeat center center;
  border-top-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topright: 0px;
  border-bottom-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  /*-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s;*/
}
#goto-top:hover {
  opacity: 0.9;
}
/* 定義部分----------------------------------------------- */
.a_borad {
  border-radius: 9px;
}
.a_fl_R {
  float: right;
}
.a_fl_L {
  float: left;
}
.a_Tcenter {
  text-align: center;
}
.a_TRight {
  text-align: right !important;
}
.a_TLeft {
  text-align: left !important;
}
.a_hidden {
  display: none;
}
.a_visi-hidden {
  visibility: hidden;
}
.a_disp_none {
  display: none;
}
.a_disp_inline,
.inline-block,
.a_ilb {
  display: inline-block;
}
.a_opace0 {
  opacity: 0;
}
.a_prelative {
  position: relative;
}
.a_mar00auto {
  margin: 0px auto;
}
/*ブロック要素にリンク追加*/
.linkbox,
.linkbox2 {
  cursor: pointer;
}
.aa_baselink {
  display: none;
}
/* ------------------------------------------------------------
  Clearfix
------------------------------------------------------------ */
/* new clearfix */
.clf:before,
.clf:after {
  content: "";
  display: table;
}
.clf:after {
  clear: both;
}
/* For IE 6/7 (hasL) */
.clf {
  zoom: 1;
}
/* DW clearfix表示 */
/**/
/* ------------------------------------------------------------
    99. Clearfix
------------------------------------------------------------ */
.clear {
  clear: both;
  line-height: 0;
}
/*-----------------------------------------------------------
 フォントサイズの指定はYUI Fontsに基づき
 下記テーブルで指定します
 |px|%|
 |10|77|
 |11|85|
 |12|93|
 |13|100|
 |14|108|
 |15|116|
 |16|123.1|
 |17|131|
 |18|138.5|
 |19|146.5|
 |20|153.9|
 |21|161.6|
 |22|167|
 |23|174|
 |24|182|
 |25|189|
 |26|197|
 ex) 12px
 element {font-size: 93%;}
 ------------------------------------------------------------*/
.ft09 {
  font-size: 79%;
}
.ft10 {
  font-size: 87%;
}
.ft11 {
  font-size: 95%;
}
.ft12 {
  font-size: 103%;
}
.ft13 {
  font-size: 110%;
}
.ft14 {
  font-size: 118%;
}
.ft15 {
  font-size: 126%;
}
.ft16 {
  font-size: 133.1%;
}
.ft17 {
  font-size: 141%;
}
.ft18 {
  font-size: 148.5%;
}
.ft19 {
  font-size: 156.5%;
}
.ft20 {
  font-size: 163.9%;
}
.ft21 {
  font-size: 171.6%;
}
.ft22 {
  font-size: 177%;
}
.ft23 {
  font-size: 184%;
}
.ft24 {
  font-size: 192%;
}
.ft25 {
  font-size: 199%;
}
.ft26 {
  font-size: 207%;
}
.ft27 {
  font-size: 215%;
}
.ft28 {
  font-size: 224%;
}
.ft29 {
  font-size: 232%;
}
.ft30 {
  font-size: 240%;
}
/* padding系-----------------------*/
.b_LH1 {
  line-height: 1.1em;
}
.b_LH2 {
  line-height: 1.3em;
}
.b_LH3 {
  line-height: 1.8em;
}
.b_LH4 {
  line-height: 2.1em;
}
.b_pad20 {
  padding: 20px;
}
.b_pad15 {
  padding: 15px;
}
.b_pad10 {
  padding: 10px;
}
.b_pad5 {
  padding: 5px;
}
.b_padB5 {
  padding: 0px 0px 5px 0px;
}
.b_padT5 {
  padding-top: 5px;
}
.b_padB10 {
  padding: 0px 0px 10px 0px;
}
.b_padB20 {
  padding: 0px 0px 20px 0px;
}
.b_padLT5 {
  padding: 5px 0px 0px 5px;
}
.b_padT10 {
  padding-top: 10px;
}
.b_padT20 {
  padding-top: 20px;
}
.b_padTB5 {
  padding: 5px 0px;
}
.b_padTB10 {
  padding: 10px 0px 10px 0px;
}
.b_padTB20 {
  padding: 20px 0px 20px 0px;
}
.b_padTB50 {
  padding: 50px 0px 50px 0px;
}
.b_padTB30 {
  padding: 30px 0px 30px 0px;
}
.b_padL20 {
  padding: 0px 0px 0px 20px;
}
.b_padR5 {
  padding-right: 5px;
}
.b_padL5 {
  padding-left: 5px;
}
.b_padL10 {
  padding-left: 10px;
}
.b_padLR5 {
  padding-right: 5px;
  padding-left: 5px;
}
.b_padLR10 {
  padding-right: 10px;
  padding-left: 10px;
}
.b_padLR15 {
  padding-right: 15px;
  padding-left: 15px;
}
.b_padLR20 {
  padding-right: 20px;
  padding-left: 20px;
}
.b_padLR30 {
  padding-right: 30px;
  padding-left: 30px;
}
.b_mar5 {
  margin: 5px;
}
.b_marL5 {
  margin-left: 5px;
}
.b_marR5 {
  margin-right: 5px;
}
.b_marLR15 {
  margin: 0px 15px 0px 15px;
}
.b_marB0 {
  margin-bottom: 0;
}
.b_marT0 {
  margin-top: 0 !important;
}
.b_marT5 {
  margin-top: 5px;
}
.b_marB15 {
  margin-bottom: 15px !important;
}
.b_marTB10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/*text colour*/
.px_fff {
  color: #fff !important;
  text-shadow: 1px 1px 1px #666;
}
.px_fff_shadcha {
  color: #fff !important;
  text-shadow: 1px 1px 1px #766142;
}
.px_uspink {
  color: #906 !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_ao {
  color: #388ED4 !important;
  font-weight: bold;
  /*text-shadow: 1px 1px 1px #ccc;*/
}
.px_aomid {
  color: #099 !important;
  text-shadow: 1px 1px 1px #fff !important;
}
.px_mizu {
  color: #679fce !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_midr {
  color: #394b96 !important;
  text-shadow: 1px 1px 1px #fff !important;
}
.px_666 {
  color: #666 !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_org {
  color: #e56b0d !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_aka {
  color: #D9330B !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_pink {
  color: #c50045 !important;
  text-shadow: 1px 1px 1px #fff;
}
.px_cha {
  color: #630 !important;
  text-shadow: 1px 1px 1px #e7e7e7;
}
.px_ki {
  color: #e6e321 !important;
}
.px_bold {
  font-weight: bold !important;
}
.px_pink2 {
  color: #D9330B !important;
  text-shadow: 1px 1px 1px #fff !important;
}
/* 定義部分----------------------------------------------- */
a {
  text-decoration: none;
}
a:link {
  color: #003194;
}
ul#nav a:link {
  color: #205f7e;
}
a:visited {
  color: #4f5c8d;
}
ul#nav a:visited {
  color: #205f7e;
}
a:hover,
a:focus,
a:active {
  text-decoration: underline;
}
/* hover Opacity */
.opace70 {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.gothic {
  font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.maru-goth {
  font-family: "Hiragino Maru Gothic Pro", "HG丸ゴシックM-PRO", verdana, arial, sans-serif;
}
.uline {
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, #ffff88 0%);
}
.uline2 {
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, #ffe1f3 0%);
}
/* ------------------------------------------------------------
  box-sizing
------------------------------------------------------------ */
.borderbox {
  -webkit-box-sizing: border-box;
  /* Safari,Google Chrome用 */
  -moz-box-sizing: border-box;
  /* Firefox用 */
  -ms-box-sizing: border-box;
  /* Internet Explorer 8用 */
  box-sizing: border-box;
  /* Opera用 */
}
.boxShadow {
  -ms-box-shadow: 2px 2px 7px #5a5a5a;
  -moz-box-shadow: 2px 2px 7px #5a5a5a;
  -webkit-box-shadow: 2px 2px 7px #5a5a5a;
  box-shadow: 2px 2px 7px #5a5a5a;
}
.imgBoxShadow {
  -ms-box-shadow: 0 0 5px #b7b09d;
  -moz-box-shadow: 0 0 5px #b7b09d;
  -webkit-box-shadow: 0 0 5px #b7b09d;
  box-shadow: 0 0 5px #b7b09d;
}
* {
  -webkit-box-sizing: border-box;
  /* Safari,Google Chrome用 */
  -moz-box-sizing: border-box;
  /* Firefox用 */
  -ms-box-sizing: border-box;
  /* Internet Explorer 8用 */
  box-sizing: border-box;
  /* Opera用 */
}
._android {
  background-color: #fff;
  background-image: url(/img-new/_androidDummy.gif);
}
img {
  border: none;
  display: block;
}
img:not(.icon_shosai) {
  height: auto;
}
.rotMinus {
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.rotPlus {
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}
.mainGrad1 {
  background: #f5f5f5;
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(77%, #f5f5f5), color-stop(95%, #eaeaea), color-stop(100%, #dadada));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
}
.mainGrad1Rev {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
}
.mainGrad2 {
  background: #FBFBFB;
  background: -moz-linear-gradient(top, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(50%, #FBFBFB), color-stop(95%, #F8F8F8), color-stop(100%, #F5F5F5));
  background: -webkit-linear-gradient(top, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
  background: linear-gradient(to bottom, #FFFFFF 0%, #FBFBFB 50%, #F8F8F8 95%, #F5F5F5 100%);
}
.mainGrad3 {
  background: #192C7B;
  background: -moz-linear-gradient(top, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2E40A5), color-stop(50%, #192C7B), color-stop(95%, #102469), color-stop(100%, #061A53));
  background: -webkit-linear-gradient(top, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
  background: linear-gradient(to bottom, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
}
.mainGrad4 {
  background: #D9330B;
  background: -moz-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4481e), color-stop(50%, #D9330B), color-stop(95%, #c12d0a), color-stop(100%, #a42608));
  background: -webkit-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: linear-gradient(to bottom, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
}
.mainGrad5 {
  background: #FFE275;
  background: -moz-linear-gradient(top, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF799), color-stop(50%, #FFE275), color-stop(95%, #FFD35C), color-stop(100%, #FFCC50));
  background: -webkit-linear-gradient(top, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
  background: linear-gradient(to bottom, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
}
.mainGrad6 {
  background: #dafcff;
  background: -moz-linear-gradient(top, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #daffef), color-stop(50%, #dafcff), color-stop(95%, #d0e9ec), color-stop(100%, #c9ebfe));
  background: -webkit-linear-gradient(top, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
  background: linear-gradient(to bottom, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
}
.mainGrad7 {
  background: #1e7412;
  background: -moz-linear-gradient(top, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1f8827), color-stop(50%, #1e7412), color-stop(95%, #175c10), color-stop(100%, #1e7412));
  background: -webkit-linear-gradient(top, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
  background: linear-gradient(to bottom, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
}
.mainGrad8 {
  background: #ee9904;
  background: -moz-linear-gradient(top, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff9f0e), color-stop(50%, #ee9904), color-stop(95%, #dd7d03), color-stop(100%, #c57303));
  background: -webkit-linear-gradient(top, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
  background: linear-gradient(to bottom, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
}
.mainGrad9 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eab92d+0,f5d205+10,eab92d+40,f5d205+60,f5d205+66,eab92d+85,c79810+99 */
  background: #eab92d;
  /* Old browsers */
  background: -moz-linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.mainGrad10 {
  background: #eab92d;
  /* Old browsers */
  background: -moz-linear-gradient(11deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #ffe446 66%, #eab92d 85%, #c79810 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(11deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #ffe446 66%, #eab92d 85%, #c79810 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(11deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #ffe446 66%, #eab92d 85%, #c79810 99%);
}
.mainGrad11 {
  background: #ede871;
  background: -moz-linear-gradient(top, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f4e0), color-stop(33%, #ede871), color-stop(77%, #e6e321), color-stop(100%, #d4c907));
  background: -webkit-linear-gradient(top, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
  background: linear-gradient(to bottom, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
}
.gradient-icon {
  background: #ede871;
  background: -moz-linear-gradient(top, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f4e0), color-stop(33%, #ede871), color-stop(77%, #e6e321), color-stop(100%, #d4c907));
  background: -webkit-linear-gradient(top, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
  background: linear-gradient(to bottom, #f8f4e0 0%, #ede871 33%, #e6e321 77%, #d4c907 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: initial;
}
.ie .gradient-icon,
.ie11 .gradient-icon {
  background: none;
  color: #ede871;
}
.gradient-icon2 {
  background: #9acddc;
  background: -moz-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9acddc) color-stop(100%, #6cbece));
  background: -webkit-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: linear-gradient(to bottom, #9acddc 0%, #6cbece 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: initial;
}
.ie .gradient-icon2,
.ie11 .gradient-icon2 {
  background: none;
  color: #6bb9ce;
}
.mainGrad12 {
  background: #9acddc;
  background: -moz-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9acddc) color-stop(100%, #6cbece));
  background: -webkit-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: linear-gradient(to bottom, #9acddc 0%, #6cbece 100%);
}
.mainGrad13 {
  background: #fce3f1;
  background: -moz-linear-gradient(top, #fff 0%, #fce3f1 50%, #ffecfe 95%, #ffcdf5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(50%, #fce3f1), color-stop(95%, #ffecfe), color-stop(100%, #ffcdf5));
  background: -webkit-linear-gradient(top, #fff 0%, #fce3f1 50%, #ffecfe 95%, #ffcdf5 100%);
  background: linear-gradient(to bottom, #fff 0%, #fce3f1 50%, #ffecfe 95%, #ffcdf5 100%);
}
hr {
  clear: both;
  border: none;
  height: 1px;
  border-top: 1px solid #E7E7E7;
  margin: 1em auto;
}
hr.dot {
  border-top: 1px dotted #bababa;
}
hr.b {
  border-top: 1px solid #1B1C80;
}
a.main-button {
  min-height: 55px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #E7E7E7;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
  background: #f5f5f5;
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(77%, #f5f5f5), color-stop(95%, #eaeaea), color-stop(100%, #dadada));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 77%, #eaeaea 95%, #dadada 100%);
}
a.main-button:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button > span {
  display: inline-block;
  min-height: 49px;
  font-size: 20px;
  text-shadow: 1px 1px 1px #fff;
  padding: 9px 7px 6px 48px;
  margin: 2px;
  border-bottom: 3px solid #3399CC;
}
a.main-button > span:hover {
  border-color: #D9330B;
}
a.main-button > span.icon {
  background: url(/img-new/main-button-img_s01.png) no-repeat 5px 5px;
}
.main-button.maru {
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-top-right-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-left-radius: 25px;
  -webkit-border-bottom-right-radius: 25px;
  -moz-border-radius-bottomright: 25px;
  border-bottom-right-radius: 25px;
}
.main-button.maru > span.icon {
  padding: 9px 13px 6px 48px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topright: 25px;
  border-top-right-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-left-radius: 25px;
  -webkit-border-bottom-right-radius: 25px;
  -moz-border-radius-bottomright: 25px;
  border-bottom-right-radius: 25px;
}
/* fixme お問い合わせ・お申込ボタン */
a.main-button.otoiawase {
  background: #9acddc;
  background: -moz-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9acddc) color-stop(100%, #6cbece));
  background: -webkit-linear-gradient(top, #9acddc 0%, #6cbece 100%);
  background: linear-gradient(to bottom, #9acddc 0%, #6cbece 100%);
  color: #fff;
  font-weight: bold;
  -webkit-border-top-left-radius: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topright: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-left-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  border-bottom-right-radius: 15px;
}
a.main-button.otoiawase:visited {
  color: #fff;
}
a.main-button.otoiawase > span.icon {
  background: url(/img-new/main-button-img_s03.png) no-repeat 5px 7px;
}
a.main-button.otoiawase > span {
  padding: 9px 13px 6px 48px;
  text-shadow: 1px 1px 1px #779bb8;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-border-top-left-radius: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topright: 15px;
  border-top-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-left-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  border-bottom-right-radius: 15px;
}
a.main-button.otoiawase:hover {
  color: #fff;
  border: none;
  background: #D9330B;
  background: -moz-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4481e), color-stop(50%, #D9330B), color-stop(95%, #c12d0a), color-stop(100%, #a42608));
  background: -webkit-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: linear-gradient(to bottom, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
}
a.main-button.otoiawase:hover > span {
  text-shadow: 1px 1px 1px #7f1d0a;
  border-top: 2px solid #b02e18;
  border-left: 1px solid #b02e18;
  border-right: 1px solid #922614;
  border-bottom: 2px solid #922614;
}
a.main-button.otoiawase:hover > span.icon:hover {
  background: url(/img-new/main-button-img_s03.png) no-repeat 5px 7px;
}
a.main-button.blue {
  background: #192C7B;
  background: -moz-linear-gradient(top, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2E40A5), color-stop(50%, #192C7B), color-stop(95%, #102469), color-stop(100%, #061A53));
  background: -webkit-linear-gradient(top, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
  background: linear-gradient(to bottom, #2E40A5 0%, #192C7B 50%, #102469 95%, #061A53 100%);
}
a.main-button.blue:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button.blue > span {
  color: #fff;
  text-shadow: 1px 1px 1px #515151;
  border-bottom: 3px solid #D9330B;
}
a.main-button.blue > span:hover {
  color: #1B1C80;
  text-shadow: 1px 1px 1px #E7E7E7;
}
a.main-button.blue > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
input.main-button.red,
a.main-button.red {
  background: #D9330B;
  background: -moz-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4481e), color-stop(50%, #D9330B), color-stop(95%, #c12d0a), color-stop(100%, #a42608));
  background: -webkit-linear-gradient(top, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
  background: linear-gradient(to bottom, #f4481e 0%, #D9330B 50%, #c12d0a 95%, #a42608 100%);
}
input.main-button.red:hover,
a.main-button.red:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
input.main-button.red > span,
a.main-button.red > span {
  color: #fff;
  text-shadow: 1px 1px 1px #515151;
  border-bottom: 3px solid #1B1C80;
}
input.main-button.red > span:hover,
a.main-button.red > span:hover {
  color: #1B1C80;
  text-shadow: 1px 1px 1px #E7E7E7;
}
input.main-button.red > span.icon,
a.main-button.red > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
a.main-button.green {
  background: #1e7412;
  background: -moz-linear-gradient(top, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1f8827), color-stop(50%, #1e7412), color-stop(95%, #175c10), color-stop(100%, #1e7412));
  background: -webkit-linear-gradient(top, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
  background: linear-gradient(to bottom, #1f8827 0%, #1e7412 50%, #175c10 95%, #1e7412 100%);
}
a.main-button.green:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button.green > span {
  color: #fff;
  text-shadow: 1px 1px 1px #515151;
  border-bottom: 3px solid #1B1C80;
}
a.main-button.green > span:hover {
  color: #1B1C80;
  text-shadow: 1px 1px 1px #E7E7E7;
}
a.main-button.green > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
a.main-button.orange {
  background: #ee9904;
  background: -moz-linear-gradient(top, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff9f0e), color-stop(50%, #ee9904), color-stop(95%, #dd7d03), color-stop(100%, #c57303));
  background: -webkit-linear-gradient(top, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
  background: linear-gradient(to bottom, #ff9f0e 0%, #ee9904 50%, #dd7d03 95%, #c57303 100%);
}
a.main-button.orange:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button.orange > span {
  color: #fff;
  text-shadow: 1px 1px 1px #515151;
  border-bottom: 3px solid #1B1C80;
}
a.main-button.orange > span:hover {
  color: #1B1C80;
  text-shadow: 1px 1px 1px #E7E7E7;
}
a.main-button.orange > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
a.main-button.yellow {
  background: #FFE275;
  background: -moz-linear-gradient(top, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF799), color-stop(50%, #FFE275), color-stop(95%, #FFD35C), color-stop(100%, #FFCC50));
  background: -webkit-linear-gradient(top, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
  background: linear-gradient(to bottom, #FFF799 0%, #FFE275 50%, #FFD35C 95%, #FFCC50 100%);
}
a.main-button.yellow:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button.yellow > span {
  color: #1B1C80;
  text-shadow: 1px 1px 1px #fff;
  border-bottom: 3px solid #3399CC;
}
a.main-button.yellow > span:hover {
  border-color: #D9330B;
}
a.main-button.yellow > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
a.main-button.sky {
  background: #dafcff;
  background: -moz-linear-gradient(top, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #daffef), color-stop(50%, #dafcff), color-stop(95%, #d0e9ec), color-stop(100%, #c9ebfe));
  background: -webkit-linear-gradient(top, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
  background: linear-gradient(to bottom, #daffef 0%, #dafcff 50%, #d0e9ec 95%, #c9ebfe 100%);
}
a.main-button.sky:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
a.main-button.sky > span {
  text-shadow: 1px 1px 1px #fff;
  border-bottom: 3px solid #1B1C80;
}
a.main-button.sky > span:hover {
  border-color: #D9330B;
}
a.main-button.sky > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
input.main-button.gold,
a.main-button.gold {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eab92d+0,f5d205+10,eab92d+40,f5d205+60,f5d205+66,eab92d+85,c79810+99 */
  background: #eab92d;
  /* Old browsers */
  background: -moz-linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(7deg, #eab92d 0%, #f5d205 10%, #eab92d 40%, #f5d205 60%, #f5d205 66%, #eab92d 85%, #c79810 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
input.main-button.gold:hover,
a.main-button.gold:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(55%, #ffffff), color-stop(95%, #f5f5f5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  background: linear-gradient(to bottom, #EAEAEA 0%, #ffffff 55%, #f5f5f5 95%, #ffffff 100%);
  border-color: #1B1C80;
}
input.main-button.gold > span,
a.main-button.gold > span {
  text-shadow: 1px 1px 1px #fff;
  border-bottom: 3px solid #1B1C80;
}
input.main-button.gold > span:hover,
a.main-button.gold > span:hover {
  border-color: #D9330B;
}
input.main-button.gold > span.icon,
a.main-button.gold > span.icon {
  background: url(/img-new/main-button-img_s02.png) no-repeat 5px 5px;
}
input.main-button.red,
input.main-button.gold {
  text-shadow: 1px 1px 1px #fff;
  border-bottom: 3px solid #1B1C80;
  display: inline-block;
  min-height: 49px;
  font-size: 20px;
  padding: 9px 7px 6px;
  margin: 2px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
/* { sw page do it----------------------------------------------- */
#container h3 > span {
  border-color: #D9330B;
}
/* Assy----------------------------------------------- */
.buttonAssy {
  position: relative;
  width: 375px;
  min-height: 55px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  line-height: 2em;
  cursor: pointer;
  padding: 0.44em 55px 0.42em 10px;
}
.buttonAssy:link {
  color: #fff;
}
input.sbutton {
  position: relative;
  width: 375px;
  min-height: 55px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  line-height: 2em;
  cursor: pointer;
  padding: 0.44em 55px 0.42em 10px;
  background-color: #3399CC;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid #1B1C80;
  padding: 0.44em 10px 0.42em 10px;
  margin: 1em 0;
}
input.sbutton:link {
  color: #fff;
}
input.sbutton:hover,
input.sbutton:focus {
  background-color: #1B1C80;
  text-decoration: underline;
}
input.sbutton.b {
  background-color: #8B8D8E;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid #1B1C80;
}
input.sbutton.b:hover,
input.sbutton.b:focus {
  background-color: #1B1C80;
}
#newlContent.newform {
  font-size: 90%;
}
#newlContent.newform h2 {
  margin-bottom: 1em;
}
#newlContent.newform .lContentText > table {
  box-shadow: none;
}
#newlContent.newform .green_12px {
  color: green;
}
#newlContent.newform input {
  margin: 0 3px 1px;
}
#newlContent.newform input[type="checkbox"] {
  font-size: 3em;
  margin-right: 7px;
}
#newlContent.newform input[type="radio"] {
  font-size: 3em;
  margin-right: 3px;
}
/* sw ここからスマホ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 定義部分----------------------------------------------- */
/*# sourceMappingURL=old-style.css.map */