@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@700&display=swap');


/* ////////////////////////////////////////////
 *                 base & layout
 * //////////////////////////////////////////// */
:root {
    --color-bg: #F6F5F1;
    --color-default: #58422d;
    --color-primary: #f19149;
    --color-secondary: #c6af90;
    --color-gray: #fff;
    --box-margin: 4vmax;
}

/* Typography
------------------------------------------*/
html {
    font-size: 18px;
}

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: #4d4842;
    background: var(--color-bg);
}

a {
    color: #333;
    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;
}


/*==========
CONTENTS WORKS ID:1801
==========*/
/*css*/
.cw-btn.full {
    width: 80%;
}

.cw-btn {
    background-color: var(--color-primary);
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
    padding: 0.8em 2em;
    margin: 30px auto;
    color: #fff;
    text-align: center;
    text-decoration: none !important;
    overflow: hidden;
}

.cw-btn:hover {
    text-decoration: none !important;
    color: #fff;
    box-shadow: none;
    -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;
    opacity: 0.8;
}

.cw-btn:visited {
    text-decoration: none !important;
    color: #fff;
}

.cw-btn::after {
    content: '\f0a9';
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    margin-left: 1em;
}

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

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

#container {
    overflow: hidden;
}


/* header
------------------------------------------*/
#header {
    background: #fff;
}

#header-inner {
    position: relative;
    width: 1080px;
    height: 190px;
    margin: 0 auto;
    z-index: 20;
}

.site-description {
    position: absolute;
    top: 15px;
    right: 0;
    font-size: 11px;
    color: #aaa;
}

.header-logo {
    position: absolute;
    top: 5px;
    left: 0;
}

.header-tel {
    position: absolute;
    top: 55px;
    right: 200px;
}

.header-mail {
    position: absolute;
    top: 45px;
    right: 0;
}

.gnav {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
}

/* droppy */
.gnav-list {
    position: relative;
    text-align: left;
    zoom: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-right: 1px solid #ddd;
}

.gnav-list li {
    float: left;
    display: block;
    position: relative;
    z-index: 20;
    border-left: 1px solid #ddd;
    width: 100%;
}

.gnav-list li>a {
    display: block;
    text-align: center;
    padding-bottom: 20px;
}

.gnav-list ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: rgba(88, 66, 45, 0.8);
}

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

.gnav-list ul li a {
    display: block;
    padding: 8px 10px;
    color: #fff;
    font-size: 16px;
    zoom: 1;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gnav-list ul li a::before {

    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-right: 1em;
    color: var(--color-secondary);
}

.gnav-list ul li a:hover {
    text-decoration: none;
    background: rgba(88, 66, 45, 0.8);
}

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

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


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

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

#mainimage-inner {
    margin: 0 auto;
    width: 1080px;
}

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

.slideshow .slick-slide {
    backface-visibility: hidden;
}

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

/* arrows */
.slideshow .slick-arrow,
.slideshow .slick-arrow::before {
    width: 20px;
    height: 30px;
}

.slideshow .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.slideshow .slick-arrow.slick-prev {
    left: 30px;
}

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

.slideshow .slick-arrow.slick-next {
    right: 30px;
}

.slideshow .slick-arrow.slick-next::before {
    content: "";
    background: url(/images/default/slideshow-next.png) no-repeat center center;
}

/* dots */
.slideshow .slick-dotted {
    margin-bottom: 30px;
}

.slideshow .slick-dots {
    bottom: -30px;
}

.slideshow .slick-dots li {}

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

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


/* content main
------------------------------------------*/
.home #content-inner {
    width: 100%;
    margin: 0 auto;
}

#content-inner {
    width: 1080px;
    margin: 0 auto;
    padding-bottom: 60px;
}

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


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

.main-common-title {
    font-size: 40px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3vmax;
    color: var(--color-default);

}

.main-common-title .en {
    font-size: 14px;
    font-family: 'Shippori Mincho', serif;
    display: block;
    color: var(--color-primary);

}

.main-common-subtitle {
    font-size: 22px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3vmax;

}

