/* ロゴのコンテナスタイル */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.logo-container img {
    max-width: 375px;
    width: 100%;
    height: auto;
}

/* リンクボタンのスタイル */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    width: 100%; 
    max-width: 848px;
    min-width: 200px;
    padding: 10px 20px;
    box-sizing: border-box;
}

/* 基本的なボディスタイル */
body {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* リンクスタイル */
a {
    color: #000000;
    text-decoration: none;
}

a:visited { color: #000080; }
a:hover { color: #ff0000; }
a:active { color: #ff8000; }

/* メインコンテンツスタイル */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 見出しスタイル */
h1, h2 {
    width: 100%;
    text-align: center;
    font-size: 2em; /* 見出しのテキストを大きくする */
    margin-bottom: 20px; /* 見出しの下の余白を追加 */
    margin-top: 20px; /* 見出しの上の余白を追加 */
}

/* 段落スタイル */
p {
    margin-bottom: 15px; /* 段落の下の余白を追加 */
    margin-top: 15px; /* 段落の上の余白を追加 */
}

/* リストスタイル */
ul {
    padding-left: 20px;
    list-style-type: disc; /* リストのマーカーをディスクに変更 */
}

ul li {
    margin-bottom: 10px; /* リスト項目の間隔を広げる */
    font-size: 1.2em; /* リスト項目のテキストを大きくする */
}

/* 安全と品質セクションのスタイル */
.safety, .quality {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
}

/* リンクセクションのスタイル */
.links a img:first-child {
    width: 100%;
    height: auto;
    display: block;
}

/* パララックス効果のスタイル */
.parallax {
    /* パララックス背景画像 */
    background: url('https://www.uniselect.co.jp/ken-exp/image/haikei.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒いオーバーレイ */
    z-index: 1;
}

.parallax > div {
    position: relative;
    z-index: 2;
    color: white; /* テキストカラーは白のまま */
}

/* レスポンシブデザイン対応 */
@media (max-width: 1040px) {
    main {
        padding: 0 20px;
    }
}
