@charset "UTF-8";

/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  scroll-padding-top: 180px;
  /* Remove gray overlay on links */
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #2F2D2B;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
}

.m-section-ttl {
  font-size: clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .m-section-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.m-section-ttl span {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #f24e35;
  font-weight: bold;
  margin-bottom: 5px;
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}

@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1300px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(88vw + 32px);
}

/* ========================================
    共通
    ======================================== */
body {
  background: url("../img/common/bg.webp") center center/contain repeat;
  padding-top: 150px;
  background-size: 500px 500px;
}

@media (max-width: 1000px) {
  body {
    padding-top: 88px;
  }
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 60px;
  }
}

.main {
  padding-top: 108px;
}

@media (max-width: 600px) {
  .main {
    padding-top: 60px;
  }
}

@media screen and (max-width: 430px) {
  .main {
    padding-top: 30px;
  }
}

.m-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 600px) {
  .m-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
    ボタン
    ======================================== */
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f24e35;
  color: #fff;
  padding: 15px 50px 15px 30px;
  border-radius: 100px;
  border: 2px solid #f24e35;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  position: relative;
  min-width: 320px;
  height: 72px;
}

@media (max-width: 600px) {
  .m-btn {
    height: 60px;
  }
}

.m-btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.3s;
}

.m-btn:hover {
  background-color: #fff;
  color: #f24e35;
}

.m-btn:hover::after {
  right: 20px;
  border-top-color: #f24e35;
  border-right-color: #f24e35;
}

@media (max-width: 600px) {
  .m-btn {
    min-width: 100%;
    padding: 12px 40px 12px 20px;
    font-size: 14px;
  }

  .m-btn::after {
    width: 6px;
    height: 6px;
    right: 15px;
  }
}

.m-btn--guide {
  width: 100%;
  max-width: 400px;
}

/* ページネーション */
.m-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .m-pagination {
    margin-top: 40px;
  }
}

.m-pagination ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .m-pagination ul {
    gap: 10px;
  }
}

.m-pagination li a,
.m-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #F24E35;
  border-radius: 50%;
  text-decoration: none;
  color: #F24E35;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}

@media (max-width: 768px) {

  .m-pagination li a,
  .m-pagination li span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.m-pagination li a:hover {
  border-color: #f24e35;
  color: #f24e35;
}

.m-pagination li span.current {
  background-color: #f24e35;
  border-color: #f24e35;
  color: #fff;
}

.m-pagination li .dots {
  border: none;
  width: auto;
  height: auto;
}

.m-pagination li .prev,
.m-pagination li .next {
  font-size: 0;
  position: relative;
}

.m-pagination li .prev::before,
.m-pagination li .next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.m-pagination li .prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.m-pagination li .next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  width: 100%;
  background-image: url("../img/common/bg.webp");
  background-repeat: repeat;
  border-bottom: 1px solid #AAAAAA;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding-left: 5vw;
}

@media (max-width: 1000px) {
  .header__inner {
    height: 60px;
    padding-left: 15px;
    padding-right: 0;
    gap: 6px;
  }
}

.header__logo {
  width: 140px;
  height: auto;
}

@media (max-width: 1000px) {
  .header__logo {
    width: 100px;
  }
}

.header__logo a {
  display: block;
  line-height: 0;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__nav-info {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

@media (max-width: 1000px) {
  .header__nav-info {
    margin-right: 15px;
    gap: 5px;
  }
}

.header__nav-info-city {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .header__nav-info-city {
    font-size: 13px;
    margin-right: 0px;
  }
}

@media (max-width: 410px) {
  .header__nav-info-city {
    display: none;
  }
}

.header__nav-info-date {
  font-size: 20px;
  font-weight: bold;
  color: #EB5535;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .header__nav-info-date {
    font-size: 13px;
    margin-right: 0;
  }
}

.header__nav-info-date span {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .header__nav-info-date span {
    font-size: 10px;
  }
}

.header__nav-info-icon {
  width: 32px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .header__nav-info-icon {
    width: 24px;
  }
}

.header__nav-info-icon img {
  width: 100%;
}

.header__nav-search {
  margin-right: 20px;
}

@media (max-width: 1000px) {
  .header__nav-search {
    display: none;
  }
}

.header__nav-search form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 0 0 0 15px;
  width: 250px;
  overflow: hidden;
}

.header__nav-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 0;
  background: transparent;
}

.header__nav-search input::placeholder {
  color: #ccc;
}

.header__nav-search button {
  background: none;
  border: none;
  border-left: 1px solid #333;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.header__nav-search button img {
  width: 20px;
  height: 20px;
}

.header__nav-sns {
  display: flex;
  gap: 10px;
  margin-right: 20px;
}

@media (max-width: 1000px) {
  .header__nav-sns {
    display: none;
  }
}

.header__nav-sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}

.header__nav-sns-item a:hover {
  opacity: 0.7;
}

.header__nav-contact {
  margin-right: 15px;
}

@media (max-width: 1000px) {
  .header__nav-contact {
    margin-right: 10px;
  }
}

.header__nav-contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.header__nav-contact-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
  line-height: 1;
  display: flex;
  align-items: end;
}

@media (max-width: 1000px) {
  .header__nav-contact-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
  }
}

.header__nav-contact-icon img {
  width: 100%;
  height: auto;
}

.header__nav-contact-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 1000px) {
  .header__nav-contact-text {
    font-size: 9px;
  }
}

.header__ham {
  background-color: #EB5535;
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .header__ham {
    width: 60px;
    height: 60px;
  }
}

.header__ham-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__ham-inner span {
  display: block;
  width: 44px;
  height: 2px;
  background: #fff;
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .header__ham-inner span {
    width: 30px;
    height: 2px;
    margin-bottom: 8px;
  }
}

.header__ham-inner span:last-of-type {
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .header__ham-inner span:last-of-type {
    margin-bottom: 8px;
  }
}

.header__ham-inner p {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .header__ham-inner p {
    font-size: 10px;
  }
}

/* Bottom Guide Nav */
.header__guide {
  border-top: 1px solid #AAAAAA;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 600px) {
  .header__guide {
    display: none;
  }
}

.header__guide::-webkit-scrollbar {
  height: 4px;
}

.header__guide::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.header__guide::-webkit-scrollbar-thumb {
  background: #ccc;
}

.header__guide-list {
  display: flex;
  align-items: stretch;
  min-width: 1200px;
}

.header__guide-item {
  flex: 1;
  border-right: 1px solid #AAAAAA;
}

.header__guide-item:first-child {
  border-left: 1px solid #AAAAAA;
}

.header__guide-item:last-child {
  flex: none;
  border-right: none;
}

.header__guide-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  height: 100%;
  text-decoration: none;
  transition: background 0.3s;
}

@media (max-width: 1000px) {
  .header__guide-item-link {
    padding: 10px 5px;
    flex-direction: row;
    gap: 8px;
  }
}

.header__guide-item-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.header__guide-item-icon {
  width: 30px;
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .header__guide-item-icon {
    width: 18px;
    margin-bottom: 0;
  }
}

.header__guide-item-icon img {
  width: 100%;
  height: auto;
}

.header__guide-item-text {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .header__guide-item-text {
    font-size: 12px;
  }
}

.header__guide-item-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}

.header__guide-item-link-other {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  border-radius: 8px;
  transition: opacity 0.3s;
}

@media (max-width: 1000px) {
  .header__guide-item-link-other {
    height: 30px;
    padding: 0 10px;
  }
}

.header__guide-item-link-other:hover {
  opacity: 0.8;
}

.header__guide-item-link-other .header__guide-item-icon {
  width: 20px;
  margin-bottom: 0;
  margin-right: 10px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .header__guide-item-link-other .header__guide-item-icon {
    width: 16px;
    margin-bottom: 0;
  }
}

.header__guide-item-link-other .header__guide-item-icon img {
  filter: brightness(0) invert(1);
}

.header__guide-item-link-other .header__guide-item-text {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .header__guide-item-link-other .header__guide-item-text {
    font-size: 13px;
  }
}

/* ========================================
    フッター
    ======================================== */
.footer {
  width: 100%;
}

body:not(.home):not(.front-page) .footer {
  padding-top: 100px;
}

@media (max-width: 768px) {
  body:not(.home):not(.front-page) .footer {
    padding-top: 50px;
  }
}

.footer__banners {
  padding: 60px 0;
}

@media (max-width: 1100px) {
  .footer__banners {
    padding: 40px 15px;
  }
}

@media screen and (max-width: 600px) {
  .footer__banners {
    padding-top: 0;
  }
}

.footer__banners-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .footer__banners-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.footer__banner-item {
  flex: 1;
  display: block;
  transition: opacity 0.3s;
}

.footer__banner-item:hover {
  opacity: 0.8;
}

.footer__banner-item img {
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .footer__banner-item {
    width: 100%;
    max-width: 400px;
  }
}

.footer__main {
  background-color: #f24e35;
  color: #fff;
  padding: 80px 0 60px;
}

