@charset "utf-8";

/* --------------- section-top --------------- */

.section-top {
    margin-top: 140px;
}

.section-top h3 {
    font-size: 1.4rem;
    font-family: "EB Garamond", serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-top h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.section-top__image {
    width: 100%;
    height: 300px;
    margin-bottom: 60px;
}

.section-top__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.section-top__image.PC {
    display: none;
}

.section-top__p {
    text-align: center;
    margin-bottom: 40px;
}

.section-top__p p {
    font-size: 1.4rem;
}

@media(min-width:414px) {
    .section-top__image img {
        margin-top: 0;
        margin-bottom: 0;
        object-fit: cover;
        object-position: 30% 90%;
    }

    .section-top__image.PC {
        display: block;
    }

    .section-top__image.SP {
        display: none;
    }
}
@media(min-width:1040px) {
    .section-top {
        margin-top: 180px;
    }

    .section-top h3 {
        font-size: 2.0rem;
        margin-bottom: 30px;
    }

    .section-top h1 {
        font-size: 4.8rem;
        margin-bottom: 100px;
    }

    .section-top__image {
        height: 600px;
        margin-bottom: 100px;
    }

    .section-top__image img {
        height: 600px;
    }

    .section-top__p {
        margin-bottom: 80px;
    }

    .section-top__p p {
        font-size: 1.6rem;
    }

    .SP_br {
        display: none;
    }
}

/* --------------- section-form --------------- */

.contact-form {
    padding: 0 20px;
    text-align: left;
    max-width: 315px;
    margin: 0 auto 100px auto;
}

.contact-form p {
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    display: block;
    width: 100%;
    height: 30px;
    padding: 0 10px;
    border: solid 1px #191b28;
    border-radius: 5px;
}

.contact-form input[placeholder] {
    font-size: 1.2rem;
    font-family: fot-tsukumin-pr6n, YuMincho, 游明朝, "EB Garamond", "Times New Roman", Hiragino Mincho ProN, HGS明朝B, "ＭＳ Ｐ明朝", sans-serif;
}

.contact-form textarea {
    height: 300px;
    font-family: fot-tsukumin-pr6n, YuMincho, 游明朝, "EB Garamond", "Times New Roman", Hiragino Mincho ProN, HGS明朝B, "ＭＳ Ｐ明朝", sans-serif;
}

.contact-form p label {
    font-weight: 900;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
}

p.form_re-email {
    margin-bottom: 0;
}

.section-form_atention {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-left: 10px;
}

.button-content {
    text-align: center;
}

.button {
    width: 230px;
    position: relative;
    display: inline-block;
    padding: 20px 10px;
    transition: 0.3s;
    color: #ffffff;
    /* 文字色 */
    font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
    font-size: 1.6rem;
    border-radius: 50px;
    background: #191b28;
    /* 背景色 */
    /* box-shadow: 0 6px 0 #3a2517; */
    margin: 40px auto 0 auto;
    letter-spacing: 0.1rem;
}

.button span {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button span::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-top: 2px solid #fff;
    /* 矢印の色 */
    border-right: 2px solid #fff;
    /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -5px;
}

@media(min-width:768px) {
    .contact-form {
        padding: 0;
        max-width: 728px;
        margin: 0 auto 200px auto;
    }

    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"],
    .contact-form textarea {
        display: inline-block;
        padding: 0 10px;
        width: 520px;
        height: 40px;
    }

    .contact-form input[placeholder] {
        font-size: 1.4rem;
    }

    .contact-form p label {
        font-size: 1.6rem;
        display: inline-block;
        margin-bottom: 0;
        width: 170px;
        vertical-align: top;
    }

    .section-form_atention {
        padding-left: 190px;
    }

    .contact-form textarea {
        height: 300px;
    }

    .button {
        width: 250px;
        margin: 60px auto 0 auto;
    }
}

/* --------------- footer --------------- */

.footer {
    background-color: #eceff0;
    /* min-height: 100vh; */
}

.footer__top {
    border-color: #191b28;
}

.top_arrow {
    border-top: 3px solid #191b28;
    border-right: 3px solid #191b28;
}

.footer__container {
    color: #191b28;
}

.footer small {
    color: #191b28;
    margin-bottom: 30px;
}

@media(min-width:960px) {

    .footer small {
        margin-bottom: 0;
    }
}