@charset "UTF-8";

/* 基本 */

body{
    margin: 0;
    background-color: rgb(148, 148, 148);
    color: #000000;
    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;
    flex-direction:column;
    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;
}

/* 冒頭あいさつ部分の設定 */

.comment h1{
    color: #fff;
    padding: 5px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.comment p{
    text-align: left;
    line-height: 24px;
    padding: 8px;
    padding-bottom: 20px;
}

/* フォーム部分の設定ここから */

.form-block{
    padding: 8px;
    text-align: left;
    line-height: 30px;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #3a3a3a;
}

.form{
    display: flex;
    flex-direction: column;
    justify-items: center;
}

textarea{
    height: 100px;
    width:100%;
}

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

.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;
    }

    /* 冒頭あいさつ部分の設定*/

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

    .comment h1{
        font-size: 50px;
        padding: 30px;
    }

    .comment p{
        font-size: 20px;
        line-height: 30px;
        text-align:left;
    }

    /* フォーム部分の設定ここから */

    .form-block{
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        text-align: left;
        line-height: 40px;
        display: flex;
        justify-content:center;
        font-weight: bold;
        font-size: 1.0rem;
        color: #3a3a3a;
        gap: 20px;
    }

    .form{
        display: flex;
        flex-direction: column;
        justify-items: center;
        width: 100%;
    }

    textarea{
        height: 100px;
        width:100%;
    }

    #username{
        height: 30px;
    }

    #userfurigana{
        height: 30px;
    }

    #usertel{
        height: 30px;
    }

    #usemail{
        height: 30px;
    }

    p.btn{
        display: flex;
        justify-content: center;
        padding: 30px;
    }

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

    .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;
    }

}
