@charset "UTF-8";

/* =========================================
   フォント読み込み (Noto Sans JP)
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* =========================================
   リセット & 基本設定
========================================= */
body {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像下の隙間消し */
}

/* =========================================
   LP全体レイアウト
========================================= */

/* LP全体ラッパー */
.l-lp-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #fff;
    /* ★フォント指定をNoto Sans JPに変更 */
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

/* コンテンツ幅制限コンテナ */
.l-lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem; /* 左右20px */
    box-sizing: border-box;
}

/* 画像共通 */
.p-lp-img {
    width: 100%;
    height: auto;
    display: block;
}

/* セクション共通設定
   全てのセクションに上下50pxの余白を強制適用
*/
section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 0; 
}

/* ヒーローエリアだけは画像なので余白なしにリセット */
.p-lp-hero {
    padding-bottom: 0;
}

/* =========================================
   パーツ（見出し・ボタンなど）
========================================= */

/* 見出し */
.p-lp-section-title {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    color: #0097B2;
    margin-bottom: 2.4px;
    padding: 8px 0;
}
.p-lp-section-title span {
    border-top: 1px solid #afa9a9;
    border-bottom: 1px solid #afa9a9;
    background-color: #f4f6f7;
    padding: 16px 3.2rem;
    display: block;
    width: 82%;
    margin: auto;
}

/* sectionリード文 */
.p-lp-section-lead {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* ボタン */
.p-lp-btn {
    display: block;
    width: 40%;
    max-width: 40%;
    margin: 56px auto 0;
    padding: 32px 2rem;
    background-color: #FF000A; 
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: opacity 0.3s;
    /* ここからが“押せる感” */
    box-shadow:
        0 6px 0 rgba(180, 0, 0, 0.9),   /* 下の影（台） */
        0 8px 14px rgba(0, 0, 0, 0.15); /* ふわっと影 */
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        opacity 0.3s;
}
/* hover：少し浮く */
.p-lp-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 rgba(180, 0, 0, 0.9),
        0 12px 18px rgba(0, 0, 0, 0.18);
}
.p-lp-btn:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 rgba(180, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.12);
}
/* フォーカス（キーボード操作時） */
.p-lp-btn:focus-visible {
    outline: 3px solid rgba(255, 0, 10, 0.4);
    outline-offset: 4px;
}

/* =========================================
   各セクションごとの個別指定
========================================= */

/* 検索エリア */
.wrapper{
    background-color: #e3f5f7;
}

.p-lp-search {
    text-align: center;
    border-radius: 8px;
}
.p-lp-search__box-dummy {
    background-color: #ccc;
    height: 120px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
}

