/* ============================================================
   店舗売却LP レスポンシブデザイン
   ============================================================ */

body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", sans-serif;
    color: #1a1a1a;
    background: #f7f6f3;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   共通
   ============================================================ */

.lp_container {
    margin: auto;
    padding: 0 20px;
    max-width: 800px;
}

@media screen and (min-width: 600px) { .lp_container { padding: 0 32px; } }
@media screen and (min-width: 1001px) { .lp_container { max-width: 900px; } }

.lp_section {
    padding: 64px 0;
    background: #fff;
    margin: 0 !important;
}

@media screen and (min-width: 600px) { .lp_section { padding: 96px 0; } }
@media screen and (min-width: 1001px) { .lp_section { padding: 120px 0; } }

.lp_section:nth-of-type(even) { background: #f5f1eb; }

.lp_section_title {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.lp_section_title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c08b30;
    margin: 16px auto 0;
}

@media screen and (min-width: 600px) { .lp_section_title { font-size: 30px; margin-bottom: 48px; } }
@media screen and (min-width: 1001px) { .lp_section_title { font-size: 35px; } }
@media screen and (min-width: 600px) { .lp_section_title br { display: none; } }

.lp_section_title_white { color: #fff !important; }
.lp_section_title_white::after { background: rgba(192, 139, 48, 0.6); }

.lp_lead {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #c08b30;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}

@media screen and (min-width: 600px) { .lp_lead { font-size: 24px; } }

.lp_text {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: #555;
    margin-bottom: 16px;
}

@media screen and (min-width: 600px) { .lp_text { font-size: 16px; } }

.lp_text_light { color: rgba(255, 255, 255, 0.75) !important; }

/* ============================================================
   ヒーロー
   ============================================================ */

.lp_hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.lp_hero_bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.lp_hero_bg_overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6) 100%);
}

.lp_hero_bg_img {
    position: absolute;
    top: 0; left: 0;
    width: 110%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: lpHeroSlide 15s linear infinite;
}

.lp_hero_bg_img1 { opacity: 1; }
.lp_hero_bg_img2 { animation-delay: 5s; }
.lp_hero_bg_img3 { animation-delay: 10s; }

@keyframes lpHeroSlide {
    0% { opacity: 0; transform: scale(1.05); }
    3% { opacity: 1; }
    5% { opacity: 1; }
    8% { opacity: 1; transform: scale(1.0); }
    33% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.lp_hero_content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    padding-top: 48px;
}

@media screen and (min-width: 751px) { .lp_hero_content { padding-top: 60px; } }

.lp_hero_label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #fff;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
    margin-bottom: 24px;
}

@media screen and (min-width: 600px) { .lp_hero_label { font-size: 18px; padding: 10px 32px; } }

.lp_hero_title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

@media screen and (min-width: 600px) { .lp_hero_title { font-size: 48px; } }
@media screen and (min-width: 1001px) { .lp_hero_title { font-size: 60px; } }

.lp_hero_line {
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    margin: 24px auto;
}

.lp_hero_sub {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.9;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

@media screen and (min-width: 600px) { .lp_hero_sub { font-size: 18px; } }

.lp_hero_note {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    background: rgba(192, 139, 48, 0.7);
    padding: 10px 24px;
}

@media screen and (min-width: 600px) { .lp_hero_note { font-size: 16px; padding: 12px 32px; } }

/* ヒーローCTA */
.lp_hero_cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

@media screen and (min-width: 600px) {
    .lp_hero_cta { flex-direction: row; justify-content: center; gap: 16px; }
}

.lp_hero_cta_tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #d4a24e, #c08b30);
    border: none;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(192, 139, 48, 0.3);
}

.lp_hero_cta_tel:hover {
    background: linear-gradient(135deg, #e0b35e, #d49a3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 139, 48, 0.4);
}

.lp_hero_cta_form {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.lp_hero_cta_form:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
}

/* スクロール誘導 */
.lp_hero_scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 44px; height: 44px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media screen and (min-width: 600px) { .lp_hero_scroll { bottom: 60px; } }

.lp_hero_scroll:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.lp_hero_scroll_arrow {
    width: 10px; height: 10px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    margin-top: -4px;
    animation: lpScrollBounce 2s infinite;
}

@keyframes lpScrollBounce {
    0% { transform: rotate(45deg) translate(0,0); opacity: 0; }
    30% { opacity: 1; }
    60% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
    100% { transform: rotate(45deg) translate(4px,4px); opacity: 0; }
}

/* ============================================================
   実績数字
   ============================================================ */

.lp_numbers {
    background: #2c241e !important;
    padding: 48px 0 !important;
    border-top: 2px solid #c08b30;
    border-bottom: 2px solid #c08b30;
    margin: 0 !important;
}

@media screen and (min-width: 600px) { .lp_numbers { padding: 64px 0 !important; } }

.lp_numbers_list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

@media screen and (min-width: 600px) {
    .lp_numbers_list { flex-direction: row; justify-content: center; gap: 0; }
}

.lp_numbers_item { text-align: center; flex: 1; }

@media screen and (min-width: 600px) {
    .lp_numbers_item { padding: 0 40px; }
    .lp_numbers_item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.15); }
}

