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

[class^="section_content--"] {
    padding-bottom: 70px;
}

/* --- コンテンツタイトル --- */

.title_block {
    margin-bottom: 40px;
}

.section_title {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.375;
    margin-bottom: 8px;
}

.title_wave {
    width: 120px;
}

.section_title.is_center {
    text-align: center;
}

/* --- タイトル：白パターン --- */

.section_title.is_white {
    color: #fff;
    text-shadow: 0 0 4px var(--accent-color);
}

/* --- タイトル：中央揃え --- */

.title_block.is_center {
    text-align: center;
}

.title_block.is_center .section_subtitle {
    justify-content: center;
}

@media (min-width: 768px) {

    [class^="section_content--"] {
        padding-block: 80px;
    }

    .title_block {
        margin-bottom: 55px;
    }

    .section_title {
        font-size: 35px;
        line-height: 1.43;
    }

    .title_wave {
        width: 156px;
    }

}


/* ============================================
   MV（メインビジュアル）
============================================ */

.fv {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 750 / 1334;
    margin-bottom: 45px;
}

/* --- 背面画像 --- */

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

.fv-inner picture,
.fv-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 前面固定エリア --- */

.fv-fixed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv-fixed-content * {
    pointer-events: auto;
}

/* 翻訳時（Google Translate）はテキストが長くなるため上端起点に切り替え */
.translated-ltr .fv-fixed-content,
.translated-rtl .fv-fixed-content {
    align-items: center;
    padding-top: 70px;
    box-sizing: border-box;
}

.translated-ltr .fv-reserve-btn,
.translated-rtl .fv-reserve-btn {
    margin: 0 auto 15px;
}

.fv-container {
    width: 100%;
    max-width: max-content;
    padding: 0 18px;
    text-align: center;
}

/* --- タグライン（黄色ハイライト） --- */

.fv-tagline_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.fv-tagline_highlight {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.67;
    color: var(--text-color);
}

/* --- メインキャッチ --- */

.main_catch {
    font-size: clamp(34px, 8vw, 54px);
    font-weight: 900;
    color: var(--text-color);
    font-family: var(--main-font);
    line-height: 1.32;
    text-shadow:
        0 0 10px #FFFFFF,
        2px 0 0 #FFFFFF,
        -2px 0 0 #FFFFFF,
        0 2px 0 #FFFFFF,
        0 -2px 0 #FFFFFF,
        1px 1px 0 #FFFFFF,
        -1px -1px 0 #FFFFFF,
        1px -1px 0 #FFFFFF,
        -1px 1px 0 #FFFFFF;
    margin-bottom: 20px;
}

/* --- 安心パックエリア --- */

.fv-pack {
    margin-bottom: 25px;
}

.fv-pack_sub {
    font-size: clamp(16px, 3.8vw, 22px);
    font-weight: 900;
    color: var(--accent-color);
    text-shadow:
        0 0 10px #FFFFFF,
        2px 0 0 #FFFFFF,
        -2px 0 0 #FFFFFF,
        0 2px 0 #FFFFFF,
        0 -2px 0 #FFFFFF,
        1px 1px 0 #FFFFFF,
        -1px -1px 0 #FFFFFF,
        1px -1px 0 #FFFFFF,
        -1px 1px 0 #FFFFFF;
    margin-bottom: 6px;
}

.fv-pack_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fv-pack_badge {
    background: #FFEF45;
    padding: 5px 9px;
    font-size: clamp(14px, 3.2vw, 18px);
    font-weight: bold;
    color: var(--accent-color);
}

.fv-pack_text {
    font-size: clamp(22px, 5.2vw, 30px);
    font-weight: bold;
    color: var(--accent-color);
    text-shadow:
        0 0 10px #FFFFFF,
        2px 0 0 #FFFFFF,
        -2px 0 0 #FFFFFF,
        0 2px 0 #FFFFFF,
        0 -2px 0 #FFFFFF,
        1px 1px 0 #FFFFFF,
        -1px -1px 0 #FFFFFF,
        1px -1px 0 #FFFFFF,
        -1px 1px 0 #FFFFFF;
}

/* --- 予約ボタン --- */

