/*--------------------------------------------------------------------------------
◇◆◇◆◇◆◇◆◇◆◇◆ PC style ◇◆◇◆◇◆◇◆◇◆◇◆
--------------------------------------------------------------------------------*/
html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*--------------------------------------------------------------------------------
common style
--------------------------------------------------------------------------------*/
.content_inner {
    width: 960px;
    margin: 0 auto;
    padding: 0;
}

#contents {
    height: 100vh;
    position: relative;
}

/*--------------------------------------------------------------------------------
header
--------------------------------------------------------------------------------*/
header {
    height: 101px;
    width: 100%;
    background-color: white;
    padding: 25px 0;
}


/*--------------------------------------------------------------------------------
content
--------------------------------------------------------------------------------*/
article h2 {
    background-color: #346665;
    padding: 20px 0 20px 0;
    color: white;
    font-size: 24px;
    text-align: center;
}
.error_header {
    background-color: #FF6665;
}

article h3 {
    background-color: #346665;
    padding: 13px 0 25px 0;
    color: white;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
}

section {
    margin: 3px 0 32px 0;
}

.flex-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #d1e3e3;
    border: solid 1px #d1e3e3;
}

table {
    width: 100%;
    color: #346665;
}

td.key_box {
    background-color: #e6f2f2;
    padding: 20px 0 20px 0;
    text-align: center;
    border-bottom: solid 1px white;
    width: 30%;
    vertical-align: middle;
}

td.alert_box {
    background-color: #e6f2f2;
    padding: 20px;
    text-align: center;
    border-bottom: solid 1px white;
    width: 30%;
}

td.value_box {
    background-color: white;
    padding: 20px;
    border-bottom: solid 1px #d1e3e3;
}

tr:last-child td.key_box,
tr:last-child td.alert_box,
tr:last-child td.value_box {
    border-bottom: none;
}

input[type="text"] {
    margin: 0 10px;
    padding: 10px 10px;
    width: 100px;
    border: solid 1px #d1e3e3;
    border-radius: 10px;
}

label {
    margin: 0;
    font-size: 16px;
}
p.p_label {
    margin: 0;
    font-size: 16px;
}


select {
    font-size: 16px;
    border: solid 1px #d1e3e3;
    margin: 0 5px 0 10px;
    padding: 10px;
    border-radius: 10px;
    color: #346665;
    width: 100px;
}

select.year_sele {}

select.month_sele {}

select.day_sele {}

.text_title{
    margin-top: 20px;
    margin-bottom: 5px;
    /*font-size: 20px;*/
}

input[type="button"] {
    width: 44%;
    background-color: #346665;
    border: none;
    border-radius: 10px;
    line-height: 4em;
    font-size: 16px;
    margin: 30px auto 60px;
    display: block;
    color: white;
    cursor: pointer;
    -webkit-appearance: none;
}
.btn_set {
    display: inline-block  !important;
}
/* .back_btn{
    background-color: #99cccc !important;
} */
.btn_block{
    text-align: center  !important;    
}

input[type="button"]:hover {
    background-color: #398381;
}

input[type="text"].first_num {
    width: 70px;
    text-align: center;
}

input[type="text"].second_num {
    text-align: center;
}

input[type="text"].zip_text {
    width: 90%;
}

input[type="text"].tel_num {
    width: 70px;
    text-align: center;
}

input[type="text"].email {
    width: 90%;
}

input[type="text"].name_text {
    width: 250px;
}

.in_table td {
    padding: 0 0 30px 0;
}

td strong {
    font-weight: bold;
}

p.resp_hid {
    font-size: 12px;
    line-height: 1.5em;
    text-align: left;
    margin: 20px 0;
}

p.resp_hid.on_pc {
    display: block;
}

p.resp_hid.on_sp {
    display: none;
}
span.red {
    color: red;
}

#edit_btn {
    color:#000000 !important;
    background-color:#ffeb25 !important;
}

img.sample {
    width: 100%;
    /* margin-left: 5%; */
    height: auto;
}

