/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--black);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--black);
}

html {
    font-size: 0.695vw;

}

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

li {
    list-style: none;
}

.container {
    margin: 0 auto;
    padding: 4% 4.17%;


}

.inner {
    margin: 0 auto;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 5% 5%;

}

main {
    background-color: var(--white);
}

:root {
    /* 配色 */
    --main-orange: #FF9B41;
    --yellow: #FFEA7B;
    --dark-orange: #DA6700;
    --accent-color: #83CF40;
    --white: #FFFBF4;
    --black: #1d1d1d;

    --header-h: 90px;
}

h2 {
    text-align: center;
}

/* CTAボタン */


/* ヘッダー */
.header {
    padding: .5% 0;
    border-bottom: 3px solid var(--main-orange);
    top: 0;
    background: #fff;
    z-index: 100;
    position: fixed;
    width: 100%;
}

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

}

.logo-area {
    width: clamp(280px, 3.34vw, 330px);
}

.logo-area img {
    width: 100%;
}

.header-info {
    display: flex;
    gap: 1.5%;
    width: 60%;
    justify-content: flex-end;

}

.tel-box-pc {
    align-content: center;
}

.tel-box-sp {
    display: none;
}

.tel-box-pc .tel-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main-orange);
    display: flex;
    gap: 3%;
    transition: color .3s;
}

.tel-box-pc .tel-number:hover {
    color: var(--accent-color);
}

.tel-box-pc .tel-number>div:first-of-type {
    height: 40px;
}

.tel-box-pc .tel-number>div img {
    height: clamp(38px, 4.1667vw, 41px);
}

.tel-box-pc .tel-number>p {
    font-size: clamp(33px, 2.1667vw, 35px);
    line-height: 40px;
    letter-spacing: -2px;
    display: block;
    width: 100%;
}

.tel-box-pc .tel-label {
    background-color: var(--main-orange);
    color: #fff;
    padding: 1% 2%;
    width: 100%;
    text-align: center;
    font-size: clamp(11px, 1.45vw, 14px);
    margin-top: 1%;
    font-weight: bold;
}

.btn-header {
    width: clamp(24px, 8.1667vw, 73px);
}



/* メインビジュアル */
.mv {
    background: var(--yellow);
    background-image: url(../img/fv.webp);
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.625);
    background-blend-mode: lighten;
    letter-spacing: -2px;
    font-weight: bold;
    min-height: calc(100svh - var(--header-h));
    padding-top: var(--header-h);
}

.mv .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease 0.4s,
        transform 0.6s ease 0.4s,
        visibility 0.6s ease 0.4s;
    margin-bottom: 50px;
}


/* 出現後 */
.mv .inview.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding-left: 40px;
}

.mv-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    min-height: 80svh;
    max-width: 1600px;
    width: 100%;

}

.mv-text {
    align-self: center;
    width: 55%;
}

.mv-text h1 {
    font-size: clamp(53px, 6vw, 76px);
    line-height: 1;
    margin-bottom: 20px;
    color: var(--main-orange);
    text-shadow:
        4px 4px 0px #ffffff,
        -4px 4px 0px #ffffff,
        4px -4px 0px #ffffff,
        -4px -4px 0px #ffffff,
        4px 0px 0px #ffffff,
        0px 4px 0px #ffffff,
        -4px 0px 0px #ffffff,
        0px -4px 0px #ffffff,
        /* 影 */
        6px 6px 6px rgba(0, 0, 0, 0.517);
    letter-spacing: -3px;
}

.mv-text>h1>.large {
    font-size: clamp(52px, 6vw, 64px);
    color: var(--black);
    text-shadow:
        4px 4px 0px #ffffff,
        -4px 4px 0px #ffffff,
        4px -4px 0px #ffffff,
        -4px -4px 0px #ffffff,
        4px 0px 0px #ffffff,
        0px 4px 0px #ffffff,
        -4px 0px 0px #ffffff,
        0px -4px 0px #ffffff,
        /* 影 */
        5px 5px 5px var(--main-orange), 6px 6px 6px rgba(0, 0, 0, 0.517);
    line-height: 1.3;
}

