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

.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;
        }
    }

    td {
        border-top: 1px solid #e6e6e6;
        padding: 10px;

        @media screen and (min-width: 768px) {
            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;
    }

}