/* アイテム準備シート */
.startBtn {
    width: 60%;
    margin: 5rem auto;
    background-color: #FF6200;
    color: #FFF;
    border-radius: 100px;
    font-weight: bold;
    text-align: center;
    font-size: 2.1rem;
    padding: 1.5rem 0;
    display: block;
    box-shadow: 2px 2px 5px #00000033;
}


.wl_wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 700px;
    margin: 0rem auto 0rem;
    padding: 3rem 0 5rem;
}

.wl_title {
    font-size: 2.3rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    color: #505050;
}

/* アイコンの光るエフェクト */
@keyframes glow {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(.9);
    }

    100% {
        filter: brightness(1);
    }
}

.wl_navi_item.started img {
    animation: glow 2s infinite;
}

.wl_navi_item.active img {
    filter: brightness(1.2);
}

/* チャット全体のレイアウト */
.wl_scroll_wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}


.wl_navi_item img {
    border-radius: 100%;
    width: 54px;
    height: 54px;
}

.navigation_container {
    display: flex;
    transition: transform 0.3s ease;
    align-items: end;
    width: 100%;
    padding: 2rem 0;
}

.wl_navi_item {
    flex: 0 0 25%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.wl_navi_item.visible {
    opacity: 1;
    pointer-events: auto;
}

.dot_connector {
    position: absolute;
    bottom: 25%;
    left: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 1;
}

/* ドットのスタイル */
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 8px;
    transition: background-color 0.3s ease;
}

.dot.progress {
    background-color: #FFA500;
}

.dot.active {
    background-color: #FF6B00;
}

.navigation_container .wl_navi_item:nth-child(2) .dot_connector {
    bottom: 23%;
}

.wl_content_scroll {
    flex: 1;
    padding: 20px;
    background: #FFFFFF;
    scroll-behavior: smooth;
    overflow-y: auto;
}

.wl_section {
    position: relative;
    padding-top: 8rem;
}

.wl_section::before {
    content: '';
    display: block;
    height: 8rem;
    margin-top: -8rem;
}

.wl_chatbot p {
    background: #F0F0F0;
    color: #333;
    padding: 12px 16px;
    border-radius: 20px;
    max-width: 75%;
    margin-bottom: 16px;
    margin-left: 10px;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wl_chatbot {
    display: flex;
    margin: 3rem 0 1.6rem;
    align-items: center;
}

.wl_chatbot img {
    width: 50px;
    height: 50px;
}

.wl_chat_answer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 80%;
    margin: 0 auto;
}

.wl_movie .wl_chat_answer button {
    padding: 0;
}

.wl_wel_item {
    width: 48%;

}

.wl_wel_button {
    width: 100% !important;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* 選択肢ボタン */
.wl_chat_answer button,
.wl_chat_answer label {
    display: block;
    width: 48%;
    padding: 16px;
    color: #333 !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.wl_movie .wl_chat_answer button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
}

.count-button {
    width: 30% !important;
    margin: 0 !important;
}

/* クリックされた要素のスタイル */
.wl_chat_answer button.selected,
.count-button.selected,
.wl_answer-item.selected {
    outline: 2px solid #FF6200;
    outline-offset: -2px;
    background-color: #FFFFFF;
}

/* チェックボックスとラジオの選択状態 */
.wl_chat_answer label.selected {
    outline: 2px solid #FF6200;
    outline-offset: -2px;
    background-color: #FFFFFF;
}

/* テーマ選択の選択状態 */
.wl_theme_image.selected {
    outline: 3px solid #FF6200;
    outline-offset: -2px;
    border-radius: 15px;
}

/* 回答メッセージ（右側） */
.summary {
    margin: 12px 0;
    display: flex;
    justify-content: end;
    flex-direction: column;
    max-width: 100%;
    text-align: center;
    align-items: end;
    padding-bottom: 6rem;
}

.summary p,
.wl_typing {
    /* display: inline-block; */
    background: #FF893F;
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 4px 10px;
    /* max-width: 90%; */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* テーマ選択のグリッド */
.wl_theme_list {
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    justify-content: center;
    margin: 0 auto;
    gap: 12px;
}

.wl_theme_item {
    width: 45%;
}

.wl_theme_btn,
.wl_chat_submit {
    display: block;
    width: 50%;
    max-width: 200px;
    background: #FF6B00;
    color: #fff;
    padding: 14px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 1rem auto 5rem;
}

.wl_chat_action {
    padding-bottom: 4rem;
}

/* 確認ボタン */
.confirm_button_wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem auto 0;
    padding-bottom: 5rem;
}

.back_button {
    width: 30%;
    background-color: #FFFFFF;
    color: #FF6200;
    border: 2px solid #FF6200;
    border-radius: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    padding: 14px;
}

.confirm_button,
.chat_button {
    width: 60%;
    padding: 14px;
    /* max-width: 550px; */
    background: #FF6B00;
    color: #fff;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 5rem;
}

.chat_button {
    width: 80%;
}

/* チェックボックスとラジオボタンのカスタマイズ */
.wl_section label {
    display: block;
    cursor: pointer;
}

/* スクロールバーのカスタマイズ */
.wl_content_scroll::-webkit-scrollbar {
    width: 6px;
}

.wl_content_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.wl_content_scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}


