@charset "utf-8";

/* ////////////////////////////////////////////
 *				 base & layout
 * //////////////////////////////////////////// */

/* Typography
------------------------------------------*/
html {
    background: #fff;
    font-size: 14px;
}

body {
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    /*font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    color: #333;
}

a {
    color: #5ca8e3;
    text-decoration: none;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: underline;
}

/* use hover animation */
a,
a:hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/* Layout
------------------------------------------*/
body {
    min-width: 1080px;
    text-align: center;
}

body.home {
    word-break: break-all;
}

#container {
    overflow: hidden;
}


/* header
------------------------------------------*/
#header {
    font-size: 16px;
}

#header-inner {
    position: relative;
    width: 100%;
    height: 150px;
    margin: 0 auto;
    z-index: 20;
}

.site-description {
    position: absolute;
    /* initial 解除 */
    top: 6px;
    right: 160px;
    /* transform: translate(0, -50%); */
    text-align: right;
    font-size: 11px;
    color: #c6ced7;
}

.header-logo {
    position: absolute;
    /* initial 解除 */
    top: 50%;
    left: 2vw;
    transform: translate(0, -50%);
}
.header-translate{
    position: absolute;
    top: 37px;
    right: 320px;
}
.header-sns {
    position: absolute;
    /* initial 解除 */
    top: 30px;
    right: 160px;
    /* transform: translate(0, -50%); */
}

.header-sns ul {}

.header-sns ul li {
    display: inline-block;
    margin-right: 10px;
}

.header-fc-link {
    position: fixed;
    /* initial 解除 */
    top: 0;
    right: 0;
    /* transform: translate(0, -50%); */
    z-index: 10;
}

.gnav {
    position: absolute;
    top: 70px;
    right: 130px;
}

/* droppy */
.gnav-list {
    position: relative;
    text-align: left;
    zoom: 1;
}

.gnav-list li {
    float: left;
    display: block;
    position: relative;
    z-index: 20;
}

.gnav-list ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .8);
}

.gnav-list ul li {
    float: none;
}

.gnav-list ul li a {
    display: block;
    padding: 5px 10px;
    color: inherit;
    font-size: 13px;
    zoom: 1;
}

.gnav-list ul li a:hover {
    text-decoration: none;
    background: #fff;
}

.gnav-list ul ul {
    top: 0;
    left: 100%;
    width: 100%;
}

.gnav-list a,
.gnav-ul img {
    display: block;
}


/* header-contact
------------------------------------------*/
#header-cta {
    position: fixed;
    /* initial 解除 */
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    margin-top: 8vw;
    z-index: 50;
}

#header-cta ul {}

#header-cta ul li {}

#header-cta ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* mainimage
------------------------------------------*/
/* 横スライド
.slideshow .slick-list {overflow: visible;}
*/

#mainimage {
    position: relative;
    overflow: hidden;
    margin: 0 auto 0;
}

#mainimage-inner {
    margin: 0 auto;
    width: 100%;
    min-width: 980px;
}

.mainimage-copy {
    position: absolute;
    /* initial 解除 */
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    margin: 0 auto 2%;
}

.mainimage-copy img {
    animation: fadein-up 1s both;
    animation-delay: 0.8s;
}

.fadeInUP {
    animation: fadein-up 1s both;
    animation-delay: 0.5s;
}

@keyframes fadein-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* slideshow */
.slideshow {
    /* margin: 0 calc((-1180px + 980px)/ 2); */
}

.slideshow .slick-slide {}

.slideshow .slick-slide img {
    width: 100%;
}

/* arrows */
.main-location .slick-arrow,
.main-location .slick-arrow::before {
    width: 70px;
    height: 70px;
}

.main-location .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -35px;
}

.main-location .slick-arrow.slick-prev {
    left: -80px;
}

.main-location .slick-arrow.slick-prev::before {
    content: "";
    background: url(/images/default/arrow01.png) no-repeat center center;
}

.main-location .slick-arrow.slick-next {
    right: -80px;
}

.main-location .slick-arrow.slick-next::before {
    content: "";
    transform: rotate(-180deg);
    background: url(/images/default/arrow01.png) no-repeat center center;
}

.header-fc {
    background: #5ca8e3;
}

