@charset "utf-8";

.main_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 0;
}

    /*
 * Step Navigation
 */
.sec_att {
	margin: 0 0 48px;
}

.sec_att .inner {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

.sec_att .box_step {
	--step-circle-size: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.sec_att .item_step {
	position: relative;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #D1D1D1;
    width: fit-content;
}

.sec_att .item_step .num_step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--step-circle-size);
	height: var(--step-circle-size);
	margin: 0 auto 4px;
	border-radius: 50%;
	background: #d1cfc9;
	font-size: 0;
	position: relative;
	z-index: 1;
}

.sec_att .item_step .num_step::after {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
    margin-left: 1px;
	background: url("../img/send/step.svg") no-repeat center/contain;
}

.sec_att .item_step .step_text {
    display: block;
    height: 45px;
    color: #222222;
}

.sec_att .item_step.--current .step_text{
	color: #A9895C;
    font-weight: bold;
}

.sec_att .item_step.--current .num_step {
	background: #A9895C;
}

.sec_att .item_step.--current .num_step::after {
	color: #ffffff;
}

.step_line {
    display: block;
    height: 1px;
    width: 100%;
    flex: 3;
    background-color: #C5C5C5;
    margin-bottom: 45px;
}

.ttl_box {
    font-size: 28px;
    margin-bottom: 30px;
}

.ft_serif {
    font-family: Shippori Mincho, serif;
}

.label_req {
    display: inline-block;
    height: fit-content;
    padding: 6px 12px;
    border: 1px #CA3C3C solid;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: #CA3C3C;
}

.dl_form {
    display: flex;
    padding: 20px;
    gap: 40px;
    border-top: #C5C5C5 solid 1px;
}

.dl_form:last-of-type {
    border-bottom: #C5C5C5 solid 1px;
}

.dl_form dt {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Shippori Mincho, serif;
    font-weight: 700;
    color: #363636;
}

.dl_form dd {
    flex: 2.5;
}

.dl_form label {
    white-space: nowrap;
}

.dl_form dd .box_calendar {
    display: flex;
    gap: 16px;
}

.box_calendar_left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.box_calendar_left .input {
    width: 100%;
}

.box_calendar_right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.box_calendar_right .input {
    width: 100%;
}

.input_name {
    width: 100%;
}

.box_area {
    display: flex;
    gap: 16px;
}

.box_area_left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.box_area_left .input {
    width: 100%;
}

.box_area_right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.box_area_right .input {
    width: 100%;
}

.input {
    padding: 12px 15px;
    border: #C5C5C5 solid 1px;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 1.2rem;
}

.input::placeholder {
    color: #d5d5d5;
}

.input_textarea {
    height: 120px;
}

.input_helper {
    margin-top: 10px;
}

.box_personal {
    margin-bottom: 48px;
}

.ttl_attention {
    display: flex;
    margin-inline: 20px;
    margin-bottom: 10px;
    font-family: Shippori Mincho, serif;
    font-weight: 700;
    color: #363636;
}

.ttl_attention span:last-child {
    font-family: sans-serif;
    font-weight: 400;
    color: #040404;
    margin-left: 10px
}

#privacy-policy {
    height: 180px;
    padding: 12px 15px;
    margin-inline: 20px;
    margin-bottom: 55px;
    border-radius: 4px;
    background-color: #FFFFFF;
    border: #C5C5C5 solid 1px;
    line-height: 160%;
    overflow-y: scroll;
}

.checkbox_attention {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 55px;
}


#policy-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.checkbox_attention input:disabled + label {
    color: rgba(0, 0, 0, 0.3);
}

.box_btn {
    position: relative;
    height: 120px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: #363636 solid .5px;
    font-size: 24px;
    font-family: Shippori Mincho, serif;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_group .box_btn {
    margin: 0;
}

.box_btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "";
    display: block;
    height: 15px;
    width: 18.16px;
    background-color: black; /* ← ここで色を変えられる */
    mask: url("/forms/common/svg/icon_btn_arrow.svg") no-repeat center / contain;
    -webkit-mask: url("/forms/common/svg/icon_btn_arrow.svg") no-repeat center / contain;
}

.box_btn:has(> .btn_next) {
    height: 62px;
    max-width: 300px;
    font-size: 16px;
    font-family: sans-serif;
    background-color: #A9895C;
    color: #FFFFFF;
    border: none;
}

.box_btn:has(> .btn_next)::after {
    height: 9.5px;
    width: 11.5px;
    background-color: white;
}

.box_btn:has(> .btn_next:disabled) {
    background-color: #D7C8B2;
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
}

.box_btn:has(> .btn_next:disabled)::after {
    background-color: rgba(255, 255, 255, 0.7);
}

.box_btn:has(> .btn_back) {
    height: 62px;
    max-width: 300px;
    font-size: 16px;
    font-family: sans-serif;
}

.box_btn:has(> .btn_back)::after {
    height: 9.5px;
    width: 11.5px;
    left: 20px;
    right: auto;
    transform: translateY(-50%) scaleX(-1);
}

.box_btn .cover_btn {
    height: 100%;
    width: 100%;
}

