/*
Theme Name: mytheme
Author: The requester: Ichi Co., Ltd. Representative: Sho Ichikawa
Kamishihoro Town, Hokkaido
*/

/* ハンバーガーアイコン */
.hamburger {
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
}

/* メニュー：☰の左側に縦表示 */
.menu {
    display: none;
    position: absolute;
    top: 0;           /* ハンバーガーの高さに合わせる */
    right: 3.5rem;    /* ハンバーガーから左にずらす */
    min-width: 120px;  /* 必要最低幅 */
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu a {
    display: block;
    padding: 0.4rem 0;
    text-decoration: none;
    color: #333;
}

.menu a:hover {
    font-weight: bold;
    color: black;
}

.menu a:hover {
    color: #000;
    font-weight: bold;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
  }

  .slide {
    flex: 0 0 auto;
    width: 90%;
    max-width: 400px;
    height: 500px;
    background: #f1f1f1;
    border-radius: 12px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;  /* ←縦に並べる */
    gap: 1rem;
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }

  .photo {
    flex: 1;
    background-color: #87ceeb; /* 写真っぽい */
    border-radius: 8px;
  }

  .map {
    flex: 1;
    background-color: #98fb98; /* 地図っぽい */
    border-radius: 8px;
  }