@charset "UTF-8";

.select_title {
	margin-bottom: 20px;
	position: relative;
}

/* 敷布団キルティング有無選択 */
.compare_table {
    width: 100%;
}
.quilting_img {
    width: 100%;
    object-fit: cover;
}

.video_box {
    margin-top: 20px;
    text-align: center;
}
#play_video {
    cursor: pointer;
}
#play_video p {
    font-weight: bold;
    display: inline-block;
}
.play_button {
    width: 18px;
    position: relative;
    top: 3px;
}
.caution {
    font-size: 12px;
}

/* モーダルウィンドウ */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    flex-direction: column;
}
.modal_content {
    width: 90%;
    margin: 40% auto;
}
.modal_body {
    position: relative;
    text-align: right;
}
.modal_video {
    width: 100%;
    object-fit: contain;
}
.close_button {
    width: 32px;
    position: relative;
    top: 16px;
    left: 16px;
    cursor: pointer;
}
.modal.show {
    display: block;
    animation: show .2s linear;
}
@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 素材の選択 */
.select_box {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #555555;
    background: #ffffff;
    font-size: 18px;
    width: 100%;
    margin: 20px 0;
    padding: 20px 10px;
    border: 1px solid #555555;
    border-radius: 10px;
    position: relative;
}
.select_box option {
    color: #555555;
    background: #ffffff;
}

.select_wrap {
    position: relative;
}

.select_wrap:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 48px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #555555;
    border-left: 2px solid #555555;
    transform: translateY(-50%) rotate(-135deg);
    font-size: 20px;
    pointer-events: none;
}

.submit_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #ffffff;
    font-size: 16px;
    display: block;
    width: -webkit-fill-available;
    width: -moz-available;
    text-align: center;
    border: none;
    cursor: pointer;
}
.indicate {
    outline: solid 4px #EB614B;
}
.error_message {
    color: #EB614B;
}