@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  background-position: center center;
  box-sizing: border-box;
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  overscroll-behavior-y: none;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
  font-size: 1.5rem;
  line-height: 1.6;
  margin: auto;
  text-align: left;
  letter-spacing: 0.05em;
  background: #006a41;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

li {
  list-style: none;
}

p {
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
  backface-visibility: hidden;
}

*::-moz-selection {
  background: #42bc8d;
  color: #fff;
}

*::selection {
  background: #42bc8d;
  color: #fff;
}

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  font-size: 100%;
  letter-spacing: 0.02em;
  font-weight: 400;
}

table {
  border-collapse: collapse;
}

.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #9b9524;
}

a.child:hover {
  color: inherit;
}

a img {
  transition: 0.6s ease-in-out;
}

/* 共通リセット */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* コンテンツ全体 */
#content {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===================== */
/* ハンバーガー＆メニュー（SP用） */
/* ===================== */
.toggler {
  z-index: 200;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  opacity: 0;
  display: none;
}

.hamburger {
  position: absolute;
  top: 20px;
  right: 10px;
  height: 40px;
  width: 40px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  display: none;
}

.hamburger > div {
  position: relative;
  background: #fff;
  height: 2px;
  width: 60%;
  transition: all 0.4s ease;
}

.hamburger > div::before,
.hamburger > div::after {
  content: "";
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  height: 2px;
  transition: all 0.4s ease;
}

.hamburger > div::before {
  top: -10px;
}

.hamburger > div::after {
  top: 10px;
}

/* 開閉アニメーション */
.toggler:checked + .hamburger > div {
  background: rgba(0, 0, 0, 0);
}

.toggler:checked + .hamburger > div::before {
  top: 0;
  transform: rotate(45deg);
  background: black;
}

.toggler:checked + .hamburger > div::after {
  top: 0;
  transform: rotate(135deg);
  background: black;
}

/* ===================== */
/* メニューエリア */
/* ===================== */
.menu {
  position: fixed;
  top: 0;
  right: 0; /* ←右側から出るように修正 */
  height: 100vh;
  width: 0;
  background-color: #9b9524;
  overflow: hidden;
  transition: width 0.4s ease;
  z-index: 120;
}

.toggler:checked ~ .menu {
  width: 60%;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
}

/* メニューリスト */
.menu > div > ul {
  display: flex;
  flex-direction: column;
  padding: 80px 20px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.toggler:checked ~ .menu > div > ul {
  visibility: visible;
  opacity: 1;
}

.menu > div > ul > li {
  list-style: none;
  margin-bottom: 1rem;
}

.menu > div > ul > li > a {
  color: black;
  text-decoration: none;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  transition: color 0.2s;
}

.menu > div > ul > li > a:hover {
  color: #9b9524;
}

/* ===================== */
/* PC用メニュー（デフォルト表示） */
/* ===================== */
.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #9b9524;
}

.site-nav .current-menu-item > a,
.site-nav a.current {
  color: #b6af26; 
}

/* ===================== */
/* svg */
/* ===================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.logo__svg {
  display: block;
  width: clamp(150px, 14vw, 220px);
  height: auto;
  aspect-ratio: 194.46/50.02; /* ← viewBox比率を明示 */
  vertical-align: top;
}

/* currentColor制御 */
.logo {
  color: #fff;
}

.logo.is-invert {
  color: #fff;
}

.h1__svg {
  display: block;
  width: clamp(280px, 35vw, 460px);
  height: auto;
  aspect-ratio: 462.282/114.584; /* ← viewBox比率を明示 */
  vertical-align: top;
  color: #fff;
  margin: 0 0 30px;
}

.h2__svg {
  display: block;
  width: clamp(280px, 35vw, 460px);
  height: auto;
  aspect-ratio: 455.953/19.049; /* ← viewBox比率を明示 */
  vertical-align: top;
  color: #fff;
  margin: 0 0 30px;
}

.h3__svg {
  display: block;
  width: clamp(280px, 35vw, 500px);
  height: auto;
  aspect-ratio: 500/45.117; /* ← viewBox比率を明示 */
  vertical-align: top;
  color: #fff;
  margin: 0 0 30px;
}

.news__svg {
  display: block;
  width: clamp(150px, 8.5vw, 175px);
  height: auto;
  aspect-ratio: 173.95/28.5; /* ← viewBox比率を明示 */
  color: #fff;
  margin: 0;
}

