@charset "UTF-8";
@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../font/uzura.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    font-family: 'CustomFont', sans-serif;

}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.glow-button {
    display: inline-block;
    padding: 8px 24px;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.5);
}

.glow-button:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}



.name {
    color: white;
    font-size: 1.5em;
    line-height: 2em;
    text-align: center;
    opacity: 0;  /* 初めは透明 */
    transform: scale(1.2);  /* 初めは少し大きめに */
    animation: appear 2s ease-out forwards;  /* アニメーションを指定 */
    margin: 3em 0 1.5em;
}



@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 10px rgb(48, 74, 146), 0 0 20px rgb(48, 74, 146), 0 0 30px rgb(48, 74, 146), 0 0 40px rgb(48, 74, 146);
    }
}
.content {
    position: relative;
    z-index: 1;
    padding:0px 0px 3em;
    margin-top: -1px;
    background-image: url(../img/223842432328462.png);
    background-position: top center;
    background-size: cover;
}
#sparkle_container {
    position: relative;
    width: 100%;
    height: 130px; /* 親要素の高さ */
    overflow: hidden;
    background-image: url(../img/5.png);
    background-size: cover;
        background-position: center center;

  }

  .sparkle {
    position: absolute;
    border-radius: 50%;
    background-color: white; /* 白い点 */
    animation-name: twinkle;
    animation-iteration-count: infinite;
  }

  @keyframes twinkle {
    50% {
      transform: scale(0.2);   /* 50%の時に縮小 */
      opacity: 0.8;            /* 半透明になる */
    }
    100% {
      transform: scale(1);     /* 元のサイズに戻る */
      opacity: 1;              /* 完全に透明にならない */
    }
  }




.contact{
    color: white;
    text-align: center;
    padding: 2em 1em 0;
    font-size: 18px;
  }

.contact > div{
    margin: 2em auto;
    width: 100%;
    height: 100%;
    max-width: 600px;
    padding: .5em;
    border-radius: 25px;
    background-image: url(../img/22706670.jpg);
    background-position: center;
    box-shadow: 0 10px 20px rgba(99, 99, 99, 0.4); /* 影で立体感 */
  }
  form{
    width: 100%;
    border-radius: 25px;
    background-image: url(../img/223842.png);
    background-size: cover;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
  }

  .contact h2 {
    font-size: 2em;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    color: white;
    background-color: transparent;
    padding-bottom: .3em;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;  /* ボーダーの高さ */
    background: url('../img/b_simple_2_0L.png') repeat-x; /* 画像を繰り返して表示 */
    transition: width 2s ease-in-out;
}
.contact h2.in-view::after {
    width: 100%;
}

form{
    width: 100%;
    max-width: 600px;
    padding: 2em 1em;
  }

  .form-group {
    margin-bottom: 25px;
}
label {
    display: block;
    font-weight: bold;
    font-size: 1.2em;
    text-align: left;
}
.required {
    background-color: #90a5b1;
    color: white;
    font-size: 10px;
    padding: 3px 6px;
    margin-left: 10px;
    border-radius: 6px;
}
input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: white;
    color: rgb(44, 44, 44);

}
form button {
    background-image: url(../img/223842432328462.png);
    background-position: center bottom;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 250px;
    margin: 0 auto;
    display: block;
    position: relative;
    overflow: hidden;
}

form button::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed white;
    border-radius: 20px;
    pointer-events: none;
}
button:hover {
    background-color: #da945f;
}

.contact a{
    color: white;
}
input[type="password"] {
    font-family: Arial, sans-serif; /* 入力中の文字は別フォント */
}
input[type="password"]::placeholder {
    font-family: 'CustomFont', sans-serif; /* プレースホルダーだけ uzura.ttf にする */
}

/* パスワードリセット用レイアウト */
.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
    flex-direction: column;
}

.reset-box {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }  

.reset-box input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.reset-box button {
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 30px;
    border: 2px dashed white;
    background-color: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.reset-box button:hover {
    background-color: white;
    color: #000;
}

.message {
    margin-top: 15px;
    font-size: 14px;
}

.back-link {
    margin-top: 20px;
    display: inline-block;
    color: white;
    font-size: 14px;
    text-decoration: underline;
}

.reset-title {
    color: white;
    font-family: 'DotGothic16', sans-serif;
    text-shadow: 0 0 3px #fff, 0 0 6px #b5d1ff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .reset-box input[type="email"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
  }
  
  .reset-button {
    margin-top: 1rem;
    background-color: transparent;
    color: white;
    border: 2px dashed #b5d1ff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
  }
  
  .reset-button:hover {
    background-color: #b5d1ff;
    color: #0a0a23;
  }
  