@charset "UTF-8";
/*************************************
*
* rental_media-confirm
*
**************************************/

input:not([type="checkbox"]), select, textarea, button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    box-sizing: border-box;
}

input[type="text"] {
    background-color: #eee;
    padding: 0.8rem;
    border-radius: 4px;
    width: 100%;
}

input[type="submit"], button[type="submit"] {
    color: #fff;
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;

    &:hover {
        opacity: 0.7;
        transition: all 0.3s;
    }
}

input[type="submit"] {
    background-color: #d01717;
}

button[type="submit"].back_btn {
    background-color: #7d7d7d;
}

textarea {
    background-color: #eee;
    padding: 0.8rem;
    border-radius: 4px;
    width: 100%;
}

select {
    padding: 10px 50px 10px 40px;
    color: #333;
}

.rental_con {
	padding: 10px;
    margin-top: 40px;

    @media screen and (min-width: 768px) {
        margin-top: 60px;
    }
}

h2 {
	font-size: 18px;
	margin: 0 0 30px;
	font-family: 'Roboto', "リュウミン R-KL", serif;
	line-height: 1.5;
	letter-spacing: .05em;

    @media screen and (min-width: 768px) {
        font-size: 20px;
    }

    .small {
        font-size: 13px;
    }
}

.con {

    margin-bottom: 35px;
    
    @media screen and (min-width: 768px) {
        margin-bottom: 70px;
    }

    p {
        line-height: 1.6rem;

        @media screen and (min-width: 768px) {
            line-height: 2.4rem;
        }
    }

    ul {
        margin-left: 1.3rem;

        li {
            list-style-type: disc;
        }
    }

    .table_wrap {
        overflow-x: auto;
    }

    table.rental_item {
        margin-bottom: 10px;
        width: 800px;

        @media screen and (min-width: 768px) {
            width: 100%;
        }

        th, td {
            border: 1px solid #e6e6e6;
        }

        td {
            padding: 1rem;

            dl {
                dt {
                    font-weight: bold;

                    .atn {
                        display: block;
                        font-weight: normal;
                    }
                }
            }
        }
    }
}

.con.form {

    @media screen and (min-width: 768px) {
        width: 100%;
    }

    th, td {
        display: block;

        @media screen and (min-width: 768px) {
            display: table-cell;
        }
    }

    th {
        font-family: 'Roboto', "リュウミン R-KL", serif;
        vertical-align: middle;
        text-align: left;
        border-top: 1px solid #e6e6e6;
        padding: 10px;
        font-size: 15px;

        @media screen and (min-width: 768px) {
            border-top: 1px solid #e6e6e6;
            border-right: 1px solid #e6e6e6;
            padding: 0 80px 0 20px;
            width: 29%;
        }

        .note {
            font-family: 'Roboto', "ゴシックMB101 R", 'メイリオ', Meiryo, sans-serif;
            display: block;
            font-size: 12px;
        }
    }

    td {
        padding: 10px;

        @media screen and (min-width: 768px) {
            border-top: 1px solid #e6e6e6;
            padding: 20px;
            width: 71%;
        }

        dl {

            @media screen and (min-width: 768px) {
                display: flex;
            }

            dt {
                @media screen and (min-width: 768px) {
                    flex: none;
                    width: 30%;
                    position: relative;
                    font-size: 13px;
                }

                span {
                    @media screen and (min-width: 768px) {
                        font-size: 12px;
                        color: #666;
                    }
                }
            }
        }

        &.required {
            dl {
                dt::after {
                    content: "必須";
                    display: inline-block;
                    background-color: #d01717;
                    color: #fff;
                    border-radius: 2px;
                    font-size: 11px;
                    line-height: 1;
                    padding: 5px;
                    margin-left: 1rem;
                }

                @media screen and (min-width: 768px) {
                    dt::after {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        left: -80px;
                        font-size: 13px;
                        margin-left: 0;
                    }
                }
                
            }
        }
    }

    .consent {
        display: none;
    }

}

.confirm_none {
    display: none;
}

.btn_area {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media screen and (min-width: 768px) {
        margin-top: 60px;
    }

    input[type="submit"], button[type="submit"] {
        width: 40%;
        margin: 0 10px;

        @media screen and (min-width: 768px) {
            width: 240px;
        }
    }
}

.p-country-name {
    display: none;
}