/* thanks.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thanks-wrapper {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.thanks-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 980px;
    width: 90%;
}

.thanks-container h1 {
    color: #1f3a52;
    margin-bottom: 25px;
}

.thanks-container p {
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #09b555;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #07a24a;
}

/* ----------フッター部分---------- */
.footer {
    background-color: #1f3a52; /* フッターの背景色 */
    color: #fff; /* テキストの色 */
    padding: 20px 0; /* 上下のパディング */
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-inner {
    max-width: 1000px; /* 最大幅 */
    margin: 0 auto; /* 中央揃え */
}

.footer a {
    color: #fff; /* リンクの色 */
    text-decoration: none; /* リンクの下線を消す */
    margin: 0 5px; /* リンク間のマージン */
}

.footer a:hover {
    text-decoration: underline; /* ホバー時に下線を表示 */
}

.footer p {
    margin: 5px 0; /* パラグラフ間のマージン */
}

@media (max-width: 700px){
    /* ----------フッター部分---------- */
    .footer-inner {
        padding: 0 10px; /* モバイルでのパディング */
    }
    .footer a {
        display: block; /* モバイルでのブロック表示 */
        margin: 5px 0; /* リンク間のマージン */
    }
    .thanks-container h1 {
        margin-bottom: 20px;
    }
    
    .thanks-container p {
        margin-bottom: 20px;
    }
}
