body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffbb00;
    color: #000000;
    background-image: url('.png'); /* 背景画像を指定 */
    background-size: contain; /* 縦横同じ縮尺で縮小 */
    background-repeat: repeat-y; /* 縦にループするように設定 */
    background-position: center; /* 背景画像を中央に配置 */
}

.header {
    background-color: #ffbb00; /* headerの背景色を黒に設定 */
    background-image: url('.png'); /* 背景画像を指定 */
    background-size: cover; /* 横幅に合わせて縮小 */
    background-position: center; /* 背景画像を中央に配置 */
    padding: 0 0 0 0; /* 必要に応じてpaddingを調整 */
}

.header img {
    width: 100%;
    max-width: 2000px;
    height: auto;
    display: block;
    margin-bottom: 10px; /* 上下のマージンを20pxに設定 */
    margin-left: 0px;
}

.container {
    padding: 0px 20px 20px 20px; /* 上部に余白を追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.notes {
    font-weight: bold;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 20px 20px 20px;
    padding-bottom: 10px;
    max-width: 400px; /* フォームコンテナと同じ最大幅に設定 */
    box-sizing: border-box;
    margin: 0 auto; /* 中央揃えにするためのマージン */
    border: 2px solid #000000; /* 黒色の1px枠線 */
}


.notes p {
    font-size: 1.5em; /* フォントサイズを大きく設定 */
    display: flex;
    align-items: center;
    justify-content: center; /* 中央揃えにする */
    text-align: center; /* テキストも中央揃えにする */
    margin: 0 auto; /* 中央揃えにするためのマージン */
}

.notes .highlight {
    color: #000000;
}

.notes ul {
    list-style-type: square;
    padding-left: 20px;
}

.notes li {
    margin-top: 15px;
    margin-bottom: 15px;
}

.form-container {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.googleform-wrapper {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #000000;
    font-weight: bold;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #2486d6;
    border-radius: 5px;
    background-color: #2486d6;
    color: #000000;
    width: 100%;
    box-sizing: border-box;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

button {
    padding: 10px 30px;
    font-size: 16px;
    font: bold;
    color: #000000;
    background-color: #ffbb00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #fde195;
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #333333;
    color: #000000;
    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: #68f341;
    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: 10px; /* メニュー内のパディングを調整 */
    width: 100%; /* メニューの幅を調整 */
    border: 2px solid #000000; /* 枠線の太さと色を調整 */
    border-radius: 5px; /* 枠線の角を丸める */
    background-color: #ffffff; /* メニューの背景色を設定 */
    color: #000000; /* メニュー内の文字色を設定 */
}