@charset "UTF-8";
/*=========== 共通 ===========*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
}

a {
  color: #2e2e2e;
  text-decoration: none;
  -webkit-transition: .9s;
  transition: .9s;
}

a:hover img {
  opacity: 0.7 !important;
}

a img {
  -webkit-transition: .9s;
  transition: .9s;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

* {
  outline: none;
}

.sp_br {
  display: block;
}

@media (min-width: 600px) {
  .sp_br {
    display: none;
  }
}

.common-main {
  margin: 30px 10px 50px;
}

@media (min-width: 600px) {
  .common-main {
    margin: 60px 0;
    padding: 0 20px;
  }
}

@media (min-width: 600px) {
  .common-footer__nav {
    padding: 0 20px;
  }
}

.common-footer__nav ul {
  margin: 50px 10px 20px;
}

@media (min-width: 600px) {
  .common-footer__nav ul {
    width: 100%;
    max-width: 1024px;
    margin: 150px auto 100px;
  }
}

.common-footer__nav li {
  display: inline;
}

.common-footer__nav li:not(:last-child)::after {
  content: '>';
  margin: 0 5px;
}

.common-footer__nav li a {
  text-decoration: underline;
}

.common-footer__nav li a:hover {
  text-decoration: none;
}

.primary-heading {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .primary-heading {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
}

.primary-heading--sub {
  display: block;
  color: #999;
  font-size: 1.2rem;
}

@media (min-width: 600px) {
  .primary-heading--sub {
    font-size: 1.8rem;
  }
}

.secondary-heading {
  font-size: 1.8rem;
  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;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .secondary-heading {
    max-width: 1024px;
    font-size: 2.4rem;
    margin: 0 auto 50px;
  }
}

.secondary-heading::before, .secondary-heading::after {
  content: '';
  display: block;
  width: 50%;
  height: 1px;
  background: #2e2e2e;
}

.secondary-heading span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 10px;
}

@media (min-width: 600px) {
  .secondary-heading span {
    margin: 0 20px;
  }
}

.tax {
  font-size: 60%;
}

/*-------公式のみ(チャットボタン位置調整)-------*/
@media (min-width: 600px) {
  .fs-p-footerPageTop {
    bottom: 50px;
  }
}

/*=========== フッター ===========*/
/*ページ上部へ戻るボタン*/
.pagetop-btn {
  display: none;
  border: solid 1px #000;
  border-radius: 50%;
  background: #fff;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 99;
}
@media (min-width: 600px) {
  .pagetop-btn {
    border: solid 2px #000;
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
}
.pagetop-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop-btn--arrow {
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}
@media (min-width: 600px) {
  .pagetop-btn--arrow {
    height: 10px;
    width: 10px;
  }
}