/* --- Variables & Base --- */
:root {
  --bg: #fcfaf8;
  --sub: #f5f2ed;
  --main: #8e7d71; /* Mocha */
  --accent: #b88a8a; /* Dusty Rose */
  --text: #4a4a4a;
  --text-sub: #8c8c8c;
  --white: #ffffff;
  --line: #06c755;
  --serif: "Shippori Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.bg-sub {
  background: var(--sub);
}

/* --- Typo & Headings --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.en-title {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}
.header-sub {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-top: 10px;
}

.blog-heading {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}
.blog-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.blog-heading span {
  display: block;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Components --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--main);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--main);
  color: var(--main);
}
.btn-line {
  background: var(--line);
  color: var(--white);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
}
.link-text {
  color: var(--main);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--main);
  padding-bottom: 2px;
}
.link-text-white {
  color: var(--white);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--white);
  margin-top: 10px;
  display: inline-block;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-6 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
}

/* --- Header --- */
.header {
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(252, 250, 248, 0.9);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--main);
  font-size: 1.3rem;
}
.nav-list {
  display: flex;
  gap: 20px;
}
.nav-list a {
  font-size: 0.8rem;
  color: var(--text-sub);
}

/* --- Hero --- */
.hero-blog {
  padding: 40px 0 60px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1.3;
}
.hero-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.highlight {
  color: var(--accent);
}
.hero-subtext {
  color: var(--text-sub);
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.hero-guide {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.hero-guide p {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 15px;
}
.hero-visual img {
  border-radius: 100px 10px 10px 10px;
  box-shadow: 15px 15px 0 var(--sub);
}

/* --- Goal Nav (目的別) --- */
.goal-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}
.goal-card .label {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.goal-card h3 {
  font-size: 1rem;
  font-family: var(--serif);
  margin-bottom: 8px;
}
.goal-card p {
  font-size: 0.75rem;
  color: var(--text-sub);
  line-height: 1.5;
}
.goal-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* --- Intro --- */
.lead-text {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}
.trouble-inline-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trouble-inline-list li {
  font-size: 0.75rem;
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--text-sub);
}
.featured-list {
  list-style: none;
  margin-top: 15px;
}
.featured-list li {
  background: var(--white);
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.featured-list li::before {
  content: "→";
  margin-right: 10px;
  color: var(--accent);
}

/* --- Post Cards --- */
.post-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.post-img {
  height: 160px;
  overflow: hidden;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-content {
  padding: 20px;
}
.cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
  display: block;
}
.post-title {
  font-size: 0.95rem;
  overflow: hidden;
  font-weight: 700;
}
.post-excerpt {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-top: 10px;
}

.post-card-mini {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ranking-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.5;
}
.mini-body h4 {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* --- Trouble Nav --- */
.trouble-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.4s;
}
.trouble-card span {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
}
.trouble-card h4 {
  font-size: 1rem;
  font-family: var(--serif);
  margin-bottom: 4px;
}
.trouble-card p {
  font-size: 0.8rem;
  color: var(--text-sub);
}
.trouble-card:hover {
  transform: translateX(5px);
  border-left: 4px solid var(--accent);
}

/* --- Roadmap --- */
.roadmap-timeline {
  max-width: 600px;
  margin: 0 auto;
}
.rm-step {
  display: flex;
  gap: 25px;
  padding: 20px;
  background: var(--white);
  border-radius: 50px;
  margin-bottom: 15px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.rm-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.rm-body h4 {
  font-size: 0.95rem;
  font-family: var(--serif);
}
.rm-body p {
  font-size: 0.8rem;
  color: var(--text-sub);
}

/* --- LINE CTA --- */
.cta-box {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  border: 2px dashed #eee;
}
.cta-text h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.cta-text p {
  color: var(--text-sub);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

/* --- Tool Cards --- */
.tool-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.tool-card span {
  font-size: 2.5rem;
  color: var(--main);
  opacity: 0.3;
  display: block;
  margin-bottom: 15px;
}
.tool-card h4 {
  font-size: 1rem;
  font-family: var(--serif);
  margin-bottom: 15px;
}
.tool-card p {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 25px;
}

/* --- Profile --- */
.profile-mid {
  padding: 60px 0;
}
.profile-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 800px;
  padding: 40px;
  border-radius: 10px;
}
.profile-img img {
  border-radius: 50%;
  width: 190px;
}
.profile-text h3 {
  font-family: var(--serif);
  margin-bottom: 10px;
}

/* --- Footer --- */
.footer-cta {
  background: var(--main);
  color: var(--white);
  text-align: center;
  padding: 50px 0;
}
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid #eee;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--main);
  font-size: 1.3rem;
}
.footer-nav {
  display: flex;
  gap: 60px;
}
.footer-col h4 {
  font-size: 0.8rem;
  color: var(--main);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
}

/* --- 新FV：背景画像の上にテキストを配置 --- */
.hero-blog-new {
  position: relative;
  width: 100%;
  /* FVの高さを抑え、背景画像を全幅で表示 */
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url("http://tsumazuki-chinese.com/wp-content/uploads/2026/04/fv_img.png"); /* ここにアップロードした画像のパスを指定 */
  background-size: cover;
  background-position: center right; /* 右側のキャラクターを優先的に表示 */
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 60px 0;
}

/* テキストエリアの配置調整 */
.hero-blog-new .hero-content {
  /* 画像の左側の白い円エリアに収まるように幅を制限 */
  max-width: 550px;
  position: relative;
  z-index: 2;
  padding: 20px;
  top: -4rem;
  left: -44%;
}

.hero-blog-new .hero-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--main);
  margin-bottom: 20px;
}

