
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
header {
    background-color: #000080;
    color: white;
    padding: 15px 20px;
    text-align: center;
}
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}
h2 {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    color: #000080;
}
p {
    margin-bottom: 15px;
}
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #000080;
    color: white;
    font-size: 14px;
}

/* 強調部分のスタイル */
em {
    font-style: normal;
    background-color: #fffae6;
    color: #d35400;
    font-weight: bold;
    padding: 0 4px;
    border-radius: 4px;
}

/* 例：policy.css等に追記してください */
.profile-box {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap; /* スマホで縦並びになる */
}

.profile-photo img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.profile-info {
  flex: 1 1 300px;
  min-width: 260px;
}
.profile-info h2 {
  margin-top: 0;
  font-size: 1.4em;
  margin-bottom: 12px;
}
.profile-info ul {
  margin-top: 0;
  padding-left: 1.2em;
  font-size: 1em;
}
@media (max-width: 700px) {
  .profile-box {
    flex-direction: column;
    gap: 16px;
  }
  .profile-photo img {
    margin: 0 auto;
    display: block;
  }
}

footer a,
footer a:visited,
footer a:hover,
footer a:active {
    color: #ffffff;
    text-decoration: none;
}
