@charset "UTF-8";

/* ヘッダー */
header {
  display: relative;
}

header .header-logo {
  position: absolute;
  left: 0;
  top: 0;
  padding: 1.6rem;
}

header .header-logo img {
  display: block;
  width: 102px;
}

header nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
  padding: 0.4rem 1rem 0.4rem calc(102px + 3.2rem);
}

header nav .nav {
  display: flex;
}

header nav .nav li {
  position: relative;
  padding: 0.4rem;
}

header nav .nav li::after {
  content: "";
  width: 1px;
  height: 64%;
  background: #b3b3b3;
  position: absolute;
  top: 16%;
  right: 0;
}

header nav .nav li:last-child::after {
  display: none;
}

header nav .nav li a {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 0.4rem 1.4rem;
  transition: 0.3s;
  border-radius: 6px;
  white-space: nowrap;
}

header nav .nav li a .icon img {
  display: block;
  height: 1.4rem;
}

header nav .nav li a:hover {
  background: #f6f5f1;
}

header nav .header-login a {
  display: inline-block;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: solid 1px #666;
  border-radius: 8px;
  padding: 0.4rem 1rem;
  transition: 0.3s;
}

header nav .header-login a:hover {
  background: #666;
  color: #fff;
}

header nav .header-language a {
  display: inline-block;
  border-radius: 8px;
  padding: 0.4rem 1rem;
  transition: 0.3s;
}

header nav .header-language a img {
  display: block;
  height: 2.4rem;
}

header nav .header-language a:hover {
  background: #f6f5f1;
}

header nav .header-search {
  display: none;
}

header .guide-logo {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 1rem;
}

/* ハンバーガーメニュー */
.hm_menu_check {
  /* チェックボックスを隠す */
  display: none;
}

.hm_wrap {
  /*position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 48px;*/
  box-sizing: border-box;
  z-index: 999;
  padding: 12px;
  background: #4d4d4d;
}

/* ▽▽メニューボタン▽▽ */
.hm_btn {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: block;
  /*float: right;*/
  z-index: 9999;
}

.hm_btn::before {
  box-shadow: #fff 0 12px 0;
}

.hm_btn::after {
  bottom: 0;
}

.hm_btn::before,
.hm_btn::after {
  width: 30px;
  height: 6px;
  background: #fff;
  display: block;
  content: "";
  position: absolute;
  transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}

/* △△メニューボタン△△ */
.hm_menu_wrap {
  display: none;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: absolute;
  right: -100%;
  top: 0;
  transition: right 0.4s;
  z-index: 998;
}

/* ▽▽開閉時のアニメーション▽▽ */
.hm_menu_check:checked~.hm_btn::before {
  box-shadow: transparent 0 0 0;
  transform: rotate(45deg) translate3d(6px, 11px, 0);
  background: #4b4b4b;
}

.hm_menu_check:checked~.hm_btn::after {
  transform: rotate(-45deg) translate3d(6px, -11px, 0);
  background: #4b4b4b;
}

.hm_menu_check:checked~.hm_menu_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transition: right 0.4s;
  z-index: 998;
}

/* △△開閉時のアニメーション△△ */
/* ▽▽メニュー内のリストスタイル▽▽ */
.hm_list {
  position: relative;
  width: 96%;
  max-width: 880px;
  height: 93vh;
  margin-top: 44px;
  overflow-y: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(23, 41, 67, 0.14);
}

.hm_list .hm_list-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  border-bottom: solid 1px #e3e9f2;
  padding: 0.9rem 4% 0.8rem;
}

.hm_list .hm_list-head p {
  margin: 0;
  color: #1f3552;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hm_list .hm_list-tools {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.hm_list .hm_list-tools a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  border: solid 1px #c9d5e6;
  background: #f2f6fb;
  color: #1f3552;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: 0.2s;
}

.hm_list .hm_list-tools a:hover {
  background: #e5eef9;
  border-color: #9bb3d4;
}

.hm_list ul {
  padding: 1.2rem 4% 4%;
}

.hm_list ul li {
  border-bottom: solid 1px #e2e7ef;
}

.hm_list ul li a {
  color: #1d2f48;
  text-decoration: none;
  display: block;
  padding: 0.85rem 1.8rem 0.85rem 0.5rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}

.hm_list ul li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #8ca2be;
  border-right: solid 2px #8ca2be;
  transform: rotate(45deg);
  position: absolute;
  right: 0.55rem;
  top: 50%;
  margin-top: -5px;
  transition: border-color 0.2s, right 0.2s;
}

.hm_list ul li a:hover {
  color: #113a67;
  background: #eef3fb;
}

.hm_list ul li a:hover::after {
  border-color: #4473ab;
  right: 0.4rem;
}

.hm_list ul li:first-child {
  border-top: solid 1px #e2e7ef;
}

.hm_wrap img {
  float: left;
  height: 28px;
  width: auto;
  margin: 4px auto auto;
}

.wrapper {
  padding-top: 40px;
  margin-top: -30px;
}

/* フッター */
footer .footer {
  /* background: #ac121b; */
  background: #2f5d8a;
  color: #fff;
  padding: 4rem 0;
}

footer .footer-nav {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  padding-bottom: 3rem;
  font-size: 0.9rem;
}

footer .footer-nav dt {
  border-bottom: solid 1px #fff;
}

footer .footer-nav dd {
  padding-top: 1rem;
}

footer .footer-nav dd ul li {
  padding-bottom: 0.3rem;
}

footer .footer-nav dd ul li a {
  color: #fff;
  text-decoration: none;
}

footer .footer-nav dd ul li a:hover {
  text-decoration: underline;
}

footer .footer-nav dd ul li.btn {
  padding-top: 1rem;
}

footer .footer-nav dd ul li.btn a {
  display: block;
  border: solid 1px #fff;
  padding: 0.2rem;
  transition: 0.3s;
  text-align: center;
}

footer .footer-nav dd ul li.btn a:hover {
  background: #fff;
  /* color: #ac121b; */
  color: #2f5d8a;
  text-decoration: none;
}

footer .footer-nav-info {
  width: 48%;
}

footer .footer-nav-info dd {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

footer .footer-nav-info dd ul {
  width: 48%;
}

footer .footer-nav-info dd ul ul {
  width: 100%;
  padding: 0.8rem 0 0 0.8rem;
}

footer .footer-nav-about {
  width: 22%;
}

footer .footer-nav-sns {
  width: 22%;
}

footer .footer-nav-sns a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

footer .footer-nav-sns img {
  width: 1.2rem;
  flex-shrink: 0;
  vertical-align: middle;
  transition: 0.3s;
}

footer .footer-nav-sns img:hover {
  opacity: 0.6;
}

footer .footer-logo {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}

footer .footer-adsense {
  width: 90%;
  max-width: 728px;
  margin: 2rem auto;
  text-align: center;
}

footer .footer-adsense .adsbygoogle {
  margin: 0 auto;
}

footer .footer .copyright {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

/* 検索ボタン */
.btn-search {
  width: 72px;
  height: 72px;
  position: fixed;
  top: 96px;
  right: 0;
}

.btn-search a {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  background: #4473ab;
  transition: 0.3s;
}

.btn-search a:hover {
  background: #265584;
}

.btn-search a img {
  width: 18px;
}

/* 検索モーダル */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal.is-open .modal-content {
  transform: translate(-50%, -50%);
}

.modal .modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(2px);
}

.modal .modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  max-width: 640px;
  max-height: min(82vh, 640px);
  overflow: auto;
  transform: translate(-50%, -46%);
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 14px;
  border: solid 1px #d7deea;
  box-shadow: 0 18px 50px rgba(10, 25, 48, 0.22);
  padding: 2.4rem 2.2rem 1.9rem;
  z-index: 1;
}

.modal .modal-inner.search h2 {
  margin: 0 0 1rem;
  color: #1f3552;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal .modal-inner.language h2 {
  margin: 0;
  color: #1f3552;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal .modal-inner.language .language-widget {
  margin-top: 1rem;
}

.modal .modal-inner.language .language-widget a[data-gt-lang] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 160px;
  min-height: 44px;
  margin: 0 0.45rem 0.45rem 0;
  padding: 0.62rem 0.9rem;
  border: solid 1px #b8c5d8;
  border-radius: 8px;
  background: #f8fbff;
  color: #1f3552;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: 0.2s;
}

.modal .modal-inner.language .language-widget a[data-gt-lang]:hover {
  border-color: #4473ab;
  background: #eef4fb;
}

.modal .modal-inner.language .language-widget a.gt-current-lang {
  display: none;
}

.modal .modal-inner.language .language-widget a[data-gt-lang] img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1);
}

.modal .btn_close {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #d4dbe8;
  background: #fff;
  font-size: 1.9rem;
  line-height: 1;
  color: #4a5f7b;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.modal .btn_close:hover {
  background: #eef3fb;
  border-color: #4473ab;
  color: #244a77;
}

.modal .searchform,
.modal .search-form {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.modal .searchform label,
.modal .search-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal .searchform input[type=text],
.modal .search-form input[type=text] {
  width: auto;
  flex: 1 1 auto;
  border: solid 1px #b8c5d8;
  background: #f8fbff;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.modal .searchform input[type=text]:focus,
.modal .search-form input[type=text]:focus {
  border-color: #4473ab;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(68, 115, 171, 0.18);
}

.modal .searchform input[type=submit],
.modal .search-form input[type=submit] {
  border: none;
  background: #4473ab;
  color: #fff;
  padding: 0 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  min-height: 50px;
  transition: background 0.2s;
}

.modal .searchform input[type=submit]:hover,
.modal .search-form input[type=submit]:hover {
  background: #265584;
}

/* トップページ */
.top .slick-slider .col {
  padding: 0.2%;
}

.top .slick-slider .col a {
  display: block;
  transition: 0.3s;
}

.top .slick-slider .col a:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.8);
}

.top .slick-slider .col>span {
  display: block;
}

.top-news {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  gap: 6%;
}

.top-news--title {
  width: 16%;
}

.top-news--title h2 {
  font-size: 3rem;
  font-weight: 700;
}

.top-news--title h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.top-news--list {
  width: 78%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem 3%;
}

.top-news--list .col {
  width: 48.5%;
  display: flex;
}

.top-news--list .col a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.top-news--list .col a:hover {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.6);
}

.top-news--list .col a .date {
  font-size: 0.9rem;
}

.top-news--list .col a .top-news--meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.top-news--list .col a .top-news--meta .date {
  margin-bottom: 0;
}

