@charset "utf-8";

/* ----------------------------------------------- 共通 ----------------------------------------------------------------------------------------------------------------------------------------- */
/* カスタムプロパティ */
:root {
  --main-color: #47A360;
  --accent-color: #E6703B;
  --sub-accent-color: #1C80C7;
  --main-font-family: "Ubuntu", sans-serif;
}

html {
  scroll-behavior: smooth;
}

#contact, #reservation {
  scroll-margin-top: var(--hdr-h, 100px);
}

@media screen and (max-width:768px) {
  .u-pc {
    display: none;
  }

}

/* =========================================
   Blog Archive 2カラム（メイン + サイドバー）
   対象：archive-blog.php / taxonomy-blog-category.php
   プレフィックス：.blog-archive__*
========================================= */

/* コンテナ（2カラム） */
.blog-archive__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* -------------------------
   サイドバー
------------------------- */
.blog-archive__sidebar {
  position: sticky;
  top: 24px;
  /* 固定ヘッダーがあるなら高さに合わせて調整 */
}

.blog-archive__sidebar-inner {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px 16px 8px;
}

.blog-archive__sidebar-title {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.blog-archive__cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive__cat-item {
  margin: 0;
  padding: 0;
}

.blog-archive__cat-item a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1.5;
}

.blog-archive__cat-item a:hover {
  background: #f5f7fa;
}

.blog-archive__cat-item.is-active a {
  background: #eef5ff;
  border: 1px solid #cfe1ff;
  font-weight: 700;
}

.blog-archive__cat-count {
  opacity: .6;
  font-size: .9em;
  margin-left: .2em;
}

/* -------------------------
   メイン（カード一覧）
------------------------- */
.blog-archive__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive__post {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.blog-archive__post:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  border-color: #e6edf5;
}

.blog-archive__post-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  padding-bottom: 12px;
}

.blog-archive__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 0 10px;
  background: #fafafa;
}

.blog-archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-archive__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 14px;
  font-size: .9rem;
  color: #666;
}

.blog-archive__date {
  white-space: nowrap;
}

.blog-archive__cats {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-archive__title {
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 6px 14px 0;
  margin: 0 0 6px;
}

.blog-archive__excerpt {
  font-size: .95rem;
  color: #555;
  padding: 0 14px;
  margin: 0;
}

/* -------------------------
   ページネーション
------------------------- */
.blog-archive__pagination {
  margin-top: 28px;
}

.blog-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.blog-archive__pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
}

.blog-archive__pagination .page-numbers.current,
.blog-archive__pagination .page-numbers:hover {
  background: #eef5ff;
  border-color: #cfe1ff;
}

/* -------------------------
   空状態
------------------------- */
.blog-archive__empty {
  text-align: center;
  padding: 32px 0;
  color: #777;
}

/* =========================================
   レスポンシブ
========================================= */

/* ～767px（SP） */
@media (max-width: 767px) {
  .blog-archive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-archive__sidebar {
    position: static;
    /* SPでは追従をオフ */
  }

  .blog-archive__posts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-archive__title {
    font-size: 1rem;
  }

  .blog-archive__excerpt {
    font-size: .95rem;
  }
}

/* 768～1023px（タブレット） */
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-archive__posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 大きめディスプレイで若干広げたい場合（任意） */
@media (min-width: 1400px) {
  .blog-archive__grid {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #363936;
}

/* ===============================
▼ ホバー時のチラつき防止＆画像プリロード
   =============================== */
body::after {
  content:
    /* ヘッダー・ボタン類 */
    url("../image/cta2-hover.png") url("../image/info-cta-bg-hover.svg") url("../image/btn-orange-hover.svg") url("../image/menu-hover-btn.svg") url("../image/menu-close-btn.svg") url("../image/menu-btn.svg") url("../image/menu-btn-sp.svg") url("../image/menu-btn-active-sp.svg") url("../image/price-btn-hover.svg")
    /* アイコン類 */
    url("../image/arrow-green.svg") url("../image/arrow-green2.svg") url("../image/line-icon2.svg") url("../image/x-icon2.svg") url("../image/insta-icon2.svg")
    /* CTA・ボタン背景など */
    url("../image/header-cta-sp.png") url("../image/contact-btn.png") url("../image/btn-green-hover.png") url("../image/btn-green.png") url("../image/about-btn-hover1.png") url("../image/about-btn-hover2.png") url("../image/about-btn-hover3.png") url("../image/info-youtube-btn-hover.webp") url("../image/info-btn1-hover.svg") url("../image/info-btn2-hover.svg") url("../image/info-btn3-hover.svg") url("../image/info-btn4-hover.svg") url("../image/contact-btn2.png") url("../image/news-border-hover.png") url("../image/option-box-border-hover.png");
  display: none;
}

/* ホバー時の描画遅延を防ぐ（transitionにopacityだけ使用） */
a img, button img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

a:hover img, button:hover img {
  opacity: 1;
}




img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #363936;
}

a:hover {
  color: #47A360;
}

p {
  font-size: 16px;
  line-height: 1.7;
}

.p-black {
  font-weight: 900;
}

.p-bold {
  font-weight: 700;
}

.p-small {
  font-size: 14px;
}

.p-small a:not(:last-child):after {
  display: inline;
  content: "|";
  padding: 0px 14px;
}

.p-large {
  font-size: 18px;
}

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

.text-left {
  text-align: left;
}

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

