/* ------------

一覧ページ（イベント・トピックス、お知らせ）

------------ */
#archive-news-mv {
  background-color: #e0f2fd;
  margin-bottom: 4rem;
}

.archive-news-mv__title {
  text-align: center;
}

.archive-news-mv__title__inner {
  max-width: 120rem;
  padding: 12rem 2.4rem 12rem;
  margin: 0 auto;
}

.archive-news-mv__title__inner h1 {
  margin-bottom: 0.8rem;
}

.archive-news-mv__title__inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.6rem;
  font-family: "Montserrat Alternates", sans-serif;
  color: #006fc5;
  font-size: 1.4rem;
}

.archive-news-mv__title__inner span::before,
.archive-news-mv__title__inner span::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background-color: #006fc5;
}

.archive-news-mv__category {
  width: fit-content;
  margin: -4rem auto 0;
  font-size: 1.4rem;
}

.archive-news-mv__category__list {
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.archive-news-mv__category__list::-webkit-scrollbar {
  display: none;
}

.archive-news-mv__category__list > li {
  min-width: fit-content;
  background-color: #fff;
}

.archive-news-mv__category__list > li:first-of-type {
  border-radius: 0.8rem 0 0 0;
}

.archive-news-mv__category__list > li:last-of-type {
  border-radius: 0 0.8rem 0 0;
}

.archive-news-mv__category__list > li a {
  display: inline-block;
  padding: 1.6rem 4.8rem;
  opacity: 0.4;
  border-bottom: solid 0.2rem #eee;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-news-mv__category__list > li.current-cat a {
  opacity: 1;
  border-bottom: solid 0.2rem #006fc5;
}

#archive-news__content {
  margin-bottom: 12rem;
}

.archive-news__wrap {
  max-width: 94.8rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.archive-news__item > a {
  border-bottom: solid 1px #eee;
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  column-gap: 4rem;
}

.archive-news__item:first-of-type > a {
  border-top: solid 1px #eee;
}

.archive-news__item__img {
  aspect-ratio: 1.618 / 1;
  width: 24rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: solid 1px #eee;
}

.archive-news__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-news__item__text {
  flex: 1;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-news__item__text time {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Montserrat Alternates", sans-serif;
  margin-bottom: 0.8rem;
  color: #006fc5;
}

.archive-news__item__text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-news__item__category {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 1.6rem 0;
}

.archive-news__item__category span {
  display: inline-block;
}

.archive-news__item__category span:first-of-type {
  flex: 1;
  min-width: fit-content;
  border-right: solid 1px #eee;
  font-size: 1rem;
  padding-right: 1.6rem;
}

.archive-news__item__category span:nth-of-type(2) {
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
  padding-left: 1.6rem;
}

@media (any-hover: hover) {
  .archive-news-mv__category__list > li:hover a {
    opacity: 1;
    border-bottom: solid 0.2rem #006fc5;
  }

  .archive-news__item:hover .archive-news__item__text h2 {
    color: #006fc5;
  }

  .archive-news__item:hover .archive-news__item__img img {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .archive-news__item > a {
    column-gap: 1.6rem;
  }
  .archive-news__item__img {
    width: 12rem;
  }

  .archive-news__item__text h2 {
    font-size: 1.6rem;
  }

  .archive-news__item__category {
    padding: 0.8rem 0;
  }
}

/* ------------

詳細ページ（イベント・トピックス、お知らせ）

------------ */

#single-content {
  overflow-x: clip;
}

#single-news-mv {
  background-color: #e0f2fd;
  margin-bottom: 4rem;
}

.single-news-mv__title {
  text-align: center;
}

.single-news-mv__title__inner {
  max-width: 120rem;
  padding: 4.8rem 2.4rem;
  margin: 0 auto;
}

.single-news-mv__title__inner h1 {
  margin-bottom: 0.8rem;
}

.single-news-mv__title__inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.6rem;
  font-family: "Montserrat Alternates", sans-serif;
  color: #006fc5;
  font-size: 1.4rem;
}

