/* 共通 */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;

    /* background-color: #fffff9; */
    color: #787878;
    background-image: url("../img/wagara.jpg");
    background-repeat: repeat;
    background-size: 100% auto;
    background-position: center top;
    background-attachment: fixed;
} 

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
}

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

h1,
h2,
h3,
h4,
.hero-overlay p {
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* ヘッダー */
.top-visual {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
  }

  .top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-logo {
    position: absolute;
    top: 3%;
    left: 2%;
    width: 50px;
    z-index: 1000000;
}

.nav {
    margin-top: 0;
    position: absolute;
    top: 3%;
    right: 2%;
    z-index: 100000;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    /* text-shadow: 0 0 3px rgba(0, 0, 0, 0.5); */
    white-space: nowrap;
}

.nav img {
    width: 30px;
}

.nav img:hover {
    transform: scale(1.3);
}

.nav a:hover {
    color: #678032;
    font-size: 1.05rem;
}

.vertical-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* writing-mode: vertical-rl; */
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.2em;
    margin-top: 20px;
    letter-spacing: 0.2em;
    line-height: 1.6;
    text-shadow: #fc0 1px 0 10px;
}

/* 固定nav  */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0.6rem 0;
    /* background-color: #c79d6d; */
    background-color: rgba(199, 157, 109, 0.9);
    backdrop-filter: blur(6px);
    z-index: 10002;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fixed-nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fixed-nav ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
}

.fixed-nav li a {
    display: block;
    font-size: 1rem;
    color: #fff;
    padding: 1rem 1.2rem;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.fixed-nav li a::after {
    content: "";
    position: absolute;
    bottom: 0.6rem;
    left: 20%;
    width: 60%;
    height: 2px;
    opacity: 0.5;
    background-color: #678032;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.fixed-nav li a:hover::after {
    transform: scaleX(1);
}

.fixed-nav img {
    width: 20px;
}


/* おにぎりループ */
/* .image_wrapper {
    display: flex;
    height: 200px;
    overflow: hidden;
    margin: 100px 0;
    white-space: nowrap;
    position: relative;
    margin-top: 200px;
}

.slider {
    display: inline-block;
    white-space: nowrap;
    animation: slide 100s linear infinite;
}

.loop_image {
    display: inline-block;
    width: auto;
    height: 100%;
    max-width: none;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: center bottom;
}

.loop_image:nth-child(odd) {
    animation-name: furifuri-odd;
}

.loop_image:nth-child(even) {
    animation-name: furifuri-even;
}


@keyframes furifuri-odd {
    0%,
    100% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

@keyframes furifuri-even {
    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */





/*おむすびメニュースライダー */
.autoplay {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .slider-container {
    overflow: hidden;
    margin-top: 100px;
  }
  
  .slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }
  
  .slide {
    flex: 0 0 420px; /* 表示幅を固定 */
    background-color: rgb(245, 237, 205);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    margin: 0 15px; /* ← 左右均等にするのがベスト */
    flex-shrink: 0;
  }

  .slide-name{
    border-bottom: solid 1px;
    font-size: 2rem;
  }

  .seibun1,
  .seibun3{
    color: #678032;
  }
  .seibun2,
  .seibun4{
      color: #787878;
  }
  .seibun1{
    padding-top: 1rem;
  }
  .osusume1{
    color: #ff701e;
  }

  .onigiri-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    animation: swing 2s infinite;
  }
  
  @keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ff701e;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
  }
  
  .arrow.left {
    left: -20px;
  }
  
  .arrow.right {
    right: -20px;
  }
  #setmenu_banner{
    text-align: center;
  }
  
  .ingredients,
  .osusume1,
  .copy {
    font-size: 13px;
    margin-top: 8px;
  }
  
  .copy span {
    display: inline-block;
    margin-top: 4px;
  }

  .slider-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
  }
  .seibun2,
.seibun4{
    color: #787878;
}
  
/* .autoplay {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
  }
  
  .slider-container {
    overflow: hidden;
    width: 100%;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .slide {
    flex: 0 0 100%;
    display: none;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .slide.active {
    display: block;
  } */
  
  /* おにぎり画像 */
  /* .onigiri-img {
    width: 150px;
    animation: furi-furi 1.2s infinite alternate ease-in-out;
  }
  
  @keyframes furi-furi {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
  } */
  
  /* ナビゲーション矢印 */
  /* .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: #ccc;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
  }
  .arrow.left {
    left: -20px;
  }
  .arrow.right {
    right: -20px;
  } */
  
  /* 装飾 */
  /* .seibun1 {
    margin-top: 10px;
    font-weight: bold;
    color: #008b8b;
  }
  .seibun2, .osusume1 {
    font-size: 0.9rem;
    margin-top: 5px;
  }
  .copy {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fc0;
  }
  .indent-second-line {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Kaisei HarunoUmi", serif;
    white-space: pre-line;
  } */