/* 3つの理由 */
.p-lp-texture-wrapper{
    background: #fff url(/wp_new/wp-content/uploads/lp_2025/images/noise.png) repeat;
}
.p-lp-reason {
    background: none;
    /*background-color: #ffffff; 
    background-image: url('../images/noise.png'); 
    background-repeat: repeat; */
}
.p-lp-reason__list {
    display: flex;
    justify-content: space-evenly;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-lp-reason__item {
    width: 24%;
    text-align: center;
}
.p-lp-reason__circle {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    background-color: #0097B2;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

/* ラインナップ (全幅背景) */
.p-lp-full-section {
    position: relative;
    background-color: #cff0f5; 
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.border-radius_r {
    border-radius: 0 30% 0 0;
}
.p-lp-lineup__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}
.p-lp-lineup__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
}
.p-lp-lineup__item {
    /* 必要ならカードスタイルをここに記述 */
}
.p-lp-lineup__item__dtlbox__wrap{
   background-color: #f8f9fb;
   padding-bottom: 16px;
}
.p-lp-lineup__item__dtlbox {
    list-style: none;
    padding: 1rem;
    border-top: 1px #afa9a9 dotted;
}
.p-lp-lineup__item__dtl {
    display: flex;
    align-items: center;
    color: #FF000A;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.5;
}
.p-lp-lineup__item__dtl .time {
    display: inline-block;
    background-color: #ef999c;
    padding: 4px .5rem;
    border-radius: 5px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: .5rem;
    text-align: center;
    width: 29%;
    margin-right: 1.6rem;
}
.p-lp-lineup__item__dtl .price-num{
    font-family: "Arial Black", "Arial", sans-serif;
    letter-spacing: -0.05em;
    font-size: 3.2rem;
}
.price-num_small{
    font-size: 1.6rem;
    display: inline-block;
    margin-left: .5rem;
    letter-spacing: 1px;
}
.p-lp-lineup__item__tax {
    font-size: 1.2rem;
    margin: 0;
    text-align: right;
}
.p-lp-lineup__name {
    font-weight: 700;
    background-color: #eb545a;
    color: #fff;
    display: inline-block;
    padding: 4px 1rem;
    position: absolute;
}
.p-lp-lineup__price {
    color: #FF000A;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ネットワーク */
.p-lp-area {
    /* 背景はラッパー側で指定するので透明に */
}
.p-lp-area-note {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 56px;
}
.p-lp-area-note__catch {
    font-size: 2.4rem;
    font-weight: 700;
}
.p-lp-area-note p:last-child{
    margin-top: 24px;
}
/* ご利用の流れ */
.p-lp-flow{
    background-color: #f6fcfe;
    border-radius: 0 0 30% 0;
    border: 1px solid #ecfafc;
}
.p-lp-flow__list {
    display: flex;
    justify-content: space-between;
    gap: 6.0rem;
}
.p-lp-flow__item {
    flex: 1;
    text-align: center;
}

/* お客様の声 */
.p-lp-voice__list {
    display: flex;
    justify-content: space-between;
    gap: 3.3rem;
}
.p-lp-voice__item {
    flex: 1;
    background: #F4FCFD; /* 明るい背景色 */
    padding: 24px 1.6rem;
    border-radius: 8px;
    text-align: center;

    /*display: flex;
    flex-direction: column;*/
}
.p-lp-voice__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 10px;
}
.p-lp-voice__name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}
.p-lp-voice__comment {
    font-size: 1.6rem;
    text-align: left;
    margin-top: auto; /* 必要に応じて下揃え調整 */
}

/* よくある質問 (全幅背景) */
.p-lp-faq-section {
    border-radius: 25% 0 0 0;
    position: relative;
    background-color: #cff0f5; /* 明るい背景色 */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.p-lp-faq__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 1.25rem;
    box-sizing: border-box;
}
.p-lp-faq__item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}
.p-lp-faq__question {
    padding: 1.25rem;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: default;
    position: relative;
    display: flex;
    align-items: center;
}
.p-lp-faq__icon-q {
    background: #0097B2;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 2rem;
}
.p-lp-faq__answer {
    padding: 1.6rem;
    border-top: 1px solid #eee;
    font-size: 1.6rem;
    display: block;
}
.p-lp-faq__answer span {
    color: #FF000A;
}

/* ★★★ 新規追加：ネットワークエリアの全面背景 ★★★ */
.p-lp-area-wrapper {
    width: 100%;
    /* 街並みのイラスト指定 */
    background-image: url('../images/area_bg.png');
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: contain;
}
/* 理由・ラインナップ・フロー・FAQなどの白い箱 */
.p-lp-lineup__item,
.p-lp-faq__item,
.p-lp-voice__item {
    box-shadow: 0 10px 25px rgba(0, 151, 178, 0.15) !important;
    border: 1px solid rgba(0, 151, 178, 0.1);
}

/* ★★★ ふわっと浮き出るアニメーション設定（ゆったり版） ★★★ */
.js-fade-up {
    opacity: 0;
    transform: translateY(40px);
    /* 時間を 1.5s に延ばして、よりゆっくりふわっとさせる */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
/* このクラスがつくと見えるようになる */
.js-fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}
/* 時間差の設定：間隔を広げて「ひとつづつ」感を出す */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 1.0s; }

