﻿@charset "UTF-8";
/* ----------------------------

	FileName : style.css

---------------------------- */
/*------------------------------------------------------------
2カラム表示
------------------------------------------------------------*/
/*div.column02:after {
  content: "";
  display: block;
  clear: both;
}
div.column02 section {
  float: left;
  width: 49.5%;
  margin: 0 1% 10px 0;
  padding-bottom: 0;
}
div.column02 section:nth-child(2n) {
  margin-right: 0;
}
div.column02 section > *:last-child {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 768px) {
  div.column02 section {
    float: none;
    width: 100%;
    height: auto !important;
    margin: 0 0 20px;
    padding-bottom: 20px;
  }
  div.column02 section > *:last-child {
    margin-bottom: 0 !important;
  }
}*/
.flex-container {
    display: flex; /* フレックスコンテナを作成 */
    /*flex-wrap: wrap;*/ /* フレックスアイテムを複数行にする */
    padding: 0px;
    background: none;
    border: none;
}

.flex-section {
    flex: 0 0 49.5%; /* 幅を49.5%に設定 */
    margin: 0 1% 10px 0;
}

    .flex-section:nth-child(2n) {
        margin-right: 0;
    }

    .flex-section > *:last-child {
        margin-bottom: 20px !important;
    }

@media only screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column; /* スマホでは縦並びに変更 */
        order:1;
    }

    .flex-section {
        flex: 0 0 100%; /* 幅を100%に設定して縦並びに */
        margin: 0 0 20px;
    }

        .flex-section > *:last-child {
            margin-bottom: 0 !important;
        }
}