.main-feature {
    padding: var(--box-margin) 0;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.main-feature-inner {
    position: relative;
}

.main-feature-inner::before {
    position: absolute;
    left: -140px;
    top: 0;
    content: "";
    display: block;
    background: url(/images/default/main-feature-bg01.png) no-repeat center center /contain;
    width: 336px;
    height: 440px;
}

.main-feature-inner::after {
    position: absolute;
    right: -140px;
    top: 0;
    content: "";
    display: block;
    background: url(/images/default/main-feature-bg02.png) no-repeat center center /contain;
    width: 373px;
    height: 414px;
}


.main-feature-once {
    width: 650px;
    margin: 0 auto;
}

.main-feature-title {
    margin-bottom: 10px;
}

.main-feature-text {
    padding: 2em;
    text-align: center;
}

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

.main-about {
    position: relative;
    z-index: 2;
    padding: var(--box-margin) 0;
}

.main-about-01,
.main-about-02 {
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4vmax;
}

.main-about-01 .text {
    position: relative;
    background: var(--color-gray);
    padding: 5vmax 3vmax;
    z-index: 3;
    width: 50%;
}

.main-about-01 h3,
.main-about-02 h3 {
    font-size: 33px;
    color: var(--color-default);
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 1em;
}

.main-about-01 h3 strong,
.main-about-02 h3 strong {
    font-size: 46px;
    color: var(--color-primary);
}


.main-about-01 .text::before {
    position: absolute;
    background: var(--color-gray);
    content: "";
    display: block;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.main-about-01::before {
    position: absolute;
    content: "";
    display: block;
    width: 55vw;
    height: 100%;
    background: url(/images/default/main-about-img01.png) no-repeat center center /cover;
    z-index: 1;
    right: 0;
    top: 1.5vmax;
}


.main-about-02 .text {
    position: relative;
    background: var(--color-gray);
    padding: 3vmax;
    z-index: 3;
    width: 50%;
    margin-left: 50%;
}

.main-about-02 .text::before {
    position: absolute;
    background: var(--color-gray);
    content: "";
    display: block;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.main-about-02::before {
    position: absolute;
    content: "";
    display: block;
    width: 55vw;
    height: 100%;
    background: url(/images/default/main-about-img02.png) no-repeat center center /cover;
    z-index: 1;
    left: 0;
    top: -1.5vmax;
}


.main-example {
    background: url(/images/default/main-example-bg.png) no-repeat center center /cover;
    padding: var(--box-margin) 0;
    background-attachment: fixed;
}

.main-example-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.main-example-list li {
    text-align: center;
}

.main-example-list li img {
    margin-bottom: 1vmax;
}

.main-menu {
    padding: var(--box-margin) 0;
    position: relative;
    background: #fff;
}


.main-menu-once {
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4vmax;
    min-height: 30vmax;
}

.main-menu-once .text h3 {
    font-size: 33px;
    padding: 0.8em 0;
    border-bottom: 1px solid var(--color-primary);
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 0.8em;
    color: var(--color-default);
}

.main-menu-once .text h3::before {
    content: '\f46d';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: var(--color-primary);
    margin-right: 0.2em;
}

.main-menu-once.left .text {
    position: relative;
    padding: 3vmax;
    z-index: 3;
    width: 50%;
    margin-left: 50%;
}

.main-menu-once.left::before {
    position: absolute;
    content: "";
    display: block;
    width: 50vw;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}

.main-menu-once.right .text {
    position: relative;
    padding: 3vmax;
    z-index: 3;
    width: 50%;
}


.main-menu-once.right::before {
    position: absolute;
    content: "";
    display: block;
    width: 50vw;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
}

.main-menu-once.menu-01::before {
    background: url(/images/default/menu-01.png) no-repeat center center /cover;
}

.main-menu-once.menu-02::before {
    background: url(/images/default/menu-02.png) no-repeat center center /cover;
}

.main-menu-once.menu-03::before {
    background: url(/images/default/menu-03.png) no-repeat center center /cover;
}

.main-menu-once.menu-04::before {
    background: url(/images/default/menu-04.png) no-repeat center center /cover;
}

.main-voice {
    padding: var(--box-margin) 0;
    position: relative;
}


.main-voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.main-news {
    position: relative;
    padding: var(--box-margin) 0;
    background: #fff;
}

.main-news-title {
    font-size: 40px;
    font-family: 'Shippori Mincho', serif;
    margin-right: 20px;
}

.main-news-title .en {
    font-size: 14px;
    font-family: 'Shippori Mincho', serif;
    display: block;
    color: var(--color-primary);
    position: relative;
}

.main-news-title .en::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);

}


.main-news-inner {
    display: flex;
    justify-content: space-around;
}

.main-news-list {}

.main-news-list-item {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(185, 185, 185, 0.5);
}

.main-news-once {
    flex: 1;
}

.main-news-list-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-news-list-title>a {
    font-weight: bold;
    color: inherit;
}

.main-news-list-date {
    margin-right: 10px;
}

.main-news-list-cat {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
}

.main-news-list-cat a {
    display: block;
    padding: 0 10px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

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

.main-news-more {
    position: absolute;
    top: 0px;
    right: 0px;
}

.main-news .scroll-area {
    max-height: 100px;
}


.main-blog {
    padding: var(--box-margin) 0;
    background: #f9f0ea;
    position: relative;
}

.main-blog-title {
    margin-bottom: 10px;
}

.main-blog-inner {}

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

.main-blog-list-item {
    margin-bottom: 10px;
}

.main-blog-list-img {}

.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 {
    margin-right: 10px;
}

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

.main-blog-list-cat a {
    display: block;
    padding: 0px 10px;
    background: var(--color-secondary);
    color: #fff;
    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-list-text {
    font-size: 12px;
}

.main-blog-more {
    position: absolute;
    top: 0px;
    right: 0px;
}


.main-palarax {
    width: 100%;
    height: 20vmax;
    background: url(/images/default/main-palarax.png) no-repeat center center / cover;
    background-attachment: fixed;
}


.main-message {
    padding: var(--box-margin) 0;
    position: relative;
    z-index: 2;
}

.main-message-inner {

    display: flex;
    justify-content: space-between;
}

.main-message-title {
    font-size: 40px;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 2vmax;
}

.main-message-title .en {
    font-size: 14px;
    font-family: 'Shippori Mincho', serif;
    display: block;
    color: var(--color-primary);
    position: relative;
}

.main-message-title .en::before {
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);

}

.main-message .text {
    width: 55%;
}

.main-message .text p {
    margin-bottom: 0.8em;
}

.main-message .image {
    width: 40%;
}

.main-bnr {
    padding: var(--box-margin) 0;
    background: #fff;
    position: relative;
}

.main-bnr-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}




/* content sidebar
------------------------------------------*/
#side-ec {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

#side-ec a {
    display: inline-block;
    padding: 1em 0.8em;
    background: var(--color-primary);
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    border-radius: 10px 0 0 10px;
}

