﻿@charset "UTF-8";

.remodal {
    position: relative;
    padding: 0!important;
    max-width: 1000px!important;
}

.remodal-close-btn {
    position: absolute;
    display: block;
    top: 15px;
    right: 15px;
    height: 25px;
    width: 23px;
    cursor: pointer;
}
    .remodal-close-btn::before,
    .remodal-close-btn::after {
        position: absolute;
        top: 12px;
        right: 10px;
        background: #676767;
        content: "";
        width: 1px;
        height: 30px;
        transition: 0.2s;
    }
    .remodal-close-btn::before {
        transform: translate(-50%,-50%) rotate(45deg);
    }
    .remodal-close-btn::after {
        transform: translate(-50%,-50%) rotate(-45deg);
    }
    .remodal-close-btn:hover::before,
    .remodal-close-btn:hover::after {
        background: #000000;
    }

.remodal-text-wrap {
    padding: 40px 50px;
    box-sizing: border-box;
}

.remodal-tit {
    margin-bottom: 20px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 1.2em;
}

.remodal-body {
    text-align: left;
}

.implementation-date {
    margin: 20px auto;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
}

.remodal-overlay {
    background: rgba(43, 46, 56, 0.6)!important;
}