/*------------------------------------------------------------
section全般
------------------------------------------------------------*/
section {
  border-top: 1px solid #348615;
  background: #fff;
  margin: 0 0 0.8em;
  padding: 0 20px 20px;
  border: 1px solid #ece7ef;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  section {
    padding: 0 12px 20px;
  }
  section > *:last-child {
    margin-bottom: 0 !important;
  }
}
section h1 {
  display: block;
  margin: 0 -20px 0.7em;
  padding: 13px 5px 13px 50px;
  border-bottom: 1px solid #348615;
  line-height: 1.2;
  position: relative;
  color: #292929;
  font-weight: bold;
  font-size: 161.53846%;
}
section h1:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  section h1 {
    margin: 0 -12px 0.7em;
    padding: 12px 5px 11px 50px;
    font-size: 176.92308%;
    line-height: 1.1;
    border-bottom: 2px solid #348615;
  }
  section h1:before {
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
section h1.noIcon {
  padding: 13px 15px 13px 36px;
}
section h1.noIcon:after, section h1.noIcon:before {
  display: none;
}
section h1.noIcon:before {
  content: "";
  display: block;
  width: 4px;
  height: 32px;
  left: 20px;
        background: #E4F6DE;
    }
@media only screen and (max-width: 768px) {
  section h1.noIcon {
    padding: 20px 5px 18px 22px;
  }
  section h1.noIcon:before {
    left: 10px;
    width: 4px;
  }
}
section h1.about:before {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url('../img/common/icon_about.png') no-repeat;
  background-size: 38px 38px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.faq {
  padding-left: 60px;
}
section h1.faq:before {
  display: inline-block;
  width: 38px;
  height: 26px;
  background: url('../img/common/icon_faqresult.png') no-repeat;
  background-size: 38px 26px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.topics:before {
  display: inline-block;
  width: 31px;
  height: 33px;
  background: url('../img/common/icon_topics.png') no-repeat;
  background-size: 31px 33px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.life:before {
  display: inline-block;
  width: 27px;
  height: 35px;
  background: url('../img/common/icon_life.png') no-repeat;
  background-size: 27px 35px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.access:before {
  display: inline-block;
  width: 31px;
  height: 34px;
  background: url('../img/common/icon_access.png') no-repeat;
  background-size: 31px 34px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.admin:before {
  display: inline-block;
  width: 34px;
  height: 22px;
  background: url('../img/common/icon_admin.png') no-repeat;
  background-size: 34px 22px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.result:before {
  display: inline-block;
  width: 54px;
  height: 54px;
  background: url('../img/common/icon_result.png') no-repeat;
  background-size: 54px 54px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.question:before {
  display: inline-block;
  width: 54px;
  height: 54px;
  background: url('../img/common/icon_question.png') no-repeat;
  background-size: 54px 54px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section h1.mail:before {
  display: inline-block;
  width: 30px;
  height: 25px;
  background: url('../img/common/icon_mail02.png') no-repeat;
  background-size: 30px 25px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  section h1.about:before {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url('../img/commonSp/icon_about.png') no-repeat;
    background-size: 35px 35px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.faq:before {
    display: inline-block;
    width: 35px;
    height: 24px;
    background: url('../img/commonSp/icon_faqresult.png') no-repeat;
    background-size: 35px 24px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.topics:before {
    display: inline-block;
    width: 29.5px;
    height: 30px;
    background: url('../img/commonSp/icon_topics.png') no-repeat;
    background-size: 29.5px 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.life:before {
    display: inline-block;
    width: 27.5px;
    height: 35px;
    background: url('../img/commonSp/icon_life.png') no-repeat;
    background-size: 27.5px 35px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.access:before {
    display: inline-block;
    width: 29px;
    height: 32px;
    background: url('../img/commonSp/icon_access.png') no-repeat;
    background-size: 29px 32px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.admin:before {
    display: inline-block;
    width: 34px;
    height: 22px;
    background: url('../img/commonSp/icon_admin.png') no-repeat;
    background-size: 34px 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.result:before {
    display: inline-block;
    width: 58px;
    height: 58px;
    background: url('../img/commonSp/icon_result.png') no-repeat;
    background-size: 58px 58px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.question:before {
    display: inline-block;
    width: 58px;
    height: 58px;
    background: url('../img/commonSp/icon_question.png') no-repeat;
    background-size: 58px 58px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section h1.mail {
    padding-left: 60px;
  }
  section h1.mail:before {
    display: inline-block;
    width: 36.5px;
    height: 30.5px;
    background: url('../img/commonSp/icon_mail02.png') no-repeat;
    background-size: 36.5px 30.5px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
section h1 a.rssBtn {
  position: absolute;
  right: 16px;
  top: 33%;
  display: inline-block;
  width: 49px;
  height: 19px;
  background: url('../img/common/rss.png') no-repeat;
  background-size: 49px 19px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
section h1 a.rssBtn:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
@media only screen and (max-width: 768px) {
  section h1 a.rssBtn {
    right: 8px;
    top: 26%;
    display: inline-block;
    width: 48.5px;
    height: 19px;
    background: url('../img/commonSp/rss.png') no-repeat;
    background-size: 48.5px 19px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
section h2 {
  margin: 0 0 15px;
  padding: 0 10px 8px 0;
  border-left: none;
  border-bottom: 2px solid #ece7ef;
  position: relative;
  line-height: 1.2;
  font-size: 184.61538%;
  font-weight: bold;
}
/*section h2:after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 2px;
  background: #348615;
  position: absolute;
  bottom: -2px;
  left: 0;
}
section h2.border {
  margin: 1.2em 0 0.6em;
  padding: 5px 0 7px 12px;
  border-bottom: 1px solid #348615;
  line-height: 1;
  color: #292929;
  font-weight: bold;
  font-size: 146.15385%;
}
section h2.border:after {
  width: 3px;
  height: 1.4em;
  left: 2px;
  top: 1px;
  bottom: auto;
}*/
@media only screen and (max-width: 768px) {
  section h2.border {
    font-size: 130.76923%;
    margin: 1em 0 0.5em;
    padding: 6px 0 6px 11px;
  }
}
@media only screen and (max-width: 768px) {
  section h2 {
    font-size: 146.15385%;
    padding: 0 0 5px 0;
    margin: 0 0 10px;
  }
}
section h3 {
  background: #DBF6D2;
  margin: 1.5em 0 0.9em;
  padding: 10px 10px 10px 15px;
  border-left: 3px solid #348615;
  line-height: 1;
  color: #292929;
  font-weight: bold;
  font-size: 130.76923%;
}
@media only screen and (max-width: 768px) {
  section h3 {
    font-size: 123.07692%;
  }
}
section p {
  margin: 1em 0 0.8em;
  line-height: 1.65;
}
@media only screen and (max-width: 768px) {
  section p {
    margin: 10px 0 6px;
  }
}
section em, section strong {
  display: inline;
  font-weight: bold;
}
section strong {
  color: #348615;
}
section ul[class] {
  margin: 0;
  padding: 0;
}
section ul[class] li {
  padding: 0;
}
section ul[class] li:before {
  display: none;
}
section ul.link li {
  margin: 0.7em 0 0.7em;
}
section ul.link a {
  padding: 0 0 0 25px;
  position: relative;
}
section ul.link a:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('../img/common/arrow_box.png') no-repeat;
  background-size: 15px 15px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section ul.link.column02:after {
  content: "";
  display: block;
  clear: both;
}
section ul.link.column02 li {
  float: left;
  width: 49%;
  margin: 0 2% 1em 0;
}
section ul.link.column02 li:nth-child(2n) {
  margin-right: 0;
}

section ul.link.column02 li a.index {
    cursor: pointer;
    font-size: 100%;
    margin: 0 0 5px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 25px;
}
section ul.link.column02 li a.index:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url('../img/common/icon_accordion_colse.png') no-repeat;
    background-size: 17px 17px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    left: 4px;
    top: 0;
}

section ul.link.column02 li a.index.active:before {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('../img/common/icon_accordion_open.png') no-repeat;
  background-size: 17px 17px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
section ul.link.column02 li ul {
  display: none;
  padding: 0;
}
section ul.link.column02 li ul li {
  margin: 0;
  border: 1px solid #fff;
  width: 100%;
  float: none;
  position: relative;
}
section ul.link.column02 li ul li:last-child {
  margin: 0;
}
section ul.link.column02 li ul li a {
  display: block;
  padding: 0.7em 5px 0.7em 21px;
  position: relative;
  font-size: 92.30769%;
  background: #f6f4f6;
  line-height: 1;
}
section ul.link.column02 li ul li a:hover {
  background: #fff;
}
section ul.link.column02 li ul li a:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 10px;
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url('../img/common/arrow_small.png') no-repeat;
  background-size: 5px 8px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 5px;
  height: 8px;
}
section ul.link.column02 li ul li a.rssBtn {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 6px;
  padding: 3px 8px;
  color: #C65402;
  border: 1px solid #C65402;
  background: #fff;
  text-decoration: none;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 69.23077%;
}
@media only screen and (max-width: 768px) {
  section ul.link:after {
    content: "";
    display: block;
    clear: both;
  }
  section ul.link li {
    float: left;
    width: 100%;
    margin: 0 0 2% 0;
  }
  section ul.link a {
    display: block;
    padding: 10px 18px 10px 8px;
  }
  section ul.link a:before {
    right: 6px;
    left: auto;
    top: 40%;
    display: inline-block;
    width: 12.5px;
    height: 4px;
    background: url('../img/commonSp/arrow.png') no-repeat;
    background-size: 12.5px 4px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
    section ul.link.column02 li {
    border-bottom: 1px solid #ece7ef;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  section ul.link.column02 li:last-child {
    margin: 0;
  }
  section ul.link.column02 li a.index {
    font-size: 107.69231%;
    margin: 0;
    padding: 12px 25px 12px 0;
    line-height: 1.3;
  }
  section ul.link.column02 li a.index:before {
    display: inline-block;
    width: 17.5px;
    height: 17px;
    background: url('../img/commonSp/icon_accordion_colse.png') no-repeat;
    background-size: 17.5px 17px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    left: auto;
    right: 2px;
    top: 28%;
  }
  section ul.link.column02 li a.index.active:before {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url('../img/commonSp/icon_accordion_open.png') no-repeat;
    background-size: 17px 17px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  section ul.link.column02 li ul li {
    border: 1px solid #fff;
  }
  section ul.link.column02 li ul li a {
    display: block;
    padding: 12px 25px 12px 12px;
    background: #f6f4f6;
    font-size: 100%;
  }
  section ul.link.column02 li ul li a:before {
    left: auto;
    right: 8px;
    top: 14px;
    display: inline-block;
    width: 5px;
    height: 8px;
    background: url('../img/commonSp/arrow_small.png') no-repeat;
    background-size: 5px 8px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 5px;
    height: 8px;
  }

  section ul.link.column02 li:nth-child(2n) {
    margin-right: 0;
  }
  section ul.link.column02 li:nth-of-type(2n+1) {
    clear: both;
  }
}

section ol, section ul {
  margin: 15px 0;
  padding: 0 0 0 4px;
}
section ol > li, section ul > li {
  position: relative;
  margin: 7px 0;
  padding: 0 0 0 15px;
  line-height: 1.4;
}
section ol > li ul, section ul > li ul {
  margin: 5px 0 10px;
}
section ol > li ul li, section ul > li ul li {
  font-size: 100%;
  margin: 3px 0;
  padding: 0 0 0 13px;
}
section ol > li ol, section ul > li ol {
  margin: 6px 0 10px;
}
section ol > li ol li, section ul > li ol li {
  font-size: 100%;
  margin: 6px 0;
  padding: 0 0 0 20px;
}
section ol > li .link, section ul > li .link {
  margin: 0 0 0.3em;
}
section ol.notes, section ul.notes {
  margin-top: -5px;
}
section ol.notes li, section ul.notes li {
  text-indent: -1.2em;
  padding-left: 1.2em !important;
  font-size: 92.30769%;
  margin: 0 0 5px;
}
section ol.notes li:before, section ul.notes li:before {
  display: none;
}
section ol.notes li ul li, section ol.notes li ol li, section ul.notes li ul li, section ul.notes li ol li {
  margin: 0 0 5px;
}
section ol.notesSP, section ul.notesSP {
  margin-top: -5px;
}
section ol.notesSP li, section ul.notesSP li {
  text-indent: -1.2em;
  padding-left: 1.2em !important;
  font-size: 92.30769%;
}
section ol.notesSP li:before, section ul.notesSP li:before {
  display: none;
}
section ol.notesSP li ul li, section ol.notesSP li ol li, section ul.notesSP li ul li, section ul.notesSP li ol li {
  margin: 0 0 5px;
}
section ol.notesSP li, section ul.notesSP li {
  text-indent: -1.2em;
  padding-left: 1.2em !important;
  font-size: 92.30769%;
  color: #d83a3a;
}
section ol.notesSP li:before, section ul.notesSP li:before {
  display: none;
}
section ol.notesSP li ul li, section ol.notesSP li ol li, section ul.notesSP li ul li, section ul.notesSP li ol li {
  margin: 0 0 5px;
}
section ol.none, section ul.none {
  padding-left: 0;
}
section ol.none li, section ul.none li {
  padding-left: 0;
}
section ol.none li:before, section ul.none li:before {
  display: none;
}
section ol.none li:before a, section ul.none li:before a {
  position: relative;
}
section ol.none li ul, section ul.none li ul {
  padding: 0 0 0 15px;
  font-size: 100%;
}
section ol.noteBig li, section ul.noteBig li {
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 0 0 1em;
}
section ol.noteBig li:last-child, section ul.noteBig li:last-child {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  section div.swipe {
    overflow-x: scroll;
    width: 100%;
    position: relative;
  }
  section div.swipe table {
    width: 600px;
  }
}
section div.swipe .swipe-icon {
  position: absolute;
  top: 120px;
  left: 50%;
  margin-left: -75px;
  margin-top: -75px;
  width: 150px;
  height: 150px;
  background: #333;
  text-align: center;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
section div.swipe .swipe-icon img {
  width: 91px;
  padding-top: 16px;
}
@media only screen and (min-width: 769px) {
  section div.swipe .swipe-icon {
    display: none;
  }
}

p.catch {
  color: #a40046;
  font-weight: bold;
  font-size: 107.69231%;
}

p.lead {
  font-size: 184.61538%;
  color: #0406A3;
  margin: 20px 0 12px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  p.lead {
    font-size: 153.84615%;
  }
}

p.leadSmall {
  font-size: 138.46154%;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  p.leadSmall {
    font-size: 123.07692%;
    line-height: 1.5;
  }
}

p.date {
  text-align: right;
  color: #0406A3;
  margin: -2px 0 8px;
}

.num {
  font-family: 'Roboto Condensed',"Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-weight: 400;
  /*font-size: 115.38462%;*/
}

.box {
  background: #E4F6DE;
  padding: 15px;
  margin: 0 0 20px;
}
.box *:first-child {
  margin-top: 0;
}
.box *:last-child {
  margin-bottom: 0;
}

.box02 {
  border: 5px solid #ece7ef;
  padding: 15px;
  margin: 0 0 20px;
}
.box02 *:first-child {
  margin-top: 0;
}
.box02 *:last-child {
  margin-bottom: 0;
}

.contactBox {
  border: 5px solid #E4F6DE;
  padding: 15px;
}
.contactBox dl {
  margin: 0 0 5px;
}
.contactBox dl dt {
  display: inline-block;
  padding: 3px 10px;
  min-width: 100px;
  text-align: center;
  background: #348615;
  color: #fff;
  font-size: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.contactBox dl dd {
  display: inline-block;
  font-size: 107.69231%;
}
.contactBox *:first-child {
  margin-top: 0;
}
.contactBox *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .contactBox {
    padding: 10px;
  }
  .contactBox dl dt {
    min-width: 60px;
    padding: 2px 5px;
    margin: 0 5px 0 0;
    font-size: 92.30769%;
  }
  .contactBox dl dd {
    font-size: 107.69231%;
  }
}

.btnArea {
  margin: 15px auto 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 500px;
}
.btnArea:after {
  content: "";
  display: block;
  clear: both;
}
.btnArea .btn {
  /*margin: 0 5px;*/
  text-align: center;
  margin: 15px auto 20px;
}
.btnArea .left {
  float: left;
}
.btnArea .right {
  float: right;
}
@media only screen and (max-width: 768px) {
  .btnArea {
    width: 100%;
    display: block;
  }
  .btnArea .btn {
    display: block;
    float: none;
    margin: 0 0 10px;
  }
}

.btn {
  text-align: center;
  margin: 15px auto 20px;
}
.btn a, .btn button {
  display: inline-block;
  color: #fff;
  min-width: 200px;
  padding: 10px 10px;
  color: #fff;
  background: #348615;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 115.38462%;
  position: relative;
  text-decoration: none;
}
.btn a:hover, .btn button:hover {
  background: #fff;
  color: #348615;
  border: 1px solid #348615;
}

.btnArea .btn #Submit {
    display: inline-block;
    color: #fff;
    min-width: 200px;
    padding: 10px 10px;
    color: #fff;
    background: #348615;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 115.38462%;
    position: relative;
    text-decoration: none;
}

    .btnArea .btn #Submit:hover {
        background: #fff;
        color: #348615;
        border: 1px solid #348615;
    }
.btn.backBtn a, .btn.backBtn button {
  background: #e9e9e9;
  color: #333;
}
.btn.backBtn a:hover, .btn.backBtn button:hover {
  background: #c5c5c5;
}
.btn.backBtn a:before, .btn.backBtn button:before {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url('../img/common/arrow_grayBtn.png') no-repeat;
  background-size: 8px 12px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  left: 12px;
}
@media only screen and (max-width: 768px) {
    .btn a, .btn button {
        max-width: 240px;
        /*width: 100%;*/
    }
  .btn a:before, .btn button:before {
    display: inline-block;
    width: 8px;
    height: 13px;
    background: url('../img/commonSp/arrow_btn.png') no-repeat;
    background-size: 8px 13px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .btn.backBtn a:before, .btn.backBtn button:before {
    display: inline-block;
    width: 8px;
    height: 13px;
    background: url('../img/commonSp/arrow_grayBtn.png') no-repeat;
    background-size: 8px 13px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}

nav.pagenation {
  margin: 0 0 20px;
}
nav.pagenation ul {
  margin: 20px 0 0;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
nav.pagenation ul li {
  margin: 1px 2px;
  padding: 0;
}
nav.pagenation ul a {
  display: inline-block;
  width: 3em;
  padding: 4px 10px;
  border: 1px solid #0406A3;
  text-align: center;
  text-decoration: none;
  color: #0406A3;
  font-family: 'Roboto Condensed',"Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-weight: 400;
  font-size: 84.61538%;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}
nav.pagenation ul a:hover {
  color: #fff;
  background: #0406A3;
  border: 1px solid #0406A3;
}
nav.pagenation ul a.link_first, nav.pagenation ul a.link_last, nav.pagenation ul a.link_next, nav.pagenation ul a.link_prev {
  width: auto;
  padding: 4px 10px;
}
nav.pagenation ul span.current_page {
  line-height: 1;
  display: inline-block;
  font-family: 'Roboto Condensed',"Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-weight: 400;
  color: #fff;
  width: 3em;
  padding: 4px 10px;
  background: #0406A3;
  border: 1px solid #0406A3;
  text-align: center;
  font-size: 84.61538%;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  nav.pagenation ul {
    margin: 10px 0 0;
    display: block;
    text-align: center;
  }
  nav.pagenation ul li {
    margin: 0 0 3px 0;
    display: inline-block;
  }
  nav.pagenation ul a {
    width: 22px;
    padding: 4px 5px;
    font-size: 84.61538%;
  }
  nav.pagenation ul a.link_first, nav.pagenation ul a.link_last, nav.pagenation ul a.link_next, nav.pagenation ul a.link_prev {
    padding: 4px 5px;
  }
  nav.pagenation ul span.current_page {
    width: 22px;
    padding: 3px 0;
    font-size: 84.61538%;
  }
}

/*------------------------------------------------------------
TOPページ
------------------------------------------------------------*/
/* TOPページ表示ボックス（コールセンターのご紹介） */
#about h1:before {
  display: inline-block;
  width: 39px;
  height: 28px;
  background: url('../img/common/icon_about.png') no-repeat;
  background-size: 39px 28px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#about p {
  margin: 1.2em auto 0.8em;
  font-size: 107.69231%;
}
#about p.noteBig {
  line-height: 1.4;
  font-weight: bold;
  font-size: 115.38462%;
}
#about p.noteBig .small {
  display: block;
  font-weight: normal;
  font-size: 76.92308%;
}
#about figure {
  margin: 1.5em -4px 0.8em;
}
#about dl.box {
  margin: 0;
  padding: 20px 25px;
}
#about dl.box dt {
  color: #348615;
  font-weight: bold;
  font-size: 130.76923%;
}
#about dl.box dd {
  margin: 2px 0 0;
  line-height: 1.6;
  font-size: 92.30769%;
}
#about dl.box dd p {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
    #about{
        order:2;
    }
  #about h1:before {
    display: inline-block;
    width: 39px;
    height: 28px;
    background: url('../img/commonSp/icon_about.png') no-repeat;
    background-size: 39px 28px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  #about p {
    line-height: 1.2;
  }
  #about dl.box {
    padding: 12px 8px;
  }
  #about dl.box dt {
    margin-bottom: 5px;
  }
  #about dl.box dd {
    line-height: 1.5;
  }
  #about dl.box dd p {
    margin: 0 0 0.8em;
  }
  #about dl.box dd p:last-child {
    margin-bottom: 0;
  }
}

/* TOPページ表示ボックス（キーワード検索） */
#keyword h1:before {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../img/common/icon_keyword.png') no-repeat;
  background-size: 30px 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
    #keyword{
       /* order: 1;*/
    }
  #keyword h1:before {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('../img/commonSp/icon_keyword.png') no-repeat;
    background-size: 30px 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
#keyword form {
  display: table;
  width: 100%;
  margin: 1.2em 0 2.4em;
}
#keyword form label:before {
  display: none;
}
#keyword form label:after {
  display: none;
}
#keyword form label.border {
  display: block;
  margin: 1.2em 0 0.6em;
  padding: 5px 0 7px 12px;
  border-bottom: 1px solid #348615;
  line-height: 1;
  color: #292929;
  font-weight: bold;
  position: relative;
  font-size: 146.15385%;
}
#keyword form label.border:after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.4em;
  background: #348615;
  position: absolute;
  left: 2px;
  top: 1px;
  bottom: auto;
}
@media only screen and (max-width: 768px) {
  #keyword form label.border {
    font-size: 130.76923%;
    margin: 1em 0 0.5em;
    padding: 6px 0 6px 11px;
  }
}
#keyword form .clearLink {
  text-align: right;
}
#keyword form .clearLink li {
  display: inline-block;
  position: relative;
  font-size: 92.30769%;
}
#keyword form .clearLink li:after {
  content: "";
  display: inline-block;
  margin: 0 3px -1px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('../img/common/topicpath.png') no-repeat;
  background-size: 12px 12px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#keyword form .clearLink li:last-child:after {
  display: none;
}
#keyword form .notes {
  display: block;
  margin: 0;
  font-size: 92.30769%;
}
#keyword form div.keywordBlock {
  display: table;
  width: 100%;
  margin: 3px 0 0;
}
#keyword form input[type="text"] {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  height: 36px;
  margin: 0 -36px 0 0;
  padding: 6px 53px 6px 15px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 107.69231%;
}
#keyword form input[type="text"]::-webkit-input-placeholder, #keyword form input[type="text"]::-ms-input-placeholder, #keyword form input[type="text"]::-moz-placeholder {
  color: #888888;
  font-size: 107.69231%;
}
#keyword form input[type="text"]:focus {
  border: 1px solid #348615;
  background: #f2f2f2;
  box-shadow: 0 0 1px #DBF6D2 inset;
  outline: medium none;
}
#keyword form button {
    display: table-cell;
    vertical-align: top;
    width: 36px;
    height: 36px;
    background: #348615 url("../img/common/icon_search.png") center center no-repeat;
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
}
    #keyword form button:hover {
        background: #ffffff url("../img/common/icon_search_hover.png") center center no-repeat;
        border: 1px solid #348615;
    }