.top-news--list .col a span.info {
  display: inline-block;
  margin-left: 0;
  background: #b2a1a1;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.6rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.info::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.topics {
  display: inline-block;
  margin-left: 0;
  background: #b9852a;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.6rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.topics::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.area {
  display: inline-block;
  margin-left: 0;
  background: #4aa6b5;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.6rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.area::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.member {
  display: inline-block;
  margin-left: 0;
  background: #7db27f;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.6rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.member::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-member.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.event {
  display: inline-block;
  margin-left: 0;
  background: #e58a8a;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.6rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.event::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-event.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.business {
  display: inline-block;
  margin-left: 0;
  background: #97b4cb;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.3rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.business::before {
  content: "";
  height: 0.8rem;
  width: 1rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-business.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.press {
  display: inline-block;
  margin-left: 0;
  background: #d49073;
  font-size: 0.7rem;
  line-height: 1.1rem;
  padding: 0 0.6rem 0 1.3rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.top-news--list .col a span.press::before {
  content: "";
  height: 0.8rem;
  width: 1rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-press.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.top-news--list .col a span.new {
  display: inline-block;
  margin-left: 0;
  background: #2f5d8a;
  font-size: 0.7rem;
  line-height: 1.2rem;
  padding: 0 0.6rem;
  color: #fff;
}

.top-news--list .col a p {
  margin-top: 0.5rem;
  flex: 1 1 auto;
}

.top-news--btn {
  padding-top: 3rem;
}

.top-news--btn a {
  display: block;
  width: 80%;
  max-width: 320px;
  border: solid 1px #000;
  padding: 0.3rem 1rem;
  border-radius: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  font-size: 0.9rem;
}

.top-news--btn a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -14%;
  transition: 0.3s;
}

.top-news--btn a:hover {
  color: #000;
  background: #f6f5f1;
}

.top-news--btn a:hover::after {
  right: -20%;
}

.top h1 {
  padding-top: 4rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
}

.top h1 span {
  color: #ac121b;
}

.top-spot {
  padding: 6rem 0 4rem;
}

.top-spot h2 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}

.top-spot h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.top-spot .tab-container {
  padding-top: 3rem;
}

.top-spot .tab-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 4%;
  width: 92%;
  max-width: 480px;
  margin: 0 auto;
}

.top-spot .tab-container ul li {
  width: 22%;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.top-spot .tab-container ul li.cat01::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  background-image: url(../img/cat01-off.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 100%;
}

.top-spot .tab-container ul li.cat01:hover::after {
  background-image: url(../img/cat01-on.svg);
}

.top-spot .tab-container ul li.cat01.selected::after {
  background-image: url(../img/cat01-on.svg);
}

.top-spot .tab-container ul li.cat02::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  background-image: url(../img/cat02-off.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 100%;
}

.top-spot .tab-container ul li.cat02:hover::after {
  background-image: url(../img/cat02-on.svg);
}

.top-spot .tab-container ul li.cat02.selected::after {
  background-image: url(../img/cat02-on.svg);
}

.top-spot .tab-container ul li.cat03::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  background-image: url(../img/cat03-off.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 100%;
}

.top-spot .tab-container ul li.cat03:hover::after {
  background-image: url(../img/cat03-on.svg);
}

.top-spot .tab-container ul li.cat03.selected::after {
  background-image: url(../img/cat03-on.svg);
}

.top-spot .tab-container ul li.cat04::after {
  content: "";
  width: 100%;
  padding-top: 100%;
  background-image: url(../img/cat04-off.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 100%;
}

.top-spot .tab-container ul li.cat04:hover::after {
  background-image: url(../img/cat04-on.svg);
}

.top-spot .tab-container ul li.cat04.selected::after {
  background-image: url(../img/cat04-on.svg);
}

.top-spot {
  /* コンテンツを非表示。 */
}

.top-spot .tab-content {
  margin-top: 140px;
  display: none;
}

.top-spot .tab-content.selected {
  display: block;
  min-height: 200px;
  background: #ac121b;
  padding: 2rem 3%;
  position: relative;
}

.top-spot .tab-content.selected::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 480px;
  height: 32px;
  background-size: auto 32px;
  background-repeat: no-repeat;
  background-image: url(../img/spot-arrow.svg);
}

.top-spot .tab-content.top-spot01.selected::before {
  background-position: 8% bottom;
}

.top-spot .tab-content.top-spot02.selected::before {
  background-position: 36% bottom;
}

.top-spot .tab-content.top-spot03.selected::before {
  background-position: 64% bottom;
}

.top-spot .tab-content.top-spot04.selected::before {
  background-position: 92% bottom;
}

.top-spot--list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.top-spot--list .col {
  width: 23.5%;
}

.top-spot--list .col a {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
  transition: 0.3s;
}

.top-spot--list .col a:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.6);
}

.top-spot--list .col a .img {
  position: absolute;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
  /* 正方形 */
  overflow: hidden;
}

.top-spot--list .col a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.top-spot--list .col a span {
  display: inline-block;
  position: absolute;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #fff;
}

.top-spot--list .col a span::after {
  content: "　>";
}

.top-spot--btn {
  background: #ac121b;
  padding-top: 2rem;
}

.top-spot--btn a {
  display: block;
  width: 64%;
  max-width: 240px;
  margin: 0 auto;
  border: solid 1px #fff;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.top-spot--btn a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow_white.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -20%;
  transition: 0.3s;
}

.top-spot--btn a:hover {
  background: rgba(0, 0, 0, 0.2);
}

.top-spot--btn a:hover::after {
  right: -26%;
}

.top-event {
  padding: 4rem 0;
}

.top-event h2 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}

.top-event h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.top-event--inner {
  width: 92%;
  margin: 0 auto;
  padding-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.top-event--inner .event-calendarbox {
  width: 48%;
  padding: 2%;
  border: solid 1px #ccc;
}

.top-event--inner .event-list {
  width: 48%;
}

.top-event--inner .event-list h3 {
  font-weight: 500;
  font-size: 1.2rem;
}

.top-event--inner .event-list--cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2%;
  padding-top: 1rem;
}

.top-event--inner .event-list--cols .col {
  width: 32%;
  border: solid 1px #ccc;
}

