:root{
  
  --main-color: #132B88;
  --gray-color:#fafafa;
  --light-blue:#F5FBFF;
  --text-color:#0f0e0e;
  
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body{
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #0f0e0e;
  background: var(--gray-color);
  line-height: 1.8;
}

.container{
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ========= ボタン ========== */
.more-btn{
  border: none;
  background: var(--main-color);
  overflow: hidden;
  border-radius: 100px;
  margin: 48px 0;
  display: block;
  border: solid 1px var(--main-color);
  width: fit-content;
}

.more-btn.center{
  margin: 48px auto;
}

.more-btn a{
  display: block;
  font-weight: 500;
  color: #fff;
  padding: 8px 24px;
}

.more-btn:hover{
  background: #fff;
}

.more-btn:hover a{
  color: var(--main-color);
}

/*========== ヘッダー ==========*/
.header{
  position: absolute;
  inset: 0;
  z-index: 10;
}

/* トップページボタンナビ */
.header .btn-nav{
  display: flex;
  justify-content: space-between;
  max-width: 880px;
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
  padding: 12px 20px;
  align-items: center;
}

.header .logo{
  width: 14%;
  padding: 12px;
  margin: 0 auto;
}

.header .btn-nav .btn-menu{
  width: 50%;
  display: flex;
  justify-content: center;
  flex-shrink: 1;
}

.header .btn-nav .btn-menu li{
  width: 33.33333%;
  border-right: solid 1px #888;;
}

.header .btn-nav .btn-menu li a{
  display: block;
  text-align: center;
  padding: 12px;
}

.header .btn-nav .btn-menu li a svg{
  width: 45px;
}

.header .btn-nav .btn-menu li a span{
  display: block;
  font-weight: 500;
  margin: 6px 0 0 0; 
}

.header .btn-nav .btn-menu li:hover a{
  color: var(--main-color);
}

.header .btn-nav .btn-menu li:hover svg{
  fill: var(--main-color);
}

.header .btn-nav .sub-menu{
  width: 20%;
  flex-shrink: 1;
  margin: 0 auto;
}

.header .btn-nav .sub-menu li{
  margin: 0 0 10px 0;
}

.header .btn-nav .sub-menu li:last-child{
  margin: 0;
}

.header .btn-nav .sub-menu li a{
  font-weight: 500;
}

.header .btn-nav .sub-menu li:hover a{
  color: var(--main-color);
}

/*====== サイドボタン ======*/
.side-menu-btns{
  position: fixed;
  inset: 40% 0 auto auto;
  background: var(--main-color);
  border-radius: 6px 0 0 6px;
  text-align: center;
  z-index: 9999;
  overflow: hidden;
}

.side-menu-btn,
.side-instagram-btn{
  display: block;
  border: none;
  margin: 0;
  padding: 8px 16px 8px 8px;
  overflow: hidden;
}

.side-menu-btn{
  width: 100%;
}

.side-instagram-btn{
  border-bottom: none;
}

.side-instagram-btn a{
  display: block;
}

.side-menu-btn svg{
  width: 34px;
}

.side-instagram-btn svg{
  width: 26px;
  fill: #fff;
}

.side-menu-btn span,
.side-instagram-btn span{
  font-size: .6rem;
  color: #fff;
  display: block;
  margin: 0;
}

.side-instagram-btn span{
  margin: 4px 0 0 0;
}

.side-menu-btn:hover,
.side-instagram-btn:hover{
  background: #fff;
}

.side-menu-btn:hover svg,
.side-instagram-btn:hover svg{
  fill: var(--main-color);
}

.side-menu-btn:hover span,
.side-instagram-btn:hover span{
  color: var(--main-color);
}

.side-nav{
  background: var(--main-color);
  position: fixed;
  right: -100%;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  z-index: 9999;
  border-radius: 12px 0 0 12px;
  transition: right .3s;
  overflow-y: auto;
  max-height: 80vh;
  overscroll-behavior: contain;
  overflow-y: scroll;
}

.side-nav.active{
  right: 0;
}

.side-nav li{
  border-bottom: solid 1px #e7e7e7;
}

.side-nav li a,
.side-nav li.close{
  display: block;
  font-weight: 500;
  color: #fff;
  padding: 16px 40px;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
}

.side-nav li.close{
  cursor: pointer;
}

.side-nav li.close svg{
  fill: #fff;
  margin: 0 4px 0 0;
}

.side-nav li:hover a{
  background: #fff;
  color: var(--main-color);
}

.side-nav li.close:hover{
  background: #000;
}

/* ===== サイドナビ サブメニュー ===== */
.side-menu .sub-menu {
  display: none;
  background: rgba(255,255,255,0.08);
}

.side-menu .sub-menu li {
  border-bottom: solid 1px rgba(255,255,255,0.15);
}

.side-menu .sub-menu li:last-child {
  border-bottom: none;
}

.side-menu .sub-menu li a {
  padding: 12px 24px 12px 36px;
  font-size: .9rem;
  font-weight: 400;
}

.side-menu .sub-menu li:hover a {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* アコーディオン矢印 */
.side-menu .menu-item-has-children > a {
  position: relative;
  padding-left: 48px;
  padding-right: 48px;
}

.side-menu .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}

.side-menu .menu-item-has-children.open > a::after {
  transform: translateY(-30%) rotate(-135deg);
}

.side-menu .menu-item-has-children > a:hover {
  background: #fff;
  color: var(--main-color);
}

.side-menu .menu-item-has-children > a:hover::after {
  border-right-color: var(--main-color);
  border-bottom-color: var(--main-color);
}

.side-menu .menu-item-has-children.open > a {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.side-menu .menu-item-has-children.open > a:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

/* オーバーレイ */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.8);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.active{
  opacity: 1;
  pointer-events: auto;
}

body.no-scroll{
  overflow: hidden;
}

/* ========== サイドナビ 言語切り替え ========== */
.side-lang {
  padding: 16px;
  border-top: solid 1px rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
}

.side-lang li {
  border-bottom: none;
}

.side-lang a {
  text-decoration: none;
}

.side-lang .bogo-language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.side-lang .bogo-language-switcher li a {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  border: solid 1px #fff;
  transition: all .2s;
  text-decoration: none;
}

.side-lang .bogo-language-switcher li a:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}

.side-lang .bogo-language-switcher li.current-lang a {
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.2);
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

/*========== トップページスライドショー ==========*/
.top-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  margin-bottom: 60px;
}

