/*
Theme Name: Akiya
Theme URI: https://aomori-akiya-support.jp/
Description: 青森空き家対策サポート協会 WordPressテーマ
Author: Aomori Akiya Support Association
Version: 1.0.0
Text Domain: akiya
*/

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.sp-only {
    display: none;
}

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

html {
    font-size: 16px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

ul, ol {
    list-style: none;
}

/* ===================================
   Layout
   =================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
    background: #f7f5f1;
}

/* ===================================
   Breadcrumb
   =================================== */
.breadcrumb {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-top: -50px;
}

.breadcrumb-inner {
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e28a45;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-current {
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header
   =================================== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
}

.site-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d5a3d;
}

.site-logo a {
    color: #2d5a3d;
}

/* PCナビゲーション */
.main-navigation {
    display: block;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #2d5a3d;
}

/* メニューの「無料で相談する」を非表示 */
.main-navigation a[href="/contact/"] {
    display: none;
}

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: #e28a45;
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-contact-btn:hover {
    background: #d17a3a;
    transform: translateY(-2px);
}

/* ハンバーガーメニュー（SP用） */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #2d5a3d;
    transition: all 0.3s;
}

/* モバイルメニュー */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
}

.mobile-menu-header .site-logo a {
    color: #2d5a3d;
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: #2d5a3d;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navigation {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-navigation ul {
    display: flex;
    flex-direction: column;
}

.mobile-navigation li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-navigation a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    color: #333;
    font-size: 1rem;
}

.mobile-navigation a::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3L11 8L6 13' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.line-consultation-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px;
    padding: 15px 30px;
    background: #5d9d70;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
    .line-consultation-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin: 2em auto;
        width: 260px;
    }
}

.line-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 157, 112, 0.4);
    background: #4d8a5f;
}

/* モバイルメニューフッター */
.mobile-menu-footer {
    padding: 0;
    text-align: center;
    margin-top: auto;
}

.mobile-menu-footer-info {
    text-align: center;
    background: #555;
    padding: 20px;
}

.mobile-menu-footer-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.mobile-menu-footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.mobile-menu-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.mobile-menu-footer-buttons {
    display: flex;
    justify-content: space-between;
}

.mobile-menu-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 0;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    justify-content: center;
}

.mobile-menu-footer-icon {
    width: 36px;
    height: 36px;
}

.email-btn {
    background: #e28a45;
    color: #fff;
    text-align: left;
}

.email-btn:hover {
    background: #d17a3a;
}

.phone-btn {
    background: #fff;
    color: #333;
}

/* SP固定ボタン */
.sp-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.sp-fixed-buttons .mobile-menu-footer-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.sp-fixed-buttons .mobile-menu-footer-icon {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .sp-fixed-buttons {
        display: block;
    }
}

.phone-btn:hover {
    background: #f0f0f0;
}

/* ===================================
   MV Section
   =================================== */
.mv-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.mv-image {
    width: 100%;
    position: relative;
}

.mv-image .mv-pc-img {
    width: 100%;
    height: auto;
    display: block;
}

.mv-image .mv-sp-img {
    width: 100%;
    height: auto;
    display: none;
}

.mv-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    padding-left: 18%;
}

.mv-main-copy {
    font-size: 3rem;
    font-weight: bold;
    color: #064e3b;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.mv-sub-text {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.mv-icons {
    display: flex;
    gap: 20px 30px;
    justify-content: flex-start;
    align-items: flex-end;
}

.mv-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80px;
    flex-shrink: 0;
}

.mv-icon-item img {
    height: auto;
    margin-bottom: 10px;
}

.mv-icon-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.mv-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    min-width: 280px;
    white-space: nowrap;
    text-decoration: none;
}

.mv-btn .arrow-icon {
    flex-shrink: 0;
}

.contact-btn {
    background: #e28a45;
}

.contact-btn:hover {
    background: #d17a3a;
}

