@charset "UTF-8";

/*リセットCSS*/
*,*::before,*::after{box-sizing:border-box}
html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role='list'],ol[role='list']{list-style:none}
body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,
label{line-height:1.1}h1,h2,h3,h4{text-wrap:balance}
a:not([class]){text-decoration-skip-ink:auto;color:currentColor}
img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}
textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}

/*共通*/
:root{
	--v-space:clamp(90px,9vw,120px);
}
	
body{
margin:0;
background-color: #fff;
color: #6f756e;
font-family: "Zen Maru Gothic", serif;
}

img{
    display: block;
	max-width:100%;
	height:auto;
	
	}

nav{
    font-family: "Zen Maru Gothic", serif;
}

ul {
	list-style-type:none;
    padding:0;
}

h1,h2,h3,h4,h5.h6,p{
    margin:0;

}

/*リンク*/
a{
	color:inherit;
	text-decoration:none;
	
	}

a:hover{
	filter:brightness(90%) contrast(120%);
	
	}

/*ヘッダー*/
.header{
    height:100px;
    background-color: #6f756e;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100%;

}

/*横幅と左右の余白*/
.w-container{
    width:min(92%,1166px);
    margin:auto;
    position: relative;
}

/*余白の箱*/
.yohaku-tate-l{
    padding-top: 80px;
}

.yohaku-tate-m{
    padding-top: 40px;
}

.yohaku-tate-s{
    padding-top: 20px;
}

.yohaku-hidari-l{
    padding-left: 80px;
}

.yohaku-hidari-m{
    padding-left: 40px;
}

.yohaku-hidari-s{
    padding-left: 20px;
}

.yohaku-migi-l{
    padding-right: 80px;
}

.yohaku-migi-m{
    padding-right: 40px;
}

.yohaku-migi-s{
    padding-right: 20px;
}


/*ヘッダーロゴ*/
.site{
    width: 100px;
    height: auto;
}

/*ナビゲーションボタン*/
.navbtn{
    padding:0;
    outline:none;
    border:none;
    background:transparent;
    cursor: pointer;
    color:#c8ac52;
    font-size: 30px;
}

.open .navbtn{
    z-index: 110;
    color: #eeefd3;
}

.navbtn .fa-bars{
    display: revert;
}

.open .navbtn .fa-bars{
    display: none;
}

.navbtn .fa-times{
    display: none;
}

.open .navbtn .fa-times{
    display: revert;
}

@media(min-width:768px){
    .navbtn{
        display: none;
    }
}

/*ナビゲーションメニュー：モバイル*/
@media(max-width:767px){
    .nav{
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        background-color: #c8ac52;
        transition: transform 0.3s;
    }

    .open .nav{
        transform: translate(-100%,0);
    }

    .open body{
        position: fixed;
        overflow: hidden;
    }

    .nav ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
        color: #eeefd3;
    }
}

/*ナビゲーションメニュー：pc*/
@media(min-width:768px){
    .nav ul{
        display: flex;
        gap: 40px;
        color: #dfdbd4;
    }
}

/*フッター*/
.footer{
    font-size: 1rem;
    background-color: #eeefd3;
    font-family: "Zen Maru Gothic", serif;
}

.footer ul{
    color: #6f756e;
}

.footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #6f756e;
    font-size: 1rem;
}

/*PC*/
@media(min-width:768px){
    .footer-container{
        grid-template-columns: auto auto;
        grid-template-rows: auto auto auto;
        gap: 20px;
    }

    .footer-container > .footer-site{
        margin-bottom: 20px;

    }

    .footer-container > *:not(.footer-sns){
        justify-self: start;
    }

    .footer-container > .footer-sns{
        grid-column: 2;
        grid-row: 1 / 4;
        justify-self: end;
        align-self: center;
    }

}

/*見出し*/
.heading-decoraton{
    font-size: clamp(30px,3vw,40px);
    min-height: 0vw;
    font-weight: 400;
    color: #6f756e;
    background-image: linear-gradient(90deg, #93822d 0 70%, #bfb6ba 20%);
    background-repeat: no-repeat;
    background-size: 100% 5%;
    background-position: bottom;
    width: 100px calc((var(--v-space) + 0.6em) * -1);
    
}