/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

#asagohan_top{
    display: flex;
    width: 60%;
    margin: 0 auto;

    /* gap: 3rem; */
}
#asagohan_top_text{
    line-height: 2.5rem;
    text-align: left;
    margin-left: 5rem;
    
}
.asagohan_top_text1{
    font-size: 2.2rem;
    font-weight: 700;
    color: #678032;
    margin-top: 15rem;
}
.asagohan_top_text2{
    font-size: 0.9rem;
    margin-top: 4rem;
    position: absolute;
}
.fadein-text1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    font-size: 2rem;
  }

  .fadein-text1.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

#okome_haikei{
    width: 200%;
    margin: 5rem auto;
    position: relative;
    z-index: -1;
    transform:translate(-30%,-20%) ;
}
#asagohan_top_img{
    width: 400%;
    margin-right: 5rem;
    margin-top: 13rem;
    z-index: -2;
}
.ranking{
    width: 30%;
    margin: 0 auto;
}
#ranking_123{
    display: flex;
    width: 80%;
    margin: 0 auto;
    padding-top: 5rem;
}
.ranking2{
    margin-top: 3rem;
}
.ranking3{
    margin-top: 6rem;
}

#asagohan_omusubimenu1234{
    text-align: center;
    display: none;
    color: #A67C52;
    margin-top: 100px;
}


/* omusubimenu */
#asagohan_omusubimenu_tag{
    text-align: center;
    margin-top: 10rem;
}
.asagohan_omusubimenu_tag1{
    width: 30%;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.asagohan_omusubimenu_tag2{
    color: #967950;
    font-size: 2rem;
}

#asagohan_omusubimenu1,
#asagohan_omusubimenu2,
#asagohan_omusubimenu3,
#asagohan_omusubimenu4{
    display: flex;
    width: 80%;
    margin: 0 auto;
    display: none;
    /* background-color: tomato; */

}

#asagohan_omusubimenu4{
    margin-bottom: 12rem;
}
.asagohan_omusubimenu1_salt,
.asagohan_omusubimenu1_ume,
.asagohan_omusubimenu2_sake,
.asagohan_omusubimenu2_edamame,
.asagohan_omusubimenu3_yukari,
.asagohan_omusubimenu3_okaka,
.asagohan_omusubimenu4_konbu,
.asagohan_omusubimenu4_kinoko{
    text-align: center;
    margin: 0 auto;
}
.asagohan_omusubimenu1_salt_text1,
.asagohan_omusubimenu1_ume_text1,
.asagohan_omusubimenu2_sake_text1,
.asagohan_omusubimenu2_edamame_text1,
.asagohan_omusubimenu3_yukari_text1,
.asagohan_omusubimenu3_okaka_text1,
.asagohan_omusubimenu4_konbu_text1,
.asagohan_omusubimenu4_kinoko_text1{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.asagohan_omusubimenu1_salt_name,
.asagohan_omusubimenu1_ume_name,
.asagohan_omusubimenu2_sake_name,
.asagohan_omusubimenu2_edamame_name,
.asagohan_omusubimenu3_yukari_name,
.asagohan_omusubimenu3_okaka_name,
.asagohan_omusubimenu4_konbu_name,
.asagohan_omusubimenu4_kinoko_name{
    font-size: 3rem;
    font-weight: 700;
    color: #678032;
}
.asagohan_omusubimenu1_salt_price,
.asagohan_omusubimenu1_ume_price,
.asagohan_omusubimenu2_sake_price,
.asagohan_omusubimenu2_edamame_price,
.asagohan_omusubimenu3_yukari_price,
.asagohan_omusubimenu3_okaka_price,
.asagohan_omusubimenu4_konbu_price,
.asagohan_omusubimenu4_kinoko_price{
    
    padding-left: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
}
/* モバイルオーダーbtn */
.btn4{
    margin: 0 auto ;
    padding-top: 3rem;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    transform: translateY(-200%);
}
.btn4_1{
    margin: 0 auto ;
    padding-top: 3rem;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    transform: translateY(100%);
}
.btn4_2{
    margin: 0 auto ;
    /* padding-top: 3rem; */
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    transform: translateY(-100%);
    visibility: hidden;
}

.btn4, 
.btn4_1, 
.btn4_2{
    background: #ff701e;
    border: 2px solid #ff701e;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 15px 30px;
    text-align: center;
  }

.btn4.slide,
.btn4_1.slide,
.btn4_2.slide {
    background: #fff;
    color: #ff701e;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.btn4.slide.skew::after,
.btn4_1.slide.skew::after,
.btn4_2.slide.skew::after {
    background: #ff701e;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: skewY(-10deg) scale(1, 0);
    height: 140px;
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.btn4.slide:hover,
.btn4_1.slide:hover,
.btn4_2.slide:hover {
    color: #fff;
}
.btn4.slide.skew:hover::after,
.btn4_1.slide.skew:hover::after,
.btn4_2.slide.skew:hover::after {
    transform: skewY(-10deg) scale(1, 1);
}

.pagetop {
    position: fixed;
    bottom: 16px;
    right: 16px;
}

.pagetop a {
    display: block;
    text-decoration: none;
}

.pagetop:hover {
    opacity: 0.85;
}

.pagetop img {
    width: 50px;
}

/* インスタグラム */
.instagram_icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.musubi-logo {
    margin: 10px auto;
}

.musubi-logo img {
    display: block;
    width: 800px;
    margin: 0 auto;
}

.musubi-logo h1 {
    font-size: 1.5rem;
    color: #678032;
}

.musubi-logo h2 {
    font-size: 1rem;
    color: #A67C52;
}

.instagram_icon h1:hover,
.instagram_icon h2:hover {
    color: #678032;
    opacity: 0.8;
}

.instagram_icon a img {
    width: 50px;
    transition: transform 0.3s;
}

.instagram_icon a img:hover {
    transform: scale(1.3);
}


/* フッター */
.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    width: 900px;
    gap: 80px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-info h3{
    color: #A67C52;
}

.contact-button {
    display: inline-block;
    background: none;
    border: 1px solid #a67c52;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    color: #a67c52;
    text-decoration: none;
    transition: 0.3s;
}

.contact-button:hover {
    background-color: #a67c52;
    color: #fff;
}

small {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}


@media (max-width: 768px) {
    .hamburger {
        position: fixed; /* ← ここ重要！常に画面右上に出す */
        /* position: absolute; */
        top: 25px;
        right:32px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10001;
    }
    
    /* .hamburger span {
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #333;
        width:100%;
        z-index: 10;
    } */

    .hamburger span {
        /* transition: all 0.3s ease; */
        position: absolute;
        height: 2px;
        background-color: #c79d6d;
        width: 100%;
        /* border-radius: 2px; */
        transition: all 0.3s;
      }

      
    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }
    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }
    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }

    /* .hamburger.open span:nth-of-type(1) {
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }
    .hamburger.open span:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-of-type(3) {
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    } */

/* 開いたときのアニメーション */
.hamburger.open span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 12px;
  }
  .hamburger.open span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 12px;
  }

    /* open状態 */
