@charset "utf-8";

/*  ========
common
========= */

html{
    font-size: 62.5%;
}

body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

.en{
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; 
    font-style: normal;
}

.section_title{
    font-size: 3.2rem;
    color: #573001;
    letter-spacing: 0.096rem;
    padding-top: 104px;
    text-align: center;
}

.section_title_jp{
    font-size: 1rem;
    color: #C19569;
    letter-spacing: 0.02rem;
    margin-top: 4px;
    text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* section_title_pc */
    @media screen and (min-width:769px){
        
    .section_title{
        font-size: 8.4rem;
        letter-spacing: 0.084rem;
        padding-top: 104px;
        text-align: center;
    }

    .section_title_jp{
        font-size: 2rem;
        letter-spacing: 0.04em;
        margin-top: 8px;
        text-align: center;
    }
}


/* header */

/* hum_menu */

.menu_header{
    width: 100%;
    height: 60px;
    background-color: #FCF7EE;
}

.logo{
    display: inline-block;
    width: 18.6%;
    height: auto;
    max-height: 36px;
    margin: 18px 0 18px 6.4%;
}

.tel_button{
    width: fit-content;
    background-color: #FCF7EE;
    display: block;
    font-size: 1.2rem;
    color: 28313C;
    letter-spacing: 0.06rem;
    padding: 12px 4.2%;
    border: 1px solid #28313C;
    border-radius: 24px;
    position: fixed;
    top: 11px;
    right: 6.4%;
    z-index: 100;
}

.tel_button::before {
    content: ""; 
    background-image: url('../images/call_hum.svg'); 
    display: inline-block;
    width: 14px;  
    height: 14px;  
    margin-right: 3px; 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle; 
}

.hum_menu {
  width: 55px; 
  height: 55px;               
  background: #fff;           
  border-radius: 50%;          
  display: flex;
  flex-direction: column;     
  justify-content: center;     
  align-items: center;         
  gap: 8px;                    
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); 
  position: fixed;
  right: 6.4%;
  z-index: 10;
  bottom: 24px;
  cursor: pointer;
}

.hum_line {
  width: 28px;                 
  height: 1px;                 
  background-color: #28313C;     
}

.hum_menu_text {
  font-size: 1.1rem;
  line-height: 1;
  margin: 0;
  color: #28313C;               
}


.nav_menu{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    background-image: url(../images/background.jpg);
    transform: translateX(100%);
    transition: 0.4s;
}

/* .nav .activ表示 */

.nav_menu.active{
    transform: translateX(0);
}

.nav_list{
    width: 100%;
    margin-top: 60px;
    padding: 0 9%;
    display: flex;
    flex-wrap: wrap;
}

.nav_item{
    width: 50%;
    margin-top: 48px;
}

.nav_item a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav_text{
    font-size: 2rem;
    color: #573001;
    letter-spacing: 0.1rem;
}

.nav_sub_text{
    font-size: 1.2rem;
    color: #825826;
    margin-top: 6px;
    letter-spacing: 0.096rem;
    white-space: nowrap;
}

.insta_img{
    display: none;
}

.insta_img_sp{
    margin-top: 8%;
}

.hum_tel_button{
    width: fit-content;
    display: block;
    font-size: 1.2rem;
    color: #573001;
    letter-spacing: 0.06rem;
    margin: 64px auto 0 auto;
    padding: 15px 4.2%;
    border: 1px solid #573001;
    border-radius: 24px;
}

.hum_tel_button::before {
    content: ""; 
    background-image: url('../images/call.svg'); 
    display: inline-block;
    width: 16px;  
    height: 16px;  
    margin-right: 3px; 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle; 
}

.nav_close_btn{
    display: block;
    position: absolute;
    right: 4.2%;
    bottom: 24px;

}

/* header_pc */