.fv-reserve-btn {
    max-width: 275px;
    margin: 0 auto 40px;
}

/* --- スクロールインジケーター --- */

.fv-scroll {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 0 auto;
}

.fv-scroll_text {
    font-size: 12px;
    font-weight: bold;
    color: var(--accent-color);
}

.fv-scroll_icon {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
}

/* --- PC --- */

@media (min-width: 768px) {

    .fv {
        height: 100vh;
        min-height: 60vw;
        aspect-ratio: inherit;
    }

    .fv-container {
        padding: 0 20px;
        margin: 0 auto;
    }

    .fv-tagline_top {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        margin-bottom: 18px;
    }

    .fv-tagline_highlight {
        font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
        padding: 7px 20px;
    }

    .fv-tagline_highlight:first-child {
        padding-right: 0;
    }

    .fv-tagline_highlight:last-child {
        padding-left: 0;
    }

    .main_catch {
        font-size: clamp(4.25rem, 3.708rem + 1.13vw, 5.063rem);
        margin-bottom: 25px;
    }

    .fv-pack_sub {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .fv-pack_badge {
        font-size: 16px;
    }

    .fv-pack_text {
        font-size: 30px;
    }

    .fv-reserve-btn {
        max-width: 300px;
        height: 70px;
        margin-bottom: 36px;
    }

    .fv-reserve-btn span {
        font-size: 18px;
    }

    .fv-scroll {
        display: none;
    }

    /* 翻訳時（Google Translate）はテキストが長くなるため上端起点に切り替え */
    .translated-ltr .fv-fixed-content,
    .translated-rtl .fv-fixed-content {
        padding-top: 0;
        box-sizing: border-box;
    }

    .translated-ltr .fv-reserve-btn,
    .translated-rtl .fv-reserve-btn {
        margin: 0 auto 35px;
    }

}


/* ============================================
   超らくらく安心パック（Pack）
============================================ */

/* --- 共通ブロック --- */

.section_content--pack .section_space {
    width: 100%;
}

/* --- タイトルブロック --- */

.pack_body {
    padding: 0 20px;
    margin-bottom: 25px;
}

.pack-title_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pack-title_badge {
    position: relative;
    display: inline-block;
    width: 120px;
}

.pack-title_badge span {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6.37deg);
    color: var(--accent-color);
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

/* --- コンテンツブロック --- */

.pack_desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.67;
    margin-bottom: 30px;
}

.pack_desc_note {
    font-size: 14px;
}

.pack_desc_note a {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.pack_photo {
    width: 100%;
    height: 300px;
}

.pack_photo img {
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
}

/* --- PC --- */

@media (min-width: 768px) {

    .section_content--pack {
        padding-top: 0;
        padding-bottom: 110px;
    }

    .section_content--pack .section_space {
        max-width: 89.5%;
        margin-left: auto;
        margin-right: 0;
    }

    .section_content--pack .content_box {
        display: flex;
        align-items: center;
        gap: clamp(30px, calc(65px + 50vw - 570px), 65px);
    }

    .pack_body {
        padding: 0;
        margin: 0;
        flex: 0 0 32.4%;
    }

    .pack_photo {
        flex: 1;
        height: 490px;
    }

    .pack-title_block {
        margin-bottom: 50px;
    }

    .pack-title_badge {
        width: 160px;
        margin-left: -38px;
    }

    .pack-title_badge span {
        font-size: 20px;
    }

}


/* ============================================
   選ばれる理由（Reason）
============================================ */

/* --- 共通ブロック --- */

.section_content--reason {
    background: #fff url("../images/top/reason_bg_sp.jpg") top center / cover no-repeat;
    padding-top: 70px;
    padding-bottom: 80px;
    position: relative;
    overflow: visible;
}

.section_content--reason::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.reason_curve {
    display: block;
    line-height: 0;
    background-color: #DDF2FF;
    position: relative;
}

.reason_curve::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: -1;
}

.reason_curve_img {
    display: block;
    width: 100%;
    height: auto;
}

.reason_curve_img--pc {
    display: none;
}


.section_content--reason .section_space {
    position: relative;
    z-index: 2;
}

/* --- タイトル --- */

.reason-title_block {
    margin-bottom: 55px;
}

