@charset "UTF-8";

/* =========================================
   1. Base & Variables
   ========================================= */
:root {
    /* Colors */
    --color-text-main: #333333;
    --color-white: #ffffff;

    /* Theme Colors */
    --color-green-main: #2ea65a;
    --color-green-hover: #268a4b;
    --color-green-dark: #355e4b;
    --color-green-highlight: #008855;
    --color-green-bg: #009e5e;
    --color-green-border-light: #7ca190;
    --color-green-border-dark: #0A933B;
    --color-green-bg-light: #f0f7f4;

    /* Social / Button Colors */
    --color-line: #06c755;
    --gradient-phone-start: #ff8c00;
    --gradient-phone-end: #ff4500;

    /* Utility Colors */
    --color-yellow: #ffff00;

    /* Fonts */
    --font-main: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

/* =========================================
   2. Utilities & Helpers
   ========================================= */
.sp-only {
    display: none !important;
}

.text-yellow {
    color: var(--color-yellow);
}

.highlight-green {
    color: var(--color-green-highlight);
    font-weight: bold;
    font-size: 1.1em;
}

.highlight-green-bg {
    background-color: var(--color-green-bg);
    color: var(--color-white);
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 5px;
}

.highlight-bold {
    font-weight: bold;
    font-size: 18px;
}

/* Header & Layout Adjustments */
.site-header {
    display: none;
}

/* Page Template Overrides */
.page-template-lp .site-main {
    padding: 0;
    margin: 0;
    max-width: 100%;
}



/* =========================================
   4. LP Sections
   ========================================= */

/* Common Section Styles */
.lp-cta-section,
.lp-worries-section,
.lp-solution-section,
.lp-features-section,
.lp-cta02-section {
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    /* Generally centering content */
}

.lp-features-section {
    padding-bottom: 30px;
}

.lp-cta-inner,
.lp-worries-inner,
.lp-solution-inner,
.lp-features-section,
.lp-clt-inner,
.lp-cta02-inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* --- Hero Section --- */
.lp-hero {
    width: 100%;
    line-height: 0;
}

/* --- CTA Section --- */
.lp-cta-section {
    background-color: var(--color-white);
    padding: 30px;
}

.lp-cta-button {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.lp-cta-button:hover {
    opacity: 0.7;
}

.lp-cta-button img {
    max-width: 100%;
    width: 600px;
    box-shadow: none;
    border-radius: 0;
}

.lp-cta-text-img-wrapper {
    margin-top: 20px;
    text-align: center;
}

.lp-cta-text-img {
    width: 500px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.lp-cta-note {
    font-size: 20px;
    color: var(--color-text-main);
    font-weight: bold;
    margin-top: 0px;
}

/* --- CTA 02 Section --- */
.lp-cta02-section {
    background-color: var(--color-white);
    padding-bottom: 0px;
}

.lp-cta02-inner {
    padding: 50px 30px;
    border: 1px solid var(--color-green-main);
    background-image: url('../images/cta_back.jpg');
    background-size: cover;
    background-position: center;
}

.lp-cta02-text-img {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

/* --- Worries Section --- */
.lp-worries-section {
    background-image: url('../images/worries_back.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.lp-worries-inner {
    padding: 0 15px;
    text-align: center;
}

.lp-worries-header {
    margin-bottom: 40px;
}

.lp-worries-title-img {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 20px;
}

.lp-worries-sub {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text-main);
}

/* 5 Point Layout */
.lp-worries-content-area {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
}

.lp-worry-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.lp-worry-item {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    padding: 15px 30px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.lp-worry-center-img {
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.lp-worry-man {
    max-width: 300px;
    margin: 0 auto;
}

/* Message Box */
.lp-message-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--color-green-border-light);
    background-color: var(--color-green-bg-light);
    padding: 20px 50px;
    max-width: 1000px;
    margin: 60px auto;
    position: relative;
    gap: 40px;
}

.lp-message-content {
    flex: 1;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-main);
    font-feature-settings: "palt";
    font-weight: 500;
}

.lp-message-content p {
    margin: 0;
}

.lp-message-img {
    flex: 0 0 200px;
    margin-right: 0px;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.lp-message-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom Message */
.lp-worries-bottom-message {
    margin-bottom: 40px;
}

.lp-worries-bottom-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.lp-worries-bottom-title span {
    font-size: 40px;
    color: var(--color-text-main);
    border-bottom: 5px solid var(--color-text-main);
}

.lp-worries-bottom-text {
    font-size: 18px;
    font-weight: bold;
}

.lp-worries-footer-banner {
    margin-top: 30px;
}

.lp-worries-banner-img {
    max-width: 600px;
    margin: 0 auto;
}

/* --- Solution Section --- */
.lp-solution-section {
    background-image: url('../images/solution_back.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.lp-solution-header,
.lp-solution-gallery {
    text-align: center;
    margin-bottom: 30px;
    max-width: 95%;
    margin-right: auto;
    margin-left: auto;
}

.lp-solution-header-img,
.lp-solution-gallery-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lp-solution-content-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-green-border-dark);
    padding: 40px;
    background-image: url('../images/solution_back02.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 50%;
    width: 95%;
    margin: auto;
}

.lp-solution-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.lp-solution-col {
    width: 48%;
}

.lp-solution-text {
    text-align: left;
    font-size: 23px;
    line-height: 1.6;
    font-weight: 600;
}

.lp-solution-text p {
    margin-bottom: 0;
}

/* --- Features Section --- */

.lp-features-header {
    text-align: center;
    margin: 40px auto 20px;
}

.lp-features-header-img {
    max-width: 670px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lp-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.lp-feature-reverse {
    flex-direction: row-reverse;
}

.lp-feature-img {
    width: 48%;
}

.lp-feature-img img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lp-feature-content {
    width: 48%;
    text-align: left;
}

.lp-feature-title {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp-feature-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 5px;
}

/* --- CLT Section --- */
.lp-clt-section {
    background-color: var(--color-white);
    background-image: url('../images/clt_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    position: relative;
}

.lp-clt-header-wrapper {
    text-align: center;
    position: relative;
    margin-top: -30px;
}

.lp-clt-sarani {
    text-align: center;
    margin-bottom: 5px;
}

.lp-clt-sarani img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lp-clt-header {
    position: relative;
    margin: 0 auto 30px;
    width: 100%;
}

.lp-clt-inner {
    background-color: var(--color-white);
    padding: 20px 40px 50px;
}

.lp-clt-columns-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.lp-clt-col {
    width: 23%;
    text-align: left;
}

.lp-clt-img {
    margin-bottom: 10px;
    text-align: center;
}

.lp-clt-title {
    color: var(--color-green-main);
    font-size: 26px;
    font-weight: bold;
    margin: 0 auto 10px;
    text-align: center;
}

.lp-clt-desc {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 auto;
}


/* --- Bottom Buttons --- */
.lp-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 900px;
}

.lp-bottom-btn {
    display: block;
    transition: opacity 0.3s ease;
    width: 48%;
    /* Adjust width as needed */
    max-width: 400px;
}

.lp-bottom-btn img {
    width: 100%;
    height: auto;
}

.lp-bottom-btn:hover {
    opacity: 0.6;
    /* Semi-transparent on hover */
}

/* --- Contact Form Section --- */

/* --- Footer Links --- */
.lp-footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0 10px;
    margin: 10px auto 20px;
}

.lp-footer-logo {
    text-align: center;
    margin-top: 60px;
}

.lp-footer-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.lp-footer-links a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
    font-family: var(--font-main);
}

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

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

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

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

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

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

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

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

.cautionary p{
    margin: 0;
}

/* =========================================
   6. Responsiveness
   ========================================= */

/* Tablet & Mobile (<= 768px) */
@media (max-width: 768px) {
    .sp-only {
        display: block !important;
    }

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

    /* Contact Buttons */
    .contact-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn-contact {
        width: 100%;
        max-width: 100%;
    }

    .phone-number {
        font-size: 28px;
    }

    .text-line {
        font-size: 16px;
    }

    /* Thanks Actions */
    .btn-back-home {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 18px;
        box-sizing: border-box;
    }

    /* Worries Section */
    .lp-worry-items {
        flex-direction: column;
        align-items: center;
    }

    .lp-worry-center-img {
        margin-top: 20px;
    }

    /* Solution Section */
    .lp-solution-columns {
        flex-direction: column;
    }

    .lp-solution-col {
        width: 100%;
    }

    /* Features Section */
    .lp-feature-item,
    .lp-feature-reverse {
        flex-direction: column;
        gap: 20px;
    }

    .lp-feature-img,
    .lp-feature-content {
        width: 100%;
    }

    .lp-feature-img {
        margin-bottom: 10px;
    }

    /* CLT Section */
    .lp-clt-content-box {
        padding: 40px 10px 0;
    }

    .lp-clt-columns-wrapper {
        flex-wrap: wrap;
        gap: 0px;
    }

    .lp-clt-header {
        margin-bottom: 0px;
        width: 90%;
    }

    .lp-clt-section::after {
        width: 150px;
        height: 100px;
        top: 220px;
        transform: translateX(100px);
    }

    .lp-clt-col {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 1027px) {

    .lp-cta-inner,
    .lp-worries-inner,
    .lp-solution-inner,
    .lp-features-section,
    .lp-clt-inner {
        max-width: 1080px;
        width: 95%;
        margin: 0 auto;
    }

    .lp-feature-title {
        font-size: 25px;
        margin-bottom: 0px;
        margin-top: 5px;
    }

    .lp-cta02-section {
        padding: 50px 20px;
    }

    .lp-cta02-text-img {
        width: 80%;
    }

    .lp-message-content {
        font-size: 16px;
    }

    .lp-message-box {
        flex-direction: column;
        padding: 20px 15px 0;
        margin: 20px 20px;
        gap: 20px;
    }

    .lp-message-img {
        flex: 0 0 auto;
        margin: 0;
        width: 120px;
    }


    .lp-clt-columns-wrapper {
        flex-wrap: wrap;
    }

    .lp-clt-col {
        width: 48%;
    }

    .lp-clt-title {
        font-size: 21px;
    }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {

    .lp-cta-section,
    .lp-worries-section,
    .lp-solution-section,
    .lp-features-section,
    .lp-cta02-section {
        padding: 40px 0;
    }

    .lp-features-section {
        padding-bottom: 20px;
    }

    .lp-cta-section {
        padding: 0px 0px 40px;
    }

    .lp-cta02-section {
        padding-bottom: 10px;
    }

    .lp-cta-inner,
    .lp-worries-inner,
    .lp-solution-inner,
    .lp-features-section,
    .lp-cta02-section,
    .lp-clt-inner {
        width: 95%;
        margin-right: auto;
        margin-left: auto;
    }

    .lp-worries-inner {
        padding: 0px;
    }

    .lp-cta-note {
        font-size: 16px;
        margin-top: 0px;
    }

    .lp-solution-text {
        font-size: 17px;
    }

    .lp-feature-item,
    .lp-feature-reverse {
        gap: 0px;
        margin-bottom: 20px;
    }

    .lp-solution-content-box {
        padding: 20px 10px;
    }

    .lp-features-header {
        margin: 0px auto 15px;
        width: 370px;
    }

    .lp-feature-content p {
        font-size: 16px;
    }

    .lp-clt-inner {
        padding-right: 0px;
        padding-left: 0px;
        padding-bottom: 20px;
    }

    .lp-clt-section {
        padding: 60px 0px;
    }

    .lp-cta02-inner {
        padding: 30px 5px;
    }

    .lp-bottom-buttons {
        gap: 15px;
        margin: 30px auto;
        flex-direction: column;
        align-items: center;
    }

    .lp-bottom-btn {
        width: 100%;
        max-width: 400px;
    }

}