@media (max-width: 1100px) {
  .footer__main {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 600px) {
  .footer__main {
    padding-bottom: 10px;
  }
}

.footer__inner {
  max-width: 88vw;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 350px 1fr 0.3fr;
  gap: 40px;
}

@media (max-width: 1400px) {
  .footer__content {
    grid-template-columns: 220px 1fr 0.4fr;
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .footer__content {
    grid-template-columns: 200px 1fr 0.4fr;
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right" "nav nav";
    gap: 40px 20px;
  }
}

@media (max-width: 560px) {
  .footer__content {
    grid-template-columns: 1fr 0.5fr;
    grid-template-areas: "left right" "nav nav";
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .footer__left {
    grid-area: left;
    text-align: left;
  }
}

.footer__logo {
  width: 150px;
  margin-bottom: 30px;
}

.footer__logo img {
  width: 100%;
}

.footer__info {
  margin-bottom: 30px;
}

.footer__info-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 1400px) {
  .footer__info-name {
    font-size: 15px;
  }
}

.footer__info-address,
.footer__info-tel {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 1400px) {

  .footer__info-address,
  .footer__info-tel {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .footer__info-address {
    white-space: nowrap;
  }
}

.footer__sns {
  display: flex;
  gap: 15px;
}

.footer__sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.footer__sns-item a:hover {
  opacity: 0.7;
}

.footer__sns-item img {
  width: 100%;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

@media (max-width: 1400px) {
  .footer__nav {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .footer__nav {
    grid-area: nav;
  }
}

@media (max-width: 560px) {
  .footer__nav {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.footer__nav-group {
  margin-bottom: 40px;
}

.footer__nav-group:last-child {
  margin-bottom: 0;
}

.footer__nav-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 1400px) {
  .footer__nav-title {
    font-size: 16px;
  }
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (max-width: 600px) {
  .footer__nav-list {
    gap: 8px;
  }
}

.footer__nav-item a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity 0.3s;
}

@media (max-width: 1400px) {
  .footer__nav-item a {
    font-size: 14px;
  }
}

.footer__nav-item a:hover {
  opacity: 0.8;
}

.footer__nav-item a::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-image: url("../img/icon/arrow-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.footer__nav-item a:hover::after {
  transform: translateX(5px);
}

@media (max-width: 660px) {
  .footer__nav-item a::after {
    width: 18px;
    height: 18px;
  }
}

.footer__nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #f24e35;
  text-decoration: none;
  height: 60px;
  min-width: 320px;
  max-width: 380px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s;
}

@media (max-width: 1400px) {
  .footer__btn {
    height: 50px;
    min-width: 280px;
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .footer__btn {
    height: 56px;
    min-width: unset;
    width: 100%;
    max-width: 350px;
    font-size: 15px;
  }
}

@media (max-width: 660px) {
  .footer__btn {
    font-size: 13px;
  }
}

.footer__btn:hover {
  opacity: 0.9;
}

.footer__btn-icon {
  width: 24px;
  margin-right: 10px;
  line-height: 1;
}

@media (max-width: 660px) {
  .footer__btn-icon {
    width: 18px;
  }
}

.footer__btn-icon img {
  width: 100%;
  vertical-align: middle;
}

.footer__nav-external a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

@media (max-width: 1400px) {
  .footer__nav-external a {
    font-size: 14px;
  }
}

.footer__nav-external a:hover {
  opacity: 0.7;
}

.footer__nav-external a img {
  width: 18px;
  margin-left: 8px;
}

@media (max-width: 1100px) {
  .footer__right {
    grid-area: right;
    text-align: right;
  }
}

.footer__map {
  width: 100%;
}

@media (max-width: 1100px) {
  .footer__map {
    max-width: 60%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .footer__map {
    max-width: 100%;
  }
}

.footer__map img {
  width: 100%;
  height: auto;
}

.footer__copy {
  background-color: #f24e35;
  padding: 20px 0;
  text-align: center;
}

.footer__copy p {
  font-size: 14px;
  color: #FFDADA;
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  position: relative;
  width: 100%;
  height: calc(100vh - 172px - 40px);
  overflow: hidden;
  padding-bottom: 50px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .mainV {
    height: auto;
    margin-top: 10px;
    padding-bottom: 0;
    overflow: visible;
  }
}

.mainV__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .mainV__inner {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-areas: "scroll slider" "pagination pagination" "news news";
    align-items: start;
    padding-right: 25px;
  }
}

.mainV__slider {
  width: 76vw;
  height: 85%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50px 0 0 0;
}

@media (max-width: 600px) {
  .mainV__slider {
    grid-area: slider;
    width: 100%;
    height: 400px;
    border-radius: 30px 0 0 0;
  }
}

.slideshow {
  height: 100%;
}

.slideshow .swiper-wrapper {
  height: 100%;
}

.slideshow__slide {
  height: 100%;
}

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

.swiper-pagination {
  position: absolute;
  left: 6vw !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

@media (max-width: 600px) {
  .swiper-pagination {
    grid-area: pagination;
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #D9D9D9;
  opacity: 1;
  margin: 0 !important;
}

@media (max-width: 600px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f24e35;
}

@media screen and (max-width: 600px) {
  .mainV__inner .swiper-pagination {
    transform: translateX(25px);
  }

}

.mainV__scroll {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 10;
}

@media (max-width: 600px) {
  .mainV__scroll {
    grid-area: scroll;
    position: static;
    transform: none;
    padding-top: 50px;
    right: auto;
  }
}

.mainV__scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mainV__scroll-text-img {
  width: 20px;
  height: auto;
}

@media (max-width: 600px) {
  .mainV__scroll-text-img {
    width: 11px;
  }
}

.mainV__scroll-line {
  width: 3px;
  height: 60px;
  background-color: #C6C6C6;
  position: relative;
  overflow: hidden;
}

.mainV__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f24e35;
  animation: scroll-line 2s cubic-bezier(0.76, 0, 0.3, 1) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.mainV__news {
  position: absolute;
  bottom: -48px;
  right: 5vw;
  z-index: 20;
  width: 100%;
  max-width: 680px;
  height: 140px;
  background-color: #fff;
  border-radius: 25px 0 25px 0;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .mainV__news {
    grid-area: news;
    position: static;
    width: 92%;
    margin: 0 auto;
    height: 80px;
    padding: 10px 15px;
    right: auto;
    bottom: auto;
    transform: translateX(14.5px);
    border-radius: 15px 0 15px 0;
  }
}

.mainV__news-inner {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.news-slider {
  height: 100%;
}

.news-slider__item {
  height: 100% !important;
  display: flex;
  align-items: center;
}

.news-slider__link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.news-slider__content {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 600px) {
  .news-slider__content {
    gap: 10px;
  }
}

.news-slider__thumb {
  width: 100px;
  height: 70px;
  flex-shrink: 0;
  background-color: #D9D9D9;
  border-radius: 12px 0 12px 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .news-slider__thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px 0 10px 0;
  }
}

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

.news-slider__no-thumb {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.news-slider__body {
  flex: 1;
  min-width: 0;
}

.news-slider__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

@media (max-width: 600px) {
  .news-slider__meta {
    gap: 10px;
    margin-bottom: 3px;
  }
}

.news-slider__date {
  font-size: 18px;
  font-weight: 500;
  color: #f24e35;
}

@media (max-width: 600px) {
  .news-slider__date {
    font-size: 13px;
  }
}

.news-slider__label {
  background-color: #2F2D2B;
  color: #fff;
  font-size: 16px;
  padding: 1px 18px;
  border-radius: 20px;
  font-weight: normal;
}

@media (max-width: 600px) {
  .news-slider__label {
    font-size: 11px;
    padding: 1px 12px;
  }
}

.news-slider__title {
  font-size: 20px;
  font-weight: bold;
  color: #2F2D2B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .news-slider__title {
    font-size: 14px;
  }
}

.news-slider__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 5px;
}

@media (max-width: 600px) {
  .news-slider__nav {
    gap: 8px;
    padding-left: 5px;
  }
}

.news-slider__prev,
.news-slider__next {
  cursor: pointer;
  width: 18px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

@media (max-width: 600px) {

  .news-slider__prev,
  .news-slider__next {
    width: 12px;
    height: 12px;
  }
}

.news-slider__prev:hover,
.news-slider__next:hover {
  opacity: 0.6;
}

.news-slider__prev::before,
.news-slider__next::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid #ABABAB;
  border-left: 2px solid #ABABAB;
  display: block;
}

@media (max-width: 600px) {

  .news-slider__prev::before,
  .news-slider__next::before {
    width: 10px;
    height: 10px;
  }
}

.news-slider__prev::before {
  transform: rotate(45deg);
}

.news-slider__next::before {
  transform: rotate(-135deg);
}

/* ========================================
    下層ページ用メインビジュアル
    ======================================== */
.pageV__inner {
  border-bottom: 1px solid #AFBDC6;
  padding-top: 80px;
  padding-bottom: 72px;
}

@media (max-width: 600px) {
  .pageV__inner {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.pageV__title-en {
  color: #f24e35;
  font-size: clamp(15px, 1.74vw, 25px);
  font-weight: bold;
}

.pageV__title {
  transform: translateX(-6px);
  font-weight: bold;
  font-size: clamp(22px, 3.47vw, 50px);
}

@media (max-width: 600px) {
  .pageV__title {
    transform: translateX(-3px);
  }
}

.pageV__description {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .pageV__description {
    font-size: 14px;
  }
}

.breadcrumbs-wrapper {
  width: fit-content;
  margin: 0 0 0 auto;
  margin-top: 10px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
}

@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 12px;
    gap: 6px;
  }
}

@media screen and (max-width: 400px) {
  .breadcrumbs {
    font-size: 11px;
  }
}

.breadcrumbs>span[property=itemListElement] {
  display: flex;
  align-items: center;
}

.breadcrumbs>span[property=itemListElement]>a {
  display: inline-block;
  background-color: #f24e35;
  color: #fff;
  padding: 2px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

@media (max-width: 600px) {
  .breadcrumbs>span[property=itemListElement]>a {
    padding: 2px 10px;
  }
}

.breadcrumbs>span[property=itemListElement]>a:hover {
  opacity: 0.8;
}

.breadcrumbs>span[property=itemListElement]>a>span {
  color: #fff;
}

.breadcrumbs>span[property=itemListElement]>span.current-item {
  display: inline-block;
  background-color: #E5E5E5;
  padding: 2px 16px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  font-weight: 500;
}

@media (max-width: 600px) {
  .breadcrumbs>span[property=itemListElement]>span.current-item {
    padding: 2px 10px;
  }
}

.breadcrumbs>span[property=itemListElement]:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumbs>text {
  color: #2F2D2B;
  margin: 0 4px;
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__inner {
  position: relative;
  padding: 100px 5vw;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1000px) {
  .nav-drawer__inner {
    padding: 80px 15px 40px;
    display: block;
  }
}

.nav-drawer__logo {
  position: absolute;
  top: 0;
  left: 5vw;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
}

@media (max-width: 1000px) {
  .nav-drawer__logo {
    top: 0;
    left: 15px;
    width: 100px;
    height: 60px;
  }
}

.nav-drawer__logo img {
  width: 100%;
  height: auto;
}

.nav-drawer__close {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.nav-drawer__close:hover {
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .nav-drawer__close {
    width: 60px;
    height: 60px;
  }
}

.nav-drawer__close-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-drawer__close p {
  font-size: 14px;
  font-weight: 700;
  color: #2F2D2B;
}

@media (max-width: 1000px) {
  .nav-drawer__close p {
    font-size: 10px;
  }
}

.nav-drawer__close-icon {
  width: 44px;
  height: 16px;
  position: relative;
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .nav-drawer__close-icon {
    width: 30px;
    height: 12px;
    margin-bottom: 8px;
  }
}

.nav-drawer__close-icon span {
  display: block;
  width: 46.8px;
  height: 2px;
  background-color: #2F2D2B;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
  .nav-drawer__close-icon span {
    width: 31.9px;
    height: 2px;
  }
}

.nav-drawer__close-icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(20deg);
}

.nav-drawer__close-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-20deg);
}

.nav-drawer__container {
  display: flex;
  width: 100%;
  margin: auto 0;
  height: 100%;
}

@media (max-width: 1000px) {
  .nav-drawer__container {
    flex-direction: column;
    margin: 0;
  }
}

.nav-drawer__col {
  flex: 1;
  padding: 0 4vw;
  border-right: 0.5px solid #AAAAAA;
}

.nav-drawer__col:last-child {
  border-right: none;
}

@media (max-width: 1000px) {
  .nav-drawer__col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #AAAAAA;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .nav-drawer__col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .nav-drawer__col--event {
    display: none;
  }
}

/* Headings */
.nav-drawer__head {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 0.5px solid #AAAAAA;
}

.nav-drawer__head-sub {
  display: block;
  font-size: 14px;
  color: #f24e35;
  font-weight: bold;
  margin-bottom: 5px;
}

.nav-drawer__head-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 600px) {
  .nav-drawer__head-title {
    font-size: 20px;
  }
}

/* Event Column */
.nav-drawer__event-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 25px;
  transition: opacity 0.3s;
}

.nav-drawer__event-link:hover {
  opacity: 0.7;
}

.nav-drawer__event-link.is-empty {
  cursor: default;
}

.nav-drawer__event-link.is-empty:hover {
  opacity: 1;
}

.nav-drawer__event-img {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #D9D9D9;
  margin-bottom: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-drawer__event-img .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.nav-drawer__event-img .no-event-text {
  font-size: 14px;
  color: #666;
  padding: 20px;
  text-align: center;
}

.nav-drawer__event-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 1000px) {
  .nav-drawer__event-title {
    font-size: 16px;
  }
}

.nav-drawer__event-btn {
  text-align: center;
}

.nav-drawer__event-btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #AAAAAA;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-drawer__event-btn a:hover {
  color: #fff;
  background-color: #f24e35;
  border-color: #f24e35;
}

/* Menu Column */
.nav-drawer__menu {
  list-style: none;
  padding: 0;
}

.nav-drawer__menu-item {
  border-bottom: 1px dashed #AAAAAA;
}

.nav-drawer__menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

@media (max-width: 600px) {
  .nav-drawer__menu-item a {
    font-size: 15px;
  }
}

.nav-drawer__menu-item a::after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid #FDAFA3;
  border-right: 2px solid #FDAFA3;
  transform: rotate(45deg);
}

.nav-drawer__menu-item a:hover {
  color: #f24e35;
}

/* Sightseeing Spot Column */
.nav-drawer__search {
  margin-bottom: 40px;
}

.nav-drawer__search--pc {
  display: block;
}

@media screen and (max-width: 600px) {
  .nav-drawer__search--pc {
    display: none;
  }
}

.nav-drawer__search--sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .nav-drawer__search--sp {
    display: block;
  }
}

.nav-drawer__search form {
  display: flex;
  align-items: stretch;
  border: 1px solid #333;
  border-radius: 25px;
  padding: 0 0 0 20px;
  overflow: hidden;
}

.nav-drawer__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 0;
}

.nav-drawer__search button {
  background: none;
  border: none;
  border-left: 1px solid #333;
  cursor: pointer;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.nav-drawer__search button img {
  width: 20px;
  height: 20px;
}

.nav-drawer__spots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.nav-drawer__spot-item {
  list-style: none;
}

.nav-drawer__spot-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.nav-drawer__spot-item a:hover {
  opacity: 0.7;
}

.nav-drawer__spot-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}

.nav-drawer__spot-item span {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.nav-drawer__banners {
  margin-bottom: 30px;
}

.nav-drawer__banner img {
  width: 100%;
  height: auto;
}

.nav-drawer__banner-placeholder {
  flex: 1;
  background-color: #F8D7DA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.nav-drawer__banner-placeholder p {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.nav-drawer__btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.nav-drawer__btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.nav-drawer__btn-item:hover {
  background-color: #333;
  color: #fff;
}

.nav-drawer__btn-item:hover img {
  filter: brightness(0) invert(1);
}

.nav-drawer__btn-item img {
  width: 20px;
  margin-right: 10px;
}

.nav-drawer__btn-item span {
  font-size: 14px;
}

.nav-drawer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1000px) {
  .nav-drawer__bottom {
    flex-direction: column;
    gap: 20px;
  }
}

.nav-drawer__sns {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.nav-drawer__sns li a {
  display: block;
  width: 50px;
  height: 50px;
}

@media (max-width: 600px) {
  .nav-drawer__sns li a {
    width: 32px;
    height: 32px;
  }
}

.nav-drawer__sns li a img {
  width: 100%;
  height: 100%;
}

.nav-drawer__policy {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}

.nav-drawer__policy:hover {
  text-decoration: underline;
}

/* ========================================
    投稿一覧ページ
    ======================================== */
.p-category-nav {
  display: flex;
  justify-content: center;
}



.p-category-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 768px) {
  .p-category-nav__list {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .p-category-nav {
    display: block;
    margin-left: -16px;
    margin-right: -16px;
  }

  .p-category-nav__list {
    width: 100%;
    gap: 10;
    padding: 0 20px;
  }
}

.p-category-nav__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 40px;
  border: 1px solid #707070;
  border-radius: 100px;
  text-decoration: none;
  line-height: 1.5;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .p-category-nav__item a {
    padding: 4px 20px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .p-category-nav__item {
    width: calc(50% - 5px);
  }

  .p-category-nav__item a {
    display: flex;
    width: 100%;
    border-radius: 50px;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    border: 0.5px solid #707070;
  }
}

.p-category-nav__item a:hover {
  background-color: #2F2D2B;
  color: #fff;
  border-color: #2F2D2B;
}

.p-category-nav__item.is-active a {
  background-color: #2F2D2B;
  color: #fff;
  border-color: #2F2D2B;
}

.p-blog-list {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .p-blog-list {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .p-blog-list {
    margin-top: 0px;
  }
}

.p-blog-card {
  border-bottom: 1px solid #AAAAAA;
  padding: 50px 0;
}

@media (max-width: 768px) {
  .p-blog-card {
    padding: 30px 0;
  }
}

.p-blog-card__link {
  display: flex;
  gap: 40px;
  text-decoration: none;
  color: inherit;
}

.p-blog-card__link:hover .p-blog-card__title {
  color: #f24e35;
}

.p-blog-card__link:hover .p-blog-card__img img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .p-blog-card__link {
    flex-direction: column;
    gap: 20px;
  }
}

.p-blog-card__img {
  width: 240px;
  height: 160px;
  flex-shrink: 0;
  background-color: #D9D9D9;
  border-radius: 15px 0 15px 0;
  overflow: hidden;
}

.p-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .p-blog-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}

.p-blog-card__no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.p-blog-card__body {
  flex-grow: 1;
}

.p-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .p-blog-card__meta {
    margin-bottom: 10px;
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .p-blog-card__meta {
    margin-bottom: 5px;
  }
}

.p-blog-card__date {
  color: #f24e35;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 768px) {
  .p-blog-card__date {
    font-size: 18px;
  }
}

.p-blog-card__category {
  background-color: #2F2D2B;
  color: #fff;
  font-size: 14px;
  padding: 2px 20px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .p-blog-card__category {
    padding: 2px 15px;
    transform: translateY(2px);
  }
}

.p-blog-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .p-blog-card__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .p-blog-card__title {
    margin-bottom: 5px;
  }
}

.p-blog-card__excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .p-blog-card__excerpt {
    font-size: 14px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}

.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}

.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
  }
}

.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}

.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

/* 投稿詳細（single.php） */
.single-post {
  padding-top: 60px;
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .single-post__meta {
    margin-bottom: 0px;
  }
}

.single-post__date {
  font-size: 18px;
  font-weight: 500;
  color: #f24e35;
}

.single-post__category {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  padding: 4px 20px;
  border-radius: 100px;
}

.single-post__eyecatch {
  margin-bottom: 10px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .single-post__eyecatch {
    margin-bottom: 0px;
  }
}

.single-post__eyecatch img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px 0 30px 0;
}

