@charset "UTF-8";

/* ==========================================================
   consent.css
   個人情報保護方針 同意ページ
========================================================== */


/* ==========================================================
   01. Base
========================================================== */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;

    background:#f5f7fb;

    color:#333;
    font-family:"Yu Gothic",sans-serif;
}


/* ==========================================================
   02. Layout
========================================================== */

.container{
    width:calc(100% - 40px);
    max-width:800px;

    margin:60px auto;
    padding:40px;

    background:#fff;

    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}


/* ==========================================================
   03. Title
========================================================== */

h1{
    margin:0 0 20px;

    color:#0f5cff;

    font-size:24px;
}

.title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.title-row h1{
    margin:0;
    color:#003399;
    font-size:24px;
}


.back-top{
    font-size:.9rem;
    color:#666;
    text-decoration:none;
    transition:.2s ease;
}

.back-top:hover{
    color:#0f5cff;
}

/* ==========================================================
   04. Privacy Text
========================================================== */

.text-box{
    padding:20px;

    background:#f9fbff;

    border:1px solid #dbe7ff;
    border-radius:10px;

    color:#444;

    font-size:14px;
    line-height:1.8;
}


/* ==========================================================
   05. Checkbox
========================================================== */

.checkbox{
    display:flex;
    align-items:center;
    gap:10px;

    margin-top:25px;
}


/* ==========================================================
   06. Button
========================================================== */

.btn-area{
    margin-top:30px;
    text-align:center;
}

button{
    padding:15px 40px;

    background:#0f5cff;

    border:none;
    border-radius:30px;

    color:#fff;

    font-size:16px;

    cursor:pointer;

    opacity:.5;
    transition:.25s ease;
}

button.active{
    opacity:1;
}


/* ==========================================================
   07. Responsive
========================================================== */

@media (max-width:600px){

    .container{
        margin:30px auto;
        padding:25px 20px;
    }

    h1{
        font-size:21px;
    }

    button{
        width:100%;
        padding:14px 20px;
    }
}

/* ==========================================================
   08. Error Message
========================================================== */

.agree-error{

    display:none;

    margin-top:12px;

    color:#d32f2f;

    font-size:14px;

    text-align:center;
}

.agree-error.show{

    display:block;
}
