@charset "UTF-8";

/*!
 * フラワーファシリティーズweb　メインcss
 */

@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/* 改行 */

.text {
    display: inline-block;
}


.wrapper {
    max-width: 100%;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
}

.nav {
    padding-top: 15px;
}

@media only screen and (max-width: 768px) {
    .nav {
        padding-top: 0;
    }
}

/* home */
.home {
    background-image: url(../img/home-topimg.jpg);
    background-size: cover;
    background-position: center;
}

#home-top .container {
    margin-top: -12em;
    padding-top: 36em;
    padding-bottom: 6em;
    background-image: url(../img/home-title.png);
    background-repeat: no-repeat;
}

#home-top .container img {
    padding-left: 15px;
    width: 450px;
}

#home-top .container p {
    padding-left: 15px;
    color: #07569C;
}

@media only screen and (max-width: 768px) {
    .home {
        background-image: url(../img/home-topimg.jpg);
        background-size: cover;
        background-position: top center;
    }

    #home-top .container {
        padding-top: 32em;
        padding-bottom: 0;
        max-width: 425px;
        margin: 0 auto;
        margin-top: -20em;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #home-top .container img {
        padding-left: 0px;
        width: 100%;
    }

    #home-top .container p {
        font-size: 1.1em;
        padding-top: 3em;
        padding-left: 15px;
        margin-bottom: 2em;
        color: #07569C;
    }
}

#home-3s {
    padding-top: 3em;
    padding-bottom: 2em;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.home-service {
    padding-left: 4em;
    background-image: url(../img/home-s3-side.jpg);
    background-repeat: no-repeat;
    background-size: 4em;
    max-width: 100%;
}

.home-service h2 {
    background-color: #CB1239;
    color: #FFF;
    font-size: 1.2em;
    padding: 0.2em;
}

.home-service p {
    padding: 0 2em 1em 1em;
}

.home-service .num {
    padding-right: 0;
    text-align: right;
}

@media only screen and (max-width: 768px) {
    .home-service .num {
        text-align: left;
    }
}

.pad0 {
    padding: 0;
    margin: 0;
    margin-bottom: -10px;
}

.s3 th{
    vertical-align: top;
}

.nowrap {
     white-space: nowrap;
}


/* cleaning */
#cleaning {
    background-image: url(../img/cleaning-topimg.jpg), url(../img/cleaning-L.jpg), url(../img/cleaning-R.jpg);
    background-position: top center, top 20em left, top 20em right;
    background-size: contain, 50%, 50%;
    ;
    background-repeat: no-repeat;
    padding-top: 15em;
}

.flow-container {
    width: 750px;
    max-width: 90%;
    margin: 0 auto;
    padding: 1.5em;
    background-color: #FFFFF4;
    text-align: center;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, .3);
}

@media only screen and (max-width: 768px) {
    #cleaning {
        padding-top: 2em;
    }
}

.flow-container h2 {
    width: 450px;
    max-width: 95%;
    margin: 0 auto;
}

.flow-head {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #A71D00;
}

.flow-next {
    display: block;
    margin: 1.2em auto;
}

.qa-container {
    max-width: 750px;
    margin: 0 auto;
    margin-top: 15px;
    padding-bottom: 5em;
    background-color: #FFF;
}

.qa-container h2 {
    width: 450px;
    max-width: 75%;
    margin: 0 auto;
}


.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}



.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.qa-list .open::before {
    transform: rotate(-45deg);
}

.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
    color: #A71D00;
}

.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #A71D00;
}

.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}

.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}

.qa-list dl dd p {
    margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .qa-list dl {
        position: relative;
        padding: 15px 40px 15px 10px;
    }

    .qa-list dl::before {
        top: 20px;
        right: 20px;
        width: 7px;
        height: 7px;
    }

    .qa-list dl dt {
        padding: 0 0 0 30px;
        font-size: 14px;
    }

    .qa-list dl dt::before {
        font-size: 14px;
        top: 3px;
        left: 5px;
        content: 'Q.';
    }

    .qa-list dl dd::before {
        font-size: 14px;
        top: 5px;
        left: 5px;
        content: 'A.';
    }

    .qa-list dl dd {
        margin: 10px 0 0;
        padding: 0 0 0 30px;
        font-size: 14px;
    }

    .qa-list dl dd p {
        margin: 30px 0 0;
    }

    .qa-list dl dd p:first-child {
        margin-top: 0;
    }
}


/* about */
#about {
    background-image: url(../img/about-topimg.jpg);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 10em;
}

@media only screen and (max-width: 768px) {
    #about {
        padding-top: 2em;
    }
}

#about h2 {
    width: 450px;
    max-width: 95%;
    margin: 0 auto;
}

#gree {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 15px;
    padding-bottom: 5em;
    text-align: justify;
}

#gree .photo {
    max-width: 350px;
    margin: 0 auto;
}

#gree .photo img {
    width: 100%;
    max-width: 350px;
    padding-bottom: 15px;
}

#gree p {
    padding: 0 1em;
}

#about-about {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 5em;
    background-image: url(../img/about-about-bg.jpg);
    background-size: 100%;
}


#about-about h2 {
    width: 450px;
    max-width: 95%;
    margin: 0 auto;
}

/* table01 */

#table01 {
    margin: 0 auto;
}

#table01 tr {
    border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
    padding: 15px 0;
    border: none;
}

#table01 th {
    width: 25%;
    min-width: 120px;
    padding: 0 1em;
    text-align: center;
}

/* sp */
@media only screen and (max-width: 768px) {

    #table01 th,
    #table01 td {
        width: 100%;
        display: block;
    }

    #table01 th {
        padding-top: 1em;
        width: 100%;
    }

    #table01 td {
        padding-top: 5px;
        ;
        text-align: center;
    }
}

#quality {
    max-width: 900px;
    margin: 5em auto;
    background-image: url(../img/about-quality.jpg);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

#quality p {
    text-align: center;
    padding: 0em 1em 3em 1em;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.5em;
}

/* mailform */

.mailform {
    background-color: #E9E9E0;
    background-image: url(../img/bottom-white.png);
    background-position: bottom;
}

.mailform h2 {
    width: 450px;
    max-width: 95%;
    margin: 0 auto;
}

.mailform p {
    text-align: center;
}

.to-mail {
    width: 1000px;
    max-width: 95%;
    margin: 50px auto;
    padding: 2em;
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

.mailad {
    padding-top: 15px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .mailad {
        line-height: 3;
    }
}

.mailcontact {
    background-color: #AD2500;
    color: #FFF;
    padding: 0.5em;
    margin-right: 1em;
}




/* footer */

.ft-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 10em;
}

.ft-links a {
    text-decoration: none;
    color: #333;
}

footer {
    padding-top: 2em;
    background-image: url(../img/footer-bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
    footer {
        padding-top: 2em;
        background-position: bottom center;
        background-size: contain;
    }
}

footer p {
    padding: 0.5em 0;
    margin-top: 2em;
    margin-bottom: 0;
    color: #FFF;
    font-size: 0.8em;
    text-align: center;
    background-color: #203883;
}
