.header-links {
    display: flex;
    align-items: center;
}

.header-links a {
    color: #ecf0f1;
    margin: 0 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* 表示位置ボタン直下の右揃え */
    background-color: #fff;
    max-height: 400px;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    overflow-y: auto; /* スクロールを有効化 */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    font-size: 16px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.request-links {
    list-style: none;
    padding: 0;
}

.request-links li {
    margin-bottom: 10px;
    display: flex;
}

.request-links a {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.request-links a:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.request-links img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.request-links img:hover {
    transform: scale(1.05);
}

/* 戻るボタンのスタイル */
.back-button {
    position: fixed; /* 固定位置 */
    top: 20px; /* 画面上部からの距離 */
    left: 20px; /* 画面左側からの距離 */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    z-index: 1000; /* 他の要素よりも前面に表示 */
}

.back-button:hover {
    background-color: #0056b3;
}

.iframe-container {
    margin: 20px 0; /* 上下にマージンを追加 */
    display: flex;
    justify-content: center;
}