/* bodyと画面全体の幅を確保するための親要素を調整 */
body, html {
    width: 100vw !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  background-color:white;
}


.l-contents__frame {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

#block1, #block8 {
    width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* block1とblock8内の画像を100％幅に設定 */
#block1 img, #block8 img {
    width: 100% !important;
    height: auto;
}

.p-lp {
    width: 70% !important;
    margin: 0 auto; /* センターに配置 */
    box-sizing: border-box;
}
.custom-footer {
    background-color:white; /* グレーベース */
    color: #333; /* テキストは濃いグレーで視認性を高める */
    padding: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ddd; /* 境界線を追加 */
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif; /* Apple風のフォントスタック */
}

.footer-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333; /* タイトルは濃いグレーで視認性を強調 */
    font-weight: 600; /* 少し太めで強調 */
}

.company-info, .footer-links a, .copyright {
    font-weight: 400; /* 通常の太さで見やすく */
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.footer-links a {
    color: #007bff; /* ブルーでリンクを強調 */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #666; /* 著作権情報は薄めのグレー */
}