.mv-text>h1>.small {
    font-size: clamp(32px, 8vw, 40px);
    color: var(--black);
    text-shadow:
        4px 4px 0px #ffffff,
        -4px 4px 0px #ffffff,
        4px -4px 0px #ffffff,
        -4px -4px 0px #ffffff,
        4px 0px 0px #ffffff,
        0px 4px 0px #ffffff,
        -4px 0px 0px #ffffff,
        0px -4px 0px #ffffff,
        /* 影 */
        5px 5px 5px var(--main-orange), 6px 6px 6px rgba(0, 0, 0, 0.517);
}



.brand-name {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--black);
    padding: 0 4%;
    /* ← 斜線分の余白 */
    text-shadow:
        6px 6px rgba(255, 255, 255, 0.517);
    line-height: 1;
}

.brand-name::before,
.brand-name::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 48px;
    background: var(--black);
}

.brand-name::before {
    left: 0;
    transform: translateY(-50%) rotate(-30deg);
}

.brand-name::after {
    right: 0;
    transform: translateY(-50%) rotate(30deg);
}

.brand-name>.large {
    font-size: clamp(33px, 5vw, 54px);
    letter-spacing: 1px;
}

.brand-name>.small {
    font-size: clamp(17px, 5vw, 28px);
}



.mv-label {
    background: var(--main-orange);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    text-shadow:
        3px 3px 3px rgba(0, 0, 0, 0.517);
}

.mv-label span {
    font-size: clamp(22px, 8vw, 32px);
}

.mv-label .sp {
    display: none;
}

.mv-copy {
    margin: 0 auto;
    width: 51%;
    display: block;
}

.mv-badge {
    display: flex;
    max-width: 500px;
    gap: 2%;
    margin: 1rem auto 0;
}

.mv-badge img {
    object-fit: cover;
}

.mv-img {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: stretch;

}

.mv-img div:nth-child(2) {
    width: 65%;
    align-self: center;
    filter: drop-shadow(6px 6px 6px #a6a3a356)
}


.mv-balloon {
    position: relative;
    display: inline-block;
    padding: 7% 12%;
    min-width: 120px;
    max-width: 80%;
    background: #fff6ae;
    border-radius: 15px;
    letter-spacing: -1px;
    align-self: center;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.164);
}

.mv-balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 21px solid #fff6ae;
}

.mv-balloon p {
    margin: 0;
    padding: 0;
    line-height: 115%;
    font-size: clamp(10px, 8vw, 24px);
}


/* セクション共通 */
.sec-title {
    text-align: center;
    font-size: clamp(19px, 3vw, 34px);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}


section {
    text-align: center;
}

.home h2 .sp {
    display: none;
}


.home h2 {
    position: relative;
    display: inline-block;


}

.home h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 0;
    /* 最初は 0 */
    height: .6rem;
    background: var(--main-orange);
    transition: width 0.6s ease-out 0.5s;
    margin-bottom: 2%;
}

/* アニメーション発火時 */
.home h2.active::after {
    width: 100%;
    /* 60% から 100% に変更 */
}

/* お悩み */
.problems {
    background-color: #FBCE89;
}

.problems .inner {
    background-color: var(--white);
    border-radius: 30px;
}

.problem-box {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: bold;
    display: flex;
    justify-content: space-between;

}

.problem-box ul {
    width: 60%;
}

.problem-box li {
    background-color: #EEE8C8;
    border-radius: 50px;
    padding: 3.5% 3%;
    margin-bottom: 24px;
}

.problem-box div {
    width: 34%;
    display: flex;
}

.problem-box div img {
    margin-top: auto;
    margin-bottom: 9%;
}

.answer-text {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: bold;
    display: block;
    position: relative;
    z-index: 5;
}

.answer-text::after {
    content: "";
    position: absolute;
    background-color: var(--yellow);
    width: clamp(285px, 49vw, 470px);
    height: 15px;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    opacity: .6;
}

.rc-leads .sp {
    display: none;
}

.rc-leads {
    font-size: clamp(20px, 2.4vw, 28px);
    position: relative;
    /* padding: 32px 80px; */
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    letter-spacing: 1.2px;
    line-height: 36px;
    margin: 6% 0;
}

.rc-leads p>span {
    font-size: clamp(32px, 4vw, 44px);
}

/* 放射（左右共通） */
.burst {
    position: relative;
    width: 40px;
    height: 40px;
}

.burst::before,
.burst::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 10px solid transparent;
    border-top: 40px solid var(--yellow);
    transform-origin: top center;

}

