
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fff;
    letter-spacing: 0.03em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ヒーローセクション */
.hero {
    background: #1a1a1a;
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 0 0 8px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 30px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 18px 50px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    border: 1px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* セクション共通 */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 70px;
    font-weight: 300;
}

/* 課題セクション */
.problems {
    background: #fafafa;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 0;
    border-radius: 0;
    border: 1px solid #e8e8e8;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.problem-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover .problem-image {
    transform: scale(1.05);
}

.problem-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26,26,26,0.7) 100%);
}

.problem-content {
    padding: 40px;
}

.problem-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.5;
}

.problem-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* オファーセクション */
.offer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1554224311-beee7a5fc2b8?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.offer .container {
    position: relative;
    z-index: 1;
}

.offer .section-title {
    color: white;
}

.offer .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.price-box {
    background: transparent;
    padding: 60px 50px;
    border-radius: 0;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
}

.price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.5;
    margin-bottom: 30px;
    font-weight: 300;
}

.price-special {
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 300;
    line-height: 1.7;
}

/* サービス内容 */
.services {
    background: white;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    margin-top: 40px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
}

.service-item {
    text-align: left;
    padding: 0;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    background: #fafafa;
}

.service-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    /* filter: grayscale(100%); */
    transition: all 0.4s;
}

.service-item:hover .service-image {
    filter: grayscale(0%);
}

.service-content {
    padding: 40px;
}

.service-content::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    margin-bottom: 25px;
    background: #1a1a1a;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.5;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

/* 詳細内容セクション */
.details {
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1px;
    margin-top: 40px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
}

.detail-box {
    background: white;
    padding: 50px 40px;
}

.detail-box h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #1a1a1a;
}

.detail-box ul {
    list-style: none;
}

.detail-box li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
}

.detail-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 2px;
    background: #1a1a1a;
}

/* オプションセクション */
.options {
    background: #fafafa;
}

.options-table {
    max-width: 900px;
    margin: 40px auto 0;
    background: white;
    border: 1px solid #e8e8e8;
}

.option-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.option-row:last-child {
    border-bottom: none;
}

.option-row:hover {
    background: #f9f9f9;
}

.option-name {
    padding: 30px 40px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.option-price {
    padding: 30px 40px;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid #e8e8e8;
}

.option-note {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .option-row {
        grid-template-columns: 1fr;
    }

    .option-price {
        border-left: none;
        border-top: 1px solid #e8e8e8;
        justify-content: flex-start;
    }
}

/* プロセス */
.process {
    background: #fafafa;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    border: 1px solid #e8e8e8;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 50px 30px;
    background: white;
    position: relative;
    border-right: 1px solid #e8e8e8;
}

.process-step:last-child {
    border-right: none;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

/* モニター条件 */
.conditions {
    background: white;
}

.conditions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 60px auto 0;
}

.conditions-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.conditions-image:hover {
    filter: grayscale(0%);
}

.conditions-list {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
}

.conditions-list ul {
    list-style: none;
}

.conditions-list li {
    padding: 25px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.conditions-list li:last-child {
    border-bottom: none;
}

.conditions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
}

@media (max-width: 968px) {
    .conditions-wrapper {
        grid-template-columns: 1fr;
    }

    .conditions-image {
        height: 300px;
    }
}

/* 実績イメージ */
.examples {
    background: #fafafa;
    color: #1a1a1a;
}

.examples .section-title {
    color: #1a1a1a;
}

.examples .section-subtitle {
    color: #666;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.example-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-card:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.example-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    font-weight: 200;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.example-card:hover .example-image {
    transform: scale(1.05);
}

.example-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.3);
    transition: all 0.4s;
}

.example-card:hover .example-image::after {
    background: rgba(26,26,26,0.5);
}

.example-image span {
    position: relative;
    z-index: 1;
}

.example-content {
    padding: 40px;
    color: #333;
}

.example-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.example-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

/* フォームセクション */
.form-section {
    background: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

.form-section .container {
    position: relative;
    z-index: 1;
}

.form-section .section-title {
    color: white;
}

.form-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    color: white;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.05);
}

