@charset "UTF-8";
html {
  scroll-padding-top: 120px; /* 固定ヘッダーの高さ分 */
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 120px; /* モバイルでも同じ高さ */
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
   letter-spacing: 0.5; 
  font-size: 16px;
    color: #2a2a2a;
}
a{
    transition : .5s; /*0.5秒で変化*/
}

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

.main {
  padding-top: 150px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

/*================================================
*   common
===============================================*/
.container__wrap {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.section__titleArea {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section__titleArea {
    margin-bottom: 80px;
  }
}
.section__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__subTitle {
  font-size: 20px;
  color: #0a8447;
}
@media (max-width: 768px) {
  .section__subTitle {
    font-size: 1.125rem;
  }
}

.sectionSeparater {
  margin: 100px 0;
}
@media (max-width: 1025px) {
  .sectionSeparater {
    margin: 60px 0;
  }
}

.hover:hover {
  opacity: 0.8;
}

/*================================================
*header
===============================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 120px;
  background-color: #fff;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #eee;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 8%;
}
@media (max-width: 1025px) {
  .header__inner {
    margin: 0 4%;
  }
}
.header__area {
  display: flex;
  align-items: center;
}
.header__logo {
  width: 300px;
}
@media (max-width: 768px) {
  .header__logo {
    width: 250px;
  }
}

.header__logo img{
   transition : .5s; /*0.5秒で変化*/
}

.header__logo img:hover{
    opacity: 0.7;
}

.header__navItems {
  display: flex;
  align-items: center;
}
.header__navItem {
  margin-right: 30px;
}
@media (max-width: 1025px) {
  .header__navItem {
    margin-right: 20px;
  }
}
.header__navItem:last-of-type {
  margin-right: 0;
}
.header__navItem:hover {
  color: #0a8447;
}
.header__contact {
  display: flex;
  justify-content: center;
}

/* ===== ハンバーガー ===== */
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2a2a2a;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ===== SPナビ ===== */
.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.3s;
  padding: 80px 16px;
  z-index: 1000;
}
.sp-nav.is-active {
  transform: translateX(0);
}
.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav li {
  border-bottom: 1px solid #ddd;
}
.sp-nav a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  text-align: center;
  transition : .5s; /*0.5秒で変化*/
}