.post-content {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 80px;
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

@media screen and (max-width: 600px) {
  .post-content img {
    margin: 1em 0;
  }
}

.single-post__footer {
  border-top: 1px solid #ddd;
  padding-top: 60px;
}

@media screen and (max-width: 600px) {
  .single-post__footer {
    padding-top: 30px;
  }
}

.single-post__btn-wrap {
  display: flex;
  justify-content: center;
}

.single-post__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 320px;
  height: 60px;
  border: 1px solid #f24e35;
  border-radius: 100px;
  color: #f24e35;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.single-post__back-btn img {
  width: 20px;
  height: auto;
}

.single-post__back-btn:hover {
  background-color: #f24e35;
  color: #fff;
}

.single-post__back-btn:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .single-post {
    padding-top: 40px;
  }

  .single-post__date {
    font-size: 14px;
  }

  .single-post__category {
    font-size: 12px;
    padding: 3px 15px;
  }

  .post-content {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .single-post__back-btn {
    width: 100%;
    max-width: 300px;
  }
}

.c-filter {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .c-filter {
    margin-bottom: 40px;
  }
}

.c-filter__header {
  background-color: #2F2D2B;
  padding: 15px 20px;
  text-align: center;
}

.c-filter__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.c-filter__title img {
  width: 32px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .c-filter__title img {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .c-filter__title {
    font-size: 18px;
    gap: 10px;
  }
}

.c-filter__form {
  padding: 40px 60px;
}

@media (max-width: 768px) {
  .c-filter__form {
    padding: 20px 15px;
  }
}

.c-filter__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px 0;
  border-bottom: 1px solid #D9D9D9;
}

@media (max-width: 768px) {
  .c-filter__row {
    padding: 20px 0;
    gap: 15px;
  }
}

.c-filter__row:first-child {
  padding-top: 0;
}

.c-filter__form--last {
  border-bottom: none;
}

.c-filter__label {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .c-filter__label {
    font-size: 16px;
  }
}

.c-filter__content.is-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .c-filter__content.is-flex {
    gap: 15px;
  }
}

@media screen and (max-width: 600px) {
  .c-filter__content.is-flex {
    gap: 10px;
  }
}

.c-filter__content.is-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 768px) {
  .c-filter__content.is-grid {
    gap: 15px;
  }
}

@media screen and (max-width: 430px) {
  .c-filter__content.is-grid {
    gap: 10px;
  }
}

.c-filter__quick-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .c-filter__quick-dates {
    gap: 10px;
  }
}

/* 共通パーツ */
.filter-check-btn input {
  display: none;
}

.filter-check-btn span {
  display: inline-block;
  padding: 8px 40px;
  border: 1px solid #2F2D2B;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
}

@media (max-width: 768px) {
  .filter-check-btn span {
    padding: 6px 20px;
    font-size: 14px;
  }
}

.filter-check-btn input:checked+span {
  background-color: #2F2D2B;
  color: #fff;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .filter-checkbox {
    font-size: 16px;
    gap: 8px;
  }
}

@media screen and (max-width: 430px) {
  .filter-checkbox {
    font-size: 14px;
    gap: 5px;

  }
}

.filter-checkbox input {
  width: 22px;
  height: 22px;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  margin: 0;
}

@media (max-width: 768px) {
  .filter-checkbox input {
    width: 18px;
    height: 18px;
  }
}

.filter-checkbox input:checked {
  background-color: #f24e35;
  border-color: #f24e35;
}

.filter-checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .filter-checkbox input:checked::after {
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
  }
}

.filter-tag-check input {
  display: none;
}

.filter-tag-check span {
  display: inline-block;
  padding: 5px 30px;
  border: 1px solid #ABABAB;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  color: #2F2D2B;
}

@media (max-width: 768px) {
  .filter-tag-check span {
    padding: 4px 15px;
    font-size: 14px;
  }
}

.filter-tag-check input:checked+span {
  background-color: #2F2D2B;
  color: #fff;
  border-color: #2F2D2B;
}

.c-filter__btn-wrap {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 430px) {
  .c-filter__btn-wrap {
    margin-top: 10px;
  }
}

.c-filter__submit {
  display: inline-block;
  width: 320px;
  height: 54px;
  background-color: #f24e35;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.c-filter__submit:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .c-filter__submit {
    width: 100%;
  }
}

/* 検索結果数 */
.c-result-count {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.c-result-count .count-num {
  font-size: 48px;
  color: #f24e35;
}

@media (max-width: 768px) {
  .c-result-count {
    font-size: 20px;
  }

  .c-result-count .count-num {
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  .c-result-count {
    margin-bottom: 15px;
  }
}

/* カードグリッド */
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;

}

@media (max-width: 1080px) {
  .c-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c-card-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-orange {
  color: #f24e35;
}

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

.u-sp-only--xsm {
  display: none;
}

@media (max-width: 420px) {
  .u-sp-only--xsm {
    display: block;
  }
}

.u-nowrap {
  white-space: nowrap;
}

/* ========================================
    トップページ
    ======================================== 
*/
@media (max-width: 600px) {
  .main--top {
    padding-top: 40px;
  }
}

.top-switch-info {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .top-switch-info {
    padding: 60px 0;
  }
}

@media screen and (max-width: 600px) {
  .top-switch-info {
    padding-top: 20px;
  }
}

.top-switch-card {
  background-color: #f24e35;
  border-radius: 50px 0 50px 0;
  padding: 180px 70px 130px;
  position: relative;
  color: #fff;
}

@media (max-width: 1080px) {
  .top-switch-card {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .top-switch-card {
    border-radius: 30px;
    padding: 60px 20px 40px;
  }
}

/* 装飾アイコン */
.top-switch-card__icon-top {
  position: absolute;
  top: 0px;
  right: -40px;
  width: clamp(100px, 22vw, 350px);
  z-index: 2;
  transform: translateY(-50%);
  animation: icon-top-animation 2s steps(1) infinite;
}

@keyframes icon-top-animation {
  0% {
    transform: translateY(-50%) rotate(-2deg);
  }

  50% {
    transform: translateY(-50%) rotate(2deg);
  }

  100% {
    transform: translateY(-50%) rotate(-2deg);
  }
}

.top-switch-card__icon-top img {
  width: 100%;
  height: auto;
}

@media (max-width: 1080px) {
  .top-switch-card__icon-top {
    top: 0px;
    right: -20px;
    width: 140px;
  }
}

@media (max-width: 768px) {
  .top-switch-card__icon-top {
    width: 100px;
    top: 0px;
    right: -10px;
  }
}

.top-switch-card__icon-bottom {
  position: absolute;
  bottom: -80px;
  left: 70px;
  width: 220px;
  height: auto;
  z-index: 2;
  animation: icon-bottom-animation 2s steps(1) infinite;
}

@keyframes icon-bottom-animation {
  0% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

.top-switch-card__icon-bottom img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .top-switch-card__icon-bottom {
    bottom: -30px;
    left: -20px;
    width: 180px;
  }
}

@media (max-width: 768px) {
  .top-switch-card__icon-bottom {
    width: 120px;
    bottom: -20px;
    left: -10px;
  }
}

@media screen and (max-width: 600px) {
  .top-switch-card__icon-bottom {
    bottom: -10px;
    left: -20px;
    width: 90px;
  }
}

@media screen and (max-width: 420px) {
  .top-switch-card__icon-bottom {
    width: 80px;
  }
}

/* コンテンツエリア */
.top-switch-card__content {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  justify-content: space-around;
  z-index: 1;
}

@media (max-width: 1080px) {
  .top-switch-card__content {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .top-switch-card__content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.top-switch-card__text-box {
  width: 42%;
}

@media (max-width: 768px) {
  .top-switch-card__text-box {
    width: 100%;
  }
}

/* タイトル */
.top-switch-card__title {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 43px;
  position: relative;
}

.u-stretched-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1200px) {
  .top-switch-card__title {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 1080px) {
  .top-switch-card__title {
    grid-template-columns: 98px 1fr;
    gap: 10px;
  }
}

.top-switch-card__title-main {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  width: fit-content;
}

@media (max-width: 1200px) {
  .top-switch-card__title-main {
    font-size: 40px;
  }
}

@media (max-width: 1080px) {
  .top-switch-card__title-main {
    font-size: 32px;
  }
}

.top-switch-card__title-img {
  background-color: #fff;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  height: 70px;
}

@media (max-width: 1200px) {
  .top-switch-card__title-img {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .top-switch-card__title-img {
    height: 50px;
  }
}

.top-switch-card__title-img img {
  width: 80%;
  position: absolute;
  height: auto;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/* 説明文 */
.top-switch-card__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  display: grid;
  grid-template-areas: "stack";
}

.top-switch-card__desc p {
  grid-area: stack;
  opacity: 0;
  visibility: hidden;
}

.top-switch-card__desc p.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1200px) {
  .top-switch-card__desc {
    font-size: 18px;
  }
}

@media (max-width: 1080px) {
  .top-switch-card__desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .top-switch-card__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* ボタン */
@media (max-width: 768px) {
  .top-switch-card__btn-wrapper {
    text-align: center;
  }
}

.top-switch-card__btn {
  display: inline-block;
  padding: 15px 60px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.top-switch-card__btn:hover {
  background-color: #fff;
  color: #f24e35;
}

/* 画像エリア */
.top-switch-card__img-box {
  width: 50%;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .top-switch-card__img-box {
    width: 100%;
  }
}

.top-switch-card__main-img {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

.top-switch-card__main-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
  display: block;
}

@media (max-width: 768px) {
  .top-switch-card__main-img img {
    border-radius: 20px;
  }
}

/* フラグ */
.top-switch-card__flag {
  position: absolute;
  top: -5px;
  right: -30px;
  opacity: 0;
  transform: scale(0.4);
  z-index: 5;
}

.top-switch-card__flag-inner {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  position: relative;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: rotate(18deg);
}

.top-switch-card__flag-inner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
}

.top-switch-card__flag-label {
  display: block;
  font-size: 16px;
  color: #707070;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.2;
}

.top-switch-card__flag-label::before {
  content: "\\";
  margin-right: 10px;
  font-weight: normal;
  color: #ccc;
}

.top-switch-card__flag-label::after {
  content: "/";
  margin-left: 10px;
  font-weight: normal;
  color: #ccc;
}

.top-switch-card__flag-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #2F2D2B;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .top-switch-card__flag {
    right: -10px;
    top: 10px;
  }

  .top-switch-card__flag-inner {
    min-width: 160px;
    padding: 10px 15px;
  }

  .top-switch-card__flag-label {
    font-size: 12px;
  }

  .top-switch-card__flag-title {
    font-size: 16px;
  }
}

/* 共通ボタン */
.top-common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f24e35;
  color: #fff;
  width: 260px;
  height: 72px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f24e35;
}

.top-common-btn:hover {
  background-color: #fff;
  color: #f24e35;
}

@media (max-width: 768px) {
  .top-common-btn {
    width: 240px;
    height: 60px;
    font-size: 16px;
  }
}

/* 共通セクションタイトル */
.top-section-title {
  display: flex;
  flex-direction: column;
}

.top-section-title.is-center {
  text-align: center;
  align-items: center;
}

@media (max-width: 600px) {
  .top-section-title.is-center {
    text-align: left;
    align-items: flex-start;
  }
}

.top-section-title__main {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1080px) {
  .top-section-title__main {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .top-section-title__main {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .top-section-title__main {
    font-size: 24px;
  }
}

.top-section-title__sub {
  font-size: 24px;
  font-weight: 500;
  color: #f24e35;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .top-section-title__sub {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .top-section-title__sub {
    font-size: 16px;
    margin-top: 0px;
  }
}

/* イベント情報 */
.top-event {
  padding: 100px 0;
  background-image: url("../img/common/bg.webp");
  background-repeat: repeat;
}

@media (max-width: 768px) {
  .top-event {
    padding: 60px 0;
  }
}

@media screen and (max-width: 600px) {
  .top-event {
    padding-top: 20px;
  }
}

.top-event__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .top-event__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.top-event__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 1080px) {
  .top-event__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.top-event__btn-wrap.is-pc {
  display: block;
}

.top-event__btn-wrap.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .top-event__btn-wrap.is-pc {
    display: none;
  }

  .top-event__btn-wrap.is-sp {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}

/* カレンダー */
.calendar {
  width: 100%;
}

.calendar__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.calendar__current-month {
  font-size: 24px;
  font-weight: 700;
}

.calendar__nav-btns {
  display: flex;
  gap: 5px;
}

.calendar__nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.calendar__nav-btn:hover {
  opacity: 0.8;
}

.calendar__nav-btn img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.calendar__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.calendar__table th,
.calendar__table td {
  border: 1px solid #D9D9D9;
  text-align: center;
  height: 65px;
  vertical-align: middle;
  font-weight: 500;
}

@media (max-width: 768px) {

  .calendar__table th,
  .calendar__table td {
    height: 50px;
  }
}

.calendar__table thead th {
  background-color: #f24e35;
  color: #fff;
  border-color: #f24e35;
  font-size: 18px;
}

@media (max-width: 768px) {
  .calendar__table thead th {
    font-size: 14px;
  }
}

.calendar__day {
  font-size: 18px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .calendar__day {
    font-size: 14px;
  }
}

.calendar__day.is-sunday {
  color: #f24e35;
}

.calendar__day.is-saturday {
  color: #3885DC;
}

.calendar__day.is-other-month {
  color: #BABABA;
  cursor: default;
}

.calendar__day.is-today {
  background-color: rgba(242, 78, 53, 0.2);
}

.calendar__day.is-active {
  background-color: #f24e35;
  color: #fff !important;
}

.calendar__day.is-active span {
  border-color: #fff;
}

.calendar__day.is-event span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #f24e35;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .calendar__day.is-event span {
    width: 30px;
    height: 30px;
  }
}

/* イベントリスト */
.top-event__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

@media (max-width: 600px) {
  .top-event__list {
    gap: 60px;
    padding-bottom: 60px;
  }
}

.top-event__no-items {
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}

.top-event-item {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .top-event-item {
    flex-direction: column;
  }
}

.top-event-item__img {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 15px 0 15px 0;
  overflow: hidden;
  position: relative;
}

.top-event-item__img img {
  object-fit: cover;
}

@media (max-width: 1200px) {
  .top-event-item__img {
    width: 240px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .top-event-item__img {
    width: 100%;
    height: 200px;
  }
}

.top-event-item__status {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.top-event-item__status.is-coming {
  background-color: #FF9831;
}

.top-event-item__status.is-now {
  background-color: #f24e35;
}

.top-event-item__status.is-ended {
  background-color: #707070;
}

.top-event-item__no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.top-event-item__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.top-event-item__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .top-event-item__title {
    font-size: 18px;
  }
}

.top-event-item__info {
  margin-bottom: 20px;
}

.top-event-item__info-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}

.top-event-item__info-row dt {
  flex-shrink: 0;
  width: 85px;
  height: 28px;
  border: 1px solid #2F2D2B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@media (max-width: 600px) {
  .top-event-item__info-row dt {
    font-size: 14px;
    width: 70px;
  }
}

.top-event-item__info-row dd {
  color: #2F2D2B;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.top-event-item__btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 40px;
  background-color: #f24e35;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #f24e35;
}

@media (max-width: 768px) {
  .top-event-item__btn {
    font-size: 14px;
    margin: 0 auto;
  }
}

.top-event-item__btn:hover {
  background-color: #fff;
  color: #f24e35;
  border: 1px solid #f24e35;
}

/* 観光モデルコース */
.top-model-course {
  min-height: 100vh;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.top-model-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
}

@media (max-width: 600px) {
  .top-model-course::before {
    width: 95%;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .top-model-course {
    height: auto;
    min-height: auto;
    padding: 80px 0 120px;
  }
}

@media (max-width: 600px) {
  .top-model-course {
    padding: 30px 0 90px;
  }
}

.top-model-course__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
}

@media (max-width: 1500px) {
  .top-model-course__inner {
    gap: 25px;
  }
}

@media (max-width: 1080px) {
  .top-model-course__inner {
    gap: 15px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .top-model-course__inner {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .top-model-course__inner {
    padding: 0 10px;
  }
}

.top-model-course__side {
  width: 30%;
  height: 100vh;
  position: relative;
}

@media (max-width: 768px) {
  .top-model-course__side {
    order: 2;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
  }

  .top-model-course__side.is-right {
    order: 3;
    margin-top: -20px;
  }
}

.top-model-course__slider {
  height: 100%;
}

@media (max-width: 768px) {
  .top-model-course__slider {
    height: auto;
  }
}

.top-model-course__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top-model-course__slider .swiper-slide {
  height: auto;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .top-model-course__slider .swiper-slide {
    padding: 0 5px;
    width: 200px;
  }
}

.top-model-course__slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 768px) {
  .top-model-course__slider .swiper-slide img {
    border-radius: 10px;
  }
}

.top-model-course__content {
  flex: 1;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px 20px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .top-model-course__content {
    order: 1;
    padding: 20px 15px;
    background-color: transparent;
  }
}

.top-model-course__content .top-section-title {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .top-model-course__content .top-section-title {
    margin-bottom: 25px;
  }
}

.top-model-course__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media (max-width: 1380px) {
  .top-model-course__desc br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .top-model-course__desc br {
    display: block;
  }
}

@media (max-width: 1080px) {
  .top-model-course__desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .top-model-course__desc {
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .top-model-course__desc {
    font-size: 14px;
  }
}

.top-model-course__desc p {
  margin-bottom: 2em;
}

.top-model-course__desc p:last-child {
  margin-bottom: 0;
}

.top-model-course__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.top-model-course__bg img {
  width: 100%;
  height: auto;
}

.top-model-course__btn-wrap {
  text-align: center;
}

.top-model-course__accent {
  width: 40%;
  margin: 0 0 0 auto;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .top-model-course__accent {
    width: 66%;
  }
}

/* 観光協会のメンバー */
.top-member {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .top-member {
    padding: 60px 0;
  }
}

.top-member__inner .top-section-title {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .top-member__inner .top-section-title {
    margin-bottom: 40px;
  }
}

.top-member__list {
  display: grid;
  gap: 80px 40px;
  margin-bottom: 80px;
}

.top-member__list.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1080px) {
  .top-member__list {
    gap: 60px 30px;
    margin-bottom: 60px;
  }

  .top-member__list.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-member__list {
    gap: 40px;
    margin-bottom: 40px;
  }

  .top-member__list.grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-member__item {
  text-align: center;
  transition: transform 0.3s ease;
}

.top-member__item:hover {
  transform: translateY(-5px);
}

.top-member__item:hover .top-member__name {
  color: #f24e35;
}

.top-member__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.top-member__img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  background-color: #D9D9D9;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .top-member__img {
    margin-bottom: 10px;
  }
}

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

.top-member__img .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.top-member__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-member__category {
  color: #f24e35;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .top-member__category {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .top-member__category {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .top-member__category {
    font-size: 16px;
  }
}

.top-member__line {
  display: block;
  width: 40px;
  height: 1.5px;
  background-color: #f24e35;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .top-member__line {
    margin: 8px 0;
  }
}