.en {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

span {
  font-weight: 400;
}

h1 img {
  /* max-width: 288px; */
  height: 45px;
  height: 50px;
  width: 100%;
  padding: 2px 0;
}

.section-border {
  width: 1px;
  height: 100px;
  margin: 0 0 0 20px;
}


/*///////////////////////////////////////

color

///////////////////////////////////////*/

.green {
  color: #47A360;
}

.gray {
  color: #D5D2D2;
}

.white {
  color: white;
}

.blue {
  color: #1C80C7;
}

.orange {
  color: #EF8150;
}

.bg-gray {
  background-color: #EFEFEF;
}

.bg-gray2 {
  background-color: #FAFAFA;
}

.bg-white {
  background-color: #fff;
}

.bg-green {
  background-color: #47A360;
}

.bg-blue {
  background-color: #1C80C7;
}

.bg-orange {
  background-color: #EF8150;
}

.bg-img {
  background-image: url(../image/event-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}












/*//////////////////////////////////////

layout

//////////////////////////////////////*/

.l-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  /* gap: 10px; */
  gap: 40px 10px;
}

.l-section-wrapper {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 10px;
}

.bg-parts {
  background-image: url(../image/news-bg-parts.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 100px;
  z-index: 10;
  position: sticky;
}

.l-flex-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}










/*//////////////////////////////////////

BUTTON

//////////////////////////////////////*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn img {
  transition: opacity 0.2s ease;
}

.contact-btn:hover img {
  content: url(../image/contact-btn2.png);
}

.btn-green {
  background-image: url(../image/btn-green-bg.svg), url(../image/btn-green-hover.svg);
  width: 200px;
  height: 50px;
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  background-size: cover;
}

.btn-green:hover {
  background-size: 0 0, cover;
  color: #fff !important;
}









/*//////////////////////////////////////

HEADER

//////////////////////////////////////*/

header {
  background-image: url(../image/header-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 45px 0;
  position: sticky;
  z-index: 100;
}

header.active {
  background: #EFEFEF;
  /* ボタン押した時の背景色 */
}

.header__wrapper {
  max-width: 1845px;
  padding: 20px 130px 0 2%;
  margin: 0 auto;
}

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

.menu-btn {
  font-size: 14px;
}

header .l-flex {
  gap: 27px;
}

.header-arrow-icon {
  margin: 0 0 0 9px;
}

li.common-menu.active {
  display: none;
}

header ul li button:hover {
  color: #47A360;
}

header .p-black {
  font-size: 16px;
}

/* ドロップダウン */
.dropdown {
  /*padding: 80px 0 140px 0;
background-image: url(../image/header-bg-parts.png);
background-position: bottom;
background-size: cover;
background-repeat: no-repeat;
height: 100vh;
position: fixed;
overflow-y: auto;
pointer-events: auto; /* 自身はクリック可 */
  width: 100%;

  display: none;
  /* 初期は非表示 */
  background-image: url(../image/header-bg-parts.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 80px 0 140px 0;
  position: fixed;
  overflow-y: auto;
}

/* 通常の body */
body {
  overflow-y: auto;
}

/* ドロップダウン開いた時に追加するクラス */
body.no-scroll {
  overflow: hidden;
  /* ← 背景をスクロールさせない */
}


.green-border, .gray-border {
  padding: 0 0 40px 0;
}

.green-border ul li {
  border-left: 1px solid #47A360;
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
}

.gray-border ul li {
  border-left: 1px solid #D4D2D2;
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
}

.green-border ul li a {
  line-height: 2.5;
  font-size: 16px;
}

.gray-border ul li p {
  line-height: 2;
}

.gray-border ul li a {
  line-height: 2;
}

a.sns-link {
  margin-right: 12px;
  display: inline-block;
}

.gray-border ul li span {
  font-size: 15px;
  padding: 0 0 0 45px;

}

.gray-border ul li .btn {
  font-size: 24px;
}

.menu-ttl {
  padding: 0 0 20px 0;
  font-size: 18px !important;
}

.menu-ttl2 {
  font-size: 12px;
  padding: 0 0 10px;
}

.sns-link img {
  transition: opacity 0.2s ease;
}

/* LINE */
.sns-link.line:hover img {
  content: url("../image/line-icon2.svg");
}

/* X */
.sns-link.x:hover img {
  content: url("../image/x-icon2.svg");
}

/* Instagram */
.sns-link.insta:hover img {
  content: url("../image/insta-icon2.svg");
}

/*  言語のドロップダウン  */
.lang-dropdown {
  border: 1px solid #47A360;
  padding: 16px;
  background-color: #fff;
  border-radius: 4px;
  /* margin: 5px 0 0 0; */
}

.lang-dropdown ul li a {
  line-height: 1.7;
}

.lang-menu {
  position: relative;
  padding-bottom: 10px;
}

/* ▼ ドロップダウン */
.lang-dropdown {
  position: absolute;
  top: 100%;
  /* ボタンの下に表示 */
  display: none;
  z-index: 999;
  min-width: 130px;
}

.lang-dropdown li:not(:first-child) {
  margin-top: 12px;
}

/* ▼ hover時に表示 */
.lang-menu:hover .lang-dropdown {
  display: block;
}

/* メニューボタン */
button.menu-toggle {
  position: fixed;
  right: 30px;
  /* top: 90px; */
  top: 10px;
  max-width: 120px;
  width: 100%;
  z-index: 2000;
}

/*.button.menu-toggle img {
    transition: opacity 0.2s ease;
}*/

button.menu-toggle :hover img {
  content: url("../image/menu-hover-btn.svg");
}

.dropdown-list .lang a {
  max-width: 170px;
  text-align: center;
  padding: 10px 0;
  min-width: 170px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  margin: 0 auto;
}

.dropdown-list .lang a:hover {
  color: #fff;
}


.dropdown-list .lang .l-flex {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px 0 40px 0;
}

.dropdown-list .lang p::after {
  content: "";
  display: inline-block;
  background-image: url(../image/arroe-orange.svg);
  width: 10px;
  height: 6px;
  margin: 0 0 0 5px;
}























/*//////////////////////////////////////

MAIN

//////////////////////////////////////*/
main {
  margin: -40px 0 0 0;
}

.swiper {
  height: 43vw;
  margin: 0 0 22px 0;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* 2枚同時表示に必要な見た目 */

.swiper-slide {
  height: auto;
  /* 高さは中身で決める */
  aspect-ratio: 16/20;
  /* 各カードの比率 */
  overflow: hidden;
}

/* ←ここで左右の比率を決める（合計≒100%） */
.swiper-slide-left {
  width: 37%;
}

.swiper-slide-right {
  /* width: 63%; */
  padding: 0 0 0 20%;
}

.swiper-slide img {
  object-fit: cover;
  display: block;
}


.swiper-pagination {
  background-image: url(../image/pagenation-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 53px 0 30px 0;
  margin: 0 0 -18px 0;
}

/* ページネーションの基本スタイル */
.swiper-pagination-bullet {
  background-color: #EFEFEF;
  /* 背景色を透明に */
  border-radius: unset;
  /* これがないと画像が欠ける */
  height: 12px;
  opacity: 1;
  /* 画像の透過を無くす */
  width: 12px;
  border-radius: 30px;
}

/* 選択されているページネーション */
.swiper-pagination-bullet-active {
  border: 3px solid #47A360;
  height: 12px;
  width: 12px;
}

/* 画像サイズ調整 */
.swiper-img {
  height: 100%;
}

.swiper-slide img {
  height: auto;
  width: 100%;
  height: 100%;
}

.border {
  border: 1px solid #47A360;
  height: 40px;
  width: 1px;
  display: block;
  margin: 10px auto 0;
}


.scroll_down {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}

.scroll_down a {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  color: #47A360;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: .2s;
  overflow: hidden;
  margin: auto;

  width: 300px;
  text-align: center;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  width: 2px;
  height: 41px;
  background: #fff;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  width: 2px;
  height: 41px;
  background: #47A360;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}










/*//////////////////////////////////////

NEWS

//////////////////////////////////////*/
.news {
  padding: 60px 0 0 0;
}

.news h3 {
  max-width: 204px;
  width: 100%;
}

.news-ttl-wrapper {
  max-width: 925px;
  width: 100%;
}

.category {
  border: 1px solid #47A360;
  padding: 4px 16px;
  border-radius: 14px;
  font-size: 14px;
  margin: 0 0 14px 16px;
  display: inline-block;
}

.news-ttl:hover .category {
  color: white;
  background-color: #47A360;
}

.news-ttl {
  display: inline-block;
  margin: 0 0 25px 0;
  background-image: url(../image/news-border.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  padding: 0 0 18px 0;
}

.news-ttl:hover {
  background-image: url(../image/news-border-hover.png);
}

.news .btn-green {
  margin: 0 0 0 auto;
}








/*//////////////////////////////////////

EVENT

//////////////////////////////////////*/
.event {
  padding: 180px 0 35px 0;
  margin: -95px 0 0 0;
}

.event h3 {
  padding: 0 0 15px 0;
  max-width: 243px;
}

.event-box {
  background-image: url(../image/event-border.png);
  background-position: bottom;
  padding: 0 0 25px 0;
  width: 31.5%;
}

.event-box:hover {
  background-image: url(../image/event-border-hover.png);
}

.category2 {
  border-radius: 2px;
  /* margin: 5px 0 9px 0; */
  margin: 12px 0;
}

.event-box:hover .category {
  color: white;
  background-color: #47A360;
}

.thumbnail-wrapper {
  overflow: hidden;
}

.event-box img {
  display: block;
  transition: transform 0.3s ease;
  /* アニメーションを滑らかに */
  /* margin: 0 0 -10px 0; */
  aspect-ratio: 4 / 3;
  /* 縦横比を4:3に固定 */
  object-fit: cover;
  /* はみ出た部分をトリミング */
  display: block;
  height: auto;
}

.event-box:hover img {
  transform: scale(1.1);
  /* 1.0=等倍 → 1.1=110% に拡大 */
}

.event .btn-green {
  margin: 40px 0 0 auto;
}







/*//////////////////////////////////////

CTA

//////////////////////////////////////*/

.cta {
  padding: 5px 0;
}

.cta__wrapper {
  max-width: 1108px;
}

.cta-left {
  position: relative;
}

.cta-ttl {
  font-size: 80px;
  opacity: 0.08;
}

.cta-line {
  position: absolute;
  max-width: 315px;
  width: 100%;
  right: 0;
  top: 32px;
}

.cta-line:hover {
  color: white !important;
}

.cta-border {
  height: 50px;
  width: 1px;
}

.cta-right {
  width: 49%;
}

section#lineCta:hover {
  cursor: pointer;
}

/*.cta2 .cta-left{
    width: 40%;
}

.cta2 .cta-line {
    position: absolute;
    right: -20%;
    top: 53px;
}

.cta2 .cta-right{
    display: flex;
    gap: 51px;
}

.cta2 a:hover .cta2 {
    background-color: #69B97D;
}

.cta2:hover{
    background-color: #69B97D;
}

.cta-arrow{
    width: 60px;
    height: 60px;
    background-image: url(../image/cta-arrow-icon.svg);
}

.cta2:hover .cta-arrow{
    background-image: url(../image/cta-arrow-hover.svg);
}*/


.cta2 {
  background-image: url(../image/cta2.png), url(../image/cta2-hover.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 149px;
  display: block;
}

.cta2:hover {
  background-size: 0 0, cover;
}





/*//////////////////////////////////////

ABOUT

//////////////////////////////////////*/
.about {
  padding: 0 0 125px;
}

.about .section-border {
  height: 120px;
}

.about h3 {
  margin: 23px 0 0 0;
  max-width: 440px;
}

.about-content {
  border-left: 1px solid #47A360;
  margin: 0 0 0 23px;
  padding: 75px 0 0 80px;
  justify-content: flex-start;
  gap: 10%;
}

.about-ttl {
  max-width: 310px;
}

.about-text {
  padding: 38px 0 0 0;
  max-width: 610px;
  line-height: 2.2;
}

.about-btn__wrapper {
  margin: 80px 0 0;
}

@media(max-width:1239px) {
  .about-btn__wrapper {
    flex-wrap: wrap;
    max-width: 810px;
    margin: 80px auto 0;
  }
}

.about-btn {
  background-image: url(../image/about-btn1.png), url(../image/about-btn-hover1.png);
  background-size: contain;
  width: 400px;
  height: 100px;
  padding: 38px 0 0 127px;
}

.about-btn2 {
  background-image: url(../image/about-btn2.png), url(../image/about-btn-hover2.png);
}

.about-btn3 {
  background-image: url(../image/about-btn3.png), url(../image/about-btn-hover3.png);
}

.about-btn:hover {
  background-size: 0 0, contain;
}

.about-btn2:hover {
  background-size: 0 0, contain;
}

.about-btn3:hover {
  background-size: 0 0, contain;
}

.about-btn:hover {
  color: white;
}







/*//////////////////////////////////////

LOCATION

//////////////////////////////////////*/
.location {
  background-image: url(../image/location-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.section-ttl {
  max-width: 62px;
  position: absolute;
  left: -9%;
  top: -95px;
  width: 100%;
}

.location__wrapper {
  max-width: 1700px;
  margin: 0 auto 0 auto;
  padding: 95px 10px 70px 10px;
  border-radius: 20px;
}

.location__wrapper2 {
  max-width: 1030px;
  margin: 0 auto;
  position: relative;
}

.location-text {
  padding: 0 0 55px 0;
}

.location-right {
  margin: 45px 0 100px 0;
  max-width: 400px;
}

.location-ttl {
  font-size: 24px;
  padding: 22px 0 26px;
}

.location-box h4 {
  max-width: 169px;
  width: 100%;
}

.location-box {
  border: 1px solid #47A360;
  padding: 32px 80px;
  border-radius: 20px;
  margin: 0 0 25px 0;
}

.location-box p {
  max-width: 261px;
  line-height: 2.3;
}

.location-box img {
  max-width: 360px;
}

.location-box-orange {
  border: 1px solid #EF8150;
}

.location-box-blue {
  border: 1px solid #1D80C7;
}

.local-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px 0;
}

.local-flex img {
  display: block;
  width: 48%;
}








/*//////////////////////////////////////

STAY

//////////////////////////////////////*/
.stay {
  padding: 0 0 120px 0;
}

.stay h3 {
  max-width: 280px;
  margin: 0 0 40px 0;
}

.stay .l-flex {
  margin: 43px 0 0 0;
}

.stay-box {
  max-width: 600px;
  width: 100%;
  padding: 32px 10px 40px 10px;
  border-radius: 20px;
  text-align: center;
}

.stay-box__wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.stay-box img {
  margin: 17px 0 7px 0;
}

.stay-box p {
  padding: 0 0 15px 0;
}

.stay-box .btn-green {
  margin: 0 auto;
}

.stay p {
  max-width: 1030px;
  margin: 0 auto;
}

.stay span {
  display: inline-block;
}








/*//////////////////////////////////////

PRICE

//////////////////////////////////////*/
.price {
  padding: 0 0 107px 0;
}

.price h3 {
  max-width: 343px;
  margin: 0 0 38px 0;
}

.price p {
  max-width: 1030px;
  margin: 0 auto;
  width: 100%;
}

.price-box__wrapper {
  margin: 42px 0 0 0;
}

.price-box {
  box-shadow: 0 3px 10px rgba(113, 111, 149, 0.1);
  max-width: 393px;
  width: 100%;
  padding: 32px 10px 0 10px;
  height: 453px;
  text-align: center;
  position: relative;
}

.price-box img {
  /* margin: 11px 0 17px 0; */
  transition: transform 0.3s ease;
}

.price-box .thumbnail-wrapper {
  margin: 12px auto;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  max-width: 260px;
}

.price-box p {
  font-size: 20px;
}

.price-box-btn {
  background-image: url(../image/price-btn.svg);
  background-size: cover;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: -30px;
  right: 40px;
}

.price-box:hover {
  color: #1C80C7;
}

.price-box:hover img {
  transform: scale(1.1);
}

.price-box:hover .price-box-btn {
  background-image: url(../image/price-btn-hover.svg);
}







/*//////////////////////////////////////

IMG-SECTION

//////////////////////////////////////*/
.img-section {
  background-image: url(../image/section-img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}

.img-section__wrapper {
  text-align: center;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  padding: 105px 0;
}

.img-section p {
  margin: 17px 0 0 0;
}





/*//////////////////////////////////////

OPTION

//////////////////////////////////////*/
.option {
  padding: 0 0 110px 0;
}

.option h3 {
  max-width: 637px;
}

.plan-ttl {
  font-size: 20px;
  padding: 30px 0 11px 0;
}

.plan-ttl::before {
  content: "";
  display: inline-block;
  background-color: #EF8150;
  width: 24px;
  height: 2px;
  margin: 0 10px 5px 0;
}

.option-box__wrapper {
  margin: 20px 0 0 0;
}

.option-box {
  background-image: url(../image/option-box-border.png);
  background-position: bottom;
  padding: 0 0 0 0;
  padding: 0 0 25px 0;
  width: 31.5%;
}

.l-flex.option-box__wrapper:after {
  display: block;
  content: "";
  width: 31.5%;
}

.option-box:hover {
  background-image: url(../image/option-box-border-hover.png);
  color: #EF8150;
}

.option-box img {
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.category-orange {
  border: 1px solid #EF8150;
  border-radius: 0px;
  margin: 10px 5px 9px 0;
}

.btn-orange {
  background-image: url(../image/btn-orange.svg), url(../image/btn-orange-hover.svg);
  width: 200px;
  height: 50px;
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  margin: 39px 0 8px auto;
  background-size: cover;
}

.btn-orange:hover {
  background-size: 0 0, cover;
  color: #fff;
}






/*//////////////////////////////////////

INFO

//////////////////////////////////////*/
.info {
  padding: 0 0 55px 0;
}

.info h3 {
  max-width: 440px;
  margin: 0 0 35px;
}

.info-logo {
  max-width: 400px;
  margin: 37px auto 17px;
  display: block;
}

.info-border {
  background-color: #D4D2D2;
  width: 100%;
  height: 1px;
  margin: 0 0 21px;
}

.info-left ul {
  padding: 18px 0 0 0;
}

.info-left ul li {
  gap: 30px;
  display: flex;
  align-items: center;
}

.info-left ul li a {
  font-size: 24px;
  letter-spacing: 0.7px;
  padding: 0 0 16px 0;
}

.info-left ul li span {
  font-size: 15px;
}

.info-btn-you {
  max-width: 715px;
  margin: 10px 0 0 0;
  background-image: url(../image/info-youtube-btn.webp), url(../image/info-youtube-btn-hover.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  display: block;
}

.info-btn-you:hover {
  background-size: 0 0, cover;
}

.info-right {
  width: 505px;
  padding: 0 0 25px 0;
}

.info-cta {
  background-image: url(../image/info-cta-bg.svg), url(../image/info-cta-bg-hover.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  padding: 36px 0;
  position: relative;
  height: 280px;
  margin: 0 0 40px 0;
  border-radius: 4px;
  transition: background-image 0s, opacity 0.2s ease;
  /* ← ここがミソ */
}

.info-cta .en {
  font-size: 80px;
  opacity: 0.1;
  position: absolute;
  top: 28px;
  left: 50%;
  /* 左端から50% */
  transform: translateX(-50%);
  /* 中心基準にずらす */
}

.info-cta .btn {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  /* 左端から50% */
  transform: translateX(-50%);
  /* 中心基準にずらす */
  top: 114px;
}

.info-cta-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 58px;
  width: 352px;
}

.info-cta:hover {
  background-size: 0 0, cover;
}

.info-btn {
  width: 100%;
  display: block;
  height: 100px;
  padding: 36px 0 36px 160px;
  color: #363936 !important;
  margin: 0 0 13px 0;
}

.info-btn1 {
  background-image: url(../image/info-btn1.svg), url(../image/info-btn1-hover.svg);
}

.info-btn2 {
  background-image: url(../image/info-btn2.svg), url(../image/info-btn2-hover.svg);
}

.info-btn3 {
  background-image: url(../image/info-btn3.svg), url(../image/info-btn3-hover.svg);
}

.info-btn4 {
  background-image: url(../image/info-btn4.svg), url(../image/info-btn4-hover.svg);
}

.info-btn:hover {
  color: #fff !important;
}

.info-btn1:hover {
  background-size: 0 0, cover;
}

.info-btn2:hover {
  background-size: 0 0, cover;
}

.info-btn3:hover {
  background-size: 0 0, cover;
}

.info-btn4:hover {
  background-size: 0 0, cover;
}

.info-bnr-box__wrapper {
  margin: 40px 0 0 0;
}

.info-bnr-box {
  margin: 0 0 20px 0;
}

.info-bnr-box.l-flex {
  gap: 10px;
  flex-wrap: nowrap;
}

.info-bnr-box a:hover {
  opacity: 0.7;
}








/*//////////////////////////////////////

FOOTER

//////////////////////////////////////*/
.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-bg {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.footer-left {
  flex: 0 0 56%;
  /* 左を40%固定 */
  background: url("../image/event-bg.webp") no-repeat center center;
  background-size: cover;
  /* 画像が全体に広がる */
}

.footer-left-contents {
  max-width: 650px;
  width: 100%;
}

footer .menu-ttl {
  padding: 0 0 10px 0;
}

footer .green-border ul li {
  padding: 0 0 0 15px;
}

footer .green-border, footer .gray-border {
  padding: 0 0 31px 0;
}

.footer-right {
  flex: 1;
  background: #fff;
  /* 右は白 */
}

.footer-inner {
  position: relative;
  z-index: 1;
  /* 背景より前に出す */
  margin: 0 auto;
  display: flex;
  gap: 12%;
  padding: 57px 10px 60px 10px;
  max-width: 1260px;
  margin: 0 auto;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-bnr {
  margin: 13px 0 -7px 0;
  display: block;
}

.footer-logo {
  max-width: 340px;
  margin: 0 0 30px;
}

.copy {
  padding: 16px 0;
}

.copy a:hover {
  color: #363936;
}










.sp {
  display: none;
}

.sp2 {
  display: none;
}

@media(max-width:1440px) {
  .pc2 {
    display: none;
  }

  .sp2 {
    display: block;
  }

  header .l-flex {
    gap: 15px;
  }

  .header__wrapper {
    max-width: 1845px;
    /* padding: 20px 65px 0 2%; */
    padding: 20px 160px 0 2%;
  }

  h1 img {
    max-width: 198px;
    height: 32px;
    width: 100%;
  }

  .swiper-pagination {
    padding: 25px 0 30px 0;
    margin: 0 0 -43px 0;
  }

  .footer-inner {
    gap: 5%;
  }

  .location h3 {
    max-width: 500px;
    margin: 0 0 30px 0;
  }

  /*.cta2{
        background-size: 150%;
    }*/
}


.sp3 {
  display: none;
}

@media(max-width:1024px) {
  .pc3 {
    display: none;
  }

  .sp3 {
    display: block;
  }

  .l-flex {
    flex-direction: column;
    align-items: center;
  }

  button.menu-toggle {
    right: 6px;
    top: 8px;
    max-width: 70px;
  }

  header {
    background-image: url(../image/header-bg-sp.png);
  }

  .header__wrapper {
    padding: 6px 10px 0 10px;
  }

  header nav .l-section-wrapper {
    max-width: 390px;
  }

  header .l-flex {
    align-items: baseline;
  }

  .gray-border ul li .btn {
    font-size: 20px;
  }

  .l-section-wrapper {
    max-width: 768px;
    padding: 0 20px;
  }

  .price-box {
    margin: 0 0 40px 0;
  }

  .news h3 {
    margin: 0 auto 0 0;
  }

  .event-box {
    margin: 0 0 30px 0;
  }

  .l-flex-center {
    flex-direction: column;
  }

  .cta-border {
    height: 1px;
    width: 80px;
    margin: -26px 0 10px 0;
  }

  .cta-line {
    right: 50%;
    transform: translateX(50%);
  }

  .cta-right {
    width: 100%;
  }

  .location-box {
    padding: 32px 20px;
    border-radius: 20px;
    margin: 0 auto 25px auto;
    max-width: 750px;
  }

  .location-box p {
    max-width: 270px;
  }

  .info-cta {
    margin: 40px 0;
  }

  .footer-inner {
    max-width: 750px;
  }

  .footer-flex {
    flex-direction: column;
  }

  .footer-bnr {
    margin: 0 10px 20px 0;
    display: inline-flex;
  }

  .footer-bg {
    flex-direction: column;
  }

  .footer-inner {
    gap: 50px;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
  }

  .footer-left {
    flex: 0 0 61%;
  }

  main {
    /* margin: 42px 0 0 0; */
  }

  .contact-btn:hover img {
    content: url(../image/header-cta-sp.png);
  }

}



.sp {
  display: none;
}

@media(max-width:768px) {
  .l-section-wrapper {
    max-width: 390px;
    padding: 0 20px;
  }

  .pc4 {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  p {
    font-size: 15px;
    line-height: 1.8;
  }

  header {
    padding: 0 0 28px 0;
  }

  .info-right {
    width: 100%;
  }

  .local-flex img {
    /* width: 148px;
    height: 140px; */
  }

  .news h3 {
    max-width: 181px;
  }

  .news-ttl {
    line-height: 1.7;
    margin: 0 0 39px 0;
    padding: 0 0 24px 0;
  }

  .bg-parts {
    background-image: url(../image/news-bg-parts-sp.png);
  }

  .event {
    padding: 158px 0 64px 0;
    margin: -95px 0 0 0;
  }

  .event h3 {
    padding: 0 0 15px 0;
    max-width: 218px;
  }

  .event-box:hover img {
    transform: none;
  }

  .event-box img {
    /* margin: 0 0 -22px 0; */
  }

  .event-box {
    padding: 0 0 28px 0;
    line-height: 1.6;
    width: 100%;
  }

  .event .btn-green {
    margin: 15px auto;
  }

  .cta {
    padding: 5px 0 36px;
  }

  .cta-ttl {
    font-size: 60px;
    padding: 27px 0 0 0;
  }

  .cta1-txt {
    width: 310px;
    line-height: 1.9;
  }

  .cta-right {
    gap: 17px;
  }

  .about .section-border {
    height: 60px;
  }

  .section-border {
    margin: 0;
    height: 60px;
  }

  .about {
    padding: 0 0 59px;
  }

  .about h3 {
    margin: 15px 0 0 0;
    max-width: 228px;
  }

  .about-content {
    border-left: 1px solid #47A360;
    margin: 17px 0 0;
    padding: 37px 0 0 42px;
    justify-content: flex-start;
    gap: 10%;
  }

  .about-ttl {
    max-width: 180px;
    margin: 0 0 46px auto;
  }

  .about-text {
    padding: 11px 0 0 0;
    line-height: 2;
    font-size: 15px;
  }

  .about-btn__wrapper {
    margin: 46px 0 0;
    gap: 20px;
  }

  .about-btn {
    background-image: url(../image/about-btn1-sp.png);
  }

  .about-btn2 {
    background-image: url(../image/about-btn2-sp.png);
  }

  .about-btn3 {
    background-image: url(../image/about-btn3-sp.png);
    padding: 23px 0 0 96px !important;
  }

  .about-btn:hover {
    background-image: url(../image/about-btn1-sp.png);
    color: #47A360;
  }

  .about-btn2:hover {
    background-image: url(../image/about-btn2-sp.png);
    color: #1D80C7;
  }

  .about-btn3:hover {
    background-image: url(../image/about-btn3-sp.png);
    color: #EF8150;
  }

  .about-btn {
    background-size: contain;
    width: 350px;
    height: 100px;
    padding: 36px 0 0 96px;
  }

  .location {
    padding: 60px 20px 40px;
  }

  .location__wrapper {
    padding: 30px 20px 10px 20px;
  }

  .location-ttl-sp {
    margin: 0 0 40px 0;
  }

  .location-right {
    margin: 15px 0 47px 0;
    max-width: 400px;
  }

  .location-logo {
    max-width: 50px;
    margin: 0 auto;
    display: block;
  }

  .location-ttl {
    font-size: 20px;
    padding: 15px 0 19px;
    text-align: center;
    line-height: 1.9;
  }

  .location-text {
    padding: 0 0 26px 0;
  }

  .location-box {
    padding: 17px 19px;
    border-radius: 20px;
    margin: 0 auto 33px auto;
    max-width: 390px;
  }

  .location-box img {
    max-width: 100%;
  }

  .location-box p {
    line-height: 2.1;
  }

  .location-box:last-child h4 {
    max-width: 236px;
  }

  .stay {
    padding: 0 0 80px 0;
  }

  .stay h3 {
    max-width: 231px;
    margin: 11px 0 21px 0;
  }

  .stay p {
    line-height: 2;
  }

  .stay .l-flex {
    margin: 35px 0 0 0;
    gap: 23px;
  }

  .stay-box {
    padding: 26px 20px 28px 20px;
  }

  .text-left {
    font-size: 16px;
    line-height: 1.7 !important;
  }

  .price h3 {
    max-width: 296px;
    margin: 10px 0 26px 0;
  }

  .price-box {
    padding: 24px 10px 0 10px;
    height: 427px;
  }

  .price-box p {
    font-size: 16px;
  }

  .price-box-btn {
    right: 21px;
  }

  .price-box {
    margin: 0 0 62px 0;
  }

  .price-box-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: -25px 0 0 0;
  }

  .price-box:hover .price-box-ttl img {
    transform: none;
  }

  .price-box:last-child {
    height: 450px;
  }

  .price {
    padding: 0 0 48px 0;
  }

  .img-section {
    background-image: url(../image/section-img-sp.webp);
    height: 640px;
  }

  .img-section__wrapper {
    max-width: 318px;
    text-align: left;
    margin: 0 auto;
    padding: 74px 0;
  }

  .img-section p {
    font-size: 16px;
    margin: 6px 0 0 0;
    line-height: 2.4;
  }

  .img-section img {
    display: block;
    margin: 0 auto;
  }

  .option {
    padding: 0 0 25px 0;
  }

  .option-box {
    width: 100%;
  }

  .option h3 {
    max-width: 325px;
    margin: 16px 0 0 0;
  }

  .option-border {
    display: block;
    height: 1px;
    width: auto;
    background-image: repeating-linear-gradient(to right,
        #EF8150 0 1px,
        /* 点の長さ */
        transparent 1px 2px
        /* 間隔（ここで調整） */
      );
    margin: 43px 0 0
  }

  .option-border2 {
    margin: 0 0 32px 0;
  }

  .plan-ttl {
    font-size: 18px;
    padding: 37px 0 10px 0;
    text-align: center;
  }

  .option-box__wrapper {
    margin: 20px 0 0 0;
    gap: 33px;
  }

  .btn-orange {
    margin: 39px 0 57px auto;
  }

  .info h3 {
    max-width: 258px;
    margin: 15px 0 26px;
  }

  .info-cta {
    margin: 20px 0;
    height: 273px;
  }

  .info-cta .btn {
    top: 104px;
    width: 208px;
  }

  .info-cta-txt {
    bottom: 41px;
    text-align: center;
  }

  .info-logo {
    max-width: 308px;
    margin: 47px auto 26px;
    display: block;
  }

  .info-left p {
    font-size: 16px;
  }

  .info-left ul li {
    gap: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: baseline;
  }

  .info-left ul {
    padding: 18px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .info-left ul li a {
    font-size: 20px;
    letter-spacing: 0.7px;
    padding: 0;
  }

  .info-left ul li span {
    font-size: 15px;
    padding: 2px 0 0 44px;
  }

  .info-btn-you {
    margin: 48px 0 30px 0;
    background-image: url(../image/info-youtube-btn-sp.webp);
    height: 236px;
    display: block;
    width: 100%;
  }

  .info-btn-you:hover {
    background-image: url(../image/info-youtube-btn-sp.webp);
  }

  .info-right {
    padding: 0 0 39px 0;
  }

  .info-btn {
    width: 170px;
    height: 156px;
    padding: 60px 0 0;
    margin: 0 0;
    font-size: 16px;
    text-align: center;
  }

  .info-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .info-btn1 {
    background-image: url(../image/info-btn-sp1.svg);
  }

  .info-btn2 {
    background-image: url(../image/info-btn-sp2.svg);
  }

  .info-btn3 {
    background-image: url(../image/info-btn-sp3.svg);
  }

  .info-btn4 {
    background-image: url(../image/info-btn-sp4.svg);
  }

  .info-btn1:hover {
    background-image: url(../image/info-btn-sp1.svg);
  }

  .info-btn2:hover {
    background-image: url(../image/info-btn-sp2.svg);
  }

  .info-btn3:hover {
    background-image: url(../image/info-btn-sp3.svg);
  }

  .info-btn4:hover {
    background-image: url(../image/info-btn-sp4.svg);
  }

  .info-bnr-box {
    margin: 0 0 25px 0;
    gap: 23px;
  }

  .cta2 {
    background-image: url(../image/cta2-sp.png);
    height: 321px;
    background-size: contain;
    padding: 0;
  }

  .cta2:hover {
    background-image: url(../image/cta2-sp.png);
  }

  .menu-ttl {
    padding: 0 0 20px 0;
    font-size: 16px !important;
    font-weight: 700;
  }

  .footer-inner {
    padding: 40px 10px 0px 10px;
  }

  footer .menu-ttl {
    padding: 0 0 4px 0;
  }

  footer .green-border, footer .gray-border {
    padding: 0 0 24px 0;
  }

  .footer-bnr {
    margin: 0 10px 29px 0;
    display: inline-flex;
  }

  .footer-logo {
    max-width: 313px;
    margin: 34px auto 20px auto;
    display: block;
  }

  .gray-border ul li p {
    line-height: 2;
    letter-spacing: 1.4px;
  }

  .gray-border ul li .btn {
    font-size: 20px;
  }

  .footer-right-content {
    width: 100%;
  }

  .menu-ttl2 {
    font-size: 12px;
    padding: 0 0 7px;
  }

  .gray-border ul li {
    border-left: 1px solid #D4D2D2;
    margin: 0 0 6px 10px;
    padding: 0 0 0 10px;
  }

  a.sns-link {
    margin: 0 13px 0 0;
  }

  .copy .p-small:first-child {
    width: 252px;
    padding: 0 0 5px 0;
    margin: 0 auto;
  }

  .copy .p-small:last-child {
    text-align: left;
  }

  .p-small {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
  }

  p.green.p-bold.en.p-small.text-center.scroll-down {
    justify-content: center;
  }

  p.p-small.pc {
    display: none;
  }

  .copy {
    padding: 12px 0;
  }

  .copy .l-flex {
    align-items: baseline;
  }

  .sp.copy2.bg-white {
    padding: 9px 20px;
  }

  /* 上段 */
  .main-swiper {
    height: 310px;
    margin-bottom: 2vw !important;
  }

  /* 下段 */
  .sub-swiper {
    height: 104vw;
    position: relative;
  }

  /* スライド共通 */
  .swiper-slide {
    overflow: hidden;
    position: relative;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .swiper-img {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* ページネーション（下段に表示） */
  .sub-swiper .swiper-pagination {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    background-image: url(../image/pagenation-bg-sp.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .swiper {
    margin: 0;
  }

  .swiper-pagination {
    padding: 25px 0 30px 0;
    margin: 0 0 -69px 0;
  }

  .dropdown {
    padding: 40px 0 100px 0;
  }
}

/* 初期状態は通常フロー。JSが .is-sticky を付けたら固定＆スライド表示 */
.l-header {
  position: relative;
  z-index: 1000;
  will-change: transform;
}

/* 固定用のベース（隠した状態） */
.l-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  /* 画面外に隠す */
}

/* トランジションは準備完了後にのみ効かせる（描画直後のチラつき防止） */
.l-header.is-sticky.is-ready {
  transition: transform .32s ease;
}

/* 上スクロール中：見せる */
.l-header.is-sticky.is-visible {
  transform: translateY(0);
}

/* メニュー展開中などは常に表示したい場合（任意。必要なら .menu-open をbodyに付ける想定） */
body.menu-open .l-header.is-sticky {
  transform: translateY(0);
}


/* -------- PCでは非表示 -------- */
.nav {
  display: none;
}

/* -------- SP用スタイル -------- */
@media (max-width: 1024px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav {
    position: absolute;
    top: 100%;
    top: 52px;
    left: 0;
    width: 100%;
    transform: translateY(-120%);
    opacity: 0;
    display: block;
    /* SPでは使う */
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 0 0 100px 0;
    padding-top: 50px;
  }
}




@media (max-width: 375px) {
  .about-btn {
    background-size: contain;
    width: 300px;
    height: 100px;
    padding: 33px 0 0 83px;
  }

  .local-flex img {
    width: 120px;
    height: 120px;
  }
}

/*//////////////////////////////////////

SECOND PAGES

//////////////////////////////////////*/
section.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.mv-second {
  padding-top: 100px;
  background-image: url(../image/event-bg.webp);
  padding-bottom: 68px;
  text-align: center;
}

.mv-second h1.smb-section__title {
  font-size: 32px;
}

.mv-second .smb-section__body.is-layout-constrained.wp-block-section-is-layout-constrained {
  display: none;
}

section.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.archive-single-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.archive-single-section .smb-section__subtitle, .archive-single-section h2.smb-section__title {
  text-align: center;
}

.archive-single-section h2.smb-section__title {
  margin-top: 8.5px;
}

.archive-single-section .smb-section__body.is-layout-constrained.wp-block-snow-monkey-blocks-section-is-layout-constrained {
  margin-top: 42px;
}

section.breadcrumbs {
  padding: 20px;
  background-color: #47A360;
  color: #fff;
}

section.breadcrumbs a.home, .breadcrumbs span {
  color: #fff;
}

.smb-section__subtitle {
  color: #47A360 !important;
  font-size: 60px !important;
  font-family: 'Ubuntu';
  text-transform: capitalize;
  letter-spacing: .02em;
  line-height: 1 !IMPORTANT;
}

.smb-section__contents-wrapper.single {
  max-width: 750px;
  margin: 0 auto;
}

.smb-section__contents-wrapper.single .smb-section__body {
  margin-top: 42px;
}

h2.smb-section__title {
  font-size: 16px;
}

.wp-block-snow-monkey-blocks-box.smb-box.check-wrap-box {
  background-color: #EFEFEF;
  /* color: #fff; */
  font-weight: 700;
  border-radius: 4px;
}

section.wp-block-snow-monkey-blocks-section.alignfull.smb-section.smb-section--fit.contact-insert {
  background-color: var(--main-color);
  color: #fff;
}

.wp-block-columns {
  margin-top: 20px;
}

.contact-insert a.smb-btn {
  background: #fff;
  color: #333;
  font-family: 'Zen Kaku Gothic New';
  /* font-weight: 700 !IMPORTANT; */
  border-radius: 4px;
  text-align: center;
}

span.smb-btn__label {
  font-weight: 700;
}

.wp-block-column.has-sm-text-alt-background-color.has-background.is-layout-flow.wp-block-column-is-layout-flow {
  box-shadow: none ! IMPORTANT;
}

.room-type-column figure.wp-block-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-type-column figure+p {
  font-weight: 700;
}

a.smb-btn {
  background-image: url(../image/btn-arrow.png);
  background-position: right;
  background-size: contain !important;
  height: 50px;
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  background-size: cover;
  background-color: #47A360;
  border-radius: 4px;
  min-width: 270px;
}

.wp-block-image img {
  border-radius: 4px;
}

.wp-block-snow-monkey-blocks-box.smb-box.relief-box {
  background: #efefef;
  border-radius: 4px;
}

.smb-step__item__number {
  background-color: var(--main-color) !important;
  font-weight: 700;
}

.smb-step__item__title span {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .1em;
}

.smb-step__item__summary.is-layout-constrained.wp-block-step-item-free-is-layout-constrained>*:not(:first-child) {
  margin-top: 20px;
}

.wp-block-snow-monkey-blocks-btn.smb-btn-wrapper.no-accent a.smb-btn {
  background-image: none;
  background-color: var(--main-color);
  min-width: auto;
}

.wp-block-table thead {
  border-bottom: 1px solid var(--main-color) ! IMPORTANT;
  background-color: var(--main-color);
  color: #fff;
}

.smb-faq__item__question__label {
  color: var(--main-color) !important;
  font-weight: 400;
  font-family: 'Ubuntu';
}

.smb-faq__item__answer__label {
  color: var(--accent-color) !important;
  font-family: 'Ubuntu';
}

/* スマホ時だけ横スクロール（任意適用：sp-scroll を付けたテーブルだけ） */
@media (max-width: 767px) {

  /* figure.wp-block-table に sp-scroll を付ける */
  .wp-block-table.sp-scroll {
    display: block;
    /* figure をブロック化 */
    width: 100%;
    overflow-x: auto;
    /* 横スクロール有効化 */
    -webkit-overflow-scrolling: touch;
    /* iOS慣性スクロール */
  }

  .wp-block-table.sp-scroll table {
    min-width: 640px;
    /* 画面幅より少し広くしてスクロール発生 */
    border-collapse: collapse;
  }

  /* 幅広/全幅の余白を整える（必要なら） */
  .wp-block-table.sp-scroll.alignwide,
  .wp-block-table.sp-scroll.alignfull {
    margin-right: 0;
    margin-left: 0;
  }

  /* キャプションは折り返しOK */
  .wp-block-table.sp-scroll figcaption {
    white-space: normal;
  }
}

figure.wp-block-table td:first-child {
  background-color: #efefef;
  font-weight: 700;
}

h3.wp-block-heading {
  padding-left: 10px !important;
  border-left: 4px solid var(--main-color);
}

h3.wp-block-heading.no-leftline {
  padding-left: 0;
  border-left: 0;
}

h3.wp-block-heading:not(:first-child) {
  margin-top: 40px;
}

h3.wp-block-heading+*, h4.wp-block-heading+* {
  margin-top: 20px;
}

h4.wp-block-heading:not(:first-child) {
  margin-top: 20px;
}

h4.wp-block-heading {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--main-color);
}

.smb-section__body>*:not(:first-child) {
  margin-top: 20px;
}

h3.wp-block-heading svg {
  font-size: 20px;
  color: var(--main-color);
  margin-right: 10px;
}

h4.wp-block-heading svg, p svg {
  margin-right: 10px;
}

.wp-block-snow-monkey-blocks-box.smb-box.facility-box {
  background: #efefef;
  border-radius: 4px;
  height: 100%;
}

.smb-items__item__body.is-layout-constrained.wp-block-items-item-free-is-layout-constrained, .smb-items__item.smb-items__item--free {
  height: 100%;
}

h3#park, h3#sport, h3#public {
  display: flex;
  align-items: center;
}

a.smb-btn svg {
  margin-right: 10px;
}

iframe {
  max-width: 100%;
}

p.my-paragraph:not(:first-child), .wp-block-snow-monkey-blocks-buttons:not(:first-child) {
  margin-top: 20px;
}

.wp-block-snow-monkey-blocks-box.smb-box {
  background: #efefef;
  border-radius: 4px;
  border-width: 0;
}

.wp-block-columns:not(:first-child) {
  margin-top: 40px;
}

.breadcrumbs .category {
  padding: 0;
  color: #fff;
  margin: 0;
  font-size: 16px;
}

body.category {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  display: block;
}

/* ===== Pagination (the_posts_pagination) ===== */
.archive-pagination {
  margin: 48px auto 0;
  text-align: center;
}

.archive-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* 基本ボタン */
.archive-pagination .page-numbers {
  --pg-bg: #ffffff;
  --pg-fg: #2e7d32;
  /* 緑系 */
  --pg-bd: #2e7d32;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 40px;
  height: 40px;
  padding: 0 12px;

  color: var(--pg-fg);
  background: var(--pg-bg);
  border: 1px solid var(--pg-bd);
  border-radius: 999px;

  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* ホバー/フォーカス */
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers:focus {
  --pg-bg: var(--accent-color);
  /* オレンジ */
  --pg-fg: #ffffff;
  --pg-bd: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 127, 50, .2);
}

/* 現在ページ */
.archive-pagination .page-numbers.current {
  --pg-bg: var(--main-color);
  --pg-fg: #ffffff;
  --pg-bd: var(--main-color);
  cursor: default;
  pointer-events: none;
}

/* 前へ/次へ（テキスト長対策） */
.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  padding: 0 14px;
}

/* 省略(…) */
.archive-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #666;
  min-width: 24px;
  height: auto;
  padding: 0;
}

/* 無効状態（必要なら）*/
.archive-pagination .page-numbers.is-disabled,
.archive-pagination .page-numbers[aria-disabled="true"] {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* 小さめスクリーン */
@media (max-width: 640px) {
  .archive-pagination .nav-links {
    gap: 8px;
  }

  .archive-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    padding: 0 10px;
  }
}

td a {
  text-decoration: underline;
  color: var(--main-color);
}

select {
  appearance: auto;
}

.my-paragraph a {
  color: var(--main-color);
  text-decoration: underline;
}

strong span {
  font-weight: 700 !IMPORTANT;
}

.mw-800 {
  max-width: 800px;
}

.mw-1000 {
  max-width: 1000px;
}

.wp-block-snow-monkey-blocks-btn.pdf a:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../image/pdf-icon.png);
  background-size: contain;
}

.wp-block-snow-monkey-blocks-btn.excel a:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../image/excel-icon.png);
  background-size: contain;
}

.wp-block-snow-monkey-blocks-btn.smb-btn-wrapper.no-accent.pdf a, .wp-block-snow-monkey-blocks-btn.excel a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-back {
  margin-top: 60px !important;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  section.wp-block-snow-monkey-blocks-section.smb-section.smb-section--fit.mv-second {
    padding-top: 50px;
  }

  .smb-section__subtitle {
    font-size: 40px ! IMPORTANT;
  }

  .smb-section__lede {
    text-align: left;
  }

  .w-100-sp {
    width: 100%;
  }

  .breadcrumbs span {
    font-size: 14px !important;
  }

  section.breadcrumbs {
    padding: 10px;
  }
}