.header-fc-inner {
    position: relative;
    width: 1080px;
    margin: 0 auto;
    padding: 20px 20px;
}

.header-fc-title {
    content: '';
    position: absolute;
    /* initial 解除 */
    top: 50%;
    left: 70px;
    transform: translate(0, -50%);
}

.header-fc-text {
    width: 520px;
    margin: 0 auto 0 280px;
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 18px;
    text-align: left;
}

.header-fc-text p {}

.header-fc-more {
    content: '';
    position: absolute;
    /* initial 解除 */
    top: 50%;
    right: 60px;
    transform: translate(0, -50%);
}


/* content main
------------------------------------------*/
#content-inner {
    width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.home #content-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#main {
    width: 100%;
    text-align: left;
}

.template-type-blog #main {
    float: right;
    width: 830px;
    text-align: left;
}


/*---- concept ----*/
.main-concept {
    padding: 60px 0;
    background: url(/images/default/main-concept-bg.jpg) no-repeat center center;
}

.main-concept-title {
    margin-bottom: 50px;
    text-align: center;
}

.main-concept-inner {
    display: flex;
    flex-direction: row;
    /* column row-reverse column-reverse */
    flex-wrap: wrap;
    align-items: center;
    /* self-end self-start center */
    justify-content: flex-start;
    /* flex-end center nowrap space-between space-around */
    min-width: 980px;
    margin: 0 auto;
}

.main-concept-img {
    width: 60%;
}

.main-concept-img img {
    width: 100%;
}

.main-concept-textbox {
    position: relative;
    width: 580px;
    margin: 0 0 0 -180px;
    padding: 80px 60px;
    background: #fff;
}

.main-concept-text {}

.main-concept-text p {
    margin-bottom: 1em;
}

.main-concept-text h3 {
    margin-bottom: 0.8em;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    color: #5ca8e3;
    font-size: 30px;
}

.main-concept-more {
    position: absolute;
    /* initial 解除 */
    bottom: 0;
    right: 0;
    transform: translate(0, 50%);
}

.main-concept-point {
    margin-top: 60px;
}

/*---- menu ----*/
.main-menu {
    margin-bottom: 110px;
    padding: 100px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 358px, rgba(255, 255, 255, 0.0) 358px, rgba(255, 255, 255, 0.0) 100%),
        linear-gradient(90deg, #ffffff 0%, #ffffff 30%, #f0f7fc 30%, #f0f7fc 100%);
}

.main-menu-title {
    margin-bottom: 60px;
    text-align: center;
}

.main-menu-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.main-menu-inner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.main-menu-inner ul li {}

/*---- location ----*/
.main-location {
    padding: 100px 0 120px;
    background: url(/images/default/main-location-bg.png) no-repeat center center / cover;
}

.main-location-title {
    margin-bottom: 80px;
    text-align: center;
}

.main-location-inner {
    width: 1080px;
    margin: 0 auto;
}

.main-location-list {}

.main-location-list-item {
    position: relative;
    width: 530px;
    margin: 0 10px;
    padding: 20px 20px 120px;
    background: #fff;
}

.main-location-list-img {
    width: 490px;
    margin-bottom: 25px;
}

.main-location-list-title {
    color: #5ca8e3;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px #c6ced7 solid;
}

.main-location-list-title a {
    color: inherit;
}

.main-location-list-item address {
    font-size: 15px;
}

.main-location-list-item address i {
    margin-right: 4px;
    color: #5ca8e3;
}

.main-location-list-item address a {
    color: inherit;
}

.main-location-list-cat {}

.main-location-list-cat ul {}

.main-location-list-cat ul li {
    display: inline-block;
    margin: 0 4px 4px 0;
}

.main-location-list-cat ul li a {
    display: inline-block;
}

.main-location-list-cat a {
    display: block;
    padding: 0px 10px;
    background: #dff1fe;
    color: #5ca8e3;
    font-size: 13px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-location-list-cat a:hover {
    opacity: .7;
}

.main-location-list-more {
    content: '';
    position: absolute;
    /* initial 解除 */
    bottom: 20px;
    left: 0;
    right: 0;
    /* transform: translate(0, -50%); */
    width: 280px;
    margin: 0 auto;
}

.main-location-more {
    margin-top: 60px;
    text-align: center;
}

/*---- blog ----*/
.main-blog {
    padding: 100px 0 110px;
}

.main-blog-title {
    margin-bottom: 50px;
    text-align: center;
}

.main-blog-inner {
    width: 1080px;
    margin: 0 auto;
}

.main-blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0;
}