.top-event--inner .event-list--cols .col a {
  display: block;
  padding-bottom: 1rem;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.top-event--inner .event-list--cols .col a:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.top-event--inner .event-list--cols .col a .img {
  width: 100%;
  padding-top: 80%;
  position: relative;
}

.top-event--inner .event-list--cols .col a .img img {
  position: absolute;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-event--inner .event-list--cols .col a h3 {
  padding: 0.6rem 4% 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.top-event--inner .event-list--cols .col a p {
  padding: 0.6rem 4% 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  align-items: flex-start;
  line-height: 1.4;
}

.top-event--inner .event-list--cols .col a p span {
  width: calc(100% - 1.6rem);
}

.top-event--inner .event-list--cols .col a p span.icon {
  display: block;
  width: 1rem;
  margin-top: 0.1rem;
}

.top-event--btn {
  padding-top: 3rem;
}

.top-event--btn a {
  display: block;
  width: 64%;
  max-width: 240px;
  margin: 0 auto;
  border: solid 1px #000;
  padding: 0.4rem 1rem;
  border-radius: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.top-event--btn a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -14%;
  transition: 0.3s;
}

.top-event--btn a:hover {
  color: #000;
  background: #f6f5f1;
}

.top-event--btn a:hover::after {
  right: -20%;
}

.top-area {
  padding: 4rem 0;
  background: #f6f5f1;
}

.top-area h2 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}

.top-area h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.top-area--text {
  padding-top: 2rem;
  text-align: center;
}

.top-area .area-container {
  padding-top: 3rem;
}

.top-area .area-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1%;
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}

.top-area .area-container ul li {
  width: 19.2%;
  cursor: pointer;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 600;
  background: #b3b3b3;
  color: #fff;
  padding: 0.4rem 0;
  border-radius: 1.6rem;
  transition: 0.3s;
}

.top-area .area-container ul li.area01:hover,
.top-area .area-container ul li.area01.select {
  background: #f4e0ba;
}

.top-area .area-container ul li.area02:hover,
.top-area .area-container ul li.area02.select {
  background: #c7dcad;
}

.top-area .area-container ul li.area03:hover,
.top-area .area-container ul li.area03.select {
  background: #e6b99d;
}

.top-area .area-container ul li.area04:hover,
.top-area .area-container ul li.area04.select {
  background: #76bbd5;
}

.top-area .area-container ul li.area05:hover,
.top-area .area-container ul li.area05.select {
  background: #b9b9db;
}

.top-area {
  /* コンテンツを非表示。 */
}

.top-area .area-content {
  display: none;
  min-height: 200px;
}

.top-area .area-content.select {
  display: block;
  min-height: 200px;
  padding: 4rem 0 0;
  position: relative;
}

.top-area--map {
  width: 92%;
  max-width: 720px;
  margin: 0 auto;
}

.top-area--images {
  padding-top: 2rem;
  display: flex;
  gap: 0.3rem;
}

.top-area--images .left {
  width: calc(100% - 0.15rem);
  position: relative;
}

.top-area--images .left .text {
  position: absolute;
  top: 2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  max-width: 96%;
}

.top-area--images .left .text .area-number {
  font-size: 2rem;
  font-weight: 700;
}

.top-area--images .left .text .area-name {
  font-size: 3rem;
  font-weight: 700;
}

.top-area--images .left .text .area-name.inage {
  font-size: 2.4rem;
  line-height: 1;
}

.top-area--images .left .text dl dt {
  font-size: 1.2rem;
  font-weight: 700;
}

.top-area--images .left .text dl dd {
  font-size: 0.9rem;
  line-height: 1.4;
}

.top-area--images .right {
  width: calc(100% - 0.15rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.3rem;
  align-content: space-between;
}

.top-area--images .right .col {
  width: calc(50% - 0.2rem);
}

.top-area--link {
  padding-top: 1.4rem;
  text-align: center;
}

.top-area--link a {
  display: inline-block;
  min-width: 280px;
  border: solid 1px #000;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.52rem 1.25rem;
  transition: 0.3s;
}

.top-area--link a:hover {
  background: #f6f5f1;
}

.top-discovery {
  display: flex;
  gap: 2%;
  padding: 4rem 0;
}

.top-discovery .col01 {
  display: flex;
  gap: 6%;
  flex-wrap: wrap;
  width: 40%;
}

.top-discovery .col01 .image {
  width: 64%;
}

.top-discovery .col01 .title {
  width: 30%;
}

.top-discovery .col01 .title h2 {
  width: 100%;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 2vw;
  font-size: 1.8vw;
  line-height: 1.4;
  font-family: "noto-serif", serif;
}

.top-discovery .col01 .title h2 span {
  font-size: 1.2vw;
}

.top-discovery .col02 {
  width: 54%;
  padding-right: 2%;
}

.top-discovery .col02 .feature {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2%;
}

.top-discovery .col02 .feature .col {
  width: 32%;
}

.top-discovery .col02 .feature .col a {
  display: block;
  transition: 0.3s;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.top-discovery .col02 .feature .col a:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.top-discovery .col02 .feature .col a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-discovery .col02 .feature-btn {
  padding-top: 2rem;
}

.top-discovery .col02 .feature-btn a {
  display: block;
  width: 64%;
  max-width: 240px;
  border: solid 1px #000;
  padding: 0.4rem 1rem;
  border-radius: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.top-discovery .col02 .feature-btn a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -14%;
  transition: 0.3s;
}

.top-discovery .col02 .feature-btn a:hover {
  color: #000;
  background: #f6f5f1;
}

.top-discovery .col02 .feature-btn a:hover::after {
  right: -20%;
}

.top-oyakudachi {
  background: #f6f5f1;
  padding: 4rem 0;
}

.top-oyakudachi h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.top-oyakudachi--btn {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
  display: flex;
  gap: 4%;
}

.top-oyakudachi--btn .col {
  width: 16.8%;
}

.top-oyakudachi--btn .col a {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  color: #000;
  font-weight: 600;
}

.top-oyakudachi--btn .col a:hover {
  border-radius: 0;
}

.top-oyakudachi--btn .col a .btn {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.top-oyakudachi--btn .col a .btn .icon {
  height: 3.6rem;
  width: auto;
  display: flex;
  align-items: center;
}

.top-oyakudachi--btn .col a .btn .icon img {
  height: 3.6rem;
  width: auto;
}

.top-ranking {
  padding: 7rem 0;
}

.top-ranking--inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 4%;
  align-items: center;
}

.top-ranking--inner .col-left {
  width: 20%;
}

.top-ranking--inner .col-left h2 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}

.top-ranking--inner .col-left h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 0.6rem;
}

.top-ranking--inner .col-left p {
  padding-top: 1rem;
}

.top-ranking--inner .col-right {
  width: 76%;
  margin-top: -8rem;
}

.top-ranking--inner .col-right ul {
  display: flex;
  gap: 2%;
}

.top-ranking--inner .col-right ul li {
  width: 18.4%;
  position: relative;
  transition: 0.3s;
}

.top-ranking--inner .col-right ul li a {
  text-decoration: none;
  color: #000;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 80px;
  box-sizing: border-box;
  border-radius: 6px;
}

.top-ranking--inner .col-right ul li a .rank-card-body {
  display: block;
  transition: transform 0.3s ease;
}

.top-ranking--inner .col-right ul li a:hover .rank-card-body {
  transform: translateY(-8px);
}

.top-ranking--inner .col-right ul li a .rank-flag {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  background-image: url(../img/flag01.svg);
}

.top-ranking--inner .col-right ul li a .image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  min-height: 140px;
  overflow: hidden;
  background-image: url(../img/no-image.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-ranking--inner .col-right ul li a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.top-ranking--inner .col-right ul li a .image::before {
  content: none;
}

.top-ranking--inner .col-right ul li a p {
  padding-top: 0.2rem;
  font-size: 0.9rem;
  min-height: 2.8em;
}

.top-ranking--inner .col-right ul li:nth-child(2) {
  margin-top: 2rem;
  margin-bottom: -2rem;
}

.top-ranking--inner .col-right ul li:nth-child(2) .image::before {
  background-image: url(../img/flag02.svg);
}

.top-ranking--inner .col-right ul li:nth-child(2) .rank-flag {
  background-image: url(../img/flag02.svg);
}

.top-ranking--inner .col-right ul li:nth-child(3) {
  margin-top: 4rem;
  margin-bottom: -4rem;
}

.top-ranking--inner .col-right ul li:nth-child(3) .image::before {
  background-image: url(../img/flag03.svg);
}

.top-ranking--inner .col-right ul li:nth-child(3) .rank-flag {
  background-image: url(../img/flag03.svg);
}

.top-ranking--inner .col-right ul li:nth-child(4) {
  margin-top: 6rem;
  margin-bottom: -6rem;
}

.top-ranking--inner .col-right ul li:nth-child(4) .image::before {
  background-image: url(../img/flag04.svg);
}

.top-ranking--inner .col-right ul li:nth-child(4) .rank-flag {
  background-image: url(../img/flag04.svg);
}

.top-ranking--inner .col-right ul li:nth-child(5) {
  margin-top: 8rem;
  margin-bottom: -8rem;
}

.top-ranking--inner .col-right ul li:nth-child(5) .image::before {
  background-image: url(../img/flag05.svg);
}

.top-ranking--inner .col-right ul li:nth-child(5) .rank-flag {
  background-image: url(../img/flag05.svg);
}

.top-ranking--inner---btn {
  padding-top: 1rem;
}

.top-ranking--inner---btn a {
  display: block;
  width: 64%;
  border: solid 1px #000;
  padding: 0.4rem 1rem;
  border-radius: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.top-ranking--inner---btn a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -14%;
  transition: 0.3s;
}

.top-ranking--inner---btn a:hover {
  color: #000;
  background: #f6f5f1;
}

.top-ranking--inner---btn a:hover::after {
  right: -20%;
}

.top-sns {
  padding: 4rem 0;
  background: #22b573;
  background: linear-gradient(90deg, rgb(34, 181, 115) 0%, rgb(34, 181, 115) 50%, rgb(105, 171, 196) 50%);
}

.top-sns h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.top-sns h2 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.top-sns--inner {
  width: 92%;
  /*max-width: 1280px;*/
  margin: 0 auto;
  display: flex;
  gap: 6%;
  justify-content: center;
  padding-top: 2rem;
}

.top-sns--inner .col {
  width: 47%;
}

.top-sns--inner .col h3 {
  text-align: center;
  color: #fff;
}

.top-sns--inner .col .images {
  padding-top: 1rem;
}

.top-about-section {
  padding: 0;
  background: linear-gradient(180deg, #d7e9ff 0%, #e7f2ff 50%, #f5faff 100%);
  border: none;
}

.top-about-section::before {
  display: none;
}

.top-about {
  padding: 5.6rem 4%;
}

.top-about p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.top-about p span {
  display: inline-block;
}

.top-about--btn {
  display: flex;
  justify-content: center;
  gap: 4%;
  flex-wrap: wrap;
  padding-top: 2.4rem;
}

.top-about--btn .col {
  width: 48%;
  max-width: 300px;
}

.top-about--btn .col:first-child {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.1rem;
}

.top-about--btn .col:first-child a {
  max-width: 360px;
}

.top-about--btn .col a {
  display: block;
  width: 100%;
  border: solid 1px #000;
  background: #fff;
  text-align: center;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.top-about--btn .col a::after {
  content: "";
  width: 32%;
  height: 1rem;
  background: url(../img/btn_arrow.svg);
  background-size: contain;
  background-position: right 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -14%;
  transition: 0.3s;
}

.top-about--btn .col a:hover {
  color: #000;
  background: #f6f5f1;
}

.top-about--btn .col a:hover::after {
  right: -20%;
}

.top-about--btn .col:first-child a {
  border-color: #2f5d8a;
  background: #2f5d8a;
  color: #fff;
  font-weight: 700;
}

.top-about--btn .col:first-child a::after {
  display: none;
}

.top-about--btn .col:first-child a:hover {
  background: #244a6e;
  border-color: #244a6e;
  color: #fff;
}

.top-bnbox {
  background: #f6f5f1;
  padding: 4rem 4%;
}

.top-bnbox--inner {
  display: flex;
  gap: 2%;
  justify-content: center;
  align-items: center;
}

.top-bnbox--inner .col {
  width: 15%;
}

.top-bnbox--inner .col a {
  transition: 0.3s;
  position: relative;
  display: block;
}

.top-bnbox--inner .col a:hover {
  margin-top: -1rem;
}

/* 下層のページ */
.cover {
  width: 96%;
  margin: 0 auto;
  padding-top: 2rem;
}

.cover img {
  border-radius: 12px;
}

/* パンくず */
.page-nav {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.page-nav li {
  display: flex;
  align-items: center;
  min-width: 0;
}

.page-nav li a {
  text-decoration: none;
}

.page-nav li a:hover {
  text-decoration: underline;
}

.page-nav li::after {
  content: ">";
  margin-left: 0.75rem;
  color: #8a94a3;
}

.page-nav li:last-child::after {
  content: none;
}

.page-nav li:last-child {
  flex: 1 1 14rem;
  overflow: visible;
  white-space: normal;
  line-height: 1.45;
  overflow-wrap: anywhere;
  min-width: 0;
}

.content {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.content h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.content h1 span {
  display: block;
  font-size: 0.9rem;
  padding-top: 0.6rem;
}

.content h2 {
  padding-top: 4rem;
  padding-bottom: 0.6rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
}

.content h2::after {
  content: "";
  width: 20%;
  height: 1px;
  background: #ac121b;
  position: absolute;
  bottom: -1px;
  left: 40%;
}

.content h2.spot-heading {
  font-size: 1.4rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* 検索結果の表示 */
.search-result {
  margin-top: 1rem;
  background: #e6e6e6;
  border-radius: 4px;
  padding: 0.6rem 1.4rem;
  display: flex;
  justify-content: space-between;
}

.search-result .count {
  font-size: 0.96rem;
}

.search-result .count span {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 0.2rem;
}

.search-result .btn {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.search-result .btn .spot-sort {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-result .btn .spot-sort-btn {
  padding: 0.2rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 6rem;
}

.search-result .btn .spot-sort-btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.search-result .btn .spot-sort-btn.is-active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.search-item {
  display: flex;
  align-items: center;
  font-size: 0.96rem;
  border-bottom: dotted 1px #999;
}

.search-item dt {
  padding: 0.8rem;
  width: 9rem;
}

.search-item dd {
  width: calc(100% - 9rem);
  padding: 0.8rem;
  border-left: dotted 1px #999;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.search-item dd span {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0 0.4rem;
  background: #c7b299;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

/* スポット */
.spot-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  width: 92%;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 3rem;
}

.spot-nav .col {
  width: 22%;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.spot-nav .col:hover {
  opacity: 0.6;
}

.spot-nav .col.is-active:hover {
  opacity: 1;
}

.spot-nav .col img.is-active {
  display: none;
}

.spot-nav .col.is-active img.is-default {
  display: none;
}

.spot-nav .col.is-active img.is-active {
  display: block;
}

.spot-nav .col a {
  text-decoration: none;
  transition: 0.3s;
  color: #000;
}

.spot-nav .col a:hover {
  opacity: 0.6;
}

.spot-list {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3%;
  opacity: 1;
  transition: opacity 0.3s;
}

.spot-list.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.spot-list.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.spot-list .col {
  width: 31.3333333333%;
}

.spot-list .col a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.spot-list .col a:hover {
  opacity: 0.6;
}

.spot-list .col a .img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.spot-list .col a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.spot-list .col a .img span.badge-coupon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e60023;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}

.spot-list .col a span {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: 1.2rem;
}

.spot-list .col a span.area-umibe {
  background: #76bbd5;
}

.spot-list .col a span.category-parent {
  background: #4d7ec9;
}

.spot-list .col a .event-date-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding-top: 0.4rem;
}

.spot-list .col a .event-date-wrap span.icon {
  width: 0.8rem;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
}

.spot-list .col a .event-date-wrap span.icon img {
  width: 100%;
}

.spot-list .col a .event-date-wrap p.event-date {
  font-size: 0.8rem;
  line-height: 1.2;
}

.spot-list--name {
  font-weight: 700;
  font-size: 1.2rem;
}

.spot-list--sub {
  padding-top: 0.6rem;
  font-weight: 700;
}

.spot-list--access {
  padding-top: 0.4rem;
  font-size: 0.83rem;
  line-height: 1.55;
  color: #36506f;
}
.spot-list--access span {
  display: inline-block;
  margin: 0 0.45rem 0 0;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #36506f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: baseline;
}

.spot-list--text {
  padding-top: 0.4rem;
}

.stay-filter {
  margin-top: 0.9rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.stay-filter-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
}

.stay-filter-head h2 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  color: #5f7288;
  padding: 0;
  border: none;
}

.stay-filter-head h2::after {
  display: none;
}

.stay-filter .spot-filter-group {
  width: 100%;
  margin-top: 0.45rem;
}

.stay-filter .spot-filter-options {
  position: static;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.stay-filter .spot-filter-options li {
  width: 100%;
  list-style: none;
}

.stay-filter .spot-filter-options li.area-parent {
  width: 100%;
  margin-bottom: 0;
}

.stay-filter .spot-filter-options button {
  width: 100%;
  padding: 0.36rem 0.72rem;
  border: solid 1px #cad7e6;
  border-radius: 999px;
  background: #fff;
  color: #24415f;
  transition: 0.3s;
  font-size: 0.82rem;
  line-height: 1.2;
}

.stay-filter .spot-filter-options button:hover,
.stay-filter .spot-filter-options button.is-selected {
  background: #24415f;
  border-color: #24415f;
  color: #fff;
}

.stay-filter .area-parent-btn {
  font-weight: 700;
}

.stay-filter .area-children {
  display: contents;
  padding-left: 0;
  margin-top: 0;
}

.stay-filter .stay-filter-clear-btn {
  padding: 0.28rem 0.68rem;
  border: solid 1px #cad7e6;
  border-radius: 999px;
  background: #fff;
  color: #24415f;
  font-size: 0.76rem;
  cursor: pointer;
  line-height: 1.2;
}

.stay-filter .stay-filter-clear-btn:hover {
  background: #24415f;
  border-color: #24415f;
  color: #fff;
}

.spot-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  align-items: center;
  padding-top: 2rem;
  position: relative;
}

.spot-filter-group {
  width: 24.25%;
  margin-top: 0.6rem;
}

.spot-filter-group.is-open .spot-filter-trigger {
  background: #c00;
  color: #fff;
}

.spot-filter-trigger {
  padding: 10px 16px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: 0.3s;
}

.spot-filter-trigger::after {
  content: ">";
  position: absolute;
  right: 0.6rem;
  top: 0.8rem;
}

.spot-filter-trigger:hover {
  background: #c00;
  color: #fff;
}

.spot-filter-options {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.2rem;
  z-index: 99;
  width: 90vw;
  max-width: 1280px;
  max-height: 70vh;
  overflow-y: auto;
}

.spot-filter-options button {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0.56rem 0.7rem;
  background: #f8fbff;
  border: solid 1px #d7e0ec;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  color: #1f3552;
  font-size: 0.9rem;
  line-height: 1.25;
}

.spot-filter-options button:hover {
  background: #eaf1fb;
  border-color: #9fb5d2;
}

.spot-filter-options button.is-selected {
  background: #ac121b;
  color: #fff;
  border-color: #ac121b;
}

.spot-filter-group.is-open .spot-filter-options {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);*/
  display: flex;
  flex-wrap: wrap;
  gap: 6px 1%;
}

.spot-filter-group.is-open .spot-filter-options li {
  width: 24.25%;
}

.spot-filter-group.is-open .spot-filter-options li.area-parent {
  width: 100%;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
}

.spot-filter-group.is-open .spot-filter-options li.area-parent button.area-parent-btn {
  width: 100%;
}

.spot-filter-group.is-open .spot-filter-options li.area-parent .area-children {
  width: 100%;
  padding-left: 0;
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 1%;
}

.spot-filter-group.is-open .spot-filter-options li.area-parent:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.spot-filter-keyword {
  width: 24.25%;
  margin-top: 0.6rem;
}

.spot-filter-keyword input {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #999;
  font-size: 0.8rem;
  width: 100%;
}

.spot-filter-clear {
  width: 100%;
  text-align: right;
}

.spot-filter-clear-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.spot .genre-item {
  /* 孫なし子ジャンル：4列 */
}

.spot .genre-item.is-child-only {
  width: 25%;
}

.spot .genre-item {
  /* 孫あり子ジャンル */
}

.spot .genre-item.has-grandchild {
  width: 100% !important;
  margin-bottom: 0.9rem;
  padding: 0.7rem 0 0.8rem;
}

.spot .genre-item.has-grandchild .genre-parent {
  width: 100%;
  max-width: none;
}

.spot .genre-item.has-grandchild .genre-parent .genre-btn {
  width: 100%;
}

.spot .genre-item.has-grandchild .spot-sub-genre {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-left: 0;
  margin-top: 0.45rem;
}

.spot .genre-item.has-grandchild:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.spot .genre-item.has-grandchild .spot-sub-genre li {
  width: 100%;
}

.spot .genre-item.has-grandchild .spot-sub-genre li button {
  width: 100%;
}

.spot-pagination {
  margin: 40px 0 0;
  text-align: center;
}

.spot-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  background: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.spot-pagination a:hover {
  background: #f2f2f2;
}

.spot-pagination a.is-active {
  background: #e60012;
  /* 千葉市観光ガイドの赤想定 */
  color: #fff;
  border-color: #e60012;
  pointer-events: none;
}

.spot-pagination a.prev,
.spot-pagination a.next {
  font-weight: bold;
}

.spot-pagination-inner {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.content.spot .related-spots .related-spot-list .col {
  width: 22.75%;
}

.event-detail-content .related-events .spot-list .col {
  width: 22.75%;
}

/* カレンダー（トップ、イベントページ共通） */
/* =========================
   カレンダー全体
========================= */
#event-calendar {
  margin: 20px 0 40px;
}

/* =========================
   月タイトル
========================= */
.calendar-month-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

/* =========================
   テーブル
========================= */
.event-calendar {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

/* 曜日ヘッダー */
.event-calendar th {
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
  color: #555;
}

/* 日曜日 */
.event-calendar th:first-child {
  color: #e60033;
}

/* 土曜日 */
.event-calendar th:last-child {
  color: #0073e6;
}

/* 日付セル */
.event-calendar td {
  height: 80px;
  vertical-align: top;
  padding: 6px 4px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  position: relative;
  background: #fff;
}

/* 最右列の右線消す */
.event-calendar td:nth-child(7) {
  border-right: none;
}

/* =========================
   日付数字
========================= */
.event-calendar .day {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* =========================
   イベント件数リンク
========================= */
.event-date-link {
  display: inline-block;
  font-size: 12px;
  color: #0073e6;
  text-decoration: none;
  margin-top: 2px;
}

.event-date-link:hover {
  text-decoration: underline;
}

/* =========================
   今日
========================= */
.event-calendar td.today {
  background: #f0f8ff;
}

/* =========================
   祝日
========================= */
.event-calendar td.holiday .day {
  color: #e60033;
  font-weight: 700;
}

/* =========================
   月送りナビ
========================= */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-title {
  font-size: 18px;
  font-weight: 700;
}

button.calendar-prev,
button.calendar-next {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  width: 6rem;
  text-align: center;
}

button.calendar-prev:hover,
button.calendar-next:hover {
  background: #005bb5;
}

/* 日曜日（1列目） */
.event-calendar td:nth-child(1) .day {
  color: #e60023;
}

/* 土曜日（7列目） */
.event-calendar td:nth-child(7) .day {
  color: #0066cc;
}

/* 選択不可（日付グレー） */
.event-calendar td.disabled {
  background: #f5f5f5;
}

/* 日付数字も薄く */
.event-calendar td.disabled .day {
  color: #bbb;
}

/* 件数リンクも無効風 */
.event-calendar td.disabled .event-date-link {
  color: #bbb;
  pointer-events: none;
  text-decoration: none;
}

/* タップ時の反応 */
.event-calendar td:not(.disabled):active {
  background: #e0efff;
  transform: scale(0.97);
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {
  .event-calendar td {
    height: 60px;
    padding: 4px 2px;
  }

  .event-calendar .day {
    font-size: 12px;
  }

  .event-date-link {
    font-size: 11px;
  }

  .calendar-title {
    font-size: 16px;
  }
}

/* =========================
   有効日ホバー（PCのみ）
========================= */
@media (hover: hover) and (pointer: fine) {

  /* クリック可能セルだけ */
  .event-calendar td:not(.disabled):hover {
    background: #eaf4ff;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  /* 日付数字を少し強調 */
  .event-calendar td:not(.disabled):hover .day {
    color: #0073e6;
  }

  /* 件数リンクも強調 */
  .event-calendar td:not(.disabled):hover .event-date-link {
    text-decoration: underline;
  }
}

/* ------ イベント詳細ページ ------ */
/* スライド間隔 */
.event-slider .slick-slide {
  margin: 0 0.25%;
}

.event-slider .slick-list {
  margin: 0 0.25%;
}

/* 画像を4:3に統一 */
.event-slider .img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* ← 4:3 */
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 42%), linear-gradient(135deg, #edf4fb 0%, #dfe9f6 100%);
}

.event-slider .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: center;
  /* 縦長画像でも全体が見えるように収める */
  display: block;
}

.event-slider .event-slider-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.event-slider .event-slider-zoom {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 53, 82, 0.82);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  pointer-events: none;
}

.event-image-modal .modal-content {
  max-width: min(1080px, 92vw);
  max-height: 92vh;
  padding: 1.25rem 1.25rem 0.9rem;
  background: linear-gradient(135deg, #f8fbff 0%, #ecf3fb 100%);
}

.event-image-modal-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(70vh, 760px);
  margin: 0;
  padding: 1rem;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 42%), linear-gradient(135deg, #edf4fb 0%, #dfe9f6 100%);
}

.event-image-modal-image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 9rem);
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.event-table {
  padding: 3rem 0;
}

.event-table table {
  width: 100%;
  border-top: solid 1px #999;
}

.event-table table th {
  border-bottom: solid 1px #999;
  vertical-align: top;
  padding: 0.8rem;
  width: 16%;
}

.event-table table td {
  border-bottom: solid 1px #999;
  padding: 0.8rem;
}

.event-main-text {
  line-height: 1.9;
}

.event-main-text > * {
  margin-top: 0;
}

.event-main-text > * + * {
  margin-top: 1.15em;
}

.event-gmap {
  padding: 3rem 0;
}

.event-gmap iframe {
  width: 100%;
  height: 400px;
}

/* ------ スポット詳細ページ ------ */
.spot-content {
  padding-top: 1rem;
}

.spot-content>section:first-of-type {
  margin-bottom: 0.7rem;
}

.spot-content h3 {
  font-size: 1.6rem;
  font-weight: 500;
}

.spot-content p {
  padding-top: 1rem;
}

.spot-content .spot-slider {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.spot-content .spot-slider .spot-slide-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.spot-content .spot-slider .spot-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.spot-content .spot-slider .spot-slide-text {
  padding-top: 1rem;
}

.spot-content .spot-slider .spot-slide-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

.spot-content .spot-slider .spot-slide-text p {
  text-align: left;
  padding-top: 0;
}

.spot-content .spot-info-table {
  padding-top: 3rem;
}

.spot-content .spot-info-table table {
  border-top: solid 1px #999;
  width: 100%;
}

.spot-content .spot-info-table table th {
  vertical-align: top;
  border-bottom: solid 1px #999;
  padding: 0.8rem;
}

.spot-content .spot-info-table table td {
  border-bottom: solid 1px #999;
  padding: 0.8rem;
}

.spot-content .spot-coupon {
  margin-top: 3rem;
  padding: 2rem;
  background: #f2f2f2;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.spot-content .spot-coupon img {
  width: 12rem;
}

.spot-content .spot-gmap {
  padding-top: 3rem;
}

.spot-content .spot-gmap iframe {
  width: 100%;
  height: 400px;
}

/* 会員ページ */
/* =========================
   会員ログインページ
========================= */
.member-login-wrap {
  max-width: 420px;
  margin: 80px auto;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* タイトル */
h1.member-login-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

/* エラーメッセージ */
.login-error {
  background: #ffecec;
  color: #d8000c;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* フォーム全体 */
.member-login-wrap form p {
  margin-bottom: 16px;
}

/* ラベル */
.member-login-wrap label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}

/* 入力欄 */
.member-login-wrap input[type=text],
.member-login-wrap input[type=password] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: 0.2s;
}

.member-login-wrap input:focus {
  border-color: #2b7cff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 124, 255, 0.15);
}

/* ログイン状態保持 */
.member-login-wrap .login-remember {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.member-login-wrap .login-remember input {
  margin-right: 6px;
}

/* ログインボタン */
.member-login-wrap input[type=submit] {
  width: 100%;
  background: #2b7cff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.member-login-wrap input[type=submit]:hover {
  background: #1f63d6;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(43, 124, 255, 0.25);
}

/* スマホ */
@media (max-width: 480px) {
  .member-login-wrap {
    margin: 40px 16px;
    padding: 28px 20px;
  }
}

/* 会員へのお知らせ */
.member h1 {
  font-size: 1.6rem;
}

/* サイト内検索結果 */
.search-page h1 {
  font-size: 2.2rem;
}

.search-page-head {
  margin: 2rem auto 0;
  width: 96%;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: #f4f7fb;
  border: solid 1px #dbe3ef;
  border-radius: 8px;
}

.search-page-count {
  font-size: 1rem;
}

.search-page-count span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #244a77;
  margin-left: 0.2rem;
}

.search-page-form {
  width: min(100%, 440px);
}

.search-page-form .searchform,
.search-page-form .search-form {
  display: flex;
  gap: 0.6rem;
}

.search-page-form input[type=text] {
  flex: 1 1 auto;
  border: solid 1px #bcc9dd;
  border-radius: 6px;
  background: #fff;
  padding: 0.7rem 0.8rem;
}

.search-page-form input[type=submit] {
  border: none;
  border-radius: 6px;
  background: #4473ab;
  color: #fff;
  padding: 0 1rem;
  cursor: pointer;
  min-height: 42px;
  transition: 0.2s;
}

.search-page-form input[type=submit]:hover {
  background: #265584;
}

.search-page-list {
  width: 96%;
  max-width: 960px;
  margin: 1rem auto 0;
}

.search-page-list li {
  border-bottom: dotted 1px #cfd5de;
}

.search-page-list li a {
  display: block;
  padding: 1rem 0.4rem;
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

.search-page-list li a:hover {
  background: #fafbfd;
}

.search-page-list .type {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #4473ab;
  color: #fff;
}

.search-page-list h2 {
  border: none;
  text-align: left;
  padding: 0.6rem 0 0;
  font-size: 1.18rem;
}

.search-page-list h2::after {
  content: none;
}

.search-page-list p {
  padding-top: 0.5rem;
  line-height: 1.7;
  color: #333;
}

.search-page-list time {
  display: block;
  padding-top: 0.6rem;
  font-size: 0.82rem;
  color: #667;
}

.search-page-empty {
  width: 96%;
  max-width: 960px;
  margin: 1.2rem auto 0;
  padding: 1.4rem;
  border: solid 1px #dde3ee;
  border-radius: 6px;
  background: #fafbfc;
}

.member-news ul {
  padding: 2rem 0;
}

.member-news ul li a {
  display: block;
  border-bottom: dotted 1px #ccc;
  padding: 0.8rem;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.member-news ul li a .news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.member-news ul li a .news-meta span.info,
.member-news ul li a .news-meta span.topics,
.member-news ul li a .news-meta span.area,
.member-news ul li a .news-meta span.member,
.member-news ul li a .news-meta span.event,
.member-news ul li a .news-meta span.business,
.member-news ul li a .news-meta span.press {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 1.1rem;
  border-radius: 0.55rem;
  color: #fff;
  position: relative;
}

.member-news ul li a .news-meta span.info {
  background: #b2a1a1;
  padding: 0 0.6rem 0 1.6rem;
}

.member-news ul li a .news-meta span.info::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.area {
  background: #4aa6b5;
  padding: 0 0.6rem 0 1.6rem;
}

.member-news ul li a .news-meta span.area::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.topics {
  background: #b9852a;
  padding: 0 0.6rem 0 1.6rem;
}

.member-news ul li a .news-meta span.topics::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-info.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.member {
  background: #7db27f;
  padding: 0 0.6rem 0 1.6rem;
}

.member-news ul li a .news-meta span.member::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-member.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.event {
  background: #e58a8a;
  padding: 0 0.6rem 0 1.6rem;
}

.member-news ul li a .news-meta span.event::before {
  content: "";
  height: 0.8rem;
  width: 1.2rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-event.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.business {
  background: #97b4cb;
  padding: 0 0.6rem 0 1.3rem;
}

.member-news ul li a .news-meta span.business::before {
  content: "";
  height: 0.8rem;
  width: 1rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-business.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a .news-meta span.press {
  background: #d49073;
  padding: 0 0.6rem 0 1.3rem;
}

.member-news ul li a .news-meta span.press::before {
  content: "";
  height: 0.8rem;
  width: 1rem;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  background-image: url(../img/news-press.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 50%;
}

.member-news ul li a:hover {
  background: #f5f5f5;
}

.special-archive-grid {
  padding: 2rem 0;
}

.special-archive-grid-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.special-archive-card {
  display: block;
  color: #000;
  text-decoration: none;
  border: solid 1px #e4e4e4;
  background: #fff;
  transition: 0.25s;
}

.special-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.special-archive-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f3f3;
}

.special-archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-archive-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.special-archive-card-body h2 {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: left;
}

.special-archive-card-body h2::after {
  content: none;
}

.special-archive-card-body p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #333;
}

/* 新着ニュース詳細 */
.news-single-article {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 1.6rem;
  border: solid 1px #dfe4ec;
  border-radius: 8px;
  background: #fff;
}

.news-single-article h2 {
  text-align: left;
  border: none;
  padding: 0.7rem 0 0;
  font-size: 1.8rem;
}

.news-single-article h2::after {
  content: none;
}

.news-single-meta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.9rem;
}

.news-single-meta span {
  display: inline-block;
  line-height: 1;
  background: #4473ab;
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
}

.news-single-body {
  padding-top: 1.4rem;
  line-height: 1.95;
  font-size: 1rem;
  color: #1f2b3a;
}

.news-single-body > * {
  margin-top: 0;
}

.news-single-body > * + * {
  margin-top: 1.15em;
}

.news-single-body h1,
.news-single-body h2,
.news-single-body h3,
.news-single-body h4 {
  margin-top: 2em;
  line-height: 1.45;
  font-weight: 700;
  color: #1e3556;
}

.news-single-body h1 {
  font-size: 2rem;
  border-bottom: 2px solid #d8e3f0;
  padding-bottom: 0.35em;
}

.news-single-body h2 {
  font-size: 1.55rem;
  border-left: 5px solid #4473ab;
  background: #f7fbff;
  padding: 0.2em 0 0.2em 0.65em;
}

.news-single-body h3 {
  font-size: 1.25rem;
  border-bottom: 1px solid #dfe4ec;
  padding-bottom: 0.35em;
}

.news-single-body h4 {
  font-size: 1.08rem;
  color: #244a77;
}

.news-single-body p {
  margin: 1.35em 0 0;
  line-height: 1.95;
}

.news-single-body > p:first-child {
  margin-top: 0;
}

.news-single-body ul,
.news-single-body ol {
  padding-left: 1.4em;
}

.news-single-body li + li {
  margin-top: 0.45em;
}

.news-single-body img {
  max-width: 100%;
  height: auto;
}

.news-single-body figure {
  margin: 1.4em 0;
}

.news-single-body blockquote {
  margin: 1.4em 0;
  padding: 0.85em 1em;
  background: #f7fafd;
  border-left: 4px solid #9fbad8;
}

.news-single-body hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #dfe4ec;
}

.news-single-back {
  width: 96%;
  max-width: 960px;
  margin: 1.3rem auto 0;
}

.news-single-back a {
  color: #244a77;
  text-decoration: none;
}

.news-single-back a:hover {
  text-decoration: underline;
}

/* 404 */
.page-404-box {
  width: 96%;
  max-width: 760px;
  margin: 2rem auto 0;
  border: solid 1px #dbe3ef;
  border-radius: 10px;
  padding: 2rem;
  background: #f8fbff;
  text-align: center;
}

.page-404-box p+p {
  margin-top: 0.8rem;
}

.page-404-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.page-404-actions a {
  display: inline-block;
  min-width: 180px;
  border: solid 1px #4473ab;
  background: #4473ab;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  transition: 0.2s;
}

.page-404-actions a:hover {
  background: #fff;
  color: #4473ab;
}

/* 関連サイト */
.link-directory-section {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.link-directory-section h2 {
  text-align: left;
  font-size: 1.4rem;
  border: none;
  padding: 0 0 0.8rem;
}

.link-directory-section h2::after {
  content: none;
}

.link-directory-list li {
  border: solid 1px #dbe3ef;
  border-radius: 8px;
  background: #fff;
  margin-top: 0.9rem;
}

.link-directory-list li a {
  display: block;
  padding: 1rem 1rem 0.9rem;
  text-decoration: none;
  color: #222;
  transition: 0.2s;
}

.link-directory-list li a:hover {
  background: #f8fbff;
}

.link-directory-list li .title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #20406a;
}

.link-directory-list li .desc {
  display: block;
  margin-top: 0.4rem;
  line-height: 1.75;
}

.link-directory-list li .url {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: #5d6f86;
  word-break: break-all;
}

.link-directory-list.compact li .title {
  font-size: 1rem;
}

/* アクセス */
.access-page-section {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.access-page-section h2 {
  text-align: left;
  font-size: 1.4rem;
  border: none;
  padding: 0 0 0.8rem;
}

.access-page-section h2::after {
  content: none;
}

.access-page-section-about {
  max-width: 1120px;
}

.access-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.access-page-grid .card {
  border: solid 1px #dbe3ef;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.access-page-grid .card h3 {
  font-size: 1.05rem;
  color: #20406a;
}

.access-page-grid .card p {
  margin-top: 0.45rem;
  line-height: 1.75;
}

.access-page-links li {
  margin-top: 0.45rem;
}

.access-page-links a {
  color: #20406a;
  text-decoration: none;
}

.access-page-links a:hover {
  text-decoration: underline;
}

.access-page-youtube {
  width: 100%;
  margin-top: 1rem;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(22, 45, 76, 0.16);
}

.access-page-youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-page-subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #17385f;
  line-height: 1.35;
  border-left: solid 5px #4473ab;
  background: #eef4fb;
  padding: 0.5rem 0.8rem 0.5rem 0.7rem;
  border-radius: 0 6px 6px 0;
}

.access-page-subtitle+.access-page-grid,
.access-page-subtitle+.access-page-links {
  margin-top: 0.8rem;
}

.access-page-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #5d6f86;
}

/* 千葉市観光情報センター */
.tourist-center-page .access-page-section {
  margin-top: 2.4rem;
}

.tourist-center-page .access-page-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b3f67;
  line-height: 1.4;
}

.tourist-center-page .access-page-section-about {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  border: solid 1px #d3e1f1;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
}

.tourist-center-page .tourist-center-page-mini-heading {
  margin-top: 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1b3f67;
  line-height: 1.4;
}

.tourist-center-page .access-page-grid {
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

.tourist-center-page .access-page-grid .card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.tourist-center-page .access-page-grid .card p+p {
  margin-top: 0.75rem;
}

.tourist-center-page .access-page-grid .card img {
  border-radius: 0;
  border: 0;
}

.tourist-center-page .access-page-links li {
  margin-top: 0.8rem;
}

.tourist-center-page .access-page-links a {
  display: inline-block;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: #35679c;
  border: solid 1px #35679c;
  border-radius: 999px;
  padding: 0.5rem 1rem 0.46rem;
  transition: 0.2s;
}

.tourist-center-page .access-page-links a:hover {
  color: #35679c;
  background: #fff;
  text-decoration: none;
}

/* 協会について */
.about-page-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-page-index a {
  display: inline-block;
  border: solid 1px #4473ab;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  text-decoration: none;
  color: #4473ab;
  transition: 0.2s;
}

.about-page-index a:hover {
  background: #4473ab;
  color: #fff;
}

.about-page-section {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.about-page-section h2 {
  text-align: left;
  font-size: 1.55rem;
  font-weight: 800;
  color: #123255;
  border: none;
  padding: 0.55rem 0.9rem 0.5rem;
  border-left: solid 6px #4473ab;
  background: linear-gradient(90deg, #eef4fb 0%, #f7fbff 100%);
  border-radius: 0 8px 8px 0;
}

.about-page-section h2::after {
  content: none;
}

.about-page-section p {
  margin-top: 0.7rem;
  line-height: 1.8;
}

.about-page-subtitle {
  margin-top: 1.25rem;
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #17385f;
  line-height: 1.35;
  border-left: solid 4px #6da24b;
  padding-left: 0.6rem;
}

.about-page-image {
  margin-top: 1rem;
  margin-bottom: 1.15rem;
}

.about-page-image img {
  width: 100%;
  height: auto;
  display: block;
  border: solid 1px #dbe3ef;
  border-radius: 8px;
}

.about-page-links {
  margin-top: 0.8rem;
}

.about-page-links li {
  margin-top: 0.45rem;
}

.about-page-links a {
  color: #20406a;
  text-decoration: none;
}

.about-page-links a:hover {
  text-decoration: underline;
}

.about-page-card {
  margin-top: 0.9rem;
  border: solid 1px #dbe3ef;
  border-radius: 8px;
  padding: 1rem;
  background: #f8fbff;
}

.about-page-card h3 {
  font-size: 1.05rem;
  color: #20406a;
}

.about-page-card ul {
  margin-top: 0.55rem;
  padding-left: 1.2rem;
}

.about-page-card ul li {
  margin-top: 0.35rem;
  list-style: disc;
}

.about-page-list-numbered {
  margin-top: 0.6rem;
  padding-left: 1.4rem;
}

.about-page-list-numbered li {
  list-style: decimal;
  margin-top: 0.4rem;
  line-height: 1.75;
}

.about-page-fee {
  width: 100%;
  margin-top: 0.9rem;
  border-collapse: collapse;
}

.about-page-fee th,
.about-page-fee td {
  border: solid 1px #d3dbe8;
  padding: 0.55rem 0.6rem;
  font-size: 0.92rem;
}

.about-page-fee th {
  background: #eef4fb;
  font-weight: 700;
}

.about-page-list-note {
  margin-top: 0.9rem;
  padding-left: 1.2rem;
}

.about-page-list-note li {
  list-style: disc;
  margin-top: 0.35rem;
}

.about-page-benefits {
  margin-top: 0.3rem;
}

.about-page-benefits h4 {
  margin-top: 0.9rem;
  font-size: 1.04rem;
  font-weight: 700;
  color: #20406a;
}

.about-page-caption {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: #5d6f86;
}

.about-page-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-page-actions a {
  display: inline-block;
  border: solid 1px #4473ab;
  background: #4473ab;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: 0.2s;
}

.about-page-actions a:hover {
  background: #fff;
  color: #4473ab;
}

.about-page-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-page-grid .thumb {
  display: block;
}

.about-page-grid .thumb img {
  width: 100%;
  height: auto;
  display: block;
  border: solid 1px #dbe3ef;
  border-radius: 8px;
}

/* 業務・財務等に関する資料 */
.about-page-docs .about-docs-basic {
  margin-top: 1.1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-page-docs .about-docs-basic-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #17385f;
  line-height: 1.35;
  border-left: solid 5px #4473ab;
  background: #eef4fb;
  border-radius: 0 6px 6px 0;
  padding: 0.45rem 0.7rem 0.45rem 0.6rem;
}

.about-page-docs .about-docs-basic-links {
  margin-top: 0.75rem;
  display: block;
}

.about-page-docs .about-docs-basic-links li {
  margin: 0.45rem 0 0;
}

.about-page-docs .about-docs-basic-links a {
  display: inline;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #234971;
  text-decoration: underline;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: 0.2s;
}

.about-page-docs .about-docs-basic-links a:hover {
  color: #1f5e9f;
}

.about-page-docs .about-docs-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.about-page-docs .about-docs-card {
  border: solid 1px #dbe3ef;
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  background: #fff;
}

.about-page-docs .about-docs-year {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f3f67;
  line-height: 1.35;
}

.about-page-docs .about-docs-links {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-page-docs .about-docs-links li {
  margin: 0;
}

.about-page-docs .about-docs-links a {
  display: inline-block;
  border: solid 1px #4473ab;
  border-radius: 999px;
  padding: 0.34rem 0.85rem;
  color: #244a77;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: 0.2s;
}

.about-page-docs .about-docs-links a:hover {
  background: #4473ab;
  color: #fff;
}

/* お問い合わせフォーム（CF7） */
.inquiry-form-section {
  max-width: 760px;
  margin: 2.4rem auto 0;
  padding: 1.6rem 1.4rem;
  border: solid 1px #d7e1ef;
  border-radius: 10px;
  background: #f8fbff;
}

.inquiry-form-section .wpcf7 {
  margin-top: 0;
}

.inquiry-form-section .wpcf7-form p:first-of-type {
  margin-top: 0;
}

.inquiry-form-section .wpcf7-form p {
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.inquiry-form-section .wpcf7-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #17385f;
  line-height: 1.5;
  cursor: default;
}

.inquiry-form-section .wpcf7-form .required {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.08rem 0.45rem 0.12rem;
  border-radius: 999px;
  background: #c62828;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  vertical-align: middle;
}

.inquiry-form-section .wpcf7-form input[type=text],
.inquiry-form-section .wpcf7-form input[type=email],
.inquiry-form-section .wpcf7-form textarea {
  width: 100%;
  border: solid 1px #c7d4e5;
  border-radius: 8px;
  background: #fff;
  padding: 0.72rem 0.82rem;
  font-size: 0.95rem;
  line-height: 1.6;
  box-sizing: border-box;
  transition: 0.2s;
}

.inquiry-form-section .wpcf7-form textarea {
  min-height: 220px;
  resize: vertical;
}

.inquiry-form-section .wpcf7-form input[type=text]:focus,
.inquiry-form-section .wpcf7-form input[type=email]:focus,
.inquiry-form-section .wpcf7-form textarea:focus {
  border-color: #4473ab;
  outline: none;
  box-shadow: 0 0 0 3px rgba(68, 115, 171, 0.15);
}

.inquiry-form-section .wpcf7-form input[type=submit] {
  display: inline-block;
  border: solid 1px #4473ab;
  border-radius: 999px;
  background: #4473ab;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 200px;
  padding: 0.72rem 1.4rem;
  cursor: pointer;
  transition: 0.2s;
}

.inquiry-form-section .wpcf7-form input[type=submit]:hover {
  background: #fff;
  color: #4473ab;
}

.inquiry-form-section .wpcf7-form p:last-of-type {
  margin-bottom: 0;
  text-align: center;
}

.inquiry-form-section .wpcf7-spinner {
  margin: 0.45rem 0 0;
}

.inquiry-form-section .wpcf7-not-valid-tip {
  margin-top: 0.32rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-form-section .wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.72rem 0.82rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* サイトポリシー */
.privacy-page-section {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.privacy-page-section h2 {
  text-align: left;
  font-size: 1.45rem;
  font-weight: 800;
  color: #123255;
  border: none;
  padding: 0.55rem 0.9rem 0.5rem;
  border-left: solid 6px #4473ab;
  background: linear-gradient(90deg, #eef4fb 0%, #f7fbff 100%);
  border-radius: 0 8px 8px 0;
}

.privacy-page-section h2::after {
  content: none;
}

.privacy-page-section h3 {
  margin-top: 1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #17385f;
}

.privacy-page-section p {
  margin-top: 0.7rem;
  line-height: 1.85;
}

.privacy-page-section ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

.privacy-page-section ul li {
  list-style: disc;
  margin-top: 0.3rem;
  line-height: 1.8;
}

/* 旅行会社の皆様へ */
.fortravelagency-page-section {
  width: 96%;
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 1.4rem;
  border: solid 1px #d7e1ef;
  border-radius: 10px;
  background: #f8fbff;
}

.fortravelagency-page-section h2 {
  text-align: left;
  font-size: 1.45rem;
  font-weight: 800;
  color: #123255;
  border: none;
  margin-top: 0.5rem;
  padding: 0;
}

.fortravelagency-page-section h2::after {
  content: none;
}

.fortravelagency-page-date {
  font-size: 0.92rem;
  color: #5b6c84;
}

.fortravelagency-page-image {
  margin-top: 1rem;
}

.fortravelagency-page-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: solid 1px #dbe3ef;
  background: #fff;
}

.fortravelagency-page-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.fortravelagency-page-links a {
  display: block;
  padding: 0.7rem 0.9rem;
  border: solid 1px #b8c9de;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #1e416c;
  font-weight: 700;
  transition: 0.2s;
}

.fortravelagency-page-links a:hover {
  background: #4473ab;
  border-color: #4473ab;
  color: #fff;
}

/* ページネーション */
.pagenav {
  padding-top: 2em;
}

.pagenav .page-numbers {
  width: 94%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pagenav .page-numbers li {
  display: inline-block;
  padding: 0 0.1em;
  width: 2.2em;
}

.pagenav .page-numbers li a {
  display: block;
  width: 2em;
  line-height: 2em;
  text-align: center;
  background: #666;
  border: solid 1px #666;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  padding: 0;
}

.pagenav .page-numbers li a:hover {
  background: #fff;
  color: #666;
}

.pagenav .page-numbers li span.current {
  display: block;
  width: 2em;
  line-height: 2em;
  text-align: center;
  background: #999;
  border: solid 1px #fff;
  border-radius: 4px;
  color: #fff;
}

.pagenav .page-numbers li a.prev,
.pagenav .page-numbers li a.next {
  background: none;
  border: none;
  color: #666;
  width: 3em;
}

.pagenav .page-numbers li a:hover {
  background: none;
}

/* 会員へのお知らせ詳細 */
.member-news--date {
  padding-top: 1rem;
}

.member-news--content {
  padding: 1rem 0 2rem;
  line-height: 1.9;
}

.member-news--content > * {
  margin-top: 0;
}

.member-news--content > * + * {
  margin-top: 1.1em;
}

.member-news--content .back {
  padding-top: 2rem;
}

.member-news--content .back a {
  cursor: pointer;
}

/* フォーラム表示 */
.member-forum--inner {
  padding-top: 3rem;
}

.member-forum--btn {
  text-align: center;
}

.member-forum--btn a {
  display: inline-block;
  font-size: 0.96rem;
  padding: 0.6rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: solid 1px #000;
  border-radius: 3rem;
  transition: 0.3s;
}

.member-forum--btn a:hover {
  background: #fff;
  color: #000;
}

.member-dashboard .member-forum--inner {
  padding-top: 1rem;
}

.member-dashboard .member-forum #bbpress-forums ul.bbp-topics {
  margin-top: 0;
  border: solid 1px #e1e8f2;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.member-dashboard .member-forum #bbpress-forums li.bbp-header,
.member-dashboard .member-forum #bbpress-forums li.bbp-footer {
  background: #f1f6fd;
  padding: 0.72rem 0.9rem;
}

.member-dashboard .member-forum #bbpress-forums li.bbp-body ul.topic {
  padding: 0.86rem 0.9rem;
  border-top: solid 1px #edf2f8;
}

.member-dashboard .member-forum #bbpress-forums .bbp-topic-title .bbp-topic-permalink {
  color: #1f3552;
  font-size: 0.96rem;
  line-height: 1.45;
  text-decoration: none;
}

.member-dashboard .member-forum #bbpress-forums .bbp-topic-title .bbp-topic-permalink:hover {
  text-decoration: underline;
}

.member-dashboard .member-forum #bbpress-forums .bbp-topic-meta,
.member-dashboard .member-forum #bbpress-forums .bbp-topic-started-by,
.member-dashboard .member-forum #bbpress-forums .bbp-topic-freshness-author {
  font-size: 0.8rem;
  color: #607186;
}

/* 新規会員紹介 */
.new-member .member-card {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 1.6rem;
  border: solid 1px #e3e9f2;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 40, 62, 0.08);
}

.new-member .member-card .member-img {
  flex: 0 0 30%;
  max-width: 360px;
}

.new-member .member-card .member-img .image {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.new-member .member-card .member-img .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.new-member .member-card .member-text {
  flex: 1 1 auto;
  min-width: 0;
}

.new-member .member-card .member-text .member_category span {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: 1.2rem;
  background: #76bbd5;
}

.new-member .member-card .member-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 0.6rem;
  line-height: 1.45;
}

.new-member .member-card .member-text p {
  line-height: 1.65;
  padding-top: 0.5rem;
}

.new-member .member-card--individual {
  display: block;
  padding: 1rem 1.3rem;
}

.new-member .member-card--individual .member-text {
  width: 100%;
}

.new-member .member-card--individual .member-text h3 {
  padding-top: 0;
  font-size: 1.08rem;
}

/* 会員情報の変更 */
.member-profile {
  max-width: 520px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.member-profile label {
  display: block;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 14px;
}

.member-profile input[type=email],
.member-profile input[type=text],
.member-profile input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member-profile input:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.member-profile .member-profile-image {
  margin-bottom: 0.9rem;
}

.member-profile .member-profile-image-preview {
  width: 160px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #dbe3ef;
  background: #f6f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-profile .member-profile-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-profile .member-profile-image-help {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #5f6f85;
}

.member-profile input[type=file] {
  width: 100%;
  padding: 10px 0 0;
}

.member-profile .member-profile-checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.member-profile .member-profile-checkbox input[type=checkbox] {
  width: auto;
  margin: 0;
}

.member-profile button[type=submit] {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  background: #0073aa;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.member-profile button[type=submit]:hover {
  background: #005f8d;
}

.member-profile .success {
  background: #e6f4ea;
  color: #1e7e34;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.member-profile .error {
  background: #fdecea;
  color: #b71c1c;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.member-profile .password-field {
  position: relative;
}

.member-profile .password-field input {
  width: 100%;
  padding-right: 60px;
}

.member-profile .password-field .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 12px;
  color: #888;
  cursor: pointer;
  padding: 0;
}

.member-profile .password-field .toggle-password:hover {
  color: #333;
}

/* 会員ページのナビゲーション */
.member-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 0 2rem;
  flex-wrap: wrap;
}

.member-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease;
  border: solid 1px #d7e1ee;
  color: #1f3552;
  background: #fff;
  font-size: 0.88rem;
  line-height: 1.2;
  text-align: center;
}

.member-nav a:hover {
  background: #f2f7fd;
}

/* フォーラム各ページ */
.member--forum {
  padding-top: 2rem;
}

.member--forum h1 {
  font-size: 1.6rem;
  padding-bottom: 1rem;
}

.member--forum #bbpress-forums {
  font-size: 0.94rem;
}

.member--forum #bbpress-forums ul.bbp-forums,
.member--forum #bbpress-forums ul.bbp-topics,
.member--forum #bbpress-forums ul.bbp-replies {
  margin-top: 1rem;
  border: solid 1px #dfe6f1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.member--forum #bbpress-forums li.bbp-header,
.member--forum #bbpress-forums li.bbp-footer {
  background: #edf3fb;
  border-top: none;
  color: #2e4767;
  padding: 0.8rem 1rem;
}

.member--forum #bbpress-forums li.bbp-body ul.forum,
.member--forum #bbpress-forums li.bbp-body ul.topic,
.member--forum #bbpress-forums li.bbp-body ul.reply {
  padding: 0.95rem 1rem;
  border-top: solid 1px #edf1f6;
  transition: background 0.2s ease;
}

.member--forum #bbpress-forums li.bbp-body ul.forum:hover,
.member--forum #bbpress-forums li.bbp-body ul.topic:hover,
.member--forum #bbpress-forums li.bbp-body ul.reply:hover {
  background: #fafcff;
}

.member--forum #bbpress-forums .bbp-forum-title,
.member--forum #bbpress-forums .bbp-topic-permalink {
  color: #1f3552;
  font-weight: 700;
  text-decoration: none;
}

.member--forum #bbpress-forums .bbp-forum-title:hover,
.member--forum #bbpress-forums .bbp-topic-permalink:hover {
  text-decoration: underline;
}

