/* ============================================
   page-about_takushi 専用スタイル
   assets/css/page-about-takushi.css
   ============================================ */

/* ---------- ページヒーロー ---------- */
.page-about-takushi .page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.page-about-takushi .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-about-takushi .page-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background: rgba(0, 0, 0, .3);*/
  text-align: center;
}
.page-about-takushi .page-hero__title {
  color: #fff;
  font-size: clamp(1.4rem, 1.8vw, 3rem);
  font-weight: 500;
  letter-spacing: .1em;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  margin-bottom: .4rem;
}
.page-about-takushi .page-hero__sub {
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  letter-spacing: .25em;
  margin-bottom: 5%;
  font-weight: 700;
}

/* ---------- 共通：セクション ---------- */
.page-about-takushi section {
    padding: 2rem 0 2rem;
}
.page-about-takushi .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.page-about-takushi .section-title {
  font-size: clamp(1.3rem, 2.0vw, 1.5rem);
  font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
  color: #000;
  margin-bottom: .5rem;
  letter-spacing: 0.1rem;
}
.page-about-takushi .section-line {
  width: 48px;
  height: 3px;
  background: #c8a96e;
  margin: .5rem auto;
  border-radius: 2px;
}
.page-about-takushi .section-lead {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #000;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.page-about-takushi .section-update {
  font-size: .78rem;
  color: #000;
  margin-top: .5rem;
}
.page-about-takushi .bg-light {
  background: #f8f6f2;
}

/* ---------- ③ エリア紹介 ---------- */
.page-about-takushi .areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.page-about-takushi .area-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
  transition: transform .3s ease, box-shadow .3s ease;
}
.page-about-takushi .area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.page-about-takushi .area-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.page-about-takushi .area-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.page-about-takushi .area-card:hover .area-card__img img {
  transform: scale(1.06);
}
.page-about-takushi .area-card__body {
  padding: 1.4rem;
}
.page-about-takushi .area-card__label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #c8a96e;
  border: 1px solid #c8a96e;
  border-radius: 2px;
  padding: 2px 8px;
  margin-bottom: .6rem;
}
.page-about-takushi .area-card__title {
  font-size: 1.2rem;
    font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
  color: #000;
  margin-bottom: .5rem;
}
.page-about-takushi .area-card__text {
  font-size: .84rem;
  line-height: 1.8;
  color: #000;
  text-align: justify;
}

/* ---------- ④ 数字で見る多久市 ---------- */
.page-about-takushi .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.page-about-takushi .stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  border-top: 4px solid #c8a96e;
}
.page-about-takushi .stat-card__icon {
  height: 80px;
  margin: 0 auto .8rem;
}
.page-about-takushi .stat-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-about-takushi .stat-card__label {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.4;
  margin-bottom: .4rem;
  font-weight: 500;
}
.page-about-takushi .stat-card__label span {
  display: block;
  font-size: .9rem;
}
.page-about-takushi .stat-card__value {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  line-height: 1;
  margin-bottom: .3rem;
}
.page-about-takushi .stat-unit {
  font-size: .9rem;
  font-weight: 400;
  margin-left: .15em;
}
.page-about-takushi .stat-card__note {
  font-size: .9rem;
  color: #000;
}