.section_content--reason .title_wave {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* --- カードリスト --- */

.reason_list {
    display: flex;
    flex-direction: column;
    gap: 65px;
    margin-bottom: 40px;
}

.reason_item {
    background: #EFF9FF;
    border-radius: 10px;
    padding: 45px 20px 25px;
    text-align: center;
    max-width: 290px;
    margin: 0 auto;
    border: 2px solid var(--accent-color);
    position: relative;
}

/* --- ラベル --- */

.reason_item_label {
    font-size: 54px;
    font-weight: 400;
    color: #0060B3;
    line-height: 1;
    font-family: var(--sub-font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow:
        0 0 10px #FFFFFF,
        3px 0 0 #FFFFFF,
        -3px 0 0 #FFFFFF,
        0 3px 0 #FFFFFF,
        0 -3px 0 #FFFFFF,
        2px 2px 0 #FFFFFF,
        -2px -2px 0 #FFFFFF,
        2px -2px 0 #FFFFFF,
        -2px 2px 0 #FFFFFF,
        3px 1px 0 #FFFFFF,
        -3px 1px 0 #FFFFFF,
        3px -1px 0 #FFFFFF,
        -3px -1px 0 #FFFFFF,
        1px 3px 0 #FFFFFF,
        -1px 3px 0 #FFFFFF,
        1px -3px 0 #FFFFFF,
        -1px -3px 0 #FFFFFF;
}

.reason_item_label::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 21px;
    background: #EFF9FF;
    z-index: -1;
}

.reason_item_label-en {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--main-font);
    color: var(--accent-color);
    text-shadow: none;
}

/* --- アイコン --- */

.reason_item_icon {
    width: 138px;
    height: 138px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
}

.reason_item_icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* --- テキスト --- */

.reason_item_title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.reason_item_text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.75;
    text-align: left;
}

/* --- 写真エリア --- */

.reason_photos {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 74.7vw;
    margin-bottom: -110px;
}

.reason_photo {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    transform: scale(0);
    transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reason_photo.is-visible {
    transform: scale(1);
}

.reason_photo--01 {
    transition-delay: 0s;
}

.reason_photo--02 {
    transition-delay: 0.2s;
}

.reason_photo--03 {
    transition-delay: 0.4s;
}

.reason_photo--04 {
    transition-delay: 0.6s;
}

.reason_photo--05 {
    transition-delay: 0.8s;
}

.reason_photo--03.is-visible {
    transform: translateX(-50%) scale(1);
}

.reason_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason_photo--01 {
    width: 40.5vw;
    height: 40.5vw;
    left: -10.7vw;
    top: 0;
}

.reason_photo--02 {
    width: 21.6vw;
    height: 21.6vw;
    left: 37.3vw;
    top: 10.7vw;
}

.reason_photo--03 {
    width: 34.7vw;
    height: 34.7vw;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(0);
    transition-delay: 0.2s;
}

.reason_photo--04 {
    width: 29.3vw;
    height: 29.3vw;
    right: 5.3vw;
    top: 13.3vw;
}

.reason_photo--05 {
    width: 38.4vw;
    height: 38.4vw;
    right: -13.3vw;
    bottom: -13.3vw;
}

/* --- PC --- */

@media (min-width: 768px) {

    .section_content--reason {
        background: #fff url("../images/top/reason_bg.jpg") top center / 100% auto no-repeat;
        padding: 100px 20px 10px;
    }

    .section_content--reason::after {
        display: none;
    }

    .section_content--reason .section_space,
    .section_content--reason .content_box {
        max-width: 950px;
    }

    .reason_curve_img--sp {
        display: none;
    }

    .reason_curve_img--pc {
        display: block;
        height: 176px;
    }

    .reason-title_block {
        margin-bottom: 90px;
    }

    /* カード横並び */

    .reason_list {
        flex-direction: row;
        justify-content: center;
        gap: clamp(20px, calc(40px + 50vw - 570px), 40px);
        margin-bottom: 95px;
    }

    .reason_item {
        flex: 1;
        margin: 0;
    }

    /* 写真エリア */

    .reason_photos {
        padding: 0 20px;
        height: 40vw;
        margin-bottom: -30px;
    }

    .reason_photo--01 {
        width: 26.6vw;
        height: 26.6vw;
        left: -2.2vw;
        top: 0;
    }

    .reason_photo--02 {
        width: 14.3vw;
        height: 14.3vw;
        left: 30vw;
        top: 0;
    }

    .reason_photo--03 {
        width: 22.7vw;
        height: 22.7vw;
        left: 45vw;
        bottom: -6vw;
        z-index: 1;
    }

    .reason_photo--04 {
        width: 19.4vw;
        height: 19.4vw;
        right: 29vw;
        top: 3.7vw;
    }

    .reason_photo--05 {
        width: 30vw;
        height: 30vw;
        right: -6.6vw;
        bottom: 0;
    }

}


/* ============================================
   料金プラン（Plan）
============================================ */

/* --- 共通ブロック --- */

.section_content--plan {
    background: url("../images/top/priceplan_bg_sp.png") bottom / cover no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: visible;
    position: relative;
}

.plan-title_block {
    margin-bottom: 40px;
}

/* --- カードリスト --- */

.plan_list {
    display: flex;
    flex-direction: column;
    gap: 65px;
    margin-bottom: 30px;
    list-style: none;
}

.plan_item_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* --- 車種名 --- */

.plan_item_name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* --- 車両写真 --- */

.plan_item_photo {
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.plan_item_photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 96, 179, 0.21);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.plan_item_photo img {
    border-radius: 10px;
}

/* --- 料金テーブル --- */

.plan_item_price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan_item_price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--accent-color);
    position: relative;
}