.top-slideshow{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.top-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.background{
  width: 100%;
  height: 100%;
}

.background item{
  height: 100%;
}

.background .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.add-animation {
  animation: zoom-fade 10s both;
}

@keyframes zoom-fade {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.background .slick-list,
.background .slick-track,
.background .slick-slide,
.background .slick-slide > div {
  height: 100%;
}

.top-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 1px 1px 2px #ffffff, -1px 1px 2px #ffffff, 1px -1px 2px #ffffff, -1px -1px 2px #ffffff, 1px 0px 2px #ffffff, 0px 1px 2px #ffffff, -1px 0px 2px #ffffff, 0px -1px 2px #ffffff;
  z-index: 2;
}

/* ========== ステータス ========== */
.top-status {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0 40px;
  z-index: 10;
}

/* 現在の駐車場 */
.parking-status {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: solid 1px var(--main-color);
  border-radius: 6px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: auto;
  width: fit-content;
}

.contents-box .parking-status{
   max-width: 330px;
   max-width: 100%;
   margin: 40px auto;
}

.contents-box .parking-status .parking-list{
  justify-content: center;
}

.parking-label {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  border-right: solid 1px #ddd;
  padding-right: 16px;
}

.parking-list {
  display: flex;
  gap: 16px;
}

.parking-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.parking-name {
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}

.parking-badge {
  display: inline-block;
  min-width: 32px;
  width: 100%;
  height: 32px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #fff;
  padding: 0 4px;
  white-space: nowrap;
}

.parking-badge.empty {
  background: #6aabdf; /* 空：水色 */
}

.parking-badge.crowded {
  background: #8b5a2b; /* 混：茶色 */
}

.parking-badge.full{
  background: #740000; /*満車*/
}

.parking-badge.unknown{
  background: #444; /*未取得*/
}

.parking-badge.crowd-unknown{
  background: #444; /*未取得*/
}

.parking-access {
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  border-left: solid 1px #ddd;
  padding-left: 16px;
  margin-left: auto;
}

.parking-access:hover{
  color: var(--main-color);
}

/* 現在の観光船情報  */
.cruise-status {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: solid 1px var(--main-color);
  border-radius: 6px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  width: fit-content;
}

.contents.page .cruise-status{
  margin: 40px auto;
}

.cruise-label {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  border-right: solid 1px #ddd;
  padding-right: 16px;
  margin: 0!important;
}

.cruise-badge {
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  background: var(--light-blue);
  border-radius: 6px;
  padding: 8px 40px;
  margin: 0!important;
}

.cruise-badge.normal {
  color: var(--main-color);/*通常*/
}

.cruise-badge.partial {
  background: #fcfdea;
  color: #a57600;/*一部運休*/
}

.cruise-badge.suspended {
  background: #fdecea;
  color: #c0392b;/*運休*/
}

.cruise-badge.out-of-hours{
  background: #eee;
  color: #111;
}

.cruise-access {
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  border-left: solid 1px #ddd;
  padding-left: 16px;
  margin-left: auto;
}

.cruise-access:hover{
  color: var(--main-color);
}

/* ========== 最新のお知らせ ========== */
.top-heading{
  margin: 0 0 48px 0;
}

.information-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 32px;
}