.line-btn {
    background: #5d9d70;
}

.line-btn:hover {
    background: #4d8a5f;
}

/* MV SP対応 */
@media (max-width: 768px) {
    .mv-image .mv-pc-img {
        display: none;
    }

    .mv-image .mv-sp-img {
        display: block;
    }

    .mv-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding-left: 0;
        padding: 30px 5px;
    }

    .mv-main-copy {
        font-size: 2rem;
        margin: 0 0 15px 0;
        letter-spacing: .12em;
    }

    .mv-sub-text {
        font-size: 1rem;
        margin: 0 0 20px 0;
    }

    .mv-icons {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .mv-icon-item {
        width: calc(50% - 7.5px);
    }

    .mv-icon-item img {
        width: 46px;
        max-height: 60px;
    }

    .mv-icon-text {
        font-size: 0.8rem;
    }

    .mv-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .mv-btn {
        width: 100%;
        min-width: auto;
    }
}

/* ===================================
   Service Section
   =================================== */
.service-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.service-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.sp-br {
    display: none;
}

.service-bg-sp {
    display: none;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #555;
    line-height: 1.4;
    margin: 0 0 50px 0;
    text-align: center;
}

.service-title-highlight {
    color: #e28a45;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: center;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 0 0 400px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f5f1;
    padding: 6px 8px;
    border-radius: 10px;
}

.service-item img {
    width: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.service-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    white-space: nowrap;
}

/* Service Section SP対応 */
@media (max-width: 768px) {
    .service-section {
        padding: 50px 0;
    }

    .service-bg {
        display: none;
    }

    .service-bg-sp {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .service-bg-sp img {
        width: 100%;
        height: auto;
    }

    .sp-br {
        display: block;
    }

    .service-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
        letter-spacing: .1em;
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        margin: 0;
    }

    .service-item img {
        width: 40px;
        height: auto;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Support Section
   =================================== */
.support-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.support-image {
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 60px;
    width: 45%;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    margin-left: 50%;
}

.support-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.support-title-highlight {
    color: #6e90a4;
}

.support-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.support-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 10px;
    align-items: end;
}

.support-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.support-icon-item img {
    width: 45px;
    height: auto;
}

.support-icon-label {
    font-size: 0.95rem;
    color: #7f9f88;
    margin: 0;
    font-weight: 500;
}

/* Support Section SP対応 */
@media (max-width: 768px) {
    .support-section {
        padding: 0 0 60px;
    }

    .support-image {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }

    .support-content {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .support-image img {
        height: auto;
    }

    .support-title {
        font-size: 1.35rem;
        text-align: left;
        line-height: 1.6;
        margin-top: 90px;
        letter-spacing: .11em;
    }

    .support-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .support-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .support-icon-item img {
        width: 50px;
    }

    .support-icon-label {
        font-size: 0.85rem;
    }
}

/* ===================================
   Support Bottom Section
   =================================== */
.support-bottom-section {
    padding: 80px 0;
    background: #fff;
}

.support-bottom-title {
    font-size: 2rem;
    font-weight: bold;
    color: #555;
    text-align: center;
    margin: 0 0 40px 0;
}

.support-bottom-container {
    background: #eef1ec;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.support-bottom-container::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 100px;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    transform-origin: top right;
}

.support-bottom-container::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -20px;
    width: 100px;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    transform-origin: bottom left;
}

.support-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.support-bottom-card {
    padding: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-bottom-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.support-bottom-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 15px 20px 10px 20px;
}

.support-bottom-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
}

/* Support Bottom Section SP対応 */
@media (max-width: 768px) {
    .support-bottom-section {
        padding: 50px 0;
    }

    .support-bottom-title {
        font-size: 1.5rem;
        margin: 0 0 30px 0;
    }

    .support-bottom-container {
        padding: 30px 40px;
    }

    .support-bottom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-bottom-card img {
        height: 250px;
    }

    .support-bottom-card-title {
        font-size: 1rem;
        margin: 12px 15px 8px 15px;
    }

    .support-bottom-card-desc {
        font-size: 0.85rem;
        margin: 0 15px 15px 15px;
    }
}

