@charset "UTF-8";

#Area_contact {
    padding: 4em 2em;
    box-sizing: border-box;

    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}
    #Area_contact {
        background-image: url("../img/bg-contact.png");
        background-color: rgba(255,255,255,0.8);
    }

#Area_contact h2 {
    color: #ff911e;
    background: -moz-linear-gradient(left,  #ff911e 0%, #f5cc12 100%);
    background: -webkit-linear-gradient(left,  #ff911e 0%,#f5cc12 100%);
    background: linear-gradient(to right,  #ff911e 0%,#f5cc12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Bg-contact-tel,
.Bg-contact-mail {
    display: block;

    width: 70%;
    min-width: 370px;

    margin: 2em auto 0;
    padding: 2px;
    box-sizing: border-box;

    background-color: #fff;
    box-shadow: 4px 4px 4px #C0C0C0;
}
    .Bg-contact-tel {
        background: #80a426; /* Old browsers */
        background: -moz-linear-gradient(left,  #80a426 0%, #d4c218 100%);
        background: -webkit-linear-gradient(left,  #80a426 0%,#d4c218 100%);
        background: linear-gradient(to right,  #80a426 0%,#d4c218 100%);
    }
    .Bg-contact-mail {
        background: #ff911e; /* Old browsers */
        background: -moz-linear-gradient(left,  #ff911e 0%, #f7be15 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left,  #ff911e 0%,#f7be15 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right,  #ff911e 0%,#f7be15 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

.contact-tel,
.contact-mail {
    display: block;
    position: relative;

    width: 100%;
    height: 100%;

    padding: 1.4em 1em;
    box-sizing: border-box;

    font-size: 18px;
    font-weight: bold;
    text-indent: 40px;
    text-align: center;

    background-color: #fff;
}
    .contact-tel {
        color: #7EA622;
        text-indent: 2.5em;
        letter-spacing: 2px;
    }
    .contact-mail {
        color: #FF9529;
        text-indent: 3.5em;
        letter-spacing: 2px;
    }
        .contact-tel::before,
        .contact-mail::before {
            display: inline-block;
            position: absolute;
            top: 30px;
            right: 0;
            left: 0;
            bottom: 0;

            width: 40px;
            height: 100%;

            margin: auto;

            content: "";
        }
            .contact-tel::before {
                left: -8.5em;
                background: url(../img/icon-tel.png) no-repeat;
            }
            .contact-mail::before {
                top: 42px;
                left: -11.5em;
                background: url(../img/icon-mail.png) no-repeat;
            }

        .contact-tel:hover,
        .contact-mail:hover {
            color: #fff;
            background: transparent;
        }

            .contact-tel:hover::before {
                background: url(../img/icon-tel-white.png) no-repeat;
            }
            .contact-mail:hover::before {
                background: url(../img/icon-mail-white.png) no-repeat;
            }


footer {
    position: relative;

    padding: 3em 2em 2em;
    box-sizing: border-box;

    background: #80a426;
    background: -moz-linear-gradient(75deg,  #80a426 44%, #bdb81c 100%);
    background: -webkit-linear-gradient(75deg,  #80a426 44%,#bdb81c 100%);
    background: linear-gradient(75deg,  #80a426 44%,#bdb81c 100%);
}

    #Area_footer_left_right {
        overflow: auto;
    }

    #Area_footer_left {
        float: left;

        width: 90%;
        height: 420px;
    }

        #logo_footer {
            width: 190px;
        }

        #nav_footer {
            margin-top: 2em;
            margin-left: 3em;
        }

            #nav_footer ul li {
            }

            #nav_footer ul li~li {
            }

            #nav_footer ul li a {
                padding: 1em 0;
                box-sizing: border-box;

                color: #fff;
                letter-spacing: 2px;
                font-weight: lighter;
            }

    #Area_footer_right {
        float: left;

        width: 10%;
    }


        #Area_footer_right a {
            display: block;
            float: right;
            position: relative;

            margin-right: 1em;

            color: #545448;
            font-size: 15px;
            text-indent: 4em;
            letter-spacing: 2px;
            writing-mode: vertical-rl;
        }
            #Area_footer_right a::before,
            #Area_footer_right a::after {
                display: block;
                position: absolute;
                top: 0;

                width: 1px;

                background-color: #545448;

                content: "";
            }
                #Area_footer_right a::before {
                    left: 7.5px;

                    height: 3em;
                }
                #Area_footer_right a::after {
                    left: 0.7em;

                    height: 0.5em;
                    transform: rotate(135deg);
                }




    #copyright {
        position: relative;

        margin-top: 6em;

        color: #fff;
        font-weight: lighter;
        letter-spacing: 1px;
    }
        #copyright::before {
            display: block;
            position: absolute;
            top: -2.3em;

            width: 7em;
            height: 1px;

            background-color: rgba(255, 255, 255, 0.6);
            content: "";
        }





/* ■□■――――――――――――――――■□■
            ＳＰーＰＣ ②
■□■―――――――――――――――――■□■ */
@media screen and (min-width:870px) {

.Box-contact-btn {
    display: flex;
    justify-content: center;
}

.Bg-contact-tel,
.Bg-contact-mail {
    width: 40%;
}

    .Bg-contact-tel {
        margin-right: 1em;
    }

    .Bg-contact-mail {
    }



}/* @media screen and (min-width:870px) */



/* ■□■――――――――――――――――■□■
            ＰＣ
■□■―――――――――――――――――■□■ */
@media screen and (min-width:1000px) {


#Area_footer_left {
    height: 100%;
}

    #Area_footer_left > a {
        float: left;
    }

#nav_footer {
    float: right;

    width: calc(100% - 190px);
    max-width: 670px;

    margin: 0;
}

    #nav_footer ul {
        display: flex;

        height: 36px;

        margin-left: 3em;

        justify-content: space-between;
        align-items: center;
    }

        #nav_footer ul li {
            text-align: center;
        }
            #nav_footer ul li~li {
                margin-top: 0;
            }

        #nav_footer ul li a {
            padding: 1em 1em;
        }

#copyright {
    margin-top: 6.7em;
}
    #copyright::before {
        top: -1em;
    }

}/* @media screen and (min-width:1000px) */


