.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;
}

/* サービスステータスのスタイル */
.servicestatus-hover-wrap {
  position: relative;
}
.servicestatus-popup {
  display: none; /* 最初は非表示（hover時に出現） */
  position: absolute;
  top: 0;
  left: 90%;
  min-width: 180px;
  background: transparent;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(30,34,41,0.09);
  padding: 8px 0;
  z-index: 1000;
}
.servicestatus-hover-wrap:hover .servicestatus-popup,
.servicestatus-hover-wrap:focus-within .servicestatus-popup {
  display: block;
}
.servicestatus-popup a {
  display: block;
  width: 100%;
  padding: 8px 22px;
  color: #222;
  text-decoration: none;
  font-size: 1em;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.servicestatus-popup a:hover {
  background: #f2f7fa;
  color: #1476d8;
}

/* アカデミーのスタイル */
.security-academy {
  width: 100%;       /* 親要素に合わせて伸縮 */
  height: auto;
  max-width: 1200px;  /* 元のサイズより大きく引き伸ばさない（任意） */
}