@charset "UTF-8";
/* =============================================================================================== */
/* 定義 */
/* =============================================================================================== */
/* =============================================================================================== */
/* 共通設定 */
/* =============================================================================================== */
html {
  font-family: YakuHanJP, "lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  color: #3f3f3f;
  letter-spacing: 0.1em;
  font-weight: 300;
}
@media (max-width: 1024px) {
  html {
    font-size: 13px;
  }
}

body {
  overflow-x: hidden;
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.base {
  width: 100%;
  max-width: 1200px;
  padding: 0px 20px;
  margin: 0 auto;
  clear: both;
  position: relative;
}

.base-100 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  clear: both;
  position: relative;
}

.base-sub {
  width: 100%;
  max-width: 960px;
  padding: 0px 20px;
  margin: 0 auto;
  clear: both;
  position: relative;
}

p {
  line-height: 1.6;
}
@media (max-width: 425px) {
  p {
    line-height: 1.6;
  }
}

a {
  color: #333333;
}

img {
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

/* =============================================================================================== */
/* 共通クラス */
/* =============================================================================================== */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.8;
}
#page_top:hover {
  background: #666666;
}
@media (max-width: 425px) {
  #page_top {
    display: none !important;
  }
}
#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.is-fixed {
  position: fixed !important;
  right: 0px !important;
  top: 100px !important;
}

.hover:hover {
  opacity: 0.7 !important;
  cursor: pointer;
}

.bgimg {
  background-position: center center;
  background-size: cover;
}

.pc {
  display: block !important;
}
@media (max-width: 425px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 425px) {
  .sp {
    display: block !important;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media (max-width: 425px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.wrp-iframe {
  width: 100%;
  height: 400px;
}
.wrp-iframe iframe {
  width: 100%;
  height: 100%;
}

/* =============================================================================================== */
/* テキストホバー */
/* =============================================================================================== */
/* ライン */
.line-hover {
  position: relative;
  display: inline-block;
  transition: 0.3s;
  padding: 0 0 5px 0;
}
.line-hover::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #40607b;
  transition: 0.3s;
}
.line-hover:hover::after {
  width: 100%;
}

.isActive .line-hover::after {
  background-color: #527b84;
}

.block-pagenavi .line-hover::after {
  background-color: #527b84;
  height: 1px;
  bottom: -1px;
}

/* =============================================================================================== */
/* フェードイン */
/* =============================================================================================== */
.fadein-bottom {
  transform: translateY(20px);
}

.fadein-top {
  transform: translateY(-20px);
}

.fadein-right {
  transform: translateX(20px);
}

.fadein-left {
  transform: translateX(-20px);
}

.fadein-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.fadein {
  opacity: 0;
  transition: all 1s;
}

.fadein.isPlay {
  opacity: 1;
  transform: translate(0);
}

/* =============================================================================================== */
/* マスクアニメーション */
/* =============================================================================================== */
.maskimg {
  overflow: hidden;
  position: relative;
}
.maskimg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ecf2f0;
  transition: 0.4s;
  z-index: 1;
}

.isPlay-left:before {
  transform: translate(100%, 0);
}

.isPlay-right:before {
  transform: translate(-100%, 0);
}

.isPlay-top:before {
  transform: translate(0, 100%);
}

.isPlay-bottom:before {
  transform: translate(0, -100%);
}

/* =============================================================================================== */
/* パンクズ */
/* =============================================================================================== */
.pan {
  padding: 10px 0 10px 0;
  line-height: 1.3;
}
.pan li {
  padding-right: 10px;
  color: #000;
  display: inline-block;
}
.pan li a {
  color: #000;
}
.pan li a:hover {
  opacity: 0.6;
}
.pan li a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  padding-left: 10px;
}
.pan li:last-child a:after {
  content: none;
}

/* =============================================================================================== */
/* ページャ                                                                                 */
/* =============================================================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 40px;
  position: relative;
  font-size: 13px;
}

.pagination span,
.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px 13px;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  border: 1px solid #fff;
  mix-blend-mode: darken;
}
.pagination span.first,
.pagination a.first {
  display: none !important;
}
.pagination span.last,
.pagination a.last {
  display: none !important;
}
.pagination span i,
.pagination a i {
  font-size: 1.7em;
}

/* ページ番号 */
.pagination .pager {
  display: inline;
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  border: 1px solid #707070;
}

/* 前へ */
.pagination a.prev {
  margin-right: 16px;
}

/* 次へ */
.pagination a.next {
  margin-left: 16px;
}

/* 最初へ */
.pagination a.first {
  display: inline;
}

/* 最後へ */
.pagination a.last {
  display: inline;
}

/* Page x / y */
.pagination span.page_num {
  display: none;
}/*# sourceMappingURL=cmn.css.map */