.form-group select {
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: white;
    color: #1a1a1a;
    border: 1px solid white;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.submit-button:hover {
    background: transparent;
    color: white;
}

/* フッター */
footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h3 {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s;
}

footer a:hover {
    border-color: white;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-special {
        font-size: 3rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .process-step {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .problem-grid,
    .service-list,
    .example-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .service-list {
        gap: 0;
    }

    .detail-box {
        padding: 40px 30px;
    }

    .option-name,
    .option-price {
        padding: 20px 25px;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* シンプルなハイライト */
.highlight {
    font-weight: 500;
}


.wpcf7-form{
  max-width: 700px;
margin-right: auto;
margin-left: auto;}





/* ブログ導線 */
.blog-links {
  background: #fafafa;
  padding: 80px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: white;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
}




/* ブログ一覧ページ */
.blog-index { background:#fff; padding:100px 20px; }
.blog-index .section-title { margin-bottom: 12px; }
.blog-index .section-subtitle { margin-bottom: 50px; }

.blog-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:34px;
}

.blog-card {
  border:1px solid #e8e8e8;
  background:#fff;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color:#1a1a1a;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.blog-card-link { text-decoration:none; color:inherit; display:block; }

.blog-image {
  overflow: hidden;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e8e8e8;

}
.blog-image img {
  width:100%; height:auto;
  /* filter: grayscale(100%); */
  object-fit: cover;
  object-position: center;
   transition: filter .3s ease, transform .3s ease;
}
.blog-card:hover .blog-image img { filter: grayscale(0%); transform: scale(1.02); }

.blog-content { padding:20px 22px 22px; }
.blog-meta {
  font-size:.85rem; color:#888; letter-spacing:.02em; margin-bottom:6px;
  display:flex; align-items:center; gap:6px; flex-wrap:wrap;
}
.blog-meta .dot { opacity:.6; }
.blog-title {
  font-size:1.05rem; font-weight:600; color:#1a1a1a; line-height:1.6; margin:6px 0 8px;
}
.blog-excerpt { color:#666; font-size:.93rem; line-height:1.8; }
.blog-readmore {
  display:inline-block; margin-top:10px; font-size:.9rem; color:#1a1a1a;
  border-bottom:1px solid rgba(26,26,26,.25); padding-bottom:2px;
}

.pager { margin-top:40px; text-align:center; }
.pager .page-numbers {
  display:inline-block; margin:0 4px; padding:8px 12px; border:1px solid #e0e0e0; color:#333; text-decoration:none;
}
.pager .current { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }
.pager .prev, .pager .next { font-weight:600; }
@media (max-width:768px){ .blog-index{padding:60px 20px;} }



/* ブログ一覧 下部ナビ */
.blog-bottom-nav {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.back-top,
.cta-apply {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
}

.back-top {
  color: #1a1a1a;
  background: #fff;
}
.back-top:hover {
  background: #1a1a1a;
  color: #fff;
}

.cta-apply {
  color: #fff;
  background: #1a1a1a;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.cta-apply:hover {
  background: #333;
}






/* --- Post (Single) --- */
.post-hero { background:#fff; padding:80px 20px 30px; border-bottom:1px solid #eee; }
.post-hero-image img { width:100%; height:auto; display:block; border:1px solid #e8e8e8; }
.post-title { font-size:2rem; line-height:1.4; margin:22px 0 8px; font-weight:600; color:#1a1a1a; }
.post-meta { color:#888; font-size:.9rem; display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.post-meta .cat { color:#555; text-decoration:none; border-bottom:1px solid rgba(26,26,26,.25); }
.post-meta .cat:hover { border-color:#1a1a1a; }
.post-meta .dot { opacity:.6; }

.post-body { background:#fff; padding:30px 20px 80px; }
.post-article { max-width:900px; margin:0 auto; }
.post-content { color:#1a1a1a; line-height:1.9; font-size:1.02rem; }
.post-content h2 { font-size:1.6rem; margin:2.2em 0 .6em; font-weight:600; }
.post-content h3 { font-size:1.3rem; margin:1.8em 0 .5em; font-weight:600; }
.post-content p { margin:1.1em 0; color:#333; }
.post-content ul, .post-content ol { padding-left:1.4em; margin:1em 0; }
.post-content blockquote { border-left:3px solid #1a1a1a; padding:12px 16px; color:#555; background:#fafafa; }
.post-content img { max-width:100%; height:auto; border:1px solid #eee; }

.post-tags { margin-top:22px; color:#666; font-size:.92rem; }
.post-tags a { color:#333; text-decoration:none; border-bottom:1px solid rgba(26,26,26,.25); margin-right:8px; }

.post-pager { display:flex; justify-content:space-between; gap:16px; margin-top:40px; padding-top:20px; border-top:1px solid #eee; }
.post-pager a { text-decoration:none; color:#1a1a1a; border-bottom:1px solid rgba(26,26,26,.25); }

.post-related { background:#fafafa; padding:80px 20px; border-top:1px solid #eee; }
.post-related .section-title { text-align:left; margin-bottom:22px; }
@media (max-width:768px){
  .post-title{font-size:1.5rem;}
  .post-body{padding:20px 20px 60px;}
}








/* 一覧に戻るボタン */
.post-back {
  text-align:center;
  margin-top:30px;
  margin-bottom: 200px;
}
.back-button {
  display:inline-block;
  padding:12px 26px;
  font-size:.95rem;
  color:#1a1a1a;
  text-decoration:none;
  border:1px solid #1a1a1a;
  transition:all .3s ease;
}
.back-button:hover {
  background:#1a1a1a;
  color:#fff;
}



/* ========================================
   士業ブログ記事スタイル
   ======================================== */

  .post-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #2C2C2C;
    line-height: 1.8;
  }

  /* ヘッダー
     ======================================== */
 .post-article header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 3px solid #00186d;
  }

 .post-article h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #2C2C2C;
    margin-bottom: 24px;
  }

 .post-article h1 strong {
    color: #00186d;
  }

 .post-article .lead {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-top: 20px;
    padding: 24px;
    background: #F5F5F5;
    border-left: 4px solid #00186d;
    border-radius: 4px;
  }

 .post-article .lead strong {
    color: #2C2C2C;
    font-weight: 600;
  }

body{
  text-align: justify;
}

  /* 見出し
     ======================================== */
 .post-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-top: 60px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #EEEEEE;
    background: #f5f5f5;
    padding-top: 0.6em;
    padding-left: 0.5em;
    line-height: 1.4;
  }

 .post-article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00186d;
    margin-top: 2em;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 7px solid #00186d30;
  }

  /* セクション
     ======================================== */
 .post-article section {
    margin-bottom: 48px;
  }

  /* テキスト
     ======================================== */
 .post-article p {
    font-size: 1rem;
    line-height: 1.9;
    margin: 1em 0;
    color: #2C2C2C;
  }

 .post-article p strong {
    font-weight: 600;
    color: #2C2C2C;
    color: #00186d;
  }

  /* リスト
     ======================================== */
 .post-article ul {
    margin: 1.2em 0 1.2em 1.5em;
    list-style: none;
    padding-left: 0;
  }

 .post-article li {
    margin: 0.8em 0;
    padding-left: 1.5em;
    position: relative;
    line-height: 1.8;
  }

 .post-article li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00186d;
    font-weight: 700;
  }

 .post-article li strong {
    font-weight: 600;
    color: #2C2C2C;
  }

  /* ハイライト
     ======================================== */
 .post-article .highlight {
    background: linear-gradient(transparent 60%, rgba(200, 64, 52, 0.2) 0);
    padding: 0 0.2em;
    font-weight: 600;
  }

  /* ノート・補足説明
     ======================================== */
 .post-article .note {
    display: block;
    margin-top: 20px;
    padding: 16px 20px;
    background: #F9F9F9;
    border-left: 4px solid #666;
    border-radius: 4px;
    color: #555;
    font-size: 0.95em;
    line-height: 1.8;
  }

 .post-article .note strong {
    color: #2C2C2C;
    font-weight: 600;
  }

  /* CTAボタン
     ======================================== */
 .post-article .cta a {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 32px;
    background: #00186d;
    color: #FFFFFF!important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 64, 52, 0.2);
    margin-right: auto;
    margin-left: auto;
    display: block;
    text-align: center;
  }

 .post-article .cta a:hover {
    background: #A32F25;
    box-shadow: 0 4px 12px rgba(200, 64, 52, 0.3);
    transform: translateY(-2px);
  }

 .post-article .cta a strong {
    color: #FFFFFF;
  }

  /* 強調表示
     ======================================== */
 .post-article em {
    font-style: normal;
    color: #00186d;
    font-weight: 500;
  }

  /* モバイル対応
     ======================================== */
  @media (max-width: 768px) {
   .post-article {
      padding: 40px 16px;
    }

   .post-article h1 {
      font-size: 1.6rem;
      line-height: 1.4;
    }

   .post-article h2 {
      font-size: 1.4rem;
      margin-top: 40px;
    }

   .post-article h3 {
      font-size: 1.1rem;
    }

   .post-article .lead {
      font-size: 1rem;
      padding: 16px;
    }

   .post-article .cta {
      display: block;
      text-align: center;
      padding: 14px 24px;
      font-size: 1rem;
    }
  }

  /* プリント用
     ======================================== */
  @media print {
   .post-article .cta {
      display: none;
    }
  }
