

body {
  margin:0;
  font-family:
  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Hiragino Sans", "Yu Gothic UI", "Noto Sans JP",
  "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
  line-height:1.7;
  background:#ffffff;
  color:#222;
}

.container{
  width:90%;
  max-width:900px;
  margin:0 auto;
}

.topbar{
  text-align:right;
  padding:10px 0;
  font-size:14px;
}

.home-link{
  color:#2f6f4f;
  text-decoration:none;
}

.hero{
  padding:60px 0;
  text-align:center;
}

.hero-title{
  border:3px solid #2f6f4f;
  padding:30px;
  font-size:32px;
  line-height:1.4;
}

.cta{
  display:inline-block;
  margin-top:30px;
  padding:14px 26px;
  background:#2f6f4f;
  color:white;
  text-decoration:none;
  font-weight:bold;
  border-radius:6px;
}

.section{
  padding:50px 0;
}

.section h2{
  margin-bottom:20px;
  border-left:6px solid #2f6f4f;
  padding-left:10px;
}

.toc ul{
  list-style:none;
  padding:0;
}

.toc li{
  margin:8px 0;
}

.price-box{
  border:2px solid #2f6f4f;
  padding:30px;
  text-align:center;
}

.price-amount{
  font-size:40px;
  font-weight:bold;
  margin-bottom:10px;
}

.flow{
  padding-left:20px;
}

.faq h3{
  margin-top:20px;
}

.column-list{
  list-style:none;
  padding:0;
}

.column-list li{
  margin:10px 0;
}

.more{
  margin-top:20px;
}

footer{
  text-align:center;
  padding:40px 0;
  font-size:14px;
  color:#666;
}

.toc-box {
  border: 1px solid #cfd9d3;
  border-radius: 10px;
  padding: 20px 24px;
  background: #fff;
}

.toc-box h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  border-left: none;
  padding-left: 0;
}

.toc-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-box li + li {
  margin-top: 8px;
}

.toc-box a {
  color: #2f6f4f;
  text-decoration: none;
}

.toc-box a:hover {
  text-decoration: underline;
}


/* =========================================================
   recovery/column.html 用 追記CSS
   ========================================================= */

/* 見出し下の細いバー */
.acacia-header-bar{
  width: 100%;
  max-width: 420px;
  height: 4px;
  margin: 18px auto 0;
  background: #2f6f4f;
  border-radius: 999px;
}

/* コラム目次ページ全体 */
.column-index{
  padding: 30px 0 60px;
}

/* カード一覧 */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