/*--------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------*/
footer {
    background-color: #346665;
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    color: white;
}

footer a {
    text-decoration: none;
    color: white;
}
#complete footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
/*--------------------------------------------------------------------------------
◇◆◇◆◇◆◇◆◇◆◇◆ tablet style ◇◆◇◆◇◆◇◆◇◆◇◆
--------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 960px) {
    .content_inner {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    td.key_box {
        display: table-cell;
        width: 270px;
        text-align: center;
        vertical-align: middle;
    }
    
    td.alert_box {
        display: table-cell;
        width: 270px;
    }
    
    td.value_box {
        display: table-cell;
        width: inherit;
        padding: 20px 0;
    }

    select.year_sele {}

    select.month_sele {
        width: 65px;
    }

    select.day_sele {
        width: 65px;
    }

    input[type="text"].tel_num {
        width: 100px;
        text-align: center;
    }

    /* confirm html */
    #confirm td.value_box p {
        padding: 10px;
    }
    
    .in_table td {
        padding: 0 0 20px 8px;
    }

    p.resp_hid.on_pc {
        display: none;
    }

    p.resp_hid.on_sp {
        display: block;
        margin: 10px 10px 20px;
    }
    p.p_label {
    margin: 0;
    font-size: 16px;
    }
}

/*--------------------------------------------------------------------------------
◇◆◇◆◇◆◇◆◇◆◇◆ SP style ◇◆◇◆◇◆◇◆◇◆◇◆
--------------------------------------------------------------------------------*/
@media screen and (min-width: 0px) and (max-width: 767px) {
    h1 a {
        display: block;
        text-align: center;
    }

    section {
        margin: 20px 0;
    }

    .content_inner {
        width: 90%;
    }

    article h3 {
        padding: 10px 0;
        font-size: 19px;
        font-weight: bold;
    }
    section p {
        /* padding: 20px 0; */
        font-size: 14px;
    }

    td.key_box {
        padding: 15px 0 15px 0;
        display: inline-block;
        width: 100%;
        text-align: center;
        vertical-align: middle;
    }
    
    td.alert_box {
        padding: 15px;
        display: inline-block;
        width: 100%;
        text-align: left;
    }
    
    td.value_box {
        padding: 5px;
        display: inline-block;
        width: 100%;
    }

    label {
        margin: inherit;
        font-size: 14px;
    }

    input[type="text"] {
        margin: 10px 5px 10px 5px;
        padding: 5px 5px;
        width: 81px;
        border: solid 1px #d1e3e3;
        border-radius: 10px;
        font-size: 14px;
        width: 40%;
    }

    select {
        border: solid 1px #d1e3e3;
        margin: 0 5px 10px;
        padding: 6px;
        border-radius: 10px;
        color: #346665;
        font-size: 14px;
        width: 80px;
    }

    input[type="button"] {
        width: 44%;
        background-color: #346665;
        border: none;
        border-radius: 10px;
        line-height: 3em;
        font-size: 16px;
        margin: 30px auto;
        display: block;
        color: white;
        cursor: pointer;
        -webkit-appearance: none;
    }

    .btn_set {
        display: inline-block  !important;
    }
    /* .back_btn{
        background-color: #99cccc !important;
    } */
    .btn_block{
        text-align: center  !important;
    }

    select.year_sele {}

    select.month_sele {
        width: 60px;
    }

    select.day_sele {
        width: 60px;
    }

    /* confirm html */
    #confirm td.value_box p {
        padding: 10px;
    }
    
    .in_table td {
        padding: 0 0 10px 8px;
    }

    p.resp_hid.on_pc {
        display: none;
    }

    p.resp_hid.on_sp {
        display: block;
        margin: 10px 10px 20px;
    }
    p.p_label {
    margin: 0;
    font-size: 16px;
    }
}

.error_input {
    background-color: #ffc0cb;
}

