@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&display=swap');

:root{
    --main-color: #8d887d;
    --sub-color-01: #C6C3BD;
    --sub-color-02: #f4f4f4;
    --sub-color-03: #bea269; /*button*/
}

/*
main color : var(--main-color);
sub color 1: var(--sub-color-01);
sub color 2: var(--sub-color-02);
sub color 3: var(--sub-color-03);
*/

html{
	font-size: 62.5%; 
	scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 1.3rem;
    line-height: 1.8;
	font-weight: 400;
    color: #333;
    background: #fff;
	letter-spacing: 0.5px;
    overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%
}

/*
 common
******************************************************************************
*/
h1,h2,h3,h4,h5,h6{
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    /*color: #C38F5C;*/
    line-height: 1.8;
}

p,dl{line-height: 2;}

.txt-serif{font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";}
.txt-sans-serif{font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";}
.txt-en-01{
    font-family: "Reem Kufi", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
}

/** title **/
/* footer section title */
.tit-ft{
    font-size: 1.8rem;
    margin: 0 0 40px !important;
    padding: 0 0 0 20px;
    line-height: 1;
    position: relative;
}

.tit-ft:before{
    content: "";
    display: inline-block;
    background-image: url("../image/line_title.png");
    background-size: contain;
    width: 1px;
    height: 90px;
    position: absolute;
    left: 0;
    bottom: 0;
}

/** divider **/
.divider-whole{
    background-color: #d9d9d9;
    width: 100%;
    height: 1px;
}

/** align, color, size **/
.align-l{text-align: left;}
.align-c{text-align: center;}
.align-r{text-align: right;}

.align-lc{text-align: left;}

.txt-black{color: #333;}
.txt-black-02{color: #201914;}
.txt-white{color: #fff !important}
.txt-red{color: #C15B5B;}
.txt-blue{color: #487795;}

.txt-color-main{color: var(--main-color);}

.txt-small{font-size: 1.2rem;}

/** background color **/
.bg-main{background-color: #f7f6f5;}
.bg-light-gray{background-color: #f4f4f4;}
.bg-white{background-color: #fff;}

/** image **/
img{width: 100%;}

/** button **/
/* default */
.uk-button-default{
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 50px;
    position: relative;
}

.uk-button-default:after{
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_btn.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 35px;
    height: 7px;
    position: absolute;
    right: 23px;
    top: 45%;
    transition: all .3s;
}

.uk-button-default:hover:after{
    right: 17px;
}

/* primary */
.uk-button-primary{
    width: 100%;
    border: 1px solid var(--sub-color-03);
    border-radius: 50px;
    position: relative;
    background: var(--sub-color-03);
    font-size: 1.6rem;
}

.uk-button-primary:after{
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_btn_w.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 35px;
    height: 7px;
    position: absolute;
    right: 23px;
    top: 45%;
    transition: all .3s;
}

.uk-button-primary:hover:after{
    right: 17px;
}

/* Hover */
.uk-button-primary:hover,
.uk-button-primary:active,
.uk-button-primary.uk-active{
    background-color: var(--sub-color-03);
}

/* secondary */
.uk-button-secondary{
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 50px;
    position: relative;
    background: var(--main-color);
}

.uk-button-secondary:after{
    display: inline-block;
    content: "";
    background-image: url("../image/arrow_btn_w.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 35px;
    height: 7px;
    position: absolute;
    right: 23px;
    top: 45%;
    transition: all .3s;
}

.uk-button-secondary:hover:after{
    right: 17px;
}

/* Hover */
.uk-button-secondary:hover,
.uk-button-secondary:active,
.uk-button-secondary.uk-active{
    background-color: var(--main-color);
}


/** link text **/
/* default */
a.link-txt-line{
    padding: 0 30px 11px 0;
    display: block;
    position: relative;
}

a.link-txt-line:after{
    display: inline-block;
    content: "";
    background-image: url("../image/link_underline_01.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 130px;
    height: 7px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

a.link-txt-line:hover:after{
    left: 11px;
}

/* long */
a.link-txt-line-l{
    padding: 0 30px 11px 0;
    display: block;
    position: relative;
}

a.link-txt-line-l:after{
    display: inline-block;
    content: "";
    background-image: url("../image/link_underline_02.png");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 190px;
    height: 7px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

a.link-txt-line-l:hover:after{
    left: 11px;
}

/** tel **/
a[href^="tel:"]{cursor: pointer;}

@media (min-width: 768px) {
       
	.align-lc{text-align: center;}
    
    a[href^="tel:"]{cursor: default;}
	
    /* primary */
    .uk-button-primary{
        width: 66%;
        margin: 0 auto;
    }
    
}

@media all and (min-width: 768px) and (max-width: 1024px) { 
    

		
}

/** reset **/
ul,ol{
    padding: 0;
    list-style: none;
}

/** margin **/
.mgnB0 {margin-bottom:0 !important;}
.mgnB5 {margin-bottom:5px !important;}
.mgnB10 {margin-bottom:10px !important;}
.mgnB15 {margin-bottom:15px !important;}
.mgnB20 {margin-bottom:20px !important;}
.mgnB30 {margin-bottom:30px !important;}
.mgnB40 {margin-bottom:40px !important;}
.mgnB50 {margin-bottom:50px !important;}
.mgnB60 {margin-bottom:60px !important;}
.mgnB70 {margin-bottom:70px !important;}
.mgnB80 {margin-bottom:80px !important;}
.mgnB90 {margin-bottom:90px !important;}
.mgnB100 {margin-bottom:100px !important;}

.mgnT0 {margin-top:0 !important;}
.mgnT5 {margin-top:5px !important;}
.mgnT10 {margin-top:10px !important;}
.mgnT20 {margin-top:20px !important;}
.mgnT30 {margin-top:30px !important;}
.mgnT40 {margin-top:40px !important;}
.mgnT50 {margin-top:50px !important;}
.mgnT60 {margin-top:60px !important;}
.mgnT70 {margin-top:70px !important;}
.mgnT80 {margin-top:80px !important;}
.mgnT80 {margin-top:90px !important;}
.mgnT100 {margin-top:100px !important;}


/** visibility **/
.visible-sp{display: none !important;}

/*@media all and (min-width: 768px) and (max-width: 1024px) { 

    
}*/

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

}


/*
 header
******************************************************************************
*/
/** header **/
.header{
    background-color: rgba(244,244,244,0.9);
    position: relative;
}

.header-logo{
    width: 136px;
    margin: 20px 0;
}


@media (min-width: 1025px) {
    
    
}


/** nav contact **/
body.fixed{
  position: fixed;
  width:100%;
}

/* panel area */
#nav-contact{
    position:fixed;
    z-index: 998;
    top: -200%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #C38F5C;
    /*transition: all 0.3s ease-out;*/
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

#nav-contact-list section{
    padding: 50px 0;
}

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

/*アクティブクラスがついたら位置を0に*/
#nav-contact.panelactive{
    top: 69px;
}

#nav-contact.panelactive #nav-contact-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998; 
    width: 100%;
    /*height: 100vh;
    height: calc(100% - 69px);*/
    height: calc(100% - 100px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}



/** nav hamburger menu **/
/* panel area */
#nav-hmenu{
    position:fixed;
    z-index: 998;
	top: -250%;
    left: 0;
	width: 100%;
    height: 100vh;
	background: var(--main-color);
	/*transition: all 0.3s ease-out;*/
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/*アクティブクラスがついたら位置を0に*/
#nav-hmenu.panelactive{
    top: 0px;
}

#nav-hmenu.panelactive #nav-hmenu-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 998; 
    width: 100%;
    /*height: 100vh;
    height: calc(100% - 69px);*/
    height: calc(100% - 100px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* open button */
.openbtn-hmenu{
    cursor: pointer;
	position:fixed;
    z-index: 999;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
}
	
/* open button × に変化 */	
.openbtn-hmenu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 1px;
	background-color: #333;
  	width: 36px;
  }

.openbtn-hmenu span:nth-of-type(1) {
    top: 0;
}

.openbtn-hmenu span:nth-of-type(2) {
    /*top: 28px;*/
    opacity: 0;
}

.openbtn-hmenu span:nth-of-type(3) {    
    top: 12px;
}

.openbtn-hmenu.active span:nth-of-type(1) {
    top: 0px;
    left: 0px;
    /*transform: translateY(6px) rotate(-45deg);*/
    transform: translateY(6px) rotate(-35deg);
    width: 36px;
    background-color: #fff;
}

.openbtn-hmenu.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn-hmenu.active span:nth-of-type(3){
    top: 11px;
    left: 0px;
    /*transform: translateY(-6px) rotate(45deg);*/
    transform: translateY(-6px) rotate(35deg);
    width: 36px;
    background-color: #fff;
}

.openbtn-hmenu::after{
    content: "MENU";
    color: #333;
    font-size: 1rem;
    font-family: "Reem Kufi", sans-serif;
    line-height: 1;
    position: absolute;
    top: 25px;
    right: 1px;
}

.openbtn-hmenu.active::after{
    /*content: "CLOSE";*/
    content: none;
}

/**  hamburger menu内のnav  **/
.nav-hmenu-inner{
    padding: 0;
}

.nav-hmenu-logo{
    width: 136px;
    padding: 27px 0 0 14px;
}

.nav-hmenu-def{
    margin: 70px 0 0 40px;
}

/* hmenu・footer共通 */
a.nav-category-sp{
    margin: 13px 0;
    color: #fff;
    display: block;
    border-bottom: 1px solid #B0ACA4;
    padding-bottom: 13px;
}

.nav-category-sp-inner{
    margin: 30px 0 50px;
}

.nav-category-sp-inner a{
    margin: 15px 0;
    color: #fff;
    display: block;   
}


@media (min-width: 768px) {
    
   .nav-hmenu-logo{
        width: 136px;
        padding: 27px 0 0 30px;
    }
    
    
}


@media (min-width: 1200px) {
    
    /** header **/    
    .header{
        z-index: 1000;
    }
    
    .header-logo{
        width: 190px;
        margin: 25px 0
    }
    
    /** header main **/    
    .nav-header-main .uk-navbar-nav{
        padding: 0 56px 0 0;
    }
    .nav-header-main .uk-navbar-nav > li > a{
        color: #484848;
        display: block;
        text-align: center;
        padding: 0 15px;
        min-height: 15px;
        font-size: 1.3rem;
        font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    }
    
    .nav-header-main .uk-navbar-dropdown{
        background: #F4F3F1;
        padding: 30px 21px 40px 21px;
        box-shadow: none;
    }
    
    .nav-header-main .uk-navbar-dropdown-nav > li > a,
    .nav-header-main .uk-navbar-dropdown-nav > li > a:hover,
    .nav-header-main .uk-navbar-dropdown-nav > li.uk-active > a{
        color: #C38F5C;
    }
    
    .nav-header-main .uk-navbar-dropdown-nav{
        font-size: 1.1rem;
    }
    
    .uk-navbar-dropdown-nav > li > a{
        padding: 13px 0;
        border-bottom: 1px solid #E2DCD7;
        position: relative;
    }
    
    .uk-navbar-dropdown-nav > li > a:after{
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url("../image/arrow_b_next.png");
        background-size: contain;
        vertical-align: middle;
        position: absolute;
        right: 0;
        top: 16px;
    }
    
    
    
}


@media all and (min-width: 1200px) and (max-width: 1500px) { 
     
    /** header main **/
    /*.nav-header-main{
        margin-right: 110px;
    }*/
    
    .nav-header-main .uk-navbar-nav > li > a{
        padding: 0 7px;
    }
    
}



/*
 footer
******************************************************************************
*/

/*
 search
************************/

/* nav-search */
ul.nav-search{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 40px;
}

ul.nav-search li{
    width: 100%;
    margin-bottom: 20px;
}

ul.nav-search li a{
    background: transparent;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 9px 2px 9px 45px;
    border: 1px solid #fff;
    position: relative;
    text-decoration: none;
}

ul.nav-search li span{
    width: 41.4px;
    height: 41.4px;
    background: #fff;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

ul.nav-search li span img{
    width: 13px;
    margin-top: 11px;
}

/* top */
.sec-search-top{
    background: url("../image/top/bg_search.jpg") top center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 50px 0 125px;
    position: relative;
    z-index: 4;
}

.sec-search-top h2{
    font-size: 1.6rem;
    margin: 0 0 20px;
}

.sec-search-top h2 span{
    font-size: 1.2rem;
    display: block;
}

.sec-search-top h2:before{
    content: "";
    display: block;
    background: url("../image/line_w.png") top center no-repeat;
    background-size: contain;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
}

.sec-search-top h3{
    font-size: 1.6rem;
    margin: 0 0 50px;
}

/* 下層ページ */
.sec-search-2nd{
    background: url("../image/bg_search_02_sp.jpg") 60% 60% no-repeat !important;
    background-size: cover;
    padding: 50px 0 100px !important;
}


@media (min-width: 769px) {
    
    /* nav-search */
    ul.nav-search{
        justify-content: space-between;
        margin: 0 auto;
        width: 66%;
    }
    
    ul.nav-search li{
        width: calc(100% / 3 - 15px);
        margin-bottom: 0px;
    }
    
    /* top */
    .sec-search-top{
        padding: 75px 0 240px;  
    }
    
    .sec-search-top h3{
        font-size: 2rem;
        margin: 0 0 70px;
    }
    
    /* 下層ページ */
    .sec-search-2nd{
        background: url("../image/bg_search_02.jpg") 50% 20% no-repeat !important;
        background-size: cover;
        padding: 50px 0 120px !important;
        position: relative;
        z-index: 999;
    }
    
}

@media all and (min-width: 768px) and (max-width: 1024px) { 
    
    /* nav-search */
    ul.nav-search{
        width: 90%;
    }
    
}


/*
 pankuzu
************************/
.wrap-nav-pankuzu{
    position: relative;
    z-index: 4;
}

ul.nav-pankuzu{
    margin: 0;
    padding: 20px 0;
    font-size: 1.1rem;
    display: flex;
}

ul.nav-pankuzu li{
    padding: 0 5px 0 0;
}

ul.nav-pankuzu li::after{
    content: ">";
    margin-left: 5px;
}

ul.nav-pankuzu li:last-child::after{
    content: "";
}

ul.nav-pankuzu li a{
    color: #676767;
    text-decoration: none;
}

@media (min-width: 1025px) {

    .wrap-nav-pankuzu{
        position: relative;
        z-index: 999;
    }
    
    
}


/*
 footer nav
************************/
.footer{
    padding: 50px 0 90px;
    background: var(--main-color);
    color: #fff;
    position: relative;
    z-index: 4;
}

.footer-logo{
    width: 210px;
    margin: 0 0 50px 30px !important;
}

.nav-footer-main-s{
    width: calc(100% - 40px);
    margin: 0 0 60px 40px;
}

ul.nav-footer-vm{
    font-size: 1.1rem;
    line-height: 1;
    margin: 0 0 20px !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

ul.nav-footer-vm li{
    padding: 0 12px;
    border-right: 1px solid #fff;
}

ul.nav-footer-vm li:last-child{
    border: none;
}

ul.nav-footer-vm li a{
    color: #fff;
    text-decoration: none;
}

.link-area img{
    width: 13px;
    height: 19px;
    margin: -2px 8px 0 0;
}

.link-date img{
    width: 15px;
    height: 15px;
    margin: -3px 8px 0 0;
}

.link-theme img{
    width: 13px;
    height: 20px;
    margin: -3px 8px 0 0;
}

.txt-copy{
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}


@media (min-width: 768px) {

    .footer{
        padding: 80px 0 60px;
        position: relative;
        z-index: 999;
    }
    
    .footer-logo{
        margin: 0 !important;
    }
    
    .nav-footer-main a{
        margin: 25px 30px;
        display: block;
        color: #fff;
        text-decoration: none;
    }
    
    .nav-footer-main div a:first-child{
        margin: 0 30px 25px 30px;
    }
    
    ul.nav-footer li{
        font-size: 0.9rem;
        margin: 0 0 10px 0;
        text-align: left;
    }
    
    ul.nav-footer li a{color: #333;}
    
    ul.nav-footer-vm{
        justify-content: flex-start;
        margin: 0 !important;
    }
    
    ul.nav-footer-vm li:first-child{
        padding: 0 12px 0 0;
    }
    
    .txt-copy{
        text-align: right;
    }
    

}

@media all and (min-width: 768px) and (max-width: 1024px) { 
	
    .footer{
        padding: 80px 0 130px;
    }
    
    .footer-logo{
        margin: 0 0 40px 10px !important;
    }
       
}



/*
 footer button
************************/
.footer-btn ul{
    display: flex;
    justify-content: space-between;
    position: fixed;
    right: 0;
    left: 0;
    bottom: -20px;
    z-index: 6;
}

.footer-btn ul li{
    width: calc(100% / 3);
}

.footer-btn ul li a{
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background: var(--sub-color-03);
    position: relative;
    text-decoration: none;
}

.footer-btn ul li:nth-child(2){
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.footer-btn a img{
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.footer-btn .link-area img{
    width: 14px;
}

.footer-btn .link-date img{
    width: 20px;
}

.footer-btn .link-theme img{
    width: 13px;
}


@media (min-width: 768px) {
    
    
    
}


@media (min-width: 1200px) {
    
    
    
    
}




/*
 slider
******************************************************************************
*/

.slick-prev,
.slick-next{
    width: 25px;
    height: 25px;
}

.slick-prev:before,
.slick-next:before{
    content: none;
}

.slick-prev{
    left: 0px;
    background: url("../image/arrow_b_prev.png");
    background-size: cover;
    z-index: 2;
}

.slick-next{
    right: 0;
    background: url("../image/arrow_b_next.png");
    background-size: cover;
}

.slick-prev:hover,
.slick-prev:focus{
    background: url("../image/arrow_b_prev.png");
    background-size: cover;
}

.slick-next:hover,
.slick-next:focus{
    background: url("../image/arrow_b_next.png");
    background-size: cover;
}


/*
 light box
******************************************************************************
*/

.uk-lightbox-button.uk-position-medium{
    margin: 30px 0;
}

.uk-lightbox-toolbar-icon{
    padding: 15px;
}

@media (min-width: 768px) {
    
    .uk-lightbox-button.uk-position-medium{
        margin: 30px 3%;
    }
    
}

@media (min-width: 1200px) {
    
     .uk-lightbox-button.uk-position-medium{
        margin: 30px 7%;
    }
    
}


/*
 2nd common
******************************************************************************
*/

/** hero title **/
.hero-tit{
    font-size: 1.3rem;
    padding: 0;
    margin: 0 0 60px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 2px;
}

.hero-tit span{
    font-size: 1.9rem;
    letter-spacing: 2px;
    display: block;
}

.hero-tit:before{
    content: "";
    display: inline-block;
    background: url("../image/line_title.png") center top repeat-x;
    background-size: contain;
    width: 1px;
    height: 60px;
}



/** ページ送り：the_posts_pagination()の調整 **/
.screen-reader-text{
    display: none;
}

ul.page-numbers{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
    
ul.page-numbers > * > * {
    display: block;
    padding: 5px 10px;
    color: #666;
    transition: color 0.1s ease-in-out;
}


@media (min-width: 1025px) {
    
    
    
}

@media all and (min-width: 768px) and (max-width: 1024px) { 
    
    
}