@media only screen and (max-width: 768px) {
  #keyword form {
    margin: 1.4em 0 2em;
  }
  #keyword form button {
    background: #348615 url("../img/commonSp/icon_search.png") center center no-repeat;
    -webkit-background-size: 18px 18px;
    -moz-background-size: 18px 18px;
    -o-background-size: 18px 18px;
    background-size: 18px 18px;
  }
  #keyword form button:hover {
    background: #420d47 url("../img/commonSp/icon_search.png") center center no-repeat;
    -webkit-background-size: 18px 18px;
    -moz-background-size: 18px 18px;
    -o-background-size: 18px 18px;
    background-size: 18px 18px;
  }
}
#keyword ul.keywordList {
  margin: 0 5px;
}
#keyword ul.keywordList:after {
  content: "";
  display: block;
  clear: both;
}
#keyword ul.keywordList li {
  float: left;
  margin: 0 25px 10px 0;
  font-size: 107.69231%;
}
@media only screen and (max-width: 768px) {
  #keyword ul.keywordList {
    margin: 14px 5px 0;
  }
  #keyword ul.keywordList li {
    display: inline-block;
    margin: 0 6px 10px 0;
    font-size: 100%;
  }
  #keyword ul.keywordList a {
    display: block;
    padding: 2px 10px 2px;
    background: #e9e9e9;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
}

/* TOPページ表示ボックス（新着（更新）FAQ情報） */
#topics h1 {
  padding-right: 70px;
}
#topics h1:before {
  display: inline-block;
  width: 31px;
  height: 33px;
  background: url('../img/common/icon_topics.png') no-repeat;
  background-size: 31px 33px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #topics{
        order:4;
    }
  #topics h1:before {
    display: inline-block;
    width: 29.5px;
    height: 30px;
    background: url('../img/commonSp/icon_topics.png') no-repeat;
    background-size: 29.5px 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
#topics .topicsList {
  height: 15em;
  margin: -0.4em 0 0;
}
#topics .topicsList li {
  display: block;
  margin: 0;
  padding: 5px 5px 8px;
  border-bottom: 1px solid #eee;
}
#topics .topicsList li.noLink {
  border: 2px solid #DBF6D2;
  padding: 15px 5px;
  text-align: center;
  color: #348615;
}
#topics .topicsList dl dt {
  color: #0406A3;
  line-height: 1.3;
  font-family: 'Roboto Condensed','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', ‘游ゴシック体’, ‘Yu Gothic’, ‘YuGothic’ , Meiryo, メイリオ,　Arial, 'Helvetica Neue',  sans-serif;
  font-size: 100%;
}
#topics .topicsList dl dd {
  font-size: 100%;
}

/* TOPページ表示ボックス（トピックス） */
#feature h1 {
  padding-right: 70px;
}
#feature h1:before {
  display: inline-block;
  width: 31px;
  height: 33px;
  background: url('../img/common/icon_feature.png') no-repeat;
  background-size: 31px 33px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
    #feature{
        order:2;
    }
  #feature h1:before {
    display: inline-block;
    width: 29.5px;
    height: 30px;
    background: url('../img/commonSp/icon_feature.png') no-repeat;
    background-size: 29.5px 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
#feature .featureList {
  height: 15em;
  margin: -0.4em 0 0;
}
#feature .featureList li {
  display: block;
  margin: 0;
  padding: 5px 5px 8px;
  border-bottom: 1px solid #eee;
}
#feature .featureList li.noLink {
  border: 2px solid #ece7ef;
  padding: 15px 5px;
  text-align: center;
  color: #003672;
}
#feature .featureList dl dt {
  color: #268DBD;
  line-height: 1.3;
  font-family: 'Roboto Condensed','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', ‘游ゴシック体’, ‘Yu Gothic’, ‘YuGothic’ , Meiryo, メイリオ,　Arial, 'Helvetica Neue',  sans-serif;
  font-size: 100%;
}
#feature .featureList dl dd {
  font-size: 100%;
}


/* TOPページ表示ボックス（ライフイベントから検索） */
#life h1:before {
  display: inline-block;
  width: 27px;
  height: 35px;
  background: url('../img/common/icon_life.png') no-repeat;
  background-size: 27px 35px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
    #life{
        order: 5;
    }
  #life h1:before {
    display: inline-block;
    width: 27.5px;
    height: 35px;
    background: url('../img/commonSp/icon_life.png') no-repeat;
    background-size: 27.5px 35px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}

/* TOPページ表示ボックス（アクセスランキング） */
#access h1 {
  padding-right: 70px;
}
#access h1:before {
  display: inline-block;
  width: 31px;
  height: 34px;
  background: url('../img/common/icon_access.png') no-repeat;
  background-size: 31px 34px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
    #access {
        order: 3;
    }

  #access h1:before {
    display: inline-block;
    width: 29px;
    height: 32px;
    background: url('../img/commonSp/icon_access.png') no-repeat;
    background-size: 29px 32px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
#access ul.qaList {
  height: 15em;
  margin: -10px 0 0;
}
#access ul.qaList li {
  display: table;
  width: 100%;
  margin: 0;
  padding: 2px 5px 8px;
  border-bottom: 1px solid #eee;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#access ul.qaList li:first-child {
  margin-top: 0;
}
#access ul.qaList li div.question {
  display: table-cell;
  font-size: 215.38462%;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  color: #348615;
  width: 8%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#access ul.qaList a {
  display: table-cell;
  padding: 0 0 0 5px;
}
@media only screen and (max-width: 768px) {
  #access ul.qaList {
    margin: 0;
  }
  #access ul.qaList li:before {
    font-size: 200%;
  }
}

