@charset "UTF-8";
/* font family */
/* 見出し */
/* ボタン */
/* ----------------------------------------
 	reset
 ---------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p,
a, img,
dl, dt, dd, ol, ul, li,
strong, sub, sup, i, small, address, time,
fieldset, form, label, legend, hr,
table, caption, tbody, tfoot, thead, tr, th, td,
header, footer, nav, section, article, aside,
figure, figcaption, canvas, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, figure, figcaption,
footer, header, nav, section {
  display: block;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  overflow-y: scroll;
  height: 100%;
  min-height: 100%;
}

body {
  height: 100%;
  min-height: 100%;
}

ul, ol, li {
  list-style: none;
}

input, textarea, button {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

a {
  color: #222222;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

body {
  width: 100%;
  color: #222222;
  font-size: 14px;
  line-height: 22px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
  body {
    line-height: 20px;
  }
}

/* font family */
/* 見出し */
/* ボタン */
/* ----------------------------------------
 	layout
 ---------------------------------------- */
/* レイアウト
------------------------------ */
.container {
  position: relative;
  max-width: 1010px;
  padding: 0 15px;
  margin: 0 auto;
}
.container:after {
  content: '';
  display: block;
  clear: both;
}

.container-fluid {
  position: relative;
}

/* ヘッダ
------------------------------ */
#wrapper:before {
  position: relative;
  z-index: 0;
  content: '';
  display: block;
  height: 80px;
}
@media (max-width: 991px) {
  #wrapper:before {
    height: 50px;
  }
}

#global-header-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: #fff;
}
#global-header-content:after {
  content: '';
  display: block;
  clear: both;
}
#global-header-content .site-id {
  position: relative;
  float: left;
  margin: 0;
}
@media (max-width: 991px) {
  #global-header-content {
    height: 50px;
    border-bottom: 1px solid #dddddd;
  }
  #global-header-content .site-id {
    padding: 9px 10px;
  }
  #global-header-content .site-id img {
    display: none;
  }
  #global-header-content .site-id a {
    display: block;
    width: 103px;
    height: 32px;
    background: url('../img/common/hdr_logo_sp.png') no-repeat center/contain;
  }
}
@media (min-width: 992px) {
  #global-header-content {
    display: table;
  }
  #global-header-content .site-id {
    display: table-cell;
    vertical-align: middle;
    padding: 16px;
  }
  #global-header-content .site-id img {
    display: block;
    width: 156px;
  }
  .pc #global-header-content .site-id a {
    transition: .2s opacity ease;
  }
  .pc #global-header-content .site-id a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    opacity: 0.75;
  }
  #global-header-content #global-nav {
    display: table-cell;
    vertical-align: middle;
  }
}

/* ナビ ----------------- */
#wrapper #gnav-bg {
  position: relative;
  z-index: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: 0.1s opacity ease;
  -moz-transition: 0.1s opacity ease;
  -ms-transition: 0.1s opacity ease;
  -o-transition: 0.1s opacity ease;
  transition: 0.1s opacity ease;
}
#wrapper.menu-open #gnav-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0.5;
}

