/************************************************************/
/*   base   */
/************************************************************/
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* 全体に Noto Serif JP Medium を適用 */
body.home {
  font-family: 'Noto Serif JP', serif;
  /* font-weight: 500; */
  /* line-height: 1.8; */
  font-size: clamp(16px, 2vw, 20px);
  /* 画面幅に応じてサイズが変わる */
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', serif;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


/************************************************************/
/*   TOP   */
/************************************************************/
/* <---------- スライダーPC ----------> */
/* .swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
} */

.mv-swiper {
  width: 100%;
  /* 横幅は画面幅に合わせる */
  /* max-width: 1400px; */
  /* 最大幅を指定 */
  margin: auto;
  position: relative;
  height: 800px;
  overflow: hidden;
}

.mv-swiper .swiper-slide {
  /* position: relative; */
}

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

/* スライド文字：縦中央右寄せ＋浮き出るアニメーション */
.mv-swiper .slide-text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%) translateX(30px);
  text-align: right;
  color: #fff;
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 20px 25px;
  border-radius: 10px;
  opacity: 0;
  transition: all 1.5s ease;
}

/* アクティブスライドで文字浮き出す */
.mv-swiper .swiper-slide-active .slide-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.mv-swiper .slide-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 10px;
}

.mv-swiper .slide-text p {
  /* font-size: clamp(1rem, 2.5vw, 1.5rem); */
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  /* 文字間を広げる */
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', serif;
}

/* 矢印を白に */
:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

/* ページネーションのカスタマイズ */
.mv-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.mv-swiper .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* 矢印を白に変更 */
.mv-swiper .swiper-button-prev,
.mv-swiper .swiper-button-next {
  color: #fff;
  --swiper-navigation-color: #fff
}

/* ページネーションドットの基本デザイン */
.mv-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  /* 通常は半透明の白 */
  opacity: 1;
  /* Swiperのデフォルトは0.2なので上書き */
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  /* 丸型 */
  transition: all 0.3s ease;
}

/* アクティブ時（現在のスライド） */
.mv-swiper .swiper-pagination-bullet-active {
  background: #fff;
  /* 白に強調 */
  transform: scale(1.3);
  /* ちょっと大きく */
}

:root {
  --swiper-navigation-color: #fff;
  /* 矢印 白 */
  --swiper-pagination-color: #fff;
  /* アクティブなドット 白 */
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.6);
}

/* <---------- スライダーSP ----------> */
@media (max-width: 767px) {
  .mv-swiper .swiper {
    aspect-ratio: 16/9;
    /* 横16:縦9の比率を維持 */
    width: 100%;
    max-width: 1400px;
  }

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

}

/************************************************************/
/*   about us   */
/************************************************************/
/* <---------- aboutusPC ----------> */
#about-section {
  background-image: url('../images/about_bg.png');
  /* 背景画像を設定 */
  background-size: cover;
  background-position: center;
  position: relative;
  height: 779px;
  scroll-margin-top: 150px;
}

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

.about-text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  max-width: 650px;
  margin: 0 auto;
  /* padding: 0 20px; */
  text-align: center;
  color: #fff;
  z-index: 100;
}

.about-text-area h2 {
  font-size: 36px;
}

.about-subtitle {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: 'Noto sans JP', sans-serif;
  color: #fff;
  opacity: 0.5;
  margin: 0;
}

.about-subtitle::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #fff;
  opacity: 0.5;
}

.about-description {
  font-size: 18px;
  font-family: 'Noto sans JP', sans-serif;
  line-height: 2;
  margin-top: 60px;
}

.about-images-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-images1 {
  display: flex;
  justify-content: center;
  gap: 43vw;
}

.about-images2 {
  display: flex;
  justify-content: center;
  gap: 55vw;
}

.about-images3 {
  display: flex;
  justify-content: center;
  gap: 15vw;
}

