@charset "UTF-8";
/* CSS Document */
html, body {
    overflow-x: hidden;
    position: relative;
	-webkit-overflow-scrolling: touch
}
p {
    line-height: 2
}
@media screen and (max-width: 768px) {
	p {
    line-height: 1.8;
}
}
img {
    vertical-align: bottom;
    width: auto;
    height: auto;
    max-width: 100%;
}
.hover:hover {
    opacity: 0.7!important;
	cursor: pointer;
}
.bgimg {
    background-position: center center;
    background-size: cover;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
a[href^="tel:"] {
    pointer-events: none;
}
@media screen and (max-width: 1024px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}
.fadein {
    transform: translateY(40px);
}
/* =============================================================================================== */
/* ページャ                                                                                 */
/* =============================================================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    font-size: 16px;
    width: 100%;
}
.pagination span, .pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 4px;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    color: #188efb;
}
/* ページ番号 */
.pagination .pager {}
/* ホバー時 & 現在のページ */
.pagination a:hover, .pagination .current {
    color: #fff;
    background-color: #188efb;
}
/* 前へ */
.pagination a.prev {
    margin-right: 16px;
}
/* 次へ */
.pagination a.next {
    margin-left: 16px;
}
/* 最初へ */
.pagination a.first {
    display: none;
}
/* 最後へ */
.pagination a.last {
    display: none;
}
/* Page x / y */
.pagination span.page_num {
    display: none;
}
/* =============================================================================================== */
/* パンくず                                                                                 */
/* =============================================================================================== */
.pankuzu {
    width: 100%;
    padding: 0 100px 10px;
    display: flex;
}
@media (max-width: 1160px) {
    .pankuzu {
        padding: 0 20px 10px;
    }
    .column-template-default .pankuzu {
        display: none;
    }
}
@media (max-width: 768px) {
    .pankuzu {
        padding: 0 10px 10px;
    }
}
.pankuzu li {
    padding-right: 20px;
    margin-right: 10px;
    position: relative;
    font-size: 12px;
    font-family: YakuHanJP, "notosans_regular";
    white-space: nowrap;
}
@media (max-width: 768px) {
    .pankuzu li {
        padding-right: 10px;
        margin-right: 5px;
        letter-spacing: normal;
        font-size: 9px;
    }
}
.pankuzu li:last-child {
    padding-right: 0px;
    margin-right: 0px;
    position: relative;
}
.pankuzu li::after {
    content: ">";
    position: absolute;
    right: 0px;
}
.pankuzu li:last-child::after {
    display: none;
}
.pankuzu li:last-child {
    color: #188efb;
}
/* =============================================================================================== */
/* フェードインアニメーション                                                                            */
/* =============================================================================================== */
.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;
}
/* =============================================================================================== */
/* マスクアニメーション                                                                            */
/* =============================================================================================== */
.maskimg {
    overflow: hidden;
    position: relative;
}
.maskimg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    transition: .9s cubic-bezier(.12, .97, .37, 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%);
}