.confirm_itm_top {
    font-size: 15px;
    text-align: center;
    margin-bottom: 15%;
    margin-top: 15%;
}
.confirm_compare_list {
    /* margin-left: 10px; */
    padding-top: 5%;
    padding-bottom: 5%;
    border-radius: 20px;
    background-color: #F2F2F2;
}
.confirm_itm_list_compare {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5%;
}
.confirm_itm_list{
    margin-bottom: 5%;
    padding: 0 5%;
}
.confirm_list {
    margin-left: 10px;
}

p.detail {
    font-size: 10px;
    margin-top: 3%;
    padding: 0 16%;
}

.fuyo_check_alert{
    margin-bottom: 5%;
}

.fuyo_radio {
    text-align:center;
}

.red{
    color: red;
}

.green{
    color: #346665;
}

#image_preview{
    width: 100%;
	height: auto;
}
.image_preview{
    width: 100%;
	height: auto;
}

.actionLock {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 0 0;
}

.image_upload_button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
}

.cancel_btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#add_fuyo_btn::before,#add_image_btn::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url('/img/customer/shinkoku_info_conf/plus.svg');
    background-size: contain;
    vertical-align: middle;
    padding: 4px 30px 1px 0px;
    background-repeat: no-repeat;
}

#add_fuyo_btn,#add_image_btn {
    height: 100%;
    font-weight: bold;
    padding: 14px 0px 0px 0px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    color: black;
}
#add_fuyo_btn,#add_image_btn {
    display: inline-block;
    width: 90%;
    height: 42px;
    margin: 10px 5%;
    overflow: hidden;
    background-color: #ffeb25;
    text-align: center;
    border-radius: 5px;
}

.add_cancel {
    display: inline-block;
    width: 100%;
    height: 42px;
    margin: 10px 0% 10px 0%;
    overflow: hidden;
    background-color: #000000;
    text-align: center;
    border-radius: 5px;
}

label.add_cancel::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url('/img/customer/shinkoku_info_conf/close.svg');
    background-size: contain;
    vertical-align: middle;
    padding: 8px 30px 5px 0px;
    background-repeat: no-repeat;
}

label.add_cancel {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 14px 0px 7px 0px;
    float: right;
    color: #ffffff;
}

.image_preview_title {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.errorMsg {
    color:red;
    font-size:  12px;
    margin: 0 0 0 7px;
    display: inline-block;
}

dt {
    margin-top: 20px;
}

.confirm {
    color:black;
}


.link_btn_before {
    display:inline-block !important;
    width: 25% !important;
    background-color: #99cccc !important;
    margin: 0 2% 4% 2% !important;
}

.link_btn_now {
    display:inline-block !important;
    width: 25% !important;
    margin: 0 2% 4% 2% !important;
    /* background-color: #99cccc !important; */
}

.link_btn_after {
    display:inline-block !important;
    width: 25% !important;
    background-color: #e8e7e7 !important;
    /* border: solid !important;
    border-color: #000000 !important;
    color: #000000 !important; */
    margin: 0 2% 4% 2% !important;
}

.pagelink_btn {
    text-align: center;
}

input[type="text"].bekkyoAddress_sele {
    width: 95%;
}

.yakujho_part {
    margin-top: 5%;
}

select.sele_kampu {
    width: 140px;
}

.panListBox {
    width: 103%;
    height: 70px;
    /* margin-left: 10%; */
    padding: 0;
}

.panListBox .box {
    float: left;
    width: 28%;
    height: 70%;
    margin-top: 2%;
    padding: 14px 0;
    text-align: center;
    font-size: 90%;
}

.panListBox .off {
	border: solid 1px #C6C6C6;
}


.panListBox .on {
    border: solid 1px #009CA5;
}

.panListBox .now {
    border: solid 1px #009CA5;
    background-color: #009CA5;
    color: #eeeeee;
}

.sankaku {
	float: left;
	border: 10px solid transparent;
	width: 0;
	height: 0;
	padding: 0 !important;
	margin-top: 20px;
    margin-left: 1%;
	border-left: 10px solid #009CA5;
}

.error_msg p {
    text-align: center;
    line-height: 1.5;
}