#global-nav {
  text-align: center;
  font-size: 16px;
}
#global-nav a {
  display: block;
  color: #44484a;
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#global-nav .gnav-contact a {
  background: #e8340c;
  color: #fff;
}
@media (max-width: 991px) {
  #global-nav .gnav-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 37px;
    height: 44px;
    background: url('../img/common/ico_menu.svg') no-repeat center center;
    background-size: 17px auto;
    cursor: pointer;
  }
  .menu-open #global-nav .gnav-btn {
    background-image: url('../img/common/ico_close.svg');
    background-size: 14px auto;
  }
  #global-nav .gnav-content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #fff;
    -webkit-transition: 0.3s height ease;
    -moz-transition: 0.3s height ease;
    -ms-transition: 0.3s height ease;
    -o-transition: 0.3s height ease;
    transition: 0.3s height ease;
  }
  .menu-open #global-nav .gnav-content {
    height: auto;
  }
  #global-nav li {
    border-top: 1px solid #dddddd;
  }
  #global-nav a {
    line-height: 50px;
  }
  #global-nav .gnav-contact {
    border-top: 1px solid #dddddd;
  }
}
@media (min-width: 992px) {
  #global-nav .gnav-btn {
    display: none;
  }
  #global-nav .gnav-content {
    float: right;
  }
  #global-nav .gnav-list {
    display: table;
    float: right;
    height: 80px;
  }
  #global-nav ul {
    display: table-cell;
    vertical-align: middle;
    padding: 0 12px;
  }
  #global-nav li {
    display: inline-block;
  }
  #global-nav li a {
    padding: 0 12px;
    line-height: 30px;
    font-weight: bold;
  }
  .pc #global-nav li a {
    transition: .2s color ease;
  }
  .pc #global-nav li a:hover {
    color: #e8340c;
  }
  #global-nav li a.current {
    color: #e8340c;
  }
  #global-nav .gnav-contact {
    display: table-cell;
    vertical-align: middle;
  }
  #global-nav .gnav-contact a {
    height: 100%;
    padding: 0 38px;
    background: #e8340c;
    color: #fff;
    line-height: 80px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .pc #global-nav .gnav-contact a {
    transition: .2s background-color ease;
  }
  .pc #global-nav .gnav-contact a:hover {
    background-color: #d03b1a;
  }
}

/* コンテンツ
------------------------------ */
#body-header {
  padding: 58px 0 52px;
  background: #f0f0f0 url('../img/common/body_hdr_bg.png') no-repeat center center;
  text-align: center;
}
@media (max-width: 991px) {
  #body-header {
    padding: 22px 0;
    background-size: 69% auto;
  }
}

.body-content {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .body-content {
    padding-bottom: 30px;
  }
}

.no-content {
  padding: 30px 0;
  text-align: center;
}

/* テーブル
------------------------------ */
.table-box {
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
.table-box dl {
  display: table-row;
}
.table-box dt,
.table-box dd {
  display: table-cell;
}
.table-box dt {
  border-top: 1px solid #e9401a;
}
.table-box dd {
  border-top: 1px solid #dddddd;
}
.table-box dl:last-child dt {
  border-bottom: 1px solid #e9401a;
}
.table-box dl:last-child dd {
  border-bottom: 1px solid #dddddd;
}
.table-box .list-dot li {
  padding-left: 1em;
  text-indent: -1em;
}
.table-box .list-dot li:before {
  content: '・';
  display: inline;
  text-indent: 0;
}
@media (max-width: 768px) {
  .table-box dt {
    width: 75px;
    padding: 12px 7px 13px;
  }
  .table-box dd {
    padding: 12px 7px 13px 10px;
  }
  .table-box li {
    margin-top: 5px;
  }
  .table-box li:first-child {
    margin-top: 0;
  }
}
@media (min-width: 769px) {
  .table-box dt {
    width: 220px;
    max-width: 220px;
    padding: 15px 9px;
  }
  .table-box dd {
    padding: 15px 14px;
  }
  .table-box li {
    margin-top: 6px;
  }
  .table-box li:first-child {
    margin-top: 0;
  }
}

/* contactエリア
------------------------------ */
#contact {
  background: #666666 url('../img/home/contact_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
}
#contact .heading-01 {
  color: #fff;
  text-align: center;
}
#contact .text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  #contact {
    position: relative;
    padding: 0 0 30px;
  }
  #contact:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.3;
  }
  #contact .container {
    z-index: 2;
  }
  #contact .text {
    margin-top: 14px;
  }
  #contact .action {
    margin-top: 15px;
  }
  #contact .btn-primary {
    width: 100%;
  }
}
@media (min-width: 769px) {
  #contact {
    padding: 27px 0 107px;
  }
  #contact .section-content {
    text-align: center;
  }
  #contact .text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
  }
  #contact .action {
    margin-top: 28px;
  }
  #contact .btn-primary {
    width: 300px;
  }
}