.main-blog-list-item {}

.main-blog-list-img {
    position: relative;
    margin-bottom: 10px;

}

.main-blog-list-title {
    margin-bottom: 3px;
    overflow: hidden;
}

.main-blog-list-title>a {
    display: block;
    margin-top: 3px;
    font-weight: bold;
    color: inherit;
}

.main-blog-list-date {
    position: absolute;
    top: 0;
    left: 0;
    background: #5ca8e3;
    color: #fff;
    padding: 0.5em;
    font-size: 18px;
    text-align: center;
}

.main-blog-list-date .year {
    font-size: 14px;
    display: block;
}

.main-blog-list-cat {
    display: inline-block;
    margin-bottom: 10px;
}

.main-blog-list-cat a {
    display: block;
    padding: 0px 10px;
    background: #dff1fe;
    color: #5ca8e3;
    font-size: 13px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-blog-list-cat a:hover {
    opacity: .7;
}

.main-blog-more {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/*---- column ----*/
.main-column {
    padding: 100px 0 110px;
    background: #f8f8f8;
}

.main-column-title {
    margin-bottom: 50px;
    text-align: center;
}

.main-column-inner {
    width: 1080px;
    margin: 0 auto;
}

.main-column-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0;
}

.main-column-list-item {}

.main-column-list-img {
    position: relative;
    margin-bottom: 10px;

}

.main-column-list-title {
    margin-bottom: 3px;
    overflow: hidden;
}

.main-column-list-title>a {
    display: block;
    margin-top: 3px;
    font-weight: bold;
    color: inherit;
}

.main-column-list-date {
    display: none;
    font-size: 14px;
}

.main-column-list-cat {
    display: inline-block;
    margin-bottom: 10px;
}

.main-column-list-cat a {
    display: block;
    padding: 0px 10px;
    background: #dff1fe;
    color: #5ca8e3;
    font-size: 13px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-column-list-cat a:hover {
    opacity: .7;
}

.main-column-more {
    text-align: center;
    margin-top: 50px;
}


/*---- fc ----*/


.main-fc {
    background: url(/images/default/main-fc-bg01.png) no-repeat bottom center / cover;
}

.main-fc-inner {
    position: relative;
    width: 1080px;
    min-height: 640px;
    margin: 0 auto;
    padding: 120px 0 130px;
    text-align: center;
}

.main-fc-inner:before {
    content: '';
    position: absolute;
    /* initial 解除 */
    bottom: -33px;
    left: 0;
    /* transform: translate(0, -50%); */
    width: 268px;
    height: 648px;
    background: url(/images/default/main-fc-bg02.png) no-repeat top left / 100% auto;
    z-index: 10;
}

.main-fc-title {
    margin-bottom: 60px;
}

.main-fc-text {
    width: 640px;
    margin: 0 auto;
    color: #2d3136;
    font-size: 18px;
    line-height: 2.2;
}

.main-fc-text p {}

.main-fc-more {
    margin-top: 60px;
}

/* content sidebar
------------------------------------------*/
.template-type-blog #sidebar {
    float: left;
    width: 220px;
    text-align: left;
}

.side-search {
    margin-bottom: 20px;
}

.side-nav {
    margin-bottom: 20px;
}

.side-nav-title {
    margin-bottom: 10px;
}

.side-nav li a {
    color: inherit;
}

.side-nav-list>li>a {
    display: block;
    padding: 5px;
    border-bottom: 1px dashed rgba(185, 185, 185, 0.5);
    font-size: 13px;
}

.side-nav-list>li>a::before {
    content: '\f105';
    padding-right: 5px;
    transform: scale(0.8);
    transform-origin: center;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5ca8e3;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.side-nav-list>li>ul {
    padding: 10px;
}

.side-nav-list>li>ul>li>a {
    display: block;
    padding: 2px;
    font-size: 12px;
}

.side-about {
    margin-bottom: 20px;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    background: #5ca8e3;
}

.side-banner {
    display: none;
}

.side-banner-list {}

.side-banner-list>li {
    margin-bottom: 10px;
}


/* footer
------------------------------------------*/
#footer {}

#footer-inner {
    position: relative;
    width: 1080px;
    padding: 20px 0;
    margin: 0 auto;
}

.footer-nav {
    font-size: 11px;
    margin: 3vmax 0;
}

.footer-nav li {
    display: inline-block;
}

.footer-nav li:not(:last-child)::after {
    content: "|";
    padding: 0 2em;
    color: #ccc;
}

.footer-nav li a {
    color: inherit;
    font-size: 16px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.footer-nav li ul {
    display: none;
}

.footer-logo {
    margin: 3vmax 0;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    color: #5ca8e3;
}

.pagetop-btn-wrap {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}


/* Lower
------------------------------------------*/
.entry {
    margin: 0 0 20px;
}

.entry-content p,
.entry-content li,
.entry-content th,
.entry-content td {
    font-size: 17px;
    line-height: 2;
}


/* heading */
.page-title {
    margin: 0 0 30px 0;
    padding: 5vmax 15px;
    font-size: 32px;
    font-weight: bold;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    color: #4b8bc6;
    text-align: center;
    background: linear-gradient(#f0f7fc, #deebf6);
}

.entry-title,
.entry-content h2 {
    margin: 0 0 25px;
    padding: 1em;
    background: #5ca8e3;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    position: relative;
}

.entry-title::before,
.entry-content h2::before {
    content: "";
    display: block;
    height: 35px;
    width: 8px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.entry-title a,
.entry-content h2 a {
    color: inherit;
}

.entry-content h3,
.h3 {
    padding: 0.8em 0;
    border-bottom: 3px solid #dff1fe;
    font-size: 22px;
    font-weight: bold;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    position: relative;
}

.entry-content h3::before,
.h3::before {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 200px;
    height: 3px;
    content: "";
    display: block;
    background: #5ca8e3;
}

.entry-content h4,
.h4 {
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #888;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.entry-content h4::before,
.h4::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 0.5em;
    color: #5ca8e3;
}

.entry-content h5,
.h5 {
    padding: 5px;
    border-bottom: 1px dashed #ccc;
    font-weight: bold;
    font-size: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}

.breadcrumb {
    justify-content: flex-start;
    margin: 0px 0 30px;
    padding: 0;
    background: none;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item:before {
    content: '>';
    color: inherit;
}

.breadcrumb-item.home:before {
    display: none;
    content: '\f015';
    padding: 0 5px 0 0;
    font-size: 11px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb a {
    color: #5ca8e3;
}


/* common-nav
------------------------------------------*/
.common-nav-list li {
    display: block;
    padding: 5px;
    border-bottom: 1px dashed rgba(186, 186, 186, 0.5);
}

.common-nav-list li a {
    padding: 5px;
    font-size: 13px;
}

/* blog-nav
------------------------------------------*/
/* 1カラム
.blog-nav-group {
	display: flex;
	justify-content: space-between;
}
.blog-nav {width: 23%;}
.blog-nav-title{text-align: center;}
*/

.blog-nav {
    margin: 0 0 20px 0;
    text-align: left;
}

.blog-nav-title {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(186, 186, 186, 0.5);
    font-size: 15px;
    font-weight: bold;
}

.blog-nav-list li a {
    position: relative;
    display: block;
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    border-bottom: 1px solid rgba(186, 186, 186, 0.5);
    font-size: 0.8rem;
    color: inherit;
}

.blog-nav-list li a::after {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
    content: '\f105';
    color: #5ca8e3;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-nav-list li li a {
    padding-left: 3.5rem;
}

.blog-nav-list li li a::after {
    left: 2.25rem;
}

.blog-nav-list li li li a {
    padding-left: 4rem;
}

.blog-nav .scroll-area {
    max-height: 200px;
}


/* Gallery
------------------------------------------*/
/* .gallery-nav */
.gallery-nav {
    margin-bottom: 30px;
}

.gallery-nav-inner {
    padding: 16px 36px;
    background: #f8f8f8;
}

.gallery-nav-list {}

.gallery-nav-list a {
    color: inherit;
}

.gallery-nav-list li {
    color: #2d3136;
    font-size: 16px;
    font-weight: bold;
}

.gallery-nav-list>li {
    display: block;
    clear: both;
    content: "";
    padding: 10px 0;
}

.gallery-nav-list>li:not(:last-child) {
    border-bottom: 1px #ddd solid;
}

.gallery-nav-list>li>a {
    float: left;
    width: 260px;
}

.gallery-nav-list>li.cat-item-53>a:before {
    content: '\f3c5';
    color: #5ca8e3;
    /*#fff*/
    padding-right: 6px;
    margin-left: -0px;
    transform: scale(0.8);
    transform-origin: center;
    font-family: 'Font Awesome 5 Free';
    /* FontAwesome */
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.gallery-nav-list>li.cat-item-52>a:before {
    content: '\f249';
    color: #5ca8e3;
    /*#fff*/
    padding-right: 6px;
    margin-left: -0px;
    transform: scale(0.8);
    transform-origin: center;
    font-family: 'Font Awesome 5 Free';
    /* FontAwesome */
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.gallery-nav-list>ul {}

.gallery-nav-list ul.children {
    display: flex;
    flex-direction: row;
    /* column row-reverse column-reverse */
    flex-wrap: wrap;
    align-items: center;
    /* self-end self-start center */
    justify-content: flex-start;
    /* flex-end center nowrap space-between space-around */
}

.gallery-nav-list ul li {}

.gallery-nav-list ul li a {
    padding: 0 10px;
}

.gallery-nav-list ul li a:before {
    content: '\f105';
    color: #5ca8e3;
    /*#fff*/
    padding-right: 6px;
    margin-left: -0px;
    transform: scale(0.8);
    transform-origin: center;
    font-family: 'Font Awesome 5 Free';
    /* FontAwesome */
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.gallery-nav-list ul ul ul {
    display: none;
}

/* archive */
.gallery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
}

.gallery-list-item {
    position: relative;
    padding: 20px 20px 120px;
    border: 1px #c6ced7 solid;
}

.gallery-list-img {}

.gallery-list-title {}

.gallery-list-item address {
    font-size: 15px;
}

.gallery-list-item address i {
    margin-right: 4px;
    color: #5ca8e3;
}

.gallery-list-item address a {
    color: inherit;
}

.gallery-list-more {
    text-align: right;
}

/* single */
.gallery-detail {
    margin-bottom: 20px;
    text-align: center;
}

.gallery-detail-row {}

.gallery-detail-col {}

.gallery-detail-main {}

.gallery-detail-sub {}

.gallery-detail-sub li {
    padding: 0 5px 10px;
}

/* before-after */
.ba-detail {
    padding: 0 0px 20px;
}

.ba-detail-once {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.ba-detail-before,
.ba-detail-after {
    position: relative;
    width: 45%;
}

.ba-detail-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}

.ba-detail-arrow i {
    font-size: 30px;
}

.ba-detail-sub li {
    padding: 0 15px 15px;
}


/* Colors
------------------------------------------*/
/* arrows */
.slick-next::before,
.slick-prev::before {
    color: #fff;
}

/* dots */
.slick-dots li button::before {
    color: #ccc;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before,
.slick-dots li.slick-active button::before {
    color: #5ca8e3;
}

/* SimpleBar */
.scroll-area {
    overflow: auto;
}

.simplebar-track.simplebar-vertical {
    width: 11px;
}

.simplebar-track.simplebar-horizontal {
    height: 11px;
}

.scroll-area .simplebar-scrollbar::before {
    background: #5ca8e3;
}

/* btns */
.btn-primary.disabled:hover,
.btn-primary:disabled:hover,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary.active:hover,
.btn-primary:active:hover,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary {
    border-color: #5ca8e3;
    background-color: #5ca8e3;
    color: #fff;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.btn-secondary.active:hover,
.btn-secondary:active:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary {
    border-color: #ccc;
    background-color: #fff;
    color: #333;
}

.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled:hover,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active:hover,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary {
    border-color: #5ca8e3;
    background-color: #fff;
    color: #5ca8e3;
}

/* pagination */
.page-link {
    border-color: #5ca8e3;
    color: #333;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover,
.page-link:focus,
.page-link:hover {
    border-color: #5ca8e3;
    background-color: #5ca8e3;
    color: #fff;
}