.circle {
  width: 167px;
  height: 167px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* <---------- aboutusSP ----------> */
@media screen and (max-width: 767px) {

  .about-section {
    height: 110vh;
  }

  .about-text-area {
    transform: translate(-50%, -100%);
    max-width: 650px;
    width: 100%;
    padding: 0 10px;
  }

  .about-text-area h2 {
    font-size: 28px;
  }

  .about-description {

    line-height: 1.6;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-images1 {
    gap: 15vw;
  }

  .about-images2 {
    gap: 43vw;
  }

  .about-images3 {
    gap: 15vw;
  }

  .about-description {
    margin-top: 30px;
    font-size: 16px;
  }

  .about-images-container {
    gap: 10px;
    transform: translate(-50%, 5%);
  }

  .circle {
    width: 100px;
    height: 100px;
  }

}






/************************************************************/
/*   news   */
/************************************************************/
/* <---------- お知らせPC ----------> */
/* セクション全体 */
#news-section {
  height: auto;
  margin: 70px 40px 100px;
  scroll-margin-top: 150px;
}

.news-text-area {
  max-width: 650px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: end;
  margin-bottom: 40px;
}

.news-text-area h2 {
  font-size: 28px;
  margin-bottom: 0;
  font-family: 'Noto Serif JP', serif;

}

.news-description {

  line-height: 1.6;
}

.news-subtitle {
  font-size: 15px;
  font-family: 'Noto Serif JP', serif;
  margin-left: 20px;
  opacity: 0.5;
  position: relative;
}

/* .news-subtitle::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #000;
  opacity: 0.5;
} */

.news-line {
  border-bottom: 1px solid #707070;
  margin: 25px 0;
}

/* 新着ニュースリスト全体 */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 各ニュース項目 */
.news-list li {
  display: flex;
  align-items: center;
  gap: 1.5em;
  border-bottom: 1px solid #707070;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}

/* 日付 */
.news-date {
  font-size: 0.85em;
  color: #666;
  white-space: nowrap;
}

/* カテゴリラベル */
.news-cat {
  border: 1px solid #707070;
  padding: 0 8px;
  font-size: 0.8em;
  white-space: nowrap;
}

/* タイトルリンク */
.news-list a {
  color: #333;
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: space-between;
  /* タイトルと矢印を左右に配置 */
  align-items: center;
}

.news-list a:hover {
  text-decoration: underline;
}

/* タイトル部分 */
.news-title {
  flex: 1;
}

/* 矢印（7日以内のみ表示） */
.news-arrow {
  font-size: 1em;
  color: #707070;
  margin-left: 0.5em;
  flex-shrink: 0;
}

.news-btn {
  text-align: right;
  margin: 0 auto;
}

.news-btn a {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
  width: 100%;
  text-align: center;
}

.news-btn a:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}




/* -------------------------
   レスポンシブ対応
------------------------- */
@media (max-width: 1024px) {
  #news-section {
    margin: 60px 20px;
  }

  .news-list li {
    gap: 1em;
  }
}

@media (max-width: 768px) {
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }

  .news-list a {
    width: 100%;
  }

  .news-title {
    flex: none;
  }
}

@media (max-width: 480px) {
  #news-section {
    margin: 40px 15px;
  }

  .news-list li {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}





/************************************************************/
/*   facility   */
/************************************************************/
/* <---------- 施設案内PC ----------> */

#facility-section {
  width: 100%;
  background-color: #EFF3F5;
  padding: 100px 0;
  scroll-margin-top: 100px;
}

/*サブタイトル*/
.facility-subtitle-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #333;
  z-index: 100;
}

.facility-subtitle-area h2 {
  font-size: 36px;
}

.facilrity-subtitle-en {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: 'Noto sans JP', sans-serif;
  color: #333;
  opacity: 0.5;
  margin: 0;
}

.facilrity-subtitle-en::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #333;
  opacity: 0.5;
}

.facility-description {
  font-size: 18px;
  font-family: 'Noto sans JP', sans-serif;
  line-height: 2;
  margin: 50px 0;
}

.facility-section h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
}

.facility-section .en {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.facility-section .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #444;
}

.facility-map {
  text-align: center;
  margin-bottom: 80px;
}

.facility-map img {
  max-width: 100%;
  height: auto;
}