/* フッタ
------------------------------ */
#global-footer {
  background: #444444;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#global-footer #footer-nav {
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
#global-footer #footer-nav ul {
  font-size: 0;
  line-height: 1;
}
#global-footer #footer-nav li {
  display: inline-block;
  font-size: 14px;
}
#global-footer #footer-nav a {
  color: #fff;
}
.pc #global-footer #footer-nav a {
  transition: .2s color ease;
}
.pc #global-footer #footer-nav a:hover {
  color: #e8340c;
}
#global-footer .footer-sns-links ul {
  font-size: 0;
}
#global-footer .footer-sns-links li {
  display: inline-block;
  width: 44px;
}
#global-footer .footer-sns-links a {
  display: inline-block;
  width: 32px;
  height: 0;
  padding-top: 22px;
  overflow: hidden;
  background: no-repeat center center;
  background-size: contain;
  white-space: nowrap;
}
#global-footer .footer-sns-links .fb a {
  background-image: url('../img/common/ico_facebook.svg');
}
#global-footer .footer-sns-links .tw a {
  background-image: url('../img/common/ico_twitter.svg');
}
#global-footer .footer-sns-links .gp a {
  background-image: url('../img/common/ico_gplus.svg');
}
#global-footer .copyright {
  font-size: 12px;
  line-height: 18px;
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 768px) {
  #global-footer {
    padding: 17px 0 24px 0;
  }
  #global-footer .container {
    display: block;
  }
  #global-footer #footer-nav,
  #global-footer .footer-sns-links,
  #global-footer .copyright {
    text-align: center;
  }
  #global-footer #footer-nav ul {
    margin: 0 -7px;
  }
  #global-footer #footer-nav li {
    padding: 0 7px;
  }
  #global-footer .footer-sns-links {
    margin-top: 16px;
  }
  #global-footer .footer-sns-links li {
    width: 56px;
  }
  #global-footer .footer-sns-links a {
    padding-top: 23px;
  }
  #global-footer .copyright {
    margin-top: 16px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  #global-footer {
    padding: 42px 0 42px 0;
  }
  #global-footer .container {
    max-width: 100%;
    padding: 0 30px;
  }
  #global-footer #footer-nav {
    float: left;
  }
  #global-footer #footer-nav li {
    padding: 0 20px 0 0;
  }
  #global-footer .copyright {
    float: right;
    line-height: 14px;
  }
}

/* font family */
/* 見出し */
/* ボタン */
/* ----------------------------------------
 	parts
 ---------------------------------------- */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
#svgicons {
  display: none;
}

.ico-svg {
  width: 1em;
  height: 1em;
}

/* 共通クラス
------------------------------ */
.pc .hover-op {
  transition: .2s opacity ease;
}
.pc .hover-op:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

/* 見出し
------------------------------ */
.heading-01 {
  color: #e8340c;
  font-size: 40px;
  line-height: 1.25;
  font-weight: bold;
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.heading-01 strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}
@media (max-width: 768px) {
  .heading-01 {
    font-size: 25px;
  }
  .heading-01 strong {
    font-size: 10px;
  }
}

/* 共通パーツ
------------------------------ */
/* ボタン */
.btn-primary,
.btn-next,
.btn-submit,
.btn-home {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 58px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #e9401a;
  border: 1px solid #a32c11;
}
@media (max-width: 768px) {
  .btn-primary,
  .btn-next,
  .btn-submit,
  .btn-home {
    font-size: 20px;
    line-height: 50px;
    border-radius: 4px;
  }
}
.pc .btn-primary, .pc
.btn-next, .pc
.btn-submit, .pc
.btn-home {
  transition: .2s background-color ease;
}
.pc .btn-primary:hover, .pc
.btn-next:hover, .pc
.btn-submit:hover, .pc
.btn-home:hover {
  background-color: #d03b1a;
}

.btn-secondary,
.btn-back {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 58px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #666;
  border: 1px solid #444444;
}
@media (max-width: 768px) {
  .btn-secondary,
  .btn-back {
    font-size: 20px;
    line-height: 50px;
    border-radius: 4px;
  }
}
.pc .btn-secondary, .pc
.btn-back {
  transition: .2s background-color ease;
}
.pc .btn-secondary:hover, .pc
.btn-back:hover {
  background-color: #444444;
}

