@charset "UTF-8";

/*=======
ふわっと
=========*/
.main-visual {
    animation-name: main-visual;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes main-visual {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}

/*=======
KV
=========*/

.main-visual {
    background: url(http://www.eastcoast.co.jp/img/kv_2x@2x.jpg)no-repeat center center;
    /* background: url(../../img/kv_2x@2x.jpg)no-repeat center center;*/
    height: 100%;
    filter: brightness(75%);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.main-visual-text {
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.5);
}

.main-visual-text p {
    font-size: var(--size-md);
    color: var(--text-color);
    font-family: var(--font-sans);
    text-align: center;
}

.main-visual-text h2 {
    font-weight: bold;
    font-size: var(--size-xl);
    color: var(--text-color);
    font-family: var(--font-sans);
}


@media screen and (max-width:480px) {

    .main-visual .main-visual-text p {
        text-align: center;
    }

    .main-visual .main-visual-text h2 {
        text-align: center;
        font-size: x-large;
    }
}

@media screen and (min-width:960px) {
    .main-visual {
        margin-top: var(--contents-gutter-pc);
    }
}


/*===========
会社概要
===============*/
.section:nth-child(even) {
    background-color: #fff;
    padding: var(--section-gutter)0;
}

.section1 .section1_inner h2 {
    text-align: center;
    margin-bottom: var(--contents-gutter);
}

.section1 .section1_inner .section1_text {
    text-align: center;
}

@media screen and (min-width:960px) {

    .section1 .section1_inner .section1_text:last-child {
        margin-bottom: var(--contents-gutter-pc);
    }

    /*====min-width:960px======*/

}

@media screen and (max-width: 480px) {
    .section1 .section1_inner h2 {
        text-align: center;
    }

    .section1 .section1_inner p {
        text-align: center;
    }

    .section1 .section1_inner p:last-child {
        text-align: center;
        padding-bottom: 40px;
    }

}

/*===========
section2
===============*/

.section2 {
    background-color: #F3F2F2;
    height: auto;
    margin-bottom: 80px;
}

.flex-parent {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
}

.flex-child {
    width: 30%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 480px) {
    .flex-parent {
        flex-direction: column;
        margin-bottom: 0;
    }

    .flex-child {
        width: 100%;
        margin-bottom: 20px;
    }

}

/*===========
section3
===============*/
.img-container {
    display: flex;
    /* flexbox */
    justify-content: center;
    /* 水平方向 */
    align-items: center;
    /* 垂直方向 */
    margin-bottom: 80px;
}

.img-container .section3_inner {
    margin-left: 80px;
}

.img-container .section3_inner h2 {
    margin-bottom: 40px;
}

.img-container .section3_inner p {
    margin-bottom: 15px;
}

.img-container .section3_inner a {
    display: block;
    text-align: center;
}



@media screen and (max-width: 480px) {
    .img-container {
        flex-direction: column;
        margin-bottom: 0;
    }

    .img {
        width: 100%;
        margin-bottom: 30px;
    }

    .section3_inner {
        width: 100%;
        margin-bottom: 30px;
    }

    .img-container .section3_inner {
        margin-left: 0;
        text-align: center;
    }

    .img-container .section3_inner p {
        margin-top: 15px;
        margin-bottom: 0px;
    }

}

.btn_service {
    border-radius: 6px;
    margin-bottom: 80px;
    margin-top: 32px;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 150px;
    display: block;
    letter-spacing: 0.05em;
    background: #FBB161;
    color: #fff;
    border-style: none;

}

.btn_service:hover {
    background-color: #e38f33;
}

@media screen and (max-width: 480px) {
    .btn_service {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
        margin-left: auto;
    }
}

/*===========
お問い合わせ
===============*/
.section4 {
    background-color: #F3F2F2;
    height: auto;
}

.box-wrap {
    display: flex;
    max-width: 1128px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

.box-text {
    margin-top: 64px;
}

.box-text .section4_ledtext {
    color: #c7000b;
}

.box-text h2 {
    padding-bottom: 16px;
}

.box-wrap.box-text {
    display: block;
    text-align: center;
    margin-left: 100px;
}

.Form {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    padding-top: 32px;
    padding-bottom: 32px;
}

@media screen and (max-width: 480px) {

    .box-wrap {
        flex-direction: column;
    }

    .box-wrap .box-text {
        text-align: center;
    }

    .Form {
        margin-top: 40px;
    }

}

.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    /*display: flex;*/
    align-items: center;
}

@media screen and (max-width: 480px) {
    .Form-Item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #c7000b;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    /*margin-left: 40px;*/
    padding-left: 2em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    /*  margin-left: 40px;*/
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    border-radius: 6px;
    margin-bottom: 80px;
    margin-top: 32px;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 200px;
    display: block;
    letter-spacing: 0.05em;
    background: #FBB161;
    color: #fff;
    font-size: 20px;
    border-style: none;

}

.Form-Btn:hover {
    background-color: #e38f33;
}

@media screen and (max-width: 480px) {
    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
        margin-left: auto;
    }
}

/*===========
改行について追記（sp） 2024/3/21
===============*/
.sp_br {
    display: none;
    /*768px以上では改行タグを無効に。*/
}

@media screen and (max-width: 768px) {
    .sp_br {
        display: block;
        /*768px未満で改行タグを有効に。*/
    }
}