@charset "UTF-8";

/** ベースレイアウト
---------------------------------------------**/
html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family:
    "游ゴシック体",
    YuGothic,
    "游ゴシック",
    "Yu Gothic",
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    "メイリオ",
    Meiryo,
    "ＭＳ Ｐゴシック",
    sans-serif;
  font-weight: 500;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  color: #282828;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

* {
  box-sizing: border-box;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
}
a:hover {
  color: #888;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  /* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", 'Noto Serif JP', "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
  font-weight: normal;
}

/* 明朝 */
.font-serif {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Noto Serif JP",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}

/* ゴシック */
.font-gothic {
  font-family:
    "游ゴシック体",
    YuGothic,
    "游ゴシック",
    "Yu Gothic",
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    "メイリオ",
    Meiryo,
    "ＭＳ Ｐゴシック",
    sans-serif !important;
}

/* iOSのデフォルトスタイルリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* ヘッダー　*/
header p,
footer p {
  margin: 0;
}

/* 基本テーブル */
table {
  margin: 20px 0;
}

th,
td {
  border-bottom: 1px dashed #f6b778;
  padding: 10px;
}

tr:first-of-type th,
tr:first-of-type td {
  padding-top: 0;
}

th {
  text-align: left;
}

.non-styling th,
.non-styling td {
  border: none;
  padding: 3px;
}

@media all and (-ms-high-contrast: none) {
  /* IE11対策 */
  body {
    font-family:
      "ヒラギノ角ゴ ProN W3",
      Hiragino Kaku Gothic ProN,
      "メイリオ",
      Meiryo,
      "ＭＳ Ｐゴシック",
      sans-serif;
  }
  /* 
  h1,h2,h3,h4,h5,h6,.font-serif {
     font-family: Century, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E",  'Noto Serif JP', "ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
  }   */

  /* 明朝 */
  .font-serif {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Noto Serif JP", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
      serif !important;
  }

  /* ゴシック */
  .font-gothic {
    font-family:
      "ヒラギノ角ゴ ProN W3",
      Hiragino Kaku Gothic ProN,
      "メイリオ",
      Meiryo,
      "ＭＳ Ｐゴシック",
      sans-serif !important;
  }
}

img {
  max-width: 100%;
}

/* 実コンテンツ部 */
.inner {
  margin: 0 auto;
}

/* グローバルナビ */
#globalNavi ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* footer */
footer {
  background-image: url(../img/common/bg-footer.png);
  background-repeat: no-repeat;
  background-position: top left 18%;
}

.footer-contents .inquiry .title {
  font-size: 1.9rem;
  font-weight: bold;
}

.footer-contents .inquiry-button-area {
  margin: 20px 0 0 0;
}

.footer-sub-contents {
  background-color: #82be6e;
  color: #fff;
  font-size: 1.4rem;
}

.footer-sub-contents ul,
.footer-sub-contents li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* slick用 */
.slider-nav .slick-track {
  margin: 0;
}

@media screen and (min-width: 769px) {
  /* PC・タブレット専用 */
  body {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  /* 実コンテンツ部 */
  .inner {
    max-width: 100%;
    width: 1100px;
    padding: 0 20px;
  }

  /* 画面右に追従するお問い合わせバナー */
  #contactBanner {
    position: fixed;
    right: -10px;
    top: 50%;
    z-index: 100;
  }

  /* グローバルナビ */
  #globalNavi ul {
    display: flex;
    align-items: flex-start;
    flex-flow: row-reverse;
    margin-top: 20px;
  }

  #globalNavi li:hover a,
  #globalNavi li.current a {
    color: #a9a9a9;
  }

  /* ページの先頭へ戻るボタン */
  #pageTopBtn {
    position: fixed;
    right: 10%;
    bottom: 60px;
  }

  /* footer */
  footer#globalFooter .footer-contents .inner {
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    display: flex;
    padding: 50px 0;
    margin: 100px auto;
    justify-content: space-between;
    width: 840px;
  }

  .footer-contents .logo {
    padding-left: 40px;
  }
  .footer-contents .logo img {
    width: 146px;
  }

  .footer-contents .inquiry {
    width: 600px;
  }
  .footer-contents .inquiry-button-area {
    display: flex;
    align-items: center;
  }

  .footer-contents .inquiry-button-area a {
    margin-right: 20px;
  }

  .footer-sub-contents .inner {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  .footer-sub-contents nav {
    margin-right: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1060px) {
  .inner,
  footer#globalFooter .footer-contents .inner {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1770px) {
  /* ページの先頭へ戻るボタン */
  #pageTopBtn {
    right: 1%;
    bottom: 15px;
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  /* スマホ専用 */
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  /* 実コンテンツ部 */
  .inner {
    width: 94%;
    margin: auto;
  }

  /* header */
  header#globalHeader {
    min-height: 80px;
  }

  /* グローバルナビ */
  #globalNavi {
    background-color: #f4f0e4;
    padding: 20px;
    display: none;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 999;
  }

  #globalNavi .menu-item {
    margin-bottom: 10px;
  }

  #globalNavi .menu-item a {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  /* footer */
  .footer-contents .inner {
    padding: 40px;
  }

  .footer-contents .logo img {
    display: block;
    margin: 0 auto 40px auto;
  }

  .footer-contents .inquiry-button-area {
    margin-top: 20px;
  }

  .footer-contents .inquiry-button-area img {
    margin: 40px auto;
    display: block;
  }

  .footer-contents .inquiry-button-area img:last-of-type {
    margin-bottom: 0;
  }

  .footer-sub-contents {
    padding: 20px 0;
  }

  .footer-sub-contents nav {
    margin: 0 auto 10px;
    text-align: center;
  }

  .footer-sub-contents .copyright {
    text-align: center;
  }
}