.top-member__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .top-member__name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .top-member__name {
    font-size: 14px;
  }
}

.top-member__btn-wrap {
  text-align: center;
}

.top-member__accent {
  width: 40%;
  max-width: 300px;
  transform: translateY(100%);
  position: relative;
  z-index: 2;
}

/* 観光おすすめスポット */
.top-spot {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
}

.top-spot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88vw;
  height: 100%;
  background-color: #F6F6F6;
  background-image: url("../img/common/bg.webp");
  background-repeat: repeat;
  background-blend-mode: multiply;
  border-radius: 50px 0 50px 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .top-spot {
    padding: 60px 0;
  }

  .top-spot::before {
    width: 100%;
    border-radius: 30px 0 30px 0;
  }
}

@media (max-width: 600px) {
  .top-spot {
    padding-bottom: 20px;
  }

  .top-spot::before {
    border-radius: 20px 0 20px 0;
  }
}

.top-spot__accent {
  position: absolute;
  bottom: 100px;
  right: 10vw;
  width: clamp(60px, 10vw, 140px);
  z-index: 2;
  animation: icon-accent-animation 2s steps(1) infinite;
}

@media (max-width: 768px) {
  .top-spot__accent {
    bottom: -50px;
  }
}

@keyframes icon-accent-animation {
  0% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-20px) rotate(4deg);

    @media (max-width: 600px) {
      transform: translateY(-6px) rotate(4deg);
    }
  }

  100% {
    transform: translateY(0) rotate(-4deg);
  }
}

.top-spot__inner {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .top-spot__inner {
    width: 90vw;
  }
}

@media (max-width: 600px) {
  .top-spot__inner {
    width: 100%;
    padding: 0 15px;
  }
}

.top-spot__inner .top-section-title {
  margin-bottom: 80px;
}

.top-spot__sub-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.top-spot__sub-title--area {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}

.top-spot__sub-title-main {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #2F2D2B;
}

.top-spot__sub-title-sub {
  font-size: 18px;
  font-weight: 500;
  color: #f24e35;
  display: block;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .top-spot__sub-title-main {
    font-size: 24px;
  }

  .top-spot__sub-title-sub {
    font-size: 16px;
  }
}

/* エリアから探す */
.top-spot__area {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .top-spot__area {
    margin-bottom: 60px;
  }
}

.top-spot__area-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

@media (max-width: 1080px) {
  .top-spot__area-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-spot__area-content {
    flex-direction: column;
    gap: 40px;
  }
}

.top-spot__area-map {
  width: 45%;
  max-width: 520px;
  position: relative;
}

@media (max-width: 768px) {
  .top-spot__area-map {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .top-spot__area-map {
    width: 100%;
  }
}

.top-spot__area-map img {
  width: 100%;
  height: auto;
}

.top-spot__area-list {
  width: 40%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .top-spot__area-list {
    width: 100%;
  }
}

.top-spot__area-list li {
  border-bottom: 1px dotted #B5B5B5;
}

.top-spot__area-list a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  text-decoration: none;
  color: #2F2D2B;
  transition: color 0.3s;
}

.top-spot__area-list a:hover {
  color: #f24e35;
}

.top-spot__area-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.top-spot__area-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-spot__area-name {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .top-spot__area-name {
    font-size: 18px;
  }

  .top-spot__area-num {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 600px) {
  .top-spot__area-name {
    font-size: 18px;
  }

  .top-spot__area-num {
    width: 26px;
    height: 26px;
  }
}

.top-spot__area-map-num {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  z-index: 2;
  transition: transform 0.3s ease;
}

.top-spot__area-map-num.is-active {
  transform: scale(1.4);
}

.top-spot__area-map-num--4 {
  bottom: 20%;
  left: 20%;
}

.top-spot__area-map-num--5 {
  bottom: 12%;
  left: 5%;
}

.top-spot__area-map-num--1 {
  bottom: 60%;
  left: 70%;
}

.top-spot__area-map-num--3 {
  bottom: 8%;
  left: 39%;
}

.top-spot__area-map-num--2 {
  bottom: 38%;
  left: 55%;
}

/* 下部画像パララックス */
.top-btn-wrap {
  width: 100%;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .top-btn-wrap {
    margin-top: 60px;
  }
}

.top-btn-wrap__inner {
  display: flex;
  width: 100%;
  height: 400px;
  /* 高さを適切な固定値に変更 */
}

@media (max-width: 768px) {
  .top-btn-wrap__inner {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .top-btn-wrap__inner {
    height: 100px;
  }
}

.top-btn-wrap__item {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.top-btn-wrap__item img {
  position: absolute;
  top: 0;
  left: -40%;
  /* さらに左に寄せて、右への移動距離を確保 */
  width: 140%;
  /* 140%に拡大 */
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* カテゴリから探す */
.top-spot__category {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .top-spot__category {
    margin-bottom: 60px;
  }
}

.top-spot__category-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

@media (max-width: 1080px) {
  .top-spot__category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}

@media (max-width: 768px) {
  .top-spot__category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
  }
}

.top-spot__category-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2F2D2B;
  transition: transform 0.3s ease;
}

.top-spot__category-list a:hover {
  transform: translateY(-5px);
}

.top-spot__category-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .top-spot__category-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .top-spot__category-icon {
    width: 40px;
    height: 40px;
  }
}

.top-spot__category-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.top-spot__category-name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 600px) {
  .top-spot__category-name {
    font-size: 14px;
  }
}

/* キーワードから探す */
.top-spot__keyword {
  margin-bottom: 50px;
}

.top-spot__keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 35px;
}

.top-spot__keyword-list a {
  text-decoration: none;
  color: #2F2D2B;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.top-spot__keyword-list a:hover {
  color: #f24e35;
}

@media (max-width: 768px) {
  .top-spot__keyword-list {
    gap: 10px 20px;
  }

  .top-spot__keyword-list a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .top-spot__keyword-list a {
    font-size: 14px;
  }
}

/* リンクエリア */
.link-area {
  margin-bottom: 100px;
  margin-top: 84px;
}

@media (max-width: 768px) {
  .link-area {
    margin-bottom: 60px;
  }
}

.link-area__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .link-area__inner {
    flex-direction: column;
    gap: 50px;
    width: 100%;
    padding-inline: 20px;
  }
}

.link-area__item {
  flex: 1;
  text-decoration: none;
  color: #2F2D2B;
  transition: opacity 0.3s;
  opacity: 0;
  transform: scale(0.8);
}

.link-area__item:hover {
  opacity: 0.8;
}

.link-area__img {
  width: 100%;
  aspect-ratio: 585/400;
  border-radius: 80px 0 80px 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.link-area__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.link-area__item:hover .link-area__img img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .link-area__img {
    border-radius: 50px 0 50px 0;
    margin-bottom: 15px;
  }
}

.link-area__text {
  text-align: center;
}

.link-area__label {
  display: block;
  color: #f24e35;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .link-area__label {
    font-size: 16px;
  }
}

.link-area__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media (max-width: 1080px) {
  .link-area__title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .link-area__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .link-area__title {
    font-size: 18px;
  }
}

/* 三木市特集ブログ */
.top-blog {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
}

.top-blog::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F6F6F6;
  background-image: url("../img/common/bg.webp");
  background-repeat: repeat;
  background-blend-mode: multiply;
  border-radius: 50px 0 50px 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .top-blog {
    padding: 60px 0;
    margin-bottom: 0px;
  }

  .top-blog::before {
    width: 100%;
    border-radius: 30px 0 30px 0;
  }
}

.top-blog__inner {
  width: 94vw;
  margin: 0 0 0 auto;
}

@media (max-width: 768px) {
  .top-blog__inner {
    width: 100%;
    padding-inline: 20px;
    margin: 0 auto;
  }
}

.top-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  padding-right: 6vw;
}

@media (max-width: 768px) {
  .top-blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.top-blog__btn-wrap.is-pc {
  display: block;
}

.top-blog__btn-wrap.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .top-blog__btn-wrap.is-pc {
    display: none;
  }

  .top-blog__btn-wrap.is-sp {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
}

.top-blog__slider-wrap {
  position: relative;
}

.top-blog__title {
  display: flex;
  flex-direction: column;
}

.top-blog__title-main {
  font-size: 50px;
  font-weight: 700;
  color: #2F2D2B;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .top-blog__title-main {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .top-blog__title-main {
    font-size: 24px;
  }
}

.top-blog__title-sub {
  font-size: 24px;
  font-weight: 700;
  color: #f24e35;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .top-blog__title-sub {
    font-size: 18px;
  }
}

.top-blog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f24e35;
  color: #fff;
  width: 260px;
  height: 70px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f24e35;
}

@media (max-width: 768px) {
  .top-blog__btn {
    width: 180px;
    height: 50px;
    font-size: 14px;
  }
}

.top-blog__btn:hover {
  background-color: #fff;
  color: #f24e35;
}

.top-blog__slider-wrap {
  position: relative;
}

.top-blog__slider {
  padding-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .top-blog__slider {
    padding-bottom: 30px;
  }
}

.top-blog__item {
  height: auto;
}

.top-blog__link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 5;
}

.top-blog__img {
  aspect-ratio: 1.4/1;
  border-radius: 15px;
  overflow: hidden;
  background-color: #eee;
  margin-bottom: 15px;
}

.top-blog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.top-blog__link:hover .top-blog__img img {
  transform: scale(1.05);
}

.top-blog__no-img {
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.top-blog__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.top-blog__date {
  font-size: 16px;
  font-weight: 500;
  color: #f24e35;
}

@media (max-width: 768px) {
  .top-blog__date {
    font-size: 14px;
  }
}

.top-blog__category {
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 4px 15px;
  border-radius: 100px;
}

.top-blog__post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-blog__post-title {
    font-size: 16px;
  }
}

.top-blog__pagination {
  position: absolute;
  bottom: 0 !important;
  right: 6vw !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end;
  align-items: center;
  gap: 0 !important;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .top-blog__pagination {
    justify-content: center;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

.top-blog__pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #D9D9D9 !important;
  opacity: 1 !important;
  margin: 0 0 0 10px !important;
  transition: all 0.3s ease;
}

.top-blog__pagination .swiper-pagination-bullet:first-child {
  margin-left: 0 !important;
}

.top-blog__pagination .swiper-pagination-bullet-active {
  background: #f24e35 !important;
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .policy h2 {
    font-size: 20px;
    margin-bottom: 4px;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .policy h2 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 4px;
  }
}

.policy h2::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #f24e35;
  border-radius: 50%;
}

