@charset "UTF-8";

/* =========================================
   Base / Reset
   ========================================= */
:root {
    --color-text-main: #333333;
    --color-white: #ffffff;
    --color-green-main: #2ea65a;
    --color-green-hover: #268a4b;
    --color-green-highlight: #008855;
    --color-line: #06c755;
    --gradient-phone-start: #ff8c00;
    --gradient-phone-end: #ff4500;
    --font-main: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.site-header {
    display: none;
}

.site-main {
    margin: 0;
    padding: 0;
}

.sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }
}

/* =========================================
   Thanks Page
   ========================================= */
.thankspage {
    border-top: 5px solid var(--color-green-main);
    text-align: center;
}

.thanks-content {
    padding: 80px 20px;
    text-align: center;
}

.thanks-message {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
}

.thanks-message p {
    margin: 0 0 20px;
}

.thanks-message a {
    color: var(--color-green-main);
    font-weight: bold;
    text-decoration: underline;
}

.thanks-actions {
    margin-top: 40px;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 60px;
    border-radius: 50px;
    background-color: var(--color-green-main);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: var(--color-white) !important;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: var(--color-green-hover);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    color: var(--color-white) !important;
    opacity: 1;
    transform: translateY(-2px);
}

.cautionary {
    text-align: left;
    font-size: 14px;
}

.cautionary p {
    margin: 0;
}

@media (max-width: 768px) {
    .thanks-content {
        padding: 56px 16px;
    }

    .btn-back-home {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 18px;
    }
}
