@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*===================================
メインビュー
===================================*/

.mv {
    padding: 72px 0 96px;
    background-color: #fff;
    overflow: hidden;
}

.mv-wrapper {
    position: relative;
    height: calc(100vh - 72px);
}

.mv-bg1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: min(1440px, 90%);
    height: 90%;
    background-color: #989B9399;
    zz
}

.mv-bg2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: min(1440px, 90%);
    margin: 0 0 0 auto;
    height: 90%;
}

.mv-contents {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 3;
    font-weight: 600;
    width: min(1440px, 100%);
}

.mv-title,
.mv-title2 {
    color: #659B00;
    background-color: #fff;
    font-weight: 700;
    width: fit-content;
    padding: 16px clamp(1rem, 0.636rem + 1.55vw, 2.5rem) 16px clamp(1rem, 0.029rem + 4.14vw, 5rem);
}

.mv-title {
    font-size: clamp(1.5rem, 1.015rem + 2.07vw, 3.5rem);
    margin-bottom: 16px;
}

.mv-title2 {
    font-size: clamp(1.75rem, 1.204rem + 2.33vw, 4rem);
    margin-bottom: 16px;
}

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.mv-title {
    animation-delay: 1s;
}

.mv-title2 {
    animation-delay: 1.5s;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mv-icon {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 0.257rem + 1.04vw, 1.5rem);
    padding-left: clamp(1.5rem, 0.65rem + 3.62vw, 5rem);
    margin-bottom: 8px;
}

.mv-icon li {
    position: relative;
    width: clamp(6.5rem, 5.65rem + 3.62vw, 10rem);
    height: clamp(6.5rem, 5.65rem + 3.62vw, 10rem);
    background-color: #FFF;
    border: 2px solid #659B00;
    border-radius: 50%;
}

.mv-icon div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mv-icon p {
    white-space: nowrap;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}

.mv-icon img {
    width: clamp(4.5rem, 4.015rem + 2.07vw, 6.5rem);
    margin-bottom: 8px;
}

.mv-text {
    color: #fff;
    line-height: 2;
    padding-left: clamp(1rem, 0.029rem + 4.14vw, 5rem);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

/* ぼかしから出現 */
.blur {
    animation-name: blurAnime;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes blurAnime {
    from {
        filter: blur(16px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.mv-text2 {
    display: none;
}

.mv-cta {
    padding-left: clamp(1rem, 0.029rem + 4.14vw, 5rem);
}

.mv-cta-button {
    padding: 16px 40px;
    border: 2px solid #FF8629;
    border-radius: 4px;
    font-size: 1.25rem;
    color: #fff !important;
    background-color: #FF8629;

    &:hover {
        color: #FF8629 !important;
        background-color: #FFF;
    }
}

@media screen and (max-width:1100px) {
    .mv {
        padding: 56px 0 96px;
    }

    .mv-wrapper {
        height: calc(100vh - 56px);
    }
}

@media screen and (max-width:768px) {
    .mv-wrapper {
        height: calc(100vh - 112px);
    }

    .mv-text {
        width: 85%;
    }

    .mv-cta {
        display: none;
    }
}

@media screen and (max-width:428px) {
    .mv {
        padding: 56px 0 24px;
        height: calc(100vh - 56px);
    }

    .mv-wrapper {
        height: calc(100% - 120px);
    }

    .mv-bg1 {
        width: 96%;
    }

    .mv-bg2 {
        width: 96%;
    }

    .mv-contents {
        bottom: 2%;
        transform: translate(-50%, 0);
    }

    .mv-icon {
        justify-content: center;
        width: 100%;
        padding-left: 0;
    }

    .mv-text {
        display: none;
    }

    .mv-text2 {
        display: block;
        font-weight: 600;
        line-height: 1.5;
        width: 90%;
        margin: 24px auto 0;
    }
}

/*===================================
悩み
===================================*/

#problem {
    background-color: #F0F0F0;
    padding: 96px 0 48px;
}

#problem ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 40px;
    width: min(90%, 1200px);
    margin: 40px auto 0;
    list-style: none;
}

#problem ul li {
    width: min(100%, 464px);
    font-weight: 600;
    line-height: 1.7;
    padding: 16px 16px 16px 48px;
    border: 1px solid #777;
    border-radius: 4px;
    background-color: #fff;
    background-image: url(../img/icon/check.png);
    background-repeat: no-repeat;
    background-position: left 16px top 50%;
    background-size: 24px auto;
}

@media (max-width: 428px) {

    #problem {
        padding: 48px 0;
    }

    #problem ul {
        row-gap: 8px;
        margin: 24px auto 0;
    }

    #problem ul li {
        line-height: 1.5;
        padding: 8px 16px 8px 48px;
    }

}

/*===================================
解決
===================================*/

#solution {
    position: relative;
    padding: clamp(6rem, 5.272rem + 3.11vw, 9rem) 0 clamp(3rem, 2.272rem + 3.11vw, 6rem);
    text-align: center;
    background-color: #fff;
}