.wl_result_list {
    max-width: 700px;
    margin: 2rem auto;
    padding: 3rem 2rem;
}

.wl_result_title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.wl_result_section {
    box-shadow: 3px 2px 4px #00000025;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.wl_section-header {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wl_section_header.expanded {
    background-color: #FF9757;
}

.isBuy_color .wl_section_header.expanded {
    background-color: #ADADAD;
}


.expanded .wl_section_title {
    color: #FFFFFF;
}

.expanded .wl_toggle_icon {
    color: #FFFFFF;
}

.wl_section_header.collapsed {
    background-color: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #eeee;
}

.collapsed .wl_section_title {
    color: #333333;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wl_section-header .icon {
    font-size: 1.2rem;
}

.wl_section-header .wl_section-title {
    font-weight: 600;
}

.wl_section_content {
    border: 2px solid #FF9757;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background-color: white;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.wl_section_content.expanded {
    opacity: 1;
}

.isBuy_color .wl_section_content.expanded {
    border: 2px solid #ADADAD !important;
}


.wl_item {
    padding: 2rem;
}

.wl_item,
.wl_content_item {
    border-bottom: 1px dotted #FF620079;
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
}

.wl_section_content .wl_item:last-child {
    border-bottom: none;
    /* padding-bottom: 0; */
}

.confirm-button {
    width: 70%;
    margin: 3rem auto;
    background-color: #FF6200;
    color: #FFF;
    border-radius: 100px;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1rem 0;
    border: none;
    cursor: pointer;
    box-shadow: 2px 2px 5px #00000033;
    transition: all 0.3s ease;
}

.confirm-button:hover {
    background-color: #ff7a2a;
    transform: translateY(-2px);
}

.wl_section_header .icon img {
    border-radius: 100%;
    width: 55px;
    height: auto;
}

.wl_section_header .wl_bulk_icon {
    padding: .5rem 1.5rem;
    font-size: 1.5rem;
}

.wl_section_header.expanded .wl_bulk_icon {
    background: #FFFFFF;
    color: #FF9757;
}

.wl_section_title {
    width: 63%;
    padding-left: 3rem;
    font-size: 1.7rem;
    font-weight: bold;
}

.wl_section_header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #FFF;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.wl_toggle_icon {
    position: absolute;
    right: .5rem;
    transform: translate(-50%, -50%);
    top: 50%;
    font-weight: bold;
    font-size: 1.7rem;
    color: #FF9757;
}

.error {
    color: red;
}

.wl_chat_title {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #FF6200;
}

.wl_chat_title p {
    font-weight: normal;
    font-size: 1.4rem;
}

/* モーダルポップアップのスタイル */
.wl_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.wl_modal_content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.wl_modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #666;
}

.wl_modal_close:hover {
    background: #f5f5f5;
}

.wl_modal_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 2rem auto;
    text-align: center;
}

.wl_modal_image {
    width: 90%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
    margin: 0 auto;
}

.wl_modal_description {
    margin: 4rem auto;
    line-height: 1.6;
    text-align: center;
}

.wl_modal_description p {
    margin-bottom: 10px;
}

