/* リセットCSS (簡略版) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

/* ヘッダーのスタイル */
.main-header {
    width: 100%;
    overflow: hidden;
    background-color: #3f51b5;
		max-width: 1200px;
		margin: 0 auto;
}

/* レスポンシブなヘッダー画像 */
.header-image {
    width: 100%;
    height: auto; /* 縦横比を維持 */
    display: block;
}

/* コンテンツ全体を中央に寄せるためのコンテナ */
.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
}

/* トップページへのリンク (パンくずリスト風) */
.breadcrumb {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.breadcrumb a {
    text-decoration: none;
    color: #3f51b5;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #3f51b5;
}

/* リンク集のレイアウト (Flexboxでレスポンシブに) */
.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* ツールアイテム (セクション) のスタイル */
.tool-item {
    position: relative; /* リンクオーバーレイの基準 */

    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%; /* モバイルでは1列 */
    max-width: 450px; /* 1列時のセクション最大幅 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer; /* 全体がリンクであることを示す */

    transition: all 0.3s ease; /* ホバー効果のアニメーションを滑らかにする */
}

/* セクション全体を覆う透明なリンク要素 */
.tool-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* 他の要素より手前に表示 */
}

/* ツールアイテムのホバー効果 */
.tool-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); /* 少し浮き上がる */
    border-color: #3f51b5;
}

.tool-item h2 {
    color: #3f51b5;
    margin-bottom: 10px;
}

/* p要素 (複数行対応) */
.tool-item p {
    margin-bottom: 15px;
    flex-grow: 1; /* 内容の量に関わらずボタンの位置を揃える */
    /* p要素はデフォルトで複数行に対応しています */
}

/* p要素内の太字を強調するスタイル */
.tool-item p strong {
    font-weight: bold;
    color: #ff9800; /* キーカラーに合わせて色を強調 */
}

/* デザインのみのボタン (spanタグ) のスタイル */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
    cursor: default; /* クリック不可を示す */
}

.button:hover {
    background-color: #f57c00;
}

/* --- メディアクエリ (レスポンシブ対応) --- */

/* 600px以上で2列表示 (最大2列) */
@media (min-width: 600px) {
    .tool-item {
        /* コンテナ幅を最大限に利用し、2列で広めに表示 */
        /* (100% - 20px) / 2 */
        width: calc(50% - 10px);

        /* 2列表示時はコンテナ幅の半分まで広がるように max-width の制限を解除 */
        max-width: none;
    }
}