.information-list li a{
  display: block;
}

.information-list li:hover{
  opacity: .8;
}

.information-list li .thumbnail{
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 0 0 12px 0;
}

.information-list .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.information-list .thumbnail.attention {
  border: solid 3px #c0392b;
}

.information-list time {
  font-size: .8rem;
  color: #555;
}

.information-list .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px 0;
}

.information-list .category {
  font-size: .75rem;
  font-weight: 500;
  border: solid 1px var(--main-color);
  color: var(--main-color);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}

.information-list .post-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.information-list .thumbnail {
    position: relative;
}

.information-list .urgent-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    z-index: 1;
}

.information-list .urgent-badge--important {
    background-color: #c0392b;
}

.information-list .urgent-badge--attention {
    background-color: #e05500;
}

/* オーバーレイラベル共通 */
.urgent-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    z-index: 1;
}

/* 緊急のお知らせ（important）：濃い赤 */
.urgent-badge--important {
    background-color: #cc0000;
}

/* 重要なお知らせ（attention）：オレンジ系赤 */
.urgent-badge--attention {
    background-color: #e05500;
}

.prev-next{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* ========== トップページ SVG波ディバイダー ========= */

/* background-down：上が#fafafa、下がlight-blue */
.background-down {
  display: block;
  width: 100%;
  height: 120px;
  background: var(--gray-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='%23F5FBFF'/%3E%3Cpath d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40' fill='none' stroke='%23132B88' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-180deg);
}

/* background-up：上がlight-blue、下が#fafafa */
.background-up {
  display: block;
  width: 100%;
  height: 120px;
  background: var(--light-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,40 L1440,80 L0,80 Z' fill='%23fafafa'/%3E%3Cpath d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,40' fill='none' stroke='%23132B88' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-180deg);
}

/* ======== イベント情報 ======== */
.top-events{
  background: var(--light-blue);
}

.top-events .top-heading{
  margin: 100px 0 0 0;
}

.event-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px auto;
  max-width: 1100px;
}

.event-list li a{
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow .3s;
}

.event-list li:hover a{
  box-shadow: none;
}

.event-list time{
  display: block;
  text-align: center;
  font-weight: 500;
  padding: 20px;
}

.event-list .thumbnail{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-list .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-list .event-title {
  font-weight: 500;
  line-height: 1.7;
  padding: 16px;
  font-size: 1rem;
}

.no-events{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 80px 0 40px 0;
}

.freemarket-info{
  text-align: center;
  margin: 40px auto!important;
}

.freemarket{
  display: block;
  background: #fff;
  padding: 16px 40px;
  border: solid 1px var(--main-color);
  border-radius: 6px;
  font-weight: 500;
  color: var(--main-color);
  margin: 0 auto 60px auto;
}

.freemarket:hover{
  background: var(--main-color);
  color: #fff;
}

/* ========== 食べる ========== */
.section-title{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 60px 0;
}

.section-title svg{
  width: 80px;
  height: auto;
  border: solid 2px var(--main-color);
  padding: 12px;
  border-radius: 16px;
  fill: var(--main-color);
  margin: 0 20px 0 0;
}

.eat-section-contents{
  display: flex;
  justify-content: space-between;
}

.eat-section-contents .restaurant-image,
.eat-section-contents .cafe-image{
  margin: 0;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  width: 50%;
}

.eat-section-contents .cafe-image{
  border-radius: 20px 0 0 20px;
}

.eat-section-contents .section-text{
  padding: 0 80px;
  width: 50%;
}

.eat-section-contents .section-text h3{
  font-size: 1.6rem;
  margin: 0 0 32px 0;
}

.eat-section-contents.left{
  flex-flow: row-reverse;
  margin: 68px 0 0 0;
}

/* ========== 買う ========== */
.buy{
  background: var(--light-blue);
}

.buy .section-title{
  margin: 100px 0 48px 0;
}

.loop-image-up,
.loop-image-down{
  overflow: hidden;
  width: 100%;
}

.loop-track {
  display: flex;
  width: max-content;
  animation: loop-scroll 60s linear infinite;
}

.loop-image-item {
  width: 400px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.loop-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes loop-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.loop-image-up .loop-track {
  animation: loop-scroll-reverse 60s linear infinite;
}

@keyframes loop-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.buy p{
  max-width: 880px;
  margin: 60px auto;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0 20px;
}

/* ========== 楽しむ ========== */
.enjoy {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 20px;
}

.enjoy > p {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 40px 0;
}

.enjoy-section-contents {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.enjoy-section-contents .cruise-image {
  width: 59%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.enjoy-section-contents .cruise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enjoy-section-contents .enjoy-section-text {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.enjoy-section-contents .cruise-status {
  width: 100%;
  box-sizing: border-box;
}

.enjoy-section-contents .cruise-status .cruise-badge {
  flex: 1;
  text-align: center;
}

/* enjoy-nav */
.enjoy-nav ul {
  display: grid;
  gap: 20px 40px;
}

.enjoy-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.enjoy-nav li:hover a{
  color: var(--main-color);
}

.enjoy-nav li a::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%23132B88' stroke-width='1.5'/%3E%3Cpath d='M10 8l4 4-4 4' stroke='%23132B88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/*========== 防災教育展示 ==========*/
.top-bousai{
  margin: 60px 0 0 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.top-bousai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.top-bousai p,
.top-bousai .more-btn {
  position: relative;
  z-index: 1;
}

.top-bousai p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.top-bousai .more-btn{
  margin: 0;
}

/* ========== 営業時間 ========== */
.business-time {
  background: var(--light-blue);
  padding: 60px 20px;
}

.business-time .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.business-time .top-heading {
  white-space: nowrap;
  writing-mode: horizontal-tb;
  min-width: 120px;
}

.michinoeki,
.kawanoeki {
  flex: 1;
}

.michinoeki h3,
.kawanoeki h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.michinoeki .holiday,
.kawanoeki .holiday {
  font-weight: 500;
  margin-bottom: 20px;
}

.michinoeki .holiday span,
.kawanoeki .holiday span {
  display: block;
  font-weight: 400;
  margin: 8px 0 0 0;
  font-size: .9rem;
}

.michinoeki dl,
.kawanoeki dl {
  padding: 12px 0 0 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
  border-top: solid 1px #eee;
}

.michinoeki dt,
.kawanoeki dt {
  font-weight: 400;
}

/* ========== リンク ========== */
.links {
  background: #fff;
  padding: 60px 20px;
}

.links .container {
  max-width: 1100px;
  margin: 0 auto;
}

.links ul {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--main-color);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: underline;
}

.links li a:hover{
  text-decoration: none;
}

.links li a::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3' stroke='%23132B88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ========== 地図埋め込み ========== */
.imachizu-map .map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
}

.imachizu-map .map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imachizu-map.page .map-wrap {
  position: relative;
  max-width: 880px;
  margin: 60px auto;
  padding: 0 20px;
  width: 100%;
  aspect-ratio: 3 / 2;
}

/* ========== アクセス ========== */
.access {
  padding: 80px 0 0 0;
  background: var(--light-blue);
}

.access .container {
  max-width: 1000px;
  margin: 0 auto;
}

.access-item {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  border-bottom: solid 1px #ddd;
}

.access-item:first-child {
  padding-top: 0;
}

.access-item:last-child {
  border-bottom: none;
}

.access-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.access-heading img{
  width: 60px;
}

.access-heading h2 {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.access-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-direction h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.access-direction p {
  font-size: .9rem;
  line-height: 1.8;
  color: #333;
}

/* 駐車場情報ボックス */
.access-parking {
  background: var(--gray-color);
  border-radius: 6px;
  padding: 16px 20px;
}

.access-parking .parking-title {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.access-parking p:last-child {
  font-size: .9rem;
  line-height: 1.8;
}

/* ========== フッターサイトマップ ========== */
.sitemap {
  padding: 60px 40px;
}

.sitemap-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 0 48px 0;
  margin: 0 0 48px 0;
  border-bottom: solid 1px #ccc;
}

.sitemap-row:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.sitemap-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.sitemap-heading:hover{
  color: var(--main-color);
}

.sitemap-col ul li {
  margin: 0 0 12px 0;
}

.sitemap-col ul li:hover a{
  color: var(--main-color);
}

.sitemap-col ul li:last-child {
  margin: 0;
}

.footer-links {
  border-top: solid 1px #ccc;
  padding: 48px 0;
}

.footer-links ul {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.footer-links li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-links li a svg{
  width: 40px;
  fill: var(--text-color);
}

.footer-links li a span{
  font-weight: 500;
}

.footer-links li:hover a{
  color: var(--main-color);
}

.footer-links li:hover svg{
  fill: var(--main-color);
}

/*========== フッターリンク集　========== */
.sub-links {
  background: #fff;
  padding: 32px 20px;
}

.sub-links .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sub-links-policy{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sub-links-policy li a{
  font-size: .85rem;
}

.sub-links-policy li:hover a{
  color: var(--main-color);
  text-decoration: underline;
}

/* ========== フッターロゴ・住所 ========== */
.footer-logo {
  background: #fff;
  padding: 60px 20px;
}

.footer-logo .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  width: 160px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-address-item {
  text-align: center;
}

.footer-address-item h3 {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.footer-address-item p {
  font-size: .85rem;
  line-height: 1.8;
  color: #333;
}

/* ========== コピーライト ========== */
.copyright {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: #888;
  padding: 20px;
  background: #fff;
}

/* ========== コンテンツページ ========= */
.contents{
  padding: 0 20px;
}

.header.page{
  position: relative;
}

.page-logo{
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  padding: 24px;
  background: #fff;
  border-radius: 0 0 20px 0;
}

.page-logo img{
  width: 100%;
  height: 100%;
}

.header-bg{
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.pankuzu{
  padding: 12px 20px;
}

.page-title,
.page-heading{
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin: 40px 0;
}

.page-heading{
  font-size: 1.6rem;
}

.contents > p{
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* コンテンツボックス */
.contents-box{
  max-width: 1000px;
  background: #fff;
  border-radius: 16px;
  margin: 100px auto;
  padding: 80px;
}

.contents-box h2{
  text-align: center;
  margin: 120px 0 40px 0;
  padding: 20px 0 0 0;
}

.contents-box h2:first-child{
  margin: 0 0 40px 0;
  padding: 0;
}

.contents-box h3{
  margin: 60px 0 20px 0;
}

.contents-box p{
  max-width: 880px;
  margin: 40px auto;
}

.contents-box p{
  line-height: 2;
}

.contents-box p strong{
  font-weight: 600;
  color: #c0392b;
}

.contents-box p em{
  font-weight: 600;
  font-style: normal;
}

.contents-box p > a{
  color: var(--main-color);
  text-decoration: underline;
}

.contents-box p a:hover{
  text-decoration: none;
}

/* メニュー・おすすめ商品 */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 24px;
  margin: 0 auto;
}

.menu-item__title{
  text-align: center;
  margin: 20px 0;
}

.menu-item__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 0 12px 0;
}

.menu-item__price {
  text-align: center;
}

.menu-item__image.bicycle{
  aspect-ratio: auto;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.menu-item__text {
  margin: 0!important;
}

/* スマホ：1カラムに切り替え */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
}

/* ========== お知らせ記事一覧 ========== */
.info-filter{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1000px;
  gap: 20px;
}

.info-filter-btn{
  background: #fff;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  overflow: hidden;
  width: 30%;
}

.info-filter-btn a{
  text-align: center;
  display: block;
  padding: 8px 28px;
}

.info-filter-btn:hover{
  background: var(--main-color);
}

.info-filter-btn:hover a{
  color: #fff;
}

.contents .information-list{
  max-width: 1100px;
  margin: 100px auto;
}

/* ========== 記事ページ ========= */
.post-contents{
  max-width: 880px;
  margin: 80px auto;
  padding: 0 20px;
}

.post-contents .post-meta{
  margin: 40px 0;
}

.post-contents .post-meta time{
  margin: 0 20px 0 0;
}

.post-contents .post-meta .category{
  border: solid 1px var(--main-color);
  color: var(--main-color);
  padding: 6px 20px;
  border-radius: 100px;
}

.post-contents p{
  line-height: 2;
  margin: 40px 0;
}

.post-contents p strong{
  font-weight: 600;
  color: #c0392b;
}

.post-contents p em{
  font-weight: 600;
}

.post-contents p a{
  color: var(--main-color);
  text-decoration: underline;
}

.post-contents p a:hover{
  text-decoration: none;
}

.more-btn.back-list{
  width: fit-content;
  margin: 40px auto;
}

/* ========== イベントページ ========= */
.event-image{
  margin: 40px 0;
}

.event-poster{
  width: 100%;
  text-align: center;
}

.event-poster button{
  display: block;
  border: none;
  background: var(--main-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  margin: 20px auto;
  font-weight: 500;
}

.event-poster button:hover{
  background: #fff;
  color: var(--main-color);
}

.event-poster img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.event-text{
  width: 100%;
}

.event-info.no-poster .event-text {
  width: 100%;
}

.event-text p{
  margin: 0;
}

.event-date,
.event-time,
.event-place{
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.event-place{
  margin: 0 0 40px 0!important;
}

.other-events{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


.event-body p{
  margin: 20px 0;
}

.event-body h2{
  font-size: 1.2rem;
  margin: 20px 0;
}

/* ==========FAQ========== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq dt {
  cursor: pointer;
  position: relative;
  padding: 1em 2em 1em 1em;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 6px;
  margin: 0;
  font-weight: 500;
}
.faq dt.active {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  margin-bottom: -20px; /* gapを相殺してddとくっつける */
}
.faq dd {
  display: none;
  margin: 0;
  padding: 1em;
  border: 1px solid var(--main-color);
  border-radius: 0 0 6px 6px;
  border-top: none;
}
.faq dd p {
  margin: 0;
}

/* 開閉アイコン */
.faq dt::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
  color: var(--main-color);
}
.faq dt.active::after {
  transform: translateY(-30%) rotate(-135deg);
}

/* ========== お問い合わせフォーム ========== */
.wpcf7 {
  max-width: 680px;
  margin: 0 auto;
}

.wpcf7 label {
  display: block;
  font-weight: 500;
  margin: 0 0 32px 0;
}

.wpcf7 label .required {
  font-size: .75rem;
  font-weight: 500;
  color: #fff;
  background: #c0392b;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0 0 0 8px;
  vertical-align: middle;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  display: block;
  width: 100%;
  margin: 8px 0 0 0;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-color);
  background: var(--gray-color);
  border: solid 1px #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color .3s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--main-color);
  background: #fff;
}

.wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23132B88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  display: block;
  margin: 48px auto 0;
  padding: 12px 48px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--main-color);
  border: solid 1px var(--main-color);
  border-radius: 100px;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.wpcf7 input[type="submit"]:hover {
  background: #fff;
  color: var(--main-color);
}

/* バリデーションエラー */
.wpcf7 .wpcf7-not-valid {
  border-color: #c0392b;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  font-size: .8rem;
  color: #c0392b;
  margin: 6px 0 0 0;
}

/* 送信完了・エラーメッセージ */
.wpcf7-response-output {
  max-width: 680px;
  margin: 32px auto !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  font-size: .9rem;
  text-align: center;
}

.wpcf7-mail-sent-ok,
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--main-color) !important;
  color: var(--main-color);
  background: var(--light-blue);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #c0392b !important;
  color: #c0392b;
  background: #fdecea;
}

.cf7-cf-turnstile{
  margin: 0 auto;
  text-align: center;
}

.wpcf7-spinner{
  display: none;
}