.wl_modal_movie_selection {
    margin-bottom: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.wl_movie_checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wl_movie_checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.wl_checkbox_text {
    font-size: 16px;
}

.wl_modal_button {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 15px;
    background: #FF6200;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.wl_modal_button:hover {
    background: #ff7621;
}

.wl_modal_button.secondary {
    background: #666;
    margin-top: 10px;
}

.wl_modal_button.secondary:hover {
    background: #555;
}

.wl_basic_modal .wl_modal_button {
    width: 45%;
    text-align: center;

}

.wl_team_button {
    background-color: #fff;
    border: 2px solid #ff7621;
    color: #ff7621;
}

.wl_team_button:hover {
    background: #ff7621 !important;
    color: #FFF !important;
}

.wl_team_summary .wl_content_link::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    border: transparent;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

button:hover,
button:active,
button:visited {
    color: #505050;
}

.wl_attention_txt {
    font-size: 1.2rem;
}

.wl_guest_count .wl_chat_button {
    width: 20%;
}

.wl_guest_count .wl_chat_button:last-child {
    width: 43%;
}

.wl_content_scroll::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.wl_wrapper.wl_start_bgc {
    padding: 3rem 1rem 5rem;
}


/* SP版スタイル */
@media screen and (max-width: 430px) {
    .wl_wrapper {
        margin: 0 auto;
        box-shadow: none;
        padding: 3rem 1rem 5rem;
    }

    .wl_wrapper.wl_start_bgc {
        padding: 3rem 0rem 5rem;
    }

    .wl_scroll_wrapper.wl_wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    .wl_timeline_cat {
        padding: 1.2rem 0 1.2rem 3rem;
    }

    .wl_timeline_cat p {
        height: 50px;
    }

    .wl_timeline_month {
        font-size: 1.4rem;
    }

    .wl_navi_item {
        flex: 0 0 32%;
    }

    .dot_connector {
        bottom: 32%;
    }

    .navigation_container {
        width: 100vw;
        padding-top: 0;
    }

    .navigation_container .wl_navi_item:nth-child(2) .dot_connector {
        bottom: 27.5%;
    }

    .wl_content_scroll {
        padding: 4rem 0;
    }

    .wl_scroll_wrapper {
        height: 100vh;
    }

    .wl_chatbot p {
        margin-bottom: 0;
        padding: 1rem 0.8rem;
        max-width: 80%;
        border-radius: 10px;
    }

    .wl_chatbot {
        margin-top: -2rem;
        padding-top: 6rem;
    }

    .wl_chat_answer {
        gap: 10px;
        width: 90%;
    }

    .wl_attention_txt {
        font-size: 1.1rem;
    }

    .dot {
        margin: 0 5px;
    }

    .wl_theme_list {
        padding: 0;
        gap: 10px;
    }

    .wl_theme_item {
        width: 48%;
    }

    .wl_guest .wl_chat_answer {
        width: 97%;
    }

    .count-button {
        width: 31% !important;
    }

    #wl_result_list_section .wl_result_title {
        margin-top: -6rem;
        padding-top: 6rem;
    }

    .wl_chat_title {
        margin-top: -13rem;
        padding-top: 13rem;
    }

    .wl_chat_title p {
        font-size: 1.3rem;
    }

    .wl_modal_content {
        padding: 1rem;
    }

    .wl_modal_description {
        margin: 2rem auto;
    }

    .wl_modal_image {
        width: 95%;
    }

    .wl_guest_count .wl_chat_button {
        width: 30%;
    }

    .wl_guest_count .wl_chat_button:last-child {
        width: 63.5%;
    }

    .wl_movie .wl_chat_answer,
    .wl_parents .wl_chat_answer {
        width: 97%;
    }

    .wl_result_list {
        padding: 0;
    }

    .wl_section_title {
        width: 55%;
        font-size: 1.4rem;
        padding-left: 2rem;
    }

    .wl_section_header .wl_bulk_icon {
        padding: .5rem .7rem;
        font-size: 1.2rem;
    }

}

@media screen and (max-width: 425px) {
    .wl_section_title {
        width: 45%;
    }
}

@media screen and (max-width: 375px) {
    .wl_section_header .wl_bulk_icon {
        font-size: 1rem;
    }
}





.wl_compare_title {
    text-align: center;
    font-weight: bold;
}

.wl_compare_title p {
    color: #767676;
    font-size: 1.8rem;
}

.wl_compare_title h2 {
    color: #FF6200;
    font-size: 3rem;
    background-color: #FFF0B3;
    font-weight: bold;
    display: inline-block;
}

.wl_compare_pointBox_txt {
    color: #767676;
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 5rem;
}

.wl_compare_pointBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wl_compare_point {
    width: 26%;
}

.wl_compare_savings {
    margin: 3rem auto 2rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}

.wl_compare_savings_txt {
    font-size: 2rem;
    color: #767676;
}

.wl_compare_savings_txt span:first-child {
    font-size: 4rem;
}