.single-news-mv__title__inner span::before,
.single-news-mv__title__inner span::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background-color: #006fc5;
}

.single__wrap {
  max-width: 94.8rem;
  padding: 0 2.4rem;
  margin: 0 auto 12rem;
}

.single-content__title > time {
  color: #006fc5;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.8rem;
}

.single-content__title > h1 {
  font-size: 2.8rem;
}

.single-content__title__category {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 1.6rem 0;
  border-top: solid 1px #eee;
}

.single-content__title__category span {
  display: inline-block;
  padding: 0 2.4rem;
}

.single-content__title__category span:first-of-type {
  border-right: solid 1px #eee;
  flex: 1;
  min-width: fit-content;
  font-size: 1.2rem;
}

.single-content__title__category span:nth-of-type(2) {
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}

.single-content__inner {
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  padding: 4rem 1.6rem;
  margin-bottom: 4rem;
}

.single-sightseeing .single-content__inner,
.single-gourmet-story .single-content__inner {
  border-top: transparent;
  padding-top: 0;
}

.single-content__inner a {
  color: #ac7508;
  border-bottom: solid 1px #ac7508;
  transition: all 0.4s ease;
}

.single-content__inner ul {
  padding-left: 2.4rem;
  list-style: disc;
}

.single-content__inner ul > li {
  margin-bottom: 0.8rem;
}

.single-content__inner ol {
  padding-left: 2.4rem;
  list-style: decimal;
}

.single-content__inner ol > li {
  margin-bottom: 0.8rem;
}

.single-content__inner dl {
  font-size: 1.4rem;
}

.single-content__inner dl > div {
  display: flex;
  width: 100%;
}

.single-content__inner dl > div dt {
  width: 20rem;
  padding: 1.6rem;
  border-bottom: solid 0.2rem #006fc5;
  font-weight: 700;
}

.single-content__inner dl > div:first-of-type dt {
  border-top: solid 0.2rem #006fc5;
}

.single-content__inner dl > div dt span {
  position: sticky;
  top: 12rem;
  display: inline-block;
}

.single-content__inner dl > div dd {
  width: calc(100% - 20rem);
  padding: 1.6rem;
  border-bottom: solid 0.2rem #eee;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
}

.single-content__inner dl > div:first-of-type dd {
  border-top: solid 0.2rem #eee;
}

.single-content__inner dl > div dd p {
  margin-top: 0;
}

.single-content__inner iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.single-content__inner th,
.single-content__inner td {
  border: solid 1px #eee;
}

.single-content__inner table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.4rem;
}

.single-content__inner th {
  padding: 1.6rem;
  text-align: center;
  vertical-align: middle;
}

.single-content__inner td {
  text-align: left;
  padding: 1.6rem;
  vertical-align: middle;
  min-width: 10rem;
}

.single-content__inner h2 {
  position: relative;
  color: #006fc5;
  border-bottom: dotted 1px #006fc5;
  padding: 1.2rem 0rem 1.2rem 2.4rem;
}

.single-content__inner h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8rem;
  height: 100%;
  background-color: #006fc5;
}

.single-content__inner h3 {
  position: relative;
  padding: 0.8rem 0rem 0.8rem 2.4rem;
}

.single-content__inner h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4rem;
  height: 100%;
  background-color: #006fc5;
}

.single-content__inner h4 {
  border-bottom: dotted 1px #006fc5;
  padding-left: 0.4rem;
  padding-bottom: 0.8rem;
}

h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading {
  margin: 4rem 0 2.4rem;
}

h5.wp-block-heading {
  color: #006fc5;
}

.wp-block-list {
  margin-bottom: 2.4rem;
}