.member--forum #bbpress-forums .bbp-forum-meta,
.member--forum #bbpress-forums .bbp-topic-meta,
.member--forum #bbpress-forums .bbp-topic-started-by,
.member--forum #bbpress-forums .bbp-topic-freshness-author {
  color: #5f6f85;
  font-size: 0.82rem;
}

.member--forum #bbpress-forums .bbp-topic-content h1,
.member--forum #bbpress-forums .bbp-topic-content h2,
.member--forum #bbpress-forums .bbp-topic-content h3,
.member--forum #bbpress-forums .bbp-topic-content h4,
.member--forum #bbpress-forums .bbp-topic-content h5,
.member--forum #bbpress-forums .bbp-topic-content h6,
.member--forum #bbpress-forums .bbp-reply-content h1,
.member--forum #bbpress-forums .bbp-reply-content h2,
.member--forum #bbpress-forums .bbp-reply-content h3,
.member--forum #bbpress-forums .bbp-reply-content h4,
.member--forum #bbpress-forums .bbp-reply-content h5,
.member--forum #bbpress-forums .bbp-reply-content h6 {
  margin: 1.4em 0 0.6em;
  line-height: 1.35;
  color: #18314d;
  font-weight: 700;
  text-align: left;
}

.member--forum #bbpress-forums .bbp-topic-content img,
.member--forum #bbpress-forums .bbp-reply-content img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.member--forum #bbpress-forums .bbp-topic-content figure,
.member--forum #bbpress-forums .bbp-topic-content .wp-caption,
.member--forum #bbpress-forums .bbp-topic-content .wp-block-image,
.member--forum #bbpress-forums .bbp-reply-content figure,
.member--forum #bbpress-forums .bbp-reply-content .wp-caption,
.member--forum #bbpress-forums .bbp-reply-content .wp-block-image {
  width: auto !important;
  max-width: 100%;
}

