@charset "UTF-8";
/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
/* TOPのパネル */
.top-panel {
  /* 位置調整 */
  position: relative;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  z-index: 1;
}

.top-panel .smb-panels__item {
  /* パネルの影 */
  -webkit-box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
}

.top-panel .smb-panels__item:hover {
  /* 標準であるホバーエフェクトの除去 */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.top-panel .smb-panels__item__body {
  /* 標準のh2装飾の除去 */
  padding: 80px;
}

.top-panel .smb-panels__item__body h2 {
  background-color: transparent;
  border-left: none;
}

/* 3枚並んだパネルの装飾 */
.panels .c-row__col {
  /* パネルの余白除去 */
  padding: 0;
}

.panels .smb-panels__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  /* パネルホバー時の装飾 */
}

.panels .smb-panels__item__figure {
  /* テキストと画像の位置変更 */
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
}

.panels .smb-panels__item__figure::before {
  /* ホバー時の装飾 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: '';
  white-space: pre;
  background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 13px;
  -webkit-transition: all 0.6s 70ms;
  transition: all 0.6s 70ms;
  opacity: 0;
  z-index: 1;
}

.panels .smb-panels__item__figure img {
  /* 変化の時間 */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.panels .smb-panels__item__body {
  /* パネルのボーダー部分 */
  -webkit-box-shadow: 0 0 0 1px #ccc;
          box-shadow: 0 0 0 1px #ccc;
  /* パネルのテキストと画像の順序を変更*/
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.panels .smb-panels__item__title {
  font-size: 24px;
}

.panels .smb-panels__item__content {
  font-size: 14px;
}

.panels .smb-panels__item:hover .smb-panels__item__figure::before {
  /* ホバー時に文字浮き出して見えるようにscaleで拡大 */
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  opacity: 1;
}

.panels .smb-panels__item:hover .smb-panels__item__figure img {
  /* ホバー時に画像を拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.smb-section__title {
  /* セクションタイトルサイズ変更 */
  font-size: 2.5em;
}

.smb-section__title::after {
  /* 標準であるセクションタイトルの下線除去 */
  display: none;
}

/* バナーの装飾 */
.banners .smb-items__banner__figure {
  /* デフォルトのfilterの除去 */
  -webkit-filter: none !important;
          filter: none !important;
}

.banners .smb-items__banner__figure img {
  /* 常時filterをかける */
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.banners .smb-items__banner__body {
  /* 変化にかける時間 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.banners .smb-items__banner__title {
  font-size: 24px;
  font-weight: 600;
}

.banners .smb-items__banner__lede {
  font-size: 16px;
}

.banners .smb-items__banner:hover .smb-items__banner__body {
  /* ホバー時に文字を右に移動 */
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

@media (max-width: 1023px) {
  /******************************************************************

Stylesheet: 1023px以下（タブレット）で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title h2 {
    font-size: 32px;
  }
  .hero .swiper-slide {
    height: 80vh;
  }
  /* タブレット以下でパネルの画像の重なりをなくす */
  .top-panel {
    margin-top: 30px;
    -webkit-transform: none;
            transform: none;
    /* パネルの影を調節 */
  }
  .top-panel .smb-panels__item {
    -webkit-box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
            box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
  }
  .top-panel .smb-panels__item__body {
    padding: 30px;
  }
  /* フッターウィジェットエリア */
  .l-footer-widget-area__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    border: none !important;
  }
}

@media (max-width: 639px) {
  /******************************************************************

Stylesheet: 639px以下(スマホ)で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title {
    top: 15% !important;
  }
  .hero__title h2 {
    font-size: 24px !important;
  }
  .hero__btn {
    bottom: 20% !important;
  }
  .hero__btn a {
    /* ボタンのサイズを小さく */
    width: 180px !important;
    height: 45px !important;
  }
  /* 3つ並んだパネル */
  .panels {
    /* パネルの余白追加 */
  }
  .panels .c-row__col {
    padding: 0 14px;
  }
  /* ボタン */
  .btn .smb-btn {
    width: 180px !important;
    height: 45px !important;
    margin-top: 30px !important;
  }
  /* 任意のタクソノミーの投稿（リッチメディア）のスタイル（スマホ） */
  .c-entries--rich-media .c-entries__item:nth-of-type(-n + 5) {
    /* 6番目を除く */
    margin-bottom: 30px;
  }
  .c-entries--rich-media .c-entry-summary__content {
    /* スマホでテキスト除去 */
    display: none;
  }
  /* フッター */
  .info-inner {
    display: block !important;
    text-align: center !important;
    height: auto !important;
    padding: 40px;
  }
  .info__logo {
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
  .info__logo img {
    width: 120px;
  }
  .info__text {
    margin-bottom: 25px;
  }
}

.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 9s ease;
  transition: -webkit-transform 9s ease;
  transition: transform 9s ease;
  transition: transform 9s ease, -webkit-transform 9s ease;
}

.swiper-slide-active .main-visual {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-slide-active .hero__title {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.swiper-slide-active .hero__btn {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.hero {
  overflow: hidden;
}

.hero__title {
  position: absolute;
  top: 30%;
  left: 50%;
  color: #fff;
  text-align: center;
  width: 90vw;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  z-index: 1;
  opacity: 0;
}

.hero__title h2 {
  font-size: 36px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
}

.hero__title span {
  display: block;
}

.hero__btn {
  position: absolute;
  bottom: 30%;
  left: 50%;
  font-size: 16px;
  color: #fff;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  opacity: 0;
  z-index: 1;
}

.hero__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #cd162c;
  text-decoration: none;
  width: 240px;
  height: 60px;
}

/* ヘッダー */
/* グローバルメニュー位置調整 */
.l-header .c-navbar__item {
  position: relative;
}

.l-header .c-navbar__item::after {
  /* メニューアイテムの左に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.l-header .c-navbar__item:last-of-type::before {
  /* 最後のメニューアイテムの右に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.btn .smb-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 60px;
  margin-top: 60px;
}

/* 最近の投稿（テキスト）のスタイル */
.c-entries--text {
  position: relative;
  background-color: #f9f9f9;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.c-entries--text .c-entries__item a {
  padding-right: 2em;
  padding-left: 2em;
}

.c-entries--text .c-entries__item .c-entry-summary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--text .c-entries__item .c-entry-summary__title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-entries--text .c-entries__item .c-entry-summary__figure {
  display: block;
  position: absolute;
  top: -2px;
  left: 6em;
  /* 日付の長さに合わせて調整 */
  background-color: transparent;
}

.c-entries--text .c-entries__item .c-entry-summary__figure img, .c-entries--text .c-entries__item .c-entry-summary__figure::before {
  display: none;
}

.c-entries--text .c-entries__item .c-entry-summary__figure span {
  background-color: #fff;
  border-radius: 15px;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-4 {
  color: #333;
  border: 1px solid #333;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-6 {
  color: #cd162c;
  border: 1px solid #cd162c;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-5 {
  color: #104f96;
  border: 1px solid #104f96;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-7 {
  color: #e97501;
  border: 1px solid #e97501;
}

.c-entries--text .c-entries__item .c-entry-summary__term {
  position: relative;
  left: 0;
  white-space: nowrap;
}

.c-entries--text .c-entries__item .c-entry-summary__meta {
  margin-right: 10rem;
  /* カテゴリー名の長さにあわせて調整 */
}

.c-entries--text .c-entries__item:hover .c-entry-summary__title {
  color: #cd162c;
}

/* 任意のタクソノミーの投稿（リッチメディア）のスタイル */
.c-entries--rich-media .c-entries__item:nth-of-type(-n + 3) {
  /* メディアの下に余白を増やす */
  margin-bottom: 80px;
}

.c-entries--rich-media .c-entries__item .c-entry-summary {
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure {
  /* border-leftを適応するためmarginを消す */
  margin-bottom: 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure img {
  /* 変化の時間 標準の装飾を除去 */
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-filter: none !important;
          filter: none !important;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-6 {
  background-color: rgba(205, 22, 44, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-5 {
  background-color: rgba(16, 79, 150, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-7 {
  background-color: rgba(233, 117, 1, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__body {
  /* 見栄えを良くするため左側に余白をつける テキスト左側の縦線 */
  padding-left: 30px;
  border-left: 5px solid #cd162c;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__header {
  /* c-entry-summary__figureでmarginを除去したので余白を埋め合わせ */
  padding: 20px 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__content {
  /* テキスト部分の装飾 */
  color: #333;
  font-size: 14px;
  line-height: 2.25em;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__meta {
  /* 投稿者・日時の除去 */
  display: none;
}

.c-entries--rich-media .c-entries__item a:hover .c-entry-summary__figure img {
  /* ホバー時の画像拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* フッターの上 */
.info {
  /* フッター上部にボーダー */
  border-top: 1px solid #ccc;
}

.info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1180px;
  height: 140px;
}

.info__logo {
  margin-right: 30px;
}

.info__logo img {
  width: 150px;
}

.info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
}

.info .social-nav {
  margin-left: 0;
}

.info .social-nav__icon {
  display: inline;
  margin: 0 10px;
  list-style: none;
}

.info .social-nav__icon a {
  color: #212121;
}

/* フッターウィジェットエリア */
.l-footer-widget-area {
  /* ウィジェットエリアの上部にボーダーを入れるため、paddingを除去 */
  border-top: 1px solid #ccc;
  padding: 0;
}

.l-footer-widget-area .c-row {
  /* 左右にボーダー */
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item {
  /* paddingを除去し、詰まったのでこちらで追加 */
  padding: 40px;
}

.l-footer-widget-area__item:nth-of-type(n + 2) {
  /* 最初の一つ目を除くブロックにボーダー */
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item .c-widget__title {
  /* タイトルを左寄せ */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #26BDC2;
}

.l-footer-widget-area__item .c-widget__title::before, .l-footer-widget-area__item .c-widget__title::after {
  /* 左右のボーダーの除去 */
  display: none;
}





/* セクションの中央寄せを解除 */
.smb-section__header,
.smb-section__subtitle,
.smb-section__title {
  text-align: unset !important;
}


/**/

/* =========================
カード全体レイアウト
========================= */
.deen-box-shad .c-row__col {
  display: flex;
}

/* =========================
カード本体
========================= */
.deen-box-shad .smb-items__item {
  width: 100%;
  aspect-ratio: 1 / 1;
   background: #ffffff !important;
  border-radius: 20px;
  border: 1px solid #e5ddd3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* =========================
ホバー（少し浮く）
========================= */
.deen-box-shad .smb-items__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
中身
========================= */
.deen-box-shad .smb-items__item__body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
テキストボックス
========================= */
.deen-box-shad .wp-block-group {
  max-width: 160px;
  text-align: center;
  margin: 0 auto;
}

/* =========================
アイコン（丸）
========================= */
.deen-catag-sub-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e6efe9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #5f8f77;
}

/* =========================
タイトル
========================= */
.deen-catag-titl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

/* =========================
説明文
========================= */
.deen-catag-tex {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  word-break: break-word;
}

/* =========================
余白リセット
========================= */
.deen-box-shad p {
  margin: 0 0 6px;
}


/* =========================
ボタン共通
========================= */
.deen-btn-01 .smb-btn,
.deen-btn-02 .smb-btn {
  border-radius: 50px; /* しっかり丸 */
  padding: 14px 32px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08); /* 薄い影 */
  transition: all 0.25s ease;
}

/* =========================
メインボタン（オレンジ）
========================= */
.deen-btn-01 .smb-btn {
  background: #C97B63;
  color: #fff;
}

/* =========================
サブボタン（白）
========================= */
.deen-btn-02 .smb-btn {
  background: #fff;
  border: 1px solid #e5ddd3;
  color: #333;
}

/* =========================
ホバー（少し浮く）
========================= */
.deen-btn-01 .smb-btn:hover,
.deen-btn-02 .smb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}





.deen-box-shad .smb-items__item {
  padding: 10px; /* 外側余白で空気感出す */
	width:10rem;
}



/**/


/* =========================
右カラム全体
========================= */
.deen-box {
  position: relative;
}

/* =========================
画像
========================= */
.deen-box figure {
  margin: 0;
}

.deen-box img {
  border-radius: 20px;
  width: 100%;
  display: block;
}

/* =========================
テキストボックス（重ねる）
========================= */
.deen-box .smb-section__header,
.deen-box p {
  background: #fff;
}

/* まとめてボックス化 */
.deen-box > .smb-section__header,
.deen-box > p {
  padding: 20px;
}

/* 本体ボックス */
.deen-box .smb-section__header {
  position: absolute;
  bottom: -40px;
  left: 30px;
  width: 60%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* 下のテキスト */
.deen-box > p {
  position: absolute;
  bottom: -120px;
  left: 30px;
  width: 80%;
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 0 20px 20px;
  margin: 0;
}
/* =========================
ボックス全体を小さく＆位置調整
========================= */
.deen-box .smb-section__header {
  position: absolute;
  bottom: -77px;   /* 少し下に */
  left: -49px;      /* 左に寄せる */
  width: 60% !important;      /* 小さく */
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
下のテキスト
========================= */
.deen-box > p {
  position: absolute;
  bottom: -95px;
  left: 40px;
  width: 65%;
  background: #fff;
  padding: 0 18px 18px;
  margin: 0;
  border-radius: 0 0 16px 16px;
}

/* =========================
タイトル小さく
========================= */
.deen-box .smb-section__title {
  font-size: 22px;     /* ←ここ重要 */
  line-height: 1.4;
  margin-bottom: 8px;
}

/* =========================
サブタイトル
========================= */
.deen-box .smb-section__subtitle {
  font-size: 13px;
  margin-bottom: 6px;
}

/* =========================
説明文
========================= */
.deen-box p {
  font-size: 13px;
  line-height: 1.6;
}



/**/

/* =========================
全体パネル
========================= */
.deen-panle-lay02 .smb-panels__item {
  background: #f7f5f1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e5ddd3;
}

/* =========================
横並び
========================= */
.deen-panle-lay02 .wp-block-columns {
  align-items: stretch;
  gap: 0;
}

/* =========================
画像側
========================= */
.deen-panle-lay02 figure {
  margin: 0;
  height: 100%;
}

.deen-panle-lay02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 左だけ丸める */
  border-radius: 30px 0 0 30px;
}

/* =========================
テキスト側
========================= */
.deen-panle-lay02 .wp-block-group {
  padding: 60px 50px;
}

/* =========================
サブタイトル
========================= */
.deen-panle-lay02 .smb-section__subtitle {
  color: #5f8f77;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* =========================
タイトル
========================= */
.deen-panle-lay02 .smb-section__title {
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* =========================
本文
========================= */
.deen-panle-lay02 p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

/* =========================
レスポンシブ
========================= */
@media (max-width: 768px) {

  .deen-panle-lay02 .wp-block-columns {
    flex-direction: column;
  }

  .deen-panle-lay02 img {
    border-radius: 30px 30px 0 0;
  }

  .deen-panle-lay02 .wp-block-group {
    padding: 30px 20px;
  }
}


/**/

/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&family=Noto+Sans+JP:wght@400;500&display=swap');

/* =========================
見出し（明朝）
========================= */
.smb-section__title,
.deen-ttl {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333;
}

.deen-font-28 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #333;
}
/* =========================
本文（ゴシック）
========================= */
.smb-section__body p,
.deen-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #555;
}

@media (max-width: 768px) {
  .smb-section__title,
  .deen-ttl {
    font-size: 28px !important;
  }

  .smb-section__body p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/**/

.c-prev-next-nav {
    display: none;
}

/**/
.deen-font-28 {
  position: relative;
  padding-left: 20px;
}

.deen-font-28::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  background: #7FBFA4; /* やさしいグリーン */
  border-radius: 10px;
}

/**/


/* =========================
横ラインを完全に消す
========================= */
.p-related-posts__title::before,
.p-related-posts__title::after {
  content: none !important;
  display: none !important;
}

/* =========================
縦バー用（上書き）
========================= */
.p-related-posts__title {
  display: block !important;
  position: relative;
  padding-left: 18px;
  text-align: left;
}

/* =========================
縦バー表示
========================= */
.p-related-posts__title span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 26px;
  background: #7FBFA4;
  border-radius: 10px;
}




/**/

/* ステップ全体 */
.recipe-steps {
  counter-reset: step;
}

/* 各パネル（強制上書き） */
.recipe-steps .wp-block-group {
  position: relative !important;
  padding-left: 110px !important; /* ←ここを強めに */
}

/* 数字 */
.recipe-steps .wp-block-group::before {
  counter-increment: step;
  content: counter(step);

  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #7FBFA4;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 600;

  z-index: 2; /* ←これも重要 */
}
/* 中のテキストを中央寄せ気味に */
.recipe-steps .wp-block-group {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .recipe-steps .wp-block-group {
    padding-left: 80px !important;
  }

  .recipe-steps .wp-block-group::before {
    width: 42px;
    height: 42px;
    font-size: 16px;
    left: 20px;
  }
}

/* ボックスにほんのり影 */
.recipe-steps .wp-block-group {
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ホバーでちょい浮く */
.recipe-steps .wp-block-group:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}

/**/

.deen-label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px; /* 完全な丸み */
  background-color: #E8F3EE; /* 薄い緑 */
  color: #5FAE8A; /* 文字色（お好みで） */
}


.c-site-branding {
  display: flex;
  flex-direction: column;
}

/* 順番入れ替え */
.c-site-branding__description {
  order: -1;
}

/**/


/* =========================
材料一覧 全体
========================= */

.deen-recipe-material-item-g {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}


/* =========================
各材料BOX
========================= */

.deen-recipe-material-name {
    margin: 0 !important;
    padding: 20px 25px !important;

    border-radius: 20px;
    border: 1px solid #f0e1ad;

    background: #fffdf8;
}


/* =========================
BOX内 横並び
========================= */

.deen-recipe-material-name .is-content-justification-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
    flex-wrap: nowrap;
}


/* =========================
左側（材料名）
========================= */

.deen-recipe-material-name p:first-child {
    margin: 0;
    flex: 1;

    font-size: 20px;
    line-height: 1.5;
}


/* =========================
右側（分量）
========================= */

.deen-recipe-material-name p:last-child {
    margin: 0;

    font-size: 22px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================
SP
========================= */

@media (max-width: 768px) {

    .deen-recipe-material-item-g {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .deen-recipe-material-name {
        padding: 18px 20px !important;
    }

    .deen-recipe-material-name p:first-child {
        font-size: 18px;
    }

    .deen-recipe-material-name p:last-child {
        font-size: 20px;
    }

}


/**/

.recipe-steps .wp-block-group{
	align-items:flex-start !important;
}

.recipe-steps p{
	text-align:left !important;
	width:100%;
}



/**/

@media (min-width: 769px){

.wp-block-snow-monkey-blocks-box.smb-box {
    width: 900px;
}


}

.tex-white p{
	color:#fff !important;
}


	

/* 投稿アイキャッチを4:3に固定 */

.c-eyecatch {
	max-width: 900px;
	margin: 0 auto;

	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 20px;
}

.c-eyecatch img {
	width: 100% !important;
	height: 100% !important;

	object-fit: cover;
	object-position: center center;

	display: block;
}


.c-eyecatch {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;

	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 20px;
}

.c-eyecatch img {
	width: 100% !important;
	height: 100% !important;

	object-fit: cover;
	object-position: center center;
}

@media (max-width:768px){

	.c-eyecatch{
		max-width:100%;
		border-radius:0;
	}

}


/* レシピ詳細（調理時間・分量・カテゴリ） */


@media (max-width: 767px){

  /* ボックス全体 */
  .wp-block-cover + .wp-block-group .c-row{
    display:flex;
    flex-wrap:nowrap;
    gap:6px !important;
    margin:0 !important;
  }

  /* 3分割 */
  .wp-block-cover + .wp-block-group .c-row__col{
    flex:1 1 0;
    min-width:0;
    padding:0 !important;
  }

  /* ボックス内余白 */
  .wp-block-cover + .wp-block-group .smb-items__item__body{
    padding:15px 8px !important;
  }

  /* タイトル */
  .wp-block-cover + .wp-block-group .sing{
    font-size:12px;
    margin-bottom:5px;
  }

  /* 数値 */
  .wp-block-cover + .wp-block-group .sme-font-size{
    font-size:16px !important;
    white-space:nowrap;
  }

  /* 発酵おかず */
  .wp-block-cover + .wp-block-group strong{
    white-space:nowrap;
    font-size:0.9em;
  }

}

/*スマホ全体的に小さき*/

@media (max-width: 767px){

  /* 全体 */
  body{
    font-size:14px;
  }

  /* セクション間隔 */
  .smb-box{
    margin-bottom:15px !important;
  }

  /* 見出し */
  .deen-font-28{
    font-size:24px !important;
    margin-bottom:15px !important;
  }

  /* ボックス内余白 */
  .smb-box__body{
    padding:10px !important;
  }

  /* 材料・作り方 */
  .deen-recipe-material-name{
    padding:12px 15px !important;
  }

  .deen-recipe-material-name .sme-font-size{
    font-size:16px !important;
  }

  /* 作り方 */
  .recipe-steps .wp-block-group{
    padding:15px !important;
  }

  .recipe-steps p{
    font-size:14px;
    line-height:1.7;
  }

  /* 期待できること・おすすめ */
  .smb-flex .wp-block-group{
    padding:8px 14px !important;
  }

  .smb-flex p{
    font-size:14px !important;
  }
	
	.deen-recipe-material-name{
    padding:10px 15px !important;
}

	
	
	
	
	/*レシピで期待できること*/
	
.recipe-steps .wp-block-group{
    position: relative;
    margin-top: 35px;
    overflow: visible;
}

.recipe-steps .wp-block-group::before{
    left: -35px !important;
    top: -25px !important;

    width: 30px;
    height: 30px;

    transform: none;

    display:flex;
    align-items:center;
    justify-content:center;
}	
	
	
	
	.smb-flex .wp-block-paragraph,
.smb-flex .wp-block-paragraph span{
    font-size:14px !important;
    line-height:1.4;
}
	



  /* タグ全体 */
  .smb-flex{
    gap:8px !important;
    justify-content:flex-start;
  }

  /* タグ */
  .smb-flex > .wp-block-group{
    padding:6px 12px !important;
    border-radius:8px !important;
    min-height:auto !important;
  }

  /* 文字 */
  .smb-flex p,
  .smb-flex .sme-font-size{
    font-size:14px !important;
    line-height:1.2 !important;
    margin:0 !important;
    white-space:nowrap;
  }




  .smb-box__body{
    padding:0px !important;
  }

.wp-block-spacer {
    display: none;
}

	
	
}


	@media (max-width:767px){

  .deen-font-28{
      font-size:20px !important;
  }

}








/*トップページ*/


@media (max-width:767px){

  .deen-box .smb-section__header{
      position:relative !important;
      left:auto !important;
      bottom:auto !important;
      width:100% !important;
      margin-top:15px !important;
      padding:20px !important;
  }

}




@media (max-width:767px){

  /* カテゴリー一覧 */
  .top-category .c-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .top-category .c-row__col{
    width:calc(50% - 5px) !important;
    flex:none !important;
    padding:0 !important;
  }

  /* ボックス */
  .top-category .smb-items__item__body{
    padding:0px !important;
  }

  /* 丸アイコン */
  .top-category .deen-catag-sub-icon{
    width:50px;
    height:50px;
    line-height:50px;
    font-size:20px;
    margin:0 auto 10px;
  }

  /* タイトル */
  .top-category .deen-catag-titl{
    font-size:18px !important;
    margin-bottom:5px;
  }

  /* 説明文 */
  .top-category .deen-catag-tex{
    font-size:13px !important;
    line-height:1.4;
  }
	
	h3.c-entry-summary__title {
    font-size: 12px;
}
	
	.c-entry-summary__body {
    padding: 10px !important;
}

}






/*キャッチアイ画像の高さを短く*/

.c-eyecatch{
	max-width:900px;
	margin:0 auto;

	aspect-ratio:16 / 9;

	overflow:hidden;
	border-radius:20px;
}

.c-eyecatch img{
	width:100%;
	height:100%;
	object-fit:cover;
}



@media (max-width: 767px) {
    .recipe-steps .wp-block-group::before {
        left: -27px !important;
	}
}

/*# sourceMappingURL=style.css.map */