.plan_item_price-row::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.plan_item_price-row dt {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    min-width: 0;
    line-height: 1.75;
}

.plan_item_price-row dd {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    white-space: nowrap;
}

.plan_price-value {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--sub-font);
}

.plan_price-unit {
    font-size: 14px;
    font-weight: bold;
}

/* --- 注釈 --- */

.plan_note {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.43;
    margin-bottom: 40px;
}

/* --- ボタン --- */

.section_content--plan .cp_btn_box {
    text-align: center;
}

/* --- PC --- */

@media (min-width: 768px) {

    .section_content--plan {
        background: url("../images/top/priceplan_bg.png") bottom / cover no-repeat;
        padding: 50px 20px 180px;
    }

    .plan-title_block {
        margin-bottom: 50px;
    }

    /* カード横並び */

    .plan_list {
        flex-direction: row;
        margin-bottom: 50px;
        gap: clamp(30px, calc(65px + 50vw - 570px), 65px);
    }

    .plan_item {
        flex: 1;
    }

    .plan_item_link:hover .plan_item_photo::after {
        opacity: 1;
    }

    .plan_item_price {
        gap: 15px;
    }

}


/* ============================================
   お知らせ（News）
============================================ */

/* --- 共通ブロック --- */

.section_content--news {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* --- タイトルブロック --- */

.news_title_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

/* --- ニュースリスト --- */

.news_list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.news_item:nth-child(odd) {
    background: #DDF2FF;
}

.news_link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 16px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

/* --- 日付 --- */

.news_date {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- タイトル --- */

.news_item_title {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.86;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    flex: 1;
    min-width: 0;
}

/* --- 矢印 --- */

.news_arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --- ボタン --- */

.section_content--news .cp_btn_box {
    text-align: center;
}

/* --- PC --- */

@media (min-width: 768px) {

    .section_content--news {
        padding: 100px 20px 150px;
    }

    .section_content--news .content_box {
        max-width: 786px;
        margin: 0 auto;
    }

    .news_title_block {
        margin-bottom: 50px;
    }

    .news_link {
        gap: 45px;
        padding: 22px 25px;
    }

    /* --- タイトル --- */

    .news_item_title {
        font-size: 16px;
        line-height: 1.75;
    }

    /* --- 日付 --- */

    .news_date {
        font-size: 16px;
    }

    /* --- 矢印 --- */

    .news_arrow {
        width: 12px;
        height: 12px;
        transition: transform 0.3s;
    }

    .news_link:hover .news_arrow {
        transform: translateX(8px) rotate(45deg);
    }


}