/* 左 */
.burst.left::before {
    left: 20px;
    transform: translateX(-6px) rotate(-25deg);
}

.burst.left::after {
    left: 15px;
    top: 30px;
    transform: translateX(-14px) rotate(-50deg);
}

/* 右 */
.burst.right::before {
    right: 20px;
    transform: translateX(6px) rotate(25deg);
}

.burst.right::after {
    right: 15px;
    top: 30px;
    transform: translateX(14px) rotate(50deg);
}


/* 選ばれる理由*/
.reasons.container {
    border-radius: 50px 50px 0 0;
    background-image: repeating-linear-gradient(135deg, #FFFBF4 0, #FBCE89 2px, transparent 0, transparent 50%);
    background-size: 27px 27px;
    background-color: #FBCE89;
    background-repeat: repeat;
    padding-top: 4%;
    padding-bottom: 0;
    color: var(--black);

}

.reasons .inner {
    padding: 0;
}

.reason-card-box {
    display: flex;
    gap: 2%;
}

.reasons h3 {
    font-size: 20px;
    color: var(--black);
    position: relative;
    z-index: 5;
    isolation: isolate;
}

.reasons h3::after {
    content: "";
    position: absolute;
    background-color: var(--yellow);
    width: 85px;
    height: 10px;
    bottom: 5px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: -1;
}

.reasons h4 {
    color: var(--main-orange);
    font-size: clamp(20px, 1vw, 24px);
    margin: 6% 0 2%;
}

.card {
    background: var(--white);
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: calc(100% / 3);
}

.card>div {
    margin: 3% 0;
}

.card>div>img {
    object-fit: cover;
    aspect-ratio: 5 / 2;
}

.card p {
    font-size: clamp(12px, 2vw, 16px);
    text-align-last: left;
    font-weight: 600;
}

.reason-img-box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;


}

.reason-img {
    width: 30%;
}

.reason-img img {
    object-fit: cover;
}

.reason-balloon {
    width: 65%;
    background-color: var(--white);
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.164);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(12px, 3vw, 24px);
    padding: 5% 7%;
    align-self: center;
    margin-bottom: auto;
    margin-top: 3%;
}

.reason-balloon span {
    font-size: clamp(16px, 3vw, 30px);

}

.reason-balloon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: var(--white) transparent transparent;
    translate: calc(-50% - 0.4px) 100%;
    transform: skew(-25deg);
    transform-origin: top;
}


/* CTAボタン */

.cta-container .tel-box-sp {
    display: none;
}

.cta-btn {
    background-color: var(--main-orange);
    padding: 1em 2em 2em;
    margin: 3% auto;
}

.cta-titile {
    display: flex;
    position: relative;
    justify-content: center;
}

.cta-titile img {
    width: 24%;
    position: absolute;
    right: 6%;
    bottom: 0;
}

.cta-btn h2 {
    font-size: clamp(16px, 3.7vw, 36px);
    color: var(--dark-orange);
    text-shadow:
        3px 3px 1px #ffffff,
        -3px 3px 1px #ffffff,
        3px -3px 1px #ffffff,
        -3px -3px 1px #ffffff,
        3px 0px 1px #ffffff,
        0px 3px 1px #ffffff,
        -3px 0px 1px #ffffff,
        0px -3px 1px #ffffff;
    letter-spacing: 1.8px;
    display: block;
    margin-top: 5rem;
}

.cta-btn h2 span {
    font-size: clamp(24px, 5vw, 48px);
}