.sp-nav a:hover {
    opacity: 1;
    color: #0a8447;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 45px;
  right: 30px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* レスポンシブ切り替え */
@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
/* ボタン */
.button a,.sp-nav .button{
  display: inline-block;
  padding: 12px 24px;
  background-color: #0a8447;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding-left: 3rem;
  width: 12.5rem;
  text-align: center;
  position: relative;
  transition : .5s; /*0.5秒で変化*/
}
.button a::before {
  content: "";
  display: inline-block;
  background: url(../img/object/top-tel.svg) no-repeat center;
  background-size: cover;
  width: 27px;
  height: 30px;
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}


.button a:hover,.sp-nav .button:hover,.calendarButton a:hover{
  color: #fff;
  background-color: #2a2a2a;
}

.spButton{
  display: inline-block;
}
.spButton::before {
  content: "";
  display: inline-block;
  background: url(../img/object/top-tel.svg) no-repeat center;
  background-size: cover;
  width: 25px;
  height: 28px;
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.calendarButton{
width: 100%;
}

.calendarButton a{
  width: 100%;
  display: inline-block;
  padding: 12px 24px;
  background-color: rgb(10, 132, 71);
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.calendarButton a::before {
  content: "";
  background: url(../img/object/calender.svg) no-repeat center;
  background-size: contain;
  left: 12%;
  width: 22px;
  height: 25px;
}
.calendarButton a::after {
  content: "";
  background: url(../img/object/arrow2.svg);
  background-size: cover;
  width: 12px;
  height: 15px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/*================================================
*   main
===============================================*/
/*================================================
*   top
===============================================*/
.top__container {
  padding: 0;
}
.top__moji {
  position: absolute;
  top: 18%;
  left: 35%;
  z-index: 1000;
  width: clamp(200px, 40vw, 600px);
}
@media (max-width: 1025px) {
  .top__moji {
    width: clamp(200px, 40vw, 500px);
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .top__moji {
    width: 300px;
  }
}
.top__moji2 {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 1000;
  width: clamp(200px, 30vw, 400px);
}
@media (max-width: 1025px) {
  .top__moji2 {
    width: clamp(200px, 40vw, 400px);
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .top__moji2 {
    width: 200px;
  }
}
.top__inner {
  margin: 0 60px;
}
@media (max-width: 1025px) {
  .top__inner {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .top__inner {
    margin: 0;
  }
}

/* swiper */
/* スライド */
.lp-slide {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lp-slide {
    height: auto;
  }
}

.slide-img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .slide-img {
    height: 300px;
  }
}

/* メインスライダー */
[class*=swiper-main] {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.mySwiper2 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  flex-shrink: 0;
  width: 100%;
}

.swiper-mainImg {
  display: block;
  width: 100%;
  aspect-ratio: 565/360;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: cover;
     object-fit: cover;
}

/* サムネイルスライダー */
[class*=swiper-thumb] {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 10px 0;
  overflow: hidden;
}
[class*=swiper-thumb] .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
[class*=swiper-thumb] .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  flex-shrink: 0;
}
[class*=swiper-thumb] .swiper-slide-thumb-active {
  opacity: 1;
}

.activity__itemAreaSlide .swiper {
  height: auto;
}
.activity__itemAreaSlide .swiper + .swiper {
  margin-top: 20px;
}

/* --------------------------------- */
/* ここから矢印のデザインを変更するCSS */
/* トップページのスライダー用 */
/* --------------------------------- */
.swiper-button-next, .swiper-button-prev {
  color: transparent !important;
}

/* 矢印画像の高さと幅 */
.swiper-button-prev,
.swiper-button-next {
  height: 60px;
  width: 45px;
}

/* 矢印を消して画像に変更する */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 60px;
  width: 45px;
  margin: auto;
  color: transparent;
}

.swiper-button-prev {
  right: 0;
}

.swiper-button-next {
  left: 0;
}

@media screen and (max-width: 500px) {
  /* 矢印画像の高さと幅 */
  .swiper-button-prev,
  .swiper-button-next {
    height: 30px;
    width: 25px;
  }
  /* 矢印を消して画像に変更する */
  .swiper-button-prev:after,
  .swiper-button-next:after {
    height: 30px;
    width: 25px;
  }
}
/* 前に戻る矢印の画像パス */
.swiper-button-prev::after {
  background-image: url(../img/object/sankaku1.svg);
}

/* 次に進む矢印の画像パス */
.swiper-button-next::after {
  background-image: url(../img/object/sankaku2.svg);
}

/* --------------------------------- */
/* 矢印をスライド画像の外に出すためのCSS */
/* --------------------------------- */
.slide-img_wrapper {
  padding: 0 45px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .slide-img_wrapper {
    padding: 0 20px;
  }
}
/*================================================
*   news
===============================================*/
.news {
  background-color: #f4f1e7;
  position: relative;
}
.news::before {
  position: absolute;
  content: "";
  background: url(../img/object/wave.png);
  width: 100%;
  height: 200px;
  top: -150px;
  left: 0;
}
@media (max-width: 768px) {
  .news::before {
    height: 100px;
    top: -100px;
  }
}
.news__container {
  max-width: 1160px;
  margin: auto;
}
.news__contents {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .news__contents {
    display: block;
  }
}
.news__wrapper {
  padding: 5%;
}
@media (max-width: 1025px) {
  .news__wrapper {
    padding: 10% 5% 10%;
  }
}
.news__contentsArea {
  width: 100%;
  max-width: calc(100% - 250px);
}
@media (max-width: 768px) {
  .news__contentsArea {
    max-width: 100%;
  }
}
.news__item {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news__item {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.news__itemArea {
  display: grid;
  gap: 20px;
}
@media (max-width: 1025px) {
  .news__itemArea {
    display: block;
  }
}
.news__itemTitle {
  font-size: 1.5rem;
  border-bottom: 1px solid #0a8447;
  padding-bottom: 20px;
  padding-left: 0.625rem;
}
@media (max-width: 768px) {
  .news__itemTitle {
    font-size: 1.25rem;
  }
}
.news__itemText {
  font-size: 1.125em;
  padding-top: 20px;
  padding-left: 1rem;
}
@media (max-width: 1025px) {
  .news__itemText {
    padding: 10px;
    font-size: 1em;
  }
}
.news__link {
  color: #0a8447;
  padding: 1.25rem 0;
  text-align: right;
  transition : .5s; /*0.5秒で変化*/
}
.news__link:hover {
  opacity: 0.5;
}
@media (max-width: 1025px) {
  .news__link {
    padding: 1.25rem 0;
    text-align: center;
  }
}
.news__img {
  grid-area: 1/2;
  margin-top: auto;
  margin-left: auto;
}
@media (max-width: 1025px) {
  .news__img {
    text-align: center;
  }
}
.news__img > img {
  max-width: 200px;
}
.news__aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 250px;
}
@media (max-width: 768px) {
  .news__aside {
    margin: auto;
    max-width: 100%;
    gap: 20px;
  }
}
.news__linksArea {
  background-color: #fff;
  width: 100%;
  padding: 2rem 1.25rem;
}
.news__linksTitle {
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 3px solid #0a8447;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .news__linksTitle {
    font-size: 1.25rem;
  }
}
.news__linksItem {
  border-bottom: 1px dotted #0a8447;
  padding: 10px 0 10px 10px;
  margin: 10px 0;
  padding-left: 0.625rem;
  position: relative;
  transition : .5s; /*0.5秒で変化*/
}
.news__linksItem:hover {
  color: #0a8447;
}
.news__linksText::after {
  content: "";
  background: url(../img/object/arrow.svg);
  width: 10px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .news__linksText::after {
    right: 1%;
  }
}
.news__calenderText {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
  padding: 0.5rem 0;
}
.news__banner {
  width: 100%;
}

/*================================================
*   topics
===============================================*/
.topics__wrapper {
  padding: 0 5%;
}
.topics__container {
  max-width: 1160px;
  margin: auto;
  padding: 0 3%;
}
.topics__under {
  margin-top: 30px;
}
.topics__item {
  display: flex;
  margin: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.topics__item:hover {
  opacity: 0.5;
}
.topics__imgArea {
  width: 70%;
  aspect-ratio: 3/2;
}
.topics__imgArea > img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.topics__textArea {
  padding: 30px 40px;
}
.topics__title {
  font-size: 1.5rem;
  color: #0a8447;
  font-weight: bold;
  margin-bottom: 30px;
}
.topics__text {
    font-size: 1.125em;
  line-height: 1.6rem;
}

@media (max-width: 1025px) {
  .pcOnly {
    display: none;
  }
}

@media (min-width: 1025px) {
  .spOnly {
    display: none;
  }
}

/* topic card */
.card__area {
  width: 100%;
  margin: auto;
}
.card__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1025px) {
  .card__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card__items {
    display: block;
  }
}
.card__item {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.card__item:hover {
  opacity: 0.8;
}
@media (max-width: 1025px) {
  .card__item {
    margin-bottom: 20px;
  }
}
.card__imgArea {
  aspect-ratio: 16/9;
}
.card__imgArea > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.card__textArea {
  padding: 20px;
}
.card__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
  color: #0a8447;
}
@media (max-width: 768px) {
  .card__title {
    font-size: 1.25rem;
    margin: 20px 0;
  }
}
.card__text {
  text-align: left;
  line-height: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
@media (max-width: 1025px) {
  .card__text {
    line-height: 1.25rem;
  }
}

/*================================================
*   activity
===============================================*/
.activity__wrapper {
  padding: 0 5%;
}
.activity__container {
  max-width: 1160px;
  margin: auto;
}
.activity__itemAreaBox {
  width: 50%;
}
@media (max-width: 768px) {
  .activity__itemAreaBox {
    width: 100%;
  }
}
.activity__item {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 2.5rem;
  border-bottom: 1px solid #888;
}
@media (max-width: 1025px) {
  .activity__item {
    display: block;
    padding: 1.125rem;
  }
}
.activity__item:hover {
  opacity: 0.8;
}
.activity__img {
  text-align: center;
}
.activity__img > img {
  max-width: 300px;
  height: 200px;
}
.activity__textArea {
  width: 66.6666666667%;
}
@media (max-width: 1025px) {
  .activity__textArea {
    width: 100%;
    margin: auto;
  }
}
.activity__on {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 1025px) {
  .activity__on {
    padding: 10px;
    margin-top: 12px;
    flex-direction: column;
  }
}
.activity__point {
  background: #ffc91f;
  border-radius: 20px;
  padding: 5px 20px;
  margin-left: 15px;
}
@media (max-width: 1025px) {
  .activity__point {
    margin-top: 10px;
    margin-left: 0;
  }
}
.activity__title {
  font-size: 1.5rem;
  color: #0a8447;
  font-weight: bold;
  margin-top: 8px;
}
@media (max-width: 1025px) {
  .activity__title {
    text-align: center;
    margin-top: 0;
  }
}
.activity__text {
    font-size: 1.125em;
  margin-top: 20px;
}
@media (max-width: 1025px) {
  .activity__text {
    font-size: 1rem;
  }
}
.activity__link {
  font-size: 1.25rem;
  color: #0a8447;
  text-align: right;
  padding-top: 12px;
}
@media (max-width: 1025px) {
  .activity__link {
    font-size: 1rem;
  }
}

/*================================================
*   banner
===============================================*/
.banner__wrapper {
  padding: 2% 5%;
}
@media (max-width: 1025px) {
  .banner__wrapper {
    padding: 0 5%;
  }
}
.banner__container {
  max-width: 1160px;
  margin: auto;
}
.banner__on {
  margin-bottom: 60px;
}
@media (max-width: 1025px) {
  .banner__on {
    margin-bottom: 40px;
  }
}
.banner__onItems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 1025px) {
  .banner__onItems {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .banner__onItems {
    display: block;
  }
}
.banner__onItem {
  background-color: #f4f1e7;
  width: 100%;
  padding: 10% 5%;
  position: relative;
}
@media (max-width: 768px) {
  .banner__onItem {
    margin-bottom: 30px;
  }
}
.banner__onTitle {
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 25px;
  margin: auto;
  text-align: center;
  position: relative;
}
@media (max-width: 1025px) {
  .banner__onTitle {
    font-size: 1.25rem;
    width: 100%;
  }
}
.banner__onTitle::before {
  content: "";
  position: absolute;
  background: url(../img/object/slash.svg);
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}
.banner__onSubTitle {
  text-align: center;
  padding: 10px 0;
}
.banner__onTextArea {
  display: flex;
  justify-content: flex-start;
  font-size: 1.125rem;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .banner__onTextArea {
    font-size: 1rem;
  }
}
.banner__onTextArea:first-of-type {
  margin-top: 30px;
}
.banner__onTextArea::before {
  content: "";
  background: url(../img/object/clip.png);
  background-size: cover;
  left: 15px;
  top: -30px;
  width: 62px;
  height: 68px;
  position: absolute;
}
@media (max-width: 1025px) {
  .banner__onTextArea::before {
    width: 43px;
    height: 48px;
    top: -15px;
  }
}
.banner__onRight {
  line-height: 1.75rem;
}
.banner__onCenter {
  margin: 0 1rem;
}
.banner__imgArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}
@media (max-width: 1025px) {
  .banner__imgArea {
    gap: 30px 40px;
  }
}
@media (max-width: 768px) {
  .banner__imgArea {
    display: block;
  }
  .banner__imgArea > img {
    margin-bottom: 20px;
  }
}
.banner__date {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 1025px) {
  .banner__date {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
}
.banner__onImageArea {
  width: 33.3333333333%;
}
.banner__population {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .banner__population {
    margin-left: 0;
  }
}
.banner__population:first-of-type {
  margin-top: 15px;
}
.banner__img:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .banner__img {
    display: inline-block;
  }
  .banner__img + .banner__img {
    margin-top: 12px;
  }
}

.mizuhonotiku {
  border-bottom: none;
  padding-bottom: 0;
}
.mizuhonotiku::before {
  content: none;
}

.populationTop {
  margin-top: 10px !important;
}

.house {
  margin-top: 30px !important;
}

/*================================================
*   linksF
===============================================*/
.links__wrapper {
  padding: 0 5%;
}
.links__container {
  max-width: 1160px;
  margin: auto;
}
.links__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1025px) {
  .links__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .links__items {
    display: block;
  }
}
.links__item {
  background-color: #d5f6df;
  width: 100%;
}
@media (max-width: 1025px) {
  .links__item {
    margin-bottom: 20px;
  }
}
.links__cardTextArea {
  padding: 30px 60px;
}
@media (max-width: 1025px) {
  .links__cardTextArea {
    padding: 30px 20px 30px 35px;
  }
}
.links__cardTitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0a8447;
  margin-bottom: 1.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .links__cardTitle {
    font-size: 1.25rem;
  }
}
.links__cardTitle::before {
  content: "";
  background: url(../img/object/clover.png);
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 1025px) {
  .links__cardTitle::before {
    width: 20px;
    height: 20px;
    left: -25px;
  }
}
.links__cardText {
  font-size: 1.125rem;
  margin-bottom: 10px;

}
.links__cardText:hover {
  color: #0a8447;
}
@media (max-width: 768px) {
  .links__cardText {
    font-size: 1rem;
  }
}
.links__img {
  max-width: 292px;
  margin: auto;
}

.imgArea {
  background-color: transparent;
}
@media (max-width: 768px) {
  .imgArea {
    max-width: 200px;
    margin: auto;
  }
}

/*================================================
*   footer
===============================================*/

.footer_decoration .for_SP,.footer_decoration .for_500{
    display: none;
}

@media (max-width: 768px) {
.footer_decoration .for_PC{
    display: none;
}
.footer_decoration .for_SP{
    display: block;
}
}

@media (max-width: 500px) {
.footer_decoration .for_SP{
    display: none;
}
.footer_decoration .for_500{
    display: block;
}
}

.footer {
  background-color: #0a8447;
  /*position: relative;*/
}
.footer__wrapper {
  padding: 0;
}
/*.footer::before {
  content: "";
  background: url(../img/object.svg);
  background-position: top;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  padding: 0 120px;
}
@media (max-width: 768px) {
  .footer::before {
    padding: 0 60px;
    background: url(../img/object2.svg) no-repeat;
    transform: scale(0.7);
    left: 0;
    width: 92%;
  }
}*/
.footer__area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 360px;
}
@media (max-width: 768px) {
  .footer__area {
    display: block;
    height: auto;
  }
}
.footer__logo {
  width: 100%;
  max-width: 368px;
  padding-bottom: 40px;
}

.footer__logo img{
  transition : .5s; /*0.5秒で変化*/
}

.footer__logo img:hover{
    opacity: 0.7;
}

@media (max-width: 768px) {
  .footer__logo {
    max-width: 250px;
    margin: auto;
    padding: 20px 0;
  }
}
.footer__address {
  color: #fff;
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  .footer__address {
    text-align: center;
  }
}
.footer__btnArea {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .footer__btnArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
  }
}