/* TOPページ表示ボックス（カテゴリから検索） */
#admin h1:before {
  display: inline-block;
  width: 34px;
  height: 22px;
  background: url('../img/common/icon_admin.png') no-repeat;
  background-size: 34px 22px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
    #admin{
        order: 6;
    }
  #admin h1:before {
    display: inline-block;
    width: 34px;
    height: 22px;
    background: url('../img/commonSp/icon_admin.png') no-repeat;
    background-size: 34px 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  #admin #adminArea {
    border-top: 1px solid #ece7ef;
  }
}
#admin ul.administrationList {
  padding: 0;
  margin: 0;
}
#admin ul.administrationList:after {
  content: "";
  display: block;
  clear: both;
}
#admin ul.administrationList > li {
  margin: 0 2% 0.7em 0;
  float: left;
  width: 32%;
}
#admin ul.administrationList > li:nth-child(3n) {
  margin-right: 0;
}
#admin ul.administrationList > li a.index {
  cursor: pointer;
  display: block;
  font-size: 100%;
  margin: 0 0 5px;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 25px;
}
#admin ul.administrationList > li a.index:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('../img/common/icon_accordion_colse.png') no-repeat;
  background-size: 17px 17px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  left: 4px;
  top: 0;
}
#admin ul.administrationList > li a.index.active:before {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('../img/common/icon_accordion_open.png') no-repeat;
  background-size: 17px 17px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#admin ul.administrationList > li ul {
  display: none;
  padding: 0;
}
#admin ul.administrationList > li ul li {
  margin: 0;
  border: 1px solid #fff;
  width: 100%;
  float: none;
  position: relative;
}
#admin ul.administrationList > li ul li:last-child {
  margin: 0;
}
#admin ul.administrationList > li ul li a {
  display: block;
  padding: 0.7em 5px 0.7em 21px;
  position: relative;
  font-size: 92.30769%;
  background: #f6f4f6;
  line-height: 1;
}
#admin ul.administrationList > li ul li a:hover {
  background: #fff;
}
#admin ul.administrationList > li ul li a:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 10px;
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url('../img/common/arrow_small.png') no-repeat;
  background-size: 5px 8px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 5px;
  height: 8px;
}
#admin ul.administrationList > li ul li a.rssBtn {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 6px;
  padding: 3px 8px;
  color: #C65402;
  border: 1px solid #C65402;
  background: #fff;
  text-decoration: none;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 69.23077%;
}
#admin ul.administrationList > li ul li a.rssBtn:hover {
  background: #C65402;
  color: #fff;
}
#admin ul.administrationList > li ul li a.rssBtn:before {
  display: none;
}
@media only screen and (max-width: 768px) {
  #admin ul.administrationList > li {
    border-bottom: 1px solid #ece7ef;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #admin ul.administrationList > li:last-child {
    margin: 0;
  }
  #admin ul.administrationList > li a.index {
    font-size: 107.69231%;
    margin: 0;
    padding: 12px 25px 12px 0;
    line-height: 1.3;
  }
  #admin ul.administrationList > li a.index:before {
    display: inline-block;
    width: 17.5px;
    height: 17px;
    background: url('../img/commonSp/icon_accordion_colse.png') no-repeat;
    background-size: 17.5px 17px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    left: auto;
    right: 2px;
    top: 28%;
  }
  #admin ul.administrationList > li a.index.active:before {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url('../img/commonSp/icon_accordion_open.png') no-repeat;
    background-size: 17px 17px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  #admin ul.administrationList > li ul li {
    border: 1px solid #fff;
  }
  #admin ul.administrationList > li ul li a {
    display: block;
    padding: 12px 25px 12px 12px;
    background: #f6f4f6;
    font-size: 100%;
  }
  #admin ul.administrationList > li ul li a:before {
    left: auto;
    right: 8px;
    top: 14px;
    display: inline-block;
    width: 5px;
    height: 8px;
    background: url('../img/commonSp/arrow_small.png') no-repeat;
    background-size: 5px 8px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 5px;
    height: 8px;
  }
  #admin ul.administrationList > li ul li a.rssBtn {
    padding: 4px 10px;
    top: 8px;
  }
}
#admin form {
  margin: 0;
  padding: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #admin form {
    margin: 0.5em 0;
  }
}
#admin form label.border {
  margin: 1em 0 0.5em;
  font-size: 146.15385%;
  font-weight: bold;
  border-bottom: none;
  border-left: 3px solid #0406A3;
  padding: 5px 0 5px 8px;
  color: #0406A3;
  line-height: 1;
  display: block;
}
@media only screen and (max-width: 768px) {
  #admin form label.border {
    font-size: 138.46154%;
    margin: 1em 0 0.5em;
    padding: 5px 0 5px 6px;
  }
}
#admin form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 60%;
  height: 36px;
  margin: 0 5px 0 0;
  padding: 6px 24px 6px 12px;
  background: white url("../img/common/bg_select.gif") right center no-repeat;
  border: 1px solid #0406A3;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 107.69231%;
}
#admin form select::-webkit-input-placeholder, #admin form select::-ms-input-placeholder, #admin form select::-moz-placeholder {
  color: #888888;
  font-size: 107.69231%;
}
#admin form select:focus {
  background: #f6f4f6 url("../img/common/bg_select.gif") right center no-repeat;
  box-shadow: 0 0 1px #888888 inset;
}
.ieAll #admin form select {
  padding: 6px 12px 6px 12px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #admin form select {
    width: 72%;
    margin-right: 2px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
}
#admin form button {
  width: 90px;
  height: 36px;
  background: #0406A3;
  color: #fff;
  font-weight: bold;
}
#admin form button:hover {
  background: #420d47;
}
@media only screen and (max-width: 768px) {
  #admin form button {
    width: 22%;
    margin-left: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
}
/* TOPページ表示ボックス（広告バナー掲載案内） */
#banner h1:before {
    display: inline-block;
    width: 34px;
    height: 22px;
    background: url('../img/common/icon_banner.png') no-repeat;
    background-size: 34px 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#banner ul.bannerList {
    padding: 0;
    margin: 0;
}

    #banner ul.bannerList:after {
        content: "";
        display: block;
        clear: both;
    }

    #banner ul.bannerList > li {
        margin: 0 2% 2% 0;
        float: left;
        width: 32%;
    }

@media only screen and (min-width: 769px), print {
    #banner ul.bannerList > li:nth-child(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    #banner{
        order:6;
    }
    #banner h1:before {
        display: inline-block;
        width: 34px;
        height: 22px;
        background: url('../img/commonSp/icon_banner.png') no-repeat;
        background-size: 34px 22px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    #banner ul.bannerList > li {
        float: left;
        width: 49%;
        margin: 0 2% 2% 0;
    }

        #banner ul.bannerList > li:nth-child(2n) {
            margin-right: 0;
        }

        #banner ul.bannerList > li img {
            width: 100%;
        }
}
/* TOPページ表示ボックス（広告バナー掲載案内） */
#contactbottom {
    display: none;
    margin: 0 auto 11px;
    padding: 15px;
    color: #fff;
    background: #348615;
    min-height: 225px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
    #contactbottom a {
        color: #fff;
    }

    #contactbottom h2 {
        margin: 0 0 10px;
        padding: 11px 0;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        text-align: center;
        line-height: 1.1;
        color: #fff;
        font-weight: bold;
        font-size: 138.46154%;
    }

    #contactbottom ul.telNumber {
        margin: 0 0 5px;
        font-family: 'Roboto Condensed','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', ‘游ゴシック体’, ‘Yu Gothic’, ‘YuGothic’, Meiryo, メイリオ, Arial, 'Helvetica Neue', sans-serif;
    }

        #contactbottom ul.telNumber li {
            margin: 0 0 5px;
            line-height: 1;
            letter-spacing: 0.5px;
            font-size: 223.07692%;
        }

        #contactbottom ul.telNumber li:last-child {
            margin: 0;
        }

        #contactbottom ul.telNumber li span {
            display: inline-block;
            width: 2.187em;
            margin: 0 3px 0 0;
            text-align: center;
            font-size: 55.19231%;
        }

            #contactbottom ul.telNumber li span.dot {
                display: inline;
                margin: 0;
                font-size: 100%;
            }

            #contactbottom ul.telNumber li span.yellow {
                display: inline;
                margin: auto;
                color: #feef03;
                font-size: 123.07692%;
            }

            #contactbottom ul.telNumber li span.small,
            #contactbottom ul.telNumber li small {
                font-size: 76.92308%;
                line-height: 1;
                display: inline;
                width: auto;
                margin: 0;
                text-align: left;
            }

    #contactbottom .notice {
        margin: 0 auto 10px;
        text-align: center;
        /*  color: #feef03; */
        font-size: 84.61538%;
    }

    #contactbottom .businessHours {
        display: block;
        margin: 0 auto 12px;
        padding: 0 0 8px;
        border-bottom: 1px solid #fff;
        text-align: center;
        font-size: 92.30769%;
    }

    #contactbottom .businessHours dt {
        display: block;
        width: 100%;
        margin: 0 auto 5px;
        padding: 3px 0 2px;
        color: #348615;
        text-align: center;
        background: #fff;
        line-height: 1;
    }

    #contactbottom .businessHours dd {
        line-height: 1.2;
        font-size: 125%;
    }

        #contactbottom .businessHours dd .num {
            font-size: 146.66923%;
        }

        #contactbottom .businessHours dd .small {
            display: block;
            font-size: 81.25385%;
        }

    #contactbottom h3 {
        margin: 10px 0;
        text-align: center;
        font-size: 107.69231%;
    }

    #contactbottom h3:before {
        content: "";
        display: inline-block;
        margin: 0 7px 0 0;
        vertical-align: bottom;
        display: inline-block;
        width: 30px;
        height: 25px;
        background: url('../img/common/icon_mail.png') no-repeat;
        background-size: 30px 25px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    #contactbottom .borderBtn a {
        display: block;
        width: 100%;
        margin: 10px auto 2px;
        padding: 9px;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #fff;
        position: relative;
        -webkit-transition: color 300ms,background 300ms;
        transition: color 300ms,background 300ms;
        font-size: 92.30769%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    }

    #contactbottom .borderBtn a:after {
        content: "";
        display: inline-block;
        position: absolute;
        right: 8px;
        top: 0;
        bottom: 0;
        margin: auto;
        display: inline-block;
        width: 11px;
        height: 4px;
        background: url('../img/common/arrow_white.png') no-repeat;
        background-size: 11px 4px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    #contactbottom .borderBtn a:hover {
        background: #fff;
        color: #0406A3;
    }

        #contactbottom .borderBtn a:hover:after {
            display: inline-block;
            width: 11px;
            height: 4px;
            background: url('../img/common/arrow.png') no-repeat;
            background-size: 11px 4px;
            text-indent: 100%;
            white-space: nowrap;
            overflow: hidden;
        }