.banner-content {
    background-image: radial-gradient(#fff4eb 3px, transparent 3px), radial-gradient(#fff4eb 3px, transparent 3px);
    background-size: 33px 33px;
    background-position: 0 0, 16.5px 16.5px;
    background-color: #ffffff;
    background-repeat: repeat;
    padding: 4% 12%;
    font-weight: bold;

}

.cta-container {
    display: flex;
    gap: 2%;
}

.cta-btn .tel-label {
    background-color: var(--main-orange);
    transition: .3s;
}

.cta-btn .tel-label:hover {
    background-color: var(--accent-color);
}


.cta-btn .tel-box-pc {
    width: calc(100% / 2);
    font-size: clamp(14px, 4vw, 24px);
}

.tel-black {
    font-size: clamp(14px, 3vw, 18px);
}

.email-button {
    background-color: var(--yellow);
    display: flex;
    width: calc(100% / 2);
    padding: 8px 14px;
    justify-content: space-between;
    border-radius: 5px;
    box-shadow: 0px 6px 0px #8f7f1d8d;
    transition: .3s;
}

.email-button:hover {
    box-shadow: unset;
    transform: translateY(4px);
}

.email-button .email-img {
    width: 20%;
    margin: auto;
}

.email-text,
.tel-box-sp-text {
    font-size: clamp(14px, 4vw, 24px);
    line-height: 1;
    width: 80%;
    text-shadow:
        2px 2px 0px #ffffff,
        -2px 2px 0px #ffffff,
        2px -2px 0px #ffffff,
        -2px -2px 0px #ffffff,
        2px 0px 0px #ffffff,
        0px 2px 0px #ffffff,
        -2px 0px 0px #ffffff,
        0px -2px 0px #ffffff;
    color: var(--black);

}

.tel-box-sp-text p,
.email-text p {
    line-height: 1.2;
}



.email-text p .large,
.tel-box-sp-text p .large {
    font-size: clamp(20px, 3vw, 32px);
}

.cta-footer {
    font-size: clamp(12px, 3vw, 20px);
    margin-top: 3%;
}

.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: #4CC764;
    color: #fff;
    text-decoration: none;
    padding: 1% 7%;
    border-radius: 999px;
    font-size: clamp(16px, calc(0.025 * 100vw + 6.625px), 30px);
    font-weight: bold;
    max-width: 100%;
    box-sizing: border-box;
    transition: 0.3s;
    margin: 2rem auto 0;
    box-shadow: 0px 8px 0px #2666288d;
}

.line-btn .text {
    letter-spacing: 2px;
}

.icon {
    width: 12%;
    height: auto;
    display: block;
}

.line-btn:hover {
    box-shadow: unset;
    transform: translateY(4px);
}


/* Raccoonがお手伝いできること */
.able .inner {
    padding: 0;
}


.able .sec-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: bold;
}