.wp-block-image {
  margin-bottom: 1.6rem;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.aligncenter {
  text-align: center;
}

.wp-block-columns {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

@media (any-hover: hover) {
  .single-content__inner a:hover {
    opacity: 0.4;
    border-bottom: solid 1px transparent;
  }
}

@media screen and (max-width: 768px) {
  .single-content__inner dl > div {
    flex-direction: column;
    margin-bottom: 2.4rem;
  }

  .single-content__inner dl > div:last-of-type {
    margin-bottom: 0;
  }

  .single-content__inner dl > div dt {
    width: 100%;
  }

  .single-content__inner dl > div:first-of-type dt {
    border-top: none;
  }

  .single-content__inner dl > div dt span {
    position: static;
  }

  .single-content__inner dl > div dd {
    width: 100%;
  }

  .single-content__inner dl > div:first-of-type dd {
    border-top: none;
  }

  .wp-block-columns {
    flex-direction: column;
  }
}

/* ------------

一覧ページ（まちのインデックス、宿泊スポット、グルメ＆ショッピング、体験くらぶ）

------------ */
#archive-main-mv {
  overflow-x: clip;
  margin-bottom: 4rem;
}

.archive-main-mv__title {
  position: relative;
  z-index: 3;
}

.archive-main-mv__title__inner {
  max-width: 120rem;
  padding: 4rem 2.4rem 2.4rem;
  margin: 0 auto;
}

.archive-main-mv__title__inner h1 {
  font-size: 4rem;
  margin-bottom: 0.8rem;
}

.archive-main-mv__title__inner p {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  margin: 0 0 0.4rem;
}

.archive-main-mv__title__inner p::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background-color: #1f2a33;
}

.archive-main-mv__title__inner span {
  color: #006fc5;
  font-family: "Montserrat Alternates", sans-serif;
}

.archive-main-mv__img {
  margin-right: calc(50% - 50vw);
  width: 100%;
  border-radius: 1.6rem 1.6rem 0 0;
  aspect-ratio: 4.5 / 1;
  background-size: cover;
  background-position: center;
  background-color: #e0f2fd;
}

.archive-main-mv__img__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 24rem;
  background-image: url(../img/mv01.jpg);
  background-size: cover;
}

.archive-main-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 24rem;
}

.archive-main-mv__content {
  overflow-x: clip;
}

.archive-main-mv__content__inner {
  padding: 0 2.4rem;
  position: relative;
}

/* 各カテゴリのMV */

/* まちのインデックス */
.tax-index-category .archive-main-mv__img.nature-park-walks {
  background-image: url(../img/index/nature-park-walks__mv.jpg);
}

.tax-index-category .archive-main-mv__img.history-culture {
  background-image: url(../img/index/history-culture__mv.jpg);
}

.tax-index-category .archive-main-mv__img.play {
  background-image: url(../img/index/play__mv.jpg);
  background-position: right center;
}

.tax-index-category .archive-main-mv__img.shrine {
  background-image: url(../img/index/shrine__mv.jpg);
}

.tax-index-category .archive-main-mv__img.public {
  background-image: url(../img/index/public__mv.jpg);
}

.tax-index-category .archive-main-mv__img.landmark {
  background-image: url(../img/index/landmark__mv.jpg);
}

/* グルメ & ショッピング */
.tax-gourmet-shopping-category .archive-main-mv__img.hotel {
  background-image: url(../img/gourmet-shopping/hotel__mv.jpg);
}

.tax-gourmet-shopping-category .archive-main-mv__img.japanese-food {
  background-image: url(../img/gourmet-shopping/japanese-food__mv.jpg);
}

.tax-gourmet-shopping-category .archive-main-mv__img.western-food {
  background-image: url(../img/gourmet-shopping/western-food__mv.jpg);
}

.tax-gourmet-shopping-category .archive-main-mv__img.cafe {
  background-image: url(../img/gourmet-shopping/cafe__mv.jpg);
}

.tax-gourmet-shopping-category .archive-main-mv__img.shopping {
  background-image: url(../img/gourmet-shopping/shopping-mall__mv.jpg);
}

.tax-gourmet-shopping-category .archive-main-mv__img.products {
  background-image: url(../img/gourmet-shopping/store__mv.jpg);
}

/* 宿泊スポット */
.tax-stay-spot-category .archive-main-mv__img.maihama-area {
  /* background-image: url(../img/stay-spot/maihama-area__mv.jpg); */
}

