@charset "UTF-8";
/*=========================
common ↓↓↓↓↓↓
=========================*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  /* 基本のフォントファミリーは角ゴシック */
  color: #333333;
  font-weight: normal;
}

.font-family--maru-go {
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  /* フォントを丸ゴシックにしたいところにだけ指定 */
}

a {
  text-decoration: none;
}

a:link {
  color: #333;
}

a:visited {
  color: #333;
}

/*
a { color: #333;
text-decoration: none;}
a:link { color: #333;}
a:visited { color: #7f7f7f; }
a:hover {
color: #e2694a;
font-weight: inherit;
text-decoration: none;
}
a:active { color: #f0b4a4;}

a img { transition: opacity 0.2s linear; }
a:hover img { opacity: 0.5; }
a:active img { opacity: 0.8; }
*/
a.no-link {
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
}

.d-block {
  display: block;
}

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

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 480px) {
  /*480px以上に対する適用*/
  .sp-min {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/*フォント設定*/
.fw--light {
  font-weight: 200;
}

.fw--normal {
  font-weight: 400;
}

.fw--bold {
  font-weight: bold;
}

.font-size--s {
  font-size: 1.4rem;
}

.font-size--m {
  font-size: 1.6rem;
}

.font-size--l {
  font-size: 2.0rem;
}

.font-size--ll {
  font-size: 2.4rem;
}

@media print, screen and (min-width: 769px) {
  .font-size--s {
    font-size: 1.4rem;
  }
  .font-size--m {
    font-size: 1.6rem;
  }
  .font-size--l {
    font-size: 2.0rem;
  }
  .font-size--ll {
    font-size: 3.0rem;
  }
}

/* 上へ戻るボタン */
.btn-back-to-top {
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  width: 50px;
  opacity: 0.7;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  background-color: rgba(51, 51, 51, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container--header {
  max-width: 100rem;
  width: 95%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  max-width: 30rem;
  width: 70%;
}

@media print, screen and (min-width: 769px) {
  .header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav__list-item:not(:first-child) {
    padding-left: 2.2rem;
  }
  .header-nav__link, .header-nav__link:link, .header-nav__link:visited {
    color: #fff;
  }
  .header-nav__list-item--current .header-nav__link {
    position: relative;
  }
  .header-nav__list-item--current .header-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    -webkit-transform: translateX(-51%);
            transform: translateX(-51%);
    margin: auto;
    width: 105%;
    height: 0.7rem;
    background-color: #fff;
  }
}

.more-btn {
  display: block;
  color: #fff;
  background-color: #8EC298;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15rem;
  height: 4.5rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  border: 0.1rem solid #8EC298;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.more-btn:link, .more-btn:visited {
  color: #fff;
}

.more-btn::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  right: 1.5rem;
  margin-top: -0.1rem;
  border-top: 0.15rem solid #fff;
  border-right: 0.15rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.more-btn:hover, .more-btn:active, .more-btn:focus {
  color: #8EC298;
  background-color: #fff;
}

.more-btn:hover::after, .more-btn:active::after, .more-btn:focus::after {
  border-color: #8EC298;
}

.container--footer {
  background-color: #F6F6F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer {
  margin-top: 5rem;
}

.footer::before {
  content: '';
  display: block;
  margin: auto;
  width: 100vw;
  height: 20vw;
  max-height: 30rem;
  background-size: cover;
  background-position: center;
  background-image: url(../../img/common/bg-img-01.png);
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  max-width: 25rem;
  margin-top: 4rem;
}

.footer__copy-write {
  color: #898F9C;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: solid 1px #898F9C;
  width: 85%;
  text-align: center;
}

.sns-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-icon__list:not(:first-child) {
  margin-left: 10vw;
}

.sns-icon__link {
  display: block;
  width: 4rem;
  height: 4rem;
}

.footer-nav {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.6;
}

.footer-nav__list {
  margin: 1rem auto 0.5rem;
}

.footer-nav__link, .footer-nav__link:link, .footer-nav__link:visited {
  color: #898F9C;
}

@media print, screen and (min-width: 769px) {
  .sns-icon__list:not(:first-child) {
    margin-left: 8rem;
  }
}

@media print, screen and (min-width: 480px) {
  .footer-nav {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-nav__list-item:not(:last-child) {
    padding-right: 1rem;
  }
  .footer-nav__list-item:not(:first-child) {
    padding-left: 1rem;
    border-left: 1px solid #898F9C;
  }
}

.sub-page-title {
  font-size: 4.2rem;
  color: #fff;
  border: 0.5rem solid #fff;
  background-color: rgba(51, 51, 51, 0.5);
  padding: 1rem 3rem;
}

/*=========================
sub-page  common  ↓↓↓↓↓↓
=========================*/
.breadcrumb {
  margin: 2rem auto;
  width: 85%;
  max-width: 80rem;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.8;
}

.breadcrumb-list__item {
  position: relative;
}

.breadcrumb-list__item:not(:first-of-type) {
  margin-left: 3rem;
}

.breadcrumb-list__item:not(:first-of-type)::before {
  content: '>';
  display: block;
  position: absolute;
  left: -1.7rem;
  top: -0.2rem;
  width: 3rem;
  height: 100%;
}

.breadcrumb-list__link:hover {
  text-decoration: underline;
}

.sub-page-main-content-container {
  max-width: 120rem;
  margin: auto;
}

.pagination-container {
  margin: 3rem auto 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  min-width: 27.2rem;
  max-width: 46rem;
}

.pagination__number-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 76rem;
}

.pagination__prev-btn button, .pagination__next-btn button {
  /* ↓↓↓↓↓↓ボタンのリセットCSS↓↓↓↓↓↓*/
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* ↑↑↑↑↑↑ボタンのリセットCSS↑↑↑↑↑*/
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #898F9C;
  color: #898F9C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 4rem;
}

.pagination__prev-btn button:active,
.pagination__next-btn button:active {
  color: #fff;
  background-color: #8EC298;
}

.pagination__number > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 4rem;
  color: #898F9C;
  border: 1px solid #898F9C;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #fff;
}

.pagination__number:not(:first-child) {
  margin-left: 0.5rem;
}

.pagination__number--current > a {
  color: #fff;
  background-color: #8EC298;
}

.pagination__ellipsis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 4rem;
  color: #898F9C;
  font-size: 1.6rem;
  font-weight: bold;
}

@media print, screen and (min-width: 480px) {
  .pagination__prev-btn button, .pagination__next-btn button {
    width: 3rem;
  }
  .pagination__number > a {
    width: 4rem;
  }
}

@media print, screen and (min-width: 769px) {
  .pagination__prev-btn button:hover,
  .pagination__next-btn button:hover {
    color: #fff;
    background-color: #8EC298;
  }
}
/*# sourceMappingURL=common.css.map */