.policy__content {
  line-height: 1.5;
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p {
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 600px) {
  .policy__content p {
    font-size: 14px;
  }
}

/* ========================================
    リーフレット
    ======================================== */
.leaflet__list {
  gap: 140px 36px;
}

@media (max-width: 600px) {
  .leaflet__list {
    gap: 50px 15px;
  }
}

.leaflet__item .leaflet__item-image {
  transition: all 0.3s ease;
}

.leaflet__item:hover .leaflet__item-image {
  transform: translateY(-10px);
}

.leaflet__item h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .leaflet__item h2 {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media (max-width: 420px) {
  .leaflet__item h2 {
    font-size: 13px;
    margin-top: 10px;
  }
}

/* ========================================
ガイドボランティアと巡る三木
    ======================================== */
.guide-tour__section {
  padding: 80px 0;
  padding-top: 30px;
}

@media (max-width: 600px) {
  .guide-tour__section {
    padding: 20px 0;
  }
}

.guide-tour__description {
  margin-top: 40px;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 600px) {
  .guide-tour__description {
    margin-top: 20px;
    font-size: 14px;
  }
}

.guide-tour__steps {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 600px) {
  .guide-tour__steps {
    margin-top: 30px;
    gap: 20px;
  }
}

.guide-tour__step {
  display: flex;
  border: 1px solid #2F2D2B;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .guide-tour__step {
    flex-direction: column;
  }
}

.guide-tour__step-head {
  background-color: #2F2D2B;
  color: #fff;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 20px;
}

@media (max-width: 768px) {
  .guide-tour__step-head {
    width: 100%;
    flex-direction: row;
    padding: 15px 20px;
    justify-content: flex-start;
    gap: 15px;
  }
}

.guide-tour__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #2F2D2B;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 600px) {
  .guide-tour__step-num {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.guide-tour__step-ttl {
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .guide-tour__step-ttl {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .guide-tour__step-ttl {
    font-size: 18px;
  }
}

.guide-tour__step-body {
  background-color: #fff;
  flex-grow: 1;
  padding: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .guide-tour__step-body {
    padding: 20px;
  }
}

.guide-tour__step-content {
  width: 100%;
}

.guide-tour__step-txt {
  line-height: 1.8;
  margin-bottom: 25px;
}

.guide-tour__step-txt:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .guide-tour__step-txt {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
}

.guide-tour__price {
  margin-top: 20px;
}

.guide-tour__price-label {
  color: #f24e35;
  font-weight: 500;
  margin-bottom: 5px;
}

.guide-tour__price-list {
  display: flex;
  gap: 60px;
}

@media (max-width: 600px) {
  .guide-tour__price-list {
    flex-direction: column;
    gap: 10px;
  }
}

.guide-tour__price-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.guide-tour__price-name {
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 600px) {
  .guide-tour__price-name {
    font-size: 14px;
  }
}

.guide-tour__price-val {
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .guide-tour__price-val {
    font-size: 18px;
  }
}

.guide-tour__recruit-btn-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .guide-tour__recruit-btn-wrap {
    margin-top: 30px;
  }
}

/* ========================================
    三木市観光協会について
    ======================================== */
.about-tourism {
  font-weight: 500;
}

.about-tourism__section {
  margin-bottom: 120px;
}

@media (max-width: 600px) {
  .about-tourism__section {
    margin-bottom: 40px;
  }
}

.about-tourism__section:last-child {
  margin-bottom: 0;
}

.about-tourism__text {
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 17px;
}

@media (max-width: 600px) {
  .about-tourism__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.about-tourism__business-box {
  background-color: #F2F2F2;
  border-radius: 10px;
  padding: 60px 80px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .about-tourism__business-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

.about-tourism__business-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 600px) {
  .about-tourism__business-list {
    gap: 10px;
  }
}

.about-tourism__business-item {
  display: flex;
  align-items: baseline;
  gap: 25px;
}

@media (max-width: 600px) {
  .about-tourism__business-item {
    gap: 15px;
  }
}

.about-tourism__business-item .num {
  color: #f24e35;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1;
}

@media (max-width: 600px) {
  .about-tourism__business-item .num {
    font-size: 18px;
  }
}

.about-tourism__business-item .txt {
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .about-tourism__business-item .txt {
    font-size: 14px;
  }
}

/* 協会の概要 テーブル */
.about-tourism__table {
  position: relative;
}

.about-tourism__table-row {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #AAAAAA;
  position: relative;
}

.about-tourism__table-row::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 10em;
  height: 1px;
  background-color: #f24e35;
}

@media screen and (max-width: 600px) {
  .about-tourism__table-row::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-tourism__table-row {
    flex-direction: column;
    padding: 15px 0;
    gap: 10px;
  }
}

.about-tourism__table dt {
  width: 10em;
  flex-shrink: 0;
  color: #f24e35;
  font-weight: bold;
}

@media (max-width: 600px) {
  .about-tourism__table dt {
    width: 100%;
    font-size: 14px;
  }
}

.about-tourism__table dd {
  flex-grow: 1;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .about-tourism__table dd {
    font-size: 14px;
  }
}

.about-tourism__file {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .about-tourism__file {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.about-tourism__file-name {
  font-size: 16px;
}

@media (max-width: 600px) {
  .about-tourism__file-name {
    font-size: 13px;
  }
}

.about-tourism__file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  border: 1px solid #2F2D2B;
  border-radius: 100px;
  background-color: #fff;
  color: #2F2D2B;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.about-tourism__file-btn:hover {
  background-color: #2F2D2B;
  color: #fff;
}

@media (max-width: 600px) {
  .about-tourism__file-btn {
    min-width: 140px;
    height: 36px;
    font-size: 12px;
  }
}

/* アクセス */
.about-tourism__access-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .about-tourism__access-content {
    flex-direction: column;
  }
}

.about-tourism__access-map {
  flex: 1;
  width: 100%;
}

.about-tourism__access-map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
}

.about-tourism__access-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-tourism__access-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 600px) {
  .about-tourism__access-title {
    font-size: 20px;
  }
}

.about-tourism__access-icon-car {
  width: 36px;
  height: auto;
}

.about-tourism__access-icon-train,
.about-tourism__access-icon-bus {
  width: 21px;
  height: auto;
}

.about-tourism__access-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #f24e35;
  margin-bottom: 5px;
}

@media (max-width: 600px) {
  .about-tourism__access-subtitle {
    font-size: 16px;
  }
}

.about-tourism__access-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .about-tourism__access-list {
    font-size: 14px;
  }
}

.about-tourism__access-list li {
  position: relative;
  padding-left: 1.2em;
}

.about-tourism__access-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.about-tourism__access-note {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}

.about-tourism__access-note::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (max-width: 600px) {
  .about-tourism__access-note {
    font-size: 14px;
  }
}

/* ========================================
    レンタルサイクル
    ======================================== */
.bicycle-rental {
  font-weight: 500;
}

.bicycle-rental__section--content {
  margin-bottom: 120px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media screen and (max-width: 600px) {
  .bicycle-rental__section--content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.bicycle-rental__img-wrap {
  width: 45%;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .bicycle-rental__img-wrap {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bicycle-rental__section {
    margin-bottom: 40px;
  }
}

.bicycle-rental__section:last-child {
  margin-bottom: 0;
}

.bicycle-rental__outline {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .bicycle-rental__outline {
    margin-top: 20px;
  }
}

.bicycle-rental__text {
  line-height: 1.5;
  margin-bottom: 40px;
  font-size: 17px;
}

@media (max-width: 600px) {
  .bicycle-rental__text {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.bicycle-rental__text:last-child {
  margin-bottom: 0;
}

/* テーブル */
.bicycle-rental__table {
  position: relative;
}

.bicycle-rental__table-row {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #AAAAAA;
  position: relative;
  align-items: center;
}

.bicycle-rental__table-row::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 10em;
  height: 1px;
  background-color: #f24e35;

  @media screen and (max-width: 600px) {
    display: none;
  }
}

@media (max-width: 600px) {
  .bicycle-rental__table-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
    gap: 10px;
  }

  .bicycle-rental__table-row::after {
    width: 100px;
  }
}

.bicycle-rental__table dt {
  width: 10em;
  flex-shrink: 0;
  color: #f24e35;
  font-weight: bold;
}

@media (max-width: 600px) {
  .bicycle-rental__table dt {
    width: 100%;
    font-size: 14px;
  }
}

.bicycle-rental__table dd {
  flex-grow: 1;
  line-height: 1.6;
  font-size: 17px;
}

@media (max-width: 600px) {
  .bicycle-rental__table dd {
    font-size: 14px;
  }
}

.bicycle-rental__map-text {
  margin-bottom: 20px;
}

.bicycle-rental__map {
  width: 100%;
  max-width: 500px;
}

.bicycle-rental__map img {
  width: 100%;
  height: auto;
}

.bicycle-rental__footer-text-wrap {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 600px) {
  .bicycle-rental__footer-text-wrap {
    margin-top: 40px;
  }
}

.bicycle-rental__footer-text {
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .bicycle-rental__footer-text {
    font-size: 14px;
    text-align: left;
  }
}

.bicycle-rental__btns {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 600px) {
  .bicycle-rental__btns {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}

/* ========================================
    入会のご案内（JOIN US）
    ======================================== */
.join-us__nav {
  display: grid;
  width: 100%;
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media (max-width: 600px) {
  .join-us__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }
}

.join-us__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2F2D2B;
  color: #fff;
  width: 240px;
  height: 56px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  padding: 0 10px;
  transition: opacity 0.3s;
}

.join-us__nav-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .join-us__nav-btn {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
}

.join-us__section {
  margin-bottom: 120px;
}

@media (max-width: 600px) {
  .join-us__section {
    margin-bottom: 80px;
  }
}

.join-us__section:last-child {
  margin-bottom: 0;
}

.join-us__text {
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 17px;
}

@media (max-width: 600px) {
  .join-us__text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}

/* 募集要項テーブル */
.join-us__table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.join-us__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #707070;
}

.join-us__table th,
.join-us__table td {
  border: 1px solid #707070;
  padding: 30px;
  text-align: left;
  line-height: 1.5;
}

.join-us__table th {
  background-color: #EFEFEF;
  width: 220px;
  font-weight: 400;
}

.join-us__table td {
  background-color: #fff;
  font-size: 17px;
}

@media (max-width: 600px) {
  .join-us__table {
    border-bottom: none;
  }

  .join-us__table th,
  .join-us__table td {
    padding: 15px;
    font-size: 14px;
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .join-us__table tr {
    display: flex;
    flex-direction: column;
  }

  .join-us__table th {
    width: 100%;
  }

  .join-us__table td {
    width: 100%;
  }
}

.join-us__link {
  display: inline-block;
  color: #707070;
  text-decoration: underline;
  margin-top: 10px;
  font-weight: 400;
}

.join-us__link:hover {
  text-decoration: none;
}

/* ========================================
    お問い合わせページ全体
    ======================================== */

@media (max-width: 600px) {
  .p-contact .container-lg {
    padding: 0px;
  }
}

.p-contact__section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #2F2D2B;
}

@media (max-width: 768px) {
  .p-contact__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* TEL/FAX セクション（デザイン画像上部） */
.p-contact__tel {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .p-contact__tel {
    margin-bottom: 60px;
  }
}

.p-contact__tel-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .p-contact__tel-flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.p-contact__tel-box {
  width: 440px;
  max-width: 100%;
  padding: 50px 20px;
  border: 2px solid #f24e35;
  border-radius: 40px 0 40px 0;
  text-align: center;
  background-color: #fff;
}

@media (max-width: 768px) {
  .p-contact__tel-box {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact__tel-item {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 8px;
  }
}

.p-contact__tel-icon {
  width: 44px;
  margin: 0 auto 10px;
}

.p-contact__tel-icon img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p-contact__tel-icon {
    margin: 0;
    width: 38px;
  }
}

.p-contact__tel-number {
  font-size: 30px;
  font-weight: 700;
  color: #f24e35;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (max-width: 768px) {
  .p-contact__tel-number {
    font-size: 28px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .p-contact__tel-number {
    margin-bottom: 0;
  }
}

.p-contact__tel-time {
  font-size: 16px;
  color: #f24e35;
  font-weight: 500;
}

/* ========================================
    フォームセクション（画像再現）
    ======================================== */
.p-contact__form-section {
  width: 100%;
  margin: 0 auto;
}

.p-contact__form-wrapper {
  background-color: #fff;
  padding: 70px 50px;
}

@media (max-width: 768px) {
  .p-contact__form-wrapper {
    padding: 40px 20px;
    padding-top: 54px;
  }
}

@media (max-width: 600px) {
  .p-contact__form-wrapper {
    padding: 30px 20px;
    padding-top: 54px;
    border-radius: 15px;
  }
}

/* 各入力行のラップ */
.form-unit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 50px;
}

@media (max-width: 768px) {
  .form-unit {
    flex-direction: column;
    margin-bottom: 20px;
    gap: 0px;
  }
}

/* 左側：ラベルエリア */
.form-unit__head {
  width: 240px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .form-unit__head {
    width: 100%;
    margin-bottom: 6px;
    padding-top: 0;
    font-size: 16px;
  }
}

/* 必須ラベル（画像再現：オレンジ枠のカプセル） */
.m-required::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 28px;
  border: 1.5px solid #f24e35;
  color: #f24e35;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
  margin-left: 0;
  line-height: 1;
}

/* 右側：入力コントロールエリア / 確認画面のテキストエリア */
.wpcf7-form-control-wrap,
.form-unit__input-wrap,
.form-unit__textarea-wrap {
  flex: 1;
  width: 100%;
}

/* 確認画面用のテキスト表示スタイル */
.form-unit__input-wrap,
.form-unit__textarea-wrap {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  padding: 10px 0;
}

@media (max-width: 768px) {

  .form-unit__input-wrap,
  .form-unit__textarea-wrap {
    font-size: 16px;
    padding: 0;
  }
}

.form-unit__textarea-wrap {
  white-space: pre-wrap;
}

/* 入力フィールド共通 */
.form-unit__input {
  width: 100%;
  max-width: 440px;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  color: #333;
}

.form-unit__input::placeholder {
  color: #BDBDBD;
}

@media (max-width: 768px) {
  .form-unit__input {
    max-width: 100%;
  }
}

/* テキストエリア */
.form-unit__textarea {
  width: 100%;
  height: 340px;
  padding: 15px 20px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
}

.form-unit__textarea::placeholder {
  color: #BDBDBD;
}

/* ラジオボタンリスト */
.form-unit__radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.form-unit__radio .wpcf7-list-item {
  margin: 0;
  display: block;
}

.form-unit__radio label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 17px;
  color: #333;
}

@media (max-width: 768px) {
  .form-unit__radio label {
    font-size: 15px;
  }
}

.form-unit__radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #f24e35;
  border-radius: 50%;
  position: relative;
  background: #fff;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.form-unit__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #f24e35;
  border-radius: 50%;
}

