/* サイト全体 */
body {
    font-size: 14px;
    color: #fafafa;
    background: #191a1a;
    font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
    line-height: 180%;
}

/* コンテンツ幅 */
.wrapper {
    width: 100%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

/* ロゴ */
.logom {
    width: 175px;
    height: 80px;
}

/* リンク */
a {
    font-size: 16px;
	color: #7b7b7b;
    font-weight: bold;
	-webkit-transition: 0.8s;	
	transition: 0.8s;			
}
a:hover {
	color: #deea00;	
}


/* コンテナ */
.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* ヘッダーとナビ */
.header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 32px;
    margin-bottom: 24px;
}

.header_nav ul {
    display: flex;
    font-weight: bold;


}

.header_nav li {
    margin-left: 2em;
}

.phon {
    display: none;
}

/* メインビジュアル */

.mv {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.mv_image {
    width: 100%;
    margin-bottom: 24px;
}


/* ユーチューブ */
.tube {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* テキスト */
.text {
　 color: #fafafa;
    margin-top: 2em;
    margin-bottom: 2em;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
}

/* コンテンツ紹介 */
.box {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 32px;
}


/* フッター */

.copyright {
    display: block;
    margin-top: 50px;
    text-align: center;
    padding: 1em;
}

/* スマホ */
@media (max-width: 768px) {


    .wrapper {
        width: 100%;
        max-width: 900px;
        padding-left: 2em;
        padding-right: 2em;
    }

    .header_nav  {
        display: none;
    }
    .phon {
        display: block;
    }
    
    .mv {
        display: none;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }

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

    .service{
        align-items: center;
    }

    .box {
        align-items: center;
    }

    .footer_inner {
        flex-direction: column;
    }
    .footer_box {
        width: 100%;
        margin-top: 40px;
    }

}