/* ===================================
   Trouble Section
   =================================== */
.trouble-section {
    padding: 80px 0;
    background: #f7f5f1;
}

.trouble-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #555;
    line-height: 1.4;
    margin: 0 0 20px 0;
    text-align: center;
}

.trouble-title-highlight {
    color: #e28a45;
}

.trouble-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 50px 0;
    text-align: center;
}

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.trouble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trouble-item img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.trouble-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.trouble-cta-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: bold;
}

.trouble-button-wrapper {
    text-align: center;
}

.trouble-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 30px;
    background: #e28a45;
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.trouble-btn:hover {
    background: #d17a3a;
}

/* Trouble Section SP対応 */
@media (max-width: 768px) {
    .trouble-section {
        padding: 50px 0;
    }

    .trouble-title {
        font-size: 1.95rem;
        text-align: left;
        letter-spacing: .18em;
    }

    .trouble-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        text-align: left;
    }

    .trouble-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .trouble-item p {
        font-size: 0.9rem;
    }

    .trouble-cta-text {
        font-size: 1.12rem;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: .1em;
    }

    .trouble-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===================================
   Flow Section
   =================================== */
.flow-section {
    padding: 80px 0;
    background: #fff;
}

.flow-section .section-title {
    margin-bottom: 50px;
}

.flow-content {
    max-width: 900px;
    margin: 0 auto;
}

.flow-pc {
    width: 100%;
    height: auto;
    display: block;
}

.flow-sp {
    display: none;
}

/* Flow Section SP対応 */
@media (max-width: 768px) {
    .flow-section {
        padding: 50px 0;
    }

    .flow-pc {
        display: none;
    }

    .flow-sp {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* ===================================
   Kengai Section
   =================================== */
.kengai-section {
    padding: 20px 0 80px;
    background: #fff;
}

.kengai-section .section-category {
    display: none;
}

.kengai-section .section-title {
    margin-bottom: 20px;
    text-align: center;
    color: #064e3b;
}

.kengai-subtitle {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin: 0 0 60px 0;
    font-weight: 500;
}

.kengai-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.kengai-flow-item {
    display: flex;
    align-items: center;
    flex: 1;
}

.kengai-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: #fff;
    border: 4px solid #d9dfd7;
    border-radius: 0;
    min-width: 130px;
    flex-shrink: 0;
}

.kengai-card-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.kengai-card-icon {
    width: 45px;
    height: 45px;
    margin: 0 0 12px 0;
}

.kengai-card-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.kengai-line {
    flex: 1;
    height: 4px;
    background: #d9dfd7;
    min-width: 25px;
    margin: 0;
}

.kengai-flow-item:last-child .kengai-line {
    display: none;
}

/* SP用画像 */
.kengai-sp-image {
    display: none;
    margin-top: 30px;
}

.kengai-sp-img {
    width: 100%;
    height: auto;
}

/* Kengai Section SP対応 */
@media (max-width: 768px) {
    .kengai-section {
        padding: 50px 0;
    }

    .kengai-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .kengai-flow {
        display: none;
    }

    .kengai-sp-image {
        display: block;
    }

    .kengai-flow-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kengai-card {
        width: 100%;
        min-width: auto;
        padding: 15px;
    }

    .kengai-card-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .kengai-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .kengai-card-desc {
        font-size: 0.8rem;
    }

    .kengai-line {
        display: none;
    }
}

/* ===================================
   Kitayama Section
   =================================== */
.kitayama-section {
    padding: 80px 0;
    background: #eef1ec;
}

.kitayama-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.kitayama-image {
    flex: 1;
}

.kitayama-image img {
    width: 100%;
    height: auto;
}

.kitayama-text {
    flex: 1;
}

.kitayama-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1d5b49;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.kitayama-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.kitayama-signature {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 30px 0 0 0;
    text-align: right;
}

.kitayama-name {
    font-size: 1.3rem;
}

/* Kitayama Section SP対応 */
@media (max-width: 768px) {
    .kitayama-section {
        padding: 50px 0;
    }

    .kitayama-content {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }

    .kitayama-image {
        width: 100%;
        margin: 0 auto;
    }

    .kitayama-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .kitayama-text p {
        font-size: 0.95rem;
    }

    .kitayama-signature {
        text-align: right;
        font-size: 0.95rem;
    }

    .kitayama-name {
        font-size: 1.2rem;
    }
}

/* ===================================
   Consultation Section
   =================================== */
.consultation-section {
    padding: 80px 0;
    background: #1d5b49;
}

.consultation-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 0 20px 0;
}

