@charset "utf-8";

/* Googleフォントからコピー&ペースト */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=M+PLUS+1p&display=swap');

/* ブラウザリセット */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    /* Googleフォントからコピー&ペースト */
    font-family: "M PLUS 1p", sans-serif;
}

/* スタイルスタート */

/* 共通のスタイリング */

/* ヘッダーエリア */
.header-container{
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: rgba(11, 2, 246, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 960px;
    height: 70px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0);
}

.header-container #header h1 img{
    height: 55px;
}


nav ul{
    display:flex
}

nav ul li{
    padding-left: 100px;
}

nav ul li a{
    color: #c7d9ef;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);/* ふわっと変化❷ホバーから戻る時 */
}

nav ul li a:hover{
    color: #cbe4f1;
    letter-spacing: 0.3rem;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);/* ふわっと変化❶ホバー時 */
    
}

/* SNSアイコンのデザイン */

#header #sns{
    display: flex;
    justify-content: center;
    align-items: center;

  }
#header #sns a i{
    color: #edebde;/* SNSアイコンの色 */
    font-size: 1.5rem;/* SNSアイコンのサイズ */
    margin-left: 25px;/* アイコンの右側に余白 */
    
}

#header #sns a i:hover{
    color: #e6b443;
    transform: scale(1.2);
    transition-delay: .2s;
}


/* メインエリア */

.main-container{
    width: 100%;
    /* background-color: #edebde; */
    background-color: #71c6f4;
    padding-bottom: 600px;
}

#main{
    width: 960px;
    margin: 0 auto;
    /* background-color: #edebde; */
    background-color: #71c6f4;
}

/* フッターエリア */
.footer-container{
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, .8);
}

.footer-container #footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 960px;
    height: 200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0);
    color: #edebde;
}


main{
    padding-top: 50px;
}

h2{
    font-size: 3rem;
    text-align: center;
    margin: 40px 0 100px 0;
    font-family: "Alfa Slab One";
}

h3 {
    width: 100%;/*帯の幅*/
    margin-bottom: 30px;/*帯の下に余白*/
    color: #edebde;/*文字色*/
    padding: 0.5em;/*文字周りの余白*/
    display: inline-block;/*おまじない*/
    line-height: 1.3;/*行高*/
    background: #2b2a2a;/*背景色*/
    text-align: center;
    vertical-align: middle;
    border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);/*帯に影をつける*/
  }
  
h3:before {
    content: '●';
    color: #edebde;
    margin-right: 8px;
  }

h4{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

nav ul li a{
    font-family: "Alfa Slab One";
}

section p{
    line-height: 2;
}