.member--forum #bbpress-forums .bbp-topic-content h1,
.member--forum #bbpress-forums .bbp-reply-content h1 {
  font-size: 1.8rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid #c9daee;
}

.member--forum #bbpress-forums .bbp-topic-content h2,
.member--forum #bbpress-forums .bbp-reply-content h2 {
  font-size: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0.75rem;
  background: none;
  border-left: 5px solid #4f83b8;
  border-bottom: none;
  position: static;
}

.member--forum #bbpress-forums .bbp-topic-content h2::after,
.member--forum #bbpress-forums .bbp-reply-content h2::after {
  content: none;
}

.member--forum #bbpress-forums .bbp-topic-content h3,
.member--forum #bbpress-forums .bbp-reply-content h3 {
  font-size: 1.28rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #d9e5f2;
}

.member--forum #bbpress-forums .bbp-topic-content h4,
.member--forum #bbpress-forums .bbp-reply-content h4 {
  font-size: 1.12rem;
  padding: 0.2rem 0 0.2rem 0.65rem;
  border-left: 3px solid #9ab8d6;
}

.member--forum #bbpress-forums .bbp-topic-content h5,
.member--forum #bbpress-forums .bbp-reply-content h5 {
  font-size: 1rem;
  color: #2d4c70;
}

.member--forum #bbpress-forums .bbp-topic-content h6,
.member--forum #bbpress-forums .bbp-reply-content h6 {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5f7897;
}

