.section-title {
    padding: 0 0 24px 0 !important;
}

.sidebar {
    flex-shrink: 1;
}

/* スポットカード */
.spot-card {
    display: flex;
    width: calc(100vw * 0.59);
    overflow: hidden;
    border-radius: 5px;
    border-top-right-radius: 28px;
    gap: 24px;
    /* padding: 20px; */
    margin-bottom: 16px;
    /* aspect-ratio: 1.97 / 1; */
    height: fit-content;
}
.spot-card:nth-child(10) {
    margin-bottom: 65px !important;
}

.spot-card__link {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
@media screen and (max-width: 769px) {
    .spot-card__link {
      flex-direction: column;
    }
    .spot-card {
      border-radius: 10px 30px 10px 10px;
    }
}

.spot-card__link:hover {
    transform: translateY(-4px);
}

.spot-card__thumbnail {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.01;
    min-width: calc(100vw * 0.29);
}

.spot-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spot-card__link:hover .spot-card__thumbnail img {
    transform: scale(1.05);
}

.spot-card__content {
    flex: 1;
    background-color: #1a1a1a;
    color: #fff;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* aspect-ratio: 1 / 1.01; */
    max-width: calc(100vw * 0.29);
}



/* .spot-card__content {

} */

.spot-card__category {
    display: inline-block;
    background-color: #fff;
    color: #1d1d1d;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 14.67px;
    margin-bottom: 40px;
    width: fit-content;
}

/* カテゴリが空の場合は非表示 */
.spot-card__category.is-empty {
    background-color: transparent;
    margin-bottom: 0;
}

.spot-card__text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spot-card__title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    color: #fff;
    line-height: 170%;
    letter-spacing: 0.02em;
}

p.spot-card__description {
    font-size: 13px;
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 170%;
    letter-spacing: 0.02em;
}

.spot-card__tags {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.spot-card__tag-item {
    font-size: 14.67px;
    color: #fff;
}

.spot-card__tag-item::before {
    content: '#';
    margin-right: 2px;
}

@media screen and (max-width: 769px) {
    .spot-card {
    height: auto;
  }
  
  .spot-card__thumbnail {
    flex: none;
  }
  .spot-card__content {
      flex: none;
      padding: 25px;
  }

  .spot-card__title {
      font-size: 1.15rem;
  }

  p.spot-card__description {
      font-size: 0.75rem;
      margin-bottom: 10px;
  }
}

/* ==================== 
   サイドバー - ウィジェット
==================== */
/* ==================== 
   サイドバー - ウィジェット
==================== */
.widget {
    /* background-color: #ffffff; */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.widget__title {
    font-size: 24px;
    color: #1d1d1d;
    margin: 0;
    padding-bottom: 8px;
    /* padding-left: 10px;
    padding-right: 10px; */
    background-color: transparent;
}

.category-widget__container {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-widget__item {
    padding: 16px;
    border-bottom: 2px solid #f8f8f8;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: #fff;
}

.category-widget__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-widget__item:last-child {
    border-bottom: none;
}

.category-widget__item:hover {
    background-color: #f8f9fa;
}

.category-widget__item-title {
    font-size: 21.34px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 0;
}

.right-arrow-icon {
    display: inline-flex;
    align-items: center;
    color: #1d1d1d;
    flex-shrink: 0;
    margin-left: 12px;
}

.right-arrow-icon::before {
    content: '→';
    font-size: 21.34px;
}

.tag-widget__container {
    background-color: transparent;
    padding: 0;
    gap: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.tag-widget__item {
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    background: #E0E5D7;
    transition: background-color 0.2s ease;
}

.tag-widget__item-title {
    font-size: 18.67px;
    color: #1d1d1d;
    margin: 0;
    font-weight: 400;
}

.archive-select__wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.archive-select__wrap::after {
    content: "↓";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 21.34px;
}
.archive-select select {
    color: #1D1D1D;
    width: 100%;
    padding: 16px 26px;
    font-weight: bold;
    font-size: 21.34px;
    border: solid 1px #000;
    border-radius: 80px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.archive-select__all {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archive-select__all span,
.archive-select__wrap::after {
    color: #1D1D1D;
}

h3.section-title__ja {
    font-size: 32px;
    color: #fff;
    position: relative;
    display: flex;        /* これがないと flex が効かない */
    align-items: center;
    gap: 16px;            /* 文字と線の間隔（お好みで） */
}

h3.section-title__ja::after {
    content: "";
    flex: 1 1 auto;
    height: 16px;
    background-image: repeating-linear-gradient(
        135deg,
        #fff 0 1px,
        transparent 1px 7px
    );
    background-repeat: repeat-x;
}

.area-detail__card {
    max-width: 90vw;
    margin: clamp(24px, 5vw, 72px) auto;
    background: #fff;
}

.area-detail__card-container {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 80px;
}

.area-detail__thumbnail {
    flex: 0 0 min(56%, 640px);
    /* PCは画像をやや大きめに */
    width: 100%;
    max-width: 40vw;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    /* 余白除去 */
    border-radius: 24px;
    /* 画像の大きめ角丸 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* text */
.area-detail__content {
    flex: 1;
    min-width: 0;
}

.area-detail__content p {
    margin: 0;
    color: #1d1d1d;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: .02em;
    word-break: break-word;
}


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

    .section-title.first {
        padding: 0 24px 16px 24px !important;
    }
  .section-title {
      padding: 64px 24px 16px 24px !important;
  }
  .section-title__en {
      font-size: 12px !important;
  }
  .section-title__en::before {
      block-size: 12px !important;
  }
  .section-title__ja {
      font-size: 24px !important;
  }
  .area-access-title .section-title__ja {
    margin: 0;
}
  .area-access-title .section-title__ja {
        font-size: 18px !important;
  }

   .spot-card {
      width: 100vw;
      aspect-ratio: auto;
      border-radius: 8px;
      border-top-right-radius: 32px;
  }

  .sidebar {
      /* padding: 32px 24px; */
      width: 100%;
      background-color: var(--color-background-light);
  }
  .widget {
      padding: 32px 24px;
  }

  .spot-card__content {
      padding: 32px;
      gap: 24px;
      max-width: 100vw;
  }

  .spot-card__category {
      margin-bottom: 0;
  }

  .spot-card__title {
      font-size: 28px !important;
  }

  p.spot-card__description {
      font-size: 13px !important;
      padding: 0 !important;
  }

  .spot-card__tag-item {
    font-size: 11px   !important;
  }
  .archive .body .wrapper {
      padding: 0;
      max-width: 100vw;
      background-color: transparent;
  }
  .area-detail__card-container {
      flex-direction: column;
      padding: 32px 24px;
      gap: 32px;
  }
  .area-detail__thumbnail {
      max-width: fit-content;
      aspect-ratio: 16/9;
      border-radius: 16px;
  }

  .carousel-nav {
    padding: 0 0 64px 0;
  }
}