@charset "UTF-8";
/* =============================================================================================== */
/* 定義 */
/* =============================================================================================== */
/* =============================================================================================== */
/* 共通設定 */
/* =============================================================================================== */
html {
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 16px;
  color: #333333;
  font-feature-settings: "palt";
}
@media (max-width: 1040px) {
  html {
    font-size: 14px;
  }
}

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

.base {
  width: 100%;
  max-width: 1040px;
  padding: 0px 20px;
  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: 2;
}
@media (max-width: 425px) {
  p {
    line-height: 1.8;
  }
}

a {
  color: #333333;
}

img {
  vertical-align: bottom;
  height: auto;
  max-width: 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 {
  position: relative;
  padding-bottom: 547px;
  height: 0;
  overflow: hidden;
}
@media (max-width: 425px) {
  .wrp-iframe {
    padding-bottom: 300px;
  }
}
.wrp-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  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: 2px;
  background-color: #ffffff;
  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.7s;
  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: 15px 0 10px 0;
  line-height: 1.3;
  font-size: 12px;
  color: #858585;
}
@media (max-width: 1040px) {
  .pan {
    padding: 14px 0 5px 0;
    font-size: 10px;
  }
}
.pan li {
  padding: 0 10px 5px 0;
  color: rgb(89, 89, 89);
  display: inline-block;
  position: relative;
}
.pan li a {
  color: #858585;
}
.pan li a:hover {
  opacity: 0.6;
}
.pan li a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  padding-left: 10px;
}
.pan li:last-child a:after {
  content: none;
}

.wrp-ol {
  padding: 0 0 0 30px;
}
@media (max-width: 1040px) {
  .wrp-ol {
    padding: 0 0 0 20px;
  }
}

/* =============================================================================================== */
/* ページャ                                                                                 */
/* =============================================================================================== */
.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;
}
.pagination span.last,
.pagination a.last {
  display: none;
}
.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;
}

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