#solution::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 0px;
    width: 100%;
    clip-path: polygon(50% 36%, 100% 0%, 0% 0%);
    background-color: #F0F0F0;
    padding: clamp(3rem, 2.272rem + 3.11vw, 6rem) 0;
}

.solution {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: min(1096px, 90%);
    margin: 0 auto;
}

.solution li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    height: 376px;
    padding: 32px 24px;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.solution-sale {
    width: 100%;
    background: #ECF5DB;
}

.solution-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.solution-row li {
    flex: 1 1 calc(33.333% - 16px);
    /* 3列時の1つあたりの幅 */
    background: #F8F8F8;

    &:first-of-type h3 {
        line-height: 1.3;
    }
}

.solution li p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2rem;
    border-bottom: 1px solid #333;
    width: fit-content;
    margin: 0 auto;
    padding: 0 8px;
}

@media (max-width: 768px) {
    .solution li {
        height: fit-content;
        gap: 16px;
    }

    .solution-row li {
        flex: 1 1 100%;
    }
}

/*===================================
記事リンク
===================================*/

#article-link {
    padding-top: 96px;
    background-color: #fff;
}

.article-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 64px 0;
    background-color: #F8F8F8;
}

.article-link a {
    position: relative;
    display: block;
    width: min(90%, 520px);
    height: 216px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right 30%;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

    &:hover {
        transform: translate(0, 4px);
    }
}

.article-link .trivia {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/bg/bg-trivia.jpg);

    &:hover {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/bg/bg-trivia.jpg);
    }
}

.article-link .interview {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/bg/bg-interview.jpg);

    &:hover {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/bg/bg-interview.jpg);
    }
}

.article-link .trivia img,
.article-link .interview img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 152px;
}

.article-link p {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 428px) {
    #article-link {
        padding-top: 48px;
    }
}

/*===================================
選ばれる理由
===================================*/

#reason {
    text-align: center;
    background-color: #fff;
    padding: 96px 0;
}

#reason h2 span {
    display: block;
    color: #333;
    font-size: 1.25rem;
    line-height: 1;
}

#reason ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: min(1200px, 90%);
    margin: 64px auto 0;
    list-style: none;
}

#reason li {
    position: relative;
    width: 320px;
    margin-bottom: 40px;
}

#reason .point {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 48px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 46px;
    color: #fff;
    background-color: #659B00;
    border-radius: 4px;
}

#reason h3 {
    color: #659B00;
    font-size: 1.25rem;
    padding: 16px 0;
}

#reason p {
    text-align: justify;
    line-height: 1.7;
}

@media (max-width: 428px) {
    #reason {
        padding: 48px 0;
    }
}

/*===================================
成約実績
===================================*/

#achievements {
    position: relative;
    padding: 96px 0;
    background-color: #fff;
    text-align: center;
}

#achievements:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #ECF5DB;
}

#achievements h2 {
    margin-top: 40px;
}

#achievements ul {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: min(1200px, 100%);
    margin: 0 auto 40px;
    list-style: none;
}

#achievements li {
    width: 320px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#achievements li *:first-child {
    position: relative;
}


#achievements .mv-visible {
    width: 100%;
    height: 180px;
}

#achievements .mv-visible img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

#achievements .point {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 152px;
    height: 32px;
    font-size: .875rem;
    line-height: 30px;
    color: #fff;
    background-color: #659B00;
}

#achievements h3 {
    font-size: 1rem;
    text-align: left;
}

.achievements {
    padding: 16px;
}

.achievements div {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px auto 16px 0;
}

.achievements .tag {
    display: inline-block;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 600;
    padding: 4px 8px;
    border: solid 1px #000;
    text-align: left;
}

#achievements .button {
    position: relative;
}

@media (max-width: 428px) {
    #achievements {
        padding: 48px 0;
    }
}

/*===================================
お客様の声
===================================*/

#voice {
    position: relative;
    padding: 96px 0 64px;
    height: fit-content;
    background-color: #fff;
    text-align: center;
}

#voice:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    padding-bottom: 64px;
    background: url(../img/bg/bg-voice.jpg)no-repeat center center / cover;
}

#voice ul {
    position: relative;
    width: min(1096px, 90%);
    margin: 0 auto;
    list-style: none;
}

#voice li {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    row-gap: 8px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

    &:nth-child(n+2) {
        margin-top: 40px;
    }
}

#voice img {
    width: min(320px, 100%);
}

.voice {

    *:not(last-child) {
        margin-top: 16px;
    }
}

.voice h3 {
    font-size: 1.5rem;
    color: #659B00;
    border-bottom: solid 1px #333;
    padding-bottom: 16px;
    text-align: left;
}

.voice p {
    line-height: 1.7;
    text-align: justify;
}

@media (max-width: 768px) {
    #voice li {
        flex-wrap: wrap;

        &:nth-of-type(2) {
            flex-wrap: wrap-reverse;
        }
    }
}