.event__svg {
  display: block;
  width: clamp(150px, 8.5vw, 175px);
  height: auto;
  aspect-ratio: 118/28; /* ← viewBox比率を明示 */
  color: #fff;
  margin: 0;
}

/* ===================== */
/* ヘッダーエリア */
/* ===================== */
header {
  margin: 0 auto;
  max-width: 1150px;
}

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding-inline: 20px;
  padding-block: 30px 20px;
  display: flex;
  gap: 70px;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.site-header.snd {
  justify-content: space-between;
}

/* ===================== */
/* メイン */
/* ===================== */
main {
  width: 100%;
  height: auto;
  border-top: solid 4px #9b9524;
  z-index: 0;
}

.about-section {
  width: 100%;
  position: relative;
  z-index: -1;
}

.about-section__inner {
  width: 96%;
  max-width: 1048px;
  margin: 0 auto;
  padding: 6% 0 8%;
  position: relative;
}

/* 画像エリア */
.about-bg {
  position: absolute;
  width: 40%;
  height: 900px; /* ← 高さ固定（必要に応じて変更） */
  top: -15vh;
  right: 0;
  overflow: hidden;
}

/* 画像本体 */
.about-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  display: block;
  /* マスク適用 */
  -webkit-mask-image: linear-gradient(to right, black 0 100%);
  mask-image: linear-gradient(to right, black 0 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: all 0.3s ease;
}

.text-box {
  width: 45vw;
  max-width: 565px;
  color: #ffffff;
}

/* ウィンドウ幅に応じてマスク幅を変える */
@media (max-width: 1024px) {
  .about-bg img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    display: block;
  }
  .about-bg img {
    -webkit-mask-image: linear-gradient(to right, transparent 0 30%, black 30% 100%);
    mask-image: linear-gradient(to right, transparent 0 30%, black 30% 100%);
  }
  .text-box {
    width: 80vw;
    max-width: 500px;
    color: #ffffff;
  }
}
.activity-section {
  width: 100%;
  position: relative;
}

.activty-bg {
  width: 100%;
  margin: 0;
  padding: 150px 0 40px;
  position: relative;
  top: -100px;
  overflow: hidden;
  margin-bottom: -100px;
}

.activty-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #9b9524;
  transform: skewY(-5deg) translateY(90px);
  z-index: 0;
}

.activity-section__inner {
  width: 96%;
  max-width: 1048px;
  margin: 0 auto;
  padding: 3% 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px; /* テキストと画像の間隔 */
}

.content-text {
  flex: 1;
  color: #ffffff;
  margin-top: 30px;
}

.content-image {
  flex: 1;
  max-width: 450px;
  min-width: 320px;
  left: -4%;
  position: relative;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fade-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 6; /* 高さを揃える（任意） */
  overflow: hidden;
}
.fade-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.fade-slideshow img.active {
  opacity: 1;
}

.news-section {
  width: 100%;
  position: relative;
  z-index: 1;
}

.news-section__inner {
  width: 96%;
  max-width: 1048px;
  margin: 0 auto;
  padding: 1% 0 5%;
  position: relative;
}

.news-image {
  position: absolute;
  right: 50px;
  top: -90px;
  width: 20%;
  min-width: 150px;
  transform: rotate(-8deg); /* ← 角度を指定（時計回りなら正の値） */
  transform-origin: bottom right; /* ← 回転の中心を右下に */
  overflow: visible;
}

.activity-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-heading {
  display: flex;
  align-items: center; /* アイコンとタイトルSVGを縦中央揃え */
  gap: 20px; /* アイコンと文字の間の余白 */
  position: relative;
  margin: 0 0 30px;
  left: -40px;
}