/* ---------- ⑤ 観光スポット ---------- */
.page-about-takushi .spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.page-about-takushi .spot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
  transition: transform .3s ease;
}
.page-about-takushi .spot-card:hover {
  transform: translateY(-4px);
}
.page-about-takushi .spot-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.page-about-takushi .spot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.page-about-takushi .spot-card:hover .spot-card__img img {
  transform: scale(1.06);
}
.page-about-takushi .spot-card__cat {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: #f0e68c;
  color: #8b4513;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}
.page-about-takushi .spot-card__body {
  padding: 1.3rem;
}
.page-about-takushi .spot-card__title {
  font-size: 1.1rem;
    font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
  color: #000;
  margin-bottom: .5rem;
}
.page-about-takushi .spot-card__text {
  font-size: .83rem;
  line-height: 1.8;
  color: #000;
  text-align: justify;
}

/* ---------- ⑥ アクセス・地図 ---------- */
.page-about-takushi .access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.page-about-takushi .access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  display: block;
  border: none;
}
.page-about-takushi .access-info__title {
  font-size: 1.2rem;
  font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
  color: #000;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid #e8e2d9;
}
.page-about-takushi .access-list {
  margin-bottom: 1.8rem;
}
.page-about-takushi .access-list dt {
  font-weight: 700;
  color: #444;
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-about-takushi .access-list dt:first-child {
  margin-top: 0;
}
.page-about-takushi .access-list dd {
  margin: .3rem 0 0 1.8rem;
  font-size: .86rem;
  color: #000;
  line-height: 1.7;
}
.page-about-takushi .btn {
  /*display: inline-block;*/
  padding: .5rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.page-about-takushi .btn-outline {
  border: 2px solid #c8a96e;
  color: #c8a96e;
  margin-bottom: 20px;
  width: 200px;
}
@media (max-width: 768px) {
.page-about-takushi .btn-outline {
  width: 60%;
  }
}

.page-about-takushi .btn-outline:hover {
  background: #c8a96e;
  color: #fff;
}

/* ---------- ⑦ 市長メッセージ ---------- */
.page-about-takushi .mayor-wrap {
  display: grid;
  grid-template-columns: 0.3fr 2.3fr;
  gap: 3rem;
  align-items: start;
}

.page-about-takushi .mayor-img img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.page-about-takushi .mayor-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 1rem;
}

.page-about-takushi .mayor-name {
  font-weight: 400;
  color: #000;
  margin-top: 1.4rem;
  text-align: right;
  margin-right: 20px;
}

/* PC（1025px〜）: デフォルト（横並び） */
@media (min-width: 1025px) {
  .page-about-takushi .mayor-wrap {
    grid-template-columns: 0.3fr 2.3fr;
    gap: 3rem;
  }

  .page-about-takushi .mayor-img img {
    aspect-ratio: 4 / 4;
  }
}

/* TAB（744〜1024px）: タテ並び + 画像正方形 ← カスタム！ */
@media (min-width: 744px) and (max-width: 1024px) {
  .page-about-takushi .mayor-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-about-takushi .mayor-img {
    width: 60%;
    margin: 0 auto;
  }

  .page-about-takushi .mayor-img img {
		aspect-ratio: 1 / 1;
			width: 30%;
			margin: 0 auto;
  }

  .page-about-takushi .mayor-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .page-about-takushi .mayor-name {
    text-align: center;
    margin-right: 0;
  }
}

/* SP（〜743px）: タテ並び + 画像正方形 */
@media (max-width: 743px) {
  .page-about-takushi .mayor-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-about-takushi .mayor-img {
    width: 30%;
    margin: 0 auto;
  }

  .page-about-takushi .mayor-img img {
    aspect-ratio: 1 / 1;
  }

  .page-about-takushi .mayor-text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .page-about-takushi .mayor-name {
    text-align: center;
    margin-right: 0;
  }
}

/* ---------- ⑧ ふるさと納税ロゴ ---------- */
.page-about-takushi .furusato-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.page-about-takushi .furusato-logos a {
  flex: 0 0 calc(14% - 1rem);
  min-width: 110px;
  border: 1px solid #e8e2d9;
  border-radius: 6px;
  padding: .1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s;
}
.page-about-takushi .furusato-logos a:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.page-about-takushi .furusato-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .page-about-takushi .areas-grid,
  .page-about-takushi .spots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about-takushi .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-about-takushi .page-hero {
    height: 260px;
  }
  .page-about-takushi .areas-grid,
  .page-about-takushi .spots-grid,
  .page-about-takushi .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-about-takushi .access-wrap {
    grid-template-columns: 1fr;
  }
  .page-about-takushi .access-map iframe {
    height: 280px;
  }
  .page-about-takushi .mayor-wrap {
    grid-template-columns: 1fr;
  }
  .page-about-takushi .mayor-img img {
    aspect-ratio: 9 / 9;
  }
	
/* SP（〜743px）: 2列 + 「ふるさと納税について」と同じサイズ */
@media (max-width: 743px) {
  .page-about-takushi .furusato-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .page-about-takushi .furusato-logos a {
    width: 100%;
    background: #fff;
    border: 1px solid #e0ddd6;
    border-radius: 8px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
	min-height: 50px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .page-about-takushi .furusato-logos a:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  .page-about-takushi .furusato-logos img {
    height: auto;
    width: auto;
    max-width: 95%;
    max-height: 60px;
    object-fit: contain;
  }
}


/* SP（〜743px）: 1列 */
@media (max-width: 743px) {
  .page-about-takushi .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .page-about-takushi .stat-card {
    padding: 1.5rem 1rem;
  }

  .page-about-takushi .stat-card__icon {
    height: 60px;
    margin-bottom: 0.5rem;
  }

  .page-about-takushi .stat-card__label {
    font-size: 1rem;
  }

  .page-about-takushi .stat-card__value {
    font-size: 1.8rem;
  }
}

/* TAB（744〜1024px）: 2列 + 9個目を中央寄せ ← カスタム！ */
@media (min-width: 744px) and (max-width: 1024px) {
  .page-about-takushi .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }

  .page-about-takushi .stat-card {
    width: 100%;
    max-width: 280px;
    padding: 1.5rem 1rem;
  }

  /* 9個目のカードを中央寄せ */
  .page-about-takushi .stats-grid .stat-card:nth-child(9) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 280px;
  }

  .page-about-takushi .stat-card__icon {
    height: 70px;
    margin-bottom: 0.6rem;
  }

  .page-about-takushi .stat-card__label {
    font-size: 1.1rem;
  }

  .page-about-takushi .stat-card__value {
    font-size: 2rem;
  }
}