/* 施設写真 */
.facility-img-container-first {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin: 0 70px;
}

.facility-img-container-first .facility-block {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  width: 480px;
  max-height: 420px;
}

.facility-img-container-first .facility-block img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
}

.facility-img-container-first .facility-block h3 {
  font-size: 1.2rem;
  margin: 12px 0 8px;
  font-weight: bold;
  text-align: center;

}

.facility-img-container-first .facility-block p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/*　中断テキスト　*/
.facility-text-container {
  text-align: center;
  font-size: 24px;
  padding: 0 20px;
}

.facility-text-container p {
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
}

.facility-text-container::before {
  content: "";
  display: inline-block;
  width: 95%;
  max-width: 1060px;
  height: 1px;
  border-bottom: #333 solid 1px;
}

.facility-text-container::after {
  content: "";
  display: inline-block;
  width: 95%;
  max-width: 1060px;
  height: 1px;
  border-bottom: #333 solid 1px;
}

/* 最新情報チェックボタン */
.facility-btn-container {
  text-align: left;
  margin-top: 10px;
}

.facility-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 5px 20px;
  font-size: 13px;
  color: #333;
  border: 1px solid #333;
  border-radius: 999px;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.facility-btn:hover {
  background-color: #ccc;
  color: #333;
}

.facility-btn .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.facility-btn:hover .arrow {
  transform: translateX(4px);
  /* ホバー時に矢印が少し動く */
}

.facility-img-container-second {
  width: 100%;
  margin: 0 auto;
}

.facility-img-container-second-inner {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0 70px;
}

.facility-img-container-second .facility-block {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-height: 250px;
}

.facility-img-container-second .facility-block img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
}

.facility-img-container-second .facility-block h3 {
  font-size: 1.2rem;
  margin: 12px 0 8px;
  font-weight: bold;
  text-align: center;

}

.facility-img-container-second .facility-block p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 20px;
}

.facility-gallery .item {
  flex: 1 1 calc(33.333% - 20px);
  /* 3カラム */
  box-sizing: border-box;
  text-align: center;
}

.facility-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* タブレット (768px以下で2カラム) */
@media screen and (max-width: 768px) {

  .facility-img-container-first {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    margin: 0 20px;
  }

  .facility-img-container-first .facility-block {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    width: 480px;
    max-height: 480px;
  }

  .facility-img-container-first .facility-block img {
    width: 100%;
    max-width: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 6px;
  }

  .facility-img-container-first .facility-block h3 {
    font-size: 1.2rem;
    margin: 12px 0 8px;
    font-weight: bold;
    text-align: center;
  }

  .facility-img-container-first .facility-block p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
  }

  .facility-gallery .item {
    flex: 1 1 calc(50% - 20px);
  }

  .facility-btn-container {
    text-align: center;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {

  .facility-img-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    margin: 0 40px;
  }

  .facility-block {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 420px;
  }

}

/* スマホ (480px以下で1カラム) */
@media screen and (max-width: 480px) {

  .facility-gallery .item {
    flex: 1 1 100%;
  }
}


/************************************************************/
/*   tourism   */
/************************************************************/
/* <---------- 周辺観光情報PC ----------> */
#tourism-section {
  padding: 60px 0;
  height: 800px;
  background-image: url(../images/tourism_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  scroll-margin-top: 100px;
}

/*サブタイトル*/
.tourism-subtitle-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  z-index: 100;
}

.tourism-subtitle-area h2 {
  font-size: 36px;
}

.tourism-subtitle-en {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: 'Noto sans JP', sans-serif;
  color: #fff;
  opacity: 0.5;
  margin: 0;
}

.tourism-subtitle-en::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #fff;
  opacity: 0.5;
}

.tourism-description {
  font-size: 18px;
  font-family: 'Noto sans JP', sans-serif;
  line-height: 2;
  margin: 50px 0;
}

.tourism-img-container {
  width: 100%;
  margin: 0 auto;
}

.tourism-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 20px;
}

