@charset "utf-8";
/* CSS Document */
a {}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
img.bg.spview {
  display: none;
}
header.list--header {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 897px) {
  .imgcover img {
    height: 100%;
    width: auto;
  }
}
img.logo {
  display: block;
  position: absolute;
  bottom: 41%;
  left: 44%;
}
/* =====================================
  投稿一覧ブロック（共通）
===================================== */
.post-archive {
  padding: 80px 0;
}
.post-archive h2 {
  text-align: center;
}
.post-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
/* -------------------------------------
  投稿カード
------------------------------------- */
.post-card {
  background: #f7f7f7;
  transition: transform .3s ease, box-shadow .3s ease;
}
.post-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.post-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.post-card__title {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: bold;
}
.post-card__excerpt {
  padding: 0 20px 30px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
/* 空表示 */
.post-card--empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
}
/* =====================================
  スマホ：投稿一覧
===================================== */
@media screen and (max-width: 896px) {
  .post-archive {
    padding: 40px 0;
  }
  .post-archive__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .post-card {
    width: 48%;
  }
  .post-card__img img {
    height: auto;
  }
}
/* =====================================
  投稿シングル（詳細）
===================================== */
.post-detail {
  background: #fff;
  padding: 80px 0;
}
.post-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}
.post-detail__title {
  font-size: 26px;
  margin-bottom: 30px;
}
.post-detail__content img {
  width: 100%;
  height: auto;
  margin: 30px 0;
}
.post-detail__content p {
  margin-bottom: 30px;
  line-height: 1.9;
}
.post-detail__note {
  margin-top: 40px;
  font-size: 13px;
  color: #666;
}
/* =====================================
  定義リスト（情報表）
===================================== */
.post-meta {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding: 1em 0;
  border-bottom: 1px dotted #ccc;
  font-size: 15px;
}
.post-meta:first-of-type {
  border-top: 1px solid #ccc;
}
.post-meta:last-of-type {
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
}
.post-meta dt {
  font-weight: bold;
}
.post-meta dd {
  margin: 0;
  line-height: 1.8;
}
/* =====================================
  Google Map
===================================== */
.post-map iframe {
  width: 100%;
  height: 400px;
}
/* =====================================
  スマホ：シングル
===================================== */
@media screen and (max-width: 896px) {
  .post-detail {
    background: #fff;
    padding: 80px 0 0;
  }
  .post-detail__inner {
    padding: 0 20px 60px;
  }
  .post-detail__title {
    font-size: 22px;
  }
  .post-meta {
    grid-template-columns: 100px 1fr;
    font-size: 14px;
    padding: 20px 0;
  }
  .post-map iframe {
    height: 260px;
  }
}
/* =====================================
  ワイドPC
===================================== */
@media screen and (min-width: 1800px) {
  .post-detail__inner {
    max-width: 1640px;
  }
  .post-card__img img {
    height: 360px;
  }
}
.content_box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 50px 100px;
}
@media screen and (min-width: 1800px) {
  .content_box {
    max-width: 1500px;
  }
}
@media screen and (max-width: 896px) {
  .content_box {
    padding: 0 10px 100px;
  }
}
/* ===================================================
周辺観光
=================================================== */
.top_gf {
  padding: 100px 0;
  background: #f9f7f3;
}
.top_gf ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
}
.top_gf ul li {
  width: calc(100% / 5);
  margin: 10px 0;
}
.top_gf ul li .img img {
  aspect-ratio: 352 / 250;
  object-fit: cover;
  object-position: center;
}
.top_gf ul li h3 {
  margin-top: 10px;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 896px) {
  .top_gf {}
  .top_gf ul {
    flex-wrap: wrap;
    gap: 30px 15px;
  }
  .top_gf ul li {
    width: calc(100% / 2 - 7.5px);
  }
  .top_gf ul li h3 {
    font-size: 13px;
  }
}
.btn {
  margin-top: 50px;
  text-align: center;
}
.btn a {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #3a2f1c;
  color: #3a2f1c;
  text-decoration: none;
  transition: all .3s;
  text-align: center;
}
.btn a:hover {
  background: #fff;
  color: #3a2f1c;
}
.title-classic {
  font-size: 3.5rem;
  font-weight: 600;
  color: #3a2f1c; /* 落ち着いたブラウン */
  letter-spacing: 0.1rem;
  border-bottom: 2px solid #e6d7b5; /* 上品なアクセントライン */
  padding-bottom: 0.5rem;
  margin-bottom: 40px;
}
.title-classic span {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  color: #a3967a; /* サブテキスト色 */
  margin-top: 5px;
}
.top_act {
  background: #fff;
}
.villa-title {
  font-family: "Merriweather", serif;
  font-size: 3.0rem;
  font-weight: 700;
  color: #3a2f1c;
  letter-spacing: 0.15rem;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
  padding-bottom: 10px; /* 下線と文字の間隔 */
}
/* 下線を擬似要素で追加 */
.villa-title::after {
  content: "";
  display: block;
  width: 60px; /* 下線の長さ */
  height: 3px; /* 下線の太さ */
  background-color: #e6d7b5; /* 高級感のある色 */
  margin-top: 10px; /* タイトルとの間隔 */
  border-radius: 2px; /* 角を丸くして柔らかい印象 */
}
.villa-title .sub-title {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #a3967a;
  margin-top: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 896px) {
  .villa-title {
    text-align: center;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
  }
  .villa-title::after {
    margin-left: auto;
    margin-right: auto; /* 中央揃えに */
  }
}