.box_btn .btn_next {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.box_btn .btn_next:disabled {
    cursor: not-allowed;
}

.btn_group {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 32px;
}

.btn_group .box_btn {
    flex: 1 1 0;
    max-width: 300px;
}

.box_btn input {
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-align: center;
}

.ttl_catalog {
    width: 100%;
    padding: 12px 20px;
    background-color: #A9895C;
    color: #FFFFFF;
    border-bottom: #C5C5C5 solid 1px;
    font-weight: 700;
}

.block_catalog {
    display: none;
    margin-bottom: 60px;
}

.note_catalog {
    margin-top: 30px;
}

.content_catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.item_catalog {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    grid-template-columns: repeat(2, 1fr);
    background-color: #FFFFFF;
    border: #C5C5C5 solid 1px;
}

.img_catalog {
    background-color: #7B70891A;
    --img_catalog-size: 120px;
    height: var(--img_catalog-size);
    width: var(--img_catalog-size);
    border-radius: 10px;
}

.name_catalog {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.name_catalog>span:first-of-type {
    font-size: 20px;
    font-family: Shippori Mincho, serif;
}

.name_catalog .price_catalog {
    display: inline;
    font-size: 20px;
    font-weight: 700;
    color: #363636;
}

.itemNote_catalog {
    font-size: 12px;
    color: #363636;
}

.contentNote_catalog {
    list-style-type: disc;
}

.txt_lead {
    margin-bottom: 20px;
}

.box_form {
    margin-bottom: 20px;
}

.box_form.--confirm {
    margin-bottom: 50px;
}

.js-itemTotal {
    display: inline;
    font-size: 20px;
    font-weight: 700;
    color: #363636;
}

.box_unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box_radio {
    display: flex;
    gap: 12px;
}

.cover_radio {
    position: relative;
    display: flex;
    align-items: center;
}

.cover_radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    margin: 0;
}

.cover_radio label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cover_radio input[type="radio"] + label::before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    position: relative;
    top: 0;
    margin-right: .5em;
    vertical-align: top;
    text-align: center;
    transition: all 250ms ease;
}

.cover_radio input[type="radio"]:checked + label::before {
    background-color: #3197ee;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.cover_radio input[type="radio"]:focus + label::before {
    outline: none;
    border-color: #3197ee;
}

.cover_radio input[type="radio"]:disabled + label::before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.cover_radio input[type="radio"] + label:empty::before {
    margin-right: 0;
}
 
.box_address {
    display: flex;
    gap: 5px;
}

.box_address:first-of-type {
    margin-bottom: 10px;
}

.address_zip {
    display: flex;
    gap: 5px;
}

.txt_label {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
}

.btn_post {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 18px;
    border-radius: 4px;
    background-color: #A9895C;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
    white-space: nowrap;
}

.cover_select {
    flex: 1;
}

.cover_select .input {
    height: 100%;
    width: 100%;
}

.box_address .input_address {
    flex: 2;
}

.cover_check {
    margin-top: 10px;
}

.box_txt {
    margin-bottom: 30px;
    font-size: 16px;
    margin: 0 60px 20px;
}

.box_txt a {
    text-decoration: underline;
}

.policy_check {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.policy_check a {
    color: #008CCE;
    text-decoration: underline;
}

.sec_lead .ttl_box {
    text-align:  center;
}

.txt_box {
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 30px;
}

.ttl_pref {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 20px;
    background-color: #A9895C;
    color: #FFFFFF;
    border-bottom: #C5C5C5 solid 1px;
    font-weight: 700;
    text-align: center;
}

.area_link {
    margin-bottom: 40px;
}

.list_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.item_link {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: #E6DCB8 solid 1px;
    border-radius: 10px;
    background-color: white;
    padding: 20px 15px;
}

.item_link .ttl {
    font-size: 18px;
    font-weight: 700;
    color: #363636;
    text-align: center;
}

.item_link .txt {
    line-height: 1.88;
    letter-spacing: 0.05em;
    word-break: keep-all;
}

.list_contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.item_contact01,
.item_contact02 {
    display: flex;
    align-items: end;
    gap: 2px;
    margin: 0 auto;
    border-bottom: #A9895C solid 1px;
    padding-bottom: 5px;
    width: fit-content;
    font-size: 22px;
    font-weight: 700;
    color: #A9895C;
}

.item_contact01::before,
.item_contact02::before {
    display: block;
    font-size: 14px;
    color: #A9895C;
}

.item_contact01::before {
    content: 'TEL';
}

.item_contact02::before {
    content: 'FAX';
}

.sec_lead  {
    margin: 0 20px;
}

.Error {
    margin-top: 4px;
}

@media (max-width: 735px) {
    .ttl_box {
        margin-left: 20px;
    }

    .sec_att .box_step {
        gap: 10px;
    }

    .dl_form {
        flex-direction: column;
        gap: 20px;
    }

    .dl_form dt {
        justify-content: start;
        gap: 16px;
    }

    .dl_form dd .box_calendar {
        flex-direction: column;
    }
    
    .box_calendar_left,
    .box_calendar_right,
    .box_area_left,
    .box_area_right {
        display: grid;
        grid-template-columns: 80px 1fr;
    }

    .box_area {
        flex-direction: column;
    }

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

    .ttl_attention span:last-child {
        display: block;
        margin-left: 0;
    }

    .box_btn {
        height: 80px;
        max-width: 300px;
        font-size: 16px;
    }
    
    #privacy-policy {
        margin-bottom: 24px;;
    }
    
    .checkbox_attention {
        margin-bottom: 24px;
    }
    
    .content_catalog {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .input_textarea {
        width: 100%;
    }

    .btn_group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn_group .box_btn {
        flex: none;
    }

    .box_address {
        flex-direction: column;
        gap: 10px;
    }

    .address_zip input {
        width: 100%;
    }

    .btn_post {
        padding: 12px 15px;
        width: fit-content;
    }

    .input_tel {
        width: 100%;
    }

    .box_txt {
        margin: 0 20px 20px;
    }

    .list_link {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}
