/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.txtc {
    text-align: center;
}
.s1 {
    font-family: "Noto Serif JP", serif;
    font-size: 6rem;
    color: #92ab23;
    line-height: 120%;
}
.s2 {
    font-family: "Noto Serif JP", serif;
    font-size: 4rem;
    color: #92ab23;
    line-height: 120%;
}
.s3 {
    font-family: "Noto Serif JP", serif;
    font-size: 2.5rem;
}
.s_red {
    color:#e53935;
    font-size: 18px;
}
.mb20 {
    margin-bottom: 20px !important;
}
@media (max-width: 640px) {
    .s1 {
        font-size: 4rem;
        line-height: 120%;
    }
    .s2 {
        font-size: 2.5rem;
        line-height: 120%;
    }
    .s3 {
        font-size: 1.75rem;
    }
}
@media(max-width:640px){
    .pc {
        display: none !important;
    }
}
@media(min-width:640px){
    .sp {
        display: none !important;
    }
}
/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_2 {
    max-width: 1000px;
    margin: 0;
    padding: 0;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #92ab23 0%, #779007 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #92ab23;
    border: 2px solid #92ab23;
}

.btn-secondary:hover {
    background: #92ab23;
    color: #fff;
}

.btn-login {
    background: #92ab23;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}


/* ヘッダー */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}
/* 非表示状態 */
.header.is-hidden {
    transform: translateY(-100%);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

@media (max-width: 1010px) {
.header-content {
    display: inline;
}
.nav ul {
    width: 100%;
    display: flex;
    gap: 0;
    align-items: center;
}
.nav ul li {
    width: 50%;
    display: block;
    text-align: center;
    padding: 1.2rem 0;
}
}
.logo {
    padding: 20px 0 0 0;
    display: flex;
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央（不要なら消してOK） */
    text-align: center;
}
.logo p {
    font-size: 20px;
    width: 300px;
    color: #92ab23;
    font-weight: bold;
    text-align: center;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

/* メインビジュアル */
.hero {
    padding: 80px 0;
    text-align: center;
    background: url("../img/img_lp-jc_top_02.png") top right no-repeat #f1f8e9;
    background-size: contain;
}

@media (max-width: 640px) {
.hero {
    padding: 40px 0;
    text-align: center;
    background: url("../img/img_lp-jc_top_02.png") top right no-repeat #f1f8e9;
    background-size: cover;
}
}

.hero-subtitle {
    display: inline-block;
    background: #666;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
}
@media (max-width: 640px) {
    .hero-subtitle {
        margin-bottom: 10px;
        padding: 6px 12px;
        font-size: 14px;
    }
}

.hero-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.hero-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* お悩みセクション */
.concerns {
    padding: 80px 0;
    background: #fff;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.concern-item {
    text-align: center;
    padding: 30px;
    background: #f4f4f4;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.concern-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.concern-item h3 {
    font-weight: normal;
}
.concern-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon img {
    width: 160px;
    height: 160px;
}

.concern-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.concern-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 解決セクション */
.solution {
    background: linear-gradient(135deg, #92ab23 0%, #779007 100%);
    padding: 60px 0;
    text-align: center;
}

.solution-title {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    line-height: 1.6;
}

/* サービス内容 */
.service {
    padding: 80px 0;
    background: #fafafa;
}

.service-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.service-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0 0 20px 0;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.service-box p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background-color: #333333;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin: 0 0 0.25rem 0;
    display: inline-flex;
}

.service-options,
.service-note {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-options h4,
.service-note h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #92ab23;
}

.option-item label {
    font-size: 15px;
    color: #333;
}

.service-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* 実績手順 */
.procedure {
    padding: 80px 0;
    background: #fff;
}

.procedure-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background: #f1f8e9;
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #92ab23 0%, #779007 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 20px;
}
.step-number p {
    color: #fff !important;
}
.step-number span {
    font-size: 32px;
    line-height: 100%;
    font-weight: bold;
    color: #fff;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.procedure-cta {
    text-align: center;
    margin-top: 50px;
}

/* お問い合わせ */
.contact {
    padding: 80px 0;
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #92ab23 0%, #779007 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #92ab23;
    margin-bottom: 5px;
}

.email {
    font-size: 18px;
    color: #92ab23;
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 14px;
    color: #666;
}

/* フォーム */
.contact-form form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #e53935;
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #92ab23;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

/* フッター */
.footer {
    background: #f6f9e6;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-company h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #92ab23;
}

.footer-company p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #92ab23;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #558b2f;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    color: #333;
}

/* レスポンシブ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 32px;
    }

    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .procedure-steps {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .concerns-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
    .footer-company h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #92ab23;
        padding: 0 1rem;
    }
    .footer-company p {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
        padding: 0 1rem;
    }
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 1rem;
    }
}
.tel-head a {
    color: #92ab23 !important;
    font-size: 2rem;
}
@media (max-width: 640px) {
    .tel-head a {
        color: #92ab23 !important;
        font-size: 1.5rem;
    }
}
.sv_lcont {
    width: 80%;
    float: left;
}
.sv_rcont {
    width: 20%;
    float: left;
}
.sv_lcont img {
    width: 300px;
}
.sv_rcont img {
    width: 300px;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 640px) {
    .service-box {
        position: relative;
    }
    .sv_lcont {
        width: 100%;
        z-index: 10;
    }
    .sv_rcont {
        position: absolute;
        right: 0.5rem;
        bottom: 0;
        z-index: 0;
    }
    .solution {
        background: linear-gradient(135deg, #92ab23 0%, #779007 100%);
        padding: 30px 0;
        text-align: center;
    }
    .solution-title {
        font-size: 24px;
        color: #fff;
        font-weight: bold;
        line-height: 1.6;
    }
    .concerns {
        padding: 40px 0;
        background: #fff;
    }
    .concern-item {
        text-align: center;
        padding: 20px 30px;
        background: #f4f4f4;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    .service {
        padding: 40px 0;
        background: #fafafa;
    }
    .service-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        margin-top: 0;
    }
    .procedure {
        padding: 40px 0;
        background: #fff;
    }
    .procedure-steps {
        margin-top: 0;
        gap: 20px;
    }
    .procedure-cta {
        text-align: center;
        margin-top: 30px;
    }
    .section-subtitle {
        text-align: center;
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }
    .contact {
        padding: 40px 0 40px 0;
        background: #fafafa;
    }
    .contact-content {
        gap: 40px;
        margin-top: 0;
    }
}