/* グローバルスタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "Kaisei Decol", serif;
    /* font-size: 1.0rem; */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    color: #ffffff; /* 今回は#000000を指定していますが、好きな色を指定できます */
}
/* コンテナの基本スタイル */
.container {
    background-image: url("../img/shootingstar.gif");
    margin: 0 auto;
    padding: 20px;
    background-repeat: repeat;
    background-color: rgb(0, 0, 0);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* モバイルスタイル（デフォルト） */
.container {
    width: 100%;
    box-sizing: border-box;
}

/* PCスタイル */
@media (min-width: 768px) {
    .container {
        width: 100%;
        max-width: 1200px;
        padding: 20px 40px;
        background-color: rgb(0, 0, 0);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

#img-head {
    width: 100%;
}

#img-profile {
    width: 70%;
}

#img-400error {
    width: 40%;
}

#text-title {
    justify-content: start;
    color: #4861ff;
}

#text-description {
    justify-content: start;
}

#form-respondent {
    justify-content: start;
}

input[type="text"] {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    border-radius: 5px;
    font-family: inherit;
  }

button, input[type="button"] {
    color: white;
    background-color: rgba(0, 20, 94, 0.647);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}