.wl_compare_savings_price {
    background: linear-gradient(180deg, transparent 0%, transparent 45%, #FFF0B3 45%, #FFF0B3 90%, transparent 90%, transparent 100%);
    display: inline-block;
    color: #767676;
    margin-top: 1rem;
}

.wl_compare_savings_price span:nth-child(1) {
    font-size: 3.8rem;
    color: #FF6200;
}

.wl_compare_savings_price span:nth-child(2) {
    font-size: 5rem;
    color: #FF6200;
}

.wl_compare_savings_price span {
    font-size: 2.3rem;
}

.wl_compare_container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.wl_compare_single_card {
    width: 48%;
    border: 1px solid #8B8B8B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-top: 2.5rem;
}

.wl_compare_bulk_card {
    width: 50%;
    border: 4px solid #FF6200;
    padding-bottom: 2rem;
    border-radius: 25px 25px 0 0;
}

.wl_compare_header_single {
    background-color: #767676;
    color: #FFFFFF;
    padding: 1.5rem 0.75rem;
    text-align: center;
    font-weight: bold;
}

.wl_compare_header_txt {
    font-size: 1.7rem;
}

.wl_compare_header_bulk {
    background-color: #FF6200;
    color: #FFFFFF;
    padding: 2.5rem 0.75rem;
    text-align: center;
    border-radius: 15px 15px 0 0;
    font-weight: bold;
}

.wl_compare_header_title {
    font-size: 2.5rem;
    font-weight: bold;
}

.wl_compare_header_price {
    font-size: 1.5rem;
    font-weight: bold;
}

.wl_compare_bulkContent {
    padding: 1rem;

}

.wl_compare_singleContent {
    padding: 1rem;
}

.wl_compare_single_price {
    color: #333;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
}

.wl_compare_bulk_price {
    color: #FF6200;
    font-weight: bold;
    text-align: center;
    font-size: 3rem;
}

.wl_compare_content_singlePrice {
    font-size: 4.5rem;
}

.wl_compare_content_bulkPrice {
    font-size: 4.5rem;
}

.wl_compare_inItem {
    text-align: center;
    font-weight: bold;
    color: #505050;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.wl_compare_subject_title {
    color: #FF6200;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.wl_compare_noApplicable_title {
    color: #505050;
    font-weight: bold;
    font-size: 1.5rem;
    /* margin: 1rem auto; */
    text-align: center;
}

.wl_compare_item_list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.wl_compare_item_list.is_subject_bulk {
    gap: 0;
}

.wl_compare_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-bottom: 1px dashed #767676;
}

.wl_compare_item:last-child {
    border: none;
}

.wl_compare_singleName,
.wl_compare_singlePrice,
.wl_compare_bulkName,
.wl_compare_bulkPrice {
    font-size: 1.5rem;
    font-weight: 500;
    color: #454545;
}

