@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
/* font-family: 'Gloock', serif; */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,300&display=swap');
/* font-family: 'Josefin Sans', sans-serif; */

* {
   box-sizing: border-box;
}


body{
   background-color: rgb(119, 86, 225);
}

h1{
   font-size : 250%;
   color : #ffffff;
   font-family: 'Gloock', serif;
   }
 
 
 /* ヘッダー */
  body { 
    padding-top: 90px; /* ヘッダーの後ろに要素が隠れないようにするため */
}

header {
    
    width: 100%; /* 幅いっぱいを指定 */
    height: 80px; /* 高さを50pxに指定 */
    background-image:url(../image/ajisai.jpeg);
    padding: 20px 50px; /* ヘッダーに上下左右それぞれ余白を指定 */
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    display: flex; /* 中の要素を横並びにする */
    align-items: center; /* 中の要素を上下中央に並べる */
    
}


header .gnav .menu {
    display: flex; /* 中の要素を横並びにする */
}

header .gnav .menu {
  color: #04b471; /* 中の要素を横並びにする */
}

header .gnav .menu li {
    list-style: none; /* リストの[・]を消す */
}

header .gnav .menu li + li {
    margin-left: 40px; /* メニューそれぞれに間隔をあけるため */
}

header .gnav .menu a {
  font-size: large;
  color: #ffffff;
  /* background-color : #000000; */
  font-family: 'arial black', serif;
  
}

main {
    height: 100vw; /* スクロールの演出を見れるようにmainに高さを指定 */
}

.hnav {
  display: none;
}

@media screen and (max-width: 640px) {
  .gnav {
     display: none;
  }
  .hnav {
     z-index: 1;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     display: block;
     width: 100%;
     background: rgba(0, 0, 0, .8);
     opacity: 0;
     transform: translateY(-100%);
     transition: all .2s ease-in-out;
  }
  #hamburger {
     position: relative;
     display: block;
     width: 30px;
     height: 25px;
     margin: 0 0 0 auto;
  }
  #hamburger span {
     position: absolute;
     top: 50%;
     left: 0;
     display: block;
     width: 100%;
     height: 2px;
     background-color: #fff;
     transform: translateY(-50%);
  }
  #hamburger::before {
     content: '';
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: #fff;
  }
  #hamburger::after {
     content: '';
     display: block;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 70%;
     height: 2px;
     background-color: #fff;
  }
  
  
  /*ーーーーーーーーーーーーーーースマホメニューーーーーーーーーーーーーーーー*/
  
  .hnav ul {
     padding: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
  }
  .hnav li {
     margin: 0;
     padding: 0;
     color: #fff;
  }
  
  

  .hnav li span {
     font-size: 15px;
     color: #fff;
  }
  .hnav li a, .hnav li span {
     display: block;
     padding: 30px 0;
     color: #ffffff;
     font-family: 'Josefin Sans', sans-serif;
     font-weight: bold;

  }

  
  
  
  /*-閉じるアイコンー*/
  .hnav .close {
     position: relative;
     padding-left: 20px;
  }
  .hnav .close::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     display: block;
     width: 16px;
     height: 2px;
     background: #fff;
     transform: rotate( 45deg );
  }
  .hnav .close::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 0;
     display: block;
     width: 16px;
     height: 2px;
     background: #fff;
     transform: rotate( -45deg );
  }
  .toggle {
     transform: translateY( 0 );
     opacity: 1;
  }
  
}


/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.account{
   margin: auto;
   padding: auto; 
   text-align: center;
}

.account img{
   width: 40px;
}

.title1{
   margin: 10px;
  font-size: 20px;
  color: #fff;
  font-family: 'Gloock', serif;
  /* font-style: italic; */
  font-weight: bold;
}



/* フッター */
footer {
   width: 100%;
   height: 80px;
   text-align: center;
   padding: 15px 0;
   background-color: #281e5d;
   position: absolute;
   bottom: 0;
}

.totter {
   color: #ffffff;
   text-align: center;
   font-style: italic;
   font-family: 'Josefin Sans', sans-serif;
}