@charset "UTF-8";
.btn,
.btn:visited {
  position: relative;
  display: inline-block;
  padding: 0 2em;
  font-size: 18px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  border: 1px solid #0068b6;
  background-color: #0068b6;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 480px) {
  .btn,
  .btn:visited {
    padding: 0 1em;
    font-size: 16px;
    line-height: 40px;
  }
}
.btn:after,
.btn:visited:after {
  content: '\f105';
  margin-left: 10px;
  font-family: 'Fontawesome';
  font-weight: normal;
}
.btn:hover,
.btn:visited:hover {
  color: #0068b6;
  border-color: rgba(0, 104, 182, 0.3);
  background-color: #fff;
}

/* -----------------------------------
   リセット
     - 原則どのプロジェクトでも共通
   ----------------------------------- */
/* @group 基本 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  font-feature-settings: 'palt';
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: top;
  line-height: 0;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

iframe {
  border: 0;
}

a {
  color: #03c;
  text-decoration: underline;
}

a:visited {
  color: #60a;
  text-decoration: underline;
}

a:hover {
  color: #f00;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: none;
}

em {
  font-style: normal;
  font-weight: bold;
  color: #000;
}

strong {
  font-style: normal;
  font-weight: bold;
  color: #000;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* @end */
/* @group フォーム */
form,
fieldset,
input,
textarea {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

label {
  cursor: pointer;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}

input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

textarea {
  display: block;
  overflow: auto;
  vertical-align: top;
}

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}

/* @end */
/* @group フォント */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Verdana, sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

sub,
sup {
  font-size: 77%;
}

section {
  height: fit-content;
}

select,
input,
button,
textarea,
button {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 1;
}

/* @end */
/* @group HTML5非対応ブラウザ向け */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
  margin: 0;
  padding: 0;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* @end */
@media print {
  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 1.2cm;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
/* @group PCとSPの出し分け */
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none !important;
  }
}
/* @end */
/* -----------------------------------
   ユーティリティ
     - 原則どのプロジェクトでも共通
     - 必要に応じてメンテ
     - フォントサイズや色、幅とマージンなど即座に使えるユーティリティクラス
     - HTMLとCSSの分離が困難になるのでなるべく使わない方向
   ----------------------------------- */
.font5 {
  font-size: 5px !important;
}

.font6 {
  font-size: 6px !important;
}

.font7 {
  font-size: 7px !important;
}

.font8 {
  font-size: 8px !important;
}

.font9 {
  font-size: 9px !important;
}

.font10 {
  font-size: 10px !important;
}

.font11 {
  font-size: 11px !important;
}

.font12 {
  font-size: 12px !important;
}

.font13 {
  font-size: 13px !important;
}

.font14 {
  font-size: 14px !important;
}

.font15 {
  font-size: 15px !important;
}

.font16 {
  font-size: 16px !important;
}

.font17 {
  font-size: 17px !important;
}

.font18 {
  font-size: 18px !important;
}

.font19 {
  font-size: 19px !important;
}

.font20 {
  font-size: 20px !important;
}

.font21 {
  font-size: 21px !important;
}

.font22 {
  font-size: 22px !important;
}

.font23 {
  font-size: 23px !important;
}

.font24 {
  font-size: 24px !important;
}

.font25 {
  font-size: 25px !important;
}

.font26 {
  font-size: 26px !important;
}

.font27 {
  font-size: 27px !important;
}

.font28 {
  font-size: 28px !important;
}

.font29 {
  font-size: 29px !important;
}

.font30 {
  font-size: 30px !important;
}

.font31 {
  font-size: 31px !important;
}

.font32 {
  font-size: 32px !important;
}

.font33 {
  font-size: 33px !important;
}

.font34 {
  font-size: 34px !important;
}

.font35 {
  font-size: 35px !important;
}

.font36 {
  font-size: 36px !important;
}

.font37 {
  font-size: 37px !important;
}

.font38 {
  font-size: 38px !important;
}

.font39 {
  font-size: 39px !important;
}

.font40 {
  font-size: 40px !important;
}

.font41 {
  font-size: 41px !important;
}

.font42 {
  font-size: 42px !important;
}

.font43 {
  font-size: 43px !important;
}

.font44 {
  font-size: 44px !important;
}

.font45 {
  font-size: 45px !important;
}

.font46 {
  font-size: 46px !important;
}

.font47 {
  font-size: 47px !important;
}

.font48 {
  font-size: 48px !important;
}

.font49 {
  font-size: 49px !important;
}

.font50 {
  font-size: 50px !important;
}

.font51 {
  font-size: 51px !important;
}

.font52 {
  font-size: 52px !important;
}

.font53 {
  font-size: 53px !important;
}

.font54 {
  font-size: 54px !important;
}

.font55 {
  font-size: 55px !important;
}

.font56 {
  font-size: 56px !important;
}

.font57 {
  font-size: 57px !important;
}

.font58 {
  font-size: 58px !important;
}

.font59 {
  font-size: 59px !important;
}

.font60 {
  font-size: 60px !important;
}

.font61 {
  font-size: 61px !important;
}

.font62 {
  font-size: 62px !important;
}

.font63 {
  font-size: 63px !important;
}

.font64 {
  font-size: 64px !important;
}

.lh10,
.lh1 {
  line-height: 1 !important;
}

.lh11 {
  line-height: 1.1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh13 {
  line-height: 1.3 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh15 {
  line-height: 1.5 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh17 {
  line-height: 1.7 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh19 {
  line-height: 1.9 !important;
}

.lh20,
.lh2 {
  line-height: 2 !important;
}

.lh21 {
  line-height: 2.1 !important;
}

.lh22 {
  line-height: 2.2 !important;
}

.lh23 {
  line-height: 2.3 !important;
}

.lh24 {
  line-height: 2.4 !important;
}

.lh25 {
  line-height: 2.5 !important;
}

.lh26 {
  line-height: 2.6 !important;
}

.lh27 {
  line-height: 2.7 !important;
}

.lh28 {
  line-height: 2.8 !important;
}

.lh29 {
  line-height: 2.9 !important;
}

.lh30,
.lh3 {
  line-height: 3 !important;
}

/*
iOSとmacOSのSafari10で、palt を使うと、約物（句読点・疑問符・括弧・アクセント）の直後にリンク要素があると、約物の文字の間隔が潰れる。
*/
.palt {
  /*すべて詰める*/
  font-feature-settings: 'palt';
}

.pkna {
  /*かなのみ詰める*/
  font-feature-settings: 'pkna';
}

.sans-serif {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Verdana, sans-serif;
}

.serif {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.mono {
  font-family: monospace;
}

.bold {
  font-weight: bold;
}

.nobold {
  font-weight: normal;
}

strong {
  font-weight: bold;
  color: #f00;
}

em {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

body {
  color: #444;
}

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

.gray {
  color: #444 !important;
}

.red {
  color: #f00 !important;
}

.purple {
  color: #83c !important;
}

.blue {
  color: #03c !important;
}

.green {
  color: #080 !important;
}

.yellow {
  color: #ff0 !important;
}

.orange {
  color: #f90 !important;
}

.deeporange {
  color: #f60 !important;
}

.darkred {
  color: #b00 !important;
}

.salmonpink {
  color: #e78 !important;
}

.lightblue {
  color: #009DE6 !important;
}

.lightgreen {
  color: #7b2 !important;
}

.yellowgreen {
  color: #9c1 !important;
}

.bluegreen {
  color: #3a9 !important;
}

.lightyellow {
  color: #ff9 !important;
}

.w1em {
  width: 1em !important;
}

.w2em {
  width: 2em !important;
}

.w3em {
  width: 3em !important;
}

.w4em {
  width: 4em !important;
}

.w5em {
  width: 5em !important;
}

.w10 {
  width: 10px !important;
}

.w20 {
  width: 20px !important;
}

.w30 {
  width: 30px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.w110 {
  width: 110px !important;
}

.w120 {
  width: 120px !important;
}

.w130 {
  width: 130px !important;
}

.w140 {
  width: 140px !important;
}

.w150 {
  width: 150px !important;
}

.w160 {
  width: 160px !important;
}

.w170 {
  width: 170px !important;
}

.w180 {
  width: 180px !important;
}

.w185 {
  width: 185px !important;
}

.w190 {
  width: 190px !important;
}

.w195 {
  width: 195px !important;
}

.w200 {
  width: 200px !important;
}

.w210 {
  width: 210px !important;
}

.w220 {
  width: 220px !important;
}

.w230 {
  width: 230px !important;
}

.w240 {
  width: 240px !important;
}

.w250 {
  width: 250px !important;
}

.w260 {
  width: 260px !important;
}

.w270 {
  width: 270px !important;
}

.w280 {
  width: 280px !important;
}

.w290 {
  width: 290px !important;
}

.w300 {
  width: 300px !important;
}

.w310 {
  width: 310px !important;
}

.w320 {
  width: 320px !important;
}

.w330 {
  width: 330px !important;
}

.w340 {
  width: 340px !important;
}

.w350 {
  width: 350px !important;
}

.w360 {
  width: 360px !important;
}

.w370 {
  width: 370px !important;
}

.w380 {
  width: 380px !important;
}

.w385 {
  width: 385px !important;
}

.w390 {
  width: 390px !important;
}

.w400 {
  width: 400px !important;
}

.w410 {
  width: 410px !important;
}

.w420 {
  width: 420px !important;
}

.w430 {
  width: 430px !important;
}

.w440 {
  width: 440px !important;
}

.w450 {
  width: 450px !important;
}

.w460 {
  width: 460px !important;
}

.w470 {
  width: 470px !important;
}

.w480 {
  width: 480px !important;
}

.w490 {
  width: 490px !important;
}

.w500 {
  width: 500px !important;
}

.w510 {
  width: 510px !important;
}

.w520 {
  width: 520px !important;
}

.w530 {
  width: 530px !important;
}

.w540 {
  width: 540px !important;
}

.w550 {
  width: 550px !important;
}

.w560 {
  width: 560px !important;
}

.w570 {
  width: 570px !important;
}

.w580 {
  width: 580px !important;
}

.w590 {
  width: 590px !important;
}

.w600 {
  width: 600px !important;
}

.w610 {
  width: 610px !important;
}

.w620 {
  width: 620px !important;
}

.w630 {
  width: 630px !important;
}

.w640 {
  width: 640px !important;
}

.w650 {
  width: 650px !important;
}

.w660 {
  width: 660px !important;
}

.w670 {
  width: 670px !important;
}

.w680 {
  width: 680px !important;
}

.w690 {
  width: 690px !important;
}

.w700 {
  width: 700px !important;
}

.w800 {
  width: 800px !important;
}

.w900 {
  width: 900px !important;
}

.w1000 {
  width: 1000px !important;
}

.w1100 {
  width: 1100px !important;
}

.w1200 {
  width: 1200px !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.max-w100p {
  max-width: 100% !important;
}

@media only screen and (max-width: 480px) {
  .sp-w1em {
    width: 1em !important;
  }

  .sp-w2em {
    width: 2em !important;
  }

  .sp-w3em {
    width: 3em !important;
  }

  .sp-w4em {
    width: 4em !important;
  }

  .sp-w5em {
    width: 5em !important;
  }

  .sp-w10 {
    width: 10px !important;
  }

  .sp-w20 {
    width: 20px !important;
  }

  .sp-w30 {
    width: 30px !important;
  }

  .sp-w40 {
    width: 40px !important;
  }

  .sp-w50 {
    width: 50px !important;
  }

  .sp-w60 {
    width: 60px !important;
  }

  .sp-w70 {
    width: 70px !important;
  }

  .sp-w80 {
    width: 80px !important;
  }

  .sp-w90 {
    width: 90px !important;
  }

  .sp-w100 {
    width: 100px !important;
  }

  .sp-w110 {
    width: 110px !important;
  }

  .sp-w120 {
    width: 120px !important;
  }

  .sp-w130 {
    width: 130px !important;
  }

  .sp-w140 {
    width: 140px !important;
  }

  .sp-w150 {
    width: 150px !important;
  }

  .sp-w160 {
    width: 160px !important;
  }

  .sp-w170 {
    width: 170px !important;
  }

  .sp-w180 {
    width: 180px !important;
  }

  .sp-w185 {
    width: 185px !important;
  }

  .sp-w190 {
    width: 190px !important;
  }

  .sp-w195 {
    width: 195px !important;
  }

  .sp-w200 {
    width: 200px !important;
  }

  .sp-w210 {
    width: 210px !important;
  }

  .sp-w220 {
    width: 220px !important;
  }

  .sp-w230 {
    width: 230px !important;
  }

  .sp-w240 {
    width: 240px !important;
  }

  .sp-w250 {
    width: 250px !important;
  }

  .sp-w260 {
    width: 260px !important;
  }

  .sp-w270 {
    width: 270px !important;
  }

  .sp-w280 {
    width: 280px !important;
  }

  .sp-w290 {
    width: 290px !important;
  }

  .sp-w300 {
    width: 300px !important;
  }

  .sp-w310 {
    width: 310px !important;
  }

  .sp-w320 {
    width: 320px !important;
  }

  .sp-w330 {
    width: 330px !important;
  }

  .sp-w340 {
    width: 340px !important;
  }

  .sp-w350 {
    width: 350px !important;
  }

  .sp-w360 {
    width: 360px !important;
  }

  .sp-w370 {
    width: 370px !important;
  }

  .sp-w380 {
    width: 380px !important;
  }

  .sp-w385 {
    width: 385px !important;
  }

  .sp-w390 {
    width: 390px !important;
  }

  .sp-w400 {
    width: 400px !important;
  }

  .sp-w410 {
    width: 410px !important;
  }

  .sp-w420 {
    width: 420px !important;
  }

  .sp-w430 {
    width: 430px !important;
  }

  .sp-w440 {
    width: 440px !important;
  }

  .sp-w450 {
    width: 450px !important;
  }

  .sp-w460 {
    width: 460px !important;
  }

  .sp-w470 {
    width: 470px !important;
  }

  .sp-w480 {
    width: 480px !important;
  }

  .sp-w490 {
    width: 490px !important;
  }

  .sp-w500 {
    width: 500px !important;
  }

  .sp-w510 {
    width: 510px !important;
  }

  .sp-w520 {
    width: 520px !important;
  }

  .sp-w530 {
    width: 530px !important;
  }

  .sp-w540 {
    width: 540px !important;
  }

  .sp-w550 {
    width: 550px !important;
  }

  .sp-w560 {
    width: 560px !important;
  }

  .sp-w570 {
    width: 570px !important;
  }

  .sp-w580 {
    width: 580px !important;
  }

  .sp-w590 {
    width: 590px !important;
  }

  .sp-w600 {
    width: 600px !important;
  }

  .sp-w610 {
    width: 610px !important;
  }

  .sp-w620 {
    width: 620px !important;
  }

  .sp-w630 {
    width: 630px !important;
  }

  .sp-w640 {
    width: 640px !important;
  }

  .sp-w650 {
    width: 650px !important;
  }

  .sp-w660 {
    width: 660px !important;
  }

  .sp-w670 {
    width: 670px !important;
  }

  .sp-w680 {
    width: 680px !important;
  }

  .sp-w690 {
    width: 690px !important;
  }

  .sp-w700 {
    width: 700px !important;
  }

  .sp-w800 {
    width: 800px !important;
  }

  .sp-w900 {
    width: 900px !important;
  }

  .sp-w1000 {
    width: 1000px !important;
  }

  .sp-w1100 {
    width: 1100px !important;
  }

  .sp-w1200 {
    width: 1200px !important;
  }

  .sp-w5p {
    width: 5% !important;
  }

  .sp-w10p {
    width: 10% !important;
  }

  .sp-w15p {
    width: 15% !important;
  }

  .sp-w20p {
    width: 20% !important;
  }

  .sp-w25p {
    width: 25% !important;
  }

  .sp-w30p {
    width: 30% !important;
  }

  .sp-w35p {
    width: 35% !important;
  }

  .sp-w40p {
    width: 40% !important;
  }

  .sp-w45p {
    width: 45% !important;
  }

  .sp-w50p {
    width: 50% !important;
  }

  .sp-w55p {
    width: 55% !important;
  }

  .sp-w60p {
    width: 60% !important;
  }

  .sp-w65p {
    width: 65% !important;
  }

  .sp-w70p {
    width: 70% !important;
  }

  .sp-w75p {
    width: 75% !important;
  }

  .sp-w80p {
    width: 80% !important;
  }

  .sp-w85p {
    width: 85% !important;
  }

  .sp-w90p {
    width: 90% !important;
  }

  .sp-w95p {
    width: 95% !important;
  }

  .sp-w100p {
    width: 100% !important;
  }

  .sp-max-w100p {
    max-width: 100% !important;
  }
}
/*
 * m*  → 上下左右マージン
 * mT* → 上マージン
 * mB* → 下マージン
 * mL* → 左マージン
 * mR* → 右マージン
 * mV* → 上下マージン
 * mH* → 左右マージン
 */
.m0 {
  margin: 0 !important;
}

.m05 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mV0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mV05 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mV10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mV15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mV20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mV25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mV30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mV35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mV40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mV45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.mV50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mH0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mH05 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mH10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mH15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mH20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mH25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.mH30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mH35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.mH40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mH45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.mH50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.mT0 {
  margin-top: 0 !important;
}

.mT05 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT15 {
  margin-top: 15px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT25 {
  margin-top: 25px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT35 {
  margin-top: 35px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT45 {
  margin-top: 45px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mB0 {
  margin-bottom: 0 !important;
}

.mB05 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB35 {
  margin-bottom: 35px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB45 {
  margin-bottom: 45px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mL0 {
  margin-left: 0 !important;
}

.mL05 {
  margin-left: 5px !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL15 {
  margin-left: 15px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL25 {
  margin-left: 25px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mL35 {
  margin-left: 35px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL45 {
  margin-left: 45px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL60 {
  margin-left: 60px !important;
}

.mL70 {
  margin-left: 70px !important;
}

.mL80 {
  margin-left: 80px !important;
}

.mL90 {
  margin-left: 90px !important;
}

.mL100 {
  margin-left: 100px !important;
}

.mL110 {
  margin-left: 110px !important;
}

.mL120 {
  margin-left: 120px !important;
}

.mL130 {
  margin-left: 130px !important;
}

.mL140 {
  margin-left: 130px !important;
}

.mL140 {
  margin-left: 140px !important;
}

.mL150 {
  margin-left: 150px !important;
}

.mL160 {
  margin-left: 160px !important;
}

.mL170 {
  margin-left: 170px !important;
}

.mL180 {
  margin-left: 180px !important;
}

.mL190 {
  margin-left: 190px !important;
}

.mL200 {
  margin-left: 200px !important;
}

.mR0 {
  margin-right: 0 !important;
}

.mR05 {
  margin-right: 5px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR15 {
  margin-right: 15px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR25 {
  margin-right: 25px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR35 {
  margin-right: 35px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR45 {
  margin-right: 45px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR60 {
  margin-right: 60px !important;
}

.mR70 {
  margin-right: 70px !important;
}

.mR80 {
  margin-right: 80px !important;
}

.mR90 {
  margin-right: 90px !important;
}

.mR100 {
  margin-right: 100px !important;
}

.mR110 {
  margin-right: 110px !important;
}

.mR120 {
  margin-right: 120px !important;
}

.mR130 {
  margin-right: 130px !important;
}

.mR140 {
  margin-right: 140px !important;
}

.mR150 {
  margin-right: 150px !important;
}

.mR160 {
  margin-right: 160px !important;
}

.mR170 {
  margin-right: 170px !important;
}

.mR180 {
  margin-right: 180px !important;
}

.mR190 {
  margin-right: 190px !important;
}

.mR200 {
  margin-right: 200px !important;
}

.m05em {
  margin: 0.5em !important;
}

.m1em {
  margin: 1em !important;
}

.m15em {
  margin: 1.5em !important;
}

.m2em {
  margin: 2em !important;
}

.m25em {
  margin: 2.5em !important;
}

.m3em {
  margin: 3em !important;
}

.m35em {
  margin: 3.5em !important;
}

.m4em {
  margin: 4em !important;
}

.m45em {
  margin: 4.5em !important;
}

.m5em {
  margin: 5em !important;
}

.mV05em {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.mV1em {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.mV15em {
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}

.mV2em {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}

.mV25em {
  margin-top: 2.5em !important;
  margin-bottom: 2.5em !important;
}

.mV3em {
  margin-top: 3em !important;
  margin-bottom: 3em !important;
}

.mV35em {
  margin-top: 3.5em !important;
  margin-bottom: 3.5em !important;
}

.mV4em {
  margin-top: 4em !important;
  margin-bottom: 4em !important;
}

.mV45em {
  margin-top: 4.5em !important;
  margin-bottom: 4.5em !important;
}

.mV5em {
  margin-top: 5em !important;
  margin-bottom: 5em !important;
}

.mH05em {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
}

.mH1em {
  margin-left: 1em !important;
  margin-right: 1em !important;
}

.mH15em {
  margin-left: 1.5em !important;
  margin-right: 1.5em !important;
}

.mH2em {
  margin-left: 2em !important;
  margin-right: 2em !important;
}

.mH25em {
  margin-left: 2.5em !important;
  margin-right: 2.5em !important;
}

.mH3em {
  margin-left: 3em !important;
  margin-right: 3em !important;
}

.mH35em {
  margin-left: 3.5em !important;
  margin-right: 3.5em !important;
}

.mH4em {
  margin-left: 4em !important;
  margin-right: 4em !important;
}

.mH45em {
  margin-left: 4.5em !important;
  margin-right: 4.5em !important;
}

.mH5em {
  margin-left: 5em !important;
  margin-right: 5em !important;
}

.mT05em {
  margin-top: 0.5em !important;
}

.mT1em {
  margin-top: 1em !important;
}

.mT15em {
  margin-top: 1.5em !important;
}

.mT2em {
  margin-top: 2em !important;
}

.mT25em {
  margin-top: 2.5em !important;
}

.mT3em {
  margin-top: 3em !important;
}

.mT35em {
  margin-top: 3.5em !important;
}

.mT4em {
  margin-top: 4em !important;
}

.mT45em {
  margin-top: 4.5em !important;
}

.mT5em {
  margin-top: 5em !important;
}

.mB05em {
  margin-bottom: 0.5em !important;
}

.mB1em {
  margin-bottom: 1em !important;
}

.mB15em {
  margin-bottom: 1.5em !important;
}

.mB2em {
  margin-bottom: 2em !important;
}

.mB25em {
  margin-bottom: 2.5em !important;
}

.mB3em {
  margin-bottom: 3em !important;
}

.mB35em {
  margin-bottom: 3.5em !important;
}

.mB4em {
  margin-bottom: 4em !important;
}

.mB45em {
  margin-bottom: 4.5em !important;
}

.mB5em {
  margin-bottom: 5em !important;
}

.mL05em {
  margin-left: 0.5em !important;
}

.mL1em {
  margin-left: 1em !important;
}

.mL15em {
  margin-left: 1.5em !important;
}

.mL2em {
  margin-left: 2em !important;
}

.mL25em {
  margin-left: 2.5em !important;
}

.mL3em {
  margin-left: 3em !important;
}

.mL35em {
  margin-left: 3.5em !important;
}

.mL4em {
  margin-left: 4em !important;
}

.mL45em {
  margin-left: 4.5em !important;
}

.mL5em {
  margin-left: 5em !important;
}

.mR05em {
  margin-right: 0.5em !important;
}

.mR1em {
  margin-right: 1em !important;
}

.mR15em {
  margin-right: 1.5em !important;
}

.mR2em {
  margin-right: 2em !important;
}

.mR25em {
  margin-right: 2.5em !important;
}

.mR3em {
  margin-right: 3em !important;
}

.mR35em {
  margin-right: 3.5em !important;
}

.mR4em {
  margin-right: 4em !important;
}

.mR45em {
  margin-right: 4.5em !important;
}

.mR5em {
  margin-right: 5em !important;
}

/*
 * m*  → 上下左右マージン
 * mT* → 上マージン
 * mB* → 下マージン
 * mL* → 左マージン
 * mR* → 右マージン
 * mV* → 上下マージン
 * mH* → 左右マージン
 */
@media only screen and (max-width: 480px) {
  .sp-m0 {
    margin: 0 !important;
  }

  .sp-m05 {
    margin: 5px !important;
  }

  .sp-m10 {
    margin: 10px !important;
  }

  .sp-m15 {
    margin: 15px !important;
  }

  .sp-m20 {
    margin: 20px !important;
  }

  .sp-m25 {
    margin: 25px !important;
  }

  .sp-m30 {
    margin: 30px !important;
  }

  .sp-m35 {
    margin: 35px !important;
  }

  .sp-m40 {
    margin: 40px !important;
  }

  .sp-m45 {
    margin: 45px !important;
  }

  .sp-m50 {
    margin: 50px !important;
  }

  .sp-mV0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .sp-mV05 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .sp-mV10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .sp-mV15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .sp-mV20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .sp-mV25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .sp-mV30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .sp-mV35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .sp-mV40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .sp-mV45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .sp-mV50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .sp-mH0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sp-mH05 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }

  .sp-mH10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .sp-mH15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .sp-mH20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .sp-mH25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }

  .sp-mH30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .sp-mH35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }

  .sp-mH40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .sp-mH45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }

  .sp-mH50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }

  .sp-mT0 {
    margin-top: 0 !important;
  }

  .sp-mT05 {
    margin-top: 5px !important;
  }

  .sp-mT10 {
    margin-top: 10px !important;
  }

  .sp-mT15 {
    margin-top: 15px !important;
  }

  .sp-mT20 {
    margin-top: 20px !important;
  }

  .sp-mT25 {
    margin-top: 25px !important;
  }

  .sp-mT30 {
    margin-top: 30px !important;
  }

  .sp-mT35 {
    margin-top: 35px !important;
  }

  .sp-mT40 {
    margin-top: 40px !important;
  }

  .sp-mT45 {
    margin-top: 45px !important;
  }

  .sp-mT50 {
    margin-top: 50px !important;
  }

  .sp-mB0 {
    margin-bottom: 0 !important;
  }

  .sp-mB05 {
    margin-bottom: 5px !important;
  }

  .sp-mB10 {
    margin-bottom: 10px !important;
  }

  .sp-mB15 {
    margin-bottom: 15px !important;
  }

  .sp-mB20 {
    margin-bottom: 20px !important;
  }

  .sp-mB25 {
    margin-bottom: 25px !important;
  }

  .sp-mB30 {
    margin-bottom: 30px !important;
  }

  .sp-mB35 {
    margin-bottom: 35px !important;
  }

  .sp-mB40 {
    margin-bottom: 40px !important;
  }

  .sp-mB45 {
    margin-bottom: 45px !important;
  }

  .sp-mB50 {
    margin-bottom: 50px !important;
  }

  .sp-mL0 {
    margin-left: 0 !important;
  }

  .sp-mL05 {
    margin-left: 5px !important;
  }

  .sp-mL10 {
    margin-left: 10px !important;
  }

  .sp-mL15 {
    margin-left: 15px !important;
  }

  .sp-mL20 {
    margin-left: 20px !important;
  }

  .sp-mL25 {
    margin-left: 25px !important;
  }

  .sp-mL30 {
    margin-left: 30px !important;
  }

  .sp-mL35 {
    margin-left: 35px !important;
  }

  .sp-mL40 {
    margin-left: 40px !important;
  }

  .sp-mL45 {
    margin-left: 45px !important;
  }

  .sp-mL50 {
    margin-left: 50px !important;
  }

  .sp-mL60 {
    margin-left: 60px !important;
  }

  .sp-mL70 {
    margin-left: 70px !important;
  }

  .sp-mL80 {
    margin-left: 80px !important;
  }

  .sp-mL90 {
    margin-left: 90px !important;
  }

  .sp-mL100 {
    margin-left: 100px !important;
  }

  .sp-mL110 {
    margin-left: 110px !important;
  }

  .sp-mL120 {
    margin-left: 120px !important;
  }

  .sp-mL130 {
    margin-left: 130px !important;
  }

  .sp-mL140 {
    margin-left: 130px !important;
  }

  .sp-mL140 {
    margin-left: 140px !important;
  }

  .sp-mL150 {
    margin-left: 150px !important;
  }

  .sp-mL160 {
    margin-left: 160px !important;
  }

  .sp-mL170 {
    margin-left: 170px !important;
  }

  .sp-mL180 {
    margin-left: 180px !important;
  }

  .sp-mL190 {
    margin-left: 190px !important;
  }

  .sp-mL200 {
    margin-left: 200px !important;
  }

  .sp-mR0 {
    margin-right: 0 !important;
  }

  .sp-mR05 {
    margin-right: 5px !important;
  }

  .sp-mR10 {
    margin-right: 10px !important;
  }

  .sp-mR15 {
    margin-right: 15px !important;
  }

  .sp-mR20 {
    margin-right: 20px !important;
  }

  .sp-mR25 {
    margin-right: 25px !important;
  }

  .sp-mR30 {
    margin-right: 30px !important;
  }

  .sp-mR35 {
    margin-right: 35px !important;
  }

  .sp-mR40 {
    margin-right: 40px !important;
  }

  .sp-mR45 {
    margin-right: 45px !important;
  }

  .sp-mR50 {
    margin-right: 50px !important;
  }

  .sp-mR60 {
    margin-right: 60px !important;
  }

  .sp-mR70 {
    margin-right: 70px !important;
  }

  .sp-mR80 {
    margin-right: 80px !important;
  }

  .sp-mR90 {
    margin-right: 90px !important;
  }

  .sp-mR100 {
    margin-right: 100px !important;
  }

  .sp-mR110 {
    margin-right: 110px !important;
  }

  .sp-mR120 {
    margin-right: 120px !important;
  }

  .sp-mR130 {
    margin-right: 130px !important;
  }

  .sp-mR140 {
    margin-right: 140px !important;
  }

  .sp-mR150 {
    margin-right: 150px !important;
  }

  .sp-mR160 {
    margin-right: 160px !important;
  }

  .sp-mR170 {
    margin-right: 170px !important;
  }

  .sp-mR180 {
    margin-right: 180px !important;
  }

  .sp-mR190 {
    margin-right: 190px !important;
  }

  .sp-mR200 {
    margin-right: 200px !important;
  }

  .sp-m05em {
    margin: 0.5em !important;
  }

  .sp-m1em {
    margin: 1em !important;
  }

  .sp-m15em {
    margin: 1.5em !important;
  }

  .sp-m2em {
    margin: 2em !important;
  }

  .sp-m25em {
    margin: 2.5em !important;
  }

  .sp-m3em {
    margin: 3em !important;
  }

  .sp-m35em {
    margin: 3.5em !important;
  }

  .sp-m4em {
    margin: 4em !important;
  }

  .sp-m45em {
    margin: 4.5em !important;
  }

  .sp-m5em {
    margin: 5em !important;
  }

  .sp-mV05em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }

  .sp-mV1em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }

  .sp-mV15em {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
  }

  .sp-mV2em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }

  .sp-mV25em {
    margin-top: 2.5em !important;
    margin-bottom: 2.5em !important;
  }

  .sp-mV3em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }

  .sp-mV35em {
    margin-top: 3.5em !important;
    margin-bottom: 3.5em !important;
  }

  .sp-mV4em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }

  .sp-mV45em {
    margin-top: 4.5em !important;
    margin-bottom: 4.5em !important;
  }

  .sp-mV5em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }

  .sp-mH05em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }

  .sp-mH1em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }

  .sp-mH15em {
    margin-left: 1.5em !important;
    margin-right: 1.5em !important;
  }

  .sp-mH2em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }

  .sp-mH25em {
    margin-left: 2.5em !important;
    margin-right: 2.5em !important;
  }

  .sp-mH3em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }

  .sp-mH35em {
    margin-left: 3.5em !important;
    margin-right: 3.5em !important;
  }

  .sp-mH4em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }

  .sp-mH45em {
    margin-left: 4.5em !important;
    margin-right: 4.5em !important;
  }

  .sp-mH5em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }

  .sp-mT05em {
    margin-top: 0.5em !important;
  }

  .sp-mT1em {
    margin-top: 1em !important;
  }

  .sp-mT15em {
    margin-top: 1.5em !important;
  }

  .sp-mT2em {
    margin-top: 2em !important;
  }

  .sp-mT25em {
    margin-top: 2.5em !important;
  }

  .sp-mT3em {
    margin-top: 3em !important;
  }

  .sp-mT35em {
    margin-top: 3.5em !important;
  }

  .sp-mT4em {
    margin-top: 4em !important;
  }

  .sp-mT45em {
    margin-top: 4.5em !important;
  }

  .sp-mT5em {
    margin-top: 5em !important;
  }

  .sp-mB05em {
    margin-bottom: 0.5em !important;
  }

  .sp-mB1em {
    margin-bottom: 1em !important;
  }

  .sp-mB15em {
    margin-bottom: 1.5em !important;
  }

  .sp-mB2em {
    margin-bottom: 2em !important;
  }

  .sp-mB25em {
    margin-bottom: 2.5em !important;
  }

  .sp-mB3em {
    margin-bottom: 3em !important;
  }

  .sp-mB35em {
    margin-bottom: 3.5em !important;
  }

  .sp-mB4em {
    margin-bottom: 4em !important;
  }

  .sp-mB45em {
    margin-bottom: 4.5em !important;
  }

  .sp-mB5em {
    margin-bottom: 5em !important;
  }

  .sp-mL05em {
    margin-left: 0.5em !important;
  }

  .sp-mL1em {
    margin-left: 1em !important;
  }

  .sp-mL15em {
    margin-left: 1.5em !important;
  }

  .sp-mL2em {
    margin-left: 2em !important;
  }

  .sp-mL25em {
    margin-left: 2.5em !important;
  }

  .sp-mL3em {
    margin-left: 3em !important;
  }

  .sp-mL35em {
    margin-left: 3.5em !important;
  }

  .sp-mL4em {
    margin-left: 4em !important;
  }

  .sp-mL45em {
    margin-left: 4.5em !important;
  }

  .sp-mL5em {
    margin-left: 5em !important;
  }

  .sp-mR05em {
    margin-right: 0.5em !important;
  }

  .sp-mR1em {
    margin-right: 1em !important;
  }

  .sp-mR15em {
    margin-right: 1.5em !important;
  }

  .sp-mR2em {
    margin-right: 2em !important;
  }

  .sp-mR25em {
    margin-right: 2.5em !important;
  }

  .sp-mR3em {
    margin-right: 3em !important;
  }

  .sp-mR35em {
    margin-right: 3.5em !important;
  }

  .sp-mR4em {
    margin-right: 4em !important;
  }

  .sp-mR45em {
    margin-right: 4.5em !important;
  }

  .sp-mR5em {
    margin-right: 5em !important;
  }
}
ul.normal {
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 1.7em;
}

ul.normal-min {
  list-style-type: disc;
  padding-left: 1.3em;
}

ol.normal {
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2em;
}

ol.normal-min {
  list-style-type: decimal;
  padding-left: 1.3em;
}

dl.normal {
  margin-top: 1em;
  margin-bottom: 1em;
}

dl.normal > dt {
  font-weight: bold;
}

dl.inline > dt {
  display: inline;
  margin-right: .5em;
  font-weight: bold;
}

dl.inline > dd {
  display: inline;
}

ul.kome {
  margin: 0;
  padding: 0;
}

ul.kome > li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

ul.kome > li:before {
  content: '※';
  position: absolute;
  left: 0;
}

ul.arrow {
  margin: 0;
  padding: 0;
}

ul.arrow > li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

ul.arrow > li:before {
  content: '\f138';
  margin-right: 3px;
  font-family: 'Fontawesome';
  font-weight: normal;
}

table {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  border-collapse: collapse;
}

table > tr > th,
table > tr > td,
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
  padding: .5em .8em;
  border: 1px solid #d1d8df;
}

table > tr > th,
table > thead > tr > th,
table > tbody > tr > th {
  font-weight: bold;
}

table > tr > th,
table > thead > tr > th {
  background-color: #e5e5e5;
}

table > tbody > tr > th {
  background-color: #f5f5f5;
}

.box-basic {
  margin-bottom: 1em;
  border: 1px solid #999;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
}

.box-line {
  margin-bottom: 1em;
  padding: 10px;
  border: 1px solid #456;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.box-white {
  margin-bottom: 1em;
  padding: 10px;
  background: #fff;
  border: 1px solid #bcd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.box-blue {
  margin-bottom: 1em;
  padding: 10px;
  background: #eef1ff;
  border: 1px solid #bcd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.box-yellow {
  margin-bottom: 1em;
  padding: 10px;
  background: #ffe;
  border: 1px solid #d30;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.box-red {
  margin-bottom: 1em;
  padding: 10px;
  background: #fff9f5;
  border: 1px solid #d30;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.cf,
.clearFix,
.clearfix,
.clear,
.wrapper {
  *zoom: 1;
}

.cf:after,
.clearFix:after,
.clearfix:after,
.clear:after,
.wrapper:after {
  content: '';
  display: block;
  clear: both;
}

.hide {
  display: none;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.table-cell {
  display: table-cell;
}

.float_left,
.floatleft,
.floatLeft,
.floatL,
.float_l,
.fl {
  float: left;
}

.float_right,
.floatright,
.floatRight,
.floatR,
.float_r,
.fr {
  float: right;
}

.align_left,
.alignleft,
.alignLeft,
.alignL,
.align_l,
.al {
  text-align: left !important;
}

.align_right,
.alignright,
.alignRight,
.alignR,
.align_r,
.ar {
  text-align: right !important;
}

.align_center,
.aligncenter,
.alignCenter,
.alignC,
.align_c,
.ac {
  text-align: center !important;
}

.justify {
  text-align: justify !important;
}

.nojustify {
  text-align: left !important;
}

i, .fa {
  padding-right: 5px;
}

.fa-right {
  padding-left: 5px;
  padding-right: 0;
}

.fa-both {
  padding-left: 5px;
  padding-right: 5px;
}

.fa-min {
  padding-left: 0;
  padding-right: 0;
}

a:hover img {
  opacity: 0.9;
}

a.noeffect:hover img {
  opacity: inherit;
}

@media screen and (max-width: 480px) {
  .sp-hide {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  .pc-hide {
    display: none;
  }
}
@media print{
    .pc-hide{
        display: none;
    }
}
/* -----------------------------------
   共通レイアウト
   ----------------------------------- */
body {
  font-size: 16px;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .container {
    min-width: 1000px;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    min-width: 300px;
  }
}

a,
a:visited,
a:hover {
  color: #0068b6;
}

.site-header {
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #fff;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 480px) {
  .site-header {
    width: 100%;
    height: 80px;
    box-shadow: 0 0 5px rgba(0, 104, 182, 0.5);
    border-bottom: 1px solid rgba(0, 104, 182, 0.5);
    background-color: #fff;
  }
}
.site-header .logo {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .site-header .logo {
    width: 100%;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  .site-header .logo {
    width: 100%;
    padding: 0 10px;
    text-align: center;
  }
}
.site-header .logo a {
  display: inline-block;
  width: 217px;
  height: 65px;
  margin-top: 16px;
  background: no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 480px) {
  .site-header .logo a {
    width: auto;
    height: 50px;
    margin-top: 15px;
  }
}
.site-header .logo img {
    height: 100%;
}

.site-footer {
  position: relative;
  width: 100%;
  padding: 40px 0;
  background-color: rgba(98, 134, 161, 0.1);
}
@media only screen and (max-width: 480px) {
  .site-footer {
    padding: 20px 0 50px;
  }
}
.site-footer .copyright {
  margin-top: 20px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
  color: #666;
}
@media only screen and (max-width: 480px) {
  .site-footer .copyright {
    margin-top: 10px;
  }
}
.site-footer .traina {
  text-align: center;
}
.site-footer .traina span {
  margin-right: 15px;
  font-size: 12px;
  font-weight: normal;
  line-height: 30px;
  vertical-align: top;
  color: #999;
}
.site-footer .traina img {
  vertical-align: top;
}

.pagetop {
  position: fixed;
  left: calc(50% + 540px);
  bottom: -80px;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  outline: 0;
  border: 0;
  border-radius: 100%;
  background: rgba(0, 104, 182, 0.2);
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.pagetop:before {
  content: '\e909';
  position: absolute;
  left: 15px;
  top: 15px;
  font-family: 'traina-icon';
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  text-indent: 0;
  color: #fff;
}
.pagetop.active {
  bottom: 20px;
}
.pagetop:hover {
  background-color: #0068b6;
}
@media only screen and (max-width: 1200px) {
  .pagetop {
    left: calc(50% + 460px);
  }
}
@media only screen and (max-width: 480px) {
  .pagetop {
    left: auto;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .pagetop:before {
    left: 10px;
    top: 10px;
    font-size: 30px;
  }
  .pagetop.active {
    bottom: 10px;
  }
}

.contents {
  width: 1200px;
  margin: 30px auto;
  padding: 0;
  background-color: #fff;
}
@media only screen and (max-width: 1200px) {
  .contents {
    width: 100%;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  .contents {
    margin: 20px 0 0;
  }
}
.contents .contents-inner {
  display: flex;
  min-height: 500px;
}
.contents .contents-inner .section-wrpper {
  flex: 1;
  padding-left: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1200px) {
  .contents .contents-inner .section-wrpper {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .contents .contents-inner .section-wrpper {
    padding-left: 0;
  }
}
.contents .contents-inner .section-wrpper .section {
  width: 100%;
  margin-bottom: 30px;
}
.sp-menu-btn {
  display: none;
}
@media only screen and (max-width: 480px) {
  .sp-menu-btn {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 25px;
    width: 36px;
    height: 26px;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .sp-menu-btn:after {
    content: 'カテゴリ';
    position: absolute;
    left: -10px;
    bottom: -20px;
    width: 56px;
    font-size: 9px;
    font-weight: bold;
    line-height: 15px;
    color: #0068b6;
  }
  .sp-menu-btn.active:after {
    content: '閉じる';
  }
  .sp-menu-btn .bar {
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0068b6;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .sp-menu-btn .bar:nth-of-type(1) {
    top: 0px;
  }
  .sp-menu-btn .bar:nth-of-type(2) {
    top: 12px;
  }
  .sp-menu-btn .bar:nth-of-type(3) {
    bottom: 0px;
  }
  .sp-menu-btn .bar:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
  }
  .sp-menu-btn .bar:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .sp-menu-btn .bar:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
  }
  .sp-menu-btn.active .bar:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
  }
  .sp-menu-btn.active .bar:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.active .bar:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(12px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(12px) rotate(45deg);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(12px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(12px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(-12px) rotate(-45deg);
    }
  }
}

.category-tree {
  width: 250px;
  background-color: #fff;
}
.attribute-area {
  width: 250px;
  background-color: #fff;
  padding-top: 10px;
}
@media only screen and (max-width: 480px) {
  .category-tree, .attribute-area {
    z-index: 1;
    display: none;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    min-height: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  }
}
.category-tree .menu-title, .attribute-area .menu-title {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 3px 3px 0 0;
  background-color: #0068b6;
}
.category-tree .sp-menu-close, .attribute-area .sp-menu-close {
  display: none;
}
@media only screen and (max-width: 480px) {
  .category-tree .sp-menu-close, .attribute-area .sp-menu-close {
    z-index: 1;
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 20;
    font-weight: bold;
    color: #0068b6;
    outline: 0;
    border: 0;
    background-color: rgba(0, 104, 182, 0.1);
  }
}

ul.fancytree-container {
  padding: 0;
  font-size: 15px;
  border: 0 none;
  background-color: #fff;
}
ul.fancytree-container:focus {
  outline: none;
}
ul.fancytree-container .fancytree-node {
  position: relative;
  min-height: 40px;
  border-bottom: 1px solid rgba(0, 104, 182, 0.3);
}
@media only screen and (max-width: 480px) {
  ul.fancytree-container .fancytree-node {
    min-height: 50px;
  }
}
ul.fancytree-container .fancytree-node span.fancytree-title {
  width: calc( 100% - 22px );
  white-space: normal;
  margin: 0;
  padding: 10px 18px 10px 5px;
  line-height: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media only screen and (max-width: 480px) {
  ul.fancytree-container .fancytree-node span.fancytree-title {
    width: calc( 100% - 52px );
    padding: 15px 18px 15px 5px;
  }
}
ul.fancytree-container .fancytree-node:after {
  content: '\f105';
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  height: 18px;
  margin: auto;
  font-family: 'Fontawesome';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}
ul.fancytree-container span.fancytree-icon,
ul.fancytree-container span.fancytree-checkbox,
ul.fancytree-container span.fancytree-expander,
ul.fancytree-container span.fancytree-custom-icon {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-top: 14px;
}
@media only screen and (max-width: 480px) {
  ul.fancytree-container span.fancytree-icon,
  ul.fancytree-container span.fancytree-checkbox,
  ul.fancytree-container span.fancytree-expander,
  ul.fancytree-container span.fancytree-custom-icon {
    margin: auto;
    width: 52px;
    height: 52px;
  }
}
ul.fancytree-container .fancytree-has-children .fancytree-expander {
  position: relative;
  background-image: none;
}
ul.fancytree-container .fancytree-has-children .fancytree-expander:before {
  content: '\e906';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'traina-icon';
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: rgba(0, 104, 182, 0.8);
}
@media only screen and (max-width: 480px) {
  ul.fancytree-container .fancytree-has-children .fancytree-expander:before {
    left: 20px;
    top: 20px;
  }
}
ul.fancytree-container .fancytree-has-children.fancytree-expanded .fancytree-expander {
  background-image: none;
}
ul.fancytree-container .fancytree-has-children.fancytree-expanded .fancytree-expander:before {
  content: '\e907';
  color: #ee8800;
}
ul.fancytree-container .fancytree-exp-n span.fancytree-expander,
ul.fancytree-container .fancytree-exp-nl span.fancytree-expander {
  background-image: url(../js/lib/fancytree/skin-win8/icons.gif);
  cursor: default;
  display: none;
}
ul.fancytree-container span.fancytree-node:hover,
ul.fancytree-container span.fancytree-active,
ul.fancytree-container span.fancytree-focused,
ul.fancytree-container span.fancytree-selected {
  color: #d57900;
  background-color: #ffedd5;
}
ul.fancytree-container span.fancytree-node:hover span.fancytree-title,
ul.fancytree-container span.fancytree-active span.fancytree-title,
ul.fancytree-container span.fancytree-focused span.fancytree-title,
ul.fancytree-container span.fancytree-selected span.fancytree-title {
  color: #6f3f00 !important;
  border: 1px solid transparent !important;
  background-color: transparent !important;
}
ul.fancytree-container span.fancytree-node:hover .fancytree-expander:before,
ul.fancytree-container span.fancytree-active .fancytree-expander:before,
ul.fancytree-container span.fancytree-focused .fancytree-expander:before,
ul.fancytree-container span.fancytree-selected .fancytree-expander:before {
  color: #ee8800 !important;
}

.bread-area {
  background-color: rgba(98, 134, 161, 0.1);
}
.bread-area ul {
  width: 1200px;
  min-height: 40px;
  margin: 0 auto;
  padding: 12px 0;
}
@media only screen and (max-width: 1200px) {
  .bread-area ul {
    width: 100%;
    padding: 12px 10px;
  }
}
.bread-area ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
}
.bread-area ul li a {
  color: #444;
}
.bread-area ul li:before {
  content: '\f0da';
  margin: 0 10px 0 8px;
  font-family: 'Fontawesome';
  font-weight: normal;
  line-height: 1;
  color: rgba(68, 68, 68, 0.5);
}
.bread-area ul li:first-child:before {
  content: none;
}
.bread-area ul em {
  font-weight: bold;
  color: #ee8800;
}

.search-area {
  padding: 30px 0 30px;
  background-color: #6286a1;
}
@media only screen and (max-width: 480px) {
  .search-area {
    padding: 20px 0 0;
  }
}
body.top .search-area {
  padding-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  body.top .search-area {
    padding-bottom: 0;
  }
}
.search-area .search-input {
  position: relative;
  width: 840px;
  margin: 0 auto;
  padding-bottom: 0px;
}
@media only screen and (max-width: 480px) {
  .search-area .search-input {
    width: calc(100% - 20px);
  }
}
.search-area .search-input .keyword-frm {
  height: 48px;
  padding: 5px 60px 5px 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 38px;
  outline: 0;
  border: 0;
  border-radius: 4px;
}
.search-area .search-input .keyword-frmbtn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 48px;
  outline: 0;
  border: 0;
  border-radius: 0 4px 4px 0;
  background-color: #fff;
  text-indent: -9999px;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.search-area .search-input .keyword-frmbtn:before {
  content: '\e900';
  position: absolute;
  left: 18px;
  top: 12px;
  font-family: 'traina-icon';
  font-size: 24px;
  font-weight: normal;
  text-indent: 0;
  color: #0068b6;
}
.search-area .search-input .keyword-frmbtn:hover {
  background-color: rgba(0, 104, 182, 0.1);
}
.search-area .search-check {
  display: block;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 0px;
  width: 840px;
  color: #fff;
  font-weight: bold;
}
.search-area .search-Id,
.search-area .search-attachedFile {
  display: inline;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 0px;
  width: 840px;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .search-area .search-check,
  .search-area .search-Id,
  .search-area .search-attachedFile {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
  .search-area .search-check * ,
  .search-area .search-Id * ,
  .search-area .search-attachedFile * {
    vertical-align: middle;
  }
}
.search-area .search-option {
  margin: 0 auto;
  padding: 10px 0;
  width: 840px;
  color: #fff;
}
@media only screen and (max-width: 480px) {
  .search-area .search-option {
    width: 100%;
    text-align: center;
  }
}
.search-area .search-option * {
  vertical-align: top;
}
.search-area .search-option .title {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  line-height: 18px;
}
@media only screen and (max-width: 480px) {
  .search-area .search-option .title {
    display: none;
  }
}
.search-area .search-option label {
  margin-left: 10px;
}
@media only screen and (max-width: 480px) {
  .search-area .search-option label {
    margin: 0 5px;
  }
}
.search-area .search-option .form-check-input {
  display: none;
}
.search-area .search-option .form-check-input + span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
}
@media only screen and (max-width: 480px) {
  .search-area .search-option .form-check-input + span {
    font-size: 13px;
  }
}
.search-area .search-option .form-check-input + span::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.search-area .search-option .form-check-input:checked + span {
  color: #ffb655;
}
.search-area .search-option .form-check-input:checked + span::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #ee8800;
  border-radius: 50%;
}

.hot-keyword {
  width: 840px;
  margin: 0 auto;
  padding: 15px 25px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .hot-keyword {
    width: 100%;
    padding: 10px 5px;
  }
}
.hot-keyword .title {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.hot-keyword ul {
  text-align: center;
}
.hot-keyword ul li {
  display: inline-block;
  margin: 0 1px;
}
.hot-keyword ul a.keyword-item {
  display: inline-block;
  padding: 0 12px;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  color: #0068b6;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
@media only screen and (max-width: 480px) {
  .hot-keyword ul a.keyword-item {
    padding: 0 8px;
    font-size: 12px;
  }
}
.hot-keyword ul a.keyword-item:hover {
  background-color: #ee8800;
  color: #fff;
}

.section-title {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 20px 20px 20px 50px;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #0068b6;
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-left: 10px solid #0068b6;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 15px center;
}
.section-title:before {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  height: 24px;
  margin: auto 0;
  font-family: 'traina-icon';
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  vertical-align: top;
}
.news-list .section-title:before {
  content: '\e902';
}
.category-list .section-title:before {
  content: '\e901';
}
.faq-list.popular .section-title:before {
  content: '\e905';
}

.faq-list.recent .section-title:before {
  content: '\e904';
}

.news-list .list-contents {
  padding: 0 20px;
  border-radius: 0 0 3px 3px;
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-top: 0;
}

@media only screen and (max-width: 480px) {
  .news-list .list-contents {
    padding: 0;
  }
}

.news-list .list-item a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 40px;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  color: #0068b6;
  border-bottom: 1px dotted rgba(0, 104, 182, 0.6);
}

.news-list .list-item a:before {
  content: '\e90a';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  height: 18px;
  margin: auto;
  font-family: 'traina-icon';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  .news-list .list-item a {
    font-size: 15px;
  }
}

.news-list .list-item a:hover {
  text-decoration: underline;
}

.news-list .list-item:last-child a {
  border-bottom: 0 none;
}

.news-list .list-item.more-list {
  text-align: right;
}

.news-list .list-item.more-list a {
  display: inline-block;
  padding-left: 15px;
}

.news-list .list-item.more-list a:before {
  content: '\f105';
  position: absolute;
  left: 0;
  top: -4px;
  height: 18px;
  margin: auto;
  font-family: 'Fontawesome';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.news-list .list-item.more-list a:hover {
  text-decoration: underline;
}

.news-list li.list-item a {
  display: flex;
  padding-left: 15px;
}
.news-list li.list-item a:before {
  content: none;
}
@media only screen and (max-width: 480px) {
  .news-list li.list-item a {
    display: block;
  }
}
.news-list li.list-item a:hover {
  text-decoration: none;
}
.news-list li.list-item a span.news-date {
  font-weight: bold;
  color: #444444;
  margin-right: 30px;
}
@media only screen and (max-width: 480px) {
  .news-list li.list-item a span.news-date {
    display: block;
    margin-bottom: 5px;
  }
}
.news-list li.list-item a span.news-data:hover {
  text-decoration: underline;
}

.category-list .list-contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .category-list .list-contents {
    display: block;
  }
}
.category-list .list-contents .list-item {
  width: 32%;
  margin-top: 15px;
}
@media only screen and (max-width: 480px) {
  .category-list .list-contents .list-item {
    width: 100%;
  }
}

.category-box {
  font-feature-settings: 'palt';
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-radius: 3px;
}
.category-box .category-title {
  display: table;
  table-layout: fixed;
  width: 100%;
  min-height: 60px;
}
@media only screen and (max-width: 480px) {
  .category-box .category-title {
    min-height: 0;
  }
}
.category-box .category-title a {
  display: table-cell;
  position: relative;
  padding: 16px 10px 16px 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  color: #0068b6;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid rgba(0, 104, 182, 0.3);
  background: rgba(0, 104, 182, 0.1);
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media only screen and (max-width: 480px) {
  .category-box .category-title a {
    padding: 12px 10px 12px 40px;
    font-size: 16px;
  }
}
.category-box .category-title a:before {
  content: '\e901';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  height: 20px;
  margin: auto;
  margin-right: 10px;
  font-family: 'traina-icon';
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}
.category-box .category-title a:hover {
  color: #ee8800;
  text-decoration: none;
}
.category-box .category-contents {
  padding: 15px 10px;
}
@media only screen and (max-width: 480px) {
  .category-box .category-contents {
    padding: 0 10px;
  }
}
.category-box .category-contents li.category-item {
  position: relative;
  padding: 5px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.4;
}
@media only screen and (max-width: 480px) {
  .category-box .category-contents li.category-item {
    padding: 15px 5px 15px 20px;
    border-bottom: 1px dotted rgba(0, 104, 182, 0.6);
  }
  .category-box .category-contents li.category-item:last-child {
    border-bottom: 0;
  }
}
.category-box .category-contents li.category-item:before {
  content: '\f105';
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'Fontawesome';
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #0068b6;
}
@media only screen and (max-width: 480px) {
  .category-box .category-contents li.category-item:before {
    top: 18px;
  }
}
.category-box .category-contents li.category-item a {
  display: block;
  text-decoration: none;
  color: #0068b6;
}
.category-box .category-contents li.category-item a:hover {
  text-decoration: underline;
}

.result-header {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
  color: #0068b6;
  word-break: break-all;
}
@media only screen and (max-width: 480px) {
  .result-header {
    padding-left: 0;
    background: none;
  }
}
.result-header .result-title {
  float: left;
  padding-left: 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
@media only screen and (max-width: 480px) {
  .result-header .result-title {
    float: none;
    padding-left: 0;
  }
}
.result-header .result-title em {
  color: #0068b6;
}
@media only screen and (max-width: 480px) {
  .result-header .result-title em {
    display: block;
    padding: 0 0 10px 40px;
    border-bottom: 1px solid rgba(0, 104, 182, 0.3);
  }
}
.result-header .result-title:before {
  content: '\e903';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'traina-icon';
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
}
.result-header .result-number {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
  vertical-align: top;
  margin-left: 15px;
}
@media only screen and (max-width: 480px) {
  .result-header .result-number {
    display: block;
    margin-left: 0;
    margin-top: 15px;
  }
}
.result-header .result-sort {
  float: right;
}
@media only screen and (max-width: 480px) {
  .result-header .result-sort {
    float: none;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.result-header .result-sort label {
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
}
.result-header .result-sort select {
  min-width: 120px;
  max-width: 200px;
  height: 30px;
  border-color: rgba(0, 104, 182, 0.3);
  border-radius: 3px;
  color: #0068b6;
}

.result-box {
  margin-bottom: 20px;
  word-break: break-all;
}
.result-box:last-child {
  margin-bottom: 0;
}
.result-box > a {
  display: block;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.result-box > a:hover {
  background-color: rgba(0, 104, 182, 0.1);
}
.result-box > a .q-area {
  position: relative;
  padding: 20px 30px 20px 70px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #0068b6;
  border: 3px solid rgba(0, 104, 182, 0.15);
  border-bottom: 0;
  background: rgba(0, 104, 182, 0.1);
}
.result-box > a .q-area:before {
  content: '\e90a';
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: 'traina-icon';
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
}
@media only screen and (max-width: 480px) {
  .result-box > a .q-area {
    padding: 15px 10px 15px 40px;
    font-size: 15px;
    background-size: 20px;
    background-position: 10px 20px;
  }
  .result-box > a .q-area:before {
    left: 10px;
    font-size: 20px;
  }
}
.result-box > a .a-area {
  position: relative;
  padding: 20px 30px 45px 70px;
  border: 3px solid rgba(0, 104, 182, 0.1);
  border-top: 0;
}
.result-box > a .a-area:before {
  content: '\e90c';
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: 'traina-icon';
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  color: #ee8800;
}
@media only screen and (max-width: 480px) {
  .result-box > a .a-area {
    padding: 15px 10px 40px 40px;
    background-size: 20px;
    background-position: 10px 20px;
  }
  .result-box > a .a-area:before {
    left: 10px;
    font-size: 20px;
  }
}
.result-box > a .a-area .main-data {
  display: block;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  color: #444444;
}
@media only screen and (max-width: 480px) {
  .result-box > a .a-area .main-data {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.result-box > a .go-detail {
  display: none;
}
@media only screen and (max-width: 480px) {
  .result-box > a .go-detail {
    display: block;
    position: relative;
    left: -15px;
    width: 120px;
    margin: 10px auto 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    border-radius: 24px;
    background-color: rgba(0, 104, 182, 0.1);
  }
}
.result-box > a .sub-data {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
  color: rgba(0, 104, 182, 0.6);
}
.result-box > a .last-modified-date {
  margin-left: 1em;
}
.result-box > a .faq-number {
  margin-left: 1em;
}
@media only screen and (max-width: 480px) {
  .result-box > a .sub-data {
    text-align: left;
  }
  .result-box > a .faq-number {
    display: block;
    margin-left: 0;
  }
}
.page-nav {
  width: 100%;
  margin: 0 0 50px;
  text-align: center;
}
.page-nav .page-nav-btn {
  text-align: center;
}
.page-nav li {
  display: inline-block;
}
.page-nav .go-page {
  display: block;
  min-width: 40px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid rgba(0, 104, 182, 0.3);
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
@media only screen and (max-width: 480px) {
  .page-nav .go-page {
    min-width: 30px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 320px) {
  .page-nav .go-page {
    min-width: 28px;
  }
}
.page-nav .go-page:hover {
  background-color: rgba(0, 104, 182, 0.1);
}
.page-nav .go-page.current {
  color: #fff;
  background-color: #0068b6;
}
.page-nav .go-first,
.page-nav .go-last,
.page-nav .go-prev,
.page-nav .go-next {
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
@media only screen and (max-width: 480px) {
  .page-nav .go-first,
  .page-nav .go-last,
  .page-nav .go-prev,
  .page-nav .go-next {
    width: 30px;
    padding: 0;
    line-height: 35px;
    border-radius: 3px;
    background-color: rgba(0, 104, 182, 0.1);
  }
  .page-nav .go-first span,
  .page-nav .go-last span,
  .page-nav .go-prev span,
  .page-nav .go-next span {
    display: none;
  }
}
@media only screen and (max-width: 320px) {
  .page-nav .go-first,
  .page-nav .go-last,
  .page-nav .go-prev,
  .page-nav .go-next {
    width: 28px;
  }
}
.page-nav .go-first:hover,
.page-nav .go-last:hover,
.page-nav .go-prev:hover,
.page-nav .go-next:hover {
  background-color: rgba(0, 104, 182, 0.1);
}
.page-nav .go-prev {
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .page-nav .go-prev {
    margin-right: 0;
  }
}
.page-nav .go-next {
  margin-left: 10px;
}
@media only screen and (max-width: 480px) {
  .page-nav .go-next {
    margin-left: 0;
  }
}
.page-nav .go-first:before {
  content: '\f104\f104';
  padding-right: 5px;
  font-family: 'Fontawesome';
  font-weight: normal;
}
.page-nav .go-prev:before {
  content: '\f104';
  padding-right: 5px;
  font-family: 'Fontawesome';
  font-weight: normal;
}
.page-nav .go-next:after {
  content: '\f105';
  padding-left: 5px;
  font-family: 'Fontawesome';
  font-weight: normal;
}
.page-nav .go-last:after {
  content: '\f105\f105';
  padding-left: 5px;
  font-family: 'Fontawesome';
  font-weight: normal;
}
.page-nav .page-nav-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1;
  color: #0068b6;
}
@media only screen and (max-width: 480px) {
  .page-nav .go-first:before,
  .page-nav .go-prev:before,
  .page-nav .go-next:after,
  .page-nav .go-last:after {
    padding: 0;
    font-size: 20px;
  }
}

.detail-function {
  margin-bottom: 15px;
}
.detail-function a,
.detail-function button {
  display: inline-block;
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid rgba(0, 104, 182, 0.5);
  border-radius: 3px;
  color: #0068b6;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.detail-function a:hover,
.detail-function button:hover {
  color: #fff;
  background-color: #0068b6;
}
.detail-function a.page-back,
.detail-function button.page-back {
  float: left;
}
.detail-function a.page-back:before,
.detail-function button.page-back:before {
  content: '\f104';
  margin-right: 10px;
  font-family: 'Fontawesome';
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}
.detail-function a.page-print,
.detail-function button.page-print {
  float: right;
}
@media only screen and (max-width: 480px) {
  .detail-function a.page-print,
  .detail-function button.page-print {
    display: none;
  }
}
.detail-function a.page-print:before,
.detail-function button.page-print:before {
  content: '\f02f';
  margin-right: 10px;
  font-family: 'Fontawesome';
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}
.detail-function:after {
  content: '';
  display: block;
  clear: both;
}

.detail-box {
  position: relative;
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(0, 104, 182, 0.5);
  word-break: break-all;
}
.detail-box .q-area {
  display: table;
  width: 100%;
  min-height: 120px;
}
.detail-box .q-area span {
  display: table-cell;
  padding: 30px 50px 30px 120px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  vertical-align: middle;
  color: #0068b6;
  background-color: rgba(0, 104, 182, 0.1);
}
.detail-box .q-area span:before {
  content: '\e90a';
  position: absolute;
  left: 35px;
  top: 35px;
  font-family: 'traina-icon';
  font-size: 50px;
  font-weight: normal;
  line-height: 1;
}
@media only screen and (max-width: 480px) {
  .detail-box .q-area span {
    padding: 15px;
    font-size: 18px;
  }
  .detail-box .q-area span:before {
    position: static;
    display: block;
    width: 42px;
    margin: 0 auto 15px;
    font-size: 42px;
  }
}
.detail-box .a-area {
  position: relative;
  min-height: 120px;
  padding: 30px 50px 45px 120px;
}
.detail-box .a-area:before {
  content: '\e90c';
  position: absolute;
  left: 35px;
  top: 35px;
  font-family: 'traina-icon';
  font-size: 50px;
  font-weight: normal;
  line-height: 1;
  color: #ee8800;
}
@media only screen and (max-width: 480px) {
  .detail-box .a-area {
    padding: 15px 15px 35px;
  }
  .detail-box .a-area:before {
    position: static;
    display: block;
    width: 42px;
    margin: 0 auto 15px;
    font-size: 42px;
  }
}
.detail-box .a-area .main-data {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}
.detail-box .a-area .main-data ol,
.detail-box .a-area .main-data ul {
  display: block;
  margin: 1em 0 1em 0;
  padding-left: 40px;
}
.detail-box .a-area .main-data ol ol,
.detail-box .a-area .main-data ol ul,
.detail-box .a-area .main-data ul ol,
.detail-box .a-area .main-data ul ul {
  margin: 0px;
}
.detail-box .a-area .main-data ol {
  list-style-type: decimal;
}
.detail-box .a-area .main-data ul {
  list-style-type: disc;
}
.detail-box .a-area .main-data ol ul,
.detail-box .a-area .main-data ul ul {
  list-style-type: circle;
}
.detail-box .a-area .main-data ol ol ul,
.detail-box .a-area .main-data ol ul ul,
.detail-box .a-area .main-data ul ol ul,
.detail-box .a-area .main-data ul ul ul {
  list-style-type: square;
}
.detail-box .sub-data {
  position: absolute;
  right: 50px;
  bottom: 8px;
  font-size: 12px;
  line-height: 12px;
  text-align: right;
  color: rgba(0, 104, 182, 0.6);
}
.detail-box .last-modified-date {
  margin-left: 1em;
}
.detail-box .faq-number {
  margin-left: 1em;
}
@media only screen and (max-width: 480px) {
  .detail-box .sub-data {
    position:unset;
  }
  .detail-box .open-date {
    margin-left: 0;
    margin-top: 0.5em;
    display: block;
    text-align: left;
  }
  .detail-box .last-modified-date {
    margin-left: 0;
    margin-top: 0.5em;
    display: block;
    text-align: left;
  }
  .detail-box .faq-number {
    margin-left: 0;
    margin-top: 0.5em;
    display: block;
    text-align: left;
  }
}
.detail-box .data-area {
  margin: 0 50px 0 30px;
  padding: 15px 0;
  border-top: 1px dotted rgba(0, 104, 182, 0.6);
}
@media only screen and (max-width: 480px) {
  .detail-box .data-area {
    margin: 0 15px;
    padding: 20px 0;
  }
}
.detail-box .data-area .category-data,
.detail-box .data-area .attached-files-data {
  margin-bottom: 10px;
}
.detail-box .data-area .category-data,
.detail-box .data-area .attached-files-data,
.detail-box .data-area .attribution-data {
  overflow: hidden;
}
.detail-box .data-area .category-data dt,
.detail-box .data-area .attached-files-data dt,
.detail-box .data-area .attribution-data dt {
  float: left;
  width: 70px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  color: rgba(46, 98, 137, 0.5);
  border-radius: 24px;
  background-color: rgba(46, 98, 137, 0.1);
}
@media only screen and (max-width: 480px) {
  .detail-box .data-area .category-data dt,
  .detail-box .data-area .attached-files-data dt,
  .detail-box .data-area .attribution-data dt {
    float: none;
    margin-left: -3px;
    margin-bottom: 10px;
    margin: 0 auto 10px;
  }
}
.detail-box .data-area .category-data dd,
.detail-box .data-area .attached-files-data dd,
.detail-box .data-area .attribution-data dd {
  float: right;
  width: calc( 100% - 90px);
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #0068b6;
}
@media only screen and (max-width: 480px) {
  .detail-box .data-area .category-data dd,
  .detail-box .data-area .attached-files-data dd,
  .detail-box .data-area .attribution-data dd {
    float: none;
    width: auto;
  }
}
.detail-box .data-area .category-data a,
.detail-box .data-area .attached-files-data a,
.detail-box .data-area .attribution-data a {
  text-decoration: none;
}
.detail-box .data-area .category-data a:hover,
.detail-box .data-area .attached-files-data a:hover,
.detail-box .data-area .attribution-data a:hover {
  text-decoration: underline;
}
.detail-box .data-area .category-path,
.detail-box .data-area .attached-file {
  position: relative;
  margin-bottom: 4px;
  padding-left: 25px;
}

.detail-box .data-area .category-path:before,
.detail-box .data-area .attached-file:before {
  content: '\e901';
  position: absolute;
  left: 0;
  font-family: 'traina-icon';
  font-weight: normal;
  line-height: 24px;
}

.detail-box .data-area .category-path li,
.detail-box .data-area .attached-file li {
  display: inline-block;
}

.detail-box .data-area .category-path li:before,
.detail-box .data-area .attached-file li:before {
  content: '\f0da';
  margin: 0 10px 0 8px;
  font-family: 'Fontawesome';
  font-weight: normal;
  line-height: 1;
  color: rgba(0, 104, 182, 0.5);
}
.detail-box .data-area .category-path li:first-child:before,
.detail-box .data-area .attached-file li:first-child:before {
  content: none;
}
.detail-box .data-area .attribution-list li {
  display: inline-block;
  margin-right: 12px;
}
.detail-box .data-area .attribution-list li:after {
  content: ', ';
}
.detail-box .data-area .attribution-list li:last-child:after {
  content: none;
}

.detail-box .faq-list-related {
  position: relative;
  padding: 0px 40px 26px 30px;
}

@media only screen and (max-width: 480px) {
  .detail-box .faq-list-related {
  padding: 0px 15px 26px 15px;
  }
}

.detail-box .related-title {
  position: relative;
  width: 100%;
  min-height: 30px;
  padding: 15px 7px 15px 50px;
  font-size: 13px;
  font-weight: bold;
  line-height: 10px;
  color: #0068b6;
  border-radius: 3px 3px 0 0;
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-left: 10px solid #0068b6;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 15px center;
  margin: auto;
}

.detail-box .related-title:before {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  height: 24px;
  margin: auto 0;
  font-family: 'traina-icon';
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  vertical-align: top;
}

.detail-box .related-title:before {
  content: '\e903';
}

.detail-box .related-contents {
  width: 100%;
  padding: 0 20px;
  margin: auto;
}

.detail-box .related-contents .related-list li,
.detail-box .related-contents .related-list-last li {
  display: inline-block;
}

.detail-box .related-contents .related-list li:before,
.detail-box .related-contents .related-list-last li:before {
  content: '\e90a';
  margin: 0 10px 0 8px;
  font-family: 'Fontawesome';
  font-weight: normal;
  line-height: 1;
  color: rgba(0, 104, 182, 0.5);
}

.detail-box .related-contents .related-list li:first-child:before,
.detail-box .related-contents .related-list-last li:first-child:before {
  content: none;
}

.detail-box .related-contents .related-list a{
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 10px 10px 10px 27px;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  color: #0068b6;
  border-bottom: 1px dotted rgba(0, 104, 182, 0.6);
}

.detail-box .related-contents .related-list a:hover,
.detail-box .related-contents .related-list-last a:hover {
  text-decoration: underline;
}

.detail-box .related-contents .related-list a:before,
.detail-box .related-contents .related-list-last a:before {
  content: '\e90a';
  position: absolute;
  left: 0;
  font-family: 'traina-icon';
  font-weight: normal;
  line-height: 24px;
}

.detail-box .related-contents .related-list .main-data,
.detail-box .related-contents .related-list-last .main-data {
  display: flow-root;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 4px 0px 0px 0px;
}

.detail-box .related-contents .related-list-last a{
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 10px 10px 10px 27px;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  color: #0068b6;
}

.detail-box .fb-area {
  position: relative;
  padding: 30px 50px 30px 120px;
  border-top: 1px dotted rgba(0, 104, 182, 0.6);
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area {
    padding: 20px 15px;
  }
}
.detail-box .fb-area:before {
  content: '\e90e';
  position: absolute;
  left: 35px;
  top: 35px;
  font-family: 'traina-icon';
  font-size: 50px;
  font-weight: normal;
  line-height: 1;
  color: rgba(0, 104, 182, 0.5);
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area:before {
    content: none;
  }
}
.detail-box .fb-area .fb-wrapper {
  padding: 20px;
  border-radius: 3px;
  background-color: rgba(0, 104, 182, 0.1);
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .fb-wrapper {
    padding: 10px;
  }
}
.detail-box .fb-area .fb-wrapper.thanks {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  font-weight: bold;
  color: #0068b6;
}
.detail-box .fb-area textarea {
  display: block;
  height: 150px;
  padding: 15px;
  border: 1px solid rgba(0, 104, 182, 0.5);
  border-radius: 3px;
}
.detail-box .fb-area .upper {
  overflow: hidden;
  margin-bottom: 15px;
}
.detail-box .fb-area .upper h3 {
  float: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  color: #0068b6;
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .upper h3 {
    float: none;
    padding: 10px 5px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
  }
}
.detail-box .fb-area .upper .fb-btns {
  float: right;
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .upper .fb-btns {
    float: none;
    text-align: center;
  }
}
.detail-box .fb-area .upper .fb-btns li {
  display: inline-block;
  margin-left: 2px;
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .upper .fb-btns li {
    margin: 0 2px;
  }
}
.detail-box .fb-area .fb-btn,
.detail-box .fb-area .fb-send {
  width: 180px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #0068b6;
  outline: 0;
  border: 1px solid rgba(0, 104, 182, 0.5);
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .fb-btn,
  .detail-box .fb-area .fb-send {
    width: 100px;
  }
}
.detail-box .fb-area .fb-btn:before,
.detail-box .fb-area .fb-send:before {
  content: '\f087';
  position: relative;
  top: 2px;
  margin-right: 10px;
  font-family: 'Fontawesome';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  color: #094;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.detail-box .fb-area .fb-btn:hover:before,
.detail-box .fb-area .fb-send:hover:before {
  top: -5px;
}
.detail-box .fb-area .fb-btn.fb-active,
.detail-box .fb-area .fb-send.fb-active {
  top: 2px;
  border-width: 2px;
}
.detail-box .fb-area .fb-btn.no:before,
.detail-box .fb-area .fb-send.no:before {
  content: '\f088';
  color: #f00;
}
.detail-box .fb-area .fb-btn.no:hover:before,
.detail-box .fb-area .fb-send.no:hover:before {
  top: 8px;
}
.detail-box .fb-area .fb-send {
  display: block;
  width: 180px;
  margin: 15px auto 0;
  color: #fff;
  border: 0;
  background-color: #0068b6;
}
.detail-box .fb-area .fb-send.fb-disable {
  background-color: rgba(46, 98, 137, 0.1);
}
@media only screen and (max-width: 480px) {
  .detail-box .fb-area .fb-send {
    margin-top: 10px;
  }
}
.detail-box .fb-area .fb-send:before {
  content: none;
}
.detail-box .fb-area .fb-send:hover {
  background-color: #ee8800;
}

.error-view {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 150px;
}
.error-view h2.error-title {
  font-size: 20px;
}
.error-view h2.error-title:before {
  display: block;
  content: '\e90d';
  color: #ee8800;
  height: 75px;
  margin: auto 0;
  font-family: 'traina-icon';
  font-size: 75px;
  font-weight: normal;
  line-height: 1;
}

.detail-box.contents-notfound .nf-area {
  width: 480px;
  margin: 150px auto;
  line-height: 24px;
  padding-left: 115px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .detail-box.contents-notfound .nf-area {
    width: 100%;
    margin: 100px auto;
  }
}
.detail-box.contents-notfound .nf-area:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: '\e90b';
  color: #0068b6;
  height: 75px;
  margin: auto 0;
  font-family: 'traina-icon';
  font-size: 75px;
  font-weight: normal;
  line-height: 1;
}
@media only screen and (max-width: 480px) {
  .detail-box.contents-notfound .nf-area:before {
    left: 20px;
    top: 15px;
  }
}
.detail-box.contents-notfound .nf-area em {
  font-size: 20px;
}

.new-faq-list.recent .section-title:before {
  content: '\e904';
}

.new-faq-list .list-contents {
  padding: 0 0 10px 0;
  border-radius: 0 0 3px 3px;
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-top: 0;
}
@media only screen and (max-width: 480px) {
  .new-faq-list .list-contents {
    padding: 0;
  }
}

.new-faq-list .list-item .new-faq {
    padding: 10px 5px 10px 20px;
    border-bottom: 1px dotted rgba(0, 104, 182, 0.6);
}

.new-faq-list:last-child .list-item:last-child .new-faq:last-child {
    border-bottom: none;
}

.new-faq-list .list-item .new-faq .new-faq-question a {
  position: relative;
  display: block;
  padding: 5px 10px 10px 40px;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  color: #0068b6;
  word-break: break-all;
}
.new-faq-list .list-item .new-faq .new-faq-question a:before {
  content: '\e90a';
  position: absolute;
  left: 10px;
  height: 18px;
  margin: auto;
  font-family: 'traina-icon';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}
.new-faq-list .list-item .new-faq .new-faq-question a:hover {
  text-decoration: underline;
}

.new-faq-list .list-item .new-faq .new-faq-category p {
  position: relative;
  display: block;
  padding: 5px 10px 10px 40px;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  color: #444444;
  word-break: break-all;
}
.new-faq-list .list-item .new-faq .new-faq-category p:before {
  content: '\e901';
  position: absolute;
  left: 10px;
  height: 18px;
  margin: auto;
  font-family: 'traina-icon';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.access-Ranking-list.popular .section-title:before {
  content: '\e905';
}

.access-Ranking-list.popular .section-title .date {
  width: 260px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  font-weight: normal;
}

.access-Ranking-list .list-contents {
  border-radius: 0 0 3px 3px;
  border: 1px solid rgba(0, 104, 182, 0.3);
  border-top: 0;
}
@media only screen and (max-width: 480px) {
  .access-Ranking-list .list-contents {
    padding: 0;
  }
}

.access-Ranking-list .list-item .access-Ranking {
    padding: 10px 5px 5px 20px;
    border-bottom: 1px dotted rgba(0, 104, 182, 0.6);
}

.access-Ranking-list:last-child .list-item:last-child .access-Ranking:last-child {
    border-bottom: none;
}

.access-Ranking-list .list-item .access-Ranking .access-Ranking-question a {
  position: relative;
  display: block;
  padding: 5px 10px 5px 40px;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  color: #0068b6;
  word-break: break-all;
}
.access-Ranking-list .list-item .access-Ranking .access-Ranking-question a:before {
  content: '\e90a';
  position: absolute;
  left: 10px;
  height: 18px;
  margin: auto;
  font-family: 'traina-icon';
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}
.access-Ranking-list .list-item .access-Ranking .access-Ranking-question a:hover {
  text-decoration: underline;
}
.access-Ranking-list .list-item .access-Ranking .access-Ranking-question .sub-data {
  position: relative;
  margin-top: 10px;
}
.access-Ranking-list .list-item .access-Ranking .access-Ranking-question .sub-data .count {
  width: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
}


/* -----------------------------------
   共通パーツ
     - サイト共通の見出しスタイル
     - サイト共通のボタン
     - 上記のどのレイアウト領域に配置してもスタイルが崩れないことが重要（各種ボタンやSNSボタンなど）
   ----------------------------------- */

/*# sourceMappingURL=style.css.map */

.category-box .category-contents a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#selections {
  display: flex;
  flex-direction: column;
}

.list-item-dummy {
  visibility: hidden;
}

@media only screen and (max-width: 480px) {
  .list-item-dummy {
    display: none;
  }
}

.attributeItem {
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 104, 182, 0.3);
}
 
.attributeItem>select {
  border-color: rgba(0, 104, 182, 0.3);
  border-radius: 3px;
  color: #0068b6;
  height: 30px;
}

@media print {
  @page {
    size: A4;
    margin: 12.7mm 9.7mm !important;
  }
  body {
    zoom: 0.66;
  }
  .category-tree, .site-header, .search-area, .detail-function, .fb-area, .site-footer, .pagetop, .attribute-area {
    display: none !important;
  }
  .section-wrpper {
    padding-left: 0 !important;
  }
}

.fb-active {
  border: 4px solid rgba(0, 104, 182, 0.5) !important;
}
