@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #140a04;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

.common_content_area {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

.header nav {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 10%;
}

.header a {
    padding: 10px 0;
    transition: 0.3s;
}

.header a:hover {
    border-bottom: 2px solid #05b084;
    color: #05b084;
}

.main_title {
    text-align: center;
    line-height: 6;
    font-size: 34px;
    font-weight: 700;
    color: #ae8b68;
    text-shadow: 1px 1px 1px #fff,
        -1px 1px 1px #fff,
        1px -1px 1px #fff,
        -1px -1px 1px #fff;
    height: 210px;
    background-image: url(../image/image_loginpage_top.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.wrapper {
    width: 82%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
}

.wrapper p {
    margin-top: 10px;
}

dt {
    margin-top: 60px;
}

dd {
    margin-left: 1em;
}

.mailadress {
    width: 88%;
}

.second_line {
    margin-left: 1em;
}

.check_button_container {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.check_button {
    border: 1px solid #05b084;
    border-radius: 10px;
    background-color: #05b084;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    padding: 5px 10px;
    transition: 0.3s;
}

.check_button:hover {
    background-color: #3c8775;
}

.button_re_enter {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.re_enter {
    border: 1px solid #140a04;
    font-size: 16px;
    line-height: 1.4;
    padding: 5px 10px;
    transition: 0.3s;
}

.re_enter:hover {
    color: #05b084;
    border: 1px solid #05b084;
}

.footer_copyright {
    margin-top: 100px;
    text-align: center;
    background-color: #f5efe9;
}

/* レスポンシブ */
@media screen and (max-width: 500px) {
    body {
        line-height: 1.5;
    }

    .header nav {
        margin-left: 0%;
        text-align: center;
    }

    .header a {
        font-size: 14px;
    }

    .main_title {
        font-size: 26px;
        line-height: 3;
        height: 130px;
    }

    .wrapper {
        width: 95%;
    }

    .footer_copyright {
        font-size: 12px;
        margin-top: 30px;
    }
}