@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
 
.clearfix::after{
    content: "";
	display: block;
	clear: both;
}

.cf {
    zoom:1;
}

/* =====基本設定===== */
body {
    font-family: "EB Garamond","Zen Old Mincho", serif;
    font-size: 13px;
    letter-spacing: .09em;
    font-weight: 400;
    color: #eee;
}

a {
	text-decoration: none;
	color: #eee;
    transition: 0.5s;
}
 
a:visited{
	text-decoration: none;
	color: #eee;
}
 
a:hover{
	text-decoration: none;
	color: #C7B994;
}
 
a:active {
	text-decoration: none;
	color: #eee;
}

/* =====ヘッダー===== */

/* .all-wrap{
    overflow: hidden;
} */

.top-logo {
    position: fixed;
    z-index: 999;
    top: 25px;
    left: 20px;

}

.top-logo img{
    width: 180px;
}

.sp-only {
    display: none;
}

h2{
    font-weight: 100;
}

.openbtn{
	position: fixed;
    z-index: 9999;
    top:10px;
    right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:22px;
}

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

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 9px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
    background: #333;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
    background: #333;
}

#g-nav{
    position:fixed;
    z-index: 999;
    top:0;
    right: -120%;
    width:30%;
    height: 100vh;
    background:linear-gradient(45deg,rgba(163, 156, 150, 0.6),rgba(255, 255, 255, 0.8));
    transition: all 0.6s;
}

#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 30%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: .5em;
    z-index: 999;
    top:50%;
    left:25%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;

}

#g-nav li a{
    text-decoration: none;
    display: block;
    color: #333;
    font-size: 1.1em;
}

.g-nav-list-small{
    font-size: .8em;
}

#g-nav a:hover {
    color: #C7B994;
}

.l-top {
    margin-top: 25px;
    padding-top: 10px;
    border-top: 1px solid #33333378;
}


.g-nav-list-footer{
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #333;
    font-size: .95em;
}

/* =====フッター===== */

#footer-wrap {
    width: 100%;
    bottom: 0; 
    position: fixed;
    display: flex;
    justify-content: end;
    font-size: .95em;
    align-items: center; 
    padding: 0 20px 35px;
}

.footer-list{
    display: flex;
    gap: .4em;
}

.footer-list li {
    list-style: none;
}

#contents {
    flex: 1;
}

.fa-clone::before {
    font-size: .75em;
    padding: 0 4px;
    display: inline-block;
    text-align: center;
    width: 1.5em;
    transform: scale(1.3, 1);
}



/* モバイル: 〜575px */

@media screen and (max-width: 480px) {
	
    .top-logo img{
        width: 120px;
    }

    h2 {
        font-size: 18px;
    }

    #wrap {
        font-size: .85em;
    }

    #footer-wrap {

    padding: 0 20px 10px;
    }

}
