/** Shopify CDN: Minification failed

Line 325:20 Unterminated string token

**/
/*****************************************
アンケートページ共通
*****************************************/

.required {
    padding: 3px 0;
    background: var(--color--red);
    color: #fff;
    border-radius: 3px;
    font-size: 1.2rem;
    display: inline-block;
    margin-left: 6px;
    letter-spacing: 0.1rem;
    line-height: 1;
    width: 37px;
    height: 18px;
    text-align: center;
    vertical-align: baseline;
}

.error select,
.edit .error .radio_btn_text::before,
.edit .error textarea {
    border-color: var(--color--red);
}

.edit .check-box {
    appearance: none;
    position: relative;
}

.edit .check .edit_title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px
}

.edit .check .edit_title::before {
    display: block;
    border: 1px solid #707070;
    background: #fff;
    content: '';
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.edit .check.error .edit_title::before {
    display: block;
    border: 1px solid var(--color--red);
    background: #fff;
    content: '';
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.edit .check-box:checked+.edit_title::after {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-right: 2px solid var(--color--green);
    border-bottom: 2px solid var(--color--green);
    content: '';
    width: 7px;
    height: 10px;
    transform: rotate(45deg);
}

/* modal */
.register_modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 768px) {
    .register_modal_content {
        width: 90%;
        margin: 20% auto;
    }
}

.register .modal_inner .head_text,
.edit .modal_inner .head_text {
    margin-top: 20px;
    border-radius: 10px 10px 0 0;
}

.modal_inner .edit_item {
    padding-bottom: 10px;
    background-image: url('../assets/under-line.png');
    background-position: left bottom;
    background-repeat: repeat-x;
}

.edit .modal_inner .text_green {
    text-align: center;
    color: #169F45;
    padding-bottom: 30px;
    margin-bottom: 30px;
    background-image: url('../assets/under-line.png');
    background-position: left bottom;
    background-repeat: repeat-x;
}

.register .modal_inner #data-icon {
    width: 87px;
    height: 87px;
    border: 2px solid var(--color--green);
    border-radius: 50%;
}

.register .modal_inner .edit_title_img,
.edit .modal_inner .edit_title_img {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    border: 2px solid #1A9432;
}

.modal_inner .edit_item.icon {
    padding-bottom: 30px;
}

.register .modal_inner .edit_item.marketing {
    padding-bottom: 20px;
}

.edit .modal_inner .btn_container {
    margin-top: 40px;
    gap: 20px;
}

.register_modal .close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.register_modal .close:hover,
.register_modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.select-box {
    background: #fff;
    width: 100%;
    font-size: 1.4rem;
    padding: 14px 10px 18px;
    line-height: 1.2;
    border: 1px solid #8E8E8F;
    background-image: url('../assets/green-arrow.png');
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 13px 9px;
}

/*****************************************
新規会員情報登録
*****************************************/
.customers.register#error:not(:target),
.customers.register#error:target~.customers.register {
    display: none;
}