.tourism-gallery .item {
  flex: 1 1 calc(33.333% - 20px);
  /* 3カラム */
  box-sizing: border-box;
  text-align: center;
}

.tourism-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.tourism-gallery p {
  margin: 10px;
  color: #fff;
}

@media screen and (max-width: 768px) {

  #tourism-section {
    height: auto;
  }

  .tourism-gallery .item {
    flex: 1 1 calc(50% - 20px);
  }
}

/* スマホ (480px以下で1カラム) */
@media screen and (max-width: 480px) {

  #tourism-section {
    height: auto;
  }

  .tourism-gallery .item {
    flex: 1 1 100%;
  }
}


/************************************************************/
/*   vision   */
/************************************************************/
/* <---------- 自然公園財団についてPC ----------> */

#vision-section {
  padding: 60px 0;
  height: auto;
  background-color: #13A1C4;
  color: #fff;
  scroll-margin-top: 100px;
}

/*サブタイトル*/
.vision-subtitle-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  z-index: 100;
}

.vision-subtitle-area h2 {
  font-size: 36px;
}

.vision-subtitle-en {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: 'Noto sans JP', sans-serif;
  color: #fff;
  opacity: 0.5;
  margin: 0;
}

.vision-subtitle-en::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #fff;
  opacity: 0.5;
}

.vision-description {
  font-size: 18px;
  font-family: 'Noto sans JP', sans-serif;
  line-height: 2;
  margin: 50px 0;
}


/* カルーセル部分 */
.vision-container {
  display: flex;
  padding: 50px 20px;
}

.vision-text-container {
  max-width: 500px;
  margin: 0 auto;

}

.vision-title {
  width: 100%;
  padding: 7px;
  text-align: center;
  font-size: 26px;
  font-family: Noto serif JP;
  color: #fff;
  position: relative;
}

.vision-title::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.vision-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.vision-text-container p {
  margin: 0 0 30px 0;
  line-height: 1.6;
  width: 500px;

}



/* .vision-img-container img {}

.vision-img-container01 .swiper-slide img {
  width: 500px;
  height: 300px;

} */


/*　カルーセル1　*/
.vision-img-container01 {
  position: relative;
}

.vision-img-container01 .swiper {
  width: 500px;
  height: 300px;
}

.vision-img-container01 .swiper-pagination {
  bottom: -40px !important;
}

.vision-img-container01 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 6px;
}

.vision-img-container01 .swiper-pagination-bullet-active {
  background: #fff;
}


/*　カルーセル2　*/
.vision-img-container02 {
  position: relative;
}

.vision-img-container02 .swiper {
  width: 500px;
  height: 300px;
}

.vision-img-container02 .swiper-pagination {
  bottom: -40px !important;
}

.vision-img-container02 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 6px;
}

.vision-img-container02 .swiper-pagination-bullet-active {
  background: #fff;
}

/*　カルーセル3　*/
.vision-img-container03 {
  position: relative;
}

.vision-img-container03 .swiper {
  width: 500px;
  height: 300px;
}

.vision-img-container03 .swiper-pagination {
  bottom: -40px !important;
}

.vision-img-container03 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 6px;
}

.vision-img-container03 .swiper-pagination-bullet-active {
  background: #fff;
}




@media screen and (max-width: 1023px) {

  .vision-container {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
  }

  .vision-text-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;

  }

  .vision-title {
    width: 100%;
    padding: 7px;
    text-align: center;
    font-size: 26px;
    font-family: Noto serif JP;
    color: #fff;
    position: relative;
  }

  .vision-text-container p {
    margin: 0 0 30px 0;
    line-height: 1.6;
    width: 100%;

  }

  .vision-img-container01 .swiper {
    max-width: 500px;
    width: 100%;
    height: 300px;
  }

  .vision-img-container02 .swiper {
    max-width: 500px;
    width: 100%;
    height: 300px;
  }

  .vision-img-container03 .swiper {
    max-width: 500px;
    width: 100%;
    height: 300px;
  }

}


@media screen and (max-width: 767px) {}





/************************************************************/
/*   info   */
/************************************************************/
/* <---------- ご利用案内PC ----------> */

