@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    line-height: 1.2;
    color: rgb(67, 67, 67);
}
a {
    color: rgb(67, 67, 67);
    text-decoration: none;
}
img {
    max-width: 80%;
}

/* レイアウト
------------------------------- */
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 2 2rem;
}

/* メインメニュー
------------------------------- */
.main-nav {
    text-align: center;
    margin-top: 50px;
    font-family: "Quicksand", sans-serif;
    line-height: 3rem;
}


.title {
    margin: 30px;
    font-family: "Quicksand", sans-serif;
}
.subtitle{
    color: rgb(75, 71, 207);
}


.about {
    margin-top: 3rem;
    font-size: 70%;
    line-height: 1.3rem;
    font-family: "Quicksand", sans-serif;
}

.about-tx {
    margin-top: 1rem;

}

a:hover {
    color: #7c7c7c; 
}

.sns_icon {
    display: flex;
    justify-content: center;
    height: 100px;
    align-items: center;
    gap: 20px;
}


/* フッター
------------------------------- */

.copyright {
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: rgb(67, 67, 67);
    font-family: "Quicksand", sans-serif;
}


/* デスクトップ版
------------------------------- */
@media (min-width: 800px)


    /* ヘッダー */
    .header {
        display: flex;
        justify-content: space-between;
        padding-top: 1.2rem;
        font-size: 1.4rem;
    }



}