@charset "UTF-8";

/* 基本 */

body{
    margin: 0;
    padding: 0;
    background-color: rgb(148, 148, 148);
    color: #fff;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-size: 14px;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}

/* ↓ media screen and (max-width: 480px)ここからモバイルの設定 ↓ */

/* ヘッダーの設定ここから */

.header{
    height: 100px;
    background-color: rgb(219, 209, 230);
    font-size: medium;
    /* 位置固定の設定 */
    position: sticky;
    z-index: 100000;
    box-sizing: border-box;
    top: 0;
}

.kofuku{
    height: 90px;
    width: 90px;
}

.header-container{
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
    height: 100px;
    /* 位置固定の設定　*/
    position: relative;
}

div.site{
    display: flex;
    align-items: center;
    white-space:nowrap;
}

div.catch{
    display: flex;
    flex-direction: column;
    /*padding-right: 1rem;*/
}

/* ヘッダー内 会社キャッチコピー */

div.catch h1{
    font-family: "Shippori Mincho", serif;
    font-size:12px;
    font-weight: 400;
    line-height:10px;
    color: #000;
    height: 30px;
}

/* ヘッダー内 会社名見出し */

div.catch h2{
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    color: #000;
    line-height: 20px;
    letter-spacing: 0.5rem;
    font-weight:bold;
}

/* ハンバーガーボタンの設定ここから */

.nav a{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    gap: 40px;
}

.navbtn{
    padding:20px;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    color:#000;
    font-size: 30px;
    height: 100px;
}

.open .navbtn{
    z-index: 110;
    color: #fff;
}

.navbtn .fa-bars{
    display: revert;
}

.open .navbtn .fa-bars{
    display: none;
}

.navbtn .fa-times{
    display: none;
}

.open .navbtn .fa-times{
    display: revert;
}

.nav{
    position: fixed;
    inset: 0 -100% 0 100%;
    z-index: 100;
    background-color: #4e483ae6;
    transition: transform 0.3s;
}

.open .nav{
    transform: translate(-100%,0);
}

.open body{
    overflow: hidden;
}

.nav ul{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    height: 100%;
    gap: 40px;
    color:#fff;
    list-style: none;
}

/* ヒーローイメージの設定ここから */

.big-title{
    position:relative;
}

.big-title h1 {
    display: block;
    text-align: left;
    line-height:180px;
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    font-family: "BIZ UDPGothic", sans-serif;
    left:30px;
    top: 230px;
    text-shadow: 4px 6px 5px rgba(0,0,0,1);
    z-index: 50000;
    letter-spacing: 4px;
}

.big-title p {
    display: block;
    text-align: left;
    line-height:140px;
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    font-family: "BIZ UDPGothic", sans-serif;
    left: 60px;
    top: 320px;
    text-shadow: 4px 6px 5px rgba(0,0,0,1);
    z-index: 50000;
    letter-spacing: 4px;
}

div.main_imgBox {
    width: auto;
    height: 550px;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    background-size: 60%;
    z-index: 3;
}

.main_img {
    z-index: 10;
    opacity: 0;
    width: 100%;
    height: 650px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    animation: anime 24s infinite;
}

/* スライドの表示タイミングの設定 */

.main_img:nth-of-type(2) { animation-delay: 4s; }
.main_img:nth-of-type(3) { animation-delay: 8s; }
.main_img:nth-of-type(4) { animation-delay: 12s; }
.main_img:nth-of-type(5) { animation-delay: 16s; }
.main_img:nth-of-type(6) { animation-delay: 20s; }

@keyframes anime {
    0% { opacity: 0; transform: scale(1.05); }
    5% { opacity: 1; transform: scale(1); }
    25% { opacity: 1; transform: scale(1); }
    30% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

/* ヒーロー下のキャッチコピー(白いBOX)設定ここからここから */

div.hero-container {
    padding:20px 0px;
    display: flex;
    justify-content: center;
}

div.catch2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    gap: 10px;
    color: #333337;
    background: #ffffff;
    padding: 5px;
    padding-bottom: 40px;
    box-shadow: 3px 5px 0 #535353;/*影サイズ・影カラー*/
    border: 7px double #a3a3a3;/*二重線 太さ・カラー*/
    font-family: "Shippori Mincho", serif;
}

div.catch2 h1{
    font-weight: 400;
    line-height: 3rem;
    font-size: 19px;
    padding-top :0.5rem ;
    padding-bottom: 1.5rem;
}

/* 文字強調ラインマーカー */

span{
    font-weight: bold;
    background-color: #6bb5ff38;
}

/* 矢印の動き方 */

div.scroll{
    padding-top: 60px;
    position: relative;
    text-align: center;
}

.scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    content: "";
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

/* 矢印のアニメーション */

@keyframes scroll {
    0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
    }
    40% {
    opacity: 1;
    }
    80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
    }
    100% {
    opacity: 0;
    }
}