@media only screen and (max-width: 768px) {
    #contactbottom {
        display:block;
        margin: 0 0 20px 0;
        padding: 15px 20px;
        position: static;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        order: 6;
    }

        #contactbottom h2 {
            margin: 7px 0 10px;
            padding: 13px;
            border-width: 2px;
            line-height: 1;
            font-size: 176.92308%;
        }

        #contactbottom ul.telNumber {
            text-align: center;
        }

            #contactbottom ul.telNumber li {
                margin: 0 0 20px;
                line-height: 0.7;
                font-size: 284.61538%;
            }

                #contactbottom ul.telNumber li:last-child {
                    margin: 0;
                }

        #contactbottom .notice {
            margin: 10px auto;
        }

        #contactbottom .businessHours {
            margin: 13px auto 12px;
            padding: 0;
            border-bottom: none;
            font-size: 100%;
        }

            #contactbottom .businessHours dt {
                margin: 0 auto 7px;
                padding: 3px 0;
            }

        #contactbottom h3 {
            padding: 15px 0 0;
            font-weight: bold;
            border-top: 1px solid #fff;
            font-size: 138.46154%;
            border-left:none;
            background:none;
            color: #fff;
        }

            #contactbottom h3:before {
                display: inline-block;
                width: 36.5px;
                height: 30.5px;
                background: url('../img/commonSp/icon_mail.png') no-repeat;
                background-size: 36.5px 30.5px;
                text-indent: 100%;
                white-space: nowrap;
                overflow: hidden;
            }

        #contactbottom .borderBtn a {
            display: block;
            width: 85%;
            margin: 14px auto 5px;
            text-align: center;
            font-size: 107.69231%;
        }

            #contactbottom .borderBtn a:after {
                right: 8px;
                top: 0;
                bottom: 0;
                margin: auto;
                display: inline-block;
                width: 12.5px;
                height: 4px;
                background: url('../img/commonSp/arrow_white.png') no-repeat;
                background-size: 12.5px 4px;
                text-indent: 100%;
                white-space: nowrap;
                overflow: hidden;
            }

            #contactbottom .borderBtn a:hover:after {
                display: inline-block;
                width: 12.5px;
                height: 4px;
                background: url('../img/commonSp/arrow.png') no-repeat;
                background-size: 12.5px 4px;
                text-indent: 100%;
                white-space: nowrap;
                overflow: hidden;
            }

}

