body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #110C44;
    color: #110C44;
}

.header {
    background-color: #110C44; /* headerの背景色を黒に設定 */
    padding: 0px 0; /* 必要に応じてpaddingを調整 */
}

.header img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0px auto; /* 上下のマージンを20pxに設定 */
}

.container {
    padding: 0px 20px 20px 20px; /* 上部に余白を追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 1px;
    color: #ffe658;
    margin: 0 auto; 
    text-align: center;
}

.notes {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 30px;
    max-width: 400px; /* フォームコンテナと同じ最大幅に設定 */
    box-sizing: border-box;
    margin: 0 auto; /* 中央揃えにするためのマージン */
}

.notes p {
    font-size: 1.5em; /* フォントサイズを大きく設定 */
    display: flex;
    align-items: center;
    justify-content: center; /* 中央揃えにする */
    text-align: center; /* テキストも中央揃えにする */
    margin: 0 auto; /* 中央揃えにするためのマージン */
}

.notes .highlight { /*だうんろーどについて*/
    color: #110C44;
}

.notes ul {
    list-style-type: square;
    padding-left: 20px;
}

.notes li {
    margin-bottom: 10px;
}


.form-container {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.googleform-wrapper {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #FCE772;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #444444;
    border-radius: 5px;
    background-color: #ffffff;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #110C44;
    background-color: #FCE772;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #BC6739;
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    color: #ffffff;
    margin-top: 40px; /* フッター上部に余白を追加 */
}

.notes #popup-link-iphone {
    color: #ff0000;
    float: left; /* 要素を左側に配置 */
    margin-right: 30px; /* 左側の余白を調整（必要に応じて変更） */
}

#popup-iphone {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
}

.notes #popup-link-android {
    color: #9cfa30;
    float: right; /* 要素を右側に配置 */
    margin-right: 30px; /* 右側の余白を調整（必要に応じて変更） */
}

#popup-android{
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
}

.popup-content {
    display: inline-block;
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: auto;
    max-width: 100%;
    background-color: white;
    border-radius: 5px;
    text-align: center;
}

.close-iphone, .close-android {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .content {
        flex: 1;
        margin-right: 20px;
        max-width: 50%;
    }

    .form-container {
        flex: 1;
        max-width: 50%;
    }
}

select {
    font-size: 16px; /* メニュー内の文字サイズを調整 */
    padding: 14px; /* メニュー内のパディングを調整 */
    width: 100%; /* メニューの幅を調整 */
    border: 2px solid #888888; /* 枠線の太さと色を調整 */
    border-radius: 10px; /* 枠線の角を丸める */
    background-color: #ffffff; /* メニューの背景色を設定 */
    color: #000000; /* メニュー内の文字色を設定 */
}