.tax-stay-spot-category .archive-main-mv__img.shinurayasu-area {
  /* background-image: url(../img/stay-spot/shinurayasu-area__mv.jpg); */
}

.tax-stay-spot-category .archive-main-mv__img.urayasu-area {
  /* background-image: url(../img/stay-spot/urayasu-area__mv.jpg); */
}

/* 各カテゴリのMV ここまで */

.archive-main-mv__slide.swiper {
  border-radius: 1.6rem 1.6rem 0 0;
  aspect-ratio: 4.5 / 1;
  background-color: #e0f2fd;
}

.archive-main-mv__slider__list.swiper-wrapper {
  transition-timing-function: linear;
}

.archive-main-mv__slider__item.swiper-slide {
  aspect-ratio: 1.618 / 1;
}

.archive-main-mv__slider__item.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-main-mv__btn {
  width: 8.8rem;
  height: 8.8rem;
  background-color: #fff;
  border: solid 0.4rem #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.archive-main-mv__btn::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/arrow-blue.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.archive-main-mv__btn svg:first-of-type {
  position: absolute;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  top: calc(50% - 1px);
  left: 0;
  transform: translateX(-100%);
}

.archive-main-mv__btn svg:nth-of-type(2) {
  position: absolute;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  top: calc(50% - 1px);
  right: 0;
  transform: translateX(100%);
}

.archive-main__category {
  margin-bottom: 4rem;
}

.archive-main__category__wrap {
  max-width: 120rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.archive-main__category__inner {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}

.archive-main__category__title {
  position: relative;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.archive-main__category__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4rem;
  width: 2.4rem;
  height: 1px;
  background-color: #eee;
}

.archive-main__category__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  border: solid 1px #eee;
  padding: 2.4rem 4rem;
}

.archive-main__category__list > li {
  font-size: 1.2rem;
  border: solid 1px #1f2a33;
  border-radius: 2.4rem;
}

.archive-main__category__list > li.current-cat {
  background-color: #1f2a33;
}

.archive-main__category__list > li a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  color: #1f2a33;
}

.archive-main__category__list > li.current-cat a {
  color: #fff;
  pointer-events: none;
}

.archive-main__category__list > li .children {
  display: none;
}

#archive-main__content {
  margin-bottom: 12rem;
}

.archive-main__wrap {
  max-width: 120rem;
  padding: 0 2.4rem;
  margin: 0 auto;
}

.archive-main__category-name {
  font-size: 2.4rem;
  color: #006fc5;
  border-bottom: solid 1px #eee;
  padding-bottom: 0.8rem;
}

.archive-main__subcategory-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  margin-bottom: 1.6rem;
  &::before {
    content: "";
    display: inline-block;
    width: 0.8rem;
    aspect-ratio: 1 / 1;
    background-color: #006fc5;
  }
}

.archive-main__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 0.8rem;
  margin-bottom: 4rem;
}

.archive-main__list__item {
  width: calc((100% / 4) - (0.8rem * 3 / 4));
}

.archive-main__list__item > a {
  border: solid 1px #eee;
  border-radius: 0.8rem;
  overflow: hidden;
  display: block;
}