.wl_compare_divider {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.wl_compare_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.wl_compare_plus_mark {
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
    /* margin: 1rem 0; */
}

.wl_compare_btn_single {
    display: block;
    width: 90%;
    margin: 3rem auto 0;
    padding: 1rem;
    border-radius: 100px;
    border: 2px solid #f97316;
    color: #f97316;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.wl_compare_btn_bulk {
    display: block;
    width: 60%;
    margin: 3rem auto 0;
    padding: 1.2rem;
    border-radius: 100px;
    background-color: #f97316;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.wl_compare_item_list.is_subject_bulk li {
    padding: .8rem;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.wl_compare_item_list.is_subject_bulk li:last-child {
    border-bottom: none;
}

/* まとめ買い対象アイテム（isBulkApplicable: true） */
.wl_compare_item_list.is_subject_bulk li {
    background-color: #ff8336;
}

.wl_compare_item_list.is_subject_bulk li .wl_compare_bulkName {
    color: #FFFFFF;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

/* まとめ買い対象外アイテム（isBulkApplicable: false） */
.wl_compare_item_list.is_subject_bulk li.not-applicable {
    background-color: #C3C3C3;
}

.wl_compare_wrapper {
    max-width: 700px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 3rem auto 5rem;
}

.wl_compare_total span:last-child {
    font-size: 1.8rem;
}

/* 質問のフェードイン＋スライドイン */
.wl_chatbot p,
.wl_chatbot:not(.wl_guest),
.wl_answer:not(.wl_guest) {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlide .5s forwards ease-out;
}

.summary {
    opacity: 0;
    transform: translateY(5px);
    animation: popup 1.5s forwards ease-out;
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 回答時のローディングアニメーション */
.wl_typing {
    display: flex;
    justify-content: space-between;
    gap: 3px;
}

.wl_typing span {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #FFF;
    border-radius: 50%;
    animation: typingBlink 1.5s infinite ease-in-out;
}

.wl_typing span:nth-child(1) {
    animation-delay: 0s;
}

.wl_typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.wl_typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBlink {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.wl_chat_answer button {
    transition: transform 0.2s ease, background-color 0.3s;
}

.wl_chat_answer button:active {
    transform: scale(0.95);
}

@media screen and (max-width: 430px) {
    .wl_compare_title p {
        font-size: 1.8rem;
    }

    .wl_compare_title h2 {
        font-size: 2.5rem;
    }

    .wl_compare_pointBox_txt {
        font-size: 2.5rem;
        margin-top: 5rem;
    }

    .wl_compare_point {
        width: 33%;
    }

    .wl_compare_savings {
        margin-top: 2rem;
    }

    .wl_compare_savings_txt {
        font-size: 1.5rem;
    }

    .wl_compare_savings_txt span {
        font-size: 2rem;
    }

    .wl_compare_savings_price span:nth-child(1) {
        font-size: 2.8rem;
    }

    .wl_compare_savings_price span:nth-child(2) {
        font-size: 4rem;
    }

    .wl_compare_savings_price span:nth-child(3) {
        font-size: 2rem;
    }

    .wl_compare_price_card {
        width: 48%;
    }

    .wl_compare_container {
        gap: 0.5rem;
    }

    .wl_compare_header_txt {
        font-size: 1.5rem;
    }

    .wl_compare_header_title {
        font-size: 2.3rem;
    }

    .wl_compare_content_singlePrice {
        font-size: 3rem;
    }

    .wl_compare_single_price {
        font-size: 2rem;
    }

    .wl_compare_bulk_price {
        font-size: 2.3rem;
    }

    .wl_compare_content_bulkPrice {
        font-size: 3rem;
    }

    .wl_compare_subject_title {
        font-size: 1.6rem;
    }

    .wl_compare_noApplicable_title {
        font-size: 1.3rem;
    }

    .wl_compare_item_list.is_subject_bulk li .wl_compare_bulkName {
        font-size: 1.1rem;
    }

    .wl_compare_singleName,
    .wl_compare_bulkName {
        font-size: 1.3rem;
    }

    .wl_compare_singleName {
        width: 100%;
    }

    .wl_compare_singlePrice {
        width: 100%;
        text-align: right;
    }
}



/* マイページ リストスタイル */
.wl_isbuy_list {
    color: #505050;
    width: 35%;
    padding-left: 2rem;
}

.wl_isbuy_list_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    width: 100%;
}

.wl_isbuy_list_item {
    padding: 0 0 0.5rem 0.5rem;
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.wl_progress {
    position: relative;
    width: 150px;
    height: 150px;
}

.wl_progress_wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* align-items: center; */
    border: 2px solid #FF9757;
    border-radius: 8px;
    padding: 1rem;
    padding-top: 4rem;
}

.progress_circle {
    transform: rotate(-90deg);
}

.progress_circle_background {
    fill: none;
    stroke: #E5E7EB;
    stroke-width: 8;
}

.progress_circle_progress {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
}

.progress_fraction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
}

.wl_content_item .wl_content_link {
    padding: 2rem 0 2rem 2rem;
    position: relative;
    display: block;
}

.wl_content_link::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    border: transparent;
    border-top: 2px solid #ff6200;
    border-right: 2px solid #ff6200;
}

.wl_content_mediumTtl {
    padding: 2rem 0 2rem 5.5rem;
    position: relative;
}

.wl_content_mediumTtl::after {
    position: absolute;
    content: url(//image.piary.jp/uploads/wedding_list/mylist_check.svg);
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}

.wl_content_productBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.wl_content_image {
    width: 30%;
}

.wl_content_productName {
    width: 65%;
    padding-top: 1rem;
}

.wl_edit_btn {
    color: #298af7;
}

.slide-enter-active,
.slide-leave-active {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide-enter,
.slide-leave-to {
    max-height: 0 !important;
    opacity: 0;
}

.slide-enter-to,
.slide-leave {
    opacity: 1;
}

.wl_bulk_icon {
    /* CPN時のみまとめ買いセット露出のため通常時は非表示 */
    display: none;
    background: linear-gradient(to right, #FF9757 0%, #FFDA8B 100%);
    color: #FFF;
    padding: .5rem .7rem;
    border-radius: 100px;
    font-weight: bold;
    font-size: 1.2rem;
}

.wl_bulk_triangle {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 3rem auto;
}

.wl_bulk_triangle span {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #FF6200;
    margin: 1rem auto;
}

.wl_result_list_title {
    font-weight: bold;
    font-size: 1.7rem;
    padding: 1.5rem;
    border-bottom: 1px solid #C6C1C1;
    margin-bottom: 3rem;
}

.wl_result_list_sec {
    border-top: 5px solid #FF9757;
    margin: 5rem 1rem;
}

.wl_result_list_sec.isBuy_color {
    border-top: 5px solid #ADADAD;
}

.progress_loading {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress_circle_placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f5f5f5;
}

.bulk_buy_section {
    padding: .75rem 0;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    background-color: #FF9757;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
}

.bulk_buy_section .wl_content_link {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 55px;
    align-items: center;
}

.bulk_buy_section .wl_content_link::after {
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}

@media screen and (max-width: 425px) {
    .wl_isbuy_list {
        width: 48%;
        padding: 0;
    }

    .wl_isbuy_list_item {
        width: 100%;
    }

    .wl_progress {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .wl_progress_wrapper {
        padding: 2rem 1rem;
    }
}


/* ナビゲーション */

.navigation_container {
    padding: 10px;
}

.navigation_container .wl_navi_item .wl_navi_item_inner {
    display: flex;
    width: 100%;
}

.navigation_container .wl_navi_item .wl_navi_item_inner .wl_navi_icon {
    width: calc(100% - 65%);
    display: flex;
    flex-wrap: wrap;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_icon img {
    margin: 0 auto;
    display: block;
}

.wl_navi_item img {
    width: 70px;
    height: 70px;
}

.navigation_container .wl_navi_item .wl_navi_item_inner .wl_navi_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: calc(100% - 25%);
    margin-top: 25px;
}

.navigation_container .wl_navi_item.completed .wl_navi_item_inner .wl_navi_arrow .dot {
    background-color: #FF6B00;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_icon img,
.navigation_container .wl_navi_item.completed .wl_navi_item_inner .wl_navi_icon img {
    border: 3px solid #FF6B00;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot {
    background-color: #FF6B00;
    animation: typingBlink 1.5s infinite ease-in-out;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(1) {
    animation-delay: 0s;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(3) {
    animation-delay: 0.4s;
}


.wl_answer-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wl_answer-container::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 5px;
}

.wl_answer-container::-webkit-scrollbar {
    height: 10px;
}

.wl_answer-wrapper {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.wl_answer-item {
    flex: 0 0 auto;
    width: 45%;
    background: #FFF;
    color: #404040;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #cccccc80;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    white-space: normal;
    -webkit-appearance: none;
}

.wl_answer_title {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 2rem auto;
    text-align: center;
    height: 25px;
    display: flex;
    align-items: center;
    -webkit-appearance: none;
}

.wl_answer-item p {
    line-height: 1.5;
    margin: 0 !important;
    padding: 0 10px 10px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.wl_answer-wrapper .wl_answer-item:last-child {
    justify-content: center;
}

.wl_answer-wrapper .wl_answer-item:last-child .wl_answer_title {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    .navigation_container .wl_navi_item .wl_navi_item_inner {
        display: flex;
        width: 100%;
    }

    .navigation_container .wl_navi_item .wl_navi_item_inner .wl_navi_icon {
        width: calc(100% - 20%);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_icon img {
        margin: 0 auto;
        display: block;
    }

    .wl_navi_item img {
        width: 70px;
        height: 70px;
    }

    .navigation_container .wl_navi_item .wl_navi_item_inner .wl_navi_arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        width: calc(100% - 50%);
        margin-top: 40px;
    }

    .navigation_container .wl_navi_item.completed .wl_navi_item_inner .wl_navi_arrow .dot {
        background-color: #FF6B00;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_icon img,
    .navigation_container .wl_navi_item.completed .wl_navi_item_inner .wl_navi_icon img {
        border: 3px solid #FF6B00;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot {
        background-color: #FF6B00;
        animation: typingBlink 1.5s infinite ease-in-out;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(1) {
        animation-delay: 0s;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .navigation_container .wl_navi_item.current .wl_navi_item_inner .wl_navi_arrow .dot:nth-child(3) {
        animation-delay: 0.4s;
    }

    .wl_content_item .wl_content_link {
        font-size: 1.4rem;
    }
}


/* LP */

.dots {
    text-emphasis: filled;
    -webkit-text-emphasis: filled;
    color: #ff6200;
}

.wl_clr--orange {
    color: #ff6200 !important;
}

.scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.scroll-wrapper {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}

.scroll-slide {
    flex: 0 0 auto;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.wl_flow_section .scroll-slide img {
    height: 600px;
}

.wl_flow_section {
    background: #FFF8EE;
    padding: 4rem 2rem;
}

.wl_matome {
    margin: 3rem auto 2rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}

.wl_matome_txt {
    font-size: 3rem;
    color: #767676;
}

.wl_matome_price {
    background: linear-gradient(180deg, transparent -10%, transparent 45%, #FFF0B3 45%, #FFF0B3 90%, transparent 90%, transparent 100%);
    margin-top: 1rem;
    padding-bottom: 1rem;
    width: 60%;
    margin: 0 auto;
}

.wl_matome_price_txt {
    color: #767676;
}

.wl_matome_price_txt span:nth-child(1) {
    font-size: 2rem;
    color: #767676;
    width: 5%;
    margin-right: 1rem;
}

.wl_matome_price_txt span:nth-child(2) {
    font-size: 7rem;
    color: #FF6200;
}

.wl_matome_price span:nth-child(3) {
    font-size: 3rem;
}

.wl_matome_price span span {
    font-size: 3rem !important;
}

.wl_matome_title {
    font-size: 3rem;
    color: #767676;
}

.wl_flow_section .swiper-slide {
    max-width: 370px;
}

.wl_team_wedding_clr {
    color: #FF4D6F;
}

.wl_team_summary {
    background: url(//image.piary.jp/uploads/wedding_list/team_wedding_bg.webp) no-repeat center center;
    background-size: cover;
    padding: 4rem 2rem;
    border-radius: 13px;
}

.wl_team_summary_txt {
    font-size: 2.5rem;
    position: relative;
}

.wl_team_summary_txt::before,
.wl_team_summary_txt::after {
    content: '';
    position: absolute;
    background: url(//image.piary.jp/uploads/wedding_list/team_wedding_effect.webp) no-repeat center center;
    background-size: contain;
    width: 20%;
    height: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wl_team_summary_txt::before {
    left: 15%;
}

.wl_team_summary_txt::after {
    right: -1.5rem;
}

.wl_team_summary_chatTxt {
    font-size: 1.9rem;
}

.wl_team_summary_txtBox {
    background: #FFF;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .wl_matome_title {
        font-size: 2rem;
    }

    .wl_matome_txt {
        font-size: 2rem;
    }

    .wl_matome_price {
        width: 85%;
    }

    .wl_matome_price_txt span:nth-child(1) {
        font-size: 1.5rem;
    }

    .wl_matome_price_txt span:nth-child(2) {
        font-size: 4rem;
    }

    .wl_matome_price span:nth-child(3) {
        font-size: 2rem;
    }

    .wl_matome_price span span {
        font-size: 2.5rem !important;
    }

    .wl_flow_section .scroll-slide img {
        height: 560px;
    }

    .wl_team_summary_chatTxt {
        font-size: 1.5rem;
    }

    .wl_team_summary_text {
        font-size: 1.1rem;
    }

    .wl_team_summary {
        width: 95%;
        margin: 0 auto;
    }

    .wl_team_summary_txtBox {
        width: 90%;
    }

    .wl_team_summary_txt::before {
        left: 5%;
    }

    .wl_team_summary_txt::after {
        right: -3.5rem;
    }

    .wl_team_summary_txt {
        font-size: 1.9rem;
        position: relative;
        font-weight: bold;
    }

    .wl_team_summary .startBtn,
    .wl_start_bgc .startBtn {
        width: 90%;
        font-size: 1.8rem;
    }

    .wl_answer-item {
        flex: 0 0 auto;
        width: 65% !important;
        background: white;
        border-radius: 10px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 10px;
        cursor: pointer;
        transition: transform 0.2s, background 0.2s;
        border: 1px solid #cccccc80;
    }

    .wl_answer-item p {
        padding: 0;
        font-size: 1.4rem;
    }

    .wl_answer_title {
        font-size: 1.4rem;
    }
}

/* button 非活性 */
.confirm_button_wrapper .chat_button:disabled {
    background: #cccccc;
}


/* リセットエラーボタン */
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: #FF9757;
}

.btn-danger {
    color: #404040;
}

@media screen and (min-width: 768px) {
    .wl_top_image {
        width: 90%;
        margin: 0 auto;
    }
}


.wl_navi_content {
    position: fixed;
    z-index: 10;
    width: 95%;
    max-width: 700px;
    background: #FFF;

}


/*  1.5次リリース  LP画面改修 */

.wl_top_negative {
    background-color: #A4C2D9;
    padding: 3rem 0 21rem;
}

.wl_negative_check {
    background-color: #FFFDF1;
}

.wl_negative_check {
    border-radius: 10px;
    width: 70%;
    margin: 0 auto;
    padding: 2.5rem;
}

.wl_negative_check li {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px dashed #707070;
    padding: 1.5rem 0;
}

.wl_negative_check li p {
    font-size: 1.8rem;
}

.wl_negative_check::after {
    content: '';
    position: absolute;
    background: url(//image.piary.jp/uploads/wedding_list/negative_people.webp) no-repeat center center;
    background-size: contain;
    bottom: -71%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 350px;
}

.wl_positive_bg {
    background-color: #FF5C11;
    padding-top: 3rem;
    margin-bottom: 10rem;
}

.wl_positive_bg::after {
    content: '';
    position: absolute;
    bottom: -95px;
    left: 50%;
    width: 110%;
    max-width: 700px;
    transform: translateX(-50%);
    clip-path: polygon(48% 50%, -2% 0%, 100% 2%);
    height: 100%;
    background-color: #FF5C11;
}

.wl_top_positive_cnt {
    border: 2px solid #FF5C11;
    border-radius: 10px;
    padding: 0 4rem 2.5rem;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 4rem;
}

.wl_positive_flag {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: start;
}

.wl_positive_flag p {
    padding-top: 2.5rem;
    font-size: 2rem;
}

.wl_positive_flag_image {
    width: 85px;
    height: 90px;
}

.wl_howto_title {
    background: #FF5C11;
    color: #FFF;
    padding: 1.5rem 0;
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.wl_howto_item {
    font-size: 1.5rem;
}

.step-list {
    display: flex;
    justify-content: center;
    gap: 5rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2.4rem;
}

.step-list::after {
    content: "";
    position: absolute;
    top: 40px;
    width: 100%;
    max-width: 330px;
    left: 50%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #f26522, #f26522 4px, transparent 4px, transparent 8px);
    z-index: 0;
    transform: translate(-50%, -50%);
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #EBEBEB;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-label-top {
    font-size: 1.5rem;
    line-height: 1;
    color: #707070;
}

.step-label-number {
    font-size: 2.1rem;
    line-height: 1;
    font-weight: bold;
    color: #707070;
}

.step-description {
    margin-top: 1.7rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #707070;
}

/* アクティブ時のスタイル */
.step-item.active .step-circle {
    background-color: #FF5C11;
    transform: scale(1.4);
}

.step-item.active .step-label-top,
.step-item.active .step-label-number {
    color: #fff;
}

.swiper-controller {
    display: flex;
    position: absolute;
    gap: 1.6rem;
    align-items: center;
    width: 80%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 1rem auto 0;
}

@media screen and (max-width: 768px) {
    .wl_negative_check {
        width: 90%;
    }

    .wl_positive_flag {
        gap: 2rem;
    }

    .wl_positive_flag_image {
        width: 65px;
        height: 70px;
    }

    .wl_negative_check li p {
        font-size: 1.5rem;
    }

    .wl_negative_check::after {
        bottom: -66%;
        max-width: 250px;
    }

    .wl_positive_bg::after {
        clip-path: polygon(48% 50%, -2% 0%, 100% 0%);
    }


    .wl_top_negative {
        padding: 3rem 0 14.3rem;
    }

    .startBtn {
        width: 85%;
        font-size: 1.8rem;
    }

    .wl_top_positive_cnt {
        padding: 0 2rem 2.5rem;
        width: 90%;
    }

    .wl_positive_flag p {
        font-size: 1.5rem;
    }

    .wl_howto_title {
        font-size: 2.5rem;
    }

    .step-list {
        gap: 3rem;
    }

    .step-circle {
        width: 55px;
        height: 55px;
    }

    .step-label-top {
        font-size: 1.3rem;
    }

    .step-label-number {
        font-size: 1.8rem;
    }

    .step-list::after {
        top: 30px;
        width: 100%;
        min-width: 310px;
    }

    .swiper-controller {
        width: 100%;
        left: 0px;
        top: 45%;
    }
}

@media screen and (max-width: 375px) {
    .wl_negative_check li p {
        font-size: 1.3rem;
    }
}