#sub #sidecategory {
    padding: 0px;
    border: none;
    background: none;
}
@media only screen and (max-width: 768px) {
    #sub #contactbottom {
        display: block;
        margin: 0 0 20px 0;
        padding: 15px 20px;
        position: static;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        order: 3;
    }

    #sub #sidecategory {
        padding: 0px;
        border: none;
        background: none;
        order: 2;
    }
}



    table {
        width: 100%;
        margin: 15px 0;
        border-left: 1px solid #eee;
        border-top: 1px solid #eee;
        background: #fff;
        border-collapse: collapse;
        border-spacing: 0;
        font-size: 100%;
    }

        table caption {
            font-weight: bold;
            position: relative;
            margin: 0 0 10px;
            padding: 0 0 0 13px;
            font-size: 123.07692%;
        }

            table caption:before {
                content: "";
                display: inline-block;
                width: 3px;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                background: #178489;
                background: -moz- linear-gradient(#178489 0%, #127173 50%, #0e5d62 51%, #0c696e 100%);
                background: -webkit- linear-gradient(#178489 0%, #127173 50%, #0e5d62 51%, #0c696e 100%);
                background: linear-gradient(#178489 0%, #127173 50%, #0e5d62 51%, #0c696e 100%);
            }

        table tr th, table tr td {
            padding: 8px 10px;
            border-bottom: 1px solid #E4F6DE;
            border-right: 1px solid #E4F6DE;
            line-height: 1.4;
        }

            table tr th.va-top, table tr td.va-top {
                vertical-align: top;
            }

            table tr th.txtC, table tr td.txtC {
                text-align: center;
            }

            table tr th ul, table tr th ol, table tr td ul, table tr td ol {
                margin: 5px 0;
                padding: 0;
            }

        table tr th {
            background: #DBF6D2;
            font-weight: bold;
            font-size: 107.69231%;
        }

            table tr th.color01 {
                background: #E4F6DE;
                color: #fff;
            }

        table thead tr th, table thead tr td {
            background: #424242;
            font-weight: bold;
            color: #fff;
            border-right: 1px solid #eee;
            font-size: 123.07692%;
        }

            table thead tr th a, table thead tr td a {
                color: #fff;
            }

        table thead tr > *:last-child {
            border-right: 1px solid #eee;
        }

        table tfoot tr th,
        table tfoot tr td {
            background: #e8e8e8;
            font-weight: bold;
            border-right: 1px solid #d5d5d5;
            font-size: 107.69231%;
        }

        table tfoot tr > *:last-child {
            border-right: 1px solid #eee;
        }

        table + p.note {
            margin-top: 5px;
        }

    @media only screen and (max-width: 768px) {
        table tr th {
            font-size: 100%;
        }

        table thead tr th, table thead tr td {
            font-size: 107.69231%;
        }

        table tfoot tr th, table tfoot tr td {
            font-size: 92.30769%;
        }
    }

    table.fontSmall {
        font-size: 92.30769%;
        margin: 15px 0 10px;
    }

    table.txtC td, table.txtC th {
        text-align: center;
    }

    table.fix {
        table-layout: fixed;
    }

    table.formTable {
        margin-top: 0;
    }

        table.formTable th {
            width: 30%;
        }

            table.formTable th div:after {
                content: "";
                display: block;
                clear: both;
            }

            table.formTable th div span.text {
                float: left;
                width: 75%;
            }

            table.formTable th div span.required, table.formTable th div span.any {
                float: right;
                display: inline-block;
                min-width: 30px;
                text-align: center;
                background: #a40046;
                color: #fff;
                font-weight: normal;
                font-size: 84.61538%;
                line-height: 1.2;
                padding: 2px 5px 1px;
                margin: 0 0 0 5px;
                position: relative;
                top: 0;
            }

            table.formTable th div span.any {
                background: #4c62c2;
            }

        table.formTable td {
            padding: 15px;
        }

    @media only screen and (max-width: 768px) {
        table.formTable th, table.formTable td {
            width: 100%;
            display: block;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        table.formTable th {
            font-size: 115.38462%;
        }

            table.formTable th div span.required, table.formTable th div span.any {
                font-size: 76.92308%;
                padding: 3px 15px;
                top: 2px;
            }
    }

    form p.catch {
        margin: 12px 0 4px;
        font-size: 92.30769%;
    }

    form p.catch02 {
        margin: 0 0 4px;
        font-size: 92.30769%;
    }

    form input[type="text"], form input[type="password"], form input[type="tel"], form input[type="email"], form textarea {
        width: 85%;
        border: none;
        padding: 7px;
        border: 1px solid #348615;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 1.4;
        font-size: 107.69231%;
        box-shadow: none;
    }

        form input[type="text"]:focus, form input[type="password"]:focus, form input[type="tel"]:focus, form input[type="email"]:focus, form textarea:focus {
            border: 1px solid #348615;
            background: #fff;
            box-shadow: 0 0 1px #DBF6D2 inset;
            outline: medium none;
        }

    /*form input[type="radio"] {
        display: none;
    }

        form input[type="radio"] + label {
            display: inline-block;
            position: relative;
            cursor: pointer;
            margin: 0 10px;
            padding: 5px 0 5px 20px;
            border-radius: 2px;
            color: #3e4956;
            text-align: center;
            line-height: 1;
            font-weight: bold;
            font-size: 107.69231%;
        }

            form input[type="radio"] + label:before {
                position: absolute;
                content: "";
                top: 50%;
                left: 0px;
                width: 17px;
                height: 17px;
                margin-top: -9px;
                background: #fff;
                background: #e5eaee;
                background: linear-gradient(135deg, #ffffff, #e5eaee);
                border: 1px solid #a1a1a1;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            form input[type="radio"] + label span {
                font-weight: bold;
            }

                form input[type="radio"] + label span:before {
                    content: "";
                    display: inline-block;
                    width: 13px;
                    height: 13px;
                    background: #ecf1f7;
                    background: linear-gradient(135deg, #ffffff, #ecf1f7);
                    border: 2px solid #ccc;
                    z-index: 1;
                    position: absolute;
                    left: 2px;
                    top: 5px;
                    -moz-border-radius: 50%;
                    -webkit-border-radius: 50%;
                    border-radius: 50%;
                    -webkit-box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                }

        form input[type="radio"]:checked + label:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 6px;
            width: 5px;
            height: 5px;
            margin-top: -3px;
            border-radius: 50%;
            background: #222;
            z-index: 2;
        }*/

    form textarea {
        height: 250px;
        width: 100%;
    }

    form select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 7px 24px 7px 12px;
        border: 1px solid #e0e0e0;
        background: #f6f4f6 url("../img/common/bg_select.gif") right center no-repeat;
        min-width: 150px;
        line-height: 1.4;
        font-size: 107.69231%;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

        form select:focus {
            border: 1px solid #348615;
            background: white url("../img/common/bg_select.gif") right center no-repeat;
            outline: medium none;
        }

    .ieAll form select {
        padding: 7px 12px 7px 12px;
        background: #f6f4f6;
    }

    form input[type="text"]::-webkit-input-placeholder, form input[type="tel"]::-webkit-input-placeholder, form input[type="email"]::-webkit-input-placeholder {
        color: #888888;
        font-weight: normal;
    }

    form input[type="text"]:-ms-input-placeholder, form input[type="tel"]:-ms-input-placeholder, form input[type="email"]:-ms-input-placeholder {
        color: #888888;
        font-weight: normal;
    }

    form input[type="text"]::-moz-placeholder, form input[type="tel"]::-moz-placeholder, form input[type="email"]::-moz-placeholder {
        color: #888888;
        font-weight: normal;
    }

    @media only screen and (max-width: 768px) {
        form input[type="text"], form input[type="password"], form input[type="tel"], form input[type="email"], form textarea, form select {
            width: 100%;
        }

        form textarea {
            height: 200px;
        }

        form input[type="radio"]:checked + label:after {
            left: 16px;
        }
    }

    p.errorText {
        background-color: #FFE9E9;
        color: #a40046;
        margin: 3px 0 0 0;
        border: 1px solid #a40046;
        padding: 4px;
        font-weight: bold;
    }

    /*------------------------------------------------------------
FAQ検索結果ページ
------------------------------------------------------------*/
    /* FAQ検索結果ページ（キーワードで検索） */
    #keyword .horizon:after {
        content: "";
        display: block;
        clear: both;
    }

    #keyword .horizon .left {
        width: 48%;
        float: left;
        padding: 0;
    }

        #keyword .horizon .left *:first-child {
            margin-top: 0 !important;
        }

        #keyword .horizon .left *:last-child {
            margin-bottom: 0 !important;
        }

    #keyword .horizon .right {
        width: 48%;
        float: right;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        #keyword .horizon .right *:first-child {
            margin-top: 0 !important;
        }

    @media only screen and (max-width: 768px) {
        #keyword .horizon .left {
            float: none;
            width: 100%;
        }

        #keyword .horizon .right {
            float: none;
            width: 100%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

            #keyword .horizon .right h2:first-child {
                margin-top: 1em !important;
            }
    }

    /* FAQ検索結果ページ（FAQ検索結果一覧） */
    #faqResult {
        margin: 2.7em 0 0.8em;
        position: relative;
    }

        #faqResult p.faqCount {
            font-size: 92.30769%;
            position: absolute;
            /* thingully */
            /*left: 0;*/
            /*top: -2.5em;*/
            left: 1em;
            top: -3.2em;
        }

        #faqResult table.faqResultList thead th {
            text-align: center;
            background: #0406A3;
            color: #fff;
        }

        #faqResult table.faqResultList tr td {
            font-size: 100%;
        }

            #faqResult table.faqResultList tr td.access {
                padding: 8px 30px;
                color: #0406A3;
                text-align: right;
                font-family: 'Roboto Condensed';
                font-size: 123.07692%;
            }

            #faqResult table.faqResultList tr td.evaluate {
                color: #0406A3;
                text-align: center;
                font-size: 107.69231%;
            }

        #faqResult table.faqResultList span.update,
        #faqResult table.faqResultList span.new {
            display: inline-block;
            margin: 0 0 0 10px;
            vertical-align: text-bottom;
            padding: 2px 10px;
            color: #fff;
            -moz-border-radius: 20px;
            -webkit-border-radius: 20px;
            border-radius: 20px;
        }

        #faqResult table.faqResultList span.update {
            background: #3d78d1;
            font-size: 84.61538%;
        }

        #faqResult table.faqResultList span.new {
            background: #e4429c;
            font-family: 'Roboto Condensed';
            font-size: 92.30769%;
        }

        #faqResult table.faqResultList span.question {
            display: inline-block;
            margin: 0 10px 0 0;
            color: #0406A3;
            text-decoration: none !important;
            font-weight: bold;
            font-family: 'Raleway', sans-serif;
            font-size: 215.38462%;
        }

    /* FAQ検索結果ページ（本文欄） */
    #faqDetail h1 {
        display: table;
        width: 100%;
        padding: 8px 20px 10px;
        color: #348615;
        line-height: 1.2;
    }

        #faqDetail h1:after, #faqDetail h1:before {
            display: none;
        }

        #faqDetail h1 .question {
            display: table-cell;
            width: 6%;
            padding: 0 10px 0 0;
            line-height: 1;
            vertical-align: top;
            color: #348615;
            font-weight: bold;
            font-family: 'Raleway', sans-serif !important;
            position: static;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            font-size: 169.23077%;
        }

        #faqDetail h1 div.text,
        #faqDetail h1 span.text {
            display: table-cell;
            line-height: 1;
            vertical-align: middle;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

            #faqDetail h1 div.text span.category,
            #faqDetail h1 span.text span.category {
                display: inline-block;
                text-align: center;
                padding: 3px 10px;
                min-width: 200px;
                font-weight: normal;
                font-size: 46.15385%;
                line-height: 1;
                margin: 0 0 3px;
                color: #fff;
                background: #348615;
                font-weight: bold;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            #faqDetail h1 div.text span.title,
            #faqDetail h1 span.text span.title {
                display: block;
            }

    @media only screen and (max-width: 768px) {
        #faqDetail h1 {
            font-size: 153.84615%;
            padding: 12px 10px 12px 10px;
        }

            #faqDetail h1:before {
                font-size: 169.23077%;
                padding: 0 5px 0 0;
            }

            #faqDetail h1 span.title {
                font-size: 92.30769%;
            }
    }

    #faqDetail .content {
        margin: 0 0 40px;
    }

        #faqDetail .content a {
            color: #2F3BC0;
        }

        #faqDetail .content h2 {
            display: table;
            width: 100%;
            margin: 25px 0 15px;
            padding: 0 10px 5px 0;
            border-left: none;
            border-bottom: 1px solid #e1284b;
            line-height: 1.2;
            position: relative;
            font-weight: bold;
            color: #e1284b;
            font-size: 176.92308%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

            #faqDetail .content h2 div.answer,
            #faqDetail .content h2 span.answer {
                display: table-cell;
                width: 5.6%;
                padding: 0 10px 0 0;
                line-height: 1;
                font-weight: bold;
                font-family: 'Raleway', sans-serif !important;
                font-size: 153.84615%;
            }

            #faqDetail .content h2 span.text {
                display: table-cell;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            #faqDetail .content h2:after {
                display: none !important;
            }

    @media only screen and (max-width: 768px) {
        #faqDetail .content h2 {
            padding: 0 10px 5px 0;
            font-size: 153.84615%;
        }

            #faqDetail .content h2:before {
                padding: 0 5px 0 0;
            }
    }

    #faqDetail .contact, #faqDetail .relation {
        margin: 0 0 40px;
    }

    #faqDetail .attribute:after {
        content: "";
        display: block;
        clear: both;
    }

    #faqDetail .attribute dl {
        width: 100%;
        margin: 0 0 15px;
        padding: 0 10px 0 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        #faqDetail .attribute dl:after {
            content: "";
            display: block;
            clear: both;
        }

        #faqDetail .attribute dl:nth-of-type(2n+1) {
            clear: both;
        }

        #faqDetail .attribute dl dt {
            float: left;
            display: inline-block;
            min-width: 120px;
            margin: 0 10px 0 0;
            padding: 2px 5px;
            text-align: center;
            vertical-align: middle;
            border: 1px solid #348615;
            font-weight: bold;
            color: #348615;
            font-size: 100%;
            -moz-border-radius: 20px;
            -webkit-border-radius: 20px;
            border-radius: 20px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        #faqDetail .attribute dl dd {
            padding: 4px 0 0;
            font-size: 92.30769%;
        }

    @media only screen and (max-width: 768px) {
        #faqDetail{
            order: 2;
        }
        #faqDetail .attribute dl {
            float: none;
            width: 100%;
            margin: 0 0 10px;
        }
    }

    #faqDetail .columnTwo:after {
        content: "";
        display: block;
        clear: both;
    }

    #faqDetail .columnTwo dl {
        float: left;
        width: 50%;
        margin: 0 0 15px;
        padding: 0 10px 0 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        #faqDetail .columnTwo dl:after {
            content: "";
            display: block;
            clear: both;
        }

        #faqDetail .columnTwo dl:nth-of-type(2n+1) {
            clear: both;
        }

        #faqDetail .columnTwo dl dt {
            float: left;
            display: inline-block;
            min-width: 120px;
            margin: 0 10px 0 0;
            padding: 2px 5px;
            text-align: center;
            vertical-align: middle;
            border: 1px solid #0406A3;
            font-weight: bold;
            color: #0406A3;
            font-size: 100%;
            -moz-border-radius: 20px;
            -webkit-border-radius: 20px;
            border-radius: 20px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        #faqDetail .columnTwo dl dd {
            padding: 4px 0 0;
            font-size: 92.30769%;
        }

    @media only screen and (max-width: 768px) {
        #faqDetail .columnTwo dl {
            float: none;
            width: 100%;
            margin: 0 0 10px;
        }
    }

    #faqDetail .questionnaire {
        padding: 20px 15px 20px;
        background: #eeece7;
        text-align: center;
    }

        #faqDetail .questionnaire dt {
            display: inline-block;
            margin: 0 0 5px;
            padding: 0 0 3px;
            line-height: 1.3;
            border-bottom: 1px solid #348615;
            color: #348615;
            font-weight: bold;
            font-size: 138.46154%;
        }

        #faqDetail .questionnaire dd {
            margin: 0 auto;
            padding: 0;
        }

            #faqDetail .questionnaire dd *:last-child {
                margin-bottom: 0;
            }

        #faqDetail .questionnaire ul {
            margin: 10px auto 15px;
            padding: 0;
        }

            #faqDetail .questionnaire ul li {
                display: inline-block;
                margin: 0 15px;
                padding: 0;
                font-weight: bold;
                font-size: 115.38462%;
            }

            #faqDetail .questionnaire ul input[type="radio"] {
                display: none;
            }

                #faqDetail .questionnaire ul input[type="radio"] + label {
                    display: inline-block;
                    position: relative;
                    cursor: pointer;
                    padding: 5px 0 5px 20px;
                    border-radius: 2px;
                    color: #3e4956;
                    text-align: center;
                    line-height: 1;
                    font-weight: bold;
                    font-size: 107.69231%;
                }

                    #faqDetail .questionnaire ul input[type="radio"] + label:before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 0px;
                        width: 17px;
                        height: 17px;
                        margin-top: -9px;
                        background: #fff;
                        background: #e5eaee;
                        background: linear-gradient(135deg, #ffffff, #e5eaee);
                        border: 1px solid #a1a1a1;
                        -moz-border-radius: 50%;
                        -webkit-border-radius: 50%;
                        border-radius: 50%;
                        -webkit-box-sizing: border-box;
                        -moz-box-sizing: border-box;
                        box-sizing: border-box;
                    }

                    #faqDetail .questionnaire ul input[type="radio"] + label span {
                        font-weight: bold;
                    }

                        #faqDetail .questionnaire ul input[type="radio"] + label span:before {
                            content: "";
                            display: inline-block;
                            width: 13px;
                            height: 13px;
                            background: #ecf1f7;
                            background: linear-gradient(135deg, #ffffff, #ecf1f7);
                            border: 2px solid #ccc;
                            z-index: 1;
                            position: absolute;
                            left: 2px;
                            top: 7px;
                            -moz-border-radius: 50%;
                            -webkit-border-radius: 50%;
                            border-radius: 50%;
                            -webkit-box-sizing: border-box;
                            -moz-box-sizing: border-box;
                            box-sizing: border-box;
                        }

                #faqDetail .questionnaire ul input[type="radio"]:checked + label:after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 6px;
                    width: 5px;
                    height: 5px;
                    margin-top: -3px;
                    border-radius: 50%;
                    background: #222;
                    z-index: 2;
                }

    @media only screen and (max-width: 768px) {
        #faqDetail .questionnaire dt {
            line-height: 1.3;
            font-size: 123.07692%;
        }

        #faqDetail .questionnaire ul {
            text-align: center;
        }

            #faqDetail .questionnaire ul li {
                display: block;
                width: 100%;
                min-width: 0;
                margin: 0 auto;
                text-align: center;
            }

                #faqDetail .questionnaire ul li:nth-child(2) input[type="radio"] + label {
                    border-top: 1px solid #ddd;
                }

                #faqDetail .questionnaire ul li:nth-child(2) input[type="radio"] + label {
                    margin: 5px auto 0;
                    -moz-border-radius: 4px 4px 0 0;
                    -webkit-border-radius: 4px 4px 0 0;
                    border-radius: 4px 4px 0 0;
                }

                #faqDetail .questionnaire ul li:nth-child(6) input[type="radio"] + label {
                    margin: 0 auto 5px;
                    -moz-border-radius: 0 0 4px 4px;
                    -webkit-border-radius: 0 0 4px 4px;
                    border-radius: 0 0 4px 4px;
                }

            #faqDetail .questionnaire ul input[type="radio"] + label {
                display: block;
                padding: 10px 0 10px 35px;
                border: 1px solid #ddd;
                border-top: none;
                background: #fafafa;
                text-align: left;
                -moz-border-radius: 0;
                -webkit-border-radius: 0;
                border-radius: 0;
            }

                #faqDetail .questionnaire ul input[type="radio"] + label:before {
                    left: 10px;
                }

                #faqDetail .questionnaire ul input[type="radio"] + label span:before {
                    left: 12px;
                    top: 12px;
                }

            #faqDetail .questionnaire ul input[type="radio"]:checked + label:after {
                left: 16px;
            }
    }