.archive-main__list__item__img {
  width: 100%;
  aspect-ratio: 1.618 / 1;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.archive-main__list__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-main__list__item__text {
  padding: 0 1.6rem;
}

.archive-main__list__item > a.outlink .archive-main__list__item__text h2 {
  position: relative;
  padding-right: 1.6rem;
}

.archive-main__list__item
  > a.outlink
  .archive-main__list__item__text
  h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../img/icon-outlink__bk.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.archive-main__list__item__text h2 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-main__list__item__taxonomy__list {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: solid 1px #eee;
}

.archive-main__list__item__taxonomy__list > li {
  font-size: 1rem;
  border-radius: 4rem;
  padding: 0.4rem 1.2rem;
  border: solid 1px #eee;
}

.archive-main__list__item__disney-copy {
  display: block;
  font-size: 1rem;
  text-align: right;
  padding: 0.4rem 0.8rem;
}

@media (any-hover: hover) {
  .archive-main__list__item > a:hover .archive-main__list__item__img img {
    transform: scale(1.1);
    opacity: 0.6;
  }

  .archive-main__list__item > a:hover .archive-main__list__item__text h2 {
    color: #006fc5;
  }
}

@media screen and (max-width: 768px) {
  .archive-main-mv__title__inner h1 {
    font-size: 3.2rem;
  }

  .archive-main-mv__img {
    aspect-ratio: 1.618 / 1;
  }

  .archive-main-mv__slide.swiper {
    aspect-ratio: 1.618 / 1;
  }

  .archive-main__category__inner {
    flex-direction: column;
    row-gap: 2.4rem;
  }

  .archive-main__category__title::before {
    top: 100%;
    right: 50%;
    transform: translateY(1.2rem);
    width: 1px;
    height: 2.4rem;
  }

  .archive-main__category__list {
    padding: 1.6rem;
  }

  .archive-main__list__item {
    width: calc((100% / 2) - (0.8rem * 1 / 2));
  }
}

/* ------------

体験くらぶ一覧の絞り込みフォーム

------------ */
.experience-category__form {
  max-width: 120rem;
  padding: 0px 2.4rem;
  margin: 0px auto 4rem;
}

.experience-category__content {
  display: flex;
  align-items: center;
  gap: 2.4rem 4rem;
  padding: 3.2rem 2.4rem 2.4rem;
  border: solid 1px #eee;
}

.experience-category__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: calc(100% - 24rem);
}

.experience-category__group {
  width: 100%;
  border: solid 1px #eee;
  padding: 2.4rem;
}

.experience-category__title {
  margin-top: -2.4rem;
  transform: translateY(-50%);
  background-color: #fff;
  width: fit-content;
  font-weight: 700;
  font-size: 1.4rem;
}

.experience-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
}

.experience-category__list > li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
}

.experience-category__label {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  padding-left: 3.2rem;
}

.experience-category__label input {
  margin: 0;
  width: 0;
  height: 0;
}

.experience-category__checkbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1 / 1;
  border: solid 1px #eee;
}

.experience-category__checkbox::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.2rem);
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  display: inline-block;
  width: 1.6rem;
  height: 0.8rem;
  border-left: solid 0.3rem #006fc5;
  border-bottom: solid 0.3rem #006fc5;
  opacity: 0;
  transition: all 0.4s ease;
}

.experience-category__label
  input:checked
  + .experience-category__checkbox::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-45deg);
}

.experience-category__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.2rem;
  width: 24rem;
  cursor: pointer;
  padding: 2.1rem 1.6rem 2.1rem 0.8rem;
  border-radius: 4rem;
  background-color: #1f2a33;
  border: solid 1px #1f2a33;
  transition: all 0.4s ease;
  margin-bottom: 1.6rem;
}

.experience-category__btn::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/icon-search__wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}

.experience-category__btn input {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: transparent;
  transition: all 0.4s ease;
}

.experience-category__reset {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 2.4rem;
  padding: 0.8rem 1.6rem 0.8rem 3.2rem;
  border: dotted 1px #eee;
  border-radius: 4rem;
  cursor: pointer;
}

.experience-category__reset::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.2rem);
  transform: translateY(-50%) rotate(-45deg);
  left: 1.2rem;
  display: inline-block;
  width: 1.2rem;
  height: 0.6rem;
  border-left: solid 0.2rem #006fc5;
  border-bottom: solid 0.2rem #006fc5;
}

.experience-category__reset button {
  font-size: 1rem;
  display: block;
}

.experience-category__link {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  text-decoration: underline;
}

.experience__category-name {
  position: relative;
  font-size: 2.1rem;
  margin-bottom: 0.8rem;
  column-gap: 1.6rem;
  display: flex;
  align-items: center;
}

.experience__category-name::before {
  content: "";
  display: inline-block;
  width: 7.2rem;
  aspect-ratio: 122 / 150;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.experience__category-name::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
}

