html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: メイリオ, ヒラギノ角ゴシック, Arial;
    font-style: normal;
    font-feature-settings: "palt";
    color:#222;
}

a {
    color:#fff;
    text-decoration: underline;
}

img {
    width: 100%;
}

/* 追従CVボタン */
.fixed-cv-btn { 
    position: fixed;
    bottom:12px;
}
.fixed-logo { 
    position: fixed;
    top:0;
}


/* ご相談フォーム */
.cv-form {
    padding-top:84px;
}

.cv-form h2 { 
    margin:0 0 20px;
}

.form-text,
.c-form {
    padding:0 20px;
}

.form-text {
    margin: 0 0 30px;
    line-height: 1.7em;
}

.c-form_box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.c-form_label {
    width: 100%;
    padding-bottom: 10px;
}

.c-form_input {
    width: 100%;
    font-size: 16px;
    border: solid 1px #aaa;
    border-radius: 4px;
    padding: 10px;
}

.c-form_textarea {
    height: 188px;
}

.c-form_input:focus-visible {
    outline: #f09595 auto 1px;
}

.c-form_required {
    padding: 5px 5px;
    margin: 0 0 0 6px;
    color: #fff;
    background: #f09595;
    border-radius: 4px;
    font-size: 0.7rem;
}

.c-form_box .atten {
    margin-top:5px;
    color:#999;
}

.c-form_submit {
    text-align: center;
}

.c-form_submit button {
    padding: 18px 26px 26px;
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
    background: #f09595;
    border-radius: 20px;
    width: 100%;
    transition: 0.4s;
    cursor: pointer;
    border: none;
}

.c-form_submit button span{
    font-size: 18px;
}

.c-form_submit button:hover {
    color: #f09595;
    background: #fff;
    border: 1px solid #f09595;
}

/* フッター */
footer {
    margin:80px 0 0;
    padding:20px 0;
    background: #f09595;
    color:#fff;
    text-align: center;
}

footer p {
    margin:0 0 10px;
}


/* PC幅 */
@media (min-width: 700px) {

main.lp-page {
    margin: 0 auto;
    padding: 0;
    max-width: 700px;
}

.form-text,
.c-form {
    padding:0;
}

.c-form_submit button {
    width: 70%;
}

.c-form_box {
    flex-wrap: nowrap;
}

/* フッターPC */
footer {
    margin:80px auto 0;
    width:100%;
}

}