.ct1 a{
  width: 360px;
  padding: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  color: #2a2a2a;
  background-color: #ffc91f;
}
.ct1 a:hover {
  background-color: #2a2a2a;
  color: #ffc91f;
}
@media (max-width: 768px) {
  .ct1 a{
    width: 300px;
    padding: 0.625rem;
  }
}

.ct1 a::before {
  content: "";
  display: inline-block;
  background: url(../img/object/tel.svg) no-repeat center;
  background-size: contain;
  width: 40px;
  height: 55px;
  position: absolute;
  left: 30px;
}

.ct1 a:hover::before{
  filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(1063%) hue-rotate(340deg) brightness(107%) contrast(101%);
}

@media (max-width: 768px) {
  .ct1 a::before{
    height: 40px;
  }

}

.footer__text {
  text-align: center;
  padding-left: 2em;
}
.footer__copyright {
  background-color: #a0e2b4;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 0.625rem;
  }
}

.txt2 {
  color: #fff;
}

.fs {
  font-size: 1.9rem;
  font-weight: bold;
  padding-top: 5px;
}
@media (max-width: 768px) {
  .fs {
    font-size: 1.5rem;
  }
}



.ct2{
  width: 360px;
  padding: 1.125rem;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 768px) {
    
  .ct2{
    width: 300px;
    padding: 0.625rem;      
  }
}
.ct2::before {
  content: "";
  display: inline-block;
  background: url(../img/object/print.svg) no-repeat center;
  background-size: contain;
  width: 40px;
  height: 55px;
  position: absolute;
  left: 25px;
}