#side-ec a:hover {
    text-decoration: none;
}

#side-ec a::before {
    content: '\f07a';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    margin-bottom: 0.5em;
}

/* content sidebar
------------------------------------------*/
#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 {}

.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: #333;
    -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;
    background: #222;
    font-size: 12px;
    color: #fff;
}

.side-banner {}

.side-banner-list {}

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


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

    padding: var(--box-margin) 0;
    background: #f9f0ea;
}

.footer-cta {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 4vmax;
}


.footer-cta-title-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.footer-cta-title {
    font-size: 40px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    color: var(--color-default);
}

.footer-cta-title .en {
    font-size: 14px;
    font-family: 'Shippori Mincho', serif;
    display: block;
    color: var(--color-primary);
    position: relative;
}

.footer-cta-inner {
    padding: 0 2vmax 2vmax 2vmax;
}

.footer-cta-title-img {
    position: relative;
    margin-top: 20px;
}

.footer-cta-01,
.footer-cta-02 {
    padding: 1vmax 0 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-cta-02 .line {
    width: 300px;
}

.footer-cta-02 .contact {
    flex: 1;
    background: #fae9df;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 20px;
    border-radius: 10px;
}


.footer-cta-02 .contact .ttl {
    font-size: 30px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    color: var(--color-default);
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-cta-02 .contact-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-cta-02 .contact-inner img {
    margin: 0 20px;
}

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

.footer-nav {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 4vmax;

}

.footer-nav li {
    font-size: 14px;
    text-align: left;
}


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

.footer-nav li a::before {
    content: '\f105';
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: var(--color-primary);
    margin-right: 0.5em;
}

.footer-nav li ul {
    margin-left: 1em;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
}

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


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

.entry-content {}


/* heading */
.page-title {
    margin: 0 0 30px 0;
    padding: 4vmax 15px;
    background: var(--color-secondary);
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
}

.entry-title a,
.entry-content h2:not([class]) a {
    color: inherit;
}

.entry-title,
.entry-content h2:not([class]),
.h2 {
    margin: 2.2em 0 1.4em 0;
    padding: 26px 10px 26px 18px;
    border-left: 2px solid #96826b;
    background: #eae1d6;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-default);
}

.entry-content h3:not([class]) {
    position: relative;
    margin: 2em 0 1.4em 0;
    padding: 24px 10px 24px 0;
    border-bottom: 1px solid #c9c0b5;
    font-size: 26px;
    font-weight: bold;
    color: var(--color-default);
}

.entry-content h3:not([class])::before {
    display: block;
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    border-top: #c9c0b5 4px solid;
}


.entry-content h4:not([class]),
.h4 {
    margin: 1.8em 0 1.2em 0;
    padding: 0 0 0 13px;
    border-left: 5px solid #ccc;
    font-size: 15px;
    font-weight: bold;
}

.entry-content h5:not([class]),
.h5 {
    margin: 1em 0;
    padding: 5px;
    border-bottom: 1px dashed #ccc;
    font-weight: bold;
}


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

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

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

.breadcrumb-item.home:before {
    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;
}


/* 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';
    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
------------------------------------------*/
/* archive */
.gallery-list {}

.gallery-list-item {
    padding: 0 15px 15px;
}

.gallery-list-img {
    margin-bottom: 3px;
}

.gallery-list-title {
    font-size: 13px;
}

.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: #666;
}

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

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

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

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

/* 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: #202020;
    background-color: #2e2e2e;
    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: #202020;
    background-color: #fff;
    color: #202020;
}

/* pagination */
.page-link {
    border-color: #9e9e9e;
    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: #999999;
    background-color: #9e9e9e;
    color: #fff;
}