.member--forum #bbpress-forums div.bbp-template-notice,
.member--forum #bbpress-forums .bbp-template-notice {
  margin: 0.6rem 0 1rem;
  border: solid 1px #cbd9ea;
  border-radius: 8px;
  background: #f4f8fd;
}

.member--forum #bbpress-forums .bbp-pagination {
  margin-top: 0.9rem;
}

.member--forum #bbpress-forums .bbp-pagination-links .page-numbers {
  display: inline-flex;
  min-width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  border: solid 1px #d2dceb;
  border-radius: 999px;
  color: #324a67;
  text-decoration: none;
  background: #fff;
}

.member--forum #bbpress-forums .bbp-pagination-links .page-numbers.current {
  border-color: #4473ab;
  background: #4473ab;
  color: #fff;
}

a.forum-btn--box {
  display: inline-block;
  margin: 0 0 2rem;
  background: #3498db;
  font-size: 0.96rem;
  text-decoration: none;
  color: #fff;
  padding: 0.6rem 2rem;
  border-radius: 2rem;
  transition: 0.3s ease;
  line-height: 1;
}

a.forum-btn--box:hover {
  background: #3cb0fd;
}

/* =========================
   会員紹介のフィルター
========================= */
.member-filter {
  background: #f8f9fb;
  padding: 22px 24px;
  border-radius: 16px;
  margin-bottom: 28px;
}

