@charset "UTF-8";

/* リセットCSS */
body,h1,h2,h3,h4,h5,p,ul,li,dl,dd,dt,figure{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{text-decoration: none;}

img{vertical-align: bottom;}


/* 全体 */
body{
    font-size: 16px;
    font-family: YuMincho,"Yu Mincho",游明朝,游明朝体,serif;
    font-weight: 500;
    line-height: 1;
    color: #292626;
    text-align: center;
}

/* macだけフォントを変える */
@media screen and (-webkit-min-device-pixel-ratio: 1.5) {
    body {
      font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
    }
  }

*{box-sizing: border-box;}

.flex{
    display: flex;
    text-align: center;
}

.wrap{
    max-width: 1628px;
    margin: 0 auto;
}

a{
    color: #002B05;
}


/* ヘッダー */
header{
    /* background-color: #B79AA1; */
    background-color: rgba(255, 255, 255, 0.5);
}

.hd-01{
padding-left: 16%;
line-height: 100px;
}

.hd-logo{
    gap: 30px;
}

.inst-icon img{
    margin-bottom: 25px;
}

nav ul{
    gap: 8px;
    margin-left: 100px;
}

nav ul li{
    /* display: block; */
    width: 104px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

/* ハンバーガーボタン */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1001;
    background-color: #B79AA1;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 5px 5px;
    transition: 0.3s;
    border-radius: 1.5px;
  }




/* ボタン */
.underline a{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.underline a::after{
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: #002B05;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.underline a:hover::after{
    transform: scale(1, 1);
}




/* フッター */

.ft-bc-p{
    background: linear-gradient(to bottom, #fff 0%, #EFDCE1 100%);
    padding-top: 40px;
}

.ft-bc-p .wrap{
    /* width: 70%; */
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* footer .ft-bc-p .flex{
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
} */

footer .ft-sns ul {
    margin: 8px 0 ;
}

footer .ft-sns p {
    margin: 20px 0;
    border-top: solid 1px #B79AA1;
    border-bottom: solid 1px #B79AA1;
}

footer .ft-map p {
    margin: 20px 0 16px;
    border-top: solid 1px #B79AA1;
    border-bottom: solid 1px #B79AA1;
}

footer .ft-sns ul a{
    padding: 0 8px;
}

footer ul{
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

footer ul li{
    /* display: block; */
    /* width: 120px; */
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 8px;
    /* margin-top: 30px; */
    /* width: 120px; */
}

.ft-text{
    font-size: 116px;
    color: #B79AA1;
    font-family: "Fredericka the Great", serif;
    font-weight: 500;
    font-style: normal;
    text-align: right;
    margin-right: 150px;
    margin-bottom: -16px;
}

footer .ft-bc-g{
    background-color: #002B05;
    line-height: 80px;
}

footer small{
    color: #B79AA1;
    font-size: 14px;
}

/* トップに戻るボタン */
.to-top{
    position: fixed;
    right: 0;
    bottom: 100px;
    background: url(../images/totop_94x100.png) top right no-repeat;
    width: 94px;
    height: 100px;
    padding: 30px 10px;
    text-align: left;
    z-index: 1;
}

.to-top a{
	display: block;
	transition: all .5s ease;
}

.to-top a:hover{
	opacity: .6;
}


/* moreボタン */
.more-button{
    width: 160px;
    line-height: 40px;
    margin: 30px auto;
}

.more-button a::after{
    content: url(../images/array01_16x16.png);
    padding-left: 8px;
}

.more-button a{
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #002B05;
    border: 1px solid #002B05;
    padding: 10px 20px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.more-button a::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #B79AA1;
    z-index: -1;
    transform: scale(0, 1);
    transition: all 0.3s ease;
    transition-property: transform;
}

.more-button a:hover:before{
    transform: scale(1, 1);
}

.more-button a::before{
    transform-origin: right;
}

.more-button a:hover:before{
    transform-origin: left;
}






/* レスポンシブ対応 */
@media screen and (max-width:1620px){


    .hd-01{
        padding-left: 8%;
    }

}


@media screen and (max-width:1000px){
    .hd-01{
        padding-left: 0;
    }

    nav ul{
        gap: 8px;
        margin-left: 30px;
    }

    .ft-map{
        margin: 0 8px;
    }

    .ft-bc-p .wrap{
        gap: 8px 16px;
    }

}



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

    header{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background: none;
    }

    .hd-01{
        padding-left: 0;
        line-height: 75px;
    }

    .hd-logo img{
        width: 75%;
        height: auto;
    }

    .inst-icon img{
        margin-bottom: 20px;
    }

    .hamburger {
        display: block;
      }
    
    .nav-menu ul {
        display: block;
    }
    
/* ナビゲーションメニュー（モバイル時） */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 40%;
        /* height: 100%; */
        /* background: #fff; */
        background-color: rgba(255, 255, 255, 0.7);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 60px;
        
    }
    
    .nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-direction: column;
        justify-content: center;
    }
    
    .nav-menu li {
        margin: 20px auto;
        text-align: center;
    }
    
    .nav-menu a {
        text-decoration: none;
    }
  
    /* メニュー表示状態 */
    .nav-menu.active {
        right: 0;
    }

    /* フッター */
    .ft-text{
        font-size: 80px;
        margin-bottom: -11px;
        margin-right: 56px;
    }

    footer div{
        line-height: 40px;
    }

    footer small{
        font-size: 12px;
    }

}


@media screen and (max-width:500px){
    /* moreボタン */
    .more-button a{
        font-size: 16px;
        font-weight: bold;
    }

    /* トップに戻るボタン */
    .to-top{
        background-size: 80%;
        width: 75px;
        height: 65px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .ft-text{
        font-size: 56px;
        margin-bottom: -8px;
        margin-right: 40px;
    }
}