#info-section {
  padding: 60px 0;
  height: auto;
  scroll-margin-top: 100px;
}

/*サブタイトル*/
.info-subtitle-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #101010;
  z-index: 100;
}

.info-subtitle-area h2 {
  font-size: 36px;
}

.info-subtitle-en {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-family: 'Noto sans JP', sans-serif;
  color: #101010;
  opacity: 0.5;
  margin: 0;
}

.info-subtitle-en::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #101010;
  opacity: 0.5;
}

.info-description {
  font-size: 18px;
  font-family: 'Noto sans JP', sans-serif;
  line-height: 2;
  margin: 50px 0;
}

.info-map {
  margin: 50px auto;
}

.info-map iframe {
  display: block;
  margin: 0 auto;
  /* 中央寄せ */
  width: 1060px;
  /* 固定幅 */
  max-width: 100%;
  /* 画面が狭い時は縮む */
  height: 450px;
}

.info-btn {
  text-align: center;
  margin: 0 auto;
}

.info-btn a {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
  width: 100%;
}

.info-btn a:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-table {
  margin: 50px auto;
  overflow-x: auto;
  max-width: 1060px;
  padding: 0;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
}

.info-table th,
.info-table td {
  border: 1px solid #ddd;
  padding: 15px;
}

.info-table th {
  background: #0a9ec7;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.info-table td small {
  font-size: 0.85rem;
  color: #555;
}

/* =========================
   スマホ向け (max-width: 767px)
   ========================= */
@media (max-width: 767px) {

  .info-table table,
  .info-table thead,
  .info-table tbody,
  .info-table th,
  .info-table td,
  .info-table tr {
    display: block;
    /* 全部ブロック化 */
    width: 100%;
  }

  .info-table {
    padding: 15px;
  }

  .info-table thead {
    display: none;
    /* ヘッダー非表示 */
  }

  .info-table tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }

  .info-table td {
    border: none;
    text-align: left;
    padding: 10px;
    position: relative;
  }

  .info-table td::before {
    content: attr(data-label);
    /* ヘッダー名を疑似要素で表示 */
    font-weight: bold;
    color: #0a9ec7;
    display: block;
    margin-bottom: 5px;
  }
}



/************************************************************/
/*   archive   */
/************************************************************/
/* <---------- お知らせPC ----------> */
/* セクション全体 */
#archive-section {
  height: auto;
  margin: 70px 40px 100px;
  scroll-margin-top: 150px;
}

.archive-text-area {
  max-width: 650px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: end;
  margin-bottom: 40px;
}

.archive-text-area h2 {
  font-size: 28px;
  margin-bottom: 0;
  font-family: 'Noto Serif JP', serif;

}

.archive-description {

  line-height: 1.6;
}

.archive-subtitle {
  font-size: 15px;
  font-family: 'Noto Serif JP', serif;
  margin-left: 20px;
  opacity: 0.5;
  position: relative;
}

/* .archive-subtitle::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background-color: #000;
  opacity: 0.5;
} */

.archive-line {
  border-bottom: 1px solid #707070;
  margin: 25px 0;
}

/* 新着ニュースリスト全体 */
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 各ニュース項目 */
.archive-list li {
  display: flex;
  align-items: center;
  gap: 1.5em;
  /* border-bottom: 1px solid #707070; */
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}

/* 日付 */
.archive-date {
  font-size: 0.85em;
  color: #666;
  white-space: nowrap;
}

/* カテゴリラベル */
.archive-cat {
  border: 1px solid #707070;
  padding: 0 8px;
  font-size: 0.8em;
  white-space: nowrap;
}

/* タイトルリンク */
.archive-list a {
  color: #333;
  text-decoration: none;
  flex: 1;
  display: flex;
  justify-content: space-between;
  /* タイトルと矢印を左右に配置 */
  align-items: center;
}

.archive-list a:hover {
  text-decoration: underline;
}

/* タイトル部分 */
.archive-title {
  flex: 1;
}