/*================================================
*   下層ページ
===============================================*/
/*================================================
*   activity
===============================================*/
.activityTop__container {
  position: relative;
}
.activityTop__bg {
  display: block;
  position: relative;
}
.activityTop__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* 白透過 */
  pointer-events: none;
}
.activityTop__img {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.activityTop .section__titleArea{
    margin-bottom: 120px;
}

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

.activityTop__titleArea {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #2a2a2a;
  font-size: 48px;
  text-align: center;
}
.activityTop__nav {
  position: relative;
  background-color: #0a8447;
  color: #fff;
  z-index: 2;
padding: 2.5rem;
}
@media (max-width: 768px) {
.activityTop__nav {
    display: none;
  }
}
.activityTop__navItems {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.activityTop__navItems.navItems_mt{
    margin-top: 20px;
}

@media (max-width: 768px) {
  .activityTop__navItems {
    flex-direction: column;
    gap: 10px;
    padding: 1.5rem;
  }
}
.activityTop__navItem {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .activityTop__navItem {
    font-size: 1rem;
  }
}
.activityTop__navItem:hover {
  opacity: 0.8;
  color: #d5f6df;
}

/*================================================
*   activityCt
===============================================*/
.activityCt {
  padding-top: 109px;
  padding-bottom: 141px;
}
@media (max-width: 768px) {
  .activityCt {
    padding-top: 56px;
    padding-bottom: 80px;
  }
}
.activityCt__wrapper {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}
.activityCt__container {
  max-width: 1160px;
  margin: auto;
}
.activityCt__itemArea {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, -1.295rem + 6.855vw, 4.875rem);
  padding-inline: 56px 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid #0a8447;
}
@media (max-width: 768px) {
  .activityCt__itemArea {
    flex-direction: column;
    padding-inline: 1rem;
  }
}
.activityCt__item {
  opacity: 1 !important;
}
.activityCt__textArea {
  max-width: 479px;
}
@media (max-width: 768px) {
  .activityCt__textArea {
    width: 100%;
    max-width: 100%;
  }
}
.activityCt__text {
  line-height: 1.75rem;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.857rem + 0.298vw, 1.125rem);
  margin-top: 20px;
}
.activityCt__text + .activityCt__text {
  margin-top: 1rem;
}
.activityCt__listTitle {
  font-size: clamp(1rem, 0.857rem + 0.298vw, 1.125rem);
  letter-spacing: 0.1em;
  line-height: 1.75rem;
  margin-top: 1rem;
}
.activityCt__list {
  margin-left: 1.5em;
}
.activityCt__listItem {
  font-size: clamp(1rem, 0.857rem + 0.298vw, 1.125rem);
  letter-spacing: 0.1em;
  line-height: 1.75rem;
  list-style: disc;
}