/* PC（1025px〜）: 3列 */
@media (min-width: 1025px) {
  .page-about-takushi .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-about-takushi .stat-card {
    width: auto;
    max-width: none;
    padding: 1.8rem 1.2rem;
  }

  /* PC時は9個目の特別設定を解除 */
  .page-about-takushi .stats-grid .stat-card:nth-child(9) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }

  .page-about-takushi .stat-card__icon {
    height: 80px;
    margin-bottom: 0.8rem;
  }

  .page-about-takushi .stat-card__label {
    font-size: 1.2rem;
  }

  .page-about-takushi .stat-card__value {
    font-size: 2.2rem;
  }
}



/* SP（〜743px）: 1列 */
@media (max-width: 743px) {
  .page-about-takushi .spots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-about-takushi .spot-card__body {
    padding: 1.2rem;
  }

  .page-about-takushi .spot-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .page-about-takushi .spot-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* TAB（744〜1024px）: 2列 + 3つ目を中央寄せ ← カスタム！ */
@media (min-width: 744px) and (max-width: 1024px) {
  .page-about-takushi .spots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    justify-items: center;
  }

  .page-about-takushi .spot-card {
    width: 100%;
    max-width: 340px;
  }

  /* 3つ目のカードを中央寄せ */
  .page-about-takushi .spots-grid .spot-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 340px;
  }

  .page-about-takushi .spot-card__img {
    aspect-ratio: 16 / 10;
  }

  .page-about-takushi .spot-card__body {
    padding: 1.2rem;
  }

  .page-about-takushi .spot-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .page-about-takushi .spot-card__text {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* PC（1025px〜）: 3列 */
@media (min-width: 1025px) {
  .page-about-takushi .spots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    justify-items: auto;
  }

  .page-about-takushi .spot-card {
    width: auto;
    max-width: none;
  }

  /* PC時は3つ目の特別設定を解除 */
  .page-about-takushi .spots-grid .spot-card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
}


/* SP（〜743px）: 1列 */
@media (max-width: 743px) {
  .page-about-takushi .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-about-takushi .area-card__body {
    padding: 1.2rem;
  }

  .page-about-takushi .area-card__label {
    font-size: 0.65rem;
    padding: 2px 7px;
  }

  .page-about-takushi .area-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .page-about-takushi .area-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* TAB（744〜1024px）: 2列 + 3つ目を中央寄せ ← カスタム！ */
@media (min-width: 744px) and (max-width: 1024px) {
  .page-about-takushi .areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    justify-items: center;
  }

  .page-about-takushi .area-card {
    width: 100%;
    max-width: 350px;
  }

  .page-about-takushi .areas-grid .area-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .page-about-takushi .area-card__img {
    aspect-ratio: 16 / 10;
  }

  .page-about-takushi .area-card__body {
    padding: 1.2rem;
  }

  .page-about-takushi .area-card__label {
    font-size: 0.65rem;
    padding: 2px 7px;
    margin-bottom: 0.5rem;
  }

  .page-about-takushi .area-card__title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .page-about-takushi .area-card__text {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}

/* PC（1025px〜）: 3列 */
@media (min-width: 1025px) {
  .page-about-takushi .areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    justify-items: auto;
  }

  .page-about-takushi .area-card {
    width: auto;
    max-width: none;
  }

  .page-about-takushi .areas-grid .area-card:nth-child(3) {
    grid-column: auto;
    justify-self: auto;
  }
}