@charset "utf-8";

/* COMMON
---------------------------------------------------------------------------- */	
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');

@font-face{
    font-family: "honoka";
    src: url("../font/honoka.otf")format("opentype");
}

body{
    font-family: "honoka","Zen Old Mincho","Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color:#3E3E3E;
    background-color: #FCFCFC;
}
a{
    text-decoration:none; 
    color: #333;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a:hover{ text-decoration: none; }

@media screen and (max-width:768px){
    body{
        font-size: 14px;
    }
}

/* 文字サイズ
---------------------------------------------------------------------------- */
body.is-large{
    font-size: 18px;
}
body.is-medium{
    font-size: 16px;
}
body.is-small{
    font-size: 14px;
}


/* header
---------------------------------------------------------------------------- */
.header{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:90px;
    z-index:999;
}
@media screen and (max-width:768px){
    
}

/* sub */
.header-sub{
    background-color: #F2F1EC;
    padding: 5px 50px;
    width:100vw;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 13px;
}
.header-sub-nav ul{
    display: flex;
    align-items: center;
    border-left: 1px solid #A09379;
    margin-right: 20px;
}
.header-sub-nav ul li{
    
}
.header-sub-nav ul li a{
    color: #A09379;
    display: block;
    padding: 0 15px;
    border-right: 1px solid #A09379;
}
.header-sub-nav ul li a:hover{
    text-decoration: underline;
}
@media screen and (max-width:768px){
    .header-sub{
        display: none;
    }
}

/* 文字サイズ変更ボタン */
.header-sub-size{
    margin-left: 20px;
}
.header-sub-size dl{
    display: flex;
    align-items: center;
}
.header-sub-size dl dt{
    padding-right: 10px;
}
.header-sub-size dl dd button{
    font-family: inherit;
    background-color: transparent;
    border: none;
    padding: 0 13px;
    display: inline-block;
    height: 22px;
    border-radius: 12.5px;
    text-align: center;
}
.header-sub-size dl dd button.is-current{
    background-color: #A09379;
    color: #fff;
}
.header-sub-size dl dd button:nth-child(1){
    font-size: 18px;
}
.header-sub-size dl dd button:nth-child(3){
    font-size: 14px;
}
@media screen and (max-width:768px){
    
}

/* main */
.header-main{
    padding: 0 50px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
}

.header-main-logo{
    
}
.header-main-logo a{
    font-size:25px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.header-main-nav{
    
}
.header-main-nav ul{
    display: flex;
    align-items: center;
}
.header-main-nav ul > li{
    position: relative;
}
.header-main-nav ul > li button{
    display: block;
    text-align: center;
    padding: 0 25px;
    height: 60px;
    line-height: 60px;
    border: none;
    background-color: transparent;
    font-family: inherit;
}
.header-main-nav ul > li::after{
    content: "";
    display: block;
    position: absolute;
    left: 10%;
    bottom: 0;
    width:80%;
    height: 4px;
    background-color: #A09379;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.header-main-nav ul li:hover::after{
    opacity:1;
}
@media screen and (max-width:768px){
    .header-main{
        padding: 0;
        height: 60px;
        background-color: #fff;
        padding-right: 60px;
    }

    .header-main-logo{
        padding-left: 20px;
    }
    .header-main-logo a{
        font-size:18px;
    }

    .header-main-nav{
        position: fixed;
        top:60px;
        left:100vw;
        width:100vw;
        height: calc(100vh - 60px);
        background-color: #fff;
        border-top: 1px solid #A09379;
        opacity:0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
    }
    .header-main-nav.is-open{
        left: 0;
        opacity:1;
    }
    .header-main-nav ul{
        display: block;
    }
    .header-main-nav ul > li{
        position: relative;
        border-bottom: 1px solid #A09379;
    }
    .header-main-nav ul > li button{
        text-align: left;
        padding: 0 20px;
        height: 50px;
        line-height: 50px;
        border: none;
        width: 100%;
    }
    .header-main-nav ul > li::after{
        display: none;

    }
    
    .header-main-nav ul li.sp-only{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
    .header-main-nav ul li.sp-only a{
        padding: 15px 0;
        text-align: center;
        display: block;
        width: 50%;
    }
}

/* ドロップナビ */
.header-main-nav-drop{
    position: fixed;
    top: 90px;
    left:0;
    width:100%;
    background-color: #fff;
    z-index: 444;
    padding: 30px 50px;
    display: none;
}
.header-main-nav-drop ol{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-left: 1px solid #A09379;
    padding:20px 0;
    position: relative;
}
.header-main-nav-drop ol::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #a09379;
    border-right: 0;
    display: block;
    position: absolute;
    left: 0px;
    top:calc(50% - 5px);
}
.header-main-nav-drop ol li{
    margin-left: 30px;
}
.header-main-nav-drop ol li a{
    display: block;
    font-size:14px;
}
.header-main-nav-drop ol li a:hover{
    color: #a09379;
}
@media screen and (min-width:769px){
    .header-main-nav ul li:hover .header-main-nav-drop{
        display: block;
    }
}
@media screen and (max-width:768px){
    .header-main-nav-drop{
        position: relative;
        top: 0;
        width:100%;
        padding: 0 20px 20px;
        display: none;
    }
    .header-main-nav-drop ol{
        display: flex;
        flex-wrap: wrap;
        border-left: 1px solid #A09379;
        padding:10px 0 10px 10px;
        align-items: flex-start;
    }
    .header-main-nav-drop ol li{
        margin-left: 0;
        width:45%;
    }
    .header-main-nav-drop ol li a{
        padding: 5px 10px;
    }
    .header-main-nav-drop ol li a:hover{
        color: #a09379;
        
    }
}

/* SNS */
.header-main-sns ul{
    display: flex;
    align-items: center;
}
.header-main-sns ul li{
    margin-left: 10px;
}
.header-main-sns ul li a img{
    width:30px;
    height: auto;
}
@media screen and (max-width:768px){
    
}

/* SP */
@media screen and (max-width:768px){
    .header-sp{
        position: fixed;
        top: 0;
        right:0;
        width:60px;
        height: 60px;
        z-index: 9999;
        border: none;
        background-color: transparent;
    }
    .header-sp.is-open{
        
    }
    .header-sp span{
        width: 30px;
        height: 1px;
        background-color: #a09379;
        display: inline-block;
        position: absolute;
        left: 15px;
    }
    .header-sp span:nth-child(1){
        top:20px;
    }
    .header-sp span:nth-child(2){
        top: 30px;
    }
    .header-sp span:nth-child(3){
        top: 40px;
    }
}


/* wrap
---------------------------------------------------------------------------- */
.wrap{
    
}
@media screen and (max-width:768px){
    .wrap{
        
    }
}

/* topicPath
---------------------------------------------------------------------------- */
.topicpath{
    
}
.topicpath ol{

}
.topicpath ol li{
    display:inline-block;
    margin-right:10px;
}
.topicpath ol li::after{
    content:"/";
    display: inline-block;
    margin-left: 15px;
}
.topicpath ol li:last-child::after{
    display: none;
}
@media screen and (max-width:768px){
    .topicpath{
        display:none;
    }
}

/* main
---------------------------------------------------------------------------- */
.main{
   
}
@media screen and (max-width:768px){
    .main{
        
    }
}


/* footer
---------------------------------------------------------------------------- */
.footer{
    
}
@media screen and (max-width:768px){
    
}

/* リンク */
.foonter-link{
    padding: 50px 0;
    text-align: center;
    background-color: rgba(255,255,255,0.95);
}
.foonter-link ul{
    display: flex;
    justify-content: center;
}
.foonter-link ul li{
    margin: 0 25px;
}
.foonter-link ul li a{
    display: block;
    color: #A09379;
    border: 1px solid #A09379;
    height: 60px;
    line-height: 60px;
    text-align: left;
    padding: 0 20px;
    width:430px;
    background-image: url("../images/btn_arrow_b.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: auto 10px;
}
.foonter-link ul li a i{
    margin-right: 15px;
    font-size: 16px;
}
@media screen and (max-width:768px){
    .foonter-link{
        padding: 20px 0;
    }
    .foonter-link ul{
        display: block;
    }
    .foonter-link ul li{
        margin: 10px 0;
    }
    .foonter-link ul li a{
        width:100%;
    }
}

/* ナビ */
.footer-main{
    background-color: #F2F1EC;
    padding: 30px 50px;
}
@media screen and (max-width:768px){
    .footer-main{
        padding: 20px 0;
    }
}

/* サイト名 */
.footer-main-ttl{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #A09379;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.footer-main-ttl-main{
    font-size: 25px;
}
@media screen and (max-width:768px){
    .footer-main-ttl{
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .footer-main-ttl-main{
        font-size: 18px;
    }
}

/* SNS */
.footer-main-ttl-sns a{
    display: inline-block;
    margin-left: 15px;
}
.footer-main-ttl-sns a img{
    width: auto;
    height: 40px;
}
@media screen and (max-width:768px){
    .footer-main-ttl-sns a img{
        height: 30px;
    }
}

/* サイトマップ */
.footer-main-sitemap{
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #A09379;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.footer-main-sitemap ul{
    width: 33%;
}
.footer-main-sitemap ul li{
    margin-bottom: 15px;
}
.footer-main-sitemap ul li a:hover{
    text-decoration: underline;
}
@media screen and (max-width:768px){
    .footer-main-sitemap{
        display: block;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    .footer-main-sitemap ul{
        width: 100%;
    }
    .footer-main-sitemap ul li{
        margin-bottom: 10px;
    }
    .footer-main-sitemap ul li a:hover{
        text-decoration: underline;
    }
}

/* コピーライト */
.footer-main-copy{
    text-align: right;
    color: #A09379;
    
}

@media screen and (max-width:768px){
    
}