.able-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.able-item {
    background: var(--main-orange);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    text-align: center;
    padding: 0 2% 2%;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.able-item>div {
    background: #fff;
    text-align: left;
    padding: 5% 4%;
    flex: 1;
}

.able-img {
    margin-bottom: 4%;
}

.able-item img {
    object-fit: cover;
    aspect-ratio: 2/1;
}

.able-item h3 {
    background: #ff9b41;
    color: #fff;
    font-size: clamp(15px, 3vw, 20px);
    padding: 10px;
    font-weight: bold;
}

.able-item p {
    font-size: clamp(12px, 3vw, 16px);
    line-height: 1.6;
}

.able-note {
    margin-top: 32px;
    text-align: center;
    font-size: clamp(14px, 4vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4rem;
}

.able-note span {
    color: var(--main-orange);
    font-weight: bold;
    font-size: clamp(20px, 4vw, 34px);
}



/* 対応エリア */
.area {
    background-color: #ffffff;
    padding: 60px 20px;
}

.area .inner {
    padding: 0;
}

.area-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.area-map {
    max-width: 960px;
    margin: 0 auto 24px;
    opacity: .4;

}


.area-text {
    margin-top: 16px;
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
    margin: 0 auto;
    z-index: 6;
    margin-bottom: auto;
    height: fit-content;
}

.area-lead {
    font-size: clamp(18px, 5vw, 40px);
    font-weight: bold;
    line-height: 1.6;
    text-shadow:
        2px 2px 0px #ffffff,
        -2px 2px 0px #ffffff,
        2px -2px 0px #ffffff,
        -2px -2px 0px #ffffff,
        2px 0px 0px #ffffff,
        0px 2px 0px #ffffff,
        -2px 0px 0px #ffffff,
        0px -2px 0px #ffffff;

}

.area-lead span {
    color: var(--main-orange);
    font-size: clamp(33px, 10vw, 75px);
    color: var(--main-orange);
}

.area-character {
    position: absolute;
    right: 0;
    bottom: -36px;
    width: 25%;
    max-width: 300px;
}

.area-character img {
    width: 100%;
    filter: drop-shadow(0 6px 6px #a6a3a3bc);
}

/* 施工事例 */
.example {
    background-image: radial-gradient(#fff3b8ac 3px, transparent 3px), radial-gradient(#fff3b898 3px, transparent 3px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #ffca9e95;
    background-repeat: repeat;
}

.example-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.example-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.example-item>figcaption {
    display: flex;
    gap: 4%;
}

.example-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.example-item figcaption {
    padding: 0 3% 0 0;
}

.work_price {
    font-size: clamp(16px, 6vw, 30px);
    font-weight: bold;
    color: var(--main-orange);
    line-height: 1;
    align-items: center;
    padding: 4% 6% 6% 0;
    width: 60%;
    display: inline-block;
}

.room {
    font-size: clamp(16px, 6vw, 30px);
    font-weight: bold;
    line-height: 1;
    background-color: var(--main-orange);
    color: #fff;
    padding: 4% 6% 6%;
    width: 40%;
}


/* 料金表 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    font-size: clamp(14px, 3vw, 18px);

}

.price-table th {
    background: var(--main-orange);
    color: #fff;
    padding: 2%;
}

.price-table td {
    background: #fff;
    border: 1px solid #eee;
    padding: 2%;
    text-align: center;
    font-weight: bold;
}

.price-table td:last-child {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: bold;
    color: var(--main-orange);
}

.price-table th,
.price-table td {
    width: calc(100%/3);
}


/* 流れ */
.flow {
    padding: 60px 20px;
    background-image: linear-gradient(#fff7f0 2px, transparent 2px), linear-gradient(90deg, #fffcf0 2px, transparent 2px);
    background-size: 20px 20px;
    background-color: #ffd2ad9c;
    background-repeat: repeat;
}

.flow-container {
    padding: 0;
}

.flow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    border-radius: 50px;
    width: 100%;
    align-items: stretch;
    text-align-last: left;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.334);
}

.flow-item .step {
    font-size: clamp(10px, 4vw, 20px);
    font-weight: bolder;
    color: var(--main-orange);
}


.flow-box {
    width: 70%;
    padding: 4% 3% 6% 6%;
    background-color: #fff;
    border-radius: 50px 0 0 50px;
}

.flow-box p {
    margin: 0;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: 600;
}

.flow-image {
    width: 42%;
    display: flex;
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 50px 50px 0;
    aspect-ratio: 5/1;
}


/* よくある質問 */
.faq {
    background: #fffaf3;
    padding: 60px 20px;
    background-color: #faef9aa1;
    margin-bottom: 80px;
}

.faq .inner {
    padding: 0;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align-last: left;
    font-size: clamp(12px, 2vw, 16px);
}

/* Q */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    color: var(--black);
}

.faq-question .icon {
    background: #ff9b41;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.faq-question .text {
    flex: 1;
    font-size: clamp(16px, 2.5vw, 18px);
}

.faq-question .toggle {
    width: 16px;
    height: 16px;
    position: relative;
}

.faq-question .toggle::before,
.faq-question .toggle::after {
    content: "";
    position: absolute;
    background: #333;
    transition: 0.3s;
}

.faq-question .toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-question .toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* A */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f7f7f7;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
}

/* 開いた状態 */
.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-item.is-open .faq-question .toggle::after {
    opacity: 0;
}


/* お問い合わせ */
.contact {
    padding: 0;
}

.contact .inner {
    background: var(--main-orange);
}

.contact-title {
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* 丸いバッジ */
.contact-badge {
    background: var(--yellow);
    color: #111;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    transform: rotate(-15deg);
}

/* 見出し */
.contact-heading {
    font-size: clamp(19px, 4vw, 23px);
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
    align-self: center;
}

.contact-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-lead {
    background-color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 1rem 2%;

}

.contact-lead a {
    display: flex;
    color: var(--main-orange);
    font-size: clamp(28px, 4vw, 40px);
    justify-content: center;
    line-height: 1rem;
    align-self: center;
    line-height: 1;
}

.contact-lead a>div {
    width: 35px;
    align-self: center;
    margin-right: 2px;
}

/* フォーム */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align-last: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #ff6b00;
    font-size: 12px;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

/* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.form-submit button {
    background: var(--accent-color);
    color: #fff;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform .2s, box-shadow .2s;
}

.form-submit button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* お問い合わせモーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

}

.modal h3 {
    font-size: clamp(12px, 3vw, 16px);

}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--main-orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: clamp(12px, 3vw, 16px);
}

.modal-content p {
    font-size: clamp(12px, 3vw, 16px);
}

/* SP微調整 */
@media (max-width: 768px) {
    .contact-box {
        padding: 30px 20px;
    }
}

/* フォーム */
.form-wrapper {
    background: var(--yellow);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-item {
    margin-bottom: 20px;
}

.form-item label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-item label span {
    background: #ff4d4d;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
}

.form-item input,
.form-item textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    display: block;
    width: 100%;
    background: var(--main-orange);
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--dark-orange);
}

/* 会社情報セクションのスタイル */
.company-info {
    padding: 60px 0;
}

.company-intro {
    max-width: 768px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: clamp(12px, 3vw, 16px);
    line-height: 1.8;
    text-align-last: left;
    font-weight: 500;
}

.info-table-wrapper {
    max-width: 768px;
    margin: 0 auto;
    /* border: 1px solid #eee; */
    border-radius: 10px;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    text-align-last: left;
}

.info-table th {
    width: 15%;
    padding: 2px;
    text-align: left;
    color: var(--main-orange);
    font-size: clamp(12px, 3vw, 16px);

}

.info-table td {
    width: 55%;
    font-size: clamp(12px, 3vw, 16px);
}

footer {
    background-color: var(--main-orange);
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    font-size: 10px;
}

footer>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
}