@media (max-width: 428px) {
    #voice {
        padding: 64px 0 48px;
    }
}

/*===================================
売却までの流れ
===================================*/

#flow {
    padding: 96px 0;
    background-color: #E8F5DB;
}

.flow {
    width: min(1024px, 90%);
    padding: 64px 0;
    background-color: #fff;
    margin: 0 auto;
}

.flow ul {
    margin: 40px auto 0;
    width: 90%;
    list-style: none;
}

.flow li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 24px;

    &:not(:last-child) {
        margin-bottom: 40px;
    }
}

.flow img {
    width: min(320px, 100%);
}

.flow-text {
    flex: 1 1 320px;
    width: max(320px, 100%);
}

.flow .point {
    width: 144px;
    height: 40px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 38px;
    color: #fff;
    background-color: #659B00;
    text-align: center;
}

.flow h3 {
    font-size: 1.5rem;
    color: #659B00;
    text-align: left;
    margin: 16px 0;
}

.flow p {
    line-height: 1.7;
    text-align: justify;
}

@media (max-width: 428px) {
    #flow {
        padding: 48px 0 64px;
    }

    .flow {
        padding: 32px 0;
    }
}

/*===================================
新着情報
===================================*/

#information {
    padding: 96px 0;
    background-color: #fff;
    text-align: center;
}

#information dl {
    width: min(720px, 90%);
    margin: 40px auto;
}

.information-wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    text-align: left;
    border-bottom: solid 1px #777;
}

#information dt {
    font-size: .875rem;
    font-weight: 600;
}

#information dd {
    width: 70%;
    line-height: 1.5;
}

#information .point,
#information .point2 {
    display: inline-block;
    color: #fff;
    margin-left: 16px;
    padding: 4px 0;
    width: 88px;
    text-align: center;
}

#information .point {
    background-color: #659B00;
}

#information .point2 {
    background-color: #DFAC20;
}

@media (max-width: 768px) {

    .information-wrapper {
        flex-wrap: wrap;
    }

    #information dd {
        width: 100%;
    }
}

/*===================================
よくある質問
===================================*/

#faq {
    background-color: #fff;
    background-image: url(../img/bg/bg-curve.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: clamp(6rem, 5.029rem + 4.14vw, 10rem) 0 96px;
}

/*アコーディオン1*/

.faq-accordion {
    list-style: none;
    width: min(960px, 100%);
    margin: 40px auto 0;

    &:not(:first-of-type) {
        margin: 2px auto 0;
    }
}

.faq-accordion li {
    background-color: #659B00;
}

.faq-category {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    color: #fff;
    font-size: 1.25rem;
    height: 64px;
    line-height: 64px;
    padding: 0 16px;
    text-align: left;
    transition: all .5s ease;
}

.faq-category img {
    margin: 0 16px 4px 0;
}

/*アイコンの＋と×*/
.faq-category:before,
.faq-category:after {
    position: absolute;
    top: 50%;
    right: 24px;
    content: '';
    width: 2px;
    height: 12px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 50% calc(100% - 1px);
}

.faq-category:before {
    transform: translateY(-50%) rotate(45deg);
}

.faq-category:after {
    transform: translateY(-50%) rotate(-45deg);
}

/*　closeというクラスがついたら形状変化　*/

.faq-category.close::before {
    top: 30%;
    transform: rotate(135deg);
}

.faq-category.close::after {
    top: 30%;
    transform: rotate(-135deg);
}

/*アコーディオンで現れるエリア*/
.faq-label {
    display: none;
    /*はじめは非表示*/
    background: #F8F8F8;
    padding: 24px 24px;
}

/*アコーディオン2*/

.faq-accordion2 {
    list-style: none;
}

.faq-accordion2 li {
    background-color: #fff;
    margin-bottom: 24px;
}

.question {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    color: #333;
    font-size: 1rem;
    text-indent: -1.8rem;
    padding: 16px 40px 16px 48px;
    text-align: left;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.question:before,
.question:after {
    position: absolute;
    top: 50%;
    right: 24px;
    content: '';
    width: 2px;
    height: 12px;
    border-radius: 9999px;
    background-color: #333;
    transform-origin: 50% calc(100% - 1px);
}

.question:before {
    transform: translateY(-50%) rotate(45deg);
}

.question:after {
    transform: translateY(-50%) rotate(-45deg);
}

/*　closeというクラスがついたら形状変化　*/

.question.close::before {
    top: 30%;
    transform: rotate(135deg);
}

.question.close::after {
    top: 30%;
    transform: rotate(-135deg);
}

/*アコーディオンで現れるエリア*/
.answer {
    display: none;
    /*はじめは非表示*/
    color: #333;
    padding: 16px 24px 24px;
    line-height: 1.5;
}

.answer p {
    text-indent: -1.7rem;
    padding-left: 1.7rem;
}

@media (max-width: 428px) {
    #faq {
        padding: clamp(6rem, 5.029rem + 4.14vw, 10rem) 0 48px;
    }
}