@charset "utf-8";

/* ========================
common
=========================*/
html {
    font-size: 62.5%;
}

body {
    font-family:
        "Montserrat",
        "Yu Gothic UI",
        "Yu Gothic",
        sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #696868;
    background-color: #fff;
    line-height: 1.5;
    padding: 0 6.8%;
}

img{
    max-width: 100%;
    height: auto;
}

/* ========================
breadcrumb__list
=========================*/

.breadcrumb__list {
    display: flex;
    justify-content: end;
    margin: 50px 10px;
}

.breadcrumb__item a{
    font-size: 1.0rem;
    font-weight: 400;
    color: #696868;
    display: inline-flex;     
    position: relative;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
}

.breadcrumb__item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #5c9bb8;
    transition: width 0.3s ease;
}

.breadcrumb__item a:hover::after {
    width: 100%;
}

.breadcrumb__item::after {
    content: "ー";
    margin: 0 8px;
    color: #696868;
    text-decoration: none;
}

/* .breadcrumb__list PC */
@media screen and (min-width: 769px) {
    .breadcrumb__item a{
        font-size: 1.2rem;
        font-weight: 400;
        color: #a1a1a1; 
    }

    .breadcrumb__item {
        font-size: 1.2rem;
        font-weight: 400;
        color: #a1a1a1; 
    }

    .breadcrumb__items {
        font-size: 1.2rem;
        font-weight: 400;
        color: #a1a1a1;
    }
}/* pc 769px */
.works {
    position: relative;
    cursor: pointer;
}

.works::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;       /* 下線の位置 */
    width: 0;
    height: 2px;
    background-color: #69a1ba;
    transition: width 0.3s ease;
}

/* ホバー時にシュッと表示 */
.works:hover::after {
    width: 100%;
}

/* ========================
main
=========================*/

.mainheaderImg {
    text-align: center;
    margin-top: 40px;
}

.mainImg {
    width: 100%;
    height: auto;
}

.mainheader-title {
    margin: 50px 0 0 15px;
    text-align: left;
}

.mainImgs {
    margin-top: 30px;
}

.work1Img {
    margin-top: -90px;
}

.mainImghover {
    margin-top: -70px;
}

.main__category {
    margin-top: 20px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #69a1ba;
}

.mainTxt {
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 6px;
    font-family: "Yu Gothic", "YuGothic";
}

.mainComment {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Yu Gothic", "YuGothic";
    margin: 80px 0 10px;
    letter-spacing: 0.18em;
    line-height: 2;
}

.Comment {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Yu Gothic", "YuGothic";
    margin-bottom: 80px;
    letter-spacing: 0.18em;
    line-height: 2;
}

/* .breadcrumb__list PC */
@media screen and (min-width: 769px) {
    .main__topic {
        margin-top: 80px;
    }
    
    .mainImg {
        display: block;
        width: 40%;
        height: auto;
        margin: 0 auto;
    }

    .mainheader-title {
        text-align: center;
    }

    .work__content {
        margin-top: 80px;
    }

    .work__gallery img {
        display: block;
        width: 50%;
        height: auto;
        margin: 0 auto;
    }

    .mainComment,
    .Comment {
        font-size: 1.9rem;
        text-align: center;
    }
}/* pc 769px */