.register .text_green {
    color: var(--color--green);
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.edit_text_small .text_green {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1;
    color: #169F45;
}

.register .check .edit_text,
.edit .edit_text {
    margin-bottom: 10px;
}

.register .error select,
.register .error .form_input,
.register .error .radio_btn_text::before {
    border-color: var(--color--red);
}

/* 新規登録完了 */
.register.complete .btn_container {
    text-align: center;
    margin-top: 40px;
}

.register_slider_container {
    padding: 0 10px;
    width: calc(100% + 30px);
    overflow: hidden;
}

.register_slider_container+.swiper-pagination {
    bottom: 150px;
}

.register_complete_slider .swiper-slide {
    margin-right: 20px;
    width: calc(100% - 30px);
}

.register.complete .swiper-pagination-bullet {
    background-color: transparent;
    border: 2px solid var(--color--green);
    opacity: 1;
}

.register.complete .swiper-pagination-bullet-active {
    background-color: var(--color--green);
}

.register_complete_text {
    text-align: center;
    margin: 30px 10px 0;
    font-size: 12px;
    left: 1.8;
}


/* エラーページ */
.register_error .text_container h3 {
    color: var(--color--green);
    font-size: 16px;
    line-height: 1.75;
    margin: 20px auto 30px;
}

.register_error .btn_container {
    margin: 30px auto;
}

.register_error .text_container:last-of-type {
    text-align: center;
    padding-top: 30px;
    background-image: url('../assets/under-line.png');
    background-position: left top;
    background-repeat: repeat-x;
}

@media only screen and (min-width: 768px) {
    .register_error .text_container {
        text-align: center;
    }
}

.register .back_login_btn {
    text-align: center;
    margin-top: 10px;
    display: block;
    text-decoration: underline;
}


/*****************************************
マイページ
*****************************************/
.account {
    position: relative;
}

.account_info {
    margin: 20px 0;
}

.account_name_container {
    background: #fff;
    border-radius: 20px 20px 0 0;
    position: relative;
    width: 100%;
    margin-bottom: 2px;
    padding: 22px 0 20px;
}

.account_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #9E9E9E;
    position: absolute;
    top: -20px;
    left: 20px;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

.account_icon img {
    height: 100%;
}

.account_icon svg {
    width: 58.86px;
    height: 44.54px"

}

.account_subname {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #009933;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    padding: 0 12px;
    line-height: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account_name {
    color: #169F45;
    text-align: center;
    font-size: 18px;
}

@media only screen and (max-width: 428px) {
    .account_name {
        text-align: start;
        padding-left: 100px;
    }
}

@media only screen and (max-width: 414px) {
    .account_name {
        text-align: start;
        padding-left: 100px;
    }
}

@media only screen and (max-width: 390px) {
    .account_name {
        text-align: start;
        padding-left: 100px;
    }
}

@media only screen and (max-width: 375px) {
    .account_name {
        text-align: start;
        padding-left: 100px;
    }
}

@media only screen and (max-width: 360px) {
    .account_name {
        text-align: start;
        padding-left: 100px;
    }
}

.account_name span {
    font-size: 14px;
}

.account_favorite,
.account_setting {
    width: calc(100% / 2 - 1px);
    background: #fff;
    padding: 19px 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.account_favorite {
    border-radius: 0 0 0 20px;
    line-height: 1;
}

.account_favorite svg {
    width: 25px;
    height: 21.27px;
}

.account_setting {
    border-radius: 0 0 20px 0;
    line-height: 1;
}

.account_setting svg {
    width: 25px;
    height: 25px;
}

.account_setting .cls-1 {
    clip-path: url('#clippath');
}

.account_setting .cls-2,
.account_setting .cls-3 {
    stroke-width: 0;
}

.account_setting .cls-3 {
    fill: #8e8e8f;
}

.account_point {
    margin: 20px auto 25px;
}

.account_point_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.account_point_container img {
    width: 60px;
    height: 60px;
}

.account_point_container .cls-1 {
    clip-path: url('#clippath2');
}

.account_point_container .cls-2 {
    fill: none;
}

.account_point_container .cls-2,
.account_point_container .cls-3,
.account_point_container .cls-4,
.account_point_container .cls-5,
.account_point_container .cls-6,
.account_point_container .cls-7 {
    stroke-width: 0;
}

.account_point_container .cls-3 {
    fill-rule: evenodd;
}

.account_point_container .cls-3,
.account_point_container .cls-5 {
    fill: #d93915;
}

.account_point_container .cls-6 {
    fill: #00a041;
}

.account_point_container .cls-7 {
    fill: #fff;
}

.account_point_text {
    color: #169F45;
    font-size: 80px;
    line-height: 1;
}

.account_point_text total-point {
    vertical-align: text-top;
}

.account_point_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #169F45;
    text-decoration: underline;
}

.account_point_link svg {
    width: 17px;
    height: 15px;
    margin-top: 2px;
}

.account .btn_container.barcode .btn_green {
    gap: 24px;
    padding: 15px;
}

.account .btn_green svg {
    width: 29.5px;
    height: 23.4px;
}

@media only screen and (min-width: 768px) {
    .help_btn_inner {
        font-size: 16px;
        padding: 4px 15px;
        border-radius: 20px;
    }

    .pc_flex {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .account_info {
        width: 82.5%;
    }

    .account_name_container {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 0;
        padding: 10px;
        width: 52%;
        border-radius: 20px 0 0 20px;
    }

    .account_icon {
        position: relative;
        top: unset;
        left: unset;
        width: 60px;
        height: 60px;
    }

    .account_subname {
        left: 27%;
        transform: translateY(-50%);
        height: 30px;
        border-radius: 15px;
    }

    .account_name {
        font-size: 22px;
    }

    .account_favorite,
    .account_setting {
        width: 24%;
        font-size: 16px;
        justify-content: flex-start;
    }

    .account_favorite:hover,
    .account_setting:hover {
        opacity: 1;
    }

    .account_favorite {
        border-radius: 0;
    }

    .account_favorite svg {
        width: 30px;
        height: 25px;
    }

    .account_setting {
        border-radius: 0 20px 20px 0;
    }

    .account_setting svg {
        width: 30px;
        height: 30px;
    }

    .account_point_container {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 15px;
    }

    .account_point_container img {
        width: 90px;
        height: 90px;
    }

    .account_point_link {
        font-size: 18px;
    }

    .account_point_link svg {
        width: 28px;
        height: 25px;
        margin-top: 0;
    }
}

/* account-main */
.account_main {
    margin: 40px auto 20px;
}

.account_tabs {
    width: 100%;
}

.account_tabs li {
    width: calc(100% / 2 - 1px);
}

.account_tab {
    display: block;
    background: #F4F4F4;
    color: #625645;
    padding: 14px 0;
    font-size: 16px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    transition: .2s;
}

.account_tab.active {
    color: #169F45;
    background: #fff;
    opacity: 1;
}

.account_main_container {
    background: #fff;
    padding: 20px 10px 0;
}

.account_main_content {
    display: none;
}

.account_main_content.active {
    display: block;
}

.account_main_use_container:not(.active) {
    display: none;
}

.account_main_text {
    padding: 20px 10px;
    margin-bottom: 20px;
    background-image: url('../assets/under-line.png');
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 328px;
    line-height: 1.78;
}

.account_main_accumulate .account_main_text {
    padding-top: 0;
    margin-bottom: 0;
}

.account_main_accumulate .account_main_inner {
    padding-bottom: 30px;
}

.account_collection_container {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.account_collection_container::-webkit-scrollbar,
.account_collection_container::-webkit-scrollbar-track,
.account_collection_container::-webkit-scrollbar-thumb {
    display: none;
}

.account_product {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(30%, 100px) auto;
    gap: 10px;
    margin-bottom: 20px;
}

.account_product--tile {
    flex: 0 0 140px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .account_product {
        padding-bottom: 20px;
        background-image: url('../assets/under-line.png');
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 328px;
    }
}

@media only screen and (max-width: 768px) {
    .account_product:not(:last-of-type) {
        padding-bottom: 20px;
        background-image: url('../assets/under-line.png');
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 328px;
    }
}

.account_product_image {
    width: 100%;
    border: 1px solid #E5E5E5;
    position: relative;
    aspect-ratio: 1;
}

.account_product_info {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
}

.account_product_info_text {
    padding-right: 20px;
}

.account_product_point {
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #9E9E9E;
    display: flex;
    align-items: center;
    gap: 4px;
}

.account_product_point.active {
    color: #169F45;
}

.account_product_point[data-point-threshold]::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(//dev-365.myshopify.com/cdn/shop/t/363/assets/icon_point__small--gray_16x16.svg?v=80211874989022748101745991139);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.account_product_point[data-point-threshold].active::before {
    background-image: url(//dev-365.myshopify.com/cdn/shop/t/363/assets/icon_point__small_16x16.svg?v=144246871900242720591745991140);
}

.account_product_point:not(.active) [data-suffix]::after {
    content: attr(data-suffix);
}

.account_product--tile .account_product_point {
    justify-content: center;
}

.account_product--tile .account_product_image {
    margin-bottom: 10px;
}

.account_collection_title {
    padding: 10px 0;
}

.account_product_tag {
    position: absolute;
    font-size: 9px;
    color: #fff;
    background: #DA3915;
    padding: 1px 3px;
    left: 1;
    top: 0;
    left: 0;
    font-weight: bold;
    letter-spacing: 0.2px;
    font-family: 'Helvetica 17.0d1e1', 'Neue Haas Grotesk', sans-serif;
}

.account_product_deadline {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(142, 142, 143, .7);
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    letter-spacing: 0.2px;
}

.account_product_title {
    font-size: 16px;
    margin-bottom: 10px;
}

.account_product_applicants {
    font-size: 12px;
    line-height: 1;
}

.account_product_arrow {
    position: absolute;
    top: calc(50% - 10px);
    right: 5px;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .account_main {
        max-width: 800px;
        margin: 60px auto 0;
        font-size: 16px;
    }

    .account_tab {
        font-size: 18px;
    }

    .account_main_container {
        padding: 40px 40px 0;
    }

    .account_main_text {
        background-repeat: repeat-x;
    }

    .account_product {
        width: 50%;
        padding-right: 20px;
    }

    .account_product:nth-child(2n) {
        width: 50%;
        padding-left: 20px;
    }

    .account_main .select_box {
        font-size: 18px;
        padding: 15px 20px;
        line-height: 1;
    }

    .account_product_arrow {
        right: 20px;
    }
}



/* ポイントを貯める */
.account_main_task {
    padding: 20px 0;
    background-image: url('../assets/under-line.png');
    background-position: bottom;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    position: relative;
    cursor: pointer;
}

.account_main_task_point {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #00A041;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    gap: 3px;
    padding-bottom: 2px;
}

.account_main_task_point .point {
    font-size: 24px;
    line-height: 1.4;
}

.account_main_task_point svg {
    width: 39px;
    height: 22.6px;
}

.account_main_task_text {
    color: #009933;
    font-size: 16px;
}

.account_main_task_text span {
    font-size: 12px;
    color: #625645;
    display: block;
    margin-top: 5px;
}

.account_main_task_img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .account_main_accumulate .account_main_inner {
        padding-bottom: 40px;
    }

    .account_main_task {
        background-repeat: repeat-x;
        gap: 34px;
    }

    .account_main_task_point {
        width: 96px;
        height: 96px;
    }

    .account_main_task_text {
        font-size: 18px;
    }

    .account_main_task_point svg {
        width: 47px;
    }

    .account_main_task_img {
        width: 13px;
    }
}


/* ポイントを貯める　モーダル */
.account_main_modal {
    display: none;
}

.account_main_modal.active {
    display: flex;
    justify-content: center;
    background: rgba(142, 142, 143, .9);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 25px;
    z-index: 100;
}

.account_main_modal_inner {
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 85vh;
    overflow-y: scroll;

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

.account_main_modal .account_main_task {
    background: none;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.account_main_modal .account_main_task_text {
    flex: 1;
}

.account_main_modal_img {
    text-align: center;
    background: #FDF9D9;
}

.account_main_modal_img.background img {
    text-align: center;
    width: 83%;
}

.account_main_modal .btn_container {
    flex-grow: 0;
    margin: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account_main_modal_text span {
    font-size: 12px;
}

.account_main_modal_text .text_red {
    color: var(--color--red);
}

@media only screen and (min-width: 768px) {
    .account_main_modal.active {
        align-items: flex-start;
        padding-top: 95px;
    }

    .account_main_modal_inner {
        width: 70%;
        max-width: 600px;
        height: 620px;
        padding: 30px 80px;
    }

    .account_main_modal .account_main_task {
        padding: 0;
        gap: 20px;
    }

    .account_main_modal .account_main_task_point {
        width: 80px;
        height: 80px;
    }

    .account_main_modal_img img {
        width: 80%;
        max-width: 700px;
        margin: 0 auto;
    }
}

/*****************************************
会員登録編集
*****************************************/
.edit {
    overflow: hidden;
}

.edit_link {
    text-decoration: underline;
    text-align: right;
    font-size: 12px;
    margin-right: -10px;
    text-align: right;
    display: block;
}

.edit_tab_nav {
    display: flex;
    margin: 30px auto;
    width: 258px;
    justify-content: center;
}

.edit_tab_nav_item {
    background-color: #fff;
    color: #C7C7C7;
    padding: 0;
    width: calc(50% - 1.5px);
    text-align: center;
    border: 3px solid #C7C7C7;
    position: relative;
    z-index: 2;
    transition: .4s;
    line-height: 24px;
    padding-bottom: 3px;
}

.edit_tab_nav_item:hover {
    opacity: 1;
}

.edit_tab_nav_item.is-active {
    color: #009933;
    border-color: #009933;
}

.edit_tab_nav_item:first-of-type {
    border-radius: 20px 0 0 20px;
}

.edit_tab_nav_item:nth-of-type(2) {
    border-radius: 0 20px 20px 0;
    margin-left: -3px;
    z-index: 1;
}

.edit_tab_nav_item:nth-of-type(2).is-active {
    z-index: 2;
}

.edit_content {
    display: none;
}

.edit_content.is-active {
    display: block;
}

.edit_item {
    margin-bottom: 30px;
}

.edit_title {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
}

.mail .edit_title {
    margin-bottom: 20px;
}

.mail .edit_text {
    line-height: 1;
}

.mail.edit_item a {
    margin-top: 20px;
}

.password .edit_title {
    margin-bottom: 10px;
}

.edit_text,
.resiter_text {
    margin-bottom: 20px;
}

.edit_text_small {
    font-size: 12px;
}

.edit_text_small .active~.accepts_marketing {
    display: none;
}

.text-red {
    color: var(--color--red);
}

.edit .edit_item .error_text {
    display: none;
    color: var(--color--red);
    font-size: 12px;
}

.edit .edit_item.error .error_text {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.edit .edit_item .error_text--birthday,
.edit .edit_item .error_text--birthday-yyyymm {
    color: var(--color--red);
    font-size: 12px;
    display: none;
}

.edit .edit_item .error_text--birthday.error {
    display: block;
    margin-top: 10px;
}

.edit .edit_item .error_text--birthday-yyyymm.error {
    display: block;
    margin-top: 10px;
}

/* swiper */
@media screen and (min-width: 768px) {
    .edit_item.icon {
        overflow: hidden;
    }
}

.icon_swiper .swiper-wrapper {
    align-items: center;
}

.icon_item input {
    display: none;
}

.icon_item {
    width: 51px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #8E8E8F;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .swiper__container {
        width: 100vw;
    }

    .icon_item:last-of-type {
        margin-right: 50px;
    }
}

.icon_item.active {
    width: 87px;
    height: 88px;
    border: 2px solid #1A9432;
}

.icon_item img {
    height: 100%;
}

.edit_item.gender {
    justify-content: flex-start;
    gap: 0 20px;
}

.edit .radio_btn {
    appearance: none;
    position: absolute;
}

.edit .radio_btn_label {
    content: '';
    display: table;
    border-radius: 9999px;
    border: 1px solid #707070;
    background: #fff;
    width: 50px;
    height: 40px;
    margin: 4px 6px 4px 0px;
}

.edit .radio.error .radio_btn_label {
    content: '';
    display: table;
    border-radius: 9999px;
    border: 1px solid var(--color--red);
    background: #fff;
    width: 50px;
    height: 40px;
    margin: 4px 6px 4px 0px;
}

.edit .radio_btn_text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.edit .radio_btn_label:has(.radio_btn:checked) {
    color: #fff;
    background-color: #009933;
}

/*
.edit .radio_btn_text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.edit .radio_btn_text::before {
    content: '';
    display: block;
    border-radius: 50%;
    border: 1px solid #707070;
    background: #fff;
    width: 30px;
    height: 30px;
    margin-top: 4px;
}

.edit .radio_btn:checked+.radio_btn_text::after {
    content: '';
    position: absolute;
    margin-top: 4px;
    left: 5px;
    display: block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #009933;
}
*/

.edit .select-box.year {
    width: 70%;
}

.edit .select-box.month {
    width: 25%;
}

.edit_item.check .mizkan__customers__text-box {
    margin-left: 20px;
}

.check .edit_text_small {
    margin-left: 26px;
}

.edit .btn_container {
    gap: 40px;
    flex-direction: column;
}

/*****************************************
登録完了
*****************************************/
.complete .module_container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(142, 142, 143, .9);
    z-index: 100;
}

.complete .module_inner {
    background: #fff;
    border-radius: 10px;
    width: calc(100vw - 20px);
    max-width: 500px;
    height: 80vh;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.complete .module_title {
    color: #169F45;
    font-size: 24px;
    line-height: 1.58;
}

.complete .module_img {
    margin: 50px auto 62px;
}

.complete .module_img img {
    width: 134px;
    height: 101px;
}

.complete .module_text {
    line-height: 1.78;
}

.complete_img {
    width: 40%;
}

.complete .module_text:last-of-type {
    margin-bottom: 60px;
}

.complete .btn_container {
    margin: auto 0 0 0;
    width: 100%;
}


/*****************************************
メールアドレスの変更
*****************************************/
.reset_text {
    margin-bottom: 10px;
}

.reset_mail .btn_container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reset_mail .reset_item .error_text {
    display: none;
    color: var(--color--red);
    font-size: 12px;
}

.reset_mail .reset_item.error .error_text {
    display: block;
    margin-bottom: 10px;
}

.reset_mail .text_green {
    color: var(--color--green);
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.reset_mail .text_container {
    line-height: 1.78;
}


/*****************************************
パスワードの変更
*****************************************/
#recover:not(:target),
#recover:target~#announcement,
#recover:target~#login,
#recover-success~#announcement,
#recover-success~#login,
#reset-password-success:not(:target),
#reset-password-success:target~#login,
#reset-password-success:target~#announcement,
#exit:not(:target),
#exit:target~#login,
#complete:not(:target),
#complete:target~#reset-password {
    display: none;
}

/* reset-password */
.reset_pass .text_container {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.78;
}

.reset_pass .text_container .info {
    font-size: 12px;
    margin-top: 20px;
}

.reset_pass .text_container .info span {
    color: var(--color--red);
}

.reset_pass .reset_item {
    margin-bottom: 30px;
}

.reset_pass .reset_text {
    margin-bottom: 10px;
}

.reset_pass .form_input_container {
    position: relative;
}

.reset_pass .icon-eye {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 20px;
}

.reset_pass .icon-eye svg {
    width: 26px;
    height: 18px;
    vertical-align: top;
}

.reset_pass .icon-eye-slash::after {
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    background: #8E8E8F;
    position: absolute;
    top: -5px;
    left: 12px;
    transform: rotate(50deg);
    z-index: 2;
}

.reset_pass .text_small {
    font-size: 12px;
    left: 1.5;
}

.reset_pass .btn_container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reset_pass .error_text {
    display: none;
}

.reset_pass .reset_item.error .error_text {
    display: block;
    font-size: 12px;
    color: var(--color--red);
}

/* パスワード変更メール送信完了 */
.reset_pass h3 {
    color: var(--color--green);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.reset_pass_send .btn_container {
    margin-top: 60px;
}


/* パスワード変更完了 */
.page_reset .password_icon {
    margin: 40px auto;
    text-align: center;
}

.page_reset .password_icon img {
    width: 132.6px;
    height: 100px;
}

/*****************************************
応募情報登録
*****************************************/
.customers.edit#complete:not(:target),
.customers.edit#complete:target~.customers.edit {
    display: none;
}

/* 会員情報変更ページを引用 */
/* その他の追加 */
.apply .text_big {
    font-size: 18px;
    margin-bottom: 20px;
}

.agreement_text {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #707070;
    background: #fff;
    padding: 12px;
    font-size: 12px;
    line-height: 1.8;
    height: 170px;
    overflow-y: scroll;
    margin: 10px auto 20px;
}

.apply .edit_content {
    margin-top: 30px;
}

.agreement .edit_text {
    display: flex;
    align-items: center;
}

.edit .agreement label {
    display: block;
    position: relative;
}

.register .agreement .edit_title {
    position: absolute;
    top: 0;
}

.register .agreement .edit_title a {
    text-decoration: underline;
}

.apply .edit_item.error .agreement_text,
.apply .edit_item.error .edit_title::before {
    border-color: var(--color--red);
}

.mizkan__form__checkbox input {
    appearance: none;
    position: absolute;
}

.mizkan__form__checkbox .text {
    position: relative;
    display: table;
    align-items: center;
    padding-left: 25px;
}

.edit.apply .edit_item .error_text,
.edit_address .edit_item.error .error_text {
    margin-top: 0;
}

.edit.apply .edit_item.province .error_text,
.edit_address .edit_item.province.error .error_text {
    margin-top: 10px;
}

.apply .text {
    line-height: 1.78;
}

.apply .agreement_text {
    margin-bottom: 0;
}

/*****************************************
商品バーコード
*****************************************/
.barcode .preview__wrapper {
    margin-bottom: 20px;
    border-radius: 10px;
    border: 6px solid #009933;
}

.barcode .customers_form--content {
    color: #169F45;
    font-size: 18px;
    line-height: 1.77;
    margin: 20px auto;
}

.barcode .preview__info__wrapper {
    position: relative;
    padding-top: 25px;
}

.barcode .svg_img {
    width: 104px;
    height: 121px;
    position: absolute;
    top: 0;
    right: 5%;
}

.barcode .barcode_input {
    width: 80%;
    max-width: 254px;
}

.barcode .barcode_input::placeholder {
    font-size: 18px;
    color: rgba(98, 86, 69, .2);
    letter-spacing: 0.1rem;
}

.barcode .btn_container {
    margin-top: 30px;
    gap: 50px;
}

.barcode .preview_info {
    margin: 10px auto 50px;
    font-size: 12px;
}

.barcode .collapse__toggle {
    text-decoration: underline;
    margin-top: 20px;
    display: block;
}

.barcode .target_products_title {
    text-align: center;
    font-size: 18px;
}

.barcode .target_products_container {
    background: #fff;
    margin-top: 20px;
    padding: 15px 10px 30px;
    border-radius: 10px;
}

.barcode .target_products_container h3 {
    color: #009933;
    font-size: 18px;
    padding: 0 10px 17px;
    background-image: url('../assets/under-line.png');
    background-position: left bottom;
    background-repeat: repeat-x;
}

.barcode .target_products_inner {
    padding: 0 10px;
    margin-top: 17px;
}

.barcode .reference {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    background: #625645;
    padding: 4px 13px;
    border-radius: 10px;
    display: inline-block;
}

.barcode .target_products_list {
    margin: 12px 0 10px;
}

.barcode .target_products_link {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    line-height: 1;
}

.barcode .target_products_link .icon_link {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    vertical-align: middle;
}

.barcode .text--info {
    font-size: 12px;
    margin-bottom: 10px;
}

.barcode .text--info span {
    color: var(--color--red);
}

.customers__entry#complete:target~.customers__entry#entry,
.customers__entry#complete:not(:target) {
    display: none;
}

@media only screen and (min-width: 768px) {
    .barcode .preview__wrapper {
        width: 350px;
        height: 330px;
        margin: 0 auto 20px;
    }

    .barcode .preview__info__wrapper {
        width: 350px;
        margin: 0 auto;
    }

    .barcode .target_products_title {
        font-size: 22px;
        text-align: left;
    }

    .barcode .target_products_container {
        padding: 20px 10px 30px;
    }

    .barcode .target_products_container h3 {
        padding: 0 30px 17px;
    }

    .barcode .target_products_inner {
        margin-top: 20px;
        padding: 0 30px;
    }

    .barcode .target_products_list {
        display: flex;
        flex-wrap: wrap;
    }

    .barcode .target_products_list li {
        width: 50%;
    }

    .barcode .target_products_link .icon_link {
        margin-bottom: 2px;
    }

    .barcode .text--info br {
        display: none;
    }

    .barcode .modal_inner {
        width: 46%;
        max-width: 600px;
        padding: 30px 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .barcode .modal_inner .text--info {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .barcode .barcode_input {
        font-size: 18px;
        padding: 15px 0 15px 10px;
    }

    .barcode .btn_container {
        gap: 30px;
    }
}

/*****************************************
退会ページ
*****************************************/
.delete_h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.delete_list_title {
    margin: 20px 0 10px;
}

.account_delete ul {
    margin-bottom: 30px;
}

.delete_list {
    font-size: 12px;
    line-height: 1.83;
}

.account_delete form {
    margin-top: 15px;
}

.account_delete .form_label {
    display: flex;
}

.account_delete .check-box {
    appearance: none;
    position: relative;
}

.account_delete .check .edit_title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.account_delete .check .edit_title::before {
    display: block;
    border: 1px solid #707070;
    background: #fff;
    content: '';
    width: 20px;
    height: 20px;
}

.account_delete .check-box:checked+.edit_title::after {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-right: 2px solid var(--color--green);
    border-bottom: 2px solid var(--color--green);
    content: '';
    width: 7px;
    height: 10px;
    transform: rotate(45deg);
}

.account_delete .btn_container {
    gap: 40px;
}

.account_delete .btn_green:hover {
    opacity: 1;
}

.account_delete .error_text {
    display: none;
    font-size: 12px;
    color: #DA3915;
}

.account_delete #delete_me-button {
    text-align: left;
    display: block;
}

/* 　アカウント削除完了 */
.template-account--delete-complete {
    overflow: hidden;
}

.account_delete_complete {
    position: relative;
    z-index: 101;
    height: 100vh;
}

.account_delete_complete .container {
    background: rgba(142, 142, 143, .9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.account_delete_complete .inner {
    background: #FDF9D9;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .16);
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    height: 80vh;
    max-width: 500px;
    transform: translate(-50%, -50%);
    padding: 90px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.account_delete_complete .text_green {
    font-size: 24px;
    line-height: 1.58;
    color: #169F45;
}

.account_delete_complete .img {
    width: 130px;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: auto;
    margin-left: auto;
}

.account_delete_complete .btn_container {
    margin: auto 0 0;
}

/* line連携 */
.line .text_green {
    font-size: 18px;
    text-align: center;
    color: #169F45;
    margin-bottom: 20px;
}

.line .text_center {
    text-align: center;
    line-height: 1.7;
}

.line .btn_container {
    margin-top: 40px;
    gap: 40px;
    flex-direction: column;
}

.line .content {
    margin-bottom: 60px;
}

.line .content:last-of-type {
    margin-bottom: 0;
}

.line .img {
    width: 90%;
    max-width: 500px;
    margin: 0 auto 20px;
}

@media only screen and (min-width: 768px) {
    .line .socialplus-association-component {
        max-width: 330px !important;
        margin: 20px auto !important;
    }

    .line .content {
        text-align: center;
    }
}



/*****************************************
エラーバナー / barcode, register, edit
*****************************************/
.modal_customers_error {
    text-align: center;
}

.modal_customers_error .modal_inner {
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.modal_customers_error.modal_input_error .modal_inner {
    padding: 20px;
}

.modal_customers_error .modal_heading {
    color: #169F45;
    font-size: 24px;
    line-height: 1.58;
    margin-bottom: 50px;
}

.modal_customers_error.modal_input_error .modal_heading {
    padding-top: 70px;
}

.modal_customers_error .icon_error,
.modal_input_error img {
    width: 132.7px;
    height: 100px;
}

.modal_customers_error .modal_error_text {
    font-size: 14px;
    line-height: 1.78;
    letter-spacing: 0.02em;
    margin-top: 62px;
}

.modal_customers_error .btn_container {
    margin: auto 0 0 0;
    width: 100%;
}

.note-input {
    max-width: 300px;
    margin: 0 auto 5px;
    font-size: 11px;
}

.text-red {
    color: var(--color--red);
}


@media(min-width: 768px) {
    .modal_customers_error .modal_inner {
        height: 620px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fff;
        width: 70%;
        max-width: 600px;
    }
}

@media(min-width: 768px) {
    .modal.modal_input_error.modal_customers_error.open {
        padding-top: 95px;
    }
}

.survey_text_area {
    border: 1px solid #8e8e8f;
}