.hTitle {
    font-family: 'Dancing Script';
    text-align: center;
    font-size: 60px;
}

.hImg {
    display: flex;
    justify-content: space-around;
}

.hImg .hImgItem {
    width: 30%;
}

.hImg .hImgItem img {
    width: 100%;
}

.portfolio {
    background-color: bisque;
}

.pTitle {
    background-color: darkseagreen;
    text-align: center;
    font-size: 35px;
    letter-spacing: 2px;
}

/* 目次エリア */
.tableOfContents {
    position: relative;
    height: 250px;
}

.tableOfContents h4 {
    padding-top: 30px;
    text-align: center;
    font-size: 30px;
}

.tableOfContents .tocList {
    position: absolute;
    left: 20%;
    font-size: 18px;
}

.tableOfContents .tocList li {
    margin-bottom: 5%;
}

.tableOfContents .tocList>li {
    position: relative;
    padding: 0px 0px 0px 1em;
}

.tableOfContents .tocList>li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.3em solid transparent;
    border-left: 0.4em solid #3388dd;
    content: "";
}

/* プロフィールエリア */

.profile {
    margin-bottom: 5%;
}

.profile h4 {
    padding-top: 30px;
    text-align: center;
    font-size: 30px;
}

.profile .profileArea {
    margin-top: 3%;
}

.profile .proImg img {
    width: 100%;
    border-radius: 50%;
}

.profile .proTxt {
    font-size: 16px;
}

/* デザイン例エリア */

.designArea {
    margin-top: 3%;
    margin-bottom: 3%;
}

.designArea .deImg img {
    width: 100%;
}

.designArea .deTxt {
    font-size: 16px;
}

/* 納品までの流れと料金 */

.flowArea {
    width: 75%;
    margin: auto;
}

.flowArea img {
    width: 100%;
}

.priceArea {
    width: 85%;
    margin: auto;
    padding-top: 5%;
    padding-bottom: 5%;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table th:first-child {
    border-radius: 5px 0 0 0;
}

table th:last-child {
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
}

table th {
    text-align: center;
    color: white;
    background: linear-gradient(#829ebc, #225588);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
    width: 25%;
    padding: 10px 0;
}

table td {
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top: none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    width: 25%;
    padding: 10px 0;
}

table td:last-child {
    border-right: 1px solid #a8b7c5;
}

table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
}

/* PC */
@media screen and (min-width: 768px) {

    /* 目次エリア */
    .tableOfContents .tocList {
        left: 40%;
    }

    /* プロフィールエリア */
    .profileArea {
        display: flex;
        width: 75%;
        margin: auto;
    }

    .profileArea .proImg {
        width: 20%;
    }

    .profileArea .proTxt {
        width: 60%;
        margin-left: 5%;
    }

    /* デザイン例エリア */
    .designArea {
        width: 95%;
        margin: 3% auto;
        display: flex;
        justify-content: space-around;
    }

    .designArea .deImg {
        width: 40%;
    }

    .designArea .deTxt {
        width: 40%;
    }

}