/* 矢印（7日以内のみ表示） */
.archive-arrow {
  font-size: 1em;
  color: #707070;
  margin-left: 0.5em;
  flex-shrink: 0;
}

.archive-btn {
  text-align: right;
  margin: 0 auto;
}

.archive-btn a {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
  width: 100%;
  text-align: center;
}

.archive-btn a:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}




/* -------------------------
   レスポンシブ対応
------------------------- */
@media (max-width: 1024px) {
  #archive-section {
    margin: 60px 20px;
  }

  .archive-list li {
    gap: 1em;
  }
}

@media (max-width: 768px) {
  .archive-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }

  .archive-list a {
    width: 100%;
  }

  .archive-title {
    flex: none;
  }
}

@media (max-width: 480px) {
  #archive-section {
    margin: 40px 15px;
  }

  .archive-list li {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}




.archive-pagination {
  text-align: center;
  margin: 30px 0;
}

.archive-pagination ul {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.archive-pagination li {
  display: inline-block;
}

.archive-pagination a,
.archive-pagination span {
  display: block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.archive-pagination .current {
  background: #333;
  color: #fff;
  border-color: #333;
}












/************************************************************/
/*   form   */
/************************************************************/
/* <---------- お問合せ ----------> */

#contact-section {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}


.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}


.contact-container h1 {}

.contact-container p {
  margin-left: 20px;
}

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
#cf7-area {
  width: 100%;
  margin: 0 auto;
  font-family: 'Noto sans JP', sans-serif;
  max-width: 1000px;
  padding: 100px 20px;
}

.cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 1.75em;
}

.cf7-q {
  width: 30%;
  margin: 0 30px 0 0;
  text-align: right;
}

.cf7-a {
  width: 60%;
}

/*　見出し　*/
.form-heading {
  width: 100%;
  /* background-color: #191970;
  border-left: 1em solid #6495ED; */
  border-radius: 2px;
  color: #000;
  /* font-weight: bold; */
  padding: 1em .8em;
  margin: 0 0 2em;
}

.form-heading p {
  margin: 0;
}

/* 各項目共通 */
#cf7-area label {
  font-weight: bold;
}


#cf7-area input[type="text"],
#cf7-area input[type="email"],
#cf7-area input[type="tel"],
#cf7-area textarea {
  /* background: #F0F8FF; */
  width: 100%;
  /* margin-left: 10px; */
  height: 30px;
}

#cf7-area input[type="text"]:focus,
#cf7-area input[type="email"]:focus,
#cf7-area input[type="tel"]:focus,
#cf7-area textarea:focus {
  /* background: #FFE4E1; */
  border: 2px solid #191970;
  outline: 0;
}

#cf7-area input[type="checkbox"],
#cf7-area input[type="radio"] {
  appearance: auto;
}


#cf7-area .wpcf7-list-item {
  display: block;
}

#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}

.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}

.cf7-submit {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}




.wpcf7-submit:disabled, .wpcf7-submit {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #333;
  border-radius: 30px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
  width: 100%;
}

.wpcf7-submit:disabled:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}




#cf7-area input[type=”submit”] {
  width: 100%;
  background-color: #191970;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
}

#cf7-area input[type=”submit”]:hover {
  background-color: #ffffff;
  border: 1px solid #191970;
  color: #191970;
}

.cf7-btn {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

/*　必須ラベル　*/
.cf7-req {
  font-size: .8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}


.cf7-privacy-ttl {
  text-align: center;
}

.cf7-privacy-text {
  text-align: center;
  margin-bottom: 20px;
}

.hidden-fields-container {
  border: none;
}

@media screen and (max-width:768px) {
  .cf7-item {
    display: block;
  }

  #cf7-area label {
    display: block;
    margin-bottom: 10px;
  }

  .cf7-q {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .cf7-a {
    width: 100%;
  }

  #cf7-area input[type=”text”], #cf7-area input[type=”email”], #cf7-area input[type=”tel”], #cf7-area textarea {
    margin-left: 0;
  }

  .cf7-submit {
    width: 90%;
  }
}



#pryvacy-section {
  padding: 50px 40px 100px;
}