.fixed-cta {
    display: none;
}

footer a {
    display: inline-block;
    color: #fff;
    text-align: center;
}


@media (max-width: 450px) {
    .mv-label .sp {
        display: block;
    }
}


@media (max-width: 600px) {

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        padding: 10px 0 0;
        border-bottom: none;
    }

    .info-table td {
        padding: 0;
    }
}


@media (max-width: 580px) {
    .rc-leads .sp {
        display: block;
    }

    .rc-leads .sp {
        display: none;
    }
}



@media (max-width: 768px) {

    body {
        padding-bottom:
            70px;
    }

    h2 .sp {
        display: block;
    }

    .header-info {
        width: auto;
        max-width: 208px;
    }

    .header-inner {
        padding: 0 0 0 10px;
    }


    .logo-area {
        width: clamp(90px, 29vw, 240px);
    }

    .logo-area,
    .header-info {
        min-width: 0;
        /* これがないと中身のサイズで突っ張る */
        flex-shrink: 1;
        /* 縮むことを許可 */
    }

    .tel-box-pc {
        display: none;
    }

    .tel-box-sp {
        display: flex;
        background-color: var(--accent-color);
        width: clamp(212px, 32vw, 340px);
        padding: 2%;
        border-radius: 2.5rem 0 0 2.5rem;
    }

    .tel-box-sp a {
        display: flex;
        flex-direction: row;
        font-weight: bold;
        text-align: center;
    }

    .tel-box-sp .tel-number>div:nth-child(1) {
        width: clamp(28px, 26vw, 53px);
        padding-top: 2%;
    }

    .tel-text p:nth-child(1) {
        display: inline-block;
        color: #ffffff;
        line-height: clamp(6px, 32vw, 12px);
        /* 文字の色 */
        font-size: clamp(10px, 32vw, 12px);
        /* 文字のサイズ */
        text-shadow:
            .5px .5px 0px #000000,
            -.5px .5px 0px #000000,
            .5px -.5px 0px #000000,
            -.5px -.5px 0px #000000,
            .5px 0px 0px #000000,
            0px .5px 0px #000000,
            -.5px 0px 0px #000000,
            0px -.5px 0px #000000;
        letter-spacing: -1px;
        padding-top: 2%;
    }

    .tel-text p:nth-child(2) {
        display: inline-block;
        color: var(--dark-orange);
        font-weight: bolder;
        line-height: clamp(16px, 32vw, 20px);
        /* 文字の色 */
        font-size: clamp(16px, 32vw, 20px);
        text-shadow:
            1px 1px 0px #ffffff,
            -1px 1px 0px #ffffff,
            1px -1px 0px #ffffff,
            -1px -1px 0px #ffffff,
            1px 0px 0px #ffffff,
            0px 1px 0px #ffffff,
            -1px 0px 0px #ffffff,
            0px -1px 0px #ffffff;
        letter-spacing: -1px;
    }

    .tel-badge {
        background-color: var(--yellow);
        font-size: clamp(8px, 32vw, 10px);
        letter-spacing: -1px;
        border-radius: 50%;
        width: clamp(24px, 32vw, 38px);
        height: clamp(24px, 32vw, 38px);
        color: var(--black);
        flex-shrink: 0;
        line-height: 12px;
        padding-top: 3%;
        text-align: center;
    }

    .tel-badge span {
        font-size: clamp(10px, 32vw, 12px);
        display: inline-block;

    }

    .btn-header {
        display: none;
    }

    .mv-container {
        padding-left: 16px;
        display: block;
    }

    .mv .inview.is-show {
        padding-left: 0;
    }

    .mv-text {
        grid-area: text;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 中央揃え */
    }

    .mv-text h1 {
        font-size: clamp(35px, 9vw, 68px);
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .mv-text>h1>.large {
        font-size: clamp(32px, 8vw, 60px);
    }

    .mv-text>h1>.small {
        font-size: clamp(24px, 8vw, 32px);
    }


    .brand-name>.large {
        font-size: clamp(32px, 9vw, 57px);
    }

    .brand-name>.small {
        font-size: clamp(16px, 4vw, 34px);
        letter-spacing: -2px;
    }

    .brand-name::before,
    .brand-name::after {
        width: 2px;
        height: 30px;
        background: var(--black);
    }

    .brand-name::before {
        left: 0;
        transform: translateY(-35%) rotate(-30deg);
    }

    .brand-name::after {
        right: 0;
        transform: translateY(-35%) rotate(30deg);
    }

    .mv {
        height: auto;
        min-height: 0;
        /* padding-top: calc(var(--header-h) + 40px); */
        padding-bottom: 5px;
        padding-top: 70px;
    }

    .mv-container {
        min-height: auto;
    }

    .mv-label {
        padding: 5px 15px;
        border-radius: 50px;
        margin-bottom: 10px;
        font-size: clamp(10px, 8vw, 16px);
        font-weight: bold;
        letter-spacing: 0;
        text-shadow:
            2px 2px 2px rgba(0, 0, 0, 0.517);
        line-height: 1.2;
    }

    .mv-label span {
        font-size: clamp(14px, 8vw, 28px);
    }

    .mv-copy {
        font-size: clamp(24px, 4vw, 32px);
        position: relative;
        display: block;
        z-index: 5;
        isolation: isolate;
    }

    .mv-copy::after {
        content: "";
        position: absolute;
        background-color: var(--main-orange);
        width: clamp(148px, 4vw, 200px);
        height: 10px;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: -1;
        opacity: .6;
    }

    .mv-badge {
        width: clamp(300px, 4vw, 400px);
        gap: 4%;
        margin: 0 auto;
    }

    .mv-img {
        display: flex;
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }

    .mv-balloon {
        width: 50%;
        margin-bottom: 35%;
        padding: 6% 4%;
        margin-left: 10px;
    }

    .mv-img div:nth-child(2) {
        width: 50%;
        margin-bottom: 5%;
    }


    .mv-balloon p {
        line-height: 115%;
        font-size: clamp(12px, 4vw, 24px);
    }

    .mv-balloon:before {
        content: "";
        position: absolute;
        top: 64%;
        left: 50%;
        border-top: 21px solid #fff6ae;
        bottom: 0;
        left: 79%;
        border-style: solid;
        border-width: 20px 0 0 20px;
        border-color: #fff6ae transparent transparent;
        translate: -50% 100%;
        transform: skew(25deg);
    }


    /* お悩み */

    .problem-box {
        flex-direction: column;
    }

    .problem-box ul {
        width: 100%;
    }

    .problem-box li {
        position: relative;
        margin-bottom: 30px;
    }


    .problem-box div {
        width: 70%;
        display: block;
        margin: 0 auto;
    }

    .problem-box li::before,
    .problem-box li::after {
        content: "";
        position: absolute;
        background: #E9E9C9;
        border-radius: 50%;
    }

    .problem-box li::before {
        width: 10px;
        height: 10px;
        bottom: -14px;
        left: 32px;
    }

    .problem-box li::after {
        width: 6px;
        height: 6px;
        bottom: -22px;
        left: 40px;
    }

    /* 右寄せバージョン */
    .problem-box .right::before {
        left: auto;
        right: 32px;
    }

    .problem-box .right::after {
        left: auto;
        right: 40px;
    }

    .reason-card-box {
        flex-direction: column;
        margin-top: 0px;
    }

    .card {
        width: 100%;
        margin-bottom: 6%;
        padding: 4%;
    }

    .reason-balloon .sp {
        display: block;
    }

    .reason-balloon {
        letter-spacing: -1px;
        padding: 3%;
        width: 70%;
        margin-top: 0;
    }

    .reason-balloon::after {
        border-width: 11px 11px 0 0;
    }


    .reason-img-box {
        margin-top: 0px;
    }

    .reason-balloon span {
        font-size: clamp(14px, 4vw, 18px);
    }


    /* CTA */


    .cta-btn h2 {
        margin-right: 14%;
    }

    .banner-content {
        padding: 3% 2%;
    }

    .cta-container .tel-box-sp {
        display: flex;
        background-color: var(--main-orange);
        display: flex;
        width: calc(100% / 2);
        padding: 8px 14px;
        justify-content: space-between;
        border-radius: 5px;
        box-shadow: 0px 6px 0px #2969158d;
        transition: .3s;
        cursor: pointer;
    }

    .cta-container .tel-box-sp:hover {
        box-shadow: unset;
        transform: translateY(4px);
    }


    .cta-container .tel-box-sp .tel-box-img {
        width: 20%;
        margin: auto;
    }

    .cta-container .tel-box-pc {
        display: none;
    }

    .cta-titile img {
        right: 4%;
    }

    /* 流れ */

    .flow-item {
        padding: 0;

    }

    /* 施工事例 */

    .example-list {
        grid-template-columns: 1fr;
    }


    /* お手伝いできること */
    .able-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .able-item h3 {
        padding: 3px;
    }


    /* 下部固定ボタン */
    .fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;

        opacity: 0;
        transform: translateY(100%);
        pointer-events: none;

        transition: opacity .3s ease, transform .3s ease;
        z-index: 9999;
    }

    .fixed-cta.is-show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .cta-tel-box {
        width: 55%;
    }

    .fixed-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        padding: 10px 7px;
        font-weight: bold;

    }

    .cta-tel {
        background: var(--main-orange);
        display: flex;
        flex-direction: column;

    }

    .cta-mail-box {
        width: 45%;
    }

    .cta-form {
        background: #f5e151;
        display: flex;
        flex-direction: column;
    }

    .cta-icon {
        width: 10rem;
        height: auto;
        margin-right: 8px;
    }

    .cta-text {
        text-align: left;
        display: flex;
    }

    .cta-main {
        display: block;
        font-size: 5.6rem;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    }

    .cta-sub {
        display: block;
        font-size: 4.8rem;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    }

    .cta-line-box {
        background-color: #4AC963;
        width: 20%;
    }

    .cta-line-box img {
        width: fit-content;
    }

    .line-btn {
        padding: .5% 5%;
        border-radius: 999px;
        font-size: clamp(18px, 3.125vw, 30px);
        font-weight: bold;
        margin: 4rem auto 0;
        box-shadow: 0px 6px 0px #2666288d;
    }

}