.btn-link,
.btn-more {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 0 20px;
  background: transparent;
  border-radius: 6px;
  font-size: 16px;
  line-height: 42px;
  border: 1px solid #e9401a;
  color: #e9401a;
}
.pc .btn-link, .pc
.btn-more {
  transition: .2s ease;
}
@media (max-width: 768px) {
  .btn-link,
  .btn-more {
    padding: 0 10px;
    font-size: 14px;
    line-height: 33px;
    border-radius: 4px;
  }
}
.pc .btn-link:hover, .pc
.btn-more:hover {
  background-color: #d03b1a;
  color: #fff;
}

/* フォーム　パーツ */
input[type=text],
input[type=email] {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

textarea {
  display: block;
  width: 100%;
  height: 240px;
  padding: 14px 16px;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

@media (max-width: 768px) {
  input[type=text],
  input[type=email] {
    height: 35px;
    font-size: 16px;
  }

  select {
    font-size: 16px;
  }

  textarea {
    height: 180px;
    font-size: 16px;
  }
}
.select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #f6f6f7;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.select-wrap:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 1;
  width: 15px;
  height: 9px;
  transform: translateY(-50%);
  background: no-repeat center center;
  background-size: contain;
  background-image: url('../img/common/arw_01_d.svg');
}
.select-wrap select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  vertical-align: middle;
  color: #222222;
  font-size: inherit;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 42px;
  padding: 0 40px 0 16px;
}
@media (max-width: 768px) {
  .select-wrap select {
    height: 33px;
  }
}

/* ニュースリスト
------------------------------ */
.date {
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-cat {
  display: inline-block;
  padding: 0 5px;
  background: #f0f0f0;
  font-size: 12px;
  line-height: 18px;
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
}

.news-list {
  margin-top: 30px;
  border-bottom: 1px solid #dddddd;
}
.news-list li {
  border-top: 1px solid #dddddd;
}
.news-list a {
  display: block;
  padding: 18px 18px 16px;
  font-size: 16px;
  line-height: 1.5;
}
.news-list a:after {
  content: '';
  display: block;
  clear: both;
}
.pc .news-list a {
  transition: .2s color ease;
}
.pc .news-list a:hover {
  color: #e8340c;
}
.news-list a .date {
  float: left;
  width: 120px;
  color: #e8340c;
}
.news-list a .texts {
  margin: 0 0 0 120px;
}
.news-list a .cat {
  margin: 4px 0 0 0;
}
.news-list a .ico-cat {
  color: #222222;
}
@media (max-width: 768px) {
  .news-list {
    margin-top: 20px;
  }
  .news-list a {
    padding: 12px 5px 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .news-list a .date {
    float: none;
    width: 100%;
    padding: 0;
  }
  .news-list a .texts {
    margin: 3px 0 0 0;
  }
}

/* ページネーション */
.pagination {
  margin: 42px 0 80px 0;
  text-align: center;
  font-family: "Oxygen", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.pagination ul {
  font-size: 0;
}
.pagination li {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
}
.pagination a {
  display: inline-block;
  min-width: 30px;
  padding: 0 5px;
}
.pc .pagination a {
  transition: .2s color ease;
}
.pc .pagination a:hover {
  color: #e8340c;
}
.pagination a.current {
  color: #e8340c;
}
.pagination .ico-svg {
  width: 6px;
  height: 12px;
  vertical-align: 1px;
  fill: #000;
  transition: .2s fill ease;
}
.pc .pagination a:hover .ico-svg {
  fill: #e8340c;
}
.pagination .disabled .ico-svg {
  opacity: 0.2;
}
@media (max-width: 768px) {
  .pagination {
    margin: 25px -5px 8px;
  }
  .pagination li {
    font-size: 15px;
    line-height: 17px;
  }
  .pagination a {
    min-width: 25px;
  }
  .pagination .ico-svg {
    vertical-align: -1px;
  }
}

/*# sourceMappingURL=common.css.map */