.news-icon {
  width: 10%;
  min-width: 80px;
  height: auto;
  display: block; /* 下の余白（隙間）を防ぐ */
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*

.news-item a {
  display: inline-flex;
  align-items: baseline;
  gap: 1em;
  text-decoration: none;
  color: #fff;
  padding: 0.5em 0;
  transition: color 0.3s;
}

.news-item a:hover {
  color: #9b9524;
}
*/

.news-item {
  margin-bottom: 0.5em;
}

.news-item a,
.news-item .news-nolink,
.event-item a {
  display: flex;
  align-items: baseline;
  gap: 1em;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.news-item a:hover {
  color: #b6af26;
}

.news-date {
 
}

.news-cat {
  background: #eee;
  color: #555;
  font-size: 0.8rem;
  padding: 0.1em 0.8em;
  border-radius: 3px;
}

.news-text {
  flex: 1;
}


.bee {
  display: block;
  width: clamp(30px, 5vw, 65px);
  height: auto;
  aspect-ratio: 70/56;
  position: absolute;
  left: 33%;
  top: 9%;
}

.bug1 {
  display: block;
  width: clamp(80px, 9vw, 125px);
  height: auto;
  aspect-ratio: 125/102;
  position: absolute;
  left: 48%;
  top: -15%;
  z-index: 10;
}

.bug2 {
  display: block;
  width: clamp(60px, 8vw, 80px);
  height: auto;
  aspect-ratio: 78/122;
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 10;
}

/* ===================== */
/* フッター */
/* ===================== */
.site-footer {
  margin-top: auto;
  width: 100%;
  padding: 2rem 0 4rem;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  border-top: solid 2px #9b9524;
}

/* ===================== */
/* Gマップ */
/* ===================== */
.google-maps iframe {
	width: 100% !important;
}
.google-maps iframe{
	filter: grayscale(.5);
}

@media (max-width: 768px) {
  /* 共通設定 */
  html {
    font-size: 55%; /* 小さめに調整 */
  }
  .site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-inline: 20px;
  }
  .content-section {
    width: 90%;
    padding: 60px 0;
  }
}
/* ===================== */
/* レスポンシブ */
/* ===================== */
@media (max-width: 768px) {
  .h1__svg {
    display: block;
    width: 90%;
    height: auto;
    color: #fff;
    margin: 0 0 5%;
  }
  .h2__svg {
    display: block;
    width: 90%;
    height: auto;
    color: #fff;
    margin: 0 0 30px;
  }
  .h3__svg {
    display: block;
    width: 90%;
    height: auto;
    color: #fff;
    margin: 0 0 30px;
  }
  .news__svg {
    display: block;
    width: 40%;
    height: auto;
    color: #fff;
    margin: 0;
  }
  .event__svg {
    display: block;
    width: 40%;
    height: auto;
    color: #fff;
    margin: 0;
  }
  /* ハンバーガーを表示 */
  .toggler,
  .hamburger {
    display: flex;
  }
  /* PCナビを非表示 */
  .site-nav {
    display: none;
  }
  /* ===================== */
  /* メイン */
  /* ===================== */
  .about-section__inner {
    width: 90%;
    max-width: 1048px;
    margin: 0 auto;
    padding: 10% 0 8%;
    position: relative;
  }
  /* 画像エリア */
  .about-bg {
    position: relative;
    width: 100%;
    height: 150px; /* ← 高さ固定（必要に応じて変更） */
    top: 0;
    left: 0;
    overflow: hidden;
  }
  /* 画像本体 */
  .about-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    /* マスク適用 */
    -webkit-mask-image: linear-gradient(to right, black 0 100%);
    mask-image: linear-gradient(to right, black 0 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transition: all 0.3s ease;
  }
  .text-box {
    width: 100%;
    max-width: 100%;
  }
  .activty-bg {
    width: 100%;
    margin: 0;
    padding: 140px 0 40px;
    position: relative;
    top: -50px;
    overflow: hidden;
    margin-bottom: -40px;
  }
  .activity-section__inner {
    width: 90%;
    max-width: 1048px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: block;
    gap: 0; /* テキストと画像の間隔 */
  }
  .content-text {
    flex: 1;
    color: #ffffff;
    margin-top: 0;
  }
  .content-image {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    left: 0;
    position: relative;
    margin: 0 auto 7%;
  }
  .news-section__inner {
    width: 90%;
    max-width: 1048px;
    margin: 0 auto;
    padding: 6% 0 8%;
    position: relative;
  }
  .news-image {
    display: none;
  }
  .news-heading {
    gap: 15px; /* アイコンと文字の間の余白 */
    position: relative;
    margin: 0 0 20px;
    left: 0px;
  }
  .news-icon {
    width: 10%;
    min-width: 65px;
    height: auto;
    display: block; /* 下の余白（隙間）を防ぐ */
  }
  .bee {
    display: block;
    width: 12%;
    height: auto;
    position: absolute;
    left: 68%;
    top: 3.7%;
  }
  .bug1 {
    position: absolute;
    left: 70%;
    top: -2%;
    z-index: 10;
  }
  .bug2 {
    display: none;
  }
  
.google-maps {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

}/*# sourceMappingURL=layout.css.map */