/* 同意エリア */
.form-consent {
  margin: 60px 0 35px;
  text-align: center;
}

.form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

.form-consent input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #f24e35;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.form-consent input[type=checkbox]:checked {
  background-color: #f24e35;
}

.form-consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.form-consent .form-unit__policy-link {
  color: #707070;
  text-decoration: none;
  border-bottom: 1px solid #707070;
}

/* 送信ボタン（画像再現：オレンジ枠のカプセル） */
.contact__info {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .contact__info {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .contact__info {
    margin-bottom: 20px;
  }
}

.form-submit-wrap {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form__submit {
  display: block;
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
  height: 54px;
  background-color: #fff;
  border: 1px solid #f24e35;
  color: #f24e35;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.form__submit:hover {
  background-color: #f24e35;
  color: #fff;
}

.form__submit:disabled {
  background-color: #eee;
  border-color: #ccc;
  color: #aaa;
  cursor: not-allowed;
}

.form__submit:disabled:hover {
  background-color: #eee;
  color: #aaa;
}

/* 入力画面に戻るボタン */
.wpcf7-previous {
  text-align: center;
  display: block;
  width: 200px;
  background: transparent;
  border: none;
  color: #707070;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.wpcf7-previous:hover {
  opacity: 0.7;
}

/* -------------------------------------------
    送信完了ページ (Thanks)
   ------------------------------------------- */
.p-contact__thanks {
  background-color: #fff;
  padding: 100px 50px;
  text-align: center;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .p-contact__thanks {
    padding: 60px 20px;
  }
}

.p-contact__thanks-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f24e35;
}

@media (max-width: 768px) {
  .p-contact__thanks-text {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.p-contact__thanks-subtext {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 60px;
  color: #333;
}

@media (max-width: 768px) {
  .p-contact__thanks-subtext {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.p-contact__thanks-btn {
  display: flex;
  justify-content: center;
}

/* CF7 固有・エラーメッセージ調整 */
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #f00;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  text-align: center;
  border: none !important;
  font-size: 14px;
}

.event-detail {
  display: grid;
  grid-template-columns: 60% calc(40% - 60px);
  gap: 0 60px;

  align-items: flex-start;
}

@media (max-width: 1080px) {
  .event-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;

  }
}



.event-detail__main {
  min-width: 0;
}

@media (max-width: 1080px) {
  .event-detail__main {
    width: 100%;
  }
}

.event-post__header {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .event-post__header {
    margin-bottom: 20px;
  }
}

.event-post__tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.event-tag.is-coming {
  background-color: #FF9831;
}

.event-tag.is-now {
  background-color: #f24e35;
}

.event-tag.is-ended {
  background-color: #707070;
}

.event-tag.is-area {
  background-color: #f24e35;
  color: #fff;
  gap: 5px;
}

.event-tag.is-area img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}

.event-post__thumb {
  width: 100%;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
}

.event-post__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-post__body {
  margin-bottom: 60px;
}

.event-post__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .event-post__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .event-post__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.event-post__content {
  font-size: 18px;
  line-height: 2;
  color: #2F2D2B;
}

@media (max-width: 768px) {
  .event-post__content {
    font-size: 16px;
  }
}

.event-post__content p {
  margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
  .event-post__content p {
    line-height: 1.75;
    margin-bottom: 1.5em;
  }
}

/* イベント情報テーブル */
.event-info-section {
  margin-top: 80px;
}

@media screen and (max-width: 600px) {
  .event-info-section {
    margin-top: 30px;
  }
}

.event-info-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #f24e35;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .event-info-section__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .event-info-section__title {
    font-size: 18px;
  }
}

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

.event-info-table th,
.event-info-table td {
  padding: 20px 0;
  border-bottom: 1px solid #D9D9D9;
  font-size: 16px;
  vertical-align: top;
}

.event-info-table th {
  width: 150px;
  font-weight: 700;
  text-align: left;
}

@media (max-width: 768px) {
  .event-info-table th {
    width: 100px;
  }
}

.event-info-table td {
  color: #2F2D2B;
  font-weight: 500;
  line-height: 1.6;
}

.event-info-table td a {
  color: #f24e35;
  text-decoration: underline;
}

.event-info-table td a:hover {
  text-decoration: none;
}

/* 戻るボタン */
.event-detail__footer {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .event-detail__footer {
    margin-top: 40px;
  }
}

.event-detail__footer .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 280px;
  height: 54px;
  background-color: transparent;
  border: 1px solid #f24e35;
  border-radius: 50px;
  color: #f24e35;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.event-detail__footer .btn-back img {
  width: 20px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1915%) hue-rotate(343deg) brightness(96%) contrast(97%);
}

.event-detail__footer .btn-back:hover {
  background-color: #f24e35;
  color: #fff;
}

.event-detail__footer .btn-back:hover img {
  filter: brightness(0) invert(1);
}

/* サイドバー */
.event-detail__side {
  min-width: 0;
  position: sticky;
  top: 210px;
}

@media (max-width: 1080px) {
  .event-detail__side {
    width: 100%;
    position: static;
  }
}

.side-title {
  font-size: 24px;
  font-weight: 700;
  color: #2F2D2B;
  padding-bottom: 15px;
  border-bottom: 1px solid #2F2D2B;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .side-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.side-event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-event-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.side-event-item:hover {
  opacity: 0.7;
}

.side-event-item__img {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .side-event-item__img {
    width: 150px;
    height: 100px;
  }
}

.side-event-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-event-item__img .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.side-event-item__content {
  flex: 1;
  min-width: 0;
  padding-top: 5px;
}

.side-event-item__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .side-event-item__title {
    font-size: 16px;
  }
}

.side-event-item__date,
.side-event-item__location {
  font-size: 14px;
  font-weight: 500;
  color: #2F2D2B;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 5px;
  line-height: 1.5;
}

.side-event-item__date span,
.side-event-item__location span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f24e35;
  flex-shrink: 0;
  margin-top: 6px;
}

/* イベント一覧ページ固有スタイル */
/* 日付範囲入力（Event固有） */
.c-filter__range {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .c-filter__range {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .c-filter__range {
    width: 100%;
  }
}

.filter-date-input {
  display: flex;
  width: 260px;
  height: 45px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .filter-date-input {
    width: 220px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .filter-date-input {
    width: 100%;
  }
}

.filter-date-input::before {
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background-color: #707070;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .filter-date-input::before {
    width: 40px;
  }
}

.filter-date-input img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  z-index: 2;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

@media (max-width: 768px) {
  .filter-date-input img {
    left: 10px;
    width: 18px;
  }
}

.filter-date-input input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  border: none;
  font-size: 14px;
  color: #2F2D2B;
  outline: none;
}

@media (max-width: 768px) {
  .filter-date-input input {
    padding: 0 10px;
    font-size: 13px;
  }
}

.filter-date-input input::placeholder {
  color: #ABABAB;
}

.range-separator {
  font-size: 18px;
  color: #707070;
}

@media (max-width: 768px) {
  .range-separator {
    font-size: 14px;
  }
}

@media screen and (max-width: 430px) {
  .range-separator {
    font-size: 12px;
    flex-shrink: 0;
  }
}

/* イベントカード */
.event-card:hover .event-card__img-wrap img {
  transform: scale(1.1);
}

.event-card:hover .event-card__title {
  color: #f24e35;
}

.event-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  margin-bottom: 15px;
}

.event-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card__img-wrap .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.event-card__area-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f24e35;
  color: #fff;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .event-card__area-tag {
    font-size: 14px;
    padding: 6px 14px;
    top: 10px;
    right: 10px;
  }
}

.event-card__area-tag img {
  width: 22px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .event-card__area-tag img {
    width: 18px;
  }
}

.event-card__status {
  display: inline-block;
  padding: 2px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.event-card__status.is-coming {
  background-color: #FF9831;
}

.event-card__status.is-now {
  background-color: #f24e35;
}

.event-card__status.is-ended {
  background-color: #707070;
}

.event-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .event-card__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .event-card__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.event-card__info-row {
  display: flex;
  align-items: center;
  padding: 2px 0;
}

.event-card__info-row dt {
  width: 110px;
  white-space: nowrap;
  height: 36px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2F2D2B;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  padding: 0 10px;
  border: 1px solid #2F2D2B;
  background-color: #F8F8F8;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
  .event-card__info-row dt {
    font-size: 14px;
    width: 100px;
  }
}

.event-card__info-row dt img {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .event-card__info-row dt img {
    width: 16px;
  }
}

.event-card__info-row dd {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #2F2D2B;
}

@media screen and (max-width: 600px) {
  .event-card__info-row dd {
    font-size: 15px;
  }
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #f24e35;
  background-color: #fff;
  color: #f24e35;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50%;
  transition: all 0.3s;
}

.pagination .page-numbers.current {
  background-color: #f24e35;
  color: #fff;
  border-color: #f24e35;
}

.pagination .page-numbers:not(.current):hover {
  border-color: #f24e35;
  color: #f24e35;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 0;
  position: relative;
}

.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.pagination .page-numbers.prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.pagination .page-numbers.next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.page-numbers .dots {
  transform: translateY(-2px);

}

/* Eventページは検索ボタンを黒にする */
.c-filter__submit {
  background-color: #2F2D2B;
}

/* ========================================
   Flatpickr カスタムスタイル
   ======================================== */
.flatpickr-calendar {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border: none;
  width: 340px !important;
  background: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.flatpickr-months {
  background-color: #5D5D5D;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.flatpickr-months .flatpickr-month {
  height: 100%;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flatpickr-months .flatpickr-current-month {
  padding: 0;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  color: #fff;
  margin: 0;
}

.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: auto;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper {
  width: auto;
  display: flex;
  align-items: center;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper input {
  width: 42px !important;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: transparent;
  border: none;
  pointer-events: none;
  text-align: right;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper::after {
  content: "年";
  font-size: 16px;
  margin-left: 0;
  margin-right: 4px;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper span {
  display: none;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  position: relative !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 38px;
  border: 1.5px solid #fff !important;
  border-radius: 8px;
  color: #fff !important;
  fill: #fff !important;
  padding: 0;
  z-index: 10;
  top: 0 !important;
  transition: all 0.3s;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  display: none;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background-color: #fff;
  color: #5D5D5D !important;
}

.flatpickr-months .flatpickr-prev-month::after {
  content: "前の月";
  font-size: 15px;
  font-weight: bold;
}

.flatpickr-months .flatpickr-next-month {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.flatpickr-months .flatpickr-next-month::after {
  content: "次の月";
  font-size: 15px;
  font-weight: bold;
  order: 1;
}

.flatpickr-months .flatpickr-next-month::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(50%);
  order: 2;
  margin-left: 2px;
  margin-top: -1px;
}

.flatpickr-months .flatpickr-next-month:hover::before {
  border-color: #5D5D5D;
}

.flatpickr-weekdays {
  background: #fff;
  padding: 15px 0 5px;
}

.flatpickr-weekdaycontainer {
  display: flex;
  width: 100%;
}

.flatpickr-weekday {
  color: #333;
  font-weight: bold;
  font-size: 18px;
  flex: 1;
  width: 14.2857% !important;
  max-width: 14.2857% !important;
}

.flatpickr-weekday:nth-child(6),
.flatpickr-weekday:nth-child(7) {
  color: #3885DC !important;
}

.flatpickr-days {
  width: 340px !important;
}

.dayContainer {
  width: 340px !important;
  min-width: 340px !important;
  max-width: 340px !important;
  display: flex;
  flex-wrap: wrap;
}

.flatpickr-day {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  height: 48px;
  line-height: 48px;
  width: 14.2857% !important;
  max-width: 14.2857% !important;
  flex-basis: 14.2857% !important;
  margin: 0;
  border-radius: 4px;
  border: none !important;
  outline: none !important;
}

.flatpickr-day:nth-child(7n-1),
.flatpickr-day:nth-child(7n) {
  color: #3885DC !important;
}

.flatpickr-day.today {
  background: transparent !important;
  border: none !important;
}

.flatpickr-day.today::after {
  display: none;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #f24e35 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #E0E0E0 !important;
}

.flatpickr-day:hover {
  background: #f6f6f6;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
  -webkit-appearance: none;
}

/* 観光協会メンバーページ */
.member-card:hover .member-card__img-wrap img {
  transform: scale(1.1);
}

.member-card:hover .member-card__name {
  color: #f24e35;
}

.member-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.member-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .member-card__img-wrap {
    margin-bottom: 10px;
  }
}

.member-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card__img-wrap .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.member-card__area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f24e35;
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .member-card__area-tag {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

.member-card__area-tag img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}

.member-card__category {
  font-size: 16px;
  font-weight: 500;
  color: #2F2D2B;
  margin-bottom: 6px;
}

@media screen and (max-width: 600px) {
  .member-card__category {
    font-size: 14px;
  }
}

.member-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .member-card__name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .member-card__name {
    font-size: 17px;
  }
}

/* ページネーション（共通化しても良いが、一旦eventからコピー） */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #f24e35;
  background-color: #fff;
  color: #f24e35;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50%;
  transition: all 0.3s;
}

.pagination .page-numbers.current {
  background-color: #f24e35;
  color: #fff;
  border-color: #f24e35;
}

.pagination .page-numbers:not(.current):hover {
  border-color: #f24e35;
  color: #f24e35;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 0;
  position: relative;
}

.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.pagination .page-numbers.prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.pagination .page-numbers.next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* おすすめスポット一覧ページ固有スタイル */
.spot-filter .c-filter__submit {
  background-color: #2F2D2B;
}

/* カテゴリタグ（アイコン付き） */
.filter-tag-check.has-icon {
  /* アイコン画像の設定（mask-imageを使用） */
}

.filter-tag-check.has-icon span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  border: 1px solid #f24e35 !important;
  color: #f24e35;
  border-radius: 50px;
  background-color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .filter-tag-check.has-icon span {
    padding: 4px 12px;
    font-size: 14px;
    gap: 5px;
  }
}

.filter-tag-check.has-icon span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #f24e35;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@media (max-width: 768px) {
  .filter-tag-check.has-icon span::before {
    width: 16px;
    height: 16px;
  }
}

.filter-tag-check.has-icon input:checked+span {
  background-color: #f24e35;
  color: #fff;
}

.filter-tag-check.has-icon input:checked+span::before {
  background-color: #fff;
}

.filter-tag-check.has-icon[data-slug=gourmet] span::before {
  -webkit-mask-image: url("../img/icon/gourmet-icon.webp");
  mask-image: url("../img/icon/gourmet-icon.webp");
}

.filter-tag-check.has-icon[data-slug=shopping] span::before {
  -webkit-mask-image: url("../img/icon/shopping-icon.webp");
  mask-image: url("../img/icon/shopping-icon.webp");
}

.filter-tag-check.has-icon[data-slug=activity] span::before {
  -webkit-mask-image: url("../img/icon/activity-icon.webp");
  mask-image: url("../img/icon/activity-icon.webp");
}

.filter-tag-check.has-icon[data-slug=stay] span::before {
  -webkit-mask-image: url("../img/icon/hotel-icon.webp");
  mask-image: url("../img/icon/hotel-icon.webp");
}

.filter-tag-check.has-icon[data-slug=history] span::before {
  -webkit-mask-image: url("../img/icon/history-icon.webp");
  mask-image: url("../img/icon/history-icon.webp");
}

.filter-tag-check.has-icon[data-slug=hardware] span::before {
  -webkit-mask-image: url("../img/icon/jewelry-icon.webp");
  mask-image: url("../img/icon/jewelry-icon.webp");
}

/* キーワード（タグ） */
.spot-filter__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

@media (max-width: 768px) {
  .spot-filter__keywords {
    gap: 8px 15px;
  }
}

.filter-keyword-check input {
  display: none;
}

.filter-keyword-check span {
  font-size: 16px;
  color: #707070;
  cursor: pointer;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .filter-keyword-check span {
    font-size: 14px;
  }
}

.filter-keyword-check span:hover {
  color: #f24e35;
}

.filter-keyword-check input:checked+span {
  color: #f24e35;
  font-weight: 700;
}

.filter-keyword-check input:checked+span::before {
  content: "#";
}

.filter-keyword-check span::before {
  content: "#";
}

/* スポットカード */
.spot-card:hover .spot-card__img-wrap img {
  transform: scale(1.1);
}

.spot-card:hover .spot-card__title {
  color: #f24e35;
}

.spot-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.spot-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  margin-bottom: 15px;
}