.lp_numbers_value {
    font-size: 44px;
    font-weight: 700;
    color: #e8b84b;
    line-height: 1;
}

@media screen and (min-width: 600px) { .lp_numbers_value { font-size: 52px; } }

.lp_numbers_unit { font-size: 18px; font-weight: 500; margin-left: 4px; }

.lp_numbers_label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ============================================================
   お悩みセクション
   ============================================================ */

.lp_section_onayami { background: #ebe6dd !important; }

.lp_nayami_card {
    max-width: 420px;
    margin: 40px auto 24px;
    padding: 20px 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.lp_nayami_card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    width: 20px; height: 20px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.04);
}

.lp_nayami_q {
    font-size: 17px;
    font-weight: 700;
    color: #2c241e;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 600px) { .lp_nayami_q { font-size: 20px; } }

/* ============================================================
   メリットカード
   ============================================================ */

.lp_merit_cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 600px) {
    .lp_merit_cards { flex-direction: row; gap: 24px; }
}

.lp_merit_card {
    flex: 1;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #e8e3da;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.lp_merit_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.lp_merit_num {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 700;
    color: #c08b30;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.lp_merit_title {
    font-size: 17px;
    font-weight: 700;
    color: #2c241e;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 600px) { .lp_merit_title { font-size: 18px; } }

.lp_merit_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: #777;
}

/* ============================================================
   売却までの流れ
   ============================================================ */

.lp_section_flow { background: #f5f1eb !important; }

.lp_flow_item {
    position: relative;
    margin: 24px 0;
    padding: 20px 20px 20px 90px;
    background: #fff;
    border: 1px solid #e0ddd6;
    border-radius: 6px;
}

@media screen and (min-width: 600px) {
    .lp_flow_item { padding: 28px 28px 28px 120px; }
}

.lp_flow_item::before {
    content: attr(data-step);
    position: absolute;
    top: 0; left: 0;
    width: 76px; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    background: #2c241e;
    border-radius: 6px 0 0 6px;
}

@media screen and (min-width: 600px) {
    .lp_flow_item::before { width: 100px; font-size: 15px; }
}

.lp_flow_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 38px;
    bottom: -18px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #c08b30;
}

@media screen and (min-width: 600px) {
    .lp_flow_item:not(:last-child)::after { left: 50px; }
}

.lp_flow_item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c241e;
    margin-bottom: 8px;
}

@media screen and (min-width: 600px) { .lp_flow_item h3 { font-size: 18px; } }

.lp_flow_item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
}

@media screen and (min-width: 600px) { .lp_flow_item p { font-size: 15px; } }

/* ============================================================
   YouTube
   ============================================================ */

.lp_section_youtube { background: #2c241e !important; }

.lp_youtube_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.lp_youtube_embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lp_youtube_embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.lp_youtube_caption {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(240, 236, 230, 0.6);
    text-align: center;
    margin-top: 14px;
}

/* ============================================================
   CTA
   ============================================================ */

.lp_cta {
    padding: 64px 0;
    background: #2c241e;
    text-align: center;
    border-top: 2px solid #c08b30;
    margin: 0 !important;
}

@media screen and (min-width: 600px) { .lp_cta { padding: 80px 0; } }

.lp_cta_title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 10px;
}

@media screen and (min-width: 600px) { .lp_cta_title { font-size: 24px; } }

.lp_cta_sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.lp_cta_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media screen and (min-width: 600px) {
    .lp_cta_buttons { flex-direction: row; justify-content: center; gap: 16px; }
}

.lp_cta_tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4a24e, #c08b30);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(192, 139, 48, 0.3);
}

.lp_cta_tel:hover {
    background: linear-gradient(135deg, #e0b35e, #d49a3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 139, 48, 0.4);
}

.lp_cta_form {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.lp_cta_form:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
}

.lp_cta_hours {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
}

/* ============================================================
   フッターCTA非表示（ページ内CTAと重複するため）
   ============================================================ */

.footer_cta { display: none !important; }

/* ============================================================
   ベースCSS上書き
   ============================================================ */

main section { margin: 0 !important; font-size: 14px !important; }
.lp_hero_bg_img { margin-top: 0 !important; }