/* CONTACTボタンの設定 */

.btn{
    display: block;
    width: 140px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(180, 151, 212);
    color: #fff;
    font-family: "DM Serif Text", serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
    text-decoration: none;
}

/* サービス案内の設定ここから */

.omoi1{
    display: flex;
    flex-direction:column;
    align-items: center;
    height: 740px;
}

.omoi2{
    display: flex;
    flex-direction:column;
    align-items: center;
    height: 800px;
}

.omoi3{
    display: flex;
    flex-direction:column;
    align-items: center;
    height: 740px;
}

/* 緑の見出し(h1)の設定 */

.title1{
    width: 360px;
    font-size: 18px;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    padding: 10px 5px;
    overflow: hidden;
    border: 2px solid #5bc8ac;
    border-radius: 5px;
    color: #000000;
    background-color: #ffffffc9;
    z-index: -2;
}

.title1:before {
    position: absolute;
    top: -80%;
    left: -50px;
    z-index: -1;
    transform: rotate(25deg);
    width: 100px;
    height: 200%;
    background-color:#5bc8ac;
    content: '';
}

.title1 span{
    margin-right: 40px;
    color: #fff;
    font-size:24px
}

/* 画像の設定 */

.omoi-left{
display: flex;
align-items: center;
flex-direction: column;
}

.omoi-left img{
    padding: 5px;
    width:370px;
    height:250px;
}


/* 説明文の設定 */

.omoi-right{
    padding-top: 2px;
    padding-bottom: 20px;
    height: 250px;
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

p.bunsyou{
    padding: 2px 5px 0px 5px;
    color: #000;
    font-size: 16px;
    text-align: left;
    letter-spacing:normal;
    line-height: 2rem;
}


/* 施工事例ボタンの設定 */
p.omoi-btn{
    display: block;
    text-align: center;
    width: 120px;
    margin: 20px 10px;
    padding: 10px 20px;
    font-weight: bold;
    border: 2px solid #5bc8ac;
    background-color: #5bc8ac;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}

.omoi-btn a {
    text-decoration: none;
    font-size: 14px;
}


.omoi-btn a:hover {
    color: #fff;
}

/* 下部CONTACTボタンの設定ここから */

section.kiji{
    padding-top: 20px;
    padding-bottom: 10px;
    height: 160px;
}

div.box1{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 10px;
}


div.box1 p{
    color: #282828;
    font-size: 15px;
    font-weight: bold;
}

/* ページ上部に戻るボタンの設定ここから */

#page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    right: 0;
    bottom: 0;
    background:#4e483ae6;
    opacity: 0.6;
    border-radius: 50%;
}

#page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
}

#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/* フッターの設定ここから */

.footer{
    height: 100px;
    background-color: rgb(219, 209, 230);
    font-size: 12px;
    letter-spacing: 4px;
    color: #000;
    display: flex;
    align-items:center;
    justify-content: center;
    padding-bottom: 10px;

}






    /*↓↓　480px以上の設定 PC版　ここから　↓↓*/

