@charset "utf-8";
.top-pdf { text-align: center;  margin-top: 30px;}

#report{
    width: 90%;
    max-width: 1100px;
    background-color: rgba(255, 255, 0, 0.05);
    border: 1px solid #35a5d5;
    margin: 50px auto;
}
.report-txt{
    width: 90%;
    font-size: 120%;
    text-align: center;
    line-height: 1.6;
    margin: 30px auto;
}
.report-privacy{
    color: #0064ba;
    text-align: center;
    text-decoration: underline;
}
.report-mail{ margin: 30px 0 50px; }
.report-mail .flex{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.report-mail .any{ margin-bottom: 30px; }
.report-mail .any .txt{ margin-bottom: 5px; }
.report-mail .any .txt span{ color: #00155b; }
.report-mail .mail-name,
.report-mail .mail-tel{
    width: 39%;
    margin: 0 1%;
}
.report-mail .mail-addr{
    width: 80%;
    margin-top: 10px;
}
.report-mail .mail-input,
.report-mail .mail-btn{
    height: 64px;
    margin: 0 1%;
}
.report-mail .mail-input{ width: 48%; }
.report-mail .mail-btn{ width: 30%; }
.report-mail .mail-name input,
.report-mail .mail-tel input,
.report-mail .mail-addr input,
.report-mail .mail-input input{
    width: 100%;
    height: 100%;
    border: 1px solid #35a5d5;
    box-sizing: border-box;
    font-size: 18px;
    padding: 0 10px;
}
.report-mail .mail-name input,
.report-mail .mail-tel input,
.report-mail .mail-addr input{
    height: 50px;
}
.report-mail .mail-btn input{
    width: 100%;
    height: 100%;
    background-color: #ed1c24;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 64px;
    padding: 0;
    cursor: pointer;
}


/* 全体設定 */
* { box-sizing: border-box; }
/* ポップアップウインドウの設定 */
.popup {
    background-color: rgba(0, 0, 0, .8);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 999;
}
/* チェックボックスの初期設定 */
#popup-on{ display: none; }
/* チェックされたらポップアップウインドウを開く */
#popup-on:checked + .popup{ display: block; }
/* 閉じるアイコン（右上） */
.icon-close{
    color: #000000;
    font-size: 50px;
    padding: 0 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    line-height: 1;
}
/* 閉じるボタン */
.btn-close{
    background: #000;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    margin: 10px auto;
    width: 95%;
    text-align: center;
}
/* 開くボタン */
.btn-open{
    display: inline-block;
    cursor: pointer;
    margin: 10px auto;
    text-align: center;
    border-bottom: 1px solid #0064ba;
    padding-bottom: 10px;
}
/* ポップアップの内容 */
.popup-content{
    display: inline-block;
    max-width: 1010px;
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    line-height: 1.6;
    margin-top: 100px;
    padding: 30px 45px 50px;
    position: relative;
    overflow-y: scroll;
}
  
@media screen and (max-width:767px) {
    .report-txt{
        font-size: 100%;
        text-align: left;
    }
    .report-mail .mail-name,
    .report-mail .mail-tel,
    .report-mail .mail-addr,
    .report-mail .mail-input,
    .report-mail .mail-btn{
        width: 90%;
        margin:  auto;
    }
    .report-mail .mail-tel,
    .report-mail .mail-addr{ margin-top: 10px; }
    .report-mail .mail-input{ margin-bottom: 20px; }
    .report-mail .mail-input,
    .report-mail .mail-btn{ height: 50px; }
    .report-mail .mail-btn input{
        font-size: 14px;
        line-height: 50px;
    }
    .popup-content{
        height: 100%;
        padding: 0 5%;
        margin-top: 0;
    }
    .icon-close{ font-size: 30px; }
    .privacy-txt{ padding: 30px 0; }
    #report{ margin-top: 70px; }
}