.hero-blog-new .highlight {
  color: var(--accent);
}

.hero-blog-new .hero-subtext {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.4); /* 背景が少し透けても読めるように */
  display: inline-block;
  padding: 5px 0;
}

.hero-blog-new .hero-guide {
  border-top: 1px solid rgba(142, 125, 113, 0.2);
  padding-top: 20px;
}

.hero-blog-new .hero-guide p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .hero-blog-new {
    background-image: url("http://tsumazuki-chinese.com/wp-content/uploads/2026/04/fv_img_sp.png"); /* ここにアップロードした画像のパスを指定 */
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 60px 0;
    min-height: 400px;
    padding: 70px 0;
  }

  .hero-blog-new .hero-content {
    max-width: 100%;
    text-align: center;
    left: 0;
  }

  .hero-blog-new .hero-title {
    font-size: 1.3rem;
  }
  .profile-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    padding: 40px;
    border-radius: 10px;
    flex-direction: column;
  }
}
/* --- Variables & Base --- */
:root {
  --bg: #fcfaf8;
  --sub: #f5f2ed;
  --main: #8e7d71; /* Mocha */
  --accent: #b88a8a; /* Dusty Rose */
  --text: #4a4a4a;
  --text-sub: #8c8c8c;
  --white: #ffffff;
  --line: #06c755;
  --serif: "Shippori Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
}

/* --- ホバーアクション（全体共通） --- */
a,
button {
  transition:
    opacity 0.3s,
    color 0.3s,
    background-color 0.3s,
    transform 0.3s;
}

/* ナビゲーションリンク */
.nav-list a:hover {
  color: var(--accent);
  opacity: 0.7;
}

/* ボタン */
.btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* 悩みカード、プロフィールリンク等 */
.trouble-card:hover,
.rm-step:hover,
.featured-list a:hover,
.link-text:hover {
  opacity: 0.7;
  color: var(--accent);
}

/* 目的から探すカード（既存維持：transform等） */
.goal-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* --- Header & Hamburger --- */
.header {
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(252, 250, 248, 0.9);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger-bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--main);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    padding: 100px 40px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 30px;
  }

  .nav-list a {
    font-size: 1.2rem;
    color: var(--main);
  }

  /* ハンバーガーアニメーション */
  .hamburger.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* --- Footer Base --- */
.footer {
  padding: 80px 0 40px;
  background-color: var(--white);
  border-top: 1px solid #f0f0f0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--main);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.85rem;
  color: var(--main);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* ホバーアクション */
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px; /* 少し右に動く遊び心 */
  opacity: 0.8;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  border-top: 1px solid #f9f9f9;
  padding-top: 30px;
}

/* --- Smartphone Optimization (max-width: 768px) --- */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center; /* 中央揃え */
    text-align: center;
    gap: 40px;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-around; /* 2列を均等に配置 */
    gap: 20px;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-col h4 {
    margin-bottom: 15px;
    font-size: 0.9rem;
  }

  .footer-links a {
    margin-bottom: 15px; /* タップ領域を確保 */
    padding: 5px 0;
  }

  .footer-links a:hover {
    padding-left: 0; /* スマホでは横移動は不要なのでリセット */
    transform: scale(1.05); /* 代わりに少し大きく */
  }
}

a:where(:not(.wp-element-button)) {
  text-decoration: unset !important;
}
.nav-list ul {
  list-style: none !important;
}
/* すべてのリストマーカーを強制的に非表示 */
.my-custom-lp ul,
.my-custom-lp ol {
  list-style: none !important;
}

.my-custom-lp ul li::before,
.my-custom-lp ul li::marker,
.my-custom-lp ol li::before,
.my-custom-lp ol li::marker {
  content: none !important;
  display: none !important;
  list-style-type: none !important;
}