/* グループ間の余白 */
.filter-group {
  margin-bottom: 18px;
}

.filter-group h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

/* ボタンエリア */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 通常ボタン */
.filter-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* ホバー */
.filter-btn:hover {
  border-color: #0073aa;
  color: #0073aa;
}

/* 選択状態 */
.filter-btn.is-active {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* リセットボタン */
.filter-reset {
  margin-top: 14px;
}

#filter-reset-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  background: #666;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition: 0.25s;
}

#filter-reset-btn:hover {
  background: #000;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .member-filter {
    padding: 16px 14px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 5px 11px;
  }

  #filter-reset-btn {
    font-size: 11px;
    padding: 5px 11px;
  }
}

.area-info-page {
  padding-bottom: 4.5rem;
}

.area-info-page-hero img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.area-info-page-intro {
  padding-top: 2.2rem;
}

.area-info-page-intro h1 {
  font-size: 2.7rem;
  line-height: 1.25;
}

.area-info-page-intro h2 {
  font-size: 2.05rem;
  line-height: 1.35;
  margin-top: 1.2rem;
  padding: 0;
  border: none;
  position: static;
  color: #000;
  font-weight: 700;
}

.area-info-page-intro h2::after {
  display: none;
}

.area-info-page-map-layout {
  display: block;
  padding-top: 1.8rem;
}