.experience__category-name.market::before {
  background-image: url(../img/experience/icon-market.svg);
}

.experience__category-name.market::after {
  background-color: #e7373c;
}

.experience__category-name.learn::before {
  background-image: url(../img/experience/icon-learn.svg);
}

.experience__category-name.learn::after {
  background-color: #009eb0;
}

.experience__category-name.ride::before {
  background-image: url(../img/experience/icon-ride.svg);
}

.experience__category-name.ride::after {
  background-color: #006cac;
}

.experience__category-name.move::before {
  background-image: url(../img/experience/icon-move.svg);
}

.experience__category-name.move::after {
  background-color: #f4a23b;
}

.experience__category-name.create::before {
  background-image: url(../img/experience/icon-create.svg);
}

.experience__category-name.create::after {
  background-color: #1aab4b;
}

.experience__category-name.gather::before {
  background-image: url(../img/experience/icon-gather.svg);
}

.experience__category-name.gather::after {
  background-color: #e85382;
}

@media (any-hover: hover) {
  .experience-category__btn:hover {
    background-color: #fff;
  }

  .experience-category__btn:hover::before {
    background-image: url(../img/icon-search__bk.svg);
  }

  .experience-category__btn:hover input {
    color: #1f2a33;
  }
}

@media screen and (max-width: 768px) {
  .experience-category__content {
    flex-direction: column;
  }

  .experience-category__inner {
    width: 100%;
  }
}

/* ------------

詳細ページ（まちの、宿泊スポット、グルメ＆ショッピング、体験くらぶ）

------------ */
#single-main-mv {
  background: repeating-linear-gradient(
    135deg,
    #e0f2fd,
    #e0f2fd 0.2rem,
    #fff 0.2rem,
    #fff 0.4rem
  );
  margin-bottom: 4rem;
}

.single-main-mv__title {
  text-align: center;
}

.single-main-mv__title__inner {
  max-width: 120rem;
  padding: 8rem 2.4rem;
  margin: 0 auto;
}

.single-main-mv__title__inner p {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.single-main-mv__title__inner h1 {
  margin-bottom: 0.8rem;
}

.single-main-mv__title__inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.6rem;
  font-family: "Montserrat Alternates", sans-serif;
  color: #006fc5;
  font-size: 1.4rem;
}

.single-main-mv__title__inner span::before,
.single-main-mv__title__inner span::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background-color: #006fc5;
}

.single-main__img {
  position: relative;
  padding-bottom: 4.8rem;
}

.swiper.single-main__slider {
  border-radius: 2.4rem;
  overflow: hidden;
}

.swiper-slide.single-main__slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  aspect-ratio: 1.618 / 1;
  height: 100%;
}

.swiper-slide.single-main__slider__item img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.single-main__img .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.8rem !important;
}

.single-main__img .swiper-button-next,
.single-main__img .swiper-button-prev {
  transform: translateY(-2.4rem);
  width: auto;
}

.single-main__img .swiper-button-next::after,
.single-main__img .swiper-button-prev::after {
  font-size: 4rem;
}

.single-main__category__list {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
}

.single-main__category__list > li {
  border: dotted 0.1rem #006fc5;
  color: #006fc5;
  padding: 0.4rem 1.2rem;
}

.single-main__catch {
  color: #006fc5;
  border-bottom: dotted 0.6rem #006fc5;
  padding-bottom: 0.8rem;
}

.single-main__description {
  margin-bottom: 4rem;
}

.single-main__info {
  display: flex;
  gap: 4rem;
}

.single-main__info--item {
  width: 100%;
}

.single-main__info--item dl > div dt {
  width: 16rem;
}

.single-content__inner dl > div dd {
  width: calc(100% - 16rem);
}

.single-main__info--item h2 {
  font-size: 1.8rem;
  padding-left: 0;
  border-bottom: none;
  margin-bottom: 0.8rem;
}

.single-main__info--item h2::before {
  display: none;
}