@media screen and (min-width:480px) {

    /* ヘッダー部分の設定ここから */

    .header{
        height: 100px;
        font-size: 30px;
    }

    .kofuku{
        height: 100px;
        width: 100px;
    }


    /* ヒーローイメージの設定ここから */

    .big-title{
        position:relative;
    }

    .big-title h1 {
        display: block;
        text-align: left;
        line-height:180px;
        position: absolute;
        color: #fff;
        font-weight: bold;
        font-size: 50px;
        font-family: "BIZ UDPGothic", sans-serif;
        left: 250px;
        top: 200px;
        text-shadow: 4px 6px 5px rgb(0, 0, 0);
        z-index: 50000;
        letter-spacing: 4px;
    }

    .big-title p {
        display: block;
        text-align: left;
        line-height:140px;
        position: absolute;
        color: #fff;
        font-weight: bold;
        font-size: 50px;
        font-family: "BIZ UDPGothic", sans-serif;
        left: 400px;
        top: 350px;
        text-shadow: 4px 6px 5px rgb(0, 0, 0);
        z-index: 50000;
        letter-spacing: 4px;
    }

    div.imgbox{
        display: flex;
        justify-content: center;
    }

    div.main_imgBox{
        height: 720px;
        width: 1450px;
        filter: contrast(70%);
    }

    .main_img {
        z-index: 10;
        opacity: 0;
        width: 100%;
        height: 750px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100%;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-animation: anime 18s 0s infinite;
        animation: anime 18s 0s infinite;
    }

    .main_img:nth-of-type(2) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }

    .main_img:nth-of-type(3) {
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
    }

    .main_img:nth-of-type(4) {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
    }

    .main_img:nth-of-type(5) {
        -webkit-animation-delay: 12s;
        animation-delay: 12s;
    }

    .main_img:nth-of-type(6) {
        -webkit-animation-delay: 15s;
        animation-delay: 15s;
    }

    @keyframes anime {
        0% {
                opacity: 0;
            }
        8% {
                opacity: 1;
            }
        17% {
                opacity: 1;
            }
        25% {
                opacity: 0;
                transform: scale(0.9) ;
                z-index:9;
            }
        100% {
                opacity: 0;
            }
    }

    /*ヒーロー下説明・contactボタン部分設定ここから*/

    .hero-container w-container{
        padding: 40px;
    }

    div.catch2{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 20px;
        gap: 40px;
        color: #333337;
        background: #ffffff;
        padding: 5px;
        padding-bottom: 60px;
        box-shadow: 3px 5px 0 #000000;/*影のサイズ・カラー*/
        border: 7px double #a3a3a3;/*二重線の太さ・カラー*/
        font-family: "Shippori Mincho", serif;
        width: 60%;
        height: 70%;
    }

    div.catch2 h1{
        font-weight: 400;
        line-height: 3rem;
        font-size: 22px;
        padding-top :0.5rem ;
    }

    /* サービス案内の設定ここから */
    #omoi{
        padding: 0px 5px 0px 5px;
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .omoi{
        display: flex;
        flex-direction: column;
    }

    .omoi1{
        display: flex;
        flex-direction: row;
        width:90%;
        height: 400px;
        gap: 40px;
        padding-top: 60px;
    }

    .omoi2{
        display: flex;
        flex-direction: row;
        width:90%;
        height: 550px;
        gap: 40px;
    }

    .omoi3{
        display: flex;
        flex-direction: row;
        width:90%;
        height: 400px;
        gap: 40px;
        padding-bottom: 40px;
    }

    .title1{
        width: 600px;
        font-size: 22px;
        display: flex;
        justify-content: start;
        align-items: center;
        position: relative;
        padding: 10px 5px;
        overflow: hidden;
        border: 2px solid #5bc8ac;
        border-radius: 5px;
        color: #000000;
        background-color: #ffffffc9;
        z-index: -2;
    }

    .title1:before {
        position: absolute;
        top: -80%;
        left: -50px;
        z-index: -1;
        transform: rotate(25deg);
        width: 100px;
        height: 200%;
        background-color:#5bc8ac;
        content: '';
    }

    .title1 span{

        margin-right: 40px;
        color: #fff;
        font-size:24px
    }

    /* 画像の設定 */

    .omoi-left img{
        padding: 20px 0px;
        width:600px;
        height:340px;
    }


    /* 説明文の設定 */

    .omoi-right{
        padding-top: 80px;
        height: 600px;
        width: 600px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    p.bunsyou{
        padding: 120px 5px 0px 5px;
        color: #000;
        font-size: 18px;
        text-align: left;
        letter-spacing:normal;
        line-height: 2rem;
        width: 100%;
    }

    /* 施工事例ボタンの設定 */

    p.omoi-btn{
        display: block;
        text-align: center;
        width: 120px;
        margin: 50px 150px;
        padding: 1rem 4rem;
        font-weight: bold;
        border: 2px solid #5bc8ac;
        background-color: #5bc8ac;
        border-radius: 100vh;
        transition: 0.5s;
    }

    .omoi-btn a {
        text-decoration: none;
    }

    .omoi-btn a:hover {
        color: #fff;
    }

    /*CONTACTボタンの設定ここから*/

    section.kiji{
        padding-bottom: 20px;
    }

    div.box1 p{
        color: #282828;
        font-size: 16px;
        font-weight: bold;
        padding-bottom: 10px;
    }

    /* ページ上部に戻るボタンの設定ここから */
    
    #page_top{
        width: 90px;
        height: 90px;
        position: fixed;
        right: 0;
        bottom: 0;
        background:#4e483ae6;
        opacity: 0.6;
        border-radius: 50%;
      }

      #page_top a{
        position: relative;
        display: block;
        width: 90px;
        height: 90px;
        text-decoration: none;
      }

      #page_top a::before{
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        content: '\f102';
        font-size: 25px;
        color: #fff;
        position: absolute;
        width: 25px;
        height: 25px;
        top: -40px;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
      }
      
      #page_top a::after{
        content: 'PAGE TOP';
        font-size: 13px;
        color: #fff;
        position: absolute;
        top: 45px;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
      }

    /* ハンバーガーメニューの設定ここから */

   .nav{
        width: 40%;
        height: 100%;
    }

    .navbtn{
        padding: 20px;
        outline:none;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #000;
        font-size: 20px;
    }

    .nav a{
        color: #fff;
        font-size: 30px;
        text-decoration: none;
        gap: 60px;
    }

    .nav ul{
        padding: 50px;
        gap: 100px;
    }

}



