/* 会員画面要素 */
h1 {
    font-size: 32px;
    color: #41694D;
    margin-top: 3.8em;
    margin-bottom: 1.3em;
    font-weight: bold;
    line-height: normal;
}

.button-link {
    text-decoration: none;
    color:inherit;
}

.button-link:hover {
    text-decoration: none;
    color:inherit;
}

.description {
    background-color: #fff;
    width: 80%;
    padding: 2.5em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
}

.main-txt {
    margin: 0;
    font-size: 22px;
    text-align: left;
}

.g-txt-b {
    font-size: 22px;
    color: #41694D;
    font-weight: bold;
    margin: 0;
}

.blue-link {
    font-size: 22px;
    color: #00539A;
    font-weight: bold;
}

.positive-btn {
    margin-top: 80px;
    width: 15.7em;
    height: 3.4em;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    background-color: #80B18F;
    color: #fff;
    border: none;
}

.negative-btn {
    margin-top: 40px;
    width: 15.7em;
    height: 3.4em;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    background-color: #fff;
    color: #00539A;
    border: 4px solid #00539A;
}

.add-btn {
    margin-top: 40px;
    width: 10em;
    height: 1.6em;
    border-radius: 50px;
    font-size: 30px;
    font-weight: bold;
    background-color: #fff;
    color: #00539A;
    border: 4px solid #00539A;
}

input {
    background-color: #EAEDF0;
    border: none;
}

/* 540px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 540px) {    
    /* 会員画面要素 */
    h1 {
        font-size: 20px;
        margin-bottom: 1em;
    }

    .description {
        padding: 0.5em;
        width: 92%;
        border-radius: 20px;
    }

    .main-txt {
        font-size: 12px;
    }

    .g-txt-b {
        font-size: 12px;
    }
    
    .blue-link {
        font-size: 12px;
    }

    .positive-btn {
        margin-top: 40px;
        font-size: 16px;
    }

    .negative-btn {
        margin-top: 20px;
        font-size: 16px;
        border: 2px solid #00539A;
    }
}