@charset "UTF-8";

.View-more {
    width: 26rem;
    list-style: none;
    justify-content: flex-end;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: 4rem
}

.View-text:hover {
    color: #3E3E3E;
    font-weight: 900
}

.View {
    display: flex;
    font-size: 1.5rem;
    color: #7D7D7D;
    font-weight: 800;
    text-decoration: none;
    text-align: right;
    padding: 3rem 0 3rem 0;
    /*background-color: #d3cfcZ*/
}

.View-img {
    margin-left: 0.5rem
}

@media (max-width: 768px) {

    /* ここに記述した分は、スマホ用の形になる（レスポンス対応）*/
    .About,
    .Work,
    .Contact {
        margin: 0 2.5rem 2.5rem
    }
}

h1 {
    position: absolute;
    color: #FFF;
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 0px 0px 8px #7F635A;
    writing-mode: vertical-rl;
    margin-top: 4rem;
    right: 150px;
    z-index: 10;
}

h1 span {
    font-size: larger
}

.hero-head {
    width: 100%;
    margin: 6rem 0rem 3rem 0rem;
    position: relative
}

.hero-head-img {
    width: 100%
}

/*==================================================
スライダーのためのcss https://coco-factory.jp/ugokuweb/move01/6-1-2/
===================================*/
.hero-slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/

.img01 {
    background: url(../img/hero1.JPG)
}

.img02 {
    background: url(../img/hero2.jpeg)
}

.hero-head-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh;
    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
}

@media (max-width: 768px) {
    .concept {
        margin: 0 0 0 0px;
        text-align: center;
        font-size: 5rem;
        right: initial;
        left: 41%;
        top: 110px
    }
}
@media (max-width: 430px) {
    .concept {
        left: 30%;
        top: 110px;
    }
}
h2 {
    color: #242424;
    font-size: 3rem;
    font-weight: 400;
    margin: 6rem 0 9rem 10rem
}

.About {
    margin-left: -0.5rem
}
@media (max-width: 320px) {
    .About {
        margin-left: 0.5rem
    }
}
.word-ex {
    display: none
}

.About-concept {
    color: #7D7D7D;
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-top: 6rem;
    margin-bottom: 3rem
}

.About-ex1,
.About-ex2 {
    color: #111;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 200%
        /* 3rem */
}

.About-ex1 {
    margin: 2rem;
    font-weight: 500
}

@media (max-width: 768px) {
    h2 {
        color: #242424;
        font-size: 3rem;
        font-weight: 400;
        margin: 6rem 0 9rem 2.813rem
    }
    .About-title {
        margin-bottom: 1rem;
        margin-left: 4rem
    }

    .concept-mb {
        display: flex;
        list-style: none;
        justify-content: center
    }

    .word-ex {
        display: block;
        writing-mode: vertical-rl;
        color: #7D7D7D;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 7rem 2.5rem 3rem 2.5rem
    }
    .About-concept {
        color: #111;
        width: 20rem;
        font-size: 4rem;
        font-weight: 700;
        text-align: left;
        margin-bottom: 9rem
    }

    .about-img {
        height: 50rem
    }

    .About-ex1,
    .About-ex2 {
        margin: 4rem 0
    }

    .About-ex1 {
        color: #111;
        font-style: normal;
        font-weight: 500
    }

    .About-ex2 {
        margin-bottom: 5.313rem
    }
}
@media (max-width: 430px) {
    .About-title {
        margin: 6rem 0rem 0rem 4.9rem
    }
}

.Work-img {
    display: flex;
    justify-content: space-around;
    margin: 0 10rem 0 10rem
}


.Work-img img {
    width: 85%;
    height: 100%;
    object-fit: cover;
    padding-left: 0;
}

.Work1,
.Work2,
.Work3 {
    list-style: none
}

@media (max-width: 768px) {
    .Work-img {
        width: 94%;
        margin: 0 auto;
    }
    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;
        /*矢印の色*/
        border-right: 2px solid #666;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/
    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }
    .Work-img img {
        /* margin:0 10px; いらない */
        opacity: .5; width: 100%; margin: 0; padding: 20px
    }
    
    .slick-dots {
        /* text-align:center; いらない */
        /* margin:20px 0 0 0; いらない */
        position: absolute; bottom: -25px
    }
    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }
}

.History {
    width: 100%;
    margin-bottom: 10rem;
}

.his1,
.his2 {
    margin-bottom: 7rem;
}

.his1-img,
.his2-img {
    width: 100%;
    margin-bottom: 7rem;
}

.his-ex1,
.his-ex2 {
    margin: 0 10rem 3rem 10rem;
}

.his-ex1 {
    color: #7D7D7D;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 110%;
    /* 2.75rem */
}

.his-ex2 {
    color: #111;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 2.25rem */
}

@media (max-width: 768px) {
    .history-title {
        margin: 6rem 0 9rem 6.5rem
    }
    .his-ex1,
    .his-ex2 {
        margin: 6rem 2.5rem 9rem 9.5rem
    }
}
@media (max-width: 430px) {
    .his-ex1,.his-ex2 {
        margin: 6rem 2.5rem 9rem 4rem
    }
}
@media (min-width: 1440px) {
    .View-text {
        font-size: 2.0rem
    }
    .View-more {
        width: 40rem
    }
    .View-img {
        margin-left: 1.5rem;
        padding-top: 7px
    }
    h2 {
        font-size: 2.8rem;
    }
}
@media (min-width: 1500px) {
    .View-text {
        font-size: 2.5rem;
    }
    .View-more {
        margin-top: 7rem
    }
    h1 {
        font-size: 5rem;
        right: 220px
    }
    h2 {
        font-size: 4.5rem;
        margin: 6rem 0 9rem 15rem
    }
    .About-concept {
        font-size: 6rem;
        margin-bottom: 6rem
    }
    .About-ex1,.About-ex2 {
        font-size: 2.5rem
    }
    .his-ex1,.his-ex2 {
        margin: 0 20rem 3rem 37rem
    }
    .his-ex1 {
        font-size: 3.5rem
    }
    .his-ex2 {
        font-size: 2.5rem;
        line-height: 200%
    }
}