:root {
  --text-color: #2c2c2c;
  --category-spiritual: #f6b9eb;
  --category-positive: #90f4e8;
  --category-health: #ebef76;
  --border-color: #dbd8d8;
  --btn-color: #FFCC99;
}

/* フォントを登録 */
/* @font-face {
  font-family: "CustomFont";
  src:
    url("assets/fonts/Bebas_Neue/BebasNeue-Regular.woff2") format("woff2"),
    url("assets/fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E;
} */

@font-face {
  font-family: "CustomFont";
  src:
    url("assets/fonts/Zen_Kurenaido/ZenKurenaido-Regular.woff2") format("woff2"),
    url("assets/fonts/Zen_Kurenaido/ZenKurenaido-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap; /* 読み込み中は代替表示→遅延でも見える */
  font-weight: 400px;

  /* 日本語設定 */
  unicode-range: 
    U+3000-303F, /* 記号（句読点など） */
    U+3040-309F, /* ひらがな */
    U+30A0-30FF, /* カタカナ */
    U+4E00-9FFF; /* 漢字 */
}


/*
Theme Name: ystandard-child
Template: ystandard
*/

body {
  font-family: "CustomFont", "Zen Maru Gothic", "Klee One", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  color: var(--text-color);
  font-weight: bold;
  /* font-family: "Zen Maru Gothic", "Klee One", "Zen Kurenaido", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif; 柔らかい感じ*/
}

#content {
  margin: 0;
}

/* header */
header .container {
  padding: 0;
}

.central-container {
  margin: 24px auto;
  padding: 0 12%;
  gap: 24px;
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.central-container .side{
  width: 100%;
}

/* タブレット */
@media (max-width: 1023px) {
  .central-container {
    padding: 0 10%;
    grid-template-columns: 1fr;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .central-container {
    padding: 0 12px;
    grid-template-columns: 1fr;
  }
}

div.footer-main {
  padding-top: 32px !important;
}

div.footer-main div.site-info {
  margin-top:  32px !important;
  padding-top: 0 !important;
}

/* 基本的な横並び設定（中央寄せ） */
.footer-widget__container .wp-block-list {
  display: flex;
  justify-content: center; /* 中央寄せ */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px; /* アイテム間の間隔 */
}

.footer-widget__container .wp-block-list li {
  margin: 0;
  color: #7a7a7a;
}

/* リンクのスタイル（オプション） */
.footer-widget__container .wp-block-list a {
  text-decoration: none;
  color: inherit;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.footer-widget__container .wp-block-list a:hover {
  color: #007cba; /* ホバー時の色 */
  text-decoration: underline;
}

/* レスポンシブ対応（オプション） */
@media (max-width: 768px) {
  .footer-widget__container .wp-block-list {
    flex-direction: column;
    gap: 10px;
  }
}


/* reCAPTCHA非表示 */
.grecaptcha-badge { visibility: hidden; }