.area-info-page-map {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.area-info-page-map-text {
  width: 100%;
  max-width: 660px;
  margin: 1rem auto 0;
  text-align: center;
}

.area-info-page-map-text p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
}

.area-info-page-section {
  padding-top: 3rem;
}

.area-info-page-section h2 {
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
}

.area-info-page-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.area-info-page-info-card {
  border: solid 1px #dce4ee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.area-info-page-info-card-image {
  aspect-ratio: 16/10;
}

.area-info-page-info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-info-page-info-card h3 {
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 0.95rem 1rem 0;
}

.area-info-page-info-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0.5rem 1rem 1.05rem;
}

.area-info-page-post-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2%;
}

.area-info-page-post-list .col {
  width: 23.5%;
  min-width: 210px;
  max-width: 280px;
}

.area-info-page-post-list .col a {
  text-decoration: none;
  color: #000;
}

.area-info-page-post-list .col a:hover {
  opacity: 0.75;
}

.area-info-page-empty {
  padding: 1rem 0;
}

.area-info-page-more {
  padding-top: 1.4rem;
}

.area-info-page-more a {
  display: block;
  width: 88%;
  max-width: 300px;
  margin: 0 auto;
  border: solid 1px #1d2e43;
  text-align: center;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #1d2e43;
  transition: 0.3s;
}

.area-info-page-more a:hover {
  background: #1d2e43;
  color: #fff;
}

.area-index-page {
  padding-bottom: 4.2rem;
}

.area-index-page-lead {
  max-width: 860px;
  margin: 1rem auto 0;
  font-size: 1.04rem;
  line-height: 1.9;
  text-align: center;
}

.area-index-page-map {
  padding-top: 1.1rem;
}

.area-index-page-map h2 {
  margin-bottom: 1.1rem;
}

.area-index-page-map-image {
  max-width: 900px;
  margin: 0 auto;
}

.area-index-page-map-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.area-index-page-event-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.area-index-page-event-image img {
  width: 100%;
  display: block;
}

.area-index-page-event-link {
  padding-top: 1.2rem;
  text-align: center;
}

.area-index-page-event-link a {
  display: inline-block;
  width: 88%;
  max-width: 300px;
  border: solid 1px #1d2e43;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: #1d2e43;
  font-weight: 700;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}

.area-index-page-event-link a:hover {
  background: #1d2e43;
  color: #fff;
}

.area-index-page-list-section {
  padding-top: 2.8rem;
}

.area-index-page-list-section h2 {
  margin-bottom: 1.1rem;
}

.area-index-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.area-index-page-card a {
  display: block;
  border: solid 1px #dce4ee;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #1d2e43;
  background: #fff;
  transition: 0.3s;
}

.area-index-page-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(22, 46, 70, 0.13);
}

.area-index-page-card-image {
  aspect-ratio: 16/10;
  border-bottom: 10px solid transparent;
}

.area-index-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-index-page-card--umibe .area-index-page-card-image {
  border-bottom-color: #00aeca;
}

.area-index-page-card--toshin .area-index-page-card-image {
  border-bottom-color: #ea545e;
}

.area-index-page-card--satoyama .area-index-page-card-image {
  border-bottom-color: #6bbc6e;
}

.area-index-page-card--inage_hanamigawa .area-index-page-card-image {
  border-bottom-color: #9070af;
}

.area-index-page-card--soga .area-index-page-card-image {
  border-bottom-color: #f39939;
}

.area-index-page-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  padding: 0.95rem 1rem 0;
}

.area-index-page-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 0.55rem 1rem 0;
}

.area-index-page-card span {
  display: inline-block;
  margin: 0.85rem 1rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: solid 1px #1d2e43;
}

.special-ichigo {
  padding-bottom: 5rem;
}

.special-ichigo .page-nav {
  margin-bottom: 1.1rem;
}

.special-ichigo-hero {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5f8 0%, #fffef3 100%);
  border: solid 1px #f5d9e2;
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 2rem;
}

.special-ichigo-hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.special-ichigo-hero-body h1 {
  text-align: left;
  border: none;
  padding: 0;
  margin: 0.6rem 0 0;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #b63d6a;
}

.special-ichigo-hero-body h1::after {
  content: none;
}

.special-ichigo-eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: #ffe2ec;
  color: #b63d6a;
  font-size: 0.82rem;
  font-weight: 700;
}

.special-ichigo-hero-body p {
  margin-top: 1rem;
  line-height: 1.9;
}

.special-ichigo-links {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.special-ichigo-links a {
  display: block;
  text-decoration: none;
  border: solid 1px #b63d6a;
  color: #b63d6a;
  border-radius: 999px;
  padding: 0.44rem 1rem;
  background: #fff;
  transition: 0.25s;
}

.special-ichigo-links a:hover {
  background: #b63d6a;
  color: #fff;
}

.special-ichigo-updated {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #666;
}

.special-ichigo-notice,
.special-ichigo-drive,
.special-ichigo-section {
  width: 96%;
  max-width: 1200px;
  margin: 1.6rem auto 0;
}

.special-ichigo-notice {
  background: #fff8f2;
  border: solid 1px #f2dfca;
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
}

.special-ichigo-notice h2 {
  text-align: left;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

.special-ichigo-notice h2::after {
  content: none;
}

.special-ichigo-notice p+p {
  margin-top: 0.35rem;
}

.special-ichigo-drive {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 1.5rem;
  align-items: center;
}

.special-ichigo-drive-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.special-ichigo-drive-body h2,
.special-ichigo-section-head h2 {
  text-align: left;
  border: none;
  padding: 0;
  margin: 0;
}

.special-ichigo-drive-body h2::after,
.special-ichigo-section-head h2::after {
  content: none;
}

.special-ichigo-drive-body a {
  display: inline-block;
  margin-top: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: #6ea86d;
  border-radius: 999px;
  padding: 0.46rem 1.05rem;
}

.special-ichigo-section-head p {
  margin-top: 0.35rem;
  color: #666;
}

.special-ichigo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.special-ichigo-card {
  border: solid 1px #f0dbe2;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.special-ichigo-card-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.special-ichigo-card-body {
  padding: 0.9rem;
}

.special-ichigo-card-body h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.5;
}

.special-ichigo-desc {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.72;
  color: #333;
}

.special-ichigo-tags {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.special-ichigo-tags span {
  display: inline-block;
  font-size: 0.74rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f7edf1;
  color: #9a4f68;
}

.special-ichigo-meta {
  margin-top: 0.7rem;
  border-top: solid 1px #f2e7eb;
  padding-top: 0.65rem;
}

.special-ichigo-meta div {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.55rem;
  margin-top: 0.32rem;
}

.special-ichigo-meta dt {
  font-size: 0.76rem;
  color: #8a5d6f;
  font-weight: 700;
}

.special-ichigo-meta dd {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #333;
}

.special-ichigo-card-body a,
.special-ichigo-sales-item a {
  display: inline-block;
  margin-top: 0.8rem;
  text-decoration: none;
  font-size: 0.86rem;
  color: #b63d6a;
  border-bottom: solid 1px #b63d6a;
}

.special-ichigo-sales {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.special-ichigo-sales-item {
  background: #fff;
  border: solid 1px #f0dbe2;
  border-radius: 12px;
  padding: 0.95rem;
}

.special-ichigo-sales-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.special-ichigo-empty {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #666;
}

/*# sourceMappingURL=pc-style.css.map */
