* {
    margin: 0;
    padding: 0;
}
.st-MainContents {
  font-feature-settings: "palt";
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; 
}
:root {
    --crimson-red: #BF0000;  
    --blue: #E1F5FE;
    --yellow: #FFFDE7;
    --navy: #002896;
    --gray: #F7F7F7;
    --orange: #EC6B02;
    --black: #333333;
}
body {
    color: var(--black);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
h1 {
    margin-bottom: 0 !important;
}
p {
    margin-bottom: 0px;
}
section {
    margin-bottom: 0px;
}


/* ==================== メインビジュアル ==================== */
.aug26-hero_banner {
    height: inherit;
}
picture {
    display: block;
}
.aug26-mv_img {
    display: none;
}
@media screen and (min-width: 768px) {
    .aug26-hero_banner {
        margin: 0;
        position: relative;
        height: 400px;
        background-color: #1BAE1E;
    }
    .aug26-mv_body_img {
    width: 100%;
    max-width: 840px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    }
    .aug26-mv_img {
        display: inherit;
        position: absolute;
        bottom: 0;
        z-index: 1;
        height: 85%;
    }
    .aug26-mv_img img {
        width: 100%;
    }
    .aug26-mv_img__R {
        right: 0;
    }
    .aug26-mv_img__L {
    left: 0;
    }
}

/* ==================== キャンペーン期間 ==================== */
.aug26-period {
    background-color: #303848;
    text-align: center;
    padding: 14px 16px 16px;
    color: white;
}
.aug26-period_date {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.aug26-period_caution {
    font-size: 11px;
}
/* PCやタブレット（画面幅768px以上）向けのスタイル */
@media screen and (min-width: 768px) {
    .aug26-period_date {
        font-size: 16px;
    }
    .aug26-period_caution {
        font-size: 12px;
    }
}


/* ==================== エントリーボタン ==================== */
/* entryArea */
.entryArea {
    padding: 28px 16px;
}
.entryArea-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;    
}
.CampaignEntryButton_campaignButton__n6hK5 {
    margin: 15px 0 0 !important;; 
}

/* ==================== どんなサービス？ ==================== */
.aug26-intro {
    background-color: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 50px;
}
/* カード本体 */
.aug26-intro_card {
    background-color: #ffffff;
    width: 100%;
    max-width: 700px;
    margin: 0;
    padding: 25px;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}
/* サブタイトル */
.aug26-intro_subtitle {
    color: var(--navy);
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
    margin-bottom: 20px;
}
/* メインタイトル */
.aug26-intro_title {
    color: var(--navy);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* --- レイアウト設定（Flexbox・横並び固定） --- */

/* コンテンツエリア */
.aug26-intro_content {
    display: flex;       /* 横並びにする */
    justify-content: center;
    align-items: center; /* 上下中央揃え */
    gap: 20px;           /* 画像とテキストの間隔 */
    width: auto;
    margin: 0 auto;
    text-align: left;
}
/* 画像エリア */
.aug26-intro_image {
    flex-shrink: 0; /* 画面が狭くなっても画像を縮小させない */
    width: 95px;    /* 画像の幅を確保 */
}
.aug26-intro_image img {
    width: 100%;    /* 親要素に合わせて表示 */
    height: auto;
    display: block;
}
/* テキストラッパー */
.aug26-intro_text-wrapper {
    /*flex: 1;*/ /* 残りの幅をすべてテキストに使う */
    min-width: 0; /* Flexbox内での折り返しバグ防止 */
}
/* テキスト */
.aug26-intro_text {
    color: #333;
    font-size: 22px; 
    line-height: 1.5;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}
/* 注釈 */
.aug26-intro_note {
    font-size: 13px;
    color: #333;
    margin-top: 10px;
    line-height: 1.4;
}
/* 赤文字強調 */
.aug26-highlight-red {
    color: #cc0000;
    font-weight: bold;
}

/* 改行の制御用クラス */
.aug26-sp-br { display: none; } /* PCでは非表示 */
.aug26-pc-br { display: inline; } /* PCでは表示 */

/* スマホ調整 */
@media screen and (max-width: 768px) {
    .aug26-intro_title {
        font-size: 28px;
    }
    .aug26-intro_subtitle {
        font-size: 14px;
    }
    .aug26-intro {
        padding: 40px 16px;
    }
    .aug26-intro_card {
        padding: 20px 15px;
    }
    .aug26-intro_content {
        width: 100%;
        gap: 15px;
        justify-content: center; 
    }
    .aug26-intro_text {
        font-size: 16px;
    }
    .aug26-intro_text-wrapper {
        flex: initial;
    }
    .aug26-sp-br { display: inline; } 
    .aug26-pc-br { display: none; }   
}


/* ==================== ご利用方法 ==================== */
.tb-scheme-main-form * {
    box-sizing: border-box;
}
/* flow */
.aug26-flow {
    background: var(--gray);
    text-align: center;
    padding: 0 16px 30px;
}
.aug26-flow_title {
    color: var(--navy);
    margin: 0;
    margin-bottom: 48px;
    font-size: 28px;
    font-weight: bold;
}
.aug26-flow_inner {
    max-width: 700px;
    margin: 0 auto;
}
.aug26-flow_list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    list-style: none;
    padding: 0;
}
.aug26-flow-item {
    background-color: #fff;
    padding: 0 13px 32px 13px;
    position: relative;
    border-radius: 10px;
}
.aug26-flow_ttl {
    color: black;
    margin-bottom: 10px;
    margin-top: 16px;
    font-size: 1.2em;
    font-weight: 700 !important;
    font-family: "Noto Sans JP", sans-serif;
}
.aug26-flow_sub {
    font-size: 14px;
    font-weight: bold;
    display: block;
    line-height: 1.5;
}
.aug26-flow_num {
    position: absolute;
    margin: 0 auto 1rem;
    display: block;
    width: 6em;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    background: var(--navy);
    border-radius: 1.5em;
    padding: 5px;
    line-height: 1.5;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.aug26-flow_step-arrow {
    width: 114px;
    height: auto;
    display: block;
    margin: -24px auto 0;
}
.aug26-flow_step-arrow img {
    width: 100px;
}
.aug26-note-text {
    font-size: 11px;
}
.aug26-note-text.flow {
    text-align: center;
}

/* --- 検索フォームのスタイル --- */
.tb-scheme-main-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-top: 16px;
    width: 100%;
    background-color: #fff;
}
.tb-scheme-main-form__inner {
    display: flex;
    padding: 0; 
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box; 
}
.tb-scheme-main-form__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* 入力欄 */
.tb-scheme-main-form__input {
    display: flex;
    height: 48px;
    min-width: auto; 
    width: 100%;
    max-width: 450px;
    flex: 1;
    box-sizing: border-box;
}
.tb-scheme-main-form__input input {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #686868;
    border-right: none;
    background: #FFF;
    font-size: 16px;
    outline: none;
}

/* 送信ボタン */
.tb-scheme-main-form__submit {
    display: flex;
    min-width: 88px;
    height: 48px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: none;
    border-radius: 0 4px 4px 0;
    background: #BF0000;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}
.tb-scheme-main-form__submit:hover {
    opacity: 0.9;
}

.tb-scheme-main-form.fixed .tb-scheme-main-form__inner {
    display: flex;
    padding: 0 20px;
}

/* 固定時のレスポンシブ調整 */
@media screen and (max-width: 768px) {
    .tb-scheme-main-form__input {
        min-width: auto;
    }
}

/* --- 画像 --- */
.step4-img {
    width: 120px;
    height: auto;
    margin: 20px auto 0px auto;
    display: block;
}
.step5-img {
    width: 200px;
    height: auto;
    margin: 20px auto 0px auto;
    display: block;
}
.aug26-flow_detail_point img {
    max-width: 100%;
    height: auto;
}

/* --- 画像 --- */
@media screen and (min-width: 768px) {
    .aug26-flow_title {
        font-size: 36px;
    }
    .aug26-flow_ttl {
      font-size: 24px;
    }
    .aug26-flow_sub {
      font-size: 18px;
    }
    .aug26-note-text {
      font-size: 12px;
      text-align: center;
    }
}

/* --- マイカー割登録ボタン --- */
.aug26-flow_btn__regist {
    display: inline-block;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    border: solid #BF0000 2px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #BF0000;
    border-radius: 40px;
}
.aug26-flow_btn__regist a {
    color: #bf0000;
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .aug26-flow_btn__regist {
        padding: 1rem 3.5rem;
        font-size: 1.75rem;
        border-radius: 40px;
    }
}


/* ==================== メリット／シーン ==================== */
.gradient-merits-scenes {
    background-color: var(--gray);
    padding-top: 30px;
    padding-bottom: 60px;
}
.section-ttl {
    color: var(--navy);
    margin: 0;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.section-ttl span {
    font-size: 16px;
}
.merit {
  width: 100%;
  padding: 0 16px 30px;
  margin: auto;
  max-width: 960px;
  box-sizing: border-box;
}
.merit-section {
    max-width: 900px;
    width: 100%;
    margin: auto;
}
.merit-items {
  padding: 0;
  width: 100%;
  display: flex;
  list-style: none;
  gap: 7px;
  margin: 0 auto 10px;
}
.merit-item {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
.merit-item-con {
    border: 1px solid #D5D5D5;
    border-radius: 10px;
    background: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}
.merit-item-con p {
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    padding: 10px 0;
    color: #333;
    font-size: 13px;
}
.merit-item-con p b {
    color: #BF0000;
    font-size: 18px;
}
.merit-item-con p small {
    font-size: 8px;
}
.merit-item-con dl {
    padding: 10px;
}
.merit-item-con dt {
    margin: auto;
}
.merit-item-con dd img {
  margin: 0 auto 10px;
  width: 49%;
  max-width: 100%;
  height: auto;
  display: block;
}
.scenes {
    width: 100%;
    padding: 0 16px;
    margin: auto;
    max-width: 960px;
    box-sizing: border-box;
}
.scenes-section {}
.scenes-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 700px;
    margin: auto;
    list-style: none;
}
.scenes-item li {
    background-color: #ffffff;
    border: 1px solid #D5D5D5;
    border-radius: 10px;
    width: 50%;
    padding: 12px;
}
.scenes-item img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}
.scenes-item p {
    font-size: 14px;
    color: var(--black);
    text-align: center;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-ttl {
        font-size: 36px;
        margin: 0 auto 20px;
    }
    .merit {
        padding: 0 0 40px;
    }
    .merit-item-con {
        min-height: 140px;
    }
    .merit-items {
        gap: 10px;
        margin: 0 auto 10px;
    }
    .merit-item-con dl {
    padding: 16px;
    min-height: 170px;
    }
    .scenes {
    width: 100%;
    padding: 0;
    margin: auto;
    max-width: 960px;
    }
}


/* ==================== 料金 ==================== */
.aug26-price { line-height: 1.5; }
.aug26-price a { text-decoration: none; color: #0074AD; }

.tb-scheme-main-before__items {
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    gap: 1em;
}
.tb-scheme-main-before__item {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 4px;
    background: var(--color-bg-neutral-low, #F7F7F7);
}
.tb-scheme-main-before__item p {
    background:none;
    font-size: 12px;
}
.tb-scheme-main-before__item img {
    max-width: 100%;
    height: auto;
}
.tb-scheme-main-before__head {
    margin: 0 auto 10px;
    font-weight: 600;
}
.tb-scheme-main-before__list {
    margin: 0 auto 20px;
}
.tb-scheme-main-before__caution {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    margin: 0;
    color: var(--color-text-contextual-danger, #DF0101);
    font-size: var(--type-body-2);
    font-weight: 700;
    line-height: 130%;
}


/* =========================================
    レイアウト
    ========================================= */
.aug26-price_inner { max-width: 960px; margin: 0 auto; padding: 60px 16px; }

/* =========================================
    ヘッダーエリア
    ========================================= */
.aug26-price_header { text-align: center; margin-bottom: 25px; }
.aug26-price_title { font-size: 28px; color: var(--black); margin-bottom: 20px; font-weight: bold;}
.aug26-price_sub-title { font-size: 18px; font-weight: bold; margin-bottom: 3px; }
.aug26-price_sub-area { text-align: left; max-width: 342px; margin: 0px auto; }
.aug26-price_header_note { font-size: 11px; }

/* =========================================
    カードコンポーネント
    ========================================= */
.aug26-price_card { background-color: #fff; border-radius: 10px; padding: 15px 0; box-sizing: border-box; }
.aug26-price_card_head { display: flex; align-items: center; margin-bottom: 16px; }
.aug26-price_card_head .aug26-price_bar { display: block; width: 5px; height: 24px; background-color: #0F3A7A; margin-right: 12px; }
.aug26-price_card_head h3 { font-size: 18px; font-weight: bold; }
.aug26-price_example { text-align: center; font-size: 16px; margin-bottom: 12px; }
.aug26-price_red { color: #C00000; font-size: 24px; font-weight: bold; }

/* =========================================
    料金テーブル
    ========================================= */
.aug26-price_table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.aug26-price_table th, .aug26-price_table td { border: 1px solid #D1D1D1; padding: 12px 5px; text-align: center; font-size: 14px; }
.aug26-price_table thead th { background-color: #E1F5FE; font-weight: bold; }
.aug26-price_table tbody th { background-color: #F7F7F7; font-weight: bold; }
.aug26-price_table_note { text-align: right; font-size: 12px; margin-bottom: 16px; }

/* =========================================
    情報ボックス・注意書き
    ========================================= */
.aug26-price_info { background-color: #F8F8F8; padding: 15px; border-radius: 4px; font-size: 14px; }
.aug26-price_info_note { font-size: 12px; margin-top: 5px; margin-bottom: 15px; }
.tb-scheme-main-price__service-link { display: flex; justify-content: flex-end; align-items: center; gap: 4px; font-size: 13px; color: #0074AD; }
.tb-scheme-main-price__service-link svg { fill: #0074AD; }
.tb-scheme-main-price__caution { display: flex; padding: 12px; align-items: flex-start; gap: 8px; border-radius: 4px; background: #FEF0DD; color: #A35E04; font-size: 12px; line-height: 1.4; }
.tb-scheme-main-price__caution svg { flex-shrink: 0; fill: #A35E04; }

@media (min-width: 768px) {
    .aug26-price_title { font-size: 36px; }
    .aug26-price_sub-title { font-size: 20px; }
    .aug26-price_header_note { font-size: 12px; }
    .aug26-price_card_head h3 { font-size: 20px; }
    .aug26-price_card { max-width: 700px; padding: 0 25px; margin: 0px auto;}
}

/* =========================================
    アコーディオン
    ========================================= */
.accordion-wrap {
    width: 100%;
    /*max-width: 650px;*/
    margin-bottom: 30px;
}
.accordion-box {
    background-color: #F7F7F7;
    border-radius: 0.25rem;
    margin: 0 auto 10px;
}
.accordion-btn {
    cursor: pointer;
    border: none;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F7F7F7;
}
.accordion-btn span {
    color: #333333;
    flex: 1 1 0%;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}
.accordion-btn svg {
    width: 1.25rem;
}
.accordion-body p {
    font-size: 12px;
    background: #fff;
    width: 100%;
    margin: auto;
    padding: 10px;
    border: 10px solid #F7F7F7;
}
.accordion-body-midashi {
    font-size: 14px;
    text-align: center;
    color: #002896;
    font-weight: 700;
    margin-top: 10px;
}
.accordion-body-bg {
    background:#fff;
    padding:10px;
    width: 100%;
    border: 10px solid #F7F7F7;
    box-sizing: border-box;
}
.accordion-body-bg p {
    border:none;
}
.accordion-body-bg b {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: block;
    padding: 6px 0 10px;
}
.accordion-body-bg p {
  padding:0;
}
.accordion-body-bg p span {
    display:block;
    font-weight: 700;
    margin: 10px 0 4px;
    text-align: left;
}
.accordion-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.accordion-flex img {
    width: 37%;
}

/* ─── Accordion chevron rotation ────────────────────────────── */
.accordion-btn.open .chevron {
    transform: rotate(180deg);
    transition: 0.35s ease;
}
/* ─── Accordion body ─────────────────────────────────────────── */
.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.accordion-body.open {
    display: flex;
    flex-direction: column;
    margin: auto;
}
/* For simple text-only accordion bodies */
.accordion-body.open.block-display {
    display: block;
}

.accordion-body img {
    max-width: 100%;
    height: auto;
}
.img-center {
    margin: auto;
    display: block;
}
.text-red {
    color: #BF0000;
}


/* ==================== バナー ==================== */
 .aug26-banner {
    margin: 20px 16px 60px;
 }

 .aug26-banner img{
    max-width: 650px;
    display: block;
    margin: 0px auto;
 }


/* ==================== キャンペーン詳細 ==================== */
.aug26-campaignRule {
    margin: 35px 16px;
}
@media screen and (min-width: 768px) {
    .aug26-campaignRule {
        max-width: 960px;
        margin: 35px auto;
    }
}
.aug26-campaignRule_title {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 24px;
}

/* ==================== フローティングボタン (スクロール追従) ==================== */
/* フロート全体の枠組み */
.custom-float-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* 背景色（少し透過した黒） */
    padding: 10px 15px;
    z-index: 99; /* 最前面に表示 */
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 上部のテキスト */
.custom-float-wrapper .aug26-float-text {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

/* フォームのレイアウト */
.custom-float-wrapper .float-form {
    display: flex;
    width: 100%;
    max-width: 600px; /* PCなどで広がりすぎないように制限 */
    gap: 10px;
}

/* 入力欄の枠 */
.custom-float-wrapper .float-input-box {
    flex: 1;
}

/* 入力欄のデザイン */
.custom-float-wrapper .float-input {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px; /* スマホでズームされないサイズ */
    box-sizing: border-box;
}

/* ボタンの枠 */
.custom-float-wrapper .float-btn-box {
    width: 100px; /* ボタンの幅 */
}

/* 送信ボタンのデザイン */
.custom-float-wrapper .float-submit-btn {
    width: 100%;
    height: 44px;
    background-color: #BF0000; /* 元コードに合わせた赤色 */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.custom-float-wrapper .float-submit-btn:hover {
    opacity: 0.8;
}

/* スマートフォン向けの微調整 */
@media screen and (max-width: 768px) {
    .custom-float-wrapper {
        padding: 10px;
    }

    .custom-float-wrapper .aug26-float-text {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
}

/* ==================================================
   追従フロート検索バー（下からスライド表示 & PC横並び 強力版）
   ================================================== */

/* --- 1. 基本設定（スマホ・PC共通） --- */
#point5x-fixedbtn {
  /* HTMLのstyle="display:none"を打ち消して表示可能にする */
  display: block !important;
  
  /* 固定表示の位置設定 */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  
  /* アニメーション設定（隠しておく） */
  transition: transform 0.4s ease-out;
  transform: translateY(110%); /* 下に隠す */
}

/* --- 2. スライドアップ時の設定（JSでクラスがついた時） --- */
#point5x-fixedbtn.is-slide-up {
  transform: translateY(0);    /* 出現させる */
}

/* --- 3. PC表示（画面幅768px以上）のときだけ横並びにする --- */
@media screen and (min-width: 768px) {
  
  /* 親枠（外側の箱）の設定 */
  #point5x-fixedbtn {
    display: flex !important;           /* 強制的にFlexboxにする */
    flex-direction: row !important;     /* 強制的に横並びにする */
    justify-content: center !important; /* 中央寄せ */
    align-items: center !important;     /* 上下中央揃え */
    gap: 30px;                          /* テキストと検索窓の間隔 */
    padding: 15px 0 !important;         /* 上下の余白 */
  }

  /* 子要素1：テキスト部分の設定 */
  #point5x-fixedbtn .float-text {
    width: auto !important;   /* 横幅いっぱいになるのを防ぐ */
    margin: 0 !important;     /* 余計な余白を消す */
    padding: 0 !important;    /* 余計な余白を消す */
    font-weight: bold;        /* 太字にする */
  }

  .custom-float-wrapper .aug26-float-text {
    font-size: 18px;
  }
  
  /* 子要素1の中のspanタグ（念のため） */
  #point5x-fixedbtn .float-text span {
    display: inline-block !important; /* 改行させない */
  }

  /* 子要素2：検索窓エリアの設定 */
  #point5x-fixedbtn .cpnArea_detail {
    width: auto !important;   /* 横幅いっぱいになるのを防ぐ */
    margin: 0 !important;     /* 余計な余白を消す */
  }
  
  /* 検索フォーム自体の余白も消す */
  #point5x-fixedbtn form {
    margin: 0 !important;
  }
}