/* .hamburger.open span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  
  .hamburger.open span:nth-of-type(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
  } */

    

#nav-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: flex; /* ← 最初からflexでOK */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fdfcf4;
        z-index: 999;
        padding-top: 80px;
        text-align: center;
    }
      
    #nav-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

  #nav-menu ul {
    margin: 0;
    list-style: none;
    padding-bottom: 80px;
  }

  #nav-menu li {
    margin: 20px 0;
  }

  #nav-menu a {
    text-decoration: none;
    color: #c79d6d;
    font-size: 1.2rem;
  }
  #nav-menu a:hover {
    color: #678032;
    /* text-shadow: 0 0 5px rgba(216, 216, 216, 0.9); */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}


.top-visual{
    height: 150vh; 
  }

  /* .top-img img{
    height: 100vh;
    object-fit: cover;
  } */


    .nav,
    .fixed-nav {
        display: none;
    }
    .vertical-title {
        writing-mode: horizontal-tb;
        top: 50%;
        transform: translate(-50%, -50%);
        line-height: 1.4;
    }
    .nav-instagram-icon {
        width: 24px !important;
        height: auto !important;
        vertical-align: middle;
        margin-right: 8px;
    }

    .fixed-nav {
        display: none !important;
    }

    .fixed-nav ul {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .fixed-nav li a {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* メイン */
    #asagohan_top{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 90%;
    }
    #asagohan_top_text{
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    .asagohan_top_text1{
        font-size: 2rem;
        line-height: 3rem;
        transform: translateY(-140%);
    }
    
    .asagohan_top_text2{
        width: 100%;
        margin: 0 auto;
        font-size: 0.9rem;
        margin-top: 4rem;
        position: absolute;
        transform: translate(5%,-70%);
        line-height: 2rem;
    }
    #okome_haikei{
        width: 100%;
        margin: 5rem auto;
        position: relative;
        z-index: -1;
        transform:translate(0%,-70%) ;
    }
    #asagohan_top_img{
        width: 150%;
        margin: 1rem auto 0 auto;
        transform: translate(-15%,-60%);
        z-index: 1;
    }
    .ranking{
        width: 90%;
        margin-top: 0;
        transform: translate(0%,-20%);
    }
    #ranking_123{
        display: flex;
        width: 100%;
        margin: 0 auto;
        padding-top: 2rem;
    }
    .ranking2{
        margin-top: 1rem;
    }
    .ranking3{
        margin-top: 1.5rem;
    }