.single-main__gmap {
  margin: 0 calc(50% - 50vw) 8rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}

.single-main__gmap h3 {
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 0.8rem;
  margin-bottom: 0;
}

.single-main__gmap h3::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/icon-map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.single-main__gmap iframe {
  width: 100%;
  height: 40rem;
}

.single-main__form {
  position: relative;
  border: solid 0.2rem #eee;
  margin-bottom: 8rem;
  padding: 0 2.4rem 4rem;
}

.single-main__form h3 {
  font-size: 1.8rem;
  transform: translateY(-50%);
  width: fit-content;
  background-color: #fff;
  margin: 0 auto 2.4rem;
}

.single-main__form__list {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.single-main__form__list > li {
  width: 50%;
}

.single-main__form__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.4rem;
  width: 100%;
  padding: 2.4rem;
  border-radius: 4rem;
  text-align: center;
  font-weight: 600;
  background-color: #ac7508;
  color: #fff;
  border: solid 1px #ac7508;
  transition: all 0.4s ease;
}

.single-main__form__contact::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.single-main__form__apply {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.4rem;
  width: 100%;
  padding: 2.4rem;
  border-radius: 4rem;
  text-align: center;
  font-weight: 600;
  background-color: #fff;
  color: #ac7508;
  border: solid 1px #ac7508;
  transition: all 0.4s ease;
}

.single-main__form__apply::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/icon-pen.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (any-hover: hover) {
  .single-main__form__contact:hover,
  .single-main__form__apply:hover {
    opacity: 0.4;
  }
}

@media screen and (max-width: 768px) {
  .single-main__img .swiper-button-next::after,
  .single-main__img .swiper-button-prev::after {
    font-size: 2.4rem;
  }

  .swiper-slide.single-main__slider__item {
    aspect-ratio: 1.414 / 1;
  }

  .single-main__info {
    flex-direction: column;
  }

  .single-main__info--item dl > div dt {
    width: 100%;
  }

  .single-content__inner dl > div dd {
    width: 100%;
  }

  .single-main__gmap iframe {
    height: 24rem;
  }

  .single-main__form__list {
    flex-direction: column;
  }

  .single-main__form__list > li {
    width: 100%;
  }
}

/* ------------

一覧ページ（観光情報、グルメ物語）

------------ */

#archive-lp__content {
}

.archive-lp__wrap {
  margin-bottom: 8rem;
}

.archive-lp__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.archive-lp__item {
  position: relative;
  border-right: solid 1px #eee;
  border-bottom: solid 1px #eee;
  overflow: hidden;
}

.archive-lp__item:nth-of-type(3n-2) {
  border-left: solid 1px #eee;
}

.archive-lp__item:nth-of-type(-n + 3) {
  border-top: solid 1px #eee;
}

.archive-lp__item > a {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  padding: 2.4rem;
  overflow: hidden;
  transition: 0.4s;
}

.archive-lp__item > a::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e0f2fd;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  height: 0;
  transition: 0.4s;
}

.archive-lp__item__img {
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.archive-lp__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.archive-lp__item__text time {
  font-size: 1.4rem;
  color: #006cac;
}

.archive-lp__item__text h2 {
  font-size: 2.1rem;
}

.archive-lp__item__btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 6.4rem;
  aspect-ratio: 1 / 1;
  border-radius: 100% 0 0 0;
  background-color: #006fc5;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.archive-lp__item__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 0.6rem);
  left: calc(50% + 0.6rem);
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/arrow-wh.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (any-hover: hover) {
  .archive-lp__item > a:hover::before {
    height: 150%;
  }

  .archive-lp__list:has(.archive-lp__item > a:hover)
    .archive-lp__item
    > a:not(:hover) {
    opacity: 0.4;
    scale: 0.95;
  }

  .archive-lp__item > a:hover .archive-lp__item__img img {
    scale: 1.05;
  }

  .archive-lp__item:hover .archive-lp__item__btn {
    background-color: #fff;
  }

  .archive-lp__item:hover .archive-lp__item__btn::before {
    background-image: url(../img/arrow-blue.svg);
  }
}

@media screen and (max-width: 768px) {
  .archive-lp__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .archive-lp__item:nth-of-type(2n) {
    border-right: none;
  }

  .archive-lp__item:nth-of-type(3n-2) {
    border-left: none;
  }

  .archive-lp__item:nth-of-type(-n + 3) {
    border-top: none;
  }

  .archive-lp__item:nth-of-type(-n + 2) {
    border-top: solid 1px #eee;
  }

  .archive-lp__item__text time {
    font-size: 1.2rem;
  }

  .archive-lp__item__text h2 {
    font-size: 1.6rem;
  }

  .archive-lp__item__btn {
    width: 4.8rem;
  }
}

/* ------------

詳細ページ（観光情報、グルメ物語）

------------ */
#single-lp-mv {
  margin-bottom: 4rem;
}