/* カード本体 */
.card{
  background: #fff;
  border: 1px solid #d7e1db;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* カードリンク全体 */
.card a{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
}

/* サムネ */
.card .card-thumb{
  flex: 0 0 auto;
  width: 100px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #d7e1db;
  background: #fff;
}

/* 文字部分 */
.card-body{
  flex: 1 1 auto;
  min-width: 0;
}

.card-body h2{
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #1f2d25;
  border-left: none;
  padding-left: 0;
}

.card .meta{
  margin: 0 0 8px;
  font-size: 0.86rem;
  color: #557260;
}

.card .excerpt{
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #444;
}

/* ヘッダー文 */
header > p{
  width: 90%;
  max-width: 760px;
  margin: 10px auto 0;
  color: #4c5f53;
}

/* スマホ調整 */
@media (max-width: 640px){
  .card-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card a{
    gap: 14px;
    padding: 14px;
  }

  .card .card-thumb{
    max-width: 84px;
    max-height: 105px;
  }

  .card-body h2{
    font-size: 1rem;
  }

  .card .meta{
    font-size: 0.8rem;
  }

  .card .excerpt{
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* =========================================================
   recovery/column/ 個別記事ページ用 追記CSS
   ========================================================= */

body.reading-page.column {
  background: #fff;
  color: #222;
}

/* 記事ヘッダー */
.article-head {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 0 10px;
}

.article-head h1 {
  font-size: 1.7rem;
  line-height: 1.45;
  margin: 0.2rem 0 0.6rem;
  text-align: center;
  color: #1f2d25;
}

.acacia-header-bar {
  background: #2f6f4f;
}

.updated {
  font-size: 0.92rem;
  color: #5b6e62;
}

/* 上部・下部リンク */
.link-back,
.link-top,
.link-home {
  color: #2f6f4f;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-back:hover,
.link-top:hover,
.link-home:hover {
  text-decoration: underline;
}

.sym {
  font-size: 0.9em;
}

/* ヒーロー */
.hero {
  width: 90%;
  max-width: 900px;
  margin: 14px auto 10px;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #d7e1db;
}

/* 記事本文 */
.reading-page.column main.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.reading-page.column section {
  padding: 26px 0;
}

.reading-page.column section h2 {
  margin: 0 0 16px;
  border-left: 6px solid #2f6f4f;
  padding-left: 10px;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #1f2d25;
}

.reading-page.column section h3 {
  margin: 20px 0 10px;
  font-size: 1.05rem;
  color: #2f6f4f;
}

.reading-page.column p,
.reading-page.column li {
  font-size: 1rem;
  line-height: 1.9;
}

.reading-page.column ul {
  padding-left: 1.3rem;
}

.reading-page.column strong {
  color: #1d2a23;
}

.muted {
  color: #66786d;
  font-size: 0.94rem;
}

.hint {
  color: #2f6f4f;
  font-weight: 700;
}

/* 目次 */
.toc {
  background: #fff;
  border: 1px solid #cfd9d3;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0 26px;
}

.toc h3 {
  margin: 0 0 10px;
  color: #2f6f4f;
  font-size: 1.05rem;
}

.toc ul {
  margin: 0;
  padding-left: 1.2rem;
}

.toc a {
  color: #2f6f4f;
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/* フロー矢印 */
.flow-arrows {
  background: #f6faf7;
  border: 1px solid #d7e1db;
  border-radius: 12px;
  padding: 18px 20px;
  line-height: 2;
  color: #24352b;
}

/* 料金表 */
.table-wrap {
  overflow-x: auto;
  margin-top: 14px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #d7e1db;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid #e5ece7;
  padding: 14px 12px;
  vertical-align: top;
}

.price-table th {
  background: #edf5ef;
  color: #1f2d25;
  font-weight: 700;
  text-align: left;
}

.price-table td {
  background: #fff;
}

.pt-row + .pt-row {
  margin-top: 12px;
}

.tag {
  display: inline-block;
  min-width: 5.8em;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eaf3ed;
  color: #2f6f4f;
  font-size: 0.84rem;
  font-weight: 700;
}

/* FAQ */
details {
  border: 1px solid #cfd9d3;
  border-radius: 10px;
  background: #fff;
  margin: 12px 0;
  overflow: hidden;
}

details summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 15px 18px 15px 44px;
  font-weight: 700;
  line-height: 1.6;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #2f6f4f;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
}

details p {
  margin: 0;
  padding: 0 18px 18px 18px;
  border-top: 1px solid #e3ebe6;
}

/* CTA */
.cta-buttons,
.cta-wrap {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 18px 0 8px;
}

.cta,
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  background: #2f6f4f !important;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cta:hover,
.btn:hover {
  opacity: 0.92;
}

/* 下部リンク群 */
.reading-page.column main.container > p[style*="text-align:right"] {
  margin-top: 30px !important;
  line-height: 2;
}

/* スマホ */
@media (max-width: 640px) {
  .article-head h1 {
    font-size: 1.35rem;
  }

  .reading-page.column section h2 {
    font-size: 1.15rem;
  }

  .price-table {
    font-size: 0.88rem;
  }

  .price-table th,
  .price-table td {
    padding: 10px 9px;
  }

  .cta,
  .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

.review-stars{
  display:block;
  margin:18px auto 0;
  max-width:100%;
  height:auto;
  border:1px solid #ddd;
  border-radius:8px;
}

.hero-img{
  width:100%;
  max-width:600px;
  height:auto;
  display:block;
  margin:0 auto;
}

.review-stars{
  width:100%;
  max-width:600px;
  height:auto;
  display:block;
  margin:18px auto 0;
  border:1px solid #cfd9d3;
  border-radius:8px;
}

.profile-photo{
  width:100%;
  max-width:400px;
}