.radio-group {
    font-size: 0; /* 親要素のフォントサイズをゼロに設定 */
}

    .radio-group > * {
        font-size: initial; /* 子要素に必要なフォントサイズを再設定 */
        margin: 10px; /* マージンをゼロに */
    }

    .st-Data {
        padding: 1rem;
        border: 1px solid #57105d;
        margin-bottom: 50px;
    }

    .st-Data_Item {
        display: flex;
        align-items: center;
        font-size: 107.69231%;
        padding: 5px 15px;
    }

    @media only screen and (max-width: 768px) {
        .st-Data_Item {
            display: block;
            padding: 5px 5px;
            margin-top: 1rem;
        }

            .st-Data_Item:first-of-type {
                margin-top: 0;
            }
    }

    .st-Data_Title {
        flex: 0 0 80px;
        max-width: 80px;
        padding: 3px 0;
        margin-right: 1rem;
        border-right: 1px solid #666;
    }

    @media only screen and (max-width: 768px) {
        .st-Data_Title {
            max-width: 100%;
            margin-right: 0;
            margin-bottom: .5rem;
            border-right: none;
            border-bottom: 1px solid #666;
        }
    }

    .st-Detal {
        flex: 0 0 auto;
        max-width: auto;
    }

    .st-Detal_List {
        display: flex;
        flex-wrap: wrap;
    }

    .st-Detal_Item {
        color: #aaa;
        margin: 3px 1rem 3px 0;
    }


    .st-Detal_Link {
        color: #292929;
    }

    .st-Archive_Title {
        margin: 1rem 0;
        font-size: 130.76923%;
        background: #eeece7;
        padding: .5rem .5rem .5rem 30px;
        position: relative;
        cursor: pointer;
    }

        .st-Archive_Title::before {
            content: "";
            width: 17px;
            height: 17px;
            background: url(../img/common/icon_accordion_colse.png) left top no-repeat;
            display: inline-block;
            position: absolute;
            top: 50%;
            left: 8px;
            transform: translateY(-50%);
        }

        .st-Archive_Title.isActive::before {
            background: url(../img/common/icon_accordion_open.png) left top no-repeat;
        }


    .st-Archive_Data {
        display: none;
    }

    .mc-flex {
        display: flex;
        justify-content: space-between;
    }

    @media only screen and (max-width: 768px) {
        .mc-flex {
            display: block;
        }

            .mc-flex span {
                display: block;
                line-height: 1.6;
            }
    }

/*------------------------------------------------------------
件名のみ検索
------------------------------------------------------------*/

.search-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3px; /* 間隔を追加 */
}

    .search-container label {
        margin-right: 8px;
    }

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .checkbox-container label {
        margin-left: 4px;
    }

