﻿@charset "UTF-8";

/* --------------------
 共通レイアウト
-------------------- */

#Contents {
  margin: 0 auto;
}

#divTopArea {
  margin-top: 15px;
}

#featureList{
  height: 60px;
}
.faq-float-btn{
  display: none !important;
}


/* --------------------
 スライド
-------------------- */

  .slider {
  margin: 20px auto 60px auto;
  position: relative;
  max-width: 1200px;
}

/* 各スライド */
.slide {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide a{
      overflow: visible;
} 

/* 表示中 */
.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* 左画像 */
.slide img {
  width: 750px;       
  height: 400px;      
  object-fit: cover;  /* はみ出し防止＆トリミング */
  border-radius: 10px;
  box-shadow: 4px 6px 15px rgba(0,0,0,0.1);
  display: block;
}

/* 右テキスト */
.slide-text {
  width: 50%;
  position: relative;
}

.slide-text h2 {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #fda6a6;
  font-weight: 500;
}

/* Read more */
.readmore {
  display: inline-block;
  color: #6d4655 !important;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  bottom: 12px;
  padding-left: 30px;
  transition: color 0.8s ease, transform 0.8s ease;
  left: 56%;
}

.readmore::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #fda6a6;
  transform: translateY(-50%);
  transition: width 0.8s ease;
}

.readmore:hover {
  color: #fda6a6;
  transform: translateX(20px);
}

.readmore:hover::before {
  width: 20px;
}

/* ドット */
.dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 17px;
  right: 20px;
}

.dot {
  width: 12px;          /* 最大サイズに統一 */
  height: 12px;
  border-radius: 50%;
  background: #fda6a6;
  opacity: 0.3;
  margin: 0 6px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.5);   /* 通常時は小さく見せる */
}

.dot.active {
  opacity: 1;
  transform: scale(1);     /* 拡大しても中央はズレない */
}

/* ナンバー */
.slide-number {
  font-size: 80px;
  font-weight: 500;
  position: absolute;
  right: 15px;
  top: -30px;
  font-family: "Noto Sans JP", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(253, 166, 166, 0.3);
}

/* --------------------
 見出し
-------------------- */
.section-title {
  color: #6d4655;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.5rem;
  font-size: 38px;
  margin-bottom: 20px;
}

.marker {
  background: linear-gradient(transparent 80%, #fccccc 80%);
}

.has-text-align-center {
  text-align: center;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.18rem;
  padding: 15px;
  font-size: 16px;
}

/* --------------------
 カテゴリリンク
-------------------- */
.feature-page-parts-category-links-title,
.feature-page-parts-category-links-description{
  display: none;
}
.feature-page-parts-category-links-items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 60px 0;
  padding: 0;
}

.feature-page-parts-category-links-item {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #fda6a6;
  border-radius: 30px;
  background: transparent;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}

.feature-page-parts-category-links-item:hover {
  background: #fda6a6;
  color: #fff !important;
}

.feature-page-parts-category-links-item-isactive {
  background: #fda6a6;
  color: #fff !important;
  border-color: #fda6a6;
  font-weight: 500;
}

/* --------------------
 特集カード一覧
-------------------- */
.feature-page-view-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
  padding: 0;
}

.feature-page-view-item {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  background: #fff;
}

.feature-page-view-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.feature-page-view-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.feature-page-view-title {
  padding: 12px 14px;
}

.feature-page-view-title p {
  font-size: 16px;
  margin: 0;
  color: #6d4655;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.07rem;
}

.feature-page-view-no-item {
  text-align: center;
  font-size: 16px;
  padding: 20px 0;
}


/* --------------------
 特集ページ
-------------------- */

#Contents > span:first-of-type {
  display: none;
}

#tblLayout {
    width: 800px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

#header-banner {
  width: 100%;        /* 親要素いっぱい */
  height: 400px;      /* 高さ固定 */
  overflow: hidden;   /* はみ出しカット */
  border-radius: 12px;
}

#header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* トリミング */
  display: block;
}
#page-title{
  color: #6d4655;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.25rem;
  font-size: 28px;
  padding-top: 20px;
}

/* 本文ブロック */
.has-white-background-color.has-background {
  padding: 16px 18px;
  margin: 16px 0;
  line-height: 1.95;
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 0.18rem;
  font-weight: 500;
}

/* 見出しタイトル */
.jinr-title {
  display: inline;
  color: #6d4655;
  font-weight: bold;
  font-size: 26px;

  background: linear-gradient(transparent 70%, #fccccc 60%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 6px;
}


/* 区切り線ブロック全体 */
.wp-block-jinr-blocks-designborder.jinr-sen {
  margin: 0 0;
}

/* 線の中央寄せ */
.d--sen-style6 {
  text-align: center;
}

/* 実際の線 */
.a--sen-parts1 {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #d0d0d0;
  border-radius: 1px;
}

.feature-page-parts-category-links-title,
.feature-page-parts-category-links-description {
  display: none;
}

.p-list ul {
  display: none;
}

.page-date {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.1rem;
  color: #999;
  font-weight: 500;
}

.more-wrap {
  text-align: center;
  margin: 30px 0;
}

#loadMoreBtn {
  padding: 15px 40px;
  border: 1px solid #fda6a6;
  background: #fff;
  color: #fda6a6;
  cursor: pointer;
  border-radius: 40px;
  font-size: 16px;
}

#loadMoreBtn:hover {
  background: #fda6a6;
  color: #fff;
}

.back-btn-area {
  text-align: center;   /* 横中央 */
  margin: 30px 0;
}

.back-bihada-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

.back-bihada-btn:hover {
  background: #eee;
}

/* 全体中央寄せ */
.p-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* 件数表示 */
.p-list > div {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  color: #666;
}

/* ページ番号（数字）を非表示 */
.p-list ul {
  display: none;
}

/* 前へ・次へボタン共通 */
.p-list .prev-list,
.p-list .next-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

/* hover */
.p-list .prev-list:hover,
.p-list .next-list:hover {
  background: #333;
  color: #fff;
}

/* 矢印（三角） */
.p-list .prev-list::before {
  content: "◀";
  font-size: 14px;
}

.p-list .next-list::after {
  content: "▶";
  font-size: 14px;
}