@charset "UTF-8";
/* デフォルトのスタイル（PC用） */
body {
    background-color: rgb(253, 253, 253);
}
.anatano {
    font-size: 60px;
}
.loryxha {
    font-size: 30px;
}
.omikuji {
    color: #000000;
    display: inline-block;
    font-size: 25px;
    padding: 50px 60px;
    border: 2px solid#000000;
    border-radius: 15px;
    text-decoration: none;
}
.unsei {
    font-size: 18px;
}


/* 画面幅が768px以下（タブレット向け）の場合 */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
        background-color: rgb(241, 241, 241);
    }
}

/* 画面幅が480px以下（スマホ向け）の場合 */
@media screen and (max-width: 480px) {
    body {
        font-size: 22px;
        background-color: rgb(255, 255, 255);
    }

    .anatano {
        font-size: 22px;
    }
    .loryxha {
        font-size: 18px;
    }
    .omikuji {
        color: #000000;
        display: inline-block;
        font-size: 15px;
        padding: 50px 60px;
        border: 2px solid#000000;
        border-radius: 15px;
        text-decoration: none;
    }
    .unsei {
        font-size: 8px;
    }

}

header {
    height: 100px; /* ヘッダーの高さを指定（任意の値に変更可能） */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 2rem;
    text-align: center;
    border-bottom: 2px solid;
}



.header span {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 崩れるアニメーション */
.header.clicked span {
    animation: crumble 1s forwards;
}

@keyframes crumble {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(var(--x), var(--y));
        opacity: 0.5;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* 各文字にランダムな座標を設定 */
.header span:nth-child(1) { --x: -20px; --y: -30px; }
.header span:nth-child(2) { --x: 40px; --y: 20px; }
.header span:nth-child(3) { --x: -50px; --y: 40px; }
.header span:nth-child(4) { --x: 60px; --y: -40px; }
.header span:nth-child(5) { --x: -10px; --y: 50px; }





.social-login-icons {
    display: flex;
    align-items: center;
    justify-content: center; /* 横方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
    gap: 50px;
    -webkit-box-reflect: below 5px linear-gradient(transparent, #00000055);
  }
  .social-login-icons svg {
    width: 40px;
  }
  
  .social-icon-1,
  .social-icon-1-1,
  .social-icon-2,
  .social-icon-2-2,
  .social-icon-3,
  .social-icon-3-3,
  .social-icon-4,
  .social-icon-4-4 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 20px 0 0px 0;
  }
  
  .icon svg {
    fill: #111;
  }
  
  .socialcontainer {
    height: 80px;
    overflow: hidden;
  }
  .social-icon-1 {
    transition-duration: 0.4s;
    background-color: rgb(0, 0, 0);
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  }
  .social-icon-1 svg,
  .social-icon-2 svg,
  .social-icon-3 svg,
  .social-icon-4 svg {
    opacity: 0;
    transition-duration: 0.5s;
    transition-delay: 0.2s;
  }
  .social-icon-1-1 {
    transition-duration: 0.4s;
    background-color: rgb(0, 0, 0, 0);
  }
  .socialcontainer:hover .social-icon-1 {
    transform: translateY(-70px);
  }
  .socialcontainer:hover .social-icon-1 svg,
  .socialcontainer:hover .social-icon-2 svg,
  .socialcontainer:hover .social-icon-3 svg,
  .socialcontainer:hover .social-icon-4 svg {
    opacity: 1;
  }
  .social-icon-2 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
    background: linear-gradient(
      72.44deg,
      #000000 11.92%,
      #000000 51.56%,
      #000000 85.69%
    );
  }
  .socialcontainer:hover .social-icon-2 {
    transform: translateY(-70px);
  }
  .social-icon-3 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
    background: #000000;
  }
  
  .socialcontainer:hover .social-icon-3 {
    transform: translateY(-70px);
  }
  .social-icon-4 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  
    background: linear-gradient(
      180deg,
      rgb(0, 0, 0) 0%,
      rgb(0, 0, 0) 91%
    );
  }
  
  .socialcontainer:hover .social-icon-4 {
    transform: translateY(-70px);
  }
                                           
            