@media screen and (min-width:769px){
    
    .logo{
        width: 160px;
        height: auto;
        max-height: none;
        position: static;
    }


    .header{
        position: static;
        height: 96px;
        background-color: #FCF7EE;
        padding-top: 10px;
    }

    .menu_header{
        display: none;
    }

    .tel_button{
        display: none;
    }

    header > a .logo {
        display: none;
    }

    .nav_menu{
        position: static;
        width: 100%;
        padding: 0 5%;
        height: auto;
        display: flex;
        margin: 0 auto;
        background-image: none; 
        transform: none;
    }

    .nav_list{
        display: flex;
        flex-wrap: nowrap;       
        justify-content: right;  
        align-items: center;
        gap: 3.3%;                
        margin-top: 0;
        padding: 0;
    }

    .nav_item{
        width: auto;            
        margin-top: 0;
    }

    .nav_text{
        color: #28313C;
    }

    .nav_text{
       font-size: clamp(15px, 1.39vw, 24px);

    }

    .nav_sub_text{
        font-size: 0.83vw;
        color: #63666A;
        margin-top: 4px;
    }

    .nav_item a{
        flex-direction: column;   
    }

    .insta_img{
        margin-top: 0;
    }

    
    .hum_menu {
        display: none;
    }

    .nav_close_btn {
        display: none;
    }

    .hum_tel_button{
        display: none;
    }

    .insta_img_sp{
        display: none;
    }

}

/* pc_769px */


.nav_text,
.nav_sub_text {
  transition: color 0.4s ease, opacity 0.4s ease;
}

.nav_item a:hover .nav_text {
  color: #A29C9C; /* ホバー時の色 */
}

.nav_item a:hover .nav_sub_text {
  color: #A29C9C;
  opacity: 1;
}


.nav_item a:hover .insta_img {
  opacity: 0.7;
  transform: scale(1.1);
}



/* footer */

.footer{
    width: 100%;
    height: 253px;
    background-image: url(../images/main_sub2.jpg);
    background-size: cover; 
    background-position: 50% center;    
    background-repeat: no-repeat;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* 黒・透明度50% */
    z-index: 1;
}

.footer_logo{
    width: 35.7%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 2;
}

.footer .nav_list{
    display: none;
}

.copy_write {
    font-size: 1.3rem;
    position: absolute;
    left: 4%;
    bottom: 15px; /* 好きな位置に調整 */
    color: #fff;
    z-index: 2; /* 黒レイヤーの上に表示 */
}

.footer .insta_img{
    display: none;
}

@media screen and (min-width:769px){

    .footer{
        height: 635px;
        position: relative;
    }

    .footer_logo{
        width: 19.4%;
        height: auto;
        position: absolute;
        top: 186px;
        left: 19%; 
        z-index: 2;
    }
    
    .footer_nav{
        width: fit-content;
        position: absolute;
        top: 186px;
        right: 10%;
        z-index: 2;
    }

    .footer .nav_list{
        width: fit-content;
        display: flex;
        gap: 40px;
    }
    
    .footer .nav_item {
        width: auto;
        margin: 0;
        pad: 0;
    }
    
    .nav_list .nav_item:first-child {
        margin-left: 0;
    }


    .nav_margin{
        margin-top: 52px;
    }

    .footer .nav_text{
        font-size: 2rem;
        color: #fff;
        letter-spacing: 0.1rem;
    }

    .footer .nav_sub_text{
        font-size: 1.2rem;
        color: #fff;
        margin-top: 6px;
        letter-spacing: 0.096rem;
    }

    .footer .insta_img{
        width: auto;
        height: 48px;
        display: block;
        position: absolute;
        bottom: 72px;
        right: 5%;
        z-index: 2;
    }

    .copy_write {
        font-size: 2rem;
        position: absolute;
        left: 5%;
        bottom: 72px; 
        color: #fff;
        z-index: 2; 
    }

    .insta_img {
        display: block;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .footer a:hover .insta_img {
        opacity: 0.7;
        transform: scale(1.08);
    }
}
