@media (max-width: 780px) { 
    header{
        background-color: #fff;
    }
    .page-header{
        position: relative;
        width: 100vw;
    }
    .page-header__img{
        width: 100%;
        height: 200px;
    }
    .page-header__img img{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .page-header__title{
        font-size: 30px;
    }
    .page-header__content{
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .page-header__title{
        color: #fff;
        padding-top: 100px;
        margin: 0 auto;
    }
    .page-header__en-title{
        color: #fff;
    }
}
@media (min-width: 781px) { 
    header{
        background-color: #fff;
    }
    .page-header{
        position: relative;
        width: 100vw;
    }
    .page-header__img{
        width: 100%;
        height: 200px;
    }
    .page-header__img img{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .page-header__title{
        font-size: 30px;
    }
    .page-header__content{
        position: absolute;
        top: 0;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .page-header__title{
        color: #fff;
        padding-top: 100px;
        margin: 0 auto;
    }
    .page-header__en-title{
        color: #fff;
    }
}


@media (max-width: 780px) { 
.layout-container{
    margin-bottom: 20px;
    font-size: 16px;
}
.store-sections{
    background-color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 200;
    line-height: 30px;
}

.store-sections{
    width: 90%;
    padding: 10px 5%;
    margin: 0 auto;
}
.store-about__text{
    margin-top: 30px;
    margin-bottom: 50px;
}
.store-img{
    width: 100%;
}
.store-img__list{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.store-img__item{
    width: 49%;
    margin-bottom: 2%;
}

.store-notes__heading{
    font-size: 24px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.store-notes__text #subtitle{
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
    width: 100%;
}
.store-map__wrapper{
    width: 100%;
    height: 50vw;
    margin-top: 20px;
    margin-bottom: 50px;
}
}
@media (min-width: 781px) { 
.store-sections{
    background-color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 200;
    line-height: 30px;
}

.store-sections{
    width: 90%;
    padding: 50px 5%;
    margin: 0 auto;
}
.shop_top_flex{
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}
.store-about{
    flex: 5;
    font-size: 15px;
}
.store-about__text{
    margin-bottom: 50px;
}
.store-img{
    flex: 4;
}
.layout-container{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.store-img__list{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.store-img__item{
    width: 49%;
    margin-bottom: 2%;
}

.store-notes__heading{
    font-size: 18px;
    text-align: center;
    margin-top: 75px;
    margin-bottom: 50px;
}
.store-notes__text #subtitle{
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 10px;
    width: 100%;
}
.store-map__wrapper{
    width: 100%;
    max-width: 900px;
    height: 30vw;
    max-height: 300px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
}


.store-notes__directions-wrapper{
    text-align: center;
    padding: 30px 0;
}
.store-notes__directions{
    background-color: #a32123;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    padding: 20px 60px;
    border-radius: 100px;
    width: fit-content;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    border: none;
}




/* 行き方 */
/* モーダル全体（背景） */
.directions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6); /* 背景の暗幕 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;  /* 最前面に出す */
  }
  
  /* 表示時 */
  .directions-modal.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  /* 中身のボックス */
  .directions-modal__box {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 20px;
    position: relative;
  }
  ul{
    padding: 0;
  }
  .directions-modal__item-text{
    margin-top: 10px;
    margin-bottom: 30px;
  }
/* 閉じるボタン全体 */
.directions-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* 中の×（クロス） */
  .cross-wrapper {
    position: relative;
    width: 16px;
    height: 16px;
  }
  
  .cross {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #333;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .cross::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: #333;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  /* モーダル表示中は背景スクロール禁止 */
.modal-open {
    overflow: hidden;
    height: 100vh;
  }
  
  