/* 最新情報エリア */
.intro-section {
    /* background-color: #f8f9fa; */
    padding: 20px;
    margin: 20px auto 20px auto;
    border-radius: 5px;
    width: 90%;
    text-align: left;
}

.index-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.index-image img {
  width: 150px;         /* 固定幅 */
  height: 150px;        /* 固定高さ */
  object-fit: cover;    /* 中央部分を切り取って均一表示 */
  border-radius: 50%;   /* 丸型にする（好みで） */
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.intro-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.intro-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.intro-list {
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央に揃える */
  gap: 30px;
}

.intro-links a {
    margin-right: 10px;
    font-size: 1.2em;
    text-decoration: none;
}

/* overviewセクション */
.index-overview {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px auto;
    border-radius: 5px;
    width: 90%;
    text-align: left;
}

.index-overview-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.index-text {
    flex: 2;
}

.index-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.index-image img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .index-overview-box {
        flex-direction: column;
        align-items: center;
    }

    .index-text,
    .index-image {
        width: 100%;
    }

    .index-image {
        margin-top: 20px;
        justify-content: center;
    }

    .index-image img {
        max-width: 80%;
    }
}

/* 記事エリア */
.article-content {
    background-color: white;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
}

.article-content h2 {
    color: #333;
}

.article-content pre {
    white-space: pre-wrap;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
}