.sp{
    display: none!important;
}
/* =========================================
   スマホ対応 (Max-Width: 768px)
========================================= */
@media screen and (max-width: 768px) {
    section{
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 1.6rem;
    }
    .p-lp-btn{
        width: 80%;
        max-width: initial;
        padding: 24px 2rem;
        margin: 40px auto 0;
        font-size: 1.5rem;
    }
    .p-lp-hero{
        margin-bottom: 24px;
        padding-top: 80px;
    }
    .p-lp-section-title {
        font-size: 2.2rem;
    }
    .p-lp-section-title span{
        width: 100%;
    }
    .p-lp-section-lead{
        font-size: 1.6rem;
    }
    /* フォーム*/
    .p-lp-search{
        text-align: left;
    }

    /* 3つの理由：1列 */
    .p-lp-reason__list {
        display: block;
    }
    .p-lp-reason__item {
        width: 70%;
        margin: 40px auto;
    }
    .p-lp-reason__item:last-child {
        margin-bottom: 0;
    }

    /* ラインナップ：2列 */
    .border-radius_r{
        border-radius: 0 100px 0 0;
    }
    .p-lp-lineup__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem .8rem;
    }
    .p-lp-lineup__item__dtlbox__wrap{
        padding-bottom: 16px;
    }
    .p-lp-lineup__item__dtl{
        display: block;
        font-size: 2.4rem;
        text-align: right;
    }
    .p-lp-lineup__item__dtl .time{
        display: block;
        width: 39%;
        font-size: 1.2rem;
    }
    .p-lp-lineup__item__dtl .price-num{
        display: block;
        font-size: 3.2rem;
        text-align: right;
    }
    /* 広がるネットワーク */
    .p-lp-area-note__catch{
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    /* ご利用の流れ：1列 */
    .p-lp-flow{
        border-radius: 0 0 100px 0;
    }
    .p-lp-flow__list {
        display: block;
        width: 70%;
        margin: auto;
    }
    .p-lp-flow__item {
        margin-bottom: 40px;

    }
    .p-lp-flow__item:last-child {
        margin-bottom: 0;
    }

    /* お客様の声：2列 */
    .p-lp-voice__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    .p-lp-voice__item {
        padding: 0.9375rem 0.625rem;
    }
    .p-lp-voice__name,.p-lp-voice__comment {
        font-size: 1.2rem;
    }
    .p-lp-voice__comment {
        font-size: 1.6rem;
    }
    /* FAQ：アコーディオン */
    .p-lp-faq-section{
        border-radius: 100px 0 0 0; /* ★セミコロン抜け修正済み */
    }
    .p-lp-faq__question {
        cursor: pointer;
        padding-right: 3.125rem;
        font-size: 1.6rem;
    }
    .p-lp-faq__icon-q{
        font-size: 1.2rem;
        line-height: 24px;
        width: 25px;
        height: 25px;
    }
    .p-lp-faq__question::after {
        content: "+";
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        color: #0097B2;
        line-height: 1;
        font-family: monospace;
    }
    .p-lp-faq__question.is-open::after {
        content: "-";
        font-size: 2.2rem;
        top: 48%;
    }
    .p-lp-faq__answer {
        display: none;
    }
    .sp{
        display: block!important;
    }   
}





/*----------------------------------------------------------------------------------------------*/
/*------------------------ここから　検索フォームstyle ----------------------------------------*/
/*----------------------------------------------------------------------------------------------*/


.p-search-box {
    background-color: #f6fcfe;
    padding: 30px 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-width: 960px;
    margin: 56px auto 40px;
}
.p-search-box h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}
.p-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.p-search-item {
    flex: 1;
    min-width: 200px;
}
.p-search-item dt {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}
.p-search-item dd { margin: 0; }

/* 入力エリア共通設定 */
.p-search-box input[type="text"],
.p-search-box select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6rem;
    background-color: #fff;
    box-sizing: border-box;
    height: 46px;
    vertical-align: middle;
}

/* ▼ プルダウン（矢印アイコン） */
.p-search-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 15px; /* 右に矢印スペース */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center; /* 矢印は右のまま */
    background-size: 16px;
    cursor: pointer;
}
.p-search-box select::-ms-expand { display: none; }

/* ▼▼ カレンダーアイコン（左側に移動！） */
.p-search-box input.cal-dep,
.p-search-box input.cal-arv {
    padding: 10px 10px 10px 40px; /* 左にアイコンスペースを確保 */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 10px center; /* アイコンを左へ！ */
    background-size: 20px;
    cursor: pointer;
}

.p-search-date-group {
    display: flex;
    gap: 10px;
}
.p-search-date-group input { flex: 2; }
.p-search-date-group select { flex: 1; }

.p-search-btn-area {
    text-align: center;
    margin-top: 20px;
}
.p-search-btn {
    background-color: #e60012;
    color: #fff;
    border: none;
    padding: 15px 6rem;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
}
.p-search-btn:hover {
    opacity: 0.8;
    background-color: #cc0010;
}

/* カレンダーが他の要素の下に隠れないようにする */
.datepicker { z-index: 10000 !important; }

@media screen and (max-width: 768px) {
    .p-search-row { flex-direction: column; gap: 15px; }
}