.consultation-description {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    align-items: end;
}

.consultation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.consultation-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.consultation-text {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.consultation-button-wrapper {
    text-align: center;
}

.consultation-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5d9d70;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.consultation-button:hover {
    background: #4a8a5d;
}

/* Consultation Section SP対応 */
@media (max-width: 768px) {
    .consultation-section {
        padding: 50px 0;
    }

    .consultation-title {
        font-size: 1.7rem;
        margin: 0 0 15px 0;
        letter-spacing: .12em;
    }

    .consultation-description {
        font-size: 0.9rem;
        margin: 0 0 30px 0;
        text-align: left;
    }

    .consultation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 5px;
    }

    .consultation-item img {
        width: 40px;
    }

    .consultation-text {
        font-size: 0.8rem;
    }

    .consultation-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===================================
   Reason Section
   =================================== */
.reason-section {
    padding: 80px 0;
    background: #fff;
}

.reason-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.reason-item {
    width: calc(33.333% - 27px);
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.reason-label {
    position: absolute;
    top: -32px;
    left: 0;
    background: #e28a45;
    color: #fff;
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    z-index: 10;
    letter-spacing: .1em;
}

.reason-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #647a6b;
    margin: 15px 15px 10px 15px;
    text-align: center;
}

.reason-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 15px 15px 15px;
    text-align: center;
}

/* Reason Section SP対応 */
@media (max-width: 768px) {
    .reason-section {
        padding: 50px 0;
    }

    .reason-grid {
        flex-direction: column;
        gap: 40px;
    }

    .reason-item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .reason-item img {
        height: 120px;
    }

    .reason-label {
        font-size: 0.75rem;
        padding: 4px 10px;
        top: -26px!important;
    }

    .reason-title {
        font-size: 1.2rem;
        margin: 12px 12px 8px 12px;
    }

    .reason-desc {
        font-size: 0.8rem;
        margin: 0 12px 12px 12px;
    }
}

/* ===================================
   Works Section
   =================================== */
.works-section {
    padding: 80px 0;
    background: #f7f5f1;
}

.works-hero {
    width: 100%;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.works-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.works-archive-hero {
    width: 100%;
    margin-bottom: 40px;
}

.works-archive-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.works-archive-grid {
    background: #f7f5f1;
    padding: 40px;
    border-radius: 8px;
}

/* ===================================
   Works Detail Page
   =================================== */
.works-detail-hero {
    width: 100%;
    margin-bottom: 40px;
}

.works-detail-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.works-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}

.works-detail-category {
    font-size: 0.9rem;
    color: #fb9e5e;
    margin-bottom: 15px;
}

.works-detail-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.works-detail-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin: 10px 0 20px;
}

.works-detail-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.works-detail-image {
    margin-bottom: 40px;
}

.works-detail-image img {
    width: 100%;
    height: auto;
}

.works-detail-info {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    width: 70%;
    margin: 0 auto;
}

