* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
    color: #3C1A00;
}


/* ヘッダー（追従） */
.header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right img {
    height: auto;
    display: block;
    
}
.header-contact{
    cursor: pointer;
    transition: transform 0.2s ease;
}
.header-contact:hover {
    transform: scale(1.05);
}

/* メインビジュアル */
.fv-section {
    margin-top: 94px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fv-container {
    display: flex;
    min-height: 550px;
}

/* 左側コンテンツ */
.fv-left {
    flex: 1;
    background-color: #FBF9F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.fv-content {
    max-width: 545px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.area-text {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    background-color: #E4831A;
    padding: 8px 16px;
    border-radius: 3px;
    display: inline-block;
}

.main-catch {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #3C1A00;
}

.small-text {
    font-size: 32px;
}

.large-text {
    font-size: 42px;
}

.bracket {
    letter-spacing: -0.1em;
}

.orange {
    color: #E4831A;
}

.divider-line {
    width: 100%;
    height: 2px;
    background-color: #3C1A00;
    margin-bottom: 25px;
}

.sub-text {
    font-size: 23px;
    font-weight: 500;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(transparent 70%, #FBE28F 60%);
    font-weight: 700;
}


.result-image {
    margin-bottom: 30px;
}

.result-image img {
    width: 520px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* SP用の画像は初期状態で非表示 */
.sp-result {
    display: none;
}

/* 下部画像 */
.fv-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

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

/* 右側コンテンツ */
.fv-right {
    flex: 1;
    background-image: url("https://ouchino-kaikata-nagasaki.com/wp-content/themes/nagasaki/images/fv-image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* PC用ボタンエリア */
.button-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #ffffff;
}

.button-area img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.button-area img:hover {
    transform: scale(1.05);
}

/* SP用固定ボタン（初期状態で非表示） */
.sp-fixed-button {
    display: none;
}

/* スマートフォン対応 */
@media (max-width: 1024px) {
    .header {
        padding: 16px 0;
		position: unset;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo img {
        width: auto;
        max-width: 300px;
    }
    
    .header-right {
        display: none; /* スマホでは非表示 */
    }
    
    .fv-section {
        margin-top: 0px;
        height: auto;
        min-height: auto;
        background: none;
    }
    
    .fv-container {
        flex-direction: column;
        min-height: auto;
    }
    
    /* スマホでは画像が上部に */
    .fv-right {
        order: 1;
        flex: none;
        
        background-size: cover;
        background-position: center;
        width: 100%;
        content: url("https://ouchino-kaikata-nagasaki.com/wp-content/themes/nagasaki/images/fv-sp-image.webp");
    }
    
    /* スマホではテキストコンテンツが下部に */
    .fv-left {
        order: 2;
        flex: none;
        background-color: #FBF9F2;
        padding: 40px 0 40px 0; /* 下部に固定ボタン分のpadding追加 */
        width: 100%;
        min-height: auto;
    }
    
    .fv-content {
        max-width: none;
        width: 100%;
        padding: 0 ;
        text-align: center;
    }
    
    .fv-bottom {
        order: 3;
        margin-top: 0;
        z-index: auto;
        width: 100%;
    }
    
    .area-text {
        font-size: 20px;
        padding: 6px 12px;
        margin-bottom: 25px;
        border-radius: 4px;
    }
    
    .main-catch {
        font-size: 48px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .small-text {
        font-size: 32px;
    }
    
    .large-text {
        font-size: 30px;
    }
    
    .divider-line {
        margin: 20px auto 25px auto;
        max-width: 60%;
        height: 1px;
    }
    
    .sub-text {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .result-image {
        margin-bottom: 0;
    }
    
    /* PC用の画像を非表示にしてSP用を表示 */
    .pc-result {
        display: none;
    }
    
    .sp-result {
        display: block;
        width: 100%;
        max-width: 350px;
    }
    
    /* PC用ボタンを非表示 */
    .pc-button {
        display: none;
    }
    
    /* SP用固定ボタンを表示 */
    /* SP用固定ボタンを表示 */
.sp-fixed-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}
    
    .sp-fixed-button img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .sp-button-left,
    .sp-button-right {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        text-decoration: none;
    }
    
    .sp-button-left {
        left: 0;
    }
    
    .sp-button-right {
        right: 0;
    }
}

/* 小さいスマートフォン対応 */
@media (max-width: 480px) {
    /* PC/SP画像切り替え */
    .pc-only {
        display: none;
    }
    .divider-line {
        margin: 10px auto;
        max-width: 100%;
        height: 1px;
    }
    .header-container {
        padding: 0 10px;
    }
    

    
    .fv-left {
        padding: 20px 0 40px 0;
    }
    
    .fv-content {
        padding: 0 15px;
    }
    
    .area-text {
        font-size: 13px;
        padding: 5px 10px;
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .main-catch {
        font-size: 24px;
        margin-bottom: 0px;
    }
    
    .small-text {
        font-size: 18px;
    }
    
    .large-text {
        font-size: 26px;
    }
    
    .sub-text {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
    
    .sp-result {
        max-width: 320px;
    }
}






.onayami-section {
    background-image: url('https://ouchino-kaikata-nagasaki.com/wp-content/themes/nagasaki/images/onayamiback.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    position: relative;
}

.sorosoro-speech {
    text-align: center;
}

.sorosoro-image {
    max-width: 450px;
    width: 100%;
    height: auto;
	margin: 0 auto;
}

.title-container {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3C1A00;
    border-bottom: 3px solid #3C1A00;
    display: inline-block;
    padding-bottom: 10px;
}

.subtitle-container {
    text-align: center;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: #3C1A00;
    margin-bottom: 8px;
    font-weight: 500;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.character-left,
.character-right {
    position: absolute;
    z-index: 2;
}

.character-left {
    left: -80px;
    bottom: -20px;
}

.character-right {
    right: -80px;
    bottom: -20px;
}

.character-image {
    width: 200px;
    height: auto;
}

.checklist-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 64px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    position: relative;
    z-index: 1;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.check-text {
    font-size: 20px;
    color: #3C1A00;
    font-weight: 500;
    line-height: 1.4;
}

.sp-onayami {
    display: none;
}

.sp-onayami-image {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .onayami-section {
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: 1.4rem;
    }
    
    .subtitle-container {
        display: none;
    }
    
    .content-container {
        position: static;
        max-width: none;
        z-index: 1;
    }
    
    .character-left,
    .character-right {
        display: none;
    }
    
    .checklist-container {
        width: 90%;
        max-width: none;
        padding: 20px 30px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .check-text {
        font-size: 0.9rem;
    }
    
    .sorosoro-image {
        max-width: 300px;
    }
    
    .sp-onayami {
        display: block;
        text-align: center;
        margin-top: -10px;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.2rem;
    }
    
    .checklist-container {
        padding: 18px 25px;
    }
    
    .check-text {
        font-size: 0.85rem;
    }
    
    .sp-onayami-image {
        max-width: 300px;
    }
}



/* 解決セクション（上部） */
.kaiketsu-section-top {
    background-color: #FFFAEE;
    position: relative;
}

.kaiketsu-container {
    margin: 0 auto;
}

.kaiketsu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 0;
}

.daizyoubu-left {
    width: 45%;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.daizyoubu-image {
    width: 100%;
    height: auto;
    display: block;
}

.kaiketsu-right {
    width: 55%;
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.ok-image-container {
    margin-bottom: 20px;
}

.ok-image {
    width: 520px;
    max-width: 100%;
    height: auto;
}

.large-service-text {
    font-size: 36px;
    font-weight: 400;
    color: #3C1A00;
    margin-bottom: 25px;
    line-height: 1.4;
}

.large-service-text strong {
    font-weight: 700;
}

.orange-text {
    color: #E4831A;
    font-weight: 700;
}

.highlight-yellow {
    background: linear-gradient(transparent 70%, #FBE28F 60%);
    font-weight: 700;
}

.kaiketsu-message {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.7;
    color: #3C1A00;
    width: 90%;
    margin: 0 auto;
}

.kaiketsu-message p {
    line-height: 2;
    text-align: left;
    font-weight: 500;
}

.kaiketsu-message strong {
    font-weight: 700;
}

/* 解決セクション（下部） */
.kaiketsu-section-bottom {
    background-color: #ffffff;
    position: relative;
    padding: 80px 0;
}

.back-polygon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.back-polygon-sp {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.rei-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rei-title h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-solution-title {
    font-size: 40px;
    font-weight: 700;
}

.brown-text {
    color: #3C1A00;
	font-size: 20px;
}

.solution-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
}

.solution-item {
    flex: 1;
    
    text-align: center;
}

.solution-icon {
    margin-bottom: 20px;
}

.kaiketsu-icon {
    height: 150px;
    width: auto;
	margin: 0 auto;
}

.solution-content {
    position: relative;
}

.solution-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mini-polygon-container {
    position: relative;
    height: 25px;
    margin-bottom: -15px;
    z-index: 3;
}

.mini-polygon {
    width: 50px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.solution-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3C1A00;
    text-align: center;
    background-color: #FFFAEE;
    padding: 25px 20px 15px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.solution-answer p {
    margin-bottom: 5px;
}

.quote-orange {
    color: #E4831A;
}

.solution-answer strong {
    font-weight: 700;
}

.orange {
    color: #E4831A;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .daizyoubu-image{
        content: url('https://ouchino-kaikata-nagasaki.com/wp-content/themes/nagasaki/images/daizyoubu-sp.webp');
    }
    .kaiketsu-top {
        flex-direction: column;
        text-align: center;
        gap: 0px;
        padding: 0;
    }
    
    .daizyoubu-left,
    .kaiketsu-right {
        width: 100%;
    }
    
    .daizyoubu-left {
        padding: 0;
    }
    
    .kaiketsu-right {
        padding: 50px 20px 50px 20px;
        text-align: center;
    }
    
    .ok-image {
        width: 400px;
    }
    
    .large-service-text {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .kaiketsu-message {
        font-size: 0.9rem;
        padding: 18px 20px;
        width: 80%;

    }
    
    .kaiketsu-section-bottom {
        padding: 50px 0;
    }
    
    
    
   
    
    .rei-title {
        padding: 0 15px;
    }
    
    .rei-title h3 {
        font-size: 32px;
    }
    
    .main-solution-title {
        font-size: 32px;
    }
    
    .solution-items {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        width: 80%;
    }
    
    .solution-item {
        padding: 25px 15px;
        text-align: left;
    }
    
    .solution-top-area {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .solution-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .kaiketsu-icon {
        height: 150px;
    }
    
    .solution-content h4 {
        font-size: 32px;
        margin-bottom: 0;
        text-align: left;
        flex: 1;
    }
    
    .mini-polygon-container {
        margin-bottom: -10px;
    }
    
    .solution-answer {
        padding: 20px 15px 12px 15px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .back-polygon {
        display: none;
    }
    .back-polygon-sp {
        display: block;
    }
    .ok-image-container {
        margin-bottom: 0px;
    }
    .kaiketsu-right {
        padding: 40px 15px 0px 15px;
        text-align: center;
    }
    
    .ok-image {
        width: 300px;
    }
    
    .large-service-text {
        font-size: 20px;
    }
    
    .kaiketsu-message {
        font-size: 0.8rem;
        padding: 15px 18px;
        width: 100%;
    }
    
    .kaiketsu-section-bottom {
        padding: 40px 0;
    }
    
    .rei-title {
        padding: 0 10px;
    }
    
    .main-solution-title {
        font-size: 18px;
    }
    .rei-title h3 {
        font-size: 16px;
    }
    
    .solution-items {
        padding: 0 10px;
        width: 95%;
    }
    
    .solution-item {
        padding: 20px 12px;
    }
    
    .solution-top-area {
        gap: 15px;
    }
    
    .kaiketsu-icon {
        height: 70px;
    }
    
    .solution-content h4 {
        font-size: 18px;
    }
    
    .solution-answer {
        padding: 18px 12px 10px 12px;
        font-size: 0.8rem;
    }
}

/* CTAセクション */
.cta-section {
    background-color: #ffffff;
    position: relative;
    padding: 0;
    margin-top: 40px;
}

.cta-container {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
    border: 3px solid #E4831A;
    border-radius: 20px;
    background-color: #FBF5E8;
    position: relative;
    z-index: 1;
}

.cta-header {
    position: relative;
    background-color: #E4831A;
    color: white;
    text-align: center;
    padding: 20px;
    margin: -40px -20px 40px -20px;
    border-radius: 17px 17px 0 0;
}

.plus-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.cta-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding-top: 15px;
}

.services-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-box {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.point-icon {
    display: none;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #E4831A;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 18px;
    color: #3C1A00;
    line-height: 2;
    text-align: left;
    font-weight: 500;
}

.specialist-banner {
    text-align: center;
    margin-bottom: 30px;
}

.tantou-image {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.store-visit {
    text-align: center;
    margin-bottom: 30px;
}

.visit-title {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.store-info-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    align-items: center;
}

.action-buttons {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.action-btn {
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
    height: auto;
}

.action-btn:hover {
    transform: scale(1.05);
}

.store-details {
    flex: 1;
}

.store-logo {
    margin-bottom: 20px;
}

.store-logo img {
    width: 100%;
    height: auto;
}

.info-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #ddd;
}

.info-table td {
    padding: 12px 0;
    vertical-align: top;
}

.label {
    font-weight: 700;
    color: #3C1A00;
    width: 80px;
    font-size: 16px;
}

.value {
    color: #3C1A00;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-align: right;
}

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

.bottom-illustration {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: -1;
}

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

/* レスポンシブ */
@media (max-width: 1024px) {
    .plus-icon {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    .point-image{
        width: 50px !important;
    }
    .cta-container {
        width: 100%;
        margin: 0;
        padding: 30px 15px 80px 15px;
        border: none;
        border-radius: 0;
        background-color: #FBF5E8;
        border-bottom: 2px solid #E4831A;
    }
    
    .cta-header {
        border-radius: 0;
        margin: -30px -15px 40px -15px;
    }
    
    .plus-icon img {
        width: 50px;
    }
    
    .cta-header h2 {
        font-size: 24px;
        padding-top: 0px;
    }
    
    .services-row {
        flex-direction: column;
        gap: 60px;
        width: 60%;
        margin: 0 auto;
    }
    .tantou-image {
        width: 60%;
        height: auto;
        margin: 0 auto;
        margin-top: 40px;
    }
    .service-box {
        position: relative;
        margin-top: 22px;
    }
    
    .point-icon {
        display: block;
        position: absolute;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    
    .point-image {
        width: 45px;
        height: auto;
    }
    
    .service-image {
        display: none;
    }
    
    .service-box h3 {
        font-size: 24px;
        margin-top: 15px;
    }
    
    .service-box p {
        font-size: 14px;
    }
    
    .pc-only {
        display: none !important;
    }
    
    .sp-only {
        display: block;
    }
    
    .store-info-section {
        flex-direction: column;
        gap: 25px;
        padding: 40px;
        width: 60%;
        margin: 0 auto;
    }
    .visit-title {
        width: 60%;
        height: auto;
        margin: 0 auto;
    }
    .store-info-section .action-buttons {
        order: 1;
        width: 100%;
    }
    
    .store-info-section .store-details {
        order: 2;
    }
    
    .action-buttons {
        align-items: stretch;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services-row{
        flex-direction: column;
        gap: 40px;
        width: 100%;
        margin: 0 auto;
    }
    .tantou-image {
        width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 40px;
    }
    .service-box h3 {
        font-size: 20px;
        margin-top: 15px;
    }
    .visit-title {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .store-info-section{
        width: 100%;
        padding: 24px;
    }
}


/* 選ばれる理由セクション */
.reason-section {
    background-color: #FFFAEE;
    padding: 80px 0;
    position: relative;
    margin-top: 120px;
    overflow: hidden;
}

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

/* セクションヘッダー */
.reason-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.reason-title-bg {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.reason-bg {
    width: 520px;
    height: auto;
}

.reason-main-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.3;
}

.reason-logo {
    font-size: 48px;
    font-weight: 500;
}

.reason-ga {
    font-size: 32px;
    font-weight: 500;
}

.reason-highlight {
    color: #E4831A;
    font-size: 48px;
}

.reason-description {
    font-size: 18px;
    color: #3C1A00;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* 返済計画提案セクション */
.plan-section {
    margin-bottom: 0px;
}

.plan-title-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 96px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.2;
    z-index: 1;
}

.plan-title {
    position: relative;
    z-index: 2;
    font-size: 40px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 20px;
}

.orange-text {
    color: #E4831A;
}

/* ケーススタディ */
.case-container {
    background-color: #ffffff;
    border: 2px solid #E4831A;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 64px;
    position: relative;
}

.case-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E4831A;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 25px;
    border-radius: 25px;
}

.case-content {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
}

.case-left {
    flex: 1;
    background-color: #F7F7F7;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    background-image: repeating-linear-gradient(to right, #3C1A00 0, #3C1A00 8px, transparent 8px, transparent 16px);
    background-position: 0 100%;
    background-size: 16px 2px;
    background-repeat: repeat-x;
}

.case-image {
    width: 80px;
    height: auto;
}

.case-title h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.case-title .orange-part {
    color: #E4831A;
}

.case-title .brown-part {
    color: #3C1A00;
}

.case-details {
    flex: 1;
}

.case-table {
    width: 100%;
    border-collapse: collapse;
}

.case-table td {
    padding: 12px 0;
    vertical-align: top;
    border-bottom: 1px solid #3C1A00;
}

.case-table tr:last-child td {
    border-bottom: none;
}

.case-table .label {
    font-weight: 700;
    color: #3C1A00;
    width: 80px;
    font-size: 18px;
    text-align: left;
}

.case-table .value {
    color: #3C1A00;
    font-size: 18px;
    line-height: 1.4;
    text-align: right;
}

.arrow {
    flex-shrink: 0;
    align-self: center;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow img {
    width: 100%;
    height: auto;
}

.case-right {
    flex: 1;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF4E8 100%);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.proposal-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 24px;
    background-image: repeating-linear-gradient(to right, #3C1A00 0, #3C1A00 8px, transparent 8px, transparent 16px);
    background-position: 0 100%;
    background-size: 16px 2px;
    background-repeat: repeat-x;
}

.goteian-image {
    width: 80%;
    height: auto;
    opacity: 1;
}

.proposal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proposal-table {
    width: 100%;
    border-collapse: collapse;
}

.proposal-table td {
    padding: 12px 0;
    vertical-align: middle;
    border-bottom: 1px solid #3C1A00;
}

.proposal-table tr:last-child td {
    border-bottom: none;
}

.small-note-row td {
    text-align: right;
    padding-top: 10px;
    font-size: 12px;
    color: #3C1A00;
    font-weight: 400;
}

.proposal-label {
    font-weight: 700;
    color: #3C1A00;
    font-size: 14px;
    width: 80px;
    text-align: left;
}

.proposal-value {
    font-weight: 700;
    font-size: 20px;
    color: #E4831A;
    text-align: right;
}

.proposal-note {
    font-size: 16px;
    color: #3C1A00;
    font-weight: 700;
    text-align: right;
    margin-left: 8px;
}



/* ポイントセクション */
.point-section {
    display: block;
}

.point-title {
    background-color: #E4831A;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 0;
}

.point-title-text {
    font-size: 24px;
    font-weight: 700;
}

.point-body {
    background-color: #ffffff;
    border-radius: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.point-content {
    flex: 1;
}

.point-content p {
    color: #3C1A00;
    font-size: 20px;
    line-height: 2;
    margin: 0;
}

.point-image-container {
    flex-shrink: 0;
}

.point {
    width: 150px;
    height: auto;
}

/* 選ばれる理由2-5 */
.reasons-grid {
    display: block;
    gap: 0;
}

.reason-item {
    background-color: transparent;
    border-radius: 0;
    padding: 60px 0;
    text-align: left;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
}

.reason-item:nth-child(even) {
    flex-direction: row-reverse;
}

.reason-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.reason-number {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    color: #E4831A;
    font-size: 120px;
    font-weight: 900;
    opacity: 0.3;
    padding: 0;
    border-radius: 0;
    min-width: auto;
    z-index: -1;
    pointer-events: none;
}

.reason-icon {
    margin-bottom: 0;
    flex: 1;
    max-width: 500px;
}

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

.reason-item-title {
    font-size: 36px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 40px;
    line-height: 1.3;
    margin-top: 80px;
}

.reason-item-title .orange-title {
    color: #E4831A;
}

.reason-item-text {
    font-size: 17px;
    color: #3C1A00;
    line-height: 2;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 700;
}

.reason-item-text:last-child {
    margin-bottom: 0;
}

/* PC/SP画像切り替え */
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .case-left{
        width: 100%;
    }
    .bg-text{
        top: -40px !important;
    }
    .reason-section {
        padding: 50px 0;
        margin-top: 0px;
    }

    .reason-container {
        padding: 0;
    }

    .reason-header {
        margin-bottom: 50px;
    }

    .reason-bg {
        width: 300px;
    }

    .reason-main-title {
        font-size: 28px;
    }

    .reason-logo {
        font-size: 28px;
    }

    .reason-ga {
        font-size: 22px;
    }

    .reason-highlight {
        font-size: 28px;
    }

    .reason-description {
        font-size: 16px;
    }

    .number-bg {
        font-size: 60px;
    }

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

    .case-container {
        padding: 30px 20px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 64px;
    }

    .case-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .goteian-image{
        width: 60%;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .case-right {
        width: 100%;
        padding: 32px;
    }

    .case-title h4 {
        font-size: 20px;
    }

    .case-table .label {
        font-size: 16px;
    }

    .case-table .value {
        font-size: 16px;
        
    }

    

    .point-title-text {
        font-size: 20px;
    }

    .point-body {
        position: relative;
        text-align: left;
        padding: 20px;
    }

    .point-image-container {
        position: absolute;
        top: -80px;
        right: 5px;
        z-index: 3;
    }

    .point {
        width: 80px;
    }

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

    

    .sp-only {
        display: block;
    }

    /* 理由2-5のレスポンシブ */
    .reasons-grid{
        width: 80%;
        margin: 0 auto;
    }
    .reason-item {
        flex-direction: column !important;
        text-align: center;
        
        gap: 20px;
        position: relative;
    }

    .reason-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right, #3C1A00 0, #3C1A00 12px, transparent 12px, transparent 24px);
    }

    .reason-item:last-child::after {
        display: none;
    }

    .reason-content {
        order: 1;
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .reason-number {
        position: absolute !important;
        left: 50% !important;
        top: -80px !important;
        transform: translateX(-50%) !important;
        font-size: 120px;
        opacity: 0.2;
        z-index: 1;
        order: 1;
    }

    .reason-item-title {
        font-size: 28px;
        text-align: center;
        margin: 20px 0;
        position: relative;
        z-index: 2;
        order: 2;
    }

    .reason-item-text {
        font-size: 16px;
        
        position: relative;
        z-index: 2;
        margin-bottom: 15px;
        order: 4;
    }

    .reason-item-text:last-child {
        margin-bottom: 0;
    }

    .reason-icon {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {
    .case-title h4{
        font-size: 18px;
    }
    .case-container{
        width: 100%;
    }
    .reason-section {
        padding: 40px 0;
    }

    .reason-header {
        margin-bottom: 40px;
    }

    .reason-bg {
        width: 250px;
    }

    .reason-main-title {
        font-size: 24px;
    }

    .reason-logo {
        font-size: 24px;
    }

    .reason-ga {
        font-size: 18px;
    }

    .reason-highlight {
        font-size: 24px;
    }

    .reason-description {
        font-size: 14px;
        text-align: left;
        width: 90%;
        margin: 0 auto;
    }
    .case-content{
        gap: 10px;
    }
    .point{
        width: 70px;
    }
    .plan-title {
        font-size: 22px;
    }
    .case-right {
        width: 100%;
        padding: 32px 20px;
    }
    .proposal-note{
        font-size: 10px;
    }
    .point-body{
        padding: 20px 0;
    }
    .arrow{
        width: 20px;
    }
    .goteian-image{
        width: 100%;
    }
    .case-container {
        padding: 25px 15px;
        border: none;
        border-radius: 0;
    }

    .case-label {
        left: 50%;
        font-size: 16px;
        padding: 6px 20px;
    }

    .case-title h4 {
        font-size: 18px;
    }

    .case-table .label {
        font-size: 14px;
    }

    .case-table .value {
        font-size: 14px;
    }

    .point-title-text {
        font-size: 18px;
    }

    .point-content p {
        font-size: 14px;
    }

    .point-image {
        width: 60px;
    }

    /* 理由2-5の小さいモバイル対応 */
    .reasons-grid{
        width: 90%;
    }
    .reason-item {
        padding: 0;
    }

    .reason-number {
        font-size: 100px !important;
        top: -20px !important;
        z-index: -1;
    }
    

    .reason-item-title {
        font-size: 20px;
        margin-top: 60px;
		margin-bottom: 40px;
    }

    .reason-item-text {
        font-size: 14px;
    }
}





/* 他社比較セクション */
.comparison-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

/* セクションヘッダー */
.comparison-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.comparison-title-bg {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.comparison-bg {
    width: 520px;
    height: auto;
}

.comparison-main-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.3;
}

.comparison-highlight {
    color: #E4831A;
}

.comparison-description {
    font-size: 18px;
    color: #3C1A00;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.comparison-sub-description {
    font-size: 18px;
    color: #E4831A;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* 比較テーブル */
.comparison-table-container {
    position: relative;
    overflow-x: auto;
    border-radius: 10px;
    background-color: #ffffff;
    padding-top: 30px; /* 飛び出した部分のスペース確保 */
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 16px;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    vertical-align: middle;
    position: relative;
}

.comparison-table th:first-child {
    background-color: transparent;
    border: none;
    color: transparent; /* 透明にして見えなくする */
    width: 200px;
}

.comparison-table th.our-service {
    background-color: #E4831A;
    color: white;
    font-size: 22px; /* 22pxに変更 */
    width: 200px;
    position: relative;
    top: -20px; /* 上に30px飛び出る */
    border-radius: 15px 15px 0 0;
    z-index: 3;
    padding-bottom: 0; /* padding-bottomを0に */
}

/* 長崎店のヘッダーの下の部分を埋める */
.comparison-table th.our-service::after {
    content: '';
    position: absolute;
    bottom: -20px; /* bottomを-30pxに */
    left: 0;
    right: 0;
    height: 20px;
    background-color: #E4831A;
    z-index: 2;
}

.comparison-table th.competitor {
    background-color: #E9E9E9;
    color: #232323;
    font-size: 20px;
    width: 200px;
}

/* 大手住宅相談サービスBの右上を角丸 */
.comparison-table th.competitor:last-child {
    border-radius: 0 10px 0 0;
}

.comparison-table td {
    padding: 25px 15px;
    text-align: center;
    border-bottom: 1px solid #EEEEEE;
    vertical-align: middle;
    font-size: 16px;
    line-height: 2;
    background-color: #ffffff; /* 全てのセルを白背景に */
	font-weight: 500;
}

.comparison-table td:first-child {
    background-color: #F7EEE0; /* 背景をF7EEE0に */
    color: #3C1A00;
    font-weight: 700;
    text-align: center;
    font-size: 18px; /* 18pxに変更 */
}

/* サービス内容の左上を角丸 */
.comparison-table tr:first-child td:first-child {
    border-radius: 10px 0 0 0;
}
.comparison-table th:first-child {
    width: 150px;
}
/* 特徴の左下を角丸 */
.comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.comparison-table td.our-service-cell {
    background-color: #ffffff; /* 白背景 */
    color: #3C1A00;
    font-weight: 700;
    position: relative;
}

.comparison-table td.competitor-cell {
    background-color: #FCFCFC; /* 背景をFCFCFCに */
    color: #232323;
    border-left: 1px solid #EEEEEE; /* 左ボーダー追加 */
}

/* 住まい選び相談に特化の右下を角丸 */
.comparison-table tr:last-child td.competitor-cell:last-child {
    border-radius: 0 0 10px 0;
}

/* アイコン */
.comparison-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-bottom: 8px;
}

.comparison-icon img {
    width: 100%;
    height: auto;
}

/* オレンジテキスト */
.orange-highlight-text {
    color: #E4831A;
    font-weight: 700;
}

/* スクロールヒント（画面中央オーバーレイ） */
.scroll-hint {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    display: none; /* PCでは非表示 */
    
    border-radius: 10px;
}

.scroll-hint.show {
    opacity: 1;
}

.scroll-hint.fade-out {
    opacity: 0;
}

.scroll-hint img {
    width: 200px;
    height: auto;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 0;
    }

    .comparison-container {
        padding: 0 15px;
    }

    .comparison-header {
        margin-bottom: 50px;
    }

    .comparison-bg {
        width: 300px;
    }

    .comparison-main-title {
        font-size: 28px;
    }

    .comparison-description,
    .comparison-sub-description {
        font-size: 14px;
        text-align: left;
    }

    .comparison-table-container {
        margin: 0 -15px;
        border-radius: 0;
        padding-top: 25px;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 12px;
    }

    .comparison-table th:first-child {
        width: 80px; /* SPでは80pxに縮小 */
    }

    .comparison-table td:first-child {
        font-size: 13px; /* フォントサイズも少し小さく */
        width: 80px; /* SPでは80pxに縮小 */
        padding: 15px 5px; /* 左右のパディングも少し狭く */
        line-height: 1.2; /* 行間を詰める */
    }

    .comparison-table th.our-service {
        font-size: 15px; /* SPでも少し大きく */
        top: -21px; /* SPでは25px飛び出る */
        border-radius: 10px 10px 0 0;
        padding-bottom: 0; /* SPでもpadding-bottomを0に */
        width: 180px; /* SPでは160pxに */
    }

    .comparison-table th.our-service::after {
        height: 20px;
        bottom: -20px; /* SPでも調整 */
    }

    .comparison-table th.competitor {
        width: 180px; /* SPでは160pxに */
        font-size: 13px;
    }

    .comparison-table td.our-service-cell,
    .comparison-table td.competitor-cell {
        width: 180px; /* SPではセル幅を160pxに */
        padding: 15px 8px; /* パディングも調整 */
    }

    .comparison-icon {
        width: 25px;
        height: 25px;
        margin-bottom: 5px;
    }

    .scroll-hint {
        display: block; /* SPでは表示 */
    }
    
    .scroll-hint img {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .comparison-table td:first-child {
        width: 80px; /* さらに小さく */
        font-size: 11px; /* フォントも小さく */
        padding: 15px 3px; /* パディングも最小に */
    }

    .comparison-table th:first-child {
        width: 60px;
    }
}

/* 専門家紹介セクション */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

/* バックグラウンドテキスト */
.team-bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* セクションヘッダー */
.team-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.4;
}

.desu-text {
    font-weight: 700;
}

/* 黄色の下線 */
.highlighted {
    background: linear-gradient(transparent 60%, #FFFF00 60%);
}

/* 水色テキスト */
.blue-text {
    color: #4196D5;
}

.team-description {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    
    margin: 0 auto 10px auto;
}

.team-description-second {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    
    margin: 0 auto;
}

/* 専門家の説明 */
.specialist-explanation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.specialist-box {
    flex: 1;
    max-width: 500px;
}

.specialist-content {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #E4831A;
    background-color: #FFFAEE;
}

.specialist-right .specialist-content {
    border: 3px solid #4196D5;
    background-color: #E8F5FF;
}

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

.specialist-title {
    width: 90%;
    margin: 0 auto;
    margin-top: 16px;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
}

.specialist-title.orange-bg {
    background-color: #E4831A;
}

.specialist-title.blue-bg {
    background-color: #4196D5;
}

.specialist-description {
    padding: 20px;
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.7;
    text-align: left;
    font-weight: 700;
}

.multiply-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multiply-icon img {
    width: 50px;
    height: auto;
}

/* チームメンバー */
.team-members {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.team-member {
    flex: 1;
    background-color: #FFFAEE;
    border: 3px solid #F3E7DE;
    border-radius: 12px;
    padding: 140px 20px 30px 20px;
    text-align: center;
    position: relative;
    margin-top: 120px;
}

.member-photo {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffffff;
    
}

.member-info {
    padding: 0;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: #3C1A00;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.member-credentials {
    margin-bottom: 15px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.credential-tag {
    display: inline-block;
    font-size: 12px;
    color: #3C1A00;
    background-color: #F3E7DE;
    padding: 4px 8px;
    margin: 2px 4px;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.3;
}

.member-divider {
    width: 100%;
    height: 1px;
    background-color: #a89d96;
    margin-bottom: 15px;
}

.member-message {
    font-size: 16px;
    color: #3C1A00;
    line-height: 2;
    text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .team-section {
        padding: 50px 0;
    }

    .team-container {
        padding: 0 15px;
    }

    .team-bg-text {
        font-size: 60px;
    }

    .team-header {
        margin-bottom: 40px;
    }

    .team-title {
        font-size: 26px;
    }

    .team-description,
    .team-description-second {
        font-size: 14px;
        text-align: left;
    }

    .specialist-explanation {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .multiply-icon {
        order: 2;
        transform: rotate(90deg);
    }

    .specialist-left {
        order: 1;
    }

    .specialist-right {
        order: 3;
    }

    .team-members {
        flex-direction: column;
        gap: 25px;
        width: 80%;
        margin: 0 auto;
    }

    .team-member {
        margin-top: 100px;
        padding: 120px 15px 25px 15px;
    }

    .member-photo {
        top: -100px;
        width: 200px;
        height: 200px;
    }

    .member-name {
        font-size: 18px;
    }

    .member-credentials {
        min-height: 60px;
    }

    .member-message {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .team-members {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        margin: 0 auto;
    }
    .team-bg-text {
        font-size: 40px;
    }

    .team-title {
        font-size: 22px;
    }

    .specialist-title {
        font-size: 14px;
        padding: 12px 15px;
    }

    .specialist-description {
        padding: 15px;
        font-size: 13px;
    }

    .multiply-icon img {
        width: 40px;
    }

    .team-member {
        margin-top: 90px;
        padding: 110px 15px 20px 15px;
    }

    .member-photo {
        top: -90px;
        width: 180px;
        height: 180px;
        
    }

    .member-credentials {
        min-height: 50px;
    }

    .member-message {
        font-size: 13px;
    }
}





/* ご相談の流れセクション */
.flow-section {
    background-color: #FFFAEE;
    padding: 80px 0;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

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

/* 背景テキスト */
.flow-bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* セクションヘッダー */
.flow-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.flow-title {
    font-size: 36px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
}

.flow-title .orange-text {
    color: #E4831A;
}

.flow-description {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* フローステップ */
.flow-steps {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-left {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    justify-content: center;
}

.step-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-number {
    color: #E4831A;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
}

.step-image-container img {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
}

.step-dotted-line {
    width: 2px;
    background-image: repeating-linear-gradient(to bottom, #3C1A00 0, #3C1A00 8px, transparent 8px, transparent 16px);
    margin-top: 20px;
    flex: 1;
    min-height: 60px;
}

.step-right {
    flex: 1;
    position: relative;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 16px;
    line-height: 1.4;
}

.step-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    margin-top: 10px;
}

.step-description {
    font-size: 18px;
    color: #3C1A00;
    line-height: 1.7;
    margin: 0;
}

.step-button {
    margin: 20px 0;
}

.flow-contact-btn {
    width: 100%;
    max-width: 400px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.flow-contact-btn:hover {
    transform: scale(1.05);
}

.step-note {
    font-size: 18px;
    color: #3C1A00;
    margin-top: 10px;
    line-height: 1.7;
}

/* 吹き出しデザイン */
.step-balloon {
    background-color: #937D6C;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    max-width: 80%;
}

.step-balloon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #937D6C;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-section {
        padding: 50px 0;
        margin: 0;
    }

    .flow-container {
        padding: 0 15px;
    }

    .flow-bg-text {
        font-size: 60px;
    }

    .flow-header {
        margin-bottom: 40px;
    }

    .flow-title {
        font-size: 26px;
    }

    .flow-description {
        font-size: 14px;
		text-align: center;
    }

    .flow-step {
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-left {
        width: 100px;
    }

    .step-image-container img {
        width: 70px;
        height: 70px;
    }

    .step-dotted-line {
        margin-top: 10px;
        min-height: 30px;
    }

    .step-number {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-content {
        padding: 20px;
        margin-top: 5px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-note {
        font-size: 14px;
    }

    .step-balloon {
        font-size: 12px;
        max-width: 90%;
        border-radius: 20px;
        padding: 10px 15px;
    }

    .step-balloon::after {
        bottom: -15px;
        left: 20px;
        border: 8px solid transparent;
        border-top-color: #937D6C;
    }
}

@media (max-width: 480px) {
    .flow-steps{
        width: 100%;
    }
    .flow-bg-text {
        font-size: 40px;
    }

    .flow-title {
        font-size: 22px;
    }

    .flow-step {
        gap: 15px;
        margin-bottom: 30px;
    }

    .step-left {
        width: 80px;
    }

    .step-image-container img {
        width: 70px;
        height: 70px;
    }

    .step-dotted-line {
        margin-top: 8px;
        min-height: 25px;
    }

    .step-number {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step-content {
        padding: 15px;
    }

    .step-description {
        font-size: 15px;
    }

    .step-note {
        font-size: 15px;
    }

    .step-balloon {
        font-size: 11px;
        padding: 8px 12px;
        border-radius: 15px;
    }

    .step-balloon::after {
        bottom: -12px;
        left: 15px;
        border: 6px solid transparent;
        border-top-color: #937D6C;
    }
}




/* 店舗情報セクション */
.information-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

/* 背景テキスト */
.information-bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* セクションヘッダー */
.information-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.information-title {
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 0;
    line-height: 1.3;
}

/* メインコンテンツ */
.information-main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* 左カラム（マップ） */
.information-left {
    flex: 1;
    position: relative;
}

.information-map-container {
    
    position: relative;
}

.information-map-container iframe {
    width: 100%;
    height: 440px;
    border-radius: 15px;
}

.information-map-button {
    position: absolute;
    bottom: 20px;
    left: -20px;
    z-index: 10;
}

.information-map-button img {
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 8px;
}

.information-map-button img:hover {
    transform: scale(1.05);
}

/* 右カラム（店舗情報） */
.information-right {
    flex: 1;
    padding-top: 0;
}

.information-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.information-table tr {
    border-bottom: 2px solid #F0F0F0;
}

.information-table tr:last-child {
    border-bottom: none;
}

.information-table td {
    padding: 20px 0;
    vertical-align: top;
}

.information-label {
    font-weight: 700;
    color: #E4831A;
    width: 120px;
    font-size: 18px;
}

.information-value {
    color: #3C1A00;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.information-features {
    margin-top: 30px;
}

.information-features-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .information-section {
        padding: 50px 0;
    }

    .information-container {
        padding: 0 15px;
    }

    .information-bg-text {
        font-size: 60px;
    }

    .information-title {
        font-size: 28px;
    }

    .information-header {
        margin-bottom: 40px;
    }

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

    .information-table td {
        padding: 15px 0;
    }

    .information-label {
        font-size: 16px;
        width: 90px;
    }

    .information-value {
        font-size: 16px;
    }

    .information-map-container iframe {
        height: 300px;
        width: 100%;
    }
    .information-left {
        width: 80%;
        margin: 0 auto;
    }
    .information-right{
        width: 80%;
        margin: 0 auto;
    }
    .information-map-button {
        bottom: 15px;
        left: 15px;
    }

    .information-map-button img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .information-left {
        width: 100%;
        margin: 0 auto;
    }
    .information-right{
        width: 100%;
        margin: 0 auto;
    }
    .information-bg-text {
        font-size: 40px;
    }

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

    .information-table td {
        padding: 12px 0;
    }

    .information-label {
        font-size: 14px;
        width: 80px;
    }

    .information-value {
        font-size: 14px;
    }

    .information-map-container iframe {
        height: 250px;
    }

    .information-map-button {
        bottom: 10px;
        left: 10px;
    }

    .information-map-button img {
        width: 80px;
    }
}




/* よくある質問セクション */
.faq-section {
    background-color: #FFFAEE;
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 背景テキスト */
.faq-bg-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* セクションヘッダー */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.3;
}

.faq-description {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ リスト */
.faq-list {
    position: relative;
    z-index: 2;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 60px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    border-bottom: 1px solid #F0F0F0;
}

.faq-q {
    background-color: transparent;
    color: #937D6C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #3C1A00;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #E4831A;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px 30px;
    background-color: #FEFEFE;
}

.faq-item.active .faq-answer {
    display: flex;
    align-items: flex-start;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-question {
    border-bottom: none;
}

.faq-a {
    background-color: transparent;
    color: #E4831A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.faq-answer-text {
    flex: 1;
}

.faq-answer-text p {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    margin: 5px 0 0 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-bg-text {
        font-size: 60px;
    }

    .faq-title {
        font-size: 28px;
    }

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

    .faq-item {
        border-radius: 30px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-q, .faq-a {
        width: 35px;
        height: 35px;
        font-size: 30px;
        margin-right: 15px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-text p {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .faq-bg-text {
        font-size: 40px;
    }

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

    .faq-item {
        border-radius: 20px;
    }

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

    .faq-answer {
        padding: 0 15px 18px 15px;
    }

    .faq-q, .faq-a {
        width: 32px;
        height: 32px;
        font-size: 24px;
        margin-right: 12px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer-text p {
        font-size: 13px;
    }
}






/* お客様の声セクション */
.voice-section {
    background-color: #FFFAEE;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.voice-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 背景テキスト */
.bg-text {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 128px;
    font-weight: 900;
    color: #E4831A;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* セクションヘッダー */
.voice-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.voice-title {
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.3;
}

.voice-description {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* PC用お客様の声リスト */
.voice-list-pc {
    position: relative;
    z-index: 2;
    display: block;
}

.voice-item {
    margin-bottom: 60px;
}

.voice-item:last-child {
    margin-bottom: 0;
}

.voice-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    
}

.voice-card .voice-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.voice-icon {
    position: relative;
    flex-shrink: 0;
    margin-top: -60px;
    z-index: 3;
}

.voice-icon-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.voice-header-content {
    flex: 1;
    text-align: left;
}

.voice-main-text {
    font-size: 24px;
    font-weight: 700;
    color: #3C1A00;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
}

.voice-highlight {
    color: #E4831A;
}

.voice-family {
    background-color: #ffffff;
    color: #E4831A;
    border: 1px solid #E4831A;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 8px;
    display: inline-block;
}

.voice-questionnaire-wrapper {
    position: absolute;
    top: -80px;
    right: 32px;
    z-index: 4;
}

.voice-questionnaire {
    width: 150px;
    height: auto;
    transform: rotate(-15deg);
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.voice-swiper{
    overflow: visible !important;
}
.voice-questionnaire:hover {
    transform: rotate(-15deg) scale(1.05);
}

.voice-detail {
    font-size: 16px;
    color: #3C1A00;
    line-height: 1.8;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #E4D8CE;
    font-weight: 700;
}

/* Swiperスタイル（PCでは非表示） */
.voice-swiper {
    display: none;
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .voice-swiper {
        display: none !important;
    }
}

/* Swiperナビゲーションボタンのカスタマイズ */
.voice-swiper .swiper-button-next,
.voice-swiper .swiper-button-prev {
    background-color: #E4831A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 30%;
    margin-top: 0;
}

.voice-swiper .swiper-button-next {
    right: -10px;
}

.voice-swiper .swiper-button-prev {
    left: -10px;
}

.voice-swiper .swiper-button-next:after,
.voice-swiper .swiper-button-prev:after {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.voice-swiper .swiper-button-next:hover,
.voice-swiper .swiper-button-prev:hover {
    background-color: #C5731A;
}

/* Swiperページネーションのカスタマイズ */
.voice-swiper .swiper-pagination {
    bottom: -50px;
}

.voice-swiper .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.voice-swiper .swiper-pagination-bullet-active {
    background-color: #E4831A;
}
.sp-menu-list{
    width: 90%;
    margin: 0 auto;
}
/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: none;
    max-height: none;
    width: auto;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    color: #E4831A;
}

#modalImage {
    max-width: none;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-section {
        padding: 50px 0;
    }

    .voice-container {
        padding: 0 15px;
    }

    .bg-text {
        font-size: 80px;
    }

    .voice-title {
        font-size: 28px;
    }

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

    /* PC版を非表示、Swiper版を表示 */
    .voice-list-pc {
        display: none;
    }

    .voice-swiper {
        display: block !important;
        padding-bottom: 70px;
    }

    .voice-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
        position: relative;
    }

    .voice-card .voice-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        position: relative;
    }

    .voice-header-content {
        text-align: center;
        width: 100%;
    }

    .voice-main-text {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .voice-icon {
        margin-top: -60px;
        margin-left: 20px;
    }

    .voice-icon-image {
        width: 130px;
        height: 130px;
    }

    .voice-detail {
        font-size: 14px;
        text-align: left;
        padding-top: 15px;
        border-top: 1px solid #E4D8CE;
    }

    .voice-questionnaire-wrapper {
        position: absolute;
        top: -40px;
        right: 10px;
        z-index: 4;
    }

    .voice-questionnaire {
        width: 150px;
        transform: rotate(-10deg);
    }

    .modal-content {
        height: 90vh;
        max-width: none;
        max-height: none;
    }

    .modal-close {
        top: -30px;
        right: -30px;
        font-size: 30px;
    }

    #modalImage {
        max-width: none;
        max-height: 80%;
        width: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    

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

    .voice-card {
        padding: 25px 15px;
    }

    .voice-icon {
        margin-left: 10px;
    }

    .voice-icon-image {
        width: 120px;
        height: 120px;
    }

    .voice-main-text {
        font-size: 18px;
    }

    .voice-detail {
        font-size: 13px;
    }

    .voice-questionnaire {
        width: 70px;
    }

    .voice-questionnaire-wrapper {
        top: -35px;
        right: 5px;
    }

    .voice-swiper .swiper-button-next,
    .voice-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        
        margin-top: 0;
    }

    .voice-swiper .swiper-button-next:after,
    .voice-swiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .modal-close {
        top: -25px;
        right: -25px;
        font-size: 25px;
    }

    .modal-content {
        height: 85vh;
    }
}


/* ハンバーガーメニューボタン */
.hamburger-button {
    display: none; /* 初期状態では非表示（SPで表示） */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #3C1A00; /* 丸枠追加 */
    border-radius: 50%; /* 丸く */
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 22px; /* 元の長さに戻す */
    height: 2px;
    background-color: #3C1A00;
    margin: 2px 0; /* 間隔も元に近く */
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* ×ボタンのアニメーション（シンプルに修正） */
.hamburger-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* SPメニューオーバーレイ */
.sp-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sp-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SPメニュー本体 */
.sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
   
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 120px 0;
}

.sp-menu.active {
    right: 0;
}

.sp-menu-list {
    list-style: none;
    padding: 0;
}

.sp-menu-item {
    border-bottom: 1px solid #8B4513; /* 茶色の点線 */
    padding-bottom: 8px; /* 下余白を追加 */
    margin-bottom: 8px; /* アイテム間の余白 */
}

.sp-menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sp-menu-link {
    display: block;
    padding: 15px 0; /* 上下のpaddingも少し調整 */
    
    color: #3C1A00;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.sp-menu-link:hover {
    background-color: #FBF9F2;
    color: #E4831A;
    border-radius: 8px; /* 角丸追加 */
}

.sp-menu-buttons {
    padding: 30px 25px;
    text-align: center;
}

.sp-menu-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp-menu-button:last-child {
    margin-bottom: 0;
}

.sp-menu-button img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    /* シャドウ削除 */
}

.sp-menu-button:hover img {
    transform: translateY(-2px);
    /* シャドウ削除 */
}

body.menu-open {
    overflow: hidden;
}

/* スマートフォン対応で表示 */
@media (max-width: 1024px) {
    .hamburger-button {
        display: flex; /* SPで表示 */
    }
    
    .header-right {
        display: none; /* 既存のPC用ナビを非表示 */
    }
}

@media (max-width: 480px) {
    
    
    .sp-menu-link {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .sp-menu-buttons {
        padding: 25px 20px;
    }
    
    .hamburger-button {
        width: 36px;
        height: 36px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .hamburger-button.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .hamburger-button.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}





/* 無料相談フォームセクション */
.contact-section {
    background-color: #FFFAEE;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
	margin-top: 80px;
}



.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* セクション見出し */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #3C1A00;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* フォームコンテナ */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* フォームスタイル */
.contact-form {
    display: grid;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.people-count-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-label {
    font-weight: 600;
    color: #3C1A00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.required {
    background: #E4501A;
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
	border-radius: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-textarea {
    border-radius: 30px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E4831A;
    background: white;
    box-shadow: 0 0 0 3px rgba(228, 131, 26, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

/* チェックボックス */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
	font-size: 14px;
}

.checkbox-input {
    width: 22px;
    height: 22px;
    accent-color: #E4831A;
}
.wpcf7-checkbox span label{
	display: flex;
    align-items: center;
    gap: 20px;
}


.checkbox-label {
    color: #3C1A00;
    font-size: 14px;
}

/* 送信ボタン */
.submit-button {
    background: linear-gradient(135deg, #E4831A, #f39c12);
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto 0;
    display: block;
    box-shadow: 0 8px 25px rgba(228, 131, 26, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 131, 26, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* レスポンシブ */
@media (max-width: 768px) {
	.cta-section {
    
    margin-top: 0px;
}
    .contact-section {
        padding: 50px 0;
		margin-top: 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .form-row,
    .datetime-row,
    .people-count-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {

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

    .contact-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .submit-button {
        width: 100%;
        padding: 18px;
    }
}


/* ContactForm7用のスタイル */
.wpcf7-form {
    display: grid;
    gap: 24px;
}

.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
	width: 100%;
}

/* ContactForm7のフォーム要素スタイリング */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    padding: 8px;
    border: 2px solid #D6C4B6;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: all 0.3s ease;
    background: #FFFAEE;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form textarea {
    border-radius: 8px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #E4831A;
    background: white;
    box-shadow: 0 0 0 3px rgba(228, 131, 26, 0.1);
}

.wpcf7-form input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #E4831A;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #E4831A, #f39c12);
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
	width: 60%;
    display: block;
    box-shadow: 0 8px 25px rgba(228, 131, 26, 0.3);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 131, 26, 0.4);
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-validation-errors {
    background: #ffebee;
    border: 1px solid #e74c3c;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.wpcf7-mail-sent-ok {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    color: #4caf50;
}

/* フッターセクション */
.footer-section {
    background-color: #6C5340;
    padding: 60px 0 40px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* 左側：ロゴとSNS */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-image {
    width: 320px;
    height: auto;
}

.footer-sns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sns-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sns-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.sns-icon {
    width: 40px;
    height: 40px;
}

/* 右側：電話情報 */
.footer-right {
    flex-shrink: 0;
}

.footer-phone-image {
    width: 400px;
    height: auto;
}

/* コピーライト */
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
        gap: 25px;
    }

    

    .footer-phone-image {
        width: 300px;
    }

    .footer-sns {
        justify-content: center;
    }
}

@media (max-width: 480px) {
	
	.wpcf7-validates-as-date{
		width: 60% !important;
	}
    .footer-section {
        padding: 30px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }

    .footer-phone-image {
        width: 250px;
    }

    .sns-icon {
        width: 35px;
        height: 35px;
    }

    .footer-sns {
        gap: 15px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}    /*  case-swiper */
    /* .case-swiper { overflow: hidden !important; }   */
    .case-swiper .swiper-wrapper {
        display: flex !important;
        padding-top: 30px;
    }

    .case-swiper-container {
        position: relative;
    }

    .case-swiper-container .swiper-button-next,
    .case-swiper-container .swiper-button-prev {
        background-color: #E4831A;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-top: 0;
        position: absolute;
        top: 390px;
        transform: translateY(-50%);
        z-index: 10;
    }

    .case-swiper-container .swiper-button-next {
        right: -65px;
    }

    .case-swiper-container .swiper-button-prev {
        left: -65px;
    }

    .case-swiper-container .swiper-button-next:after,
    .case-swiper-container .swiper-button-prev:after {
        font-size: 18px;
        color: white;
        font-weight: bold;
    }

    .case-swiper-container .swiper-button-next:hover,
    .case-swiper-container .swiper-button-prev:hover {
        background-color: #C5731A;
    }

    /* Swiperページネーションのカスタマイズ */
    .case-swiper-container .swiper-pagination {
        bottom: -50px;
    }

    .case-swiper-container .swiper-pagination-bullet {
        background-color: #ccc;
        opacity: 1;
        width: 12px;
        height: 12px;
    }

    .case-swiper-container .swiper-pagination-bullet-active {
        background-color: #E4831A;
    }

    @media (max-width: 1350px) {
        .case-swiper-container .swiper-button-next {
            right: 5px;
        }

        .case-swiper-container .swiper-button-prev {
            left: 5px;
        }
    }

    /* ========== SP(～1024px)だけ 2行プレビュー＋続きを読む ========== */
    @media (max-width: 1024px) {
        .reason-item {
            padding-bottom: 0;
        }

        .reasons-grid .reason-item-text {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            /* 2行だけ見せる */
            overflow: hidden;
            position: relative;
        }

        /* 下端フェード（任意） */
        .reasons-grid .reason-item-text.clamped::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -3px;
            height: 2.2em;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 247, 242, 1));
            pointer-events: none;
        }

        /* 続きを見るボタン（2行時のみ出す） */
        .reasons-grid .reason-more-sp {
            display: inline-block;
            margin-top: 8px;
            border: none;
            background: transparent;
            text-decoration: underline;
            cursor: pointer;
            position: absolute;
            right: 12px;
            bottom: -10px;
            font-family: 'Zen Maru Gothic', sans-serif;

            color: #3C1A00;
        }

        .reasons-grid .reason-item-text.can-expand {
            cursor: pointer;
        }

        .reasons-grid .reason-item-text.can-expand:focus {
            outline: 2px solid #ffd3b8;
            outline-offset: 2px;
            border-radius: 6px;
        }
    }

    /* PC幅ではボタンを見せない・クランプもしない */
    /* @media (min-width: 1025px) {
        .reason-block {
            position: relative;
        }

        .reason-block:nth-child(even) .reason-item {
            flex-direction: row-reverse;
        }

        .reasons-grid .reason-more-sp {
            display: none !important;
        }

        .reason-item-title {
            height: 73px;
            margin-top: 30px;
            font-size: clamp(28px, calc(34/1440 * 100vw), 34px);
        }

        .reason-number {
            line-height: 0.7;
        }

        .reasons-grid .reason-item {
            align-items: start;
            --desk-preview: 300px;
            /* JSが実高の50%で上書き */
            position: relative;
            overflow: hidden;
            /* 下側をカット */
            border-radius: 14px;
            margin-bottom: 60px;
        }

        .reasons-grid .reason-item.is-collapsed-desktop {
            max-height: var(--desk-preview);
            cursor: pointer;
        } */

        /* 下端フェード */
        /* .reasons-grid .reason-item.is-collapsed-desktop::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            font: inherit;
            height: 72px;
            background: linear-gradient(180deg, rgba(255, 247, 242, 0), #FFFAEE);
            pointer-events: none;
        } */

        /* 続きを読むボタン（PC） */
        /* .reason-block:nth-child(even) .reason-more-desktop {
            right: -30px;
        }

        .reasons-grid .reason-more-desktop {
            position: absolute;
            right: 47%;
            bottom: -30px;
            transform: translateX(-50%);
            border: none;
            background: none;
            cursor: pointer;
            font: inherit;
            font-family: 'Zen Maru Gothic', sans-serif;
            color: #3C1A00;
            text-decoration: underline;
            transition: opacity .2s ease;
        }

        .reasons-grid .reason-item.is-open-desktop::after,
        .reasons-grid .reason-item.is-open-desktop .reason-more-desktop {
            display: none;
        } */

        /* 開いたときに align-items:center を適用 */
        /* .reasons-grid .reason-item.is-open-desktop {
            align-items: center;
        }
    } */