#header-search {
    width: fit-content; /* コンテナ幅を内容に応じて自動調整 */
}

    /*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
    .jspContainer {
        overflow: hidden;
        position: relative;
    }

    .jspPane {
        width: 96% !important;
        position: absolute;
    }

    .jspVerticalBar {
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
        background: red;
    }

    .jspHorizontalBar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 16px;
        background: red;
    }

    .jspCap {
        display: none;
    }

    .jspHorizontalBar .jspCap {
        float: left;
    }

    .jspTrack {
        background: #eeece7;
        position: relative;
    }

.jspDrag {
    background: #348615;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}

    .jspHorizontalBar .jspTrack,
    .jspHorizontalBar .jspDrag {
        float: left;
        height: 100%;
    }

    .jspArrow {
        background: #50506d;
        text-indent: -20000px;
        display: block;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }

        .jspArrow.jspDisabled {
            cursor: default;
            background: #80808d;
        }

    .jspVerticalBar .jspArrow {
        height: 16px;
    }

    .jspHorizontalBar .jspArrow {
        width: 16px;
        float: left;
        height: 100%;
    }

    .jspVerticalBar .jspArrow:focus {
        outline: none;
    }

    .jspCorner {
        background: #eeeef4;
        float: left;
        height: 100%;
    }

    /* Yuk! CSS Hack for IE6 3 pixel bug :( */
    * html .jspCorner {
        margin: 0 -3px 0 0;
    }

    /*------------------------------------------------------------
margin設定
------------------------------------------------------------*/
    .mt0 {
        margin-top: 0 !important;
    }

    .mb0 {
        margin-bottom: 0 !important;
    }

    .mt5 {
        margin-top: 5px !important;
    }

    .mt6 {
        margin-top: 6px !important;
    }

    .mt7 {
        margin-top: 7px !important;
    }

    .mt8 {
        margin-top: 8px !important;
    }

    .mt9 {
        margin-top: 9px !important;
    }

    .mt10 {
        margin-top: 10px !important;
    }

    .mt11 {
        margin-top: 11px !important;
    }

    .mt12 {
        margin-top: 12px !important;
    }

    .mt13 {
        margin-top: 13px !important;
    }

    .mt14 {
        margin-top: 14px !important;
    }

    .mt15 {
        margin-top: 15px !important;
    }

    .mt16 {
        margin-top: 16px !important;
    }

    .mt17 {
        margin-top: 17px !important;
    }

    .mt18 {
        margin-top: 18px !important;
    }

    .mt19 {
        margin-top: 19px !important;
    }

    .mt20 {
        margin-top: 20px !important;
    }

    .mt21 {
        margin-top: 21px !important;
    }

    .mt22 {
        margin-top: 22px !important;
    }

    .mt23 {
        margin-top: 23px !important;
    }

    .mt24 {
        margin-top: 24px !important;
    }

    .mt25 {
        margin-top: 25px !important;
    }

    .mt26 {
        margin-top: 26px !important;
    }

    .mt27 {
        margin-top: 27px !important;
    }

    .mt28 {
        margin-top: 28px !important;
    }

    .mt29 {
        margin-top: 29px !important;
    }

    .mt30 {
        margin-top: 30px !important;
    }

    .mt31 {
        margin-top: 31px !important;
    }

    .mt32 {
        margin-top: 32px !important;
    }

    .mt33 {
        margin-top: 33px !important;
    }

    .mt34 {
        margin-top: 34px !important;
    }

    .mt35 {
        margin-top: 35px !important;
    }

    .mt36 {
        margin-top: 36px !important;
    }

    .mt37 {
        margin-top: 37px !important;
    }

    .mt38 {
        margin-top: 38px !important;
    }

    .mt39 {
        margin-top: 39px !important;
    }

    .mt40 {
        margin-top: 40px !important;
    }

    .mt41 {
        margin-top: 41px !important;
    }

    .mt42 {
        margin-top: 42px !important;
    }

    .mt43 {
        margin-top: 43px !important;
    }

    .mt44 {
        margin-top: 44px !important;
    }

    .mt45 {
        margin-top: 45px !important;
    }

    .mt46 {
        margin-top: 46px !important;
    }

    .mt47 {
        margin-top: 47px !important;
    }

    .mt48 {
        margin-top: 48px !important;
    }

    .mt49 {
        margin-top: 49px !important;
    }

    .mt50 {
        margin-top: 50px !important;
    }

    .mt51 {
        margin-top: 51px !important;
    }

    .mt52 {
        margin-top: 52px !important;
    }

    .mt53 {
        margin-top: 53px !important;
    }

    .mt54 {
        margin-top: 54px !important;
    }

    .mt55 {
        margin-top: 55px !important;
    }

    .mt56 {
        margin-top: 56px !important;
    }

    .mt57 {
        margin-top: 57px !important;
    }

    .mt58 {
        margin-top: 58px !important;
    }

    .mt59 {
        margin-top: 59px !important;
    }

    .mt60 {
        margin-top: 60px !important;
    }

    .mt61 {
        margin-top: 61px !important;
    }

    .mt62 {
        margin-top: 62px !important;
    }

    .mt63 {
        margin-top: 63px !important;
    }

    .mt64 {
        margin-top: 64px !important;
    }

    .mt65 {
        margin-top: 65px !important;
    }

    .mt66 {
        margin-top: 66px !important;
    }

    .mt67 {
        margin-top: 67px !important;
    }

    .mt68 {
        margin-top: 68px !important;
    }

    .mt69 {
        margin-top: 69px !important;
    }

    .mt70 {
        margin-top: 70px !important;
    }

    .mt71 {
        margin-top: 71px !important;
    }

    .mt72 {
        margin-top: 72px !important;
    }

    .mt73 {
        margin-top: 73px !important;
    }

    .mt74 {
        margin-top: 74px !important;
    }

    .mt75 {
        margin-top: 75px !important;
    }

    .mt76 {
        margin-top: 76px !important;
    }

    .mt77 {
        margin-top: 77px !important;
    }

    .mt78 {
        margin-top: 78px !important;
    }

    .mt79 {
        margin-top: 79px !important;
    }

    .mt80 {
        margin-top: 80px !important;
    }

    .mt81 {
        margin-top: 81px !important;
    }

    .mt82 {
        margin-top: 82px !important;
    }

    .mt83 {
        margin-top: 83px !important;
    }

    .mt84 {
        margin-top: 84px !important;
    }

    .mt85 {
        margin-top: 85px !important;
    }

    .mt86 {
        margin-top: 86px !important;
    }

    .mt87 {
        margin-top: 87px !important;
    }

    .mt88 {
        margin-top: 88px !important;
    }

    .mt89 {
        margin-top: 89px !important;
    }

    .mt90 {
        margin-top: 90px !important;
    }

    .mt91 {
        margin-top: 91px !important;
    }

    .mt92 {
        margin-top: 92px !important;
    }

    .mt93 {
        margin-top: 93px !important;
    }

    .mt94 {
        margin-top: 94px !important;
    }

    .mt95 {
        margin-top: 95px !important;
    }

    .mt96 {
        margin-top: 96px !important;
    }

    .mt97 {
        margin-top: 97px !important;
    }

    .mt98 {
        margin-top: 98px !important;
    }

    .mt99 {
        margin-top: 99px !important;
    }

    .mt100 {
        margin-top: 100px !important;
    }

    .mb5 {
        margin-bottom: 5px !important;
    }

    .mb6 {
        margin-bottom: 6px !important;
    }

    .mb7 {
        margin-bottom: 7px !important;
    }

    .mb8 {
        margin-bottom: 8px !important;
    }

    .mb9 {
        margin-bottom: 9px !important;
    }

    .mb10 {
        margin-bottom: 10px !important;
    }

    .mb11 {
        margin-bottom: 11px !important;
    }

    .mb12 {
        margin-bottom: 12px !important;
    }

    .mb13 {
        margin-bottom: 13px !important;
    }

    .mb14 {
        margin-bottom: 14px !important;
    }

    .mb15 {
        margin-bottom: 15px !important;
    }

    .mb16 {
        margin-bottom: 16px !important;
    }

    .mb17 {
        margin-bottom: 17px !important;
    }

    .mb18 {
        margin-bottom: 18px !important;
    }

    .mb19 {
        margin-bottom: 19px !important;
    }

    .mb20 {
        margin-bottom: 20px !important;
    }

    .mb21 {
        margin-bottom: 21px !important;
    }

    .mb22 {
        margin-bottom: 22px !important;
    }

    .mb23 {
        margin-bottom: 23px !important;
    }

    .mb24 {
        margin-bottom: 24px !important;
    }

    .mb25 {
        margin-bottom: 25px !important;
    }

    .mb26 {
        margin-bottom: 26px !important;
    }

    .mb27 {
        margin-bottom: 27px !important;
    }

    .mb28 {
        margin-bottom: 28px !important;
    }

    .mb29 {
        margin-bottom: 29px !important;
    }

    .mb30 {
        margin-bottom: 30px !important;
    }

    .mb31 {
        margin-bottom: 31px !important;
    }

    .mb32 {
        margin-bottom: 32px !important;
    }

    .mb33 {
        margin-bottom: 33px !important;
    }

    .mb34 {
        margin-bottom: 34px !important;
    }

    .mb35 {
        margin-bottom: 35px !important;
    }

    .mb36 {
        margin-bottom: 36px !important;
    }

    .mb37 {
        margin-bottom: 37px !important;
    }

    .mb38 {
        margin-bottom: 38px !important;
    }

    .mb39 {
        margin-bottom: 39px !important;
    }

    .mb40 {
        margin-bottom: 40px !important;
    }

    .mb41 {
        margin-bottom: 41px !important;
    }

    .mb42 {
        margin-bottom: 42px !important;
    }

    .mb43 {
        margin-bottom: 43px !important;
    }

    .mb44 {
        margin-bottom: 44px !important;
    }

    .mb45 {
        margin-bottom: 45px !important;
    }

    .mb46 {
        margin-bottom: 46px !important;
    }

    .mb47 {
        margin-bottom: 47px !important;
    }

    .mb48 {
        margin-bottom: 48px !important;
    }

    .mb49 {
        margin-bottom: 49px !important;
    }

    .mb50 {
        margin-bottom: 50px !important;
    }

    .mb51 {
        margin-bottom: 51px !important;
    }

    .mb52 {
        margin-bottom: 52px !important;
    }

    .mb53 {
        margin-bottom: 53px !important;
    }

    .mb54 {
        margin-bottom: 54px !important;
    }

    .mb55 {
        margin-bottom: 55px !important;
    }

    .mb56 {
        margin-bottom: 56px !important;
    }

    .mb57 {
        margin-bottom: 57px !important;
    }

    .mb58 {
        margin-bottom: 58px !important;
    }

    .mb59 {
        margin-bottom: 59px !important;
    }

    .mb60 {
        margin-bottom: 60px !important;
    }

    .mb61 {
        margin-bottom: 61px !important;
    }

    .mb62 {
        margin-bottom: 62px !important;
    }

    .mb63 {
        margin-bottom: 63px !important;
    }

    .mb64 {
        margin-bottom: 64px !important;
    }

    .mb65 {
        margin-bottom: 65px !important;
    }

    .mb66 {
        margin-bottom: 66px !important;
    }

    .mb67 {
        margin-bottom: 67px !important;
    }

    .mb68 {
        margin-bottom: 68px !important;
    }

    .mb69 {
        margin-bottom: 69px !important;
    }

    .mb70 {
        margin-bottom: 70px !important;
    }

    .mb71 {
        margin-bottom: 71px !important;
    }

    .mb72 {
        margin-bottom: 72px !important;
    }

    .mb73 {
        margin-bottom: 73px !important;
    }

    .mb74 {
        margin-bottom: 74px !important;
    }

    .mb75 {
        margin-bottom: 75px !important;
    }

    .mb76 {
        margin-bottom: 76px !important;
    }

    .mb77 {
        margin-bottom: 77px !important;
    }

    .mb78 {
        margin-bottom: 78px !important;
    }

    .mb79 {
        margin-bottom: 79px !important;
    }

    .mb80 {
        margin-bottom: 80px !important;
    }

    .mb81 {
        margin-bottom: 81px !important;
    }

    .mb82 {
        margin-bottom: 82px !important;
    }

    .mb83 {
        margin-bottom: 83px !important;
    }

    .mb84 {
        margin-bottom: 84px !important;
    }

    .mb85 {
        margin-bottom: 85px !important;
    }

    .mb86 {
        margin-bottom: 86px !important;
    }

    .mb87 {
        margin-bottom: 87px !important;
    }

    .mb88 {
        margin-bottom: 88px !important;
    }

    .mb89 {
        margin-bottom: 89px !important;
    }

    .mb90 {
        margin-bottom: 90px !important;
    }

    .mb91 {
        margin-bottom: 91px !important;
    }

    .mb92 {
        margin-bottom: 92px !important;
    }

    .mb93 {
        margin-bottom: 93px !important;
    }

    .mb94 {
        margin-bottom: 94px !important;
    }

    .mb95 {
        margin-bottom: 95px !important;
    }

    .mb96 {
        margin-bottom: 96px !important;
    }

    .mb97 {
        margin-bottom: 97px !important;
    }

    .mb98 {
        margin-bottom: 98px !important;
    }

    .mb99 {
        margin-bottom: 99px !important;
    }

    .mb100 {
        margin-bottom: 100px !important;
    }

    /*------------------------------------------------------------
width設定
------------------------------------------------------------*/
    .wid0 {
        width: 0%;
    }

    .wid1 {
        width: 1%;
    }

    .wid2 {
        width: 2%;
    }

    .wid3 {
        width: 3%;
    }

    .wid4 {
        width: 4%;
    }

    .wid5 {
        width: 5%;
    }

    .wid6 {
        width: 6%;
    }

    .wid7 {
        width: 7%;
    }

    .wid8 {
        width: 8%;
    }

    .wid9 {
        width: 9%;
    }

    .wid10 {
        width: 10%;
    }

    .wid11 {
        width: 11%;
    }

    .wid12 {
        width: 12%;
    }

    .wid13 {
        width: 13%;
    }

    .wid14 {
        width: 14%;
    }

    .wid15 {
        width: 15%;
    }

    .wid16 {
        width: 16%;
    }

    .wid17 {
        width: 17%;
    }

    .wid18 {
        width: 18%;
    }

    .wid19 {
        width: 19%;
    }

    .wid20 {
        width: 20%;
    }

    .wid21 {
        width: 21%;
    }

    .wid22 {
        width: 22%;
    }

    .wid23 {
        width: 23%;
    }

    .wid24 {
        width: 24%;
    }

    .wid25 {
        width: 25%;
    }

    .wid26 {
        width: 26%;
    }

    .wid27 {
        width: 27%;
    }

    .wid28 {
        width: 28%;
    }

    .wid29 {
        width: 29%;
    }

    .wid30 {
        width: 30%;
    }

    .wid31 {
        width: 31%;
    }

    .wid32 {
        width: 32%;
    }

    .wid33 {
        width: 33%;
    }

    .wid34 {
        width: 34%;
    }

    .wid35 {
        width: 35%;
    }

    .wid36 {
        width: 36%;
    }

    .wid37 {
        width: 37%;
    }

    .wid38 {
        width: 38%;
    }

    .wid39 {
        width: 39%;
    }

    .wid40 {
        width: 40%;
    }

    .wid41 {
        width: 41%;
    }

    .wid42 {
        width: 42%;
    }

    .wid43 {
        width: 43%;
    }

    .wid44 {
        width: 44%;
    }

    .wid45 {
        width: 45%;
    }

    .wid46 {
        width: 46%;
    }

    .wid47 {
        width: 47%;
    }

    .wid48 {
        width: 48%;
    }

    .wid49 {
        width: 49%;
    }

    .wid50 {
        width: 50%;
    }

    .wid51 {
        width: 51%;
    }

    .wid52 {
        width: 52%;
    }

    .wid53 {
        width: 53%;
    }

    .wid54 {
        width: 54%;
    }

    .wid55 {
        width: 55%;
    }

    .wid56 {
        width: 56%;
    }

    .wid57 {
        width: 57%;
    }

    .wid58 {
        width: 58%;
    }

    .wid59 {
        width: 59%;
    }

    .wid60 {
        width: 60%;
    }

    .wid61 {
        width: 61%;
    }

    .wid62 {
        width: 62%;
    }

    .wid63 {
        width: 63%;
    }

    .wid64 {
        width: 64%;
    }

    .wid65 {
        width: 65%;
    }

    .wid66 {
        width: 66%;
    }

    .wid67 {
        width: 67%;
    }

    .wid68 {
        width: 68%;
    }

    .wid69 {
        width: 69%;
    }

    .wid70 {
        width: 70%;
    }

    .wid71 {
        width: 71%;
    }

    .wid72 {
        width: 72%;
    }

    .wid73 {
        width: 73%;
    }

    .wid74 {
        width: 74%;
    }

    .wid75 {
        width: 75%;
    }

    .wid76 {
        width: 76%;
    }

    .wid77 {
        width: 77%;
    }

    .wid78 {
        width: 78%;
    }

    .wid79 {
        width: 79%;
    }

    .wid80 {
        width: 80%;
    }

    .wid81 {
        width: 81%;
    }

    .wid82 {
        width: 82%;
    }

    .wid83 {
        width: 83%;
    }

    .wid84 {
        width: 84%;
    }

    .wid85 {
        width: 85%;
    }

    .wid86 {
        width: 86%;
    }

    .wid87 {
        width: 87%;
    }

    .wid88 {
        width: 88%;
    }

    .wid89 {
        width: 89%;
    }

    .wid90 {
        width: 90%;
    }

    .wid91 {
        width: 91%;
    }

    .wid92 {
        width: 92%;
    }

    .wid93 {
        width: 93%;
    }

    .wid94 {
        width: 94%;
    }

    .wid95 {
        width: 95%;
    }

    .wid96 {
        width: 96%;
    }

    .wid97 {
        width: 97%;
    }

    .wid98 {
        width: 98%;
    }

    .wid99 {
        width: 99%;
    }

    .wid100 {
        width: 100%;
    }

    /*@media only screen and (max-width: 768px) {
        .officePhone thead {
            display: none;
        }

        .officePhone td {
            display: block;
        }

            .officePhone td.office {
                background-color: #0406A3;
                color: #fff;
            }

            .officePhone td.group {
                border-bottom: none;
            }

                .officePhone td.group:before {
                    content: "グループ名等：";
                    color: #888;
                    font-size: 12px;
                }

            .officePhone td.phone {
            }

                .officePhone td.phone:before {
                    content: "電話番号：";
                    color: #888;
                    font-size: 12px;
                }

            .officePhone td.fax:before {
                content: "FAX番号：";
                color: #888;
                font-size: 12px;
            }

        .officePhone .pc {
            display: none;
        }
    }*/
