/* 基本設定 */
@font-face {
    font-family: "IPAexMincho";
    src: url('ipaexm00401/ipaexm.ttf');
}
body{
    color: #4d515a;
    font-family: 'IPAexMincho',sans-serif;
}
a{ text-decoration: none; }
a:link{ color: #111111; }
a:visited { color: #111111; }/*選択したことのあるリンクの色を変更する。*/
a:active { color: #000000; background-color: #888888; }

/* 背景画像 */
/* background-attachment: fixed;とbackground-size: cover;を同時に指定するとiOSで問題が起こる */
body::before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-image: url(img/bg.jpg);
    background-position: 50% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ヘッダー設定 */
header{
    z-index: 1;
    width: 100%;
    height: 110px;
    background-color:rgba(255, 255, 255, 0.9);
    /* 画面上部に固定 */
    position: fixed;
    top: 0px;
    left: 0px;
    padding-left: 20px;
}

main{
    color: #fafafa;
    background-color: #4d515a50;
    margin-top: 110px;
    padding-top: 50px;
    text-align: center;
}
main h1{
    font-size: 70px;
    margin-top: 50px;
    margin-bottom: 0px;
}
.content{
    text-align: left;
    padding: 100px;
    font-size: 30px;
}
.bc{
    margin-bottom: 4rem;
}

footer{
    background-color: #d9d9d9;
}
footer ul{
    list-style: none;
    margin-top: 0px;
    margin-left: 40px;
    margin-bottom: 100px;
    padding-top: 50px;
}
footer li{
    font-size: 30px;
    padding-bottom: 40px;
}
footer hr{
    border-color: #000000;
}
.main{
    font-family: sans-serif;
    font-size: 35px;
    font-weight: bold;
}
footer h1{
    font-size: 20px;
    text-align: center;
    padding: 30px 0px;
}
.icon{
    text-align: center;
    margin: 100px 0px;
}
#icon_youtube{
    padding: 0px 100px;
}