@charset "utf-8";

/* ==========================================================================
   1. Reset & Global
   ========================================================================== */
.lp-tax-body {
    margin: 0; padding: 0;
    background-color: #fdfaf7;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.lp-tax-wrapper {
    overflow-x: hidden;
}

.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, .hoshi-quote {
    font-family: 'Noto Serif JP', serif;
}
p.hero-title {
    font-family: 'Noto Serif JP', serif;
}
.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    position: relative;
}
.section-title::after {
    content: ''; display: block; width: 40px; height: 2px;
    background: #36454f; margin: 15px auto 0;
}
.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

/* ==========================================================================
   2. Hero
   ========================================================================== */
/* ==========================================================================
   Hero Section (装飾復活版)
   ========================================================================== */
.lp-hero {
    /* 画像の上に白フィルターをかけ、文字とボタンの視認性を確保 */
    background: 
                url('https://hoshi-note.blog/wp-content/themes/hoshi-note2026/img/lp-tax-asulike/bg-lptax-two.png') center center / cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

/* ゴールドバッジ */
.lp-badge {
    background: linear-gradient(135deg, #000, #000); /* 上質なゴールドのグラデ */
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    letter-spacing: 0.05em;
}
.lp-container .hero-content {
margin-top:56px;
}
/* メインタイトル（明朝体で高級感を） */
.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
text-shadow: 0 0 4px #333,
               0 0 5px #333,
               0 0 6px #333;}

.hero-subtext {
	text-align:center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* 特製ボタン：くすみブルー×立体感 */
.lp-btn-primary {
    display: inline-block;
    background: #c5a059;
    color: #fff;
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(152, 122, 65, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ボタンのホバーエフェクト */
.lp-btn-primary:hover {
    background: #B9AF9D;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(152, 122, 65, 0.5);
    color: #fff;
}

.lp-btn-primary i {
    margin-left: 10px;
    font-size: 0.9em;
}

/* ==========================================================================
   Mobile Responsive (スマホでの画像全体表示との両立)
   ========================================================================== */
@media (max-width: 768px) {
    .lp-hero {
		min-height:300px;
        /* 高さを抑えて画像全体を見せる（先ほどの調整） */
        padding: 60px 0 !important;
        background-position: 50% center !important;
    }

    .lp-badge {
        font-size: 0.75rem !important;
        padding: 5px 15px !important;
        margin-bottom: 15px !important;
    }

    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .hero-subtext {
		text-align:center;
		color:#000;
        font-size: 1em !important;
        margin-bottom: 25px !important;
    }

    .lp-btn-primary {
        padding: 16px 40px !important;
        font-size: 1rem !important;
    }
}
.hero-cta {
	text-align:center;
	margin-top:24px;
}
/* ==========================================================================
   3. Sections
   ========================================================================== */
.lp-section { padding: 80px 0; }

/* Pain Area */
.pain-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.pain-item {
    flex: 1; min-width: 280px; background: #fff;
    padding: 50px 20px; text-align: center;
    border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.lp-icon-gold { color: #c5a059; font-size: 3rem; margin-bottom: 25px; }
.pain-item img {
width:100%;
height:auto;
	margin-bottom:16px;
}
/* Story Quote */
.hoshi-quote {
    background: #f2f0eb; padding: 40px;
    border-left: 5px solid #36454f;
    font-size: 1.25rem; margin: 30px 0;
}
p.left_name {
	margin-top:24px;
	font-weight: normal; font-style: italic; font-family: "Times New Roman" ;
	text-align:right;
}
/* ==========================================================================
   Features Section (6つの特長)
   ========================================================================== */
.lp-features {
    background-color: #fdfaf7; /* 背景色を統一 */
    padding: 80px 0;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr); /* PCは3列 */
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-top: 4px solid #36454f; /* 上部にゴールドのアクセント */
    padding: 30px 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-num {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.feature-num span {
    font-size: 1.6rem;
    color: #c5a059;
    margin-left: 2px;
}

.feature-icon {
    font-size: 45px;
    color: #c5a059; /* アイコン色はブルーグレー */
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.feature-card h3 .highlight {
    color: #c5a059; /* 強調したい文字色 */
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    text-align: left; /* 説明文は左寄せで読みやすく */
    margin: 0;
}

/* -------------------------------------------
   モバイル対応 (スマホ2列)
   ------------------------------------------- */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* スマホで確実に2列 */
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 10px;
    }
    
    .feature-icon {
        font-size: 35px;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
}
/* ==========================================================================
   Recommend Section (追加部分)
   ========================================================================== */
.lp-recommend {
    padding: 80px 0;
}

.recommend-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.recommend-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
}

.recommend-icon {
    width: 120px;
    height: 120px;
    background-color: #5e7d9a; /* 洗練されたブルーグレー */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recommend-icon:hover {
    transform: translateY(-5px);
}

.recommend-icon i {
    color: #fff;
    font-size: 45px; /* アイコンを適切なサイズに */
}

.recommend-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.recommend-item p strong {
    color: #c5a059;
    font-weight: bold;
}
/* ==========================================================================
   Recommend Section (修正：4項目・スマホ2列)
   ========================================================================== */
.lp-recommend {
    padding: 80px 0;
    background-color: #fff; /* 背景を白にして見やすく */
}

.recommend-grid {
    display: grid !important; /* グリッドを強制適用 */
    grid-template-columns: repeat(4, 1fr); /* デスクトップは4列 */
    gap: 30px;
    margin-top: 40px;
}

.recommend-item {
    text-align: center;
    width: 100%; /* 幅を固定させない */
}

.recommend-icon {
    width: 100px;
    height: 100px;
    background-color: #36454f; /* 洗練されたブルーグレー */
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.recommend-icon i {
    color: #fff;
    font-size: 40px; /* アイコンを適切なサイズに固定 */
}

.recommend-item p {
	width:94%;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.recommend-item p strong {
    color: #c5a059;
    font-weight: bold;
}

/* -------------------------------------------
   モバイル対応 (スマホ2列)
   ------------------------------------------- */
@media (max-width: 768px) {
    .recommend-grid {
		margin:0 auto;
        grid-template-columns: repeat(2, 1fr) !important; /* スマホで確実に2列にする */
        gap: 8px;
        padding: 0 10px !important;
    }

	
    .recommend-icon {
        width: 80px; /* スマホでは少し小さく */
        height: 80px;
    }
    
    .recommend-icon i {
        font-size: 30px;
    }

    .recommend-item p {
        font-size: 0.85rem;
		        padding: 0 10px !important;

    }
}

/* ==========================================================================
   Flow Section (利用の流れ)
   ========================================================================== */
.lp-flow {
    background-color: #fff;
    padding: 80px 0;
}

.flow-wrapper {
    max-width: 800px; /* PCで見やすい幅に制限 */
    margin: 0 auto;
}

/* サブバナー（青いバーの部分） */
.flow-sub-banner {
    text-align: center;
    padding: 12px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.flow-sub-banner.primary { background-color: #3C4B52; } /* くすみブルー */
.flow-sub-banner.accent { background-color: #3C4B52; margin-top: 30px; }

/* フロー各行のスタイル */
.flow-item {
    display: flex;
    align-items: stretch; /* 高さを揃える */
    background: #f2f0eb;
    border-bottom: 4px solid #fff; /* 行間の仕切り */
    overflow: hidden;
}

.flow-step {
    background: #000; /*  */
    color: #fff;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.flow-step span {
    font-size: 0.8rem;
    margin-bottom: -5px;
}

.flow-content {
    flex-grow: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif; /* タイトルはゴシックで見やすく */
}

.flow-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.flow-thumb {
    width: 180px;
    flex-shrink: 0;
}

.flow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに画像を広げる */
    display: block;
}

/* -------------------------------------------
   モバイル対応
   ------------------------------------------- */
@media (max-width: 768px) {
    .flow-step {
        width: 70px;
        font-size: 1.4rem;
    }
    
    .flow-content {
        padding: 15px;
    }
    
    .flow-content h3 {
        font-size: 1rem;
    }
    
    .flow-content p {
        font-size: 0.8rem;
    }

    .flow-thumb {
        width: 100px; /* スマホでは画像を小さくして横幅を確保 */
    }
    
    .flow-sub-banner {
        font-size: 0.9rem;
    }
}

/* Price Plan */
.price-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.price-card {
    background: #fff; padding: 50px 30px; border-radius: 20px;
    flex: 1; max-width: 400px; text-align: center; border: 1px solid #eee;
}
.price-card h3 {
	font-size:1.4em;
}
.price-card.popular { border: 2px solid #c5a059; position: relative; transform: scale(1.05); }
.price-label {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #c5a059; color: #fff; padding: 4px 20px; border-radius: 50px; font-size: 0.8rem;
}
.price-amount span { font-size: 3rem; font-weight: bold; color: #c5a059; }
.price-card ul { list-style: none; padding: 0; text-align: left; margin-top: 30px; }
.price-card ul li::before { content: '✓'; color: #c5a059; margin-right: 10px; font-weight: bold; }

/* Office Info */
.office-box { background: #fff; padding: 24px; border-radius: 20px; }
.office-flex { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.img-placeholder { background: #eee; width: 300px; height: 350px; display: flex; align-items: center; justify-content: center; border-radius: 15px; color: #999;}
.office-img {text-align:center;
}
.office-img .img-placeholder img {display:block;margin:0 auto;text-align:center;}
.office-table { width: 100%; margin-top: 20px; border-collapse: collapse; }
.office-table th { text-align: left; padding: 15px; border-bottom: 1px solid #eee; width: 130px; color: #888; }
.office-table td { padding: 15px; border-bottom: 1px solid #eee; }
.office_h3{font-size: 1.1rem;
    font-weight: bold;
    color: #333;
	display:inline;
}
.office-info p{
	margin-top:16px;
}

/* ==========================================================================
   4. Contact Form 7 (Special Styling)
   ========================================================================== */
.bonus-banner {
    background: #fff; border: 2px dashed #c5a059;
    padding: 40px; border-radius: 20px; text-align: center; margin-bottom: 50px;
}
.form-card { background: #fff; padding: 24px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); }

/* 入力欄のカスタマイズ */
.wpcf7-form-control-wrap { display: block; margin-bottom: 25px; }
.wpcf7-text, .wpcf7-email, .wpcf7-tel, .wpcf7-select, .wpcf7-textarea {
    width: 100% !important;
    padding: 18px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    background: #fcfcfc !important;
    box-sizing: border-box !important;
}
.wpcf7-textarea { height: 150px; }

/* 送信ボタンのカスタマイズ */
.wpcf7-submit {
    display: block !important;
    width: 100% !important;
    background: #c5a059 !important;
    color: #fff !important;
    padding: 25px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}
.wpcf7-submit:hover { background: #4a647d !important; opacity: 0.9; }

/* エラーメッセージの装飾 */
.wpcf7-not-valid-tip { color: #d9534f; font-size: 0.85rem; margin-top: 5px; }
.wpcf7-response-output { border-radius: 10px; margin-top: 20px !important; }

/* ==========================================================================
   5. Footer
   ========================================================================== */
.lp-footer { text-align: center; padding: 50px 0; color: #999; font-size: 0.9rem; }

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-title { font-size: 1.5rem; }
    .lp-section { padding: 60px 0; }
    .price-card.popular { transform: none; margin-top: 20px; }
    .office-flex { flex-direction: column; }
    .office-img, .office-img .img-placeholder { width: 100%; }
}
/**/
.m_t24 {
	margin-top:24px;
}
ul.bank {
	width:90%;
	margin:0 auto;
	text-align:left;
	font-size:1.26em;
	font-weight:bold;
}
ul.bank li {
	margin-top:16px;
}
.fukidashi-02-04 {
  position: relative;
margin: 0 auto;
  width: fit-content;
	margin-bottom:8px;
}
.fukidashi-02-04 > .text {
  position: relative;
  padding: 12px 16px;
  border-radius: 4px;
  background-color: #000;
	color:#fff;
}

.fukidashi-02-04 > .ornament {
  top: 0;
  width: 100%;
  height: 100%;
}
.fukidashi-02-04 > .ornament::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 36px;
  height: 16px;
  transform: rotate(-45deg);
  box-sizing: border-box;
  background-color: #c5a059;
}
.fukidashi-02-04 > .ornament::after {
  content: "";
  position: absolute;
  top: calc(100% - 15px);
  right: -10px;
  width: 36px;
  height: 16px;
  transform: rotate(-45deg);
  box-sizing: border-box;
  background-color: #c5a059;
}


.fukidashi-01-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.fukidashi-01-12::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-12::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #333333;
}


.fukidashi-01-13 {
  position: relative;
  padding: 12px 16px 12px 30px;
}
.fukidashi-01-13::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100px;
  height: 1px;
  transform: rotate(-14deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-13::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 120px;
  height: 1px;
  transform: rotate(14deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-13 > .ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fukidashi-01-13 > .ornament::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 160px;
  height: 1px;
  transform: rotate(-12deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-13 > .ornament::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 160px;
  height: 1px;
  transform: rotate(12deg);
  box-sizing: border-box;
  background-color: #333333;
}
.text_center {text-align:center;}
.text_line {
  background-image: linear-gradient(0deg, #f2f0eb 0.5em, transparent 0.5em);
}
.text_line2 {
	display:inline-block;
  background-image: linear-gradient(0deg, #f2f0eb 0.5em, transparent 0.5em);
}
.office-img {display:block;margin:0 auto;text-align:center;
}