/*おむすびメニュースライダー */
#copy1{
    transform: translate(250%,-380%);
}
#copy2{
    transform: translate(250%,-350%);
}
#copy3{
    transform: translate(250%,-260%);
}
#copy4{
    transform: translate(250%,-350%);
}
#copy5{
    transform: translate(250%,-320%);
}
#copy6{
    transform: translate(250%,-240%);
}
#copy7{
    transform: translate(250%,-280%);
}
#copy8{
    transform: translate(250%,-280%);
}
#asagohan_omusubimenu1234{
    display: block;
    font-size: 1.5rem;
}

    /* omusubimenu */
    .asagohan_omusubimenu_tag1{
        width: 80%;
        margin: 0 auto;
    }
    .asagohan_omusubimenu_tag2{
        font-size: 1.5rem;
    }
    #asagohan_omusubimenu1,
    #asagohan_omusubimenu2,
    #asagohan_omusubimenu3,
    #asagohan_omusubimenu4{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 12rem auto;
}
#asagohan_omusubimenu1{
    margin-top: 5rem;
}
.asagohan_omusubimenu1_salt_text1,
.asagohan_omusubimenu1_ume_text1,
.asagohan_omusubimenu2_sake_text1,
.asagohan_omusubimenu2_edamame_text1,
.asagohan_omusubimenu3_yukari_text1,
.asagohan_omusubimenu3_okaka_text1,
.asagohan_omusubimenu4_konbu_text1,
.asagohan_omusubimenu4_kinoko_text1{
    border-bottom: 1px solid #967950;
    /* display: inline-block; */
    display: flex;
}
.asagohan_omusubimenu1_salt_text2,
.asagohan_omusubimenu1_ume_text2,
.asagohan_omusubimenu2_sake_text2,
.asagohan_omusubimenu2_edamame_text2,
.asagohan_omusubimenu3_yukari_text2,
.asagohan_omusubimenu3_okaka_text2,
.asagohan_omusubimenu4_konbu_text2,
.asagohan_omusubimenu4_kinoko_text2{
    font-size: 0.8rem;
    margin-bottom: 2rem;
}
.asagohan_omusubimenu1_salt_name,
.asagohan_omusubimenu1_ume_name,
.asagohan_omusubimenu2_sake_name,
.asagohan_omusubimenu2_edamame_name,
.asagohan_omusubimenu3_yukari_name,
.asagohan_omusubimenu3_okaka_name,
.asagohan_omusubimenu4_konbu_name,
.asagohan_omusubimenu4_kinoko_name{
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}
.asagohan_omusubimenu1_salt_price,
.asagohan_omusubimenu1_ume_price,
.asagohan_omusubimenu2_sake_price,
.asagohan_omusubimenu2_edamame_price,
.asagohan_omusubimenu3_yukari_price,
.asagohan_omusubimenu3_okaka_price,
.asagohan_omusubimenu4_konbu_price,
.asagohan_omusubimenu4_kinoko_price{
    font-size: 1.3rem;
}
#asagohan_footer_img img{
    width: 50%;
    text-align: right;
    margin-top: 10rem;
}
#asagohan_footer{
    display: flex;
    flex-direction: column;
}
.asagohan_footer_address1{
    margin-top: 15rem;
}
.asagohan_footer_logo img{ 
    width: 30%;
    transform: translate(0%,-210%);
}
.asagohan_footer_contact{
    transform: translate(0%,-60%);
    /* margin-right: 300px; */
}
.asagohan_footer_contact2{
        padding: 1rem 2em;
        margin: 1em 2rem;
        border: solid 2px #fff;
        border-radius: 10px;
    }

.asagohan_footer_contact3{
    /* margin-top: 1rem; */
    width: 10%;
    margin: 0 auto;
}

.btn4_2{
    visibility: visible;
}

/* フッター */
footer {
    overflow-x: hidden;
}

.footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    gap: 10px;
}

.footer-info,
.footer-contact {
    text-align: center;
    align-items: center;
}

.footer-info h3 {
    color: #A67C52;
    font-size: 1.3rem;
    font-weight: bolder;
}

.footer-info p {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-contact {
    align-items: center;
    margin-top: 30px;
}

.footer-contact a {
    white-space: nowrap;
    font-size: 1rem;
}

.contact-button {
    width: 100%;
    max-width: 280px;
    margin: 5px auto;
    text-align: center;
}
}


@media screen and (min-width: 769px) {
    #hamburger,
    #nav-menu {
      display: none;
    }
  }


  @media screen and (max-width: 1024px) and (orientation: landscape) {
    #asagohan_footer .asagohan_footer_logo img {
      width: 20% !important;
      transform: translate(0%, -220%) !important;
    }
    #nav-menu {
        overflow-y: auto;
        max-height: 100vh;
  }
}