.spot-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spot-card__img-wrap .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.spot-card__area-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f24e35;
  color: #fff;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}

@media (max-width: 600px) {
  .spot-card__area-tag {
    font-size: 14px;
  }
}

.spot-card__area-tag img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
}

.spot-card__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f24e35;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  border: 1px solid #f24e35;
  padding: 4px 15px;
  border-radius: 50px;
}

.spot-card__category::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #f24e35;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.spot-card__category[data-slug=gourmet]::before {
  -webkit-mask-image: url("../img/icon/gourmet-icon.webp");
  mask-image: url("../img/icon/gourmet-icon.webp");
}

.spot-card__category[data-slug=shopping]::before {
  -webkit-mask-image: url("../img/icon/shopping-icon.webp");
  mask-image: url("../img/icon/shopping-icon.webp");
}

.spot-card__category[data-slug=activity]::before {
  -webkit-mask-image: url("../img/icon/activity-icon.webp");
  mask-image: url("../img/icon/activity-icon.webp");
}

.spot-card__category[data-slug=stay]::before {
  -webkit-mask-image: url("../img/icon/hotel-icon.webp");
  mask-image: url("../img/icon/hotel-icon.webp");
}

.spot-card__category[data-slug=history]::before {
  -webkit-mask-image: url("../img/icon/history-icon.webp");
  mask-image: url("../img/icon/history-icon.webp");
}

.spot-card__category[data-slug=hardware]::before {
  -webkit-mask-image: url("../img/icon/jewelry-icon.webp");
  mask-image: url("../img/icon/jewelry-icon.webp");
}

.spot-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.3s;
  color: #2F2D2B;
}

@media (max-width: 768px) {
  .spot-card__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .spot-card__title {
    font-size: 18px;
  }
}

.spot-card__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #2F2D2B;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .spot-card__excerpt {
    font-size: 14px;
  }
}

.spot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.spot-card__tag {
  font-size: 14px;
  font-weight: 500;
  color: #707070;
}

.spot-card__tag::before {
  content: "#";
}

@media (max-width: 768px) {
  .spot-card__tag {
    font-size: 13px;
  }
}

/* おすすめスポット詳細ページ */

.single-spot-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f24e35;
  border: 1px solid #f24e35;
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .single-spot-hero__category {
    margin-bottom: 10px;
  }
}

.single-spot-hero__category::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #f24e35;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.single-spot-hero__category[data-slug=gourmet]::before {
  -webkit-mask-image: url("../img/icon/gourmet-icon.webp");
  mask-image: url("../img/icon/gourmet-icon.webp");
}

.single-spot-hero__category[data-slug=shopping]::before {
  -webkit-mask-image: url("../img/icon/shopping-icon.webp");
  mask-image: url("../img/icon/shopping-icon.webp");
}

.single-spot-hero__category[data-slug=activity]::before {
  -webkit-mask-image: url("../img/icon/activity-icon.webp");
  mask-image: url("../img/icon/activity-icon.webp");
}

.single-spot-hero__category[data-slug=stay]::before {
  -webkit-mask-image: url("../img/icon/hotel-icon.webp");
  mask-image: url("../img/icon/hotel-icon.webp");
}

.single-spot-hero__category[data-slug=history]::before {
  -webkit-mask-image: url("../img/icon/history-icon.webp");
  mask-image: url("../img/icon/history-icon.webp");
}

.single-spot-hero__category[data-slug=hardware]::before {
  -webkit-mask-image: url("../img/icon/jewelry-icon.webp");
  mask-image: url("../img/icon/jewelry-icon.webp");
}

.single-spot-hero__title {
  font-size: clamp(18px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #2F2D2B;
}

@media screen and (max-width: 600px) {
  .single-spot-hero__title {
    margin-bottom: 10px;
  }
}

.single-spot-hero__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #2F2D2B;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .single-spot-hero__desc {
    font-size: 14px;
  }
}

.single-spot-content {
  padding-top: 100px;
}

.single-spot-content__thumbs {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.single-spot-content__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-spot-content__thumbs .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

@media (max-width: 768px) {
  .single-spot-content {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .single-spot-content {
    padding-top: 20px;
  }
}

/* 施設概要・アクセス */
.single-spot-info {
  margin-top: 60px;
  padding: 60px 0;
  border-top: 1px dashed #707070;
  border-bottom: 1px dashed #707070;
}

@media (max-width: 768px) {
  .single-spot-info {
    padding: 40px 0;
  }
}

.single-spot-info__section {
  margin-bottom: 60px;
}

.single-spot-info__section:last-child {
  margin-bottom: 0;
}

.single-spot-info__ttl {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 20px;
  font-weight: 700;
  color: #f24e35;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 600px) {
  .single-spot-info__ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.single-spot-info__ttl::before,
.single-spot-info__ttl::after {
  content: "[";
  color: #f24e35;
}

.single-spot-info__ttl::after {
  content: "]";
}

.single-spot-info__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.single-spot-info__table tr {
  border-bottom: 1px solid #D9D9D9;
}

.single-spot-info__table th {
  width: 160px;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #2F2D2B;
  text-align: left;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .single-spot-info__table th {
    width: 120px;
    padding: 15px 10px;
    font-size: 14px;
  }
}

.single-spot-info__table td {
  padding: 20px;
  font-size: 16px;
  color: #2F2D2B;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .single-spot-info__table td {
    padding: 15px 10px;
    font-size: 14px;
  }
}

.single-spot-info__access-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .single-spot-info__access-text {
    margin-bottom: 15px;
  }
}

.single-spot-info__map {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.single-spot-info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 関連記事セクション */
.related-spots {
  margin-top: 100px;
  padding: 60px 40px;
  border-radius: 10px;
}


.related-spots.is-category {
  background-color: #EDEDED;
}

.related-spots.is-category .related-spots__ttl {
  color: #2F2D2B;
}

.related-spots.is-category .related-spots__ttl::before {
  background: url("../img/icon/spot-icon.webp") no-repeat center/contain;
}

.related-spots.is-area {
  background-color: #FFF1EF;
}

.related-spots.is-area .related-spots__ttl {
  color: #2F2D2B;
}

.related-spots.is-area .related-spots__ttl::before {
  background: url("../img/icon/spot-icon.webp") no-repeat center/contain;
}

@media (max-width: 768px) {
  .related-spots {
    padding: 40px 20px;
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .related-spots {
    margin-top: 40px;
  }
}

.related-spots__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .related-spots__ttl {
    font-size: 20px;
  }
}

.related-spots__ttl::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .related-spots__ttl::before {
    width: 20px;
    height: 20px;
  }
}

.related-spots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .related-spots__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.related-spots__item {
  overflow: hidden;
}

.related-spots__item:hover .related-spots__img img {
  transform: scale(1.05);
}

.related-spots__item:hover .related-spots__name {
  color: #f24e35;
}

.related-spots__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-spots__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}

.related-spots__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-spots__img .no-img {
  width: 100%;
  height: 100%;
  background-color: #D9D9D9;
}

.related-spots__body {
  padding: 0 0 10px;
}

.related-spots__name {
  font-size: 24px;
  font-weight: 700;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .related-spots__name {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .related-spots__name {
    font-size: 18px;
  }
}

.related-spots__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  font-size: 16px;
  color: #707070;
}

@media (max-width: 768px) {
  .related-spots__tags {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .related-spots__tags {
    font-size: 14px;
  }
}

.related-spots__tags span::before {
  content: "#";
}

/* 下部ボタン */
.single-spot__bottom {
  margin-top: 80px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .single-spot__bottom {
    margin-top: 40px;
  }
}

.single-spot__bottom .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  background-color: transparent;
  border: 1px solid #f24e35;
  border-radius: 50px;
  text-decoration: none;
  color: #f24e35;
  font-weight: 700;
  transition: all 0.3s;
}

.single-spot__bottom .btn-back:hover {
  background-color: #f24e35;
  color: #fff;
}

/* 会員詳細ページ */


.single-member__container {
  display: grid;
  grid-template-columns: 60% calc(40% - 60px);
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .single-member__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media screen and (max-width: 600px) {
  .single-member__container {
    margin-top: 40px;
  }
}

/* メインコンテンツ */
.single-member-main {
  min-width: 0;
}

.single-member__img-main {
  width: 100%;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .single-member__img-main {
    margin-bottom: 15px;
  }
}

.single-member__img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-member__img-main .no-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #eee;
}

.single-member__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.single-member__gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
}

.single-member__meta {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .single-member__meta {
    margin-bottom: 10px;
  }
}

.single-member__area-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #F24E35;
  color: #fff;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .single-member__area-tag {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

.single-member__area-tag img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}

.single-member__category {
  font-size: 16px;
  color: #2F2D2B;
  font-weight: 700;
}

.single-member__title {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #2F2D2B;
}

.single-member__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #2F2D2B;
  margin-bottom: 60px;
}



@media screen and (max-width: 600px) {
  .single-member__desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
}


.single-member__desc h2 {
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .single-member__desc h2 {
    font-size: 18px;
  }
}

