@charset "UTF-8";
/* ------------------------------------------------------------
初期設定
------------------------------------------------------------ */
/* border-box / word-break */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html,
body {
  height: 100%;
}

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

/* ------------------------------------------------------------
印刷設定
------------------------------------------------------------ */
@media print {
  body {
    zoom: 100%;
    overflow-y: visible;
    overflow-x: visible;
  }
  #pagetop {
    display: none;
  }
}

@page {
  margin: 30px;
}

/* ------------------------------------------------------------
placeholder - form
------------------------------------------------------------ */
/*  */
/* Chrome, Safari */
::-webkit-input-placeholder {
  color: #cccccc;
}

/* Firefox */
::-moz-placeholder {
  color: #cccccc;
}

/* IE */
:-ms-input-placeholder {
  color: #cccccc;
}

/* ------------------------------------------------------------
表示有無設定 - ブラウザサイズ
------------------------------------------------------------ */
@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;
  }
}

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

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

/* ------------------------------------------------------------
PageTop
------------------------------------------------------------ */
#pagetop {
  position: fixed;
  bottom: 2px;
  right: 10px;
  z-index: 100;
  font-size: 32px;
}

/* ------------------------------------------------------------
body
------------------------------------------------------------ */
body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM,
 "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
 sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

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

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;
}

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

/* ------------------------------------------------------------
フォント
------------------------------------------------------------ */
/* 明朝体 */
.ffm {
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
 HGS明朝E, メイリオ, Meiryo, serif;
}

/* Color */
.fc-red {
  color: #cc0000;
}

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

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

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

/* リスト */
.disc li {
  list-style-type: disc;
  margin-left: 1.5em;
}

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

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

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

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

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

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

a:hover img {
  opacity: 0.6;
}

/* リンクボタン */
.link-btn-type1 {
  text-align: center;
  margin: 30px auto 0;
}

.link-btn-type1 a {
  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;
  font-weight: bold;
  color: #004679;
  padding: 5px 60px;
  background: #ffffff;
  border: 2px solid #004679;
  border-radius: 15px;
}

.link-btn-type1 a:hover {
  color: #ffffff;
  background: #004679;
}

/* ------------------------------------------------------------
table
------------------------------------------------------------ */
.table-type1 {
  width: 100%;
}

.table-type1 th,
.table-type1 td {
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  padding: 8px 15px;
  background: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0px -3px 5px 1px #eee inset;
          box-shadow: 0px -3px 5px 1px #eee inset;
}

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

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

@media only screen and (max-width: 767px) {
  .table-type1 {
    border-bottom: 1px solid #999999;
  }
  .table-type1 th,
  .table-type1 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}

/* レスポンシブスクロール対応 */
.table-scroll {
  overflow: auto;
  white-space: nowrap;
}

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

/* ============================================================
                         コンテンツ共通
============================================================ */
/* ------------------------------------------------------------
header
------------------------------------------------------------ */
header .head-wrap .top-img {
  text-align: center;
}

header .head-wrap .head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 970px;
  margin: 0 auto;
}

header .head-wrap .head-box .left-box {
  width: calc(100% / 2 - 148px);
}

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

header .head-wrap .head-box .logo {
  width: 296px;
  padding: 0 24px;
}

header .head-wrap .head-box .logo .pc {
  display: block;
}

header .head-wrap .head-box .logo .sp {
  display: none;
}

header .head-wrap .head-box .cont-logo {
  text-align: center;
  padding-bottom: 30px;
}

header .head-wrap .head-box .right-box {
  width: calc(100% / 2 - 148px);
}

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

header .cont-head-wrap {
  margin-top: 86px;
}

@media only screen and (max-width: 991px) {
  header .head-wrap .top-img {
    display: none;
  }
  header .head-wrap .head-box {
    display: block;
    width: 100%;
  }
  header .head-wrap .head-box .left-box {
    display: none;
  }
  header .head-wrap .head-box .logo {
    width: auto;
    padding: 10px 15px;
  }
  header .head-wrap .head-box .logo img {
    height: 60px;
  }
  header .head-wrap .head-box .logo .pc {
    display: none;
  }
  header .head-wrap .head-box .logo .sp {
    display: block;
  }
  header .head-wrap .head-box .cont-logo {
    text-align: left;
    padding: 10px 15px;
  }
  header .head-wrap .head-box .right-box {
    display: none;
  }
  header .cont-head-wrap {
    margin: 0;
  }
}

/* ------------------------------------------------------------
footer
------------------------------------------------------------ */
footer .foot-wrap .foot-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 970px;
  margin: 0 auto 30px;
}

footer .foot-wrap .foot-box .left-box {
  width: 600px;
}

footer .foot-wrap .foot-box .left-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .foot-wrap .foot-box .left-box ul li a {
  font-size: 14px;
  padding: 0 15px;
  border-right: 1px solid #cccccc;
}

footer .foot-wrap .foot-box .left-box ul li:hover {
  text-decoration: underline;
}

footer .foot-wrap .foot-box .left-box ul li:first-child {
  border-left: 1px solid #cccccc;
}

footer .foot-wrap .foot-box .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 430px;
}

footer .foot-wrap .foot-box .right-box .address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px;
}

footer .foot-wrap .foot-box .right-box .logo {
  width: 142px;
}

footer .foot-wrap .copyright {
  font-size: 14px;
  text-align: center;
  padding: 15px;
  background: #fac867;
}

@media only screen and (max-width: 969px) {
  footer {
    margin-top: 30px;
  }
  footer .foot-wrap .foot-box {
    display: block;
    width: 100%;
    padding: 0 15px;
  }
  footer .foot-wrap .foot-box .left-box {
    display: none;
  }
  footer .foot-wrap .foot-box .right-box {
    width: 100%;
  }
  footer .foot-wrap .foot-box .right-box .logo {
    width: 90px;
  }
  footer .foot-wrap .copyright {
    padding: 10px 15px;
  }
}
/*# sourceMappingURL=style.css.map */