@charset "UTF-8";
/*
Theme Name: W08.2
Theme URI: http://euthymia.net/
Description: EUTHYMIA - WooCommerce
Author: EUTHYMIA
Author URI: http://euthymia.net/
Version: 20251228
*/
/* ====================================
   Import Partials
   ==================================== */
/* ====================================
   Variables (変数設定)
   ==================================== */
/* --- Colors (色) --- */
/* メインカラー */
/* アクセントカラー */
/* 通常の文字色（黒） */
/* 淡い文字色 */
/* 白文字 */
/* 背景色（全体） */
/* 背景色（記事エリア・ヘッダー・フッター・メニュー） */
/* ラインの色 */
/* --- Typography (フォント設定) --- */
/* ▼▼▼ 以前の設定（元に戻す場合はこちらを有効化し、下をコメントアウト） ▼▼▼ */
/* $font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
/* ▼▼▼ 新しい設定（Josefin Sans追加版） ▼▼▼ */
/* セリフ体 */
/* 基本フォントの適用 */
/* --- Layout (レイアウト) --- */
/* PC時の最大幅 */
/* カラム間の隙間 */
/* --- Breakpoints (モバイルファースト用) --- */
/* 769px以上をPC/タブレットとして扱う */
/* --- Functions (便利機能) --- */
/* ====================================
   Reset
   ==================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

/* ====================================
   Layout & Structure (Mobile First)
   ==================================== */
