@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    /*outline: 1px solid blue;*/
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 400;
    font-style: normal;
    color: #0F0F0F;
    background-color: #fcfcfa;
    /*padding: 0 7vw;*/
}


/*imgが親要素の幅！縦横比を保って高さが決まる*/
img {
    max-width: 100%;
    height: auto;
}

/*リンク文字色とホバー*/
a:link {
    color: #0F0F0F;
}

a:visited {
    color: #0F0F0F;
    text-decoration: none;
}

a:hover {
    color: #C1643C;
    text-decoration: none;
    transition: 0.5s all;
}


/*ここからbodyの内容*/

/*パンくずリスト*/
.breadcrumb li {
    display: inline-block;
    font-weight: bold;
    padding: 5px;
}

/* >を表示*/
.breadcrumb li:after {
    content: url(images/icon右.png);
    vertical-align: middle;
  
}

.breadcrumb li:last-child:after {
    content: '';
}
.breadcrumb li:first-child a:before {
    content: url(images/icon家.png);
    vertical-align: middle;

}
.breadcrumb li a {
    text-decoration: none;
}
.breadcrumb  {
    background-color: #F1E9DC;
    padding: 10px 0 10px 20px;
}
.tomo{
    text-align: center;
    background-color: #F3CD7A;
    padding:  10px;
}
.tomo img {
    width: 30vh;
    height: auto;
}



/*メイン画像*/
.mainpic {
    width: 30%;
    margin: 40px auto;
}

.warap {
    display: flex;
    padding: 0 7vw;
}

/*クライアント*/
.warap .name {
    width: 25%;

}

h1 {
    font-size: 2.7rem;
    font-weight: bold;
}

.name p {
    font-size: 2.3rem;
}

/*ご依頼*/
.service {
    padding-top: 100px;
    /*margin: 0 auto;*/
    width: 75%;
}

.service .text {
    margin-bottom: 70px;
    line-height: 1.7;
}

.service .about {
    margin-bottom: 60px;
    padding: 10px 10px 20px 20px;
    border: solid 3px #F7DDA6;
}

h2 {
    font-size: 2rem;
}

.service p {
    margin-top: 10px;
}




/*お庭の画像*/
.caption ul {
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.caption ul li {
    margin-right: 10px;
}

.service .text3 {
    margin-top: 50px;
}

/*一番下の説明*/

.work {
    margin-top: 50px;
    padding: 0 7vw;
}

.work h3 {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
}

.home {
    font-size: 2rem;
    margin-top: 50px;
    padding-bottom: 30px;
    padding: 30px 7vw;
    background-color: #F3CD7A;

}


/*ブラウザ幅が559px以下のとき（スマホ）*/

@media (max-width:559px) {
    .warap {
        display: block;
    }

    .warap .name {
        padding-left: 20px;
    }

    .service {
        width: 90%;
        margin: 0 auto;
        padding-top: 70px;
    }

    .mainpic {
        width: 60%;
    }

    h1 {
        font-size: 2.2rem;
    }

    .name p {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

}

/*ブラウザ幅が959px以下のとき*/

@media (max-width:959px) {
     .tomo img {
        width: 25vh;
        height: auto;
    }

}


/*ブラウザ幅が1100px以上のとき最終的に〜の改行なし*/
@media (min-width:1100px) {
    .service .separator {
        display: none;
    }

}