.single-member-info__ttl {
  font-size: 24px;
  font-weight: 700;
  color: #F24E35;
  margin: 60px 0 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 600px) {
  .single-member-info__ttl {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .single-member-info__ttl {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.single-member-info__ttl::before {
  content: "[";
  font-weight: normal;
}

.single-member-info__ttl::after {
  content: "]";
  font-weight: normal;
}

.single-member-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.single-member-info__table tr {
  border-bottom: 1px solid #E5E5E5;
}

.single-member-info__table th {
  width: 160px;
  padding: 25px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #2F2D2B;
  vertical-align: top;
}

@media (max-width: 600px) {
  .single-member-info__table th {
    width: 100px;
    font-size: 14px;
    padding: 15px 0;
  }
}

.single-member-info__table td {
  padding: 25px 0;
  font-size: 15px;
  color: #2F2D2B;
  vertical-align: top;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .single-member-info__table td {
    font-size: 14px;
    padding: 15px 0;
  }
}

.single-member-info__table td a {
  color: inherit;
  text-decoration: underline;
}

.single-member-info__table td a:hover {
  text-decoration: none;
}

.single-member-info__map {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #eee;
  margin-top: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.single-member-info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* サイドバー */
.single-member-sidebar {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: sticky;
  top: 210px;
}

@media (max-width: 768px) {
  .single-member-sidebar {
    position: static;
  }
}

.sidebar-section__ttl {
  font-size: 24px;
  font-weight: 700;
  color: #2F2D2B;
  padding-bottom: 15px;
  border-bottom: 1px solid #2F2D2B;
  margin-bottom: 30px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-item__link {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.sidebar-item__link:hover .sidebar-item__name {
  color: #f24e35;
}

.sidebar-item__link:hover img {
  opacity: 0.8;
}

.sidebar-item__img {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .sidebar-item__img {
    width: 150px;
    height: 100px;
  }
}

.sidebar-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.sidebar-item__img .no-img {
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.sidebar-item__area {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: #F24E35;
  color: #fff;
  padding: 2px 8px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .sidebar-item__area {
    font-size: 14px;
  }
}

.sidebar-item__area img {
  width: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .sidebar-item__area img {
    width: 16px;
  }
}

.sidebar-item__cat {
  font-size: 16px;
  color: #2F2D2B;
  font-weight: 700;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .sidebar-item__cat {
    font-size: 14px;
  }
}

.sidebar-item__name {
  font-size: 20px;
  font-weight: 700;
  color: #2F2D2B;
  line-height: 1.4;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .sidebar-item__name {
    font-size: 16px;
  }
}

/* 下部ボタン */
.single-member__bottom {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .single-member__bottom {
    margin-top: 40px;
  }
}

.btn-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 280px;
  height: 54px;
  border: 1px solid #f24e35;
  border-radius: 50px;
  text-decoration: none;
  color: #f24e35;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
}

.btn-list::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../img/icon/picon_list.webp") no-repeat center/contain;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(1915%) hue-rotate(343deg) brightness(96%) contrast(97%);
}

.btn-list:hover {
  background-color: #f24e35;
  color: #fff;
}

.btn-list:hover::before {
  filter: brightness(0) invert(1);
}

/* ========================================
    検索結果ページ
    ======================================== */
.l-2col {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 1080px) {
  .l-2col {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .l-2col {
    flex-direction: column;
    gap: 60px;
  }
}

.l-2col__main {
  flex: 1;
  min-width: 0;
}

.l-2col__side {
  width: 320px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .l-2col__side {
    width: 100%;
  }
}

/* メインコンテンツ */
.p-blog-list.is-search .p-blog-card__link {
  display: block;
}

.p-blog-list.is-search .p-blog-card__body {
  padding: 0;
}

.p-blog-list.is-search .p-blog-card__title {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .p-blog-list.is-search .p-blog-card__title {
    font-size: 20px;
  }
}

.p-blog-list.is-search .p-blog-card__excerpt {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* サイドバー */
.p-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-sidebar__widget {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .p-sidebar__widget {
    padding: 20px;
  }
}

.p-sidebar__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f24e35;
  display: inline-block;
}

.p-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-sidebar__tag-link {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.p-sidebar__tag-link:hover {
  background-color: #f24e35;
  color: #fff;
  border-color: #f24e35;
}

.p-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-sidebar__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.p-sidebar__list li a:hover {
  color: #f24e35;
}

.p-sidebar__list li a .count {
  font-size: 13px;
  color: #999;
}

.p-sidebar__list li:last-child a {
  border-bottom: none;
}

/* 検索フォーム (サイドバー用) */
.c-sidebar-search .c-search-form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 0 0 0 15px;
  width: 100%;
  overflow: hidden;
}

.c-sidebar-search .c-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px 0;
  background: transparent;
}

.c-sidebar-search .c-search-form input::placeholder {
  color: #ccc;
}

.c-sidebar-search .c-search-form button {
  background: none;
  border: none;
  border-left: 1px solid #ccc;
  cursor: pointer;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.c-sidebar-search .c-search-form button img {
  width: 18px;
  height: 18px;
}

/* 検索結果なし */
.search-no-results {
  padding: 40px 0;
  text-align: center;
}

.search-no-results__text {
  font-size: 17px;
  margin-bottom: 30px;
}

.search-no-results__form {
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.search-no-results__form-label {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 15px;
}

/* ========================================
   モデルコースページ - ナビリスト
   ======================================== */


.m-model-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.m-model-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 600px) {
  .m-model-3col {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .m-model-2col {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

.m-pd60 {
  padding: 0 60px;
}

@media screen and (max-width: 600px) {
  .m-pd60 {
    padding: 0px;
  }
}


.model-plan-nav {
  padding: 60px 0 80px;
  padding-top: 0;
}

@media (max-width: 768px) {
  .model-plan-nav {
    padding: 40px 0 60px;
    padding-top: 0;
  }
}

.model-plan-nav__title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #2F2D2B;
}

@media (max-width: 768px) {
  .model-plan-nav__title {
    margin-bottom: 24px;
  }
}

.model-plan-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .model-plan-nav__list {
    gap: 20px;
  }
}

.model-plan-nav__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.model-plan-nav__link:hover {
  opacity: 0.9;
}

.model-plan-nav__picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.model-plan-nav__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.model-plan__banner {
  padding: 0 5%;
}

/* モデルプラン01 エリアマップ（画像に重ねる・赤枠） */
.model-plan-01-01__img-wrap {
  position: relative;
  display: block;
}

.model-plan-01-01__area-map {
  display: block;
}

.model-plan-01-01__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  /* 初期状態は透明 */
  z-index: 10;
  text-decoration: none;
  transition: background-color 0.3s;
}

.model-plan-01-01__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* --- PC版の配置（適宜%を調整してください） --- */
.model-plan-01-01__area-map-item--1 {
  top: 30%;
  left: 50%;
  width: 15%;
  height: 4%;
}

@media screen and (max-width: 600px) {
  .model-plan-01-01__area-map-item--1 {
    top: 14%;
    left: 2.5%;
    width: 55%;
    height: 2%;
  }
}

.model-plan-01-01__area-map-item--2 {
  top: 78%;
  left: 44%;
  width: 15%;
  height: 4%;
}

@media screen and (max-width: 600px) {
  .model-plan-01-01__area-map-item--2 {
    top: 51.3%;
    left: 2.5%;
    width: 55%;
    height: 2%;
  }
}

.model-plan-01-01__area-map-item--3 {
  top: 97.3%;
  left: 2.5%;
  width: 55%;
  height: 2%;
}

.model-plan-01-01__area-map-inner {
  width: 100%;
  height: 100%;
}

.model-plan-01-01__area-map-inner iframe,
.model-plan-01-01__area-map-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}







/* バックアップ */
/* m-model-content */
/* 
.m-model-content__title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .m-model-content__title {
    font-size: 22px;
  }
}

.m-model-content__title-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .m-model-content__title-icon {
    width: 24px;
    height: 24px;
  }
}

.m-model-content__description {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .m-model-content__description {
    font-size: 14px;
    margin-top: 14px;
  }
}

.m-model-content__address {
  margin-top: 20px;
  font-weight: 700;
}

.m-model-content__address span {
  margin-left: 1em;
  font-weight: 500;
}

.m-model-content__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 0.5em 0.75em;
  text-decoration: none;
  border-radius: 5px;
}

@media screen and (max-width: 600px) {
  .m-model-content__map-link {
    font-size: 14px;
  }
}

.m-model-content__map-link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media screen and (max-width: 600px) {
  .m-model-content__map-link-icon {
    width: 14px;
    height: 14px;
  }
} */

/*# sourceMappingURL=main.css.map */
/* .model-plan-01 .container-lg {
  padding: 0;
}

.model-plan-01-01 {
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-01 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .model-plan-01 {
    padding: 0 16px;
  }
}

.model-plan-01-01__inner {
  grid-template-columns: 1fr .5fr .5fr;
}

@media screen and (max-width: 600px) {
  .model-plan-01-01__inner .m-model-content {
    order: -1;
  }
}

.model-plan-01-02 {
  margin-top: 50px;
}

.model-plan-01-02__inner {
  grid-template-columns: .8fr .5fr .5fr;
}

@media screen and (max-width: 600px) {
  .model-plan-01-02__inner .m-model-content {
    order: -1;
  }
}



.model-plan-01-03 {
  margin-top: 50px;
}

.model-plan-01-03__inner {
  grid-template-columns: 1fr .7fr .6fr;
}

@media screen and (max-width: 600px) {
  .model-plan-01-03__inner .m-model-content {
    order: -1;
  }
}



.model-plan-01-04__picture {
  margin-top: 100px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-04__picture {
    margin-top: 0;
  }
}

.model-plan-01-04__content {
  margin-top: 100px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-04__content {
    margin-top: 0;
    order: -1;
  }
}

.model-plan-01-04__inner {
  grid-template-columns: .7fr .7fr 1fr;
}


@media screen and (max-width: 600px) {
  .model-plan-01-04__img-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.model-plan-01-04__img {
  margin-top: -140px;
  object-position: bottom;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-04__img {
    margin-top: 0;
  }
}

.model-plan-01-05 {
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-05 {
    margin-top: 0px;
  }
}

.model-plan-01-05__inner {
  grid-template-columns: .7fr 1fr;
  align-items: center;
}

.model-plan-01-05__img {
  object-position: bottom;
}

.model-plan-01-05__img-wrap {
  display: grid;
}


.model-plan-01-05__img-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media screen and (max-width: 600px) {
  .model-plan-01-05__img-wrap-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.model-plan-01-05__content01 {
  margin-left: 16%;
  margin-top: 30px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-05__content01 {
    margin-left: 0;
    order: -1;
  }
}

.model-plan-01-05__content02 {
  margin-left: -50px;
}

@media screen and (max-width: 600px) {
  .model-plan-01-05__content02 {
    margin-left: 0;
  }
}

/* モデルプラン01-02 エリアマップ（5個設置・スマホ2個） */
.model-plan-01-02__inner {
  position: relative;
  /* ここを基準にする */
}

.model-plan-01-02__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 2%;
}

.model-plan-01-02__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-01-02__area-map-item--1 {
  top: 13.4%;
  left: 50%;
}

.model-plan-01-02__area-map-item--2 {
  top: 50.5%;
  left: 34%;
}

.model-plan-01-02__area-map-item--3 {
  top: 54.3%;
  left: 60%;
}

.model-plan-01-02__area-map-item--4 {
  top: 77.5%;
  left: 74%;
}

.model-plan-01-02__area-map-item--5 {
  top: 96%;
  left: 5%;
}

@media screen and (max-width: 600px) {
  .model-plan-01-02__area-map-item {
    width: 55%;
    height: 2.3%;
  }

  .model-plan-01-02__area-map-item--1,
  .model-plan-01-02__area-map-item--4,
  .model-plan-01-02__area-map-item--5 {
    display: none;
  }

  .model-plan-01-02__area-map-item--2 {
    top: 51%;
    left: 5%;
  }

  .model-plan-01-02__area-map-item--3 {
    top: 96.5%;
    left: 5%;
  }
}

/* モデルプラン02-01 エリアマップ（3個設置） */
.model-plan-02-01__inner {
  position: relative;
}

.model-plan-02-01__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 4%;
}

.model-plan-02-01__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-02-01__area-map-item--1 {
  top: 38.5%;
  left: 34%;
}

.model-plan-02-01__area-map-item--2 {
  top: 75%;
  left: 60%;
}

.model-plan-02-01__area-map-item--3 {
  top: 89%;
  left: 34%;
}

@media screen and (max-width: 600px) {
  .model-plan-02-01__area-map-item {
    width: 55%;
    height: 2%;
  }

  .model-plan-02-01__area-map-item--1 {
    top: 14%;
    left: 5%;
  }

  .model-plan-02-01__area-map-item--2 {
    top: 45%;
    left: 5%;
  }

  .model-plan-02-01__area-map-item--3 {
    top: 76.2%;
    left: 5%;
  }
}

/* モデルプラン02-02 エリアマップ（4個設置・スマホ3個） */
.model-plan-02-02__inner {
  position: relative;
}

.model-plan-02-02__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 2.5%;
}

.model-plan-02-02__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-02-02__area-map-item--1 {
  top: 23%;
  left: 49.4%;
}

.model-plan-02-02__area-map-item--2 {
  top: 55.5%;
  left: 73.5%;
}

.model-plan-02-02__area-map-item--3 {
  top: 86.5%;
  left: 5.4%;
}

.model-plan-02-02__area-map-item--4 {
  top: 93.5%;
  left: 43.3%;
}

@media screen and (max-width: 600px) {
  .model-plan-02-02__area-map-item {
    width: 55%;
    height: 1.7%;
  }

  .model-plan-02-02__area-map-item--4 {
    display: none;
  }

  .model-plan-02-02__area-map-item--1 {
    top: 14%;
    left: 5%;
  }

  .model-plan-02-02__area-map-item--2 {
    top: 49.4%;
    left: 5%;
  }

  .model-plan-02-02__area-map-item--3 {
    top: 83.4%;
    left: 5%;
  }
}

/* モデルプラン02-03 エリアマップ（PC 3個・スマホ 4個） */
.model-plan-02-03__inner {
  position: relative;
}

.model-plan-02-03__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 2.6%;
}

.model-plan-02-03__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-02-03__area-map-item--1 {
  top: 25.5%;
  left: 35.4%;
}

.model-plan-02-03__area-map-item--2 {
  top: 64%;
  left: 59%;
}

.model-plan-02-03__area-map-item--3 {
  top: 95%;
  left: 5.5%;
}

.model-plan-02-03__area-map-item--4 {
  display: none;
}

/* PCでは非表示 */

@media screen and (max-width: 600px) {
  .model-plan-02-03__area-map-item {
    width: 55%;
    height: 1.3%;
  }

  .model-plan-02-03__area-map-item--4 {
    display: block;
    /* スマホでは表示 */
  }

  .model-plan-02-03__area-map-item--1 {
    top: 37.5%;
    left: 5%;
  }

  .model-plan-02-03__area-map-item--2 {
    top: 64.7%;
    left: 5%;
  }

  .model-plan-02-03__area-map-item--3 {
    top: 87.5%;
    left: 5%;
  }

  .model-plan-02-03__area-map-item--4 {
    top: 10.5%;
    left: 5%;
  }
}

/* モデルプラン03-01 エリアマップ（PC 3個・スマホ 2個） */
.model-plan-03-01__inner {
  position: relative;
}

.model-plan-03-01__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 3%;
}

.model-plan-03-01__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-03-01__area-map-item--1 {
  top: 29%;
  left: 50%;
}

.model-plan-03-01__area-map-item--2 {
  top: 82.3%;
  left: 34%;
}

.model-plan-03-01__area-map-item--3 {
  top: 95%;
  left: 60%;
}

@media screen and (max-width: 600px) {
  .model-plan-03-01__area-map-item {
    width: 55%;
    height: 2%;
  }

  .model-plan-03-01__area-map-item--3 {
    display: none;
    /* スマホでは3つ目を消す */
  }

  .model-plan-03-01__area-map-item--1 {
    top: 21%;
    left: 5%;
  }

  .model-plan-03-01__area-map-item--2 {
    top: 69%;
    left: 5%;
  }
}

/* モデルプラン03-02 エリアマップ（PC 2個・スマホ 3個） */
.model-plan-03-02__inner {
  position: relative;
}

.model-plan-03-02__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 15%;
  height: 4%;
}

.model-plan-03-02__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-03-02__area-map-item--1 {
  top: 74%;
  left: 44%;
}

.model-plan-03-02__area-map-item--2 {
  top: 90%;
  left: 4.7%;
}

.model-plan-03-02__area-map-item--3 {
  display: none;
}

/* PCでは3つ目を消す */

@media screen and (max-width: 600px) {
  .model-plan-03-02__area-map-item {
    width: 55%;
    height: 1.7%;
  }

  .model-plan-03-02__area-map-item--3 {
    display: block;
    /* スマホでは3つ目を出す */
  }

  .model-plan-03-02__area-map-item--1 {
    top: 43.5%;
    left: 5%;
  }

  .model-plan-03-02__area-map-item--2 {
    top: 81%;
    left: 5%;
  }

  .model-plan-03-02__area-map-item--3 {
    top: 13%;
    left: 5%;
  }
}

/* モデルプラン01-03 エリアマップ（2個設置・スマホのみ） */
.model-plan-01-03__inner {
  position: relative;
}

.model-plan-01-03__area-map-item {
  position: absolute;
  border: none;
  border-radius: 4px;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  width: 55%;
  height: 2%;
}

.model-plan-01-03__area-map-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.model-plan-01-03__area-map-item--1 {
  top: 30.3%;
  left: 5%;
}

.model-plan-01-03__area-map-item--2 {
  top: 71.7%;
  left: 5%;
}

.u-hidden {
  display: none !important;
}