@media (max-width: 900px) {
    .mv-text {
        align-self: center;
        width: 100%;
    }
}


@media (min-width: 1500px) {

    .mv-container {
        margin-top: 1%;
    }

    .mv-text {
        width: 80%;
    }

    .mv-text>h1>.large {
        font-size: clamp(52px, 7vw, 118px);
    }

    .mv-text h1 {
        font-size: clamp(53px, 8vw, 130px);
    }

    .mv-text>h1>.small {
        font-size: clamp(32px, 6vw, 59px);
    }

    .brand-name>.large {
        font-size: clamp(33px, 5vw, 95px);
    }

    .brand-name>.small {
        font-size: clamp(17px, 5vw, 41px);
    }

    .brand-name::before,
    .brand-name::after {
        top: 67%;
    }

    .mv-label {
        font-size: clamp(16px, 7vw, 38px);
    }

    .mv-label span {
        font-size: clamp(22px, 8vw, 50px);
    }

    .mv-badge {
        max-width: 750px;
    }

    .mv-copy {
        margin: 0 auto;
    }

    .mv-copy::after {
        width: clamp(225px, 17vw, 339px);
    }

    .mv-img div:nth-child(2) {
        width: 100%;
    }

}



/* プライバシーポリシー */

.privacy-policy {
    padding-top: 10rem;
}

.privacy-policy {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align-last: left;
}

.privacy-policy h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

.privacy-policy h3 {
    font-size: 15px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.privacy-policy ul {
    padding-left: 1.2em;
}

.privacy-contact p {
    margin-bottom: 8px;
}