.single-lp-mv__inner {
  position: relative;
  display: flex;
  align-items: center;
  background: repeating-linear-gradient(
    135deg,
    #e0f2fd,
    #e0f2fd 0.2rem,
    #fff 0.2rem,
    #fff 0.4rem
  );
}

.single-lp-mv__img {
  width: 50%;
  aspect-ratio: 1.4 / 1;
}

.single-lp-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-lp-mv__text {
  width: calc(50% - 4.8rem);
  padding: 4rem;
  border-radius: 0.8rem;
  margin: 2.4rem;
  background-color: #fff;
}

.single-lp-mv__text time {
  color: #006fc5;
  font-size: 1.4rem;
  padding: 0.4rem;
  font-weight: 600;
}

.single-lp-mv__text span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #006fc5;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.single-lp-mv__text span::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background-color: #006fc5;
}

.single-lp-mv__text h1 {
  font-size: 3.2rem;
  margin-bottom: 0;
}

.single-movie {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 4rem;
  padding: 4rem 0;
}

.single-movie::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #e0f2fd;
}

.single-movie::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 90%;
  aspect-ratio: 42 / 16;
  mask-image: url(../img/illust-ripples.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
}

.single-movie__content {
  position: relative;
  z-index: 2;
  aspect-ratio: 315 / 560;
  border-radius: 2.4rem;
  border: solid 0.8rem #1f2a33;
  background-color: #006fc5;
  overflow: hidden;
  width: 32rem;
  margin: 0 auto;
}

.single-movie__content video,
.single-movie__content iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* -----  プラグイン「Table of Contents Plus」調整. ----- */
#toc_container {
  border-radius: 1.6rem;
  margin: 0 auto;
  width: 100%;
  border: solid 1px #eee;
  padding: 2.4rem;
  margin-bottom: 4rem;
}

.toc_title {
  position: relative;
  padding: 0.8rem 1.6rem !important;
  background-color: #1f2a33;
  color: #fff;
}

.toc_title::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 2.4rem;
  height: 1.2rem;
  background-color: #1f2a33;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.toc_list {
  margin-top: 0 !important;
}

#toc_container a {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1.6rem;
  border-bottom: solid 1px #eee;
  color: #1f2a33;
}

.toc_number {
  display: inline-block;
  min-width: fit-content;
  margin-right: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Montserrat Alternates", sans-serif;
  color: #ac7508;
}

@media screen and (max-width: 768px) {
  .single-lp-mv__inner {
    flex-direction: column;
  }

  .single-lp-mv__img {
    width: 100%;
  }

  .single-lp-mv__text {
    width: calc(100% - 4.8rem);
    padding: 2.4rem;
  }

  .single-lp-mv__text time,
  .single-lp-mv__text span {
    font-size: 1.2rem;
  }

  .single-lp-mv__text h1 {
    font-size: 2.4rem;
  }

  .archive-news__item > a {
    column-gap: 1.6rem;
  }
  .archive-news__item__img {
    width: 12rem;
  }

  .archive-news__item__text h2 {
    font-size: 1.6rem;
  }

  .archive-news__item__category {
    padding: 0.8rem 0;
  }
}