body {
  background-color: #f0f0f0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* メインコンテナ */
.container {
  display: flex;
  flex-direction: column; /* 【Mobile】縦並び */
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  /* 【PC】横並び・幅制限 */
}
@media screen and (min-width: 769px) {
  .container {
    flex-direction: row;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    gap: 30px;
  }
}

/* カラム比率 */
.main-content {
  width: 100%;
  flex: auto;
  /* 【PC】 */
}
@media screen and (min-width: 769px) {
  .main-content {
    flex: 3;
  }
}

.sidebar {
  width: 100%;
  flex: auto;
  margin-top: 40px;
  /* 【PC】 */
}
@media screen and (min-width: 769px) {
  .sidebar {
    flex: 1;
    margin-top: 0;
  }
}

/* 記事カード */
.post {
  background-color: #fff;
  padding: 20px; /* 【Mobile】狭め */
  margin-bottom: 30px;
  /* 【PC】 */
}
@media screen and (min-width: 769px) {
  .post {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
}

/* アイキャッチ画像 */
.post-thumbnail {
  margin-bottom: 20px;
}
.post-thumbnail img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) {
  .post-thumbnail img {
    border-radius: 5px;
  }
}

/* ウィジェット */
.widget {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .widget {
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
}

/* ====================================
   Typography (Mobile First)
   ==================================== */
body {
  font-size: 0.875rem; /* 【Mobile】14px */
  font-family: "Josefin Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 2; /* 行間広め */
  color: #333;
  letter-spacing: 0.05em;
  /* 【PC】15px */
}
@media screen and (min-width: 769px) {
  body {
    font-size: 0.9375rem;
  }
}

/* 記事タイトル */
.post-title {
  font-size: 1.25rem; /* 【Mobile】20px */
  line-height: 1.4;
  margin-bottom: 15px;
  border-bottom: 1px solid #bbb;
  padding-bottom: 15px;
  /* 【PC】24px */
}
@media screen and (min-width: 769px) {
  .post-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* 記事メタ情報 */
.post-meta {
  font-size: 0.6875rem; /* 【Mobile】11px */
  color: #888;
  margin-bottom: 20px;
  /* 【PC】12px */
}
@media screen and (min-width: 769px) {
  .post-meta {
    font-size: 0.75rem;
  }
}

/* 記事本文 */
.post-content p {
  margin-bottom: 2em;
  line-height: 1.8; /* 【Mobile】少し詰める */
  /* 【PC】 */
}
@media screen and (min-width: 769px) {
  .post-content p {
    line-height: 2;
  }
}

/* 見出し類 */
.entry-content h2 {
  font-size: 1.125rem;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .entry-content h2 {
    font-size: 1.25rem;
  }
}

.entry-content h3 {
  font-size: 1rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .entry-content h3 {
    font-size: 1.125rem;
  }
}

/* サイドバー */
.widget-title {
  font-size: 1rem;
  margin-bottom: 15px;
  border-left: 3px solid #333;
  padding-left: 10px;
  letter-spacing: 0.1em;
}

.widget ul li {
  font-size: 0.8125rem;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* ====================================
   Header (Mobile First)
   ==================================== */
.site-header {
  background-color: #fff;
  color: #333;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  border-bottom: 1px solid #bbb;
  /* 【PC】横並び */
}
@media screen and (min-width: 769px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 20px 30px;
  }
}
.site-header .site-branding h1 {
  margin: 0;
  line-height: 1;
}
.site-header .site-branding h1 a {
  display: block;
  background-color: transparent !important;
  border: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.site-header .site-branding h1 img {
  display: block;
  width: auto;
  /* ▼▼▼ 変更: スマホでの高さ 26px ▼▼▼ */
  height: 26px;
  max-width: 100%;
  background: none !important;
  border: none;
  box-shadow: none;
  vertical-align: bottom;
  /* ▼▼▼ 変更: PCでの高さ 32px（少し大きく） ▼▼▼ */
}
@media screen and (min-width: 769px) {
  .site-header .site-branding h1 img {
    height: 32px;
  }
}
.site-header .site-branding p {
  font-size: 0.625rem;
  opacity: 0.7;
  margin-top: 5px;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .site-header .site-branding p {
    font-size: 0.6875rem;
  }
}

/* ====================================
   Footer (Mobile First)
   ==================================== */
.site-footer {
  background-color: #fff; /* 白 */
  color: #333; /* 黒 */
  border-top: 1px solid #bbb;
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  /* 【PC】 */
}
@media screen and (min-width: 769px) {
  .site-footer {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
.site-footer p {
  margin: 0;
  opacity: 0.8;
}

/* ====================================
   Navigation (Mobile First)
   ==================================== */
/* ------------------------------------
   1. ハンバーガーボタン
   基本(Mobile): 表示 / PC: 非表示
   ------------------------------------ */
.menu-toggle {
  display: block; /* 【Mobile】表示 */
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  z-index: 1000;
  /* 常にヘッダーの縦軸中心に配置 */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  /* 【PC】非表示 */
  /* メニューオープン時（×印） */
}
@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333; /* 黒 */
  position: absolute;
  transition: all 0.3s;
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
}
.menu-toggle.active span {
  background-color: #333;
}
.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ------------------------------------
   2. グローバルナビゲーション
   基本(Mobile): 固定・隠す / PC: 静的・表示
   ------------------------------------ */
.global-nav {
  /* 【Mobile Defaults】 */
  position: fixed;
  top: 0;
  right: -100%; /* 画面外へ */
  width: 80%;
  height: 100vh;
  background-color: #fff; /* 白 */
  padding: 80px 20px 20px;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  /* メニューオープン時 */
  /* ------------------------------------
     【PC Override】 769px以上で上書き
     ------------------------------------ */
}
.global-nav.active {
  right: 0;
}
.global-nav ul {
  display: flex;
  flex-direction: column; /* 【Mobile】縦並び */
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.global-nav li {
  margin: 0;
}
.global-nav a {
  /* 【Mobile】リンク設定 */
  display: flex;
  flex-direction: column; /* spanを縦積み */
  align-items: flex-start; /* 左寄せ */
  color: #333; /* 黒 */
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 15px 0;
  border-bottom: 1px solid #bbb;
  transition: opacity 0.3s;
  /* 2段目の文字(英語/日本語) */
}
.global-nav a span:nth-child(2) {
  font-size: 0.85em;
  margin-top: 2px;
  font-weight: normal;
}
.global-nav a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .global-nav {
    /* Mobile用の固定配置をリセット */
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    right: auto;
    transition: none;
  }
  .global-nav ul {
    flex-direction: row; /* 横並び */
    gap: 30px;
    text-align: center;
  }
  .global-nav a {
    align-items: center; /* 中央寄せ */
    text-align: center;
    font-size: 0.875rem; /* サイズ調整 */
    padding: 0;
    border-bottom: none;
    line-height: 1.25;
  }
}

/* ------------------------------------
   3. ボディ固定 (Mobileのみ)
   ------------------------------------ */
body.menu-open {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  body.menu-open {
    overflow: auto; /* PCではスクロールロックしない */
  }
}

/* メディアクエリは各ファイル内に記述する設計（モバイルファースト）に変更 *//*# sourceMappingURL=style.css.map */