.works-detail-section {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.works-detail-section:last-child {
    margin-bottom: 0;
}

.works-detail-section-title {
    font-size: 1rem;
    color: #333;
    margin: 0 0 10px 0;
    display: block;
    background: #4e6756;
    color: #fff;
    padding: 4px 12px;
    width:160px;
    text-align: center;
    font-weight:500;
}

.works-detail-section-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.works-detail-back {
    margin-top: 40px;
    text-align: center;
}

.works-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    background: #6e90a4;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    gap: 8px;
}

.works-back-button:hover {
    background: #5a7a8c;
}

.works-back-button svg {
    flex-shrink: 0;
}

.works-section .section-category {
    text-align: center;
    margin-bottom: 15px;
}

.works-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.works-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.works-slider-prev,
.works-slider-next {
    width: auto;
    height: auto;
    border: none;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 10px;
}

.works-slider-prev:hover,
.works-slider-next:hover {
    background: none;
}

.works-slider-prev:hover svg,
.works-slider-next:hover svg {
    stroke: #6e90a4;
}

.works-slider {
    flex: 1;
    overflow: hidden;
}

.works-slider-inner {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.works-slide {
    flex: 0 0 calc(33.333% - 20px);
}

.works-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.works-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.works-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.works-card-category {
    display: inline-block;
    background: none;
    color: #f9733f;
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.works-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.works-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.works-card-link {
    display: inline-block;
    color: #25735d;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    margin-top: auto;
    align-self: flex-end;
}

.works-card-link:hover {
    color: #1a5a4a;
}

.works-button-wrapper {
    text-align: center;
}

.works-list-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 30px;
    background: #6e90a4;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.works-list-button:hover {
    background: #5a7a8c;
}

/* Works Section SP対応 */
@media (max-width: 768px) {
    .works-section {
        padding: 50px 0;
    }

    .works-section .section-title {
        margin-bottom: 30px;
    }

    .works-slider-wrapper {
        gap: 10px;
        margin-bottom: 30px;
    }

    .works-slider-prev,
    .works-slider-next {
        width: 40px;
        height: 40px;
    }

    .works-slide {
        flex: 0 0 100%;
    }

    .works-card-image {
        height: 150px;
    }

    .works-card-content {
        padding: 15px;
    }

    .works-card-title {
        font-size: 1rem;
    }

    .works-card-desc {
        font-size: 0.85rem;
    }
}

/* ===================================
   Works Archive Page
   =================================== */
.page-header {
    padding: 60px 0;
    background: #f7f5f1;
    text-align: center;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.page-description {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.works-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.works-archive-item {
    display: flex;
}

.works-archive-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.works-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.works-archive-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.works-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.works-archive-card:hover .works-archive-image img {
    transform: scale(1.05);
}

.works-archive-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.works-archive-category {
    display: inline-block;
    background: none;
    color: #f9733f;
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.works-archive-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.works-archive-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.works-archive-title a:hover {
    color: #e28a45;
}

.works-archive-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.works-archive-link {
    display: inline-block;
    color: #25735d;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    margin-top: auto;
    align-self: flex-end;
}

.works-archive-link:hover {
    color: #1a5a4a;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
    color: #666;
    font-size: 1rem;
}

/* ページネーション */
.navigation.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 60px 0;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
    background: #e28a45;
    color: #fff;
    border-color: #e28a45;
}

/* Works Archive SP対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-description {
        font-size: 0.9rem;
    }

    .works-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .works-archive-image {
        height: 150px;
    }

    .works-archive-content {
        padding: 15px;
    }

    .works-archive-title {
        font-size: 1rem;
    }

    .works-archive-desc {
        font-size: 0.85rem;
    }
}

/* ===================================
   Contact Page
   =================================== */
.contact-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page-section {
    padding: 60px 0;
    background: #f7f5f1;
}

.contact-page-inner {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-content {
    width: 100%;
}

.contact-page-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.1em;
}

.contact-page-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-form-wrapper {
    margin-top: 20px;
}

.privacy-policy-box {
    margin-bottom: 30px;
}

.privacy-policy-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.privacy-policy-content {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

.privacy-policy-content p {
    margin: 0 0 8px 0;
}

.privacy-policy-content p:last-child {
    margin-bottom: 0;
}

/* Contact Form 7 スタイル */
.contact-form-wrapper .wpcf7 {
    max-width: 100%;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: #e28a45;
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    background: #6e90a4;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    gap: 8px;
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit svg {
    flex-shrink: 0;
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
    background: #5a7a8c;
}

.contact-form-wrapper .wpcf7-form .required {
    color: #e74c3c;
    margin-left: 4px;
    font-size: 0.85rem;
}

.contact-form-wrapper .required-badge {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 8px;
    vertical-align: middle;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 15px 0 0 0;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    background: #fde8e8;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #e8f5e8;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.contact-contact-methods {
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-method-icon {
    width: 50px!important;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon img {
    width: 60px;
    height: auto;
}

.contact-method-content {
    width: 100%;
}

.contact-method-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
}

.contact-method-number {
    font-size: 2rem;
    font-weight: bold;
    color: #443d3d;
    margin: 0 0 5px 0;
    letter-spacing: 0.05em;
}

.contact-method-hours {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-method-detail {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.contact-page-info {
    padding: 20px;
    background: #f7f5f1;
    border-radius: 8px;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.contact-info-address {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Contact Page SP対応 */
@media (max-width: 768px) {
    .contact-hero {
        height: 200px;
    }

    .contact-page-section {
        padding: 40px 0;
    }

    .contact-page-inner {
        padding: 25px;
        gap: 30px;
    }

    .contact-page-heading {
        font-size: 1.3rem;
    }

    .contact-method-item {
        gap: 15px;
    }

    .contact-method-icon {
        width: 50px;
        height: 50px;
    }

    .contact-method-icon img {
        width: 25px;
        height: 25px;
    }

    .contact-method-heading {
        font-size: 1.1rem;
    }

    .contact-method-number {
        font-size: 1.3rem;
    }

    .contact-form-wrapper .wpcf7-form input[type="text"],
    .contact-form-wrapper .wpcf7-form input[type="email"],
    .contact-form-wrapper .wpcf7-form input[type="tel"],
    .contact-form-wrapper .wpcf7-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .contact-form-wrapper .wpcf7-form .wpcf7-submit {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ===================================
   Price Section
   =================================== */
.price-section {
    padding: 80px 0;
    background: #eef1ec;
}

.price-section .section-title {
    margin-bottom: 50px;
}

.price-section .highlight {
    color: #e28a45;
}

.price-header-sp {
    display: none;
}

.price-title-pc {
    display: block;
}

.price-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-left {
    flex: 1;
}

.price-table {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.price-item-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    background: #7f9f88;
    padding: 10px 20px;
    flex: 0 0 40%;
}

.price-item-value {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    flex: 1;
    background: #eef1ec;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.price-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: -220px;
}

.price-images-header {
    display: none;
}

.price-images-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-img1 {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-right: 60px;
}

.price-img2 {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Price Section SP対応 */
@media (max-width: 768px) {
    .price-section {
        padding: 50px 0;
    }

    .price-header-sp {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 30px;
    }

    .price-header-sp .section-title {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
        white-space: nowrap;
    }

    .price-img1-sp {
        width: 150px;
        height: auto;
        flex-shrink: 0;
        margin-top: 20px;
        margin-left: -40px;
    }

    .price-title-pc {
        display: none;
    }

    .price-content {
        flex-direction: column;
        gap: 40px;
    }

    .price-left {
        width: 100%;
    }

    .price-table {
        width: 100%;
        margin-bottom: 20px;
    }

    .price-item-label {
        font-size: 0.9rem;
    }

    .price-item-value {
        font-size: 0.9rem;
    }

    .price-note {
        font-size: 0.8rem;
    }

    .price-images {
        width: 100%;
    }

    .price-img1 {
        display: none;
    }

    .price-img2 {
        width: 90%;
        margin-top: 12em;;
    }
}

/* ===================================
   Instagram Section
   =================================== */
.instagram-section {
    padding: 80px 0;
    background: #fff;
}

.section-category {
    font-size: 0.9rem;
    color: #f97316;
    text-align: center;
    margin: 0 0 15px 0;
    font-weight: bold;
    letter-spacing: 0.15em;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: .12em;
}

.section-description {
    font-size: 1rem;
    color: #555;
    text-align: center;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
}

/* Instagram Section SP対応 */
@media (max-width: 768px) {
    .instagram-section {
        padding: 50px 0;
    }

    .section-category {
        font-size: 0.8rem;
        margin: 0 0 10px 0;
        letter-spacing: 0.15em;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 0 0 60px 0;
        text-align: center;
        letter-spacing: .1em;
    }

    .section-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 80px 0;
    background: #f7f5f1;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    display: inline-block;
    background: none;
    color: #e28a45;
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    gap: 15px;
}

.faq-q {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.faq-question p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    flex: 1;
    font-weight: bold;
}

.faq-icon {
    font-size: 1.2rem;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    gap: 15px;
    margin-left: 0;
}

.faq-a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Section SP対応 */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        padding: 15px 10px;
    }

    .faq-q {
        font-size: 1rem;
    }

    .faq-question p {
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-a {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    color: #fff;
}

/* 上部フッター */
.footer-top {
    background: #064e3b;
    padding: 40px 0;
}

.footer-top-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.footer-left {
    flex: 0 0 auto;
    text-align: center;
    margin-top: 20px;
}

.footer-right {
    flex: 0 0 auto;
    text-align: center;
    margin-top: -20px;
    width: 250px;
}

.footer-center {
    flex: 0 0 auto;
    text-align: center;
    max-width: 500px;
}

.footer-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.footer-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
}

.footer-sp-image {
    display: none;
}

.footer-buttons-sp {
    display: none;
}

.footer-sp-img {
    width: 270px;
    height: auto;
}

.npo-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.npo-sub-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 30px;
    color: #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    min-width: 280px;
    white-space: nowrap;
}

.arrow-icon {
    flex-shrink: 0;
}

.contact-form-btn {
    background: #e28a45;
    font-weight: 500;
}

.contact-form-btn:hover {
    background: #d17a3a;
}

.line-btn {
    background: #5d9d70;
}

.line-btn:hover {
    background: #4d8a5f;
}

.tel-btn {
    background: #fff;
    color: #333;
}

.tel-btn:hover {
    background: #f0f0f0;
}

/* 下部フッター */
.footer-bottom {
    background: #555;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-bottom-content {
    text-align: left;
}

.footer-bottom-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: 0.1em;
}

.footer-bottom-name br {
    display: none;
}

.footer-bottom-address {
    margin-bottom: 5px;
}

.footer-bottom-copyright {
    font-size: 0.75rem;
    color: #999;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .header-contact-btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-center {
        max-width: 100%;
        order: 1;
    }

    .footer-center .footer-buttons {
        display: none;
    }

    .footer-buttons-sp {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        align-items: center;
        gap: 25px;
    }

    .npo-sub-text {
        margin-bottom: 0;
    }

    .footer-left {
        margin-top: 0;
        margin-right: -5px;
    }

    .footer-right {
        margin-top: 0;
        margin-left: -5px;
    }

    .footer-left,
    .footer-right {
        display: none;
    }

    .footer-image {
        max-height: 120px;
        max-width: 120px;
    }

    .footer-sp-image {
        display: block;
        order: 2;
        text-align: center;
        margin-top: 20px;
    }

    .footer-btn {
        width: 100%;
        max-width: 280px;
    }

    .npo-text {
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        text-align: center;
    }

    .footer-bottom-name br {
        display: block;
    }
}
input[id="zip"]{width: 180px!important;}
