@media (max-width: 1000px) {

  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .pc-about,
  .pc-menu,
  .pc-my-carousel,
  .attractions-pc,
  .informationCard,
  .kyuujin,
  .footer-pc {
    display: none;
  }

  header {
    max-width: unset;
    min-width: unset;
    display: block;
    text-align: center;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }

  .menu-btn {
    margin-top: 32px;
    background: green;
    text-align: center;
    padding: 8px;
    color: #fff;
    cursor: pointer;
  }

  .menu2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    background: green;
  }

  .menu2 a {
    color: #fff;
    text-decoration: none;
  }

  .menu2 a:hover {
    text-decoration: underline;
  }

  .menu2 div {
    margin: 2px;
    padding: 16px;
    background: rgb(1, 139, 1);
  }

  .mobile-about ul {
    list-style: none;
    padding: 0;
  }

  .mobile-about {
    display: flex;
    background: #fff;
    padding: 8px;
  }

  .mobile-about a {
    text-decoration: none;
    color: #fff;
  }

  .mobile-about a:hover {
    color: #c9372d;
  }

  .houjin {
    background: #62422d;
    padding: 16px;
    border-radius: 4px;
    margin-right: 4px;
    width: 50%;
  }

  .saisin {
    background: #b88a7d;
    padding: 16px;
    border-radius: 4px;
    margin-left: 4px;
    width: 50%;
  }

  .contact {
    display: flex;
    background: #fff;
    width: 100%;
  }

  .contact span {
    background: #e6cf5c;
    margin: 16px 150px 16px 16px;
  }

  .contact h2 {
    margin: 0;
  }

  .my-carousel {
    width: 100vw;
    height: 50vw;
    margin: 0 auto;
    position: relative;
  }

  .swiper-slide img {
    border-radius: 0;
  }

  .subtext1 {
    font-size: 4vw;
    font-family: "Kiwi Maru", serif;
    font-style: normal;
    font-weight: bold;
  }

  .subtext2 {
    margin: 0;
    font-size: 3vw;
  }

  .news-list {
    width: 100%;
    margin-top: 32px;
  }

  .nyuukyo {
    margin-top: 16px;
  }

  .nyuukyo a {
    text-decoration: none;
  }

  .nyuukyo div {
    text-align: center;
    background: #62422d;
    margin: 32px;
    border-radius: 16px;
    color: #fff;
    padding: 8px;
  }

  .nyuukyo h1 {
    margin: 0;
    font-size: 6vw;
  }

  .nyuukyo p {
    margin: 0;
    font-size: 2.6vw;
  }

  .aside {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .kyuujin div {
    width: 100%;
    text-align: center;
    background: #62422d;
    margin: 32px;
    border-radius: 16px;
    color: #fff;
    padding: 8px;
  }

  .attractions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
    /* 適度な間隔を確保 */
    padding: 5vw;
    text-align: center;
  }

  .row {
    display: flex;
    justify-content: center;
    gap: 5vw;
    /* 丸の間隔を確保 */
    flex-wrap: wrap;
    /* 画面幅が狭い場合に折り返す */
  }


  .attraction {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 40vw;
    /* 円の最大サイズと同じにする */
    position: relative;
  }

  .circle {
    position: relative;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  }

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

  .label {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5c3b1e;
    color: white;
    font-size: 3vw;
    padding: 1vw 2vw;
    border-radius: 20px;
  }

  .label span {
    font-size: 2.5vw;
    display: block;
    opacity: 0.8;
  }

  .attractions p {
    font-size: 3vw;
    margin-top: 2vw;
    /* color: #5c3b1e; */
    text-align: center;
    position: absolute;
    bottom: -40px;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
      -1px 1px 0 #FFF, 1px -1px 0 #FFF,
      0px 1px 0 #FFF, 0-1px 0 #FFF,
      -1px 0 0 #FFF, 1px 0 0 #FFF;
  }

  main {
    width: 100%;
  }

  iframe {
    width: 100vw;
  }

}

@media (min-width: 1000px) {
  header {
    max-width: 1000px;
    min-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .mobile-menu,
  .mobile-attractions,
  .kyuujin-mobile,
  .section10,
  .section11,
  .footer-mobile,
  .section12 {
    display: none;
  }

  .menu-btn {
    display: none;
  }

  main {
    width: 1000px;
    margin: 0 auto;
  }

  .footer-pc {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }

}