.activityCt__textArea .activity__title {
  font-size: clamp(1.5rem, 0.714rem + 1.637vw, 2.188rem);
  letter-spacing: 0.05em;
  text-align: left;
}
.activityCt__textArea .activity__on {
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 12px;
}
.activityCt__textArea .activity__date {
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.857rem + 0.298vw, 1.125rem);
}
.activityCt__textArea .activity__point {
  font-size: clamp(1rem, 0.857rem + 0.298vw, 1.125rem);
  margin: 0;
}

.activityCt__itemArea + .activityCt__itemArea {
  margin-top: 69px;
}

.gallery {
  max-width: 1000px; /* 全体幅はお好みで */
  margin: 0 auto;
}

/* 上の500px写真 */
.main-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover; /* トリミングして崩れ防止 */
  display: block;
}

/* 下の写真5枚 */
.thumbs {
  display: flex;
  gap: 10px; /* 写真の間隔 */
  margin-top: 10px;
}

.thumbs img {
  flex: 1; /* 5枚を均等幅に */
  max-width: 20%; /* 最大5枚想定 */
  aspect-ratio: 4/3; /* 縦横比を揃えたい場合 */
  -o-object-fit: cover;
     object-fit: cover;
}

/* modal */
.modal-open-button {
  cursor: pointer;
  border: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal:target {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transform: translate(50%, -50%);
}

.modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 500px;
  max-height: 70%;
  padding: 20px;
  margin: auto;
  overflow: scroll;
  background-color: #FEFEFE;
  border-radius: 5px;
}

.modal-content h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}

.modalArea {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.modalAreaSub {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  flex: 1;
}



/*================================================
*   society
===============================================*/

.society {
  background-color: #f4f1e7;
}

.society .news__wrapper{
    padding: 120px 5% 5%;
}

.society .news__item{
   transition: .5s;
}

.society .news__item:hover{
    background-color: rgba(10,132,71,0.18);
}

.society .news__item .news__link:hover{
    opacity: 1;
}

@media (max-width: 768px) {
.society .news__wrapper{
    padding: 90px 5%;
}
}

.sectionSeparater2 {
    margin: 50px 0;
}


/*================================================
*   ページトップに戻るボタン
===============================================*/
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0a8447;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* 初期状態は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-top:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
.page-top.is-active {
  display: flex;
}
.page-top span {
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .page-top span {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */