@charset "UTF-8";
/* ------------------------------------------------------------
初期設定
------------------------------------------------------------ */
*,
*:before,
*:after {
  /* 幅と高さの制御設定 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 英数字の改行設定 */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
}

body {
  font-size: 15px;
  color: #222222;
  line-height: 1.7;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  position: static !important;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
印刷設定
------------------------------------------------------------ */
.pbb {
  page-break-before: always;
}

@media print {
  body {
    zoom: 100%;
    overflow-y: visible;
    overflow-x: visible;
  }
  #pagetop {
    display: none;
  }
}

@page {
  margin: 30px;
}

/* ------------------------------------------------------------
clearfix
------------------------------------------------------------ */
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------------------------------------------
画像
------------------------------------------------------------ */
/* レスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.kadomaru {
  border-radius: 10px;
}

/* ------------------------------------------------------------
表示有無設定 - ブラウザサイズ
------------------------------------------------------------ */
@media only screen and (min-width: 992px) {
  .min992 {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .max991 {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .min768 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .max767 {
    display: none;
  }
}

/* ------------------------------------------------------------
余白
------------------------------------------------------------ */
.mb30 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb90 {
  margin-bottom: 90px;
}

/* ------------------------------------------------------------
bootstrap
------------------------------------------------------------ */
/* bootstrap container base */
.container {
  width: 100%;
}

@media print, screen and (min-width: 1140px) {
  .container {
    width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

/* IE scroll bar位置調整 */
@-ms-viewport {
  width: auto;
}

/* ------------------------------------------------------------
font family
------------------------------------------------------------ */
body {
  font-family: 'Lato', 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 明朝体 */
.ffm {
  font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

/* ------------------------------------------------------------
テキスト装飾
------------------------------------------------------------ */
/* Color */
.fc-red {
  color: #e60012;
}

/* 行間設定 */
p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* 二行目字下げ */
.att {
  padding-left: 1em;
  text-indent: -1em;
}

/* ------------------------------------------------------------
配置
------------------------------------------------------------ */
.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.ta-center {
  text-align: center;
}

/* ------------------------------------------------------------
ul ol li
------------------------------------------------------------ */
.disc li {
  list-style-type: disc;
  margin-left: 1.5em;
}

.decimal li {
  list-style-type: decimal;
  margin-left: 1.5em;
}

/* ------------------------------------------------------------
リンク設定
------------------------------------------------------------ */
a {
  color: #333333;
  text-decoration: none;
}

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

a:hover img {
  opacity: 0.6;
}

/* link button */
.link-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  padding: 10px 45px;
  border: 1px solid #333333;
}

.link-btn a:hover {
  color: #ffffff;
  background: #e60012;
  border: 1px solid #e60012;
}

/* ------------------------------------------------------------
form
------------------------------------------------------------ */
form {
  /* placeholder ---------- */
  /* Chrome, Safari */
  /* Firefox */
  /* IE */
}

form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

form label input {
  margin-right: 2px;
}

form input[type="text"],
form textarea {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 4px 10px;
  border: 1px solid #ccc;
}

form textarea {
  min-height: 100px;
}

form button[type="submit"],
form button[type="button"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #ffffff;
  padding: 10px 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f16a3f), to(#d72a18));
  background: linear-gradient(#f16a3f, #d72a18);
  border: none;
}

form button[type="submit"]:hover,
form button[type="button"]:hover {
  color: #ffffff;
  background: #d72a18;
}

form ::-webkit-input-placeholder {
  color: #cccccc;
}

form ::-moz-placeholder {
  color: #cccccc;
}

form :-ms-input-placeholder {
  color: #cccccc;
}

/* ------------------------------------------------------------
table
------------------------------------------------------------ */
.table-type1 {
  width: 100%;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

.table-type1 .tr {
  display: table;
  width: 100%;
}

.table-type1 .tr .th,
.table-type1 .tr .td {
  display: table-cell;
  font-size: 14px;
  padding: 8px 15px;
  background: #ffffff;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.table-type1 .tr .th {
  width: 180px;
  background: #f5f5f5;
}

.table-type1 .tr .td {
  width: calc(100% - 180px);
}

@media only screen and (max-width: 767px) {
  .table-type1 .tr {
    display: block;
  }
  .table-type1 .tr .th,
  .table-type1 .tr .td {
    display: block;
    width: 100%;
  }
}

.table-type2 {
  width: 100%;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

.table-type2 .thead .tr {
  display: table;
  width: 100%;
}

.table-type2 .thead .tr .th {
  display: table-cell;
  background: #3EB1C6;
  font-size: 14px;
  color: #FFF;
  width: 25%;
  padding: 10px 15px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.table-type2 .tbody .tr {
  display: table;
  width: 100%;
}

.table-type2 .tbody .tr .th,
.table-type2 .tbody .tr .td {
  display: table-cell;
  font-size: 14px;
  width: 25%;
  padding: 10px 15px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.table-type2 .tbody .tr .th {
  color: #FFF;
  background: #3EB1C6;
}

@media screen and (max-width: 767px) {
  .table-type2 .thead {
    display: none;
  }
  .table-type2 .tbody .tr {
    display: block;
  }
  .table-type2 .tbody .tr .th,
  .table-type2 .tbody .tr .td {
    display: block;
    width: 100%;
    padding: 6px 10px;
  }
  .table-type2 .tbody .tr .td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .table-type2 .tbody .tr .td::before {
    content: attr(label);
    width: 100px;
    min-width: 100px;
    margin-right: 10px;
  }
}

/* SP横スクロール対応したいボックスを囲む */
.table-scroll {
  overflow: auto;
  white-space: nowrap;
}

.table-scroll table {
  width: 100%;
}

/* ------------------------------------------------------------
header
------------------------------------------------------------ */
header {
  background: #004ea2;
}

header .head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .head-wrap .logo {
  width: 376px;
}

@media only screen and (max-width: 767px) {
  header .head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .head-wrap .logo {
    width: auto;
    margin-right: 60px;
  }
}

/* ------------------------------------------------------------
footer
------------------------------------------------------------ */
footer .foot-gray-wrap {
  margin-top: 60px;
  padding: 25px 0;
  background: #e6e6e6;
}

footer .foot-gray-wrap .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 160px;
}

footer .foot-gray-wrap .box {
  font-size: 13px;
}

footer .foot-gray-wrap .box table th {
  font-weight: normal;
  width: 100px;
  text-align: right;
}

footer .foot-gray-wrap .box:first-child {
  width: 55%;
}

footer .foot-gray-wrap .box:last-child {
  width: 45%;
}

footer .foot-nav-wrap {
  background: #008cd6;
}

footer .foot-nav-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}

footer .foot-nav-wrap ul li {
  padding: 0 15px;
  border-right: 1px solid #ffffff;
}

footer .foot-nav-wrap ul li a {
  font-size: 12px;
  color: #ffffff;
}

footer .foot-nav-wrap ul li a:hover {
  text-decoration: underline;
}

footer .foot-nav-wrap ul li:last-child {
  border-right: none;
}

footer .foot-wrap {
  text-align: center;
  padding: 30px 15px;
  background: #004ea2;
}

footer .foot-wrap .copyright {
  font-size: 13px;
  color: #ffffff;
  margin-top: 5px;
}

@media only screen and (max-width: 991px) {
  footer .foot-gray-wrap {
    margin-top: 30px;
    padding: 20px 0;
  }
  footer .foot-gray-wrap .wrap {
    display: block;
    padding: 0 5px;
  }
  footer .foot-gray-wrap .box:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
  footer .foot-gray-wrap .box:last-child {
    width: 100%;
  }
  footer .foot-nav-wrap {
    display: none;
  }
}

/* ------------------------------------------------------------
common
------------------------------------------------------------ */
/* pagetop */
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
}

/* wrap */
.wrap {
  width: 960px;
  margin: 0 auto;
}

.cont-box {
  margin-bottom: 60px;
}

.cont-box:last-child {
  margin-bottom: 120px;
}

@media only screen and (max-width: 1140px) {
  .wrap {
    width: 100%;
    padding: 0 15px;
  }
  .cont-box {
    margin-bottom: 45px;
  }
}
/*# sourceMappingURL=style.css.map */