/* グローバルスタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "Kiwi Maru", serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* コンテナの基本スタイル */
.container {
    margin: 0 auto;
    padding: 20px;
    background-repeat: repeat;
    background-color: rgba(0, 20, 94, 0.647);
    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: rgba(0, 20, 94, 0.647);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

#img-head {
    width: 100%;
}

#img-profile {
    width: 50%;
}

#img-400error {
    width: 40%;
}
#text-info {
    justify-content: start;
}

#span-info {
    margin-left:15px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.error {
    color: red;
}
.hidden {
    display: none;
}

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

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

textarea {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 5px;
    font-family: inherit;
    width: 80%;
    
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* 比率を4:3に固定 */
    margin-top: 10px;
    margin-bottom: 10px;
  }
   
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }