@charset "UTF-8";

.main-property-management {
    --btn-large-any-color: var(--white-color);
    --btn-large-any-bgcolor: var(--mstyle-purple-color);
    margin: var(--main-mar-last);
    position: relative;
    z-index: -100;
    overflow-x: hidden;
}

.below-title {
    margin: 0 0 90px 0;
}

.numbering {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 78px;
  aspect-ratio: 1;
  color: var(--white-color);
  font-size: var(--fz-24);
  font-family: var(--font-family-lato);
  line-height: normal;
  background: var(--mstyle-sub-brown-color);
  border-radius: 50%;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 50;
}

.numbering span {
  font-size: var(--fz-16);
  position: relative;
}

.numbering span::after {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--white-color);
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0);
}


@media (max-width: 1023px) and (min-width: 769px) {
    .below-title {
        margin: 0 0 60px 0;
    }
}

@media screen and (max-width:768px) {
    .below-title {
        margin: 0 0 30px 0;
    }
}


/* ===============================================================
  共通のh2タイトル
=============================================================== */
.h2-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    line-height: normal;
    margin: 0 0 35px 0;
}

.h2-title .upper {
    display: inline-block;
    color: var(--mstyle-main-color);
    font-size: var(--fz-24);
    font-weight: 700;
    padding: 0 0 8px 98px;
    margin: 0 0 3px 0;
    position: relative;
}

.h2-title .upper::before {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background: var(--mstyle-main-color);
    rotate: -43.75deg;
    bottom: 0;
    left: 118px;
}

.h2-title .upper::after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background: var(--mstyle-main-color);
    rotate: 43.75deg;
    bottom: 0;
    left: 111px;
}

.h2-title .upper span {
    position: relative;
}

.h2-title .upper span::before {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background: var(--mstyle-main-color);
    bottom: -4px;
    left: 0;
}

.h2-title .upper span::after {
    position: absolute;
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--mstyle-main-color);
    bottom: -4px;
    right: 0;
}

.h2-title .lower {
    --svg-width: 80px;
    --svg-va: -20px;
    font-size: var(--fz-56);
    font-weight: 700;
    line-height: normal;
}

.h2-title .lower h2 {
    display: inline-block;
}

@media (max-width: 1023px) and (min-width: 769px) {
    .h2-title .upper {
        padding: 0 0 8px 67px;
    }
    .h2-title .upper::before {
        left: 87px;
    }
    .h2-title .upper::after {
        left: 79px;
    }
    .h2-title .lower {
        --svg-width: 52px;
        --svg-va: -12px;
        font-size: var(--fz-40);
    }
}

@media screen and (max-width:768px) {
    .h2-title {
        margin: 0 0 30px 0;
    }
    .h2-title .upper {
        font-size: var(--fz-16);
        padding: 0 0 8px 50px;
    }
    .h2-title .upper::before {
        left: 70px;
    }
    .h2-title .upper::after {
        left: 62px;
    }
    .h2-title .lower {
        --svg-width: 40px;
        --svg-va: -10px;
        font-size: clamp(1.4rem, 1.257rem + 0.71vw, 1.6rem);
    }
}


/* ===============================================================
  FV & NAV
=============================================================== */
.fv figure {
    width: 88%;
    padding: 0 0 0 28px;
    margin: 135px 0 38px 0;
    position: relative;
}

.fv figure::before {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    aspect-ratio: 1;
    background: url(../../images/illust/illust-p-woman-thinking.webp) no-repeat center / contain;
    bottom: -25px;
    right: -14%;
}

.fv-pic {
    height: 560px;
    margin: 0 0 110px 0;
    position: relative;
}

.fv-pic figcaption {
    position: absolute;
    font-size: var(--fz-40);
    font-family: var(--font-family-nssjp);
    writing-mode: vertical-rl;
    letter-spacing: .03em;
    top: 138px;
    right: calc(50% - (var(--inner-width) / 2));
}

.fv-pic figcaption .v-text-1 {
    display: block;
    white-space: nowrap;
    background: var(--white-color);
    border-radius: var(--base-radius);
    padding: 30px 17px;
    margin: 0 0 0 25px;
}

.fv-pic figcaption .v-text-2 {
    display: block;
    white-space: nowrap;
    background: var(--white-color);
    border-radius: var(--base-radius);
    padding: 30px 17px;
    margin: 165px 0 0 0;
}

.fv-description {
    text-align: center;
    margin: 0 0 135px 0;
}

.fv-btn-area {
    margin: 0 0 120px 0;
}

.fv-phone-area {
    text-align: center;
    margin: 0 0 150px 0;
    position: relative;
}

.fv-phone-area .number {
    --svg-color: var(--mstyle-red-color);
    --svg-width: 26px;
    --svg-va: -5px;
    display: inline-block;
    color: var(--mstyle-red-color);
    font-size: var(--fz-24);
    font-family: var(--font-family-lato);
    border-bottom: 2px solid var(--mstyle-red-color);
    margin: 0 0 5px 0;
}

.fv-phone-area .opening-hour {
    font-size: var(--fz-12);
    line-height: normal;
}

.fv-phone-area .opening-hour span {
    display: block;
    font-size: .75em;
    margin: 1px 0 0 0;
}


@media (max-width: 1023px) and (min-width: 769px) {
    .fv figure {
        margin: 100px 0 65px 0;
    }
    .fv figure::before {
        right: -17%;
    }
    .fv-pic {
        --img-of-position: left 50% bottom -50px;
        height: 350px;
    }
    .fv-pic figcaption {
        font-size: var(--fz-24);
        top: 86px;
        right: 27px;
    }
    .fv-pic figcaption .v-text-1 {
        padding: 30px 10px;
        margin: 0 0 0 15px;
    }
    .fv-pic figcaption .v-text-2 {
        padding: 30px 10px;
        margin: 80px 0 0 0;
    }
}

@media screen and (max-width:768px) {
    .fv {
        margin: 50px auto 50px auto;
    }
    .fv figure {
        width: 100%;
        padding: 0 0 165px 0;
        margin: 0 auto;
    }
    .fv figure::before {
        bottom: 10px;
        right: 50%;
        transform: translate(50%, 0);
    }
    .fv-pic {
        height: 468px;
        margin: 0 0 150px 0;
    }
    .fv-pic figcaption {
        font-size: var(--fz-24);
        top: 192px;
        right: 27px;
    }
    .fv-pic figcaption .v-text-1 {
        padding: 30px 10px;
        margin: 0 0 0 15px;
    }
    .fv-pic figcaption .v-text-2 {
        padding: 30px 10px;
        margin: 108px 0 0 0;
    }
    .fv-description {
        margin: 0 0 120px 0;
    }
    .fv-btn-area {
        gap: 48px 0;
        margin: 0 0 100px 0;
    }
    .fv-phone-area {
        margin: 0 0 100px 0;
    }
}

.main-property-management .page-navigation {
    width: 95%;
    border-top: 2px solid var(--mstyle-main-color);
    border-bottom: 2px solid var(--mstyle-main-color);
    padding: 35px 0;
    margin: 0 auto 135px auto;
}

.main-property-management .page-navigation ul {
    display: flex;
    justify-content: center;
    gap: 15px 35px;
}

.main-property-management .page-navigation li {
    width: 117px;
    height: 117px;
}

.main-property-management .page-navigation a {
    --svg-color: var(--mstyle-main-color);
    --svg-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px 0;
    line-height: normal;
    background: var(--mstyle-light-grey-color);
    border-radius: var(--base-radius);
    box-shadow: var(--box-shadow-n1);
    padding: 21px 0 11px 0;
    transition: var(--transition-main);
}

.main-property-management .page-navigation a span {
    font-size: var(--fz-14);
    border-bottom: 2px solid var(--mstyle-main-color);
}

.main-property-management .page-navigation a svg:last-child {
    --svg-width: 16px;
    rotate: 90deg;
        transition: var(--transition-main);
}

@media (hover: hover) {
    .main-property-management .page-navigation a:hover {
        opacity: .75;
        box-shadow: var(--box-shadow-n1-hov);
        transform: translate(1px, 1px);
    }
    .main-property-management .page-navigation a:hover svg:last-child {
        transform: translateX(3px);
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .main-property-management .page-navigation ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        justify-items: start;
        gap: 28px 28px;
        width: 92%;
        margin: 0 auto;
    }
    .main-property-management .page-navigation li {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    .main-property-management .page-navigation a {
        height: 100%;
        padding: 0;
    }
}

@media screen and (max-width:768px) {
    .main-property-management .page-navigation {
        margin: 0 auto 50px auto;
    }
    .main-property-management .page-navigation ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        justify-items: start;
        gap: 1rem;
        width: 92%;
        margin: 0 auto;
    }
    .main-property-management .page-navigation li {
        width: 100%;
        height: auto;
        min-height: 100px;
        aspect-ratio: 1;
    }
    .main-property-management .page-navigation a {
        --svg-width: 40px;
        height: 100%;
        gap: 2px 0;
        border-bottom: 16px solid var(--mstyle-light-green-color);
        padding: 0;
        position: relative;
    }
    .main-property-management .page-navigation a span {
        font-size: var(--fz-12);
        letter-spacing: -.05em;
        border: none;
    }
    .main-property-management .page-navigation a svg:last-child {
        position: absolute;
        bottom: -18px;
    }
}


/* ===============================================================
  secLendTrouble
=============================================================== */
.sec-lend-trouble {
    background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center / contain;
    padding: var(--sec-pad-image);
    margin: var(--sec-mar-image);
}

.sec-lend-trouble ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 125px 0;
}

.sec-lend-trouble ul li {
    position: relative;
}

.sec-lend-trouble ul li figure {
    --img-of-position: left center;
    width: 300px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 0 26px 0;
    overflow: hidden;
    position: relative;
}

.sec-lend-trouble ul li figure::before {
    position: absolute;
    content: "";
    display: block;
    width: 95%;
    height: 95%;
    background: transparent;
    border: 2px solid var(--mstyle-purple-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.sec-lend-trouble ul li .worry {
    --svg-width: 26px;
    --svg-va: -6px;
    font-weight: 700;
    text-align: center;
}

.sec-lend-trouble ul li .worry span {
    padding: 0 0 0 28px;
}

.sec-lend-trouble .below-list .first-para {
    margin: 0 0 30px 0;
}

.sec-lend-trouble .below-list .second-para {
    display: inline-block;
    margin: 0 0 150px 0;
    position: relative;
}

.sec-lend-trouble .below-list .second-para::before {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    aspect-ratio: 1;
    background: url(../../images/illust/illust-p-man-question.webp) no-repeat center / contain;
    right: -150px;
    top: -20px;
}

.sec-lend-trouble .below-list .layout {
    display: flex;
    align-items: flex-end;
    gap: 0 25px;
}

.sec-lend-trouble .below-list .layout .left {
    flex-shrink: 0;
    width: 250px;
    aspect-ratio: 1;
    padding: 0 0 50px 0;
}

.sec-lend-trouble .below-list .layout .right .ask {
    width: 518px;
    margin: 0 0 50px 0;
}

.sec-lend-trouble .below-list .layout .right .third-para {
    margin: 0 0 30px 0;
}

.sec-lend-trouble .below-list .layout .right .third-para span {
    font-weight: 700;
}

.sec-lend-trouble .below-list .layout .right .fourth-para {
    margin: 0 0 50px 0;
}

.sec-lend-trouble .below-list .layout .right .lined-btn-area {
    justify-content: flex-start;
}

@media (max-width: 1023px) and (min-width: 769px) {
    .sec-lend-trouble .below-title {
        margin: 0 0 90px 0;
    }
    .sec-lend-trouble ul {
        justify-content: center;
        flex-wrap: wrap;
        width: 350px;
        gap: 100px 0;
        margin: 0 auto 125px auto;
    }
    .sec-lend-trouble ul li .worry {
        text-align: center;
    }
    .sec-lend-trouble .below-list .second-para {
        margin: 0 0 20px 0;
    }
    .sec-lend-trouble .below-list .layout {
        align-items: flex-start;
        flex-direction: column;
    }
    .sec-lend-trouble .below-list .layout .left {
        width: 200px;
        transform: scaleX(-1);
        padding: 0;
    }
}

@media screen and (max-width:768px) {
    .sec-lend-trouble .below-title {
        margin: 0 0 65px 0;
    }
    .sec-lend-trouble ul {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 90px 0;
        margin: 0 auto 50px auto;
    }
    .sec-lend-trouble ul li figure {
        margin: 0 auto 26px auto;
    }
    .sec-lend-trouble ul li .worry.element-for-sp {
        display: flex !important;
        align-items: flex-start;
        gap: 0 10px;
        width: 80%;
        margin: 0 auto;
    }
    .sec-lend-trouble ul li .worry svg {
        flex-shrink: 0;
    }
    .sec-lend-trouble ul li .worry span {
        padding: 0;
    }
    .sec-lend-trouble .below-list .second-para {
        width: 65%;
        margin: 0 0 50px 0;
    }
    .sec-lend-trouble .below-list .layout {
        flex-direction: column;
    }
    .sec-lend-trouble .below-list .layout .right {
        display: contents;
    }
    .sec-lend-trouble .below-list .layout .left {
        order: 2;
        width: 50%;
        padding: 0;
    }
    .sec-lend-trouble .below-list .layout .right .ask {
        order: 1;
        width: 100%;
        margin: 0;
    }
    .sec-lend-trouble .below-list .layout .third-para {
        order: 3;
    }
    .sec-lend-trouble .below-list .layout .fourth-para {
        order: 4;
    }
    .sec-lend-trouble .below-list .layout .lined-btn-area {
        order: 5;
        width: 100%;
    }
}


/* ===============================================================
  secChosenReason
=============================================================== */
.sec-chosen-reason {
    margin: var(--sec-mar-base);
}

.sec-chosen-reason .inner {
    position: relative;
}

.sec-chosen-reason .inner::after {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    background: url(../../images/illust/illust-p-men-handshake.webp) no-repeat center / contain;
    top: 95px;
    right: 0;
}

.sec-chosen-reason .chosen-reasons-list {
    margin: 0 0 90px 0;
}

.sec-chosen-reason .chosen-reasons-list li {
    width: 90%;
    border-radius: var(--base-radius);
    background: var(--mstyle-light-green-color);
    padding: 45px 50px 45px 330px;
    margin: 0 auto;
    position: relative;
}

.sec-chosen-reason .chosen-reasons-list li + li {
    margin: 90px auto 0 auto;
}

.sec-chosen-reason .chosen-reasons-list li figure {
    position: absolute;
    width: 310px;
    aspect-ratio: 3 / 2;
    top: -17px;
    left: -19px;
}

.sec-chosen-reason .chosen-reasons-list li figure img {
    border-radius: var(--base-radius);
}

.sec-chosen-reason .chosen-reasons-list li figure .numbering {
    top: -24px;
    left: -23px;
    transform: none;
}

.sec-chosen-reason .chosen-reasons-list li h3 {
    --svg-width: 32px;
    --svg-va: -7px;
    font-size: var(--fz-24);
    font-weight: 700;
    margin: 0 0 5px 0;
}

.sec-chosen-reason .chosen-reasons-list li p {
    padding: 0 0 0 38px;
}

.sec-chosen-reason .chosen-reasons-list li .read-more-btn {
    display: none;
}

.sec-chosen-reason .below-list-para1 {
    text-align: center;
    margin: 0 0 30px 0;
}

.sec-chosen-reason .below-list-para2 {
    text-align: center;
    margin: 0 0 115px 0;
}

@media (max-width: 1023px) and (min-width: 769px) {
    .sec-chosen-reason .inner::after {
        top: -24px;
    }
    .sec-chosen-reason .chosen-reasons-list li {
        width: 94%;
        padding: 45px 50px 45px 330px;
        margin: 0 0 0 auto;
    }
    .sec-chosen-reason .chosen-reasons-list li + li {
        margin: 90px 0 0 auto;
    }
    .sec-chosen-reason .chosen-reasons-list li h3 {
        font-size: var(--fz-20);
        margin: 0 0 8px 0;
    }
    .sec-chosen-reason .chosen-reasons-list li figure {
        width: 280px;
        height: 280px;
        aspect-ratio: auto;
    }
    .sec-chosen-reason .chosen-reasons-list li figure img {
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width:768px) {
    .sec-chosen-reason .inner::after {
        width: 35%;
    }
    .sec-chosen-reason .below-title {
        width: 60%;
        margin: 0 0 60px 0;
    }
    .sec-chosen-reason .chosen-reasons-list {
        margin: 0 0 50px 0;
    }
    .sec-chosen-reason .chosen-reasons-list li {
        padding: 25px 0 35px 0;
    }
    .sec-chosen-reason .chosen-reasons-list li + li {
        margin: 75px auto 0 auto;
    }
    .sec-chosen-reason .chosen-reasons-list li figure {
        position: static;
        width: 87%;
        margin: 0 auto 35px auto;
    }
    .sec-chosen-reason .chosen-reasons-list li figure .numbering {
        top: -38px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .sec-chosen-reason .chosen-reasons-list li h3 {
        width: 73%;
        font-size: var(--fz-20);
        line-height: 150%;
        margin: 0 auto 12px auto;
    }
    .sec-chosen-reason .chosen-reasons-list li h3 svg {
        display: none;
    }
    .sec-chosen-reason .chosen-reasons-list li p {
        width: 73%;
        padding: 0;
        margin: 0 auto;
    }


    .fold-text-wrapper {
        position: relative;
        overflow: hidden;
        max-height: 3em;
        transition: var(--transition-main);
    }
    .fold-text-wrapper::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1.5em;
        background: linear-gradient(to bottom, transparent, var(--mstyle-light-green-color));
        pointer-events: none;
        transition: var(--transition-main);
    }
    .p-wrapper.expanded .fold-text-wrapper {
        max-height: 1000px;
    }
    .p-wrapper.expanded .fold-text-wrapper::after {
        opacity: 0;
    }
    /* .sec-chosen-reason .chosen-reasons-list li .fold-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: max-height 0.3s ease;
    } */
    .sec-chosen-reason .chosen-reasons-list li .fold-text {
        overflow: hidden;
        max-height: 3em; /* 約2行ぶん（必要に応じて調整） */
        transition: var(--transition-main);
        position: relative;
    }
    .sec-chosen-reason .chosen-reasons-list li .read-more-btn {
        --svg-color: var(--white-color);
        --svg-width: 20px;
        display: grid;
        place-items: center;
        width: 33px;
        aspect-ratio: 1;
        background: var(--mstyle-sub-color);
        border-radius: 50%;
        margin: 5px auto 0 auto;
        cursor: pointer;
    }
    /* .sec-chosen-reason .chosen-reasons-list li .p-wrapper.expanded .fold-text {
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    } */
    .sec-chosen-reason .chosen-reasons-list li .p-wrapper.expanded .fold-text {
        max-height: 3000px;
    }



    .sec-chosen-reason .below-list-para1 {
        text-align: start;
    }
    .sec-chosen-reason .below-list-para2 {
        text-align: start;
        margin: 0 0 73px 0;
    }
    .sec-chosen-reason .lined-btn-area {
        gap: 50px 0;
    }
}


/* ===============================================================
  sellRequestFlow
=============================================================== */
.sec-request-flow {
    background: var(--mstyle-light-grey-color);
    padding: var(--sec-pad-image);
    margin: var(--sec-mar-image);
    position: relative;
    z-index: -50;
}

.sec-request-flow .below-title {
    margin: 0 0 75px 0;
}

.sec-request-flow .flow {
    display: flex;
    gap: 0 85px;
    margin: 0 0 100px 55px;
}

.sec-request-flow .flow li {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px 0;
    width: 144px;
    position: relative;
    z-index: -10;
}

.sec-request-flow .flow li::before {
    position: absolute;
    content: "";
    display: block;
    width: 247px;
    height: 198px;
    background: url(../../images/illust/illust-bg-arrow.webp) no-repeat center / contain;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -5;
}

.sec-request-flow .flow .step {
    color: var(--white-color);
    font-weight: 700;
    background: var(--mstyle-main-color);
    border-radius: 39px;
    padding: 0 24px;
}

.sec-request-flow .flow figure {
    width: 92px;
    aspect-ratio: 1;
    margin: 0 auto 3px auto;
}

.sec-request-flow .flow .text {
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

.sec-request-flow .layout {
    display: flex;
    align-items: flex-end;
    gap: 0 120px;
}

.sec-request-flow .layout .left figure {
    width: 410px;
    margin: 0 0 35px 0;
}



@media (max-width: 1023px) and (min-width: 769px) {
    .sec-request-flow .flow {
        align-items: center;
        flex-direction: column;
        gap: 68px 0;
    }
    .sec-request-flow .flow li {
        height: 230px;
        gap: 30px 0;
    }
    .sec-request-flow .flow li::before {
        width: 300px;
        height: auto;
        aspect-ratio: 247 / 198;
        top: 0;
        left: -54%;
        transform: none;
        rotate: 90deg;
    }
    .sec-request-flow .layout {
        align-items: center;
        gap: 50px 0;
        flex-direction: column;
        text-align: center;
    }
    .sec-request-flow .layout .left figure {
        margin: 0 auto 35px auto;
    }
}

@media screen and (max-width:768px) {
    .sec-request-flow .flow {
        align-items: center;
        flex-direction: column;
        gap: 65px 0;
        margin: 0 0 78px 0;
    }
    .sec-request-flow .flow li {
        height: 230px;
        gap: 30px 0;
    }
    .sec-request-flow .flow li::before {
        width: 300px;
        height: auto;
        aspect-ratio: 247 / 198;
        top: 0;
        left: -53%;
        transform: none;
        rotate: 90deg;
    }
    .sec-request-flow .layout {
        align-items: center;
        gap: 50px 0;
        flex-direction: column;
        text-align: center;
    }
    .sec-request-flow .layout .left figure {
        width: 100%;
        margin: 0 auto 35px auto;
    }
    .sec-request-flow .layout .left p {
        text-align: start;
    }
}


/* ===============================================================
  secOwnerInterview
=============================================================== */
.sec-owner-interview {
    margin: var(--sec-mar-base);
}


.sec-owner-interview .voice-list li {
  position: relative;
}

.sec-owner-interview .voice-list li:not(:last-child) {
    margin: 0 0 100px 0;
}

.sec-owner-interview .voice-list li::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mstyle-light-grey-color);
  border-radius: var(--base-radius);
  top: 7px;
  left: 7px;
}

.sec-owner-interview .voice-list li .wrapper {
  display: flex;
  justify-content: center;
  gap: 0 64px;
  border: 2px solid var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 45px 67px;
  position: relative;
}

.sec-owner-interview .voice-list li:nth-child(2n) .wrapper {
  flex-direction: row-reverse;
}

.sec-owner-interview .voice-list li .wrapper::before {
  position: absolute;
  content: "";
  display: block;
  width: 38px;
  height: 16px;
  background: var(--mstyle-light-grey-color);
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec-owner-interview .voice-list li .wrapper::after {
  position: absolute;
  content: "";
  display: block;
  width: 36.72px;
  height: 2px;
  background: var(--mstyle-main-color);
  rotate: 119.36deg;
  bottom: -3px;
  left: 48%;
}

.sec-owner-interview .voice-list li:nth-child(2n) .wrapper::after {
  rotate: -119.36deg;
}

.sec-owner-interview .voice-list .left {
    flex-shrink: 0;
    width: 250px;
    text-align: center;
}

.sec-owner-interview .voice-list .left figure {
  width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 28px auto;
  overflow: hidden;
}

.sec-owner-interview .voice-list .left .ownership-period {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--fz-12);
  line-height: normal;
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 9px 32px;
  margin: 0 0 10px 0;
  position: relative;
}

.sec-owner-interview .voice-list .left .ownership-period::after {
    position: absolute;
    content: "*";
    display: block;
    color: var(--mstyle-red-color);
    font-size: var(--fz-16);
    right: -10px;
    top: -6px;
}

.sec-owner-interview .voice-list .left .info-tip {
  font-size: var(--fz-14);
  line-height: normal;
}

.sec-owner-interview .voice-list .right h3 {
  font-size: var(--fz-24);
  font-weight: 700;
  margin: 0 0 20px 0;
}

.sec-owner-interview .voice-list .right p {
  line-height: 200%;
  margin: 0 0 20px 0;
}

.sec-owner-interview .voice-list .right .date-tip {
    text-align: right;
}

.sec-owner-interview .voice-list .right .date-tip .container {
    display: inline-block;
    font-size: var(--fz-12);
    line-height: normal;
    text-align: right;
    position: relative;
}

.sec-owner-interview .voice-list .right .date-tip .container::before {
    position: absolute;
    content: "*";
    display: block;
    color: var(--mstyle-red-color);
    font-size: var(--fz-16);
    top: -4px;
    left: -10px;
}


@media (max-width: 1023px) and (min-width: 769px) {
    .sec-owner-interview .voice-list li .wrapper {
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .sec-owner-interview .voice-list li:not(:last-child) {
        margin: 0 0 80px 0;
    }
  .sec-owner-interview .voice-list li .wrapper {
    flex-direction: column;
    gap: 25px 0;
    padding: 35px 38px;
  }
  .sec-owner-interview .voice-list .left {
    width: 100%;
    margin: 0 auto;
  }
  .sec-owner-interview .voice-list .left figure {
    margin: 0 auto 35px auto;
  }
  .sec-owner-interview .voice-list .right h3 {
    font-size: var(--fz-20);
    margin: 0 0 8px 0;
  }
  .sec-owner-interview .voice-list li .wrapper::after {
    left: 45%;
  }
  .sec-owner-interview .voice-list li:nth-child(2n) .wrapper {
    flex-direction: column;
  }
  .sec-owner-interview .voice-list li:last-child {
    margin: 0 0 100px 0;
  }
}


/* ===============================================================
  sec-separator
=============================================================== */
.sec-separator {
    height: 338px;
    margin: var(--sec-mar-image);
    opacity: .4;
}

.sec-separator figure {
    height: inherit;
}

@media (max-width: 1023px) and (min-width: 769px) {
    .sec-separator {
        height: 300px;
    }
}

@media screen and (max-width:768px) {
    .sec-separator {
        height: 160px;
    }
}


/* ===============================================================
  sec-faq
=============================================================== */
.sec-faq {
    margin: var(--sec-mar-base);
}

.sec-faq .h2-title .lower {
    position: relative;
}

.sec-faq .h2-title .lower::after {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    aspect-ratio: 1;
    background: url(../../images/illust/illust-p-man-question.webp) no-repeat center / contain;
    bottom: -24px;
    right: -188px;
}

.sec-faq .btn-area {
    position: relative;
}

.sec-faq .btn-area::before {
    position: absolute;
    content: "";
    display: block;
    width: 150px;
    aspect-ratio: 1;
    background: url(../../images/illust/illust-p-woman-inspiration.webp) no-repeat center / contain;
    bottom: -39px;
    left: calc(50% - 350px);
}
@media (max-width: 1023px) and (min-width: 769px) {
}

@media screen and (max-width:768px) {
    .sec-faq .btn-area::before {
        content: none;
    }
    .sec-faq .h2-title .lower::after {
        width: 120px;
        right: -164px;
    }
}


/* ===============================================================
  faq-accordion style  ■ BEGIN ■
=============================================================== */
.sec-faq .faq-list {
  margin: 0 0 90px 0;
}

.sec-faq .faq-list .faq-item {
  width: 850px;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-n1);
  padding: 0;
  margin: 0 auto 25px auto;
  position: relative;
}

.sec-faq .faq-list .faq-item::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 55px;
  background: var(--mstyle-light-green-color);
  clip-path: polygon(50% 0%,
      0% 100%,
      100% 100%);
  border-radius: 1px 1px 0 0;
  top: 33px;
  left: -33px;
  rotate: -115deg;
}

.sec-faq .faq-question {
  --svg-width: 24px;
  --svg-color: var(--mstyle-text-color);
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 700;
  line-height: normal;
  background: none;
  cursor: pointer;
  position: relative;
  padding: 20px 65px 20px 35px;
  margin: 0;
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sec-faq .faq-question[aria-expanded="true"] {
  margin: 0 0 25px 0;
  position: relative;
}

.sec-faq .faq-question span {
  flex-shrink: 0;
  width: 96px;
  color: var(--mstyle-purple-color);
  font-size: var(--fz-32);
  font-family: var(--font-family-lato);
  padding: 0 70px 0 0;
  position: relative;
}

.sec-faq .faq-question span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--mstyle-purple-color);
  bottom: 50%;
  right: 34px;
  transform: translate(0, 50%);
}

.sec-faq .faq-question svg {
  position: absolute;
  right: 25px;
  bottom: 35%;
  transform: rotate(90deg);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sec-faq .faq-question[aria-expanded="true"] svg {
  transform: rotate(-90deg)
}

.sec-faq .faq-item .faq-answer {
  display: flex;
  max-height: 0;
  opacity: 0;
  padding: 0 65px 0 35px;
  position: relative;
  transition: 
    max-height .4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity .4s cubic-bezier(0.23, 1, 0.32, 1),
    padding 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.sec-faq .faq-item .faq-answer::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 55px;
  background: var(--mstyle-light-green-color);
  clip-path: polygon(50% 0%,
      0% 100%,
      100% 100%);
  border-radius: 1px 1px 0 0;
  bottom: -3px;
  right: -34px;
  rotate: 115deg;
}

.sec-faq .faq-item .faq-answer::after {
  position: absolute;
  content: "";
  display: block;
  width: 96%;
  height: 2px;
  background: var(--white-color);
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sec-faq .faq-item .faq-answer.is-open {
  max-height: 600px;
  /* 十分大きな値にしておく */
  padding: 0 65px 20px 35px;
  opacity: 1;
}

.sec-faq .faq-item .faq-answer span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 96px;
  color: var(--mstyle-red-color);
  font-size: var(--fz-32);
  font-family: var(--font-family-lato);
  padding: 0 70px 0 0;
  position: relative;
}

.sec-faq .faq-item .faq-answer span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--mstyle-red-color);
  bottom: 50%;
  right: 34px;
  transform: translate(0, 50%);
}

.sec-faq .faq-item .faq-answer p {
  font-size: var(--fz-14);
  line-height: 165%;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .sec-faq .faq-list {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .sec-faq .faq-list .faq-item {
    width: 92%;
  }
}

@media screen and (max-width:768px) {
  .sec-faq .faq-list {
    margin: 0 0 50px 0;
  }
  .sec-faq .faq-list .faq-item {
    width: 95%;
    margin: 0 auto 25px auto;
  }
  .sec-faq .faq-list .faq-item::before {
    top: 33px;
    left: -26px;
  }
  .sec-faq .faq-question {
    gap: 0 32px;
    font-size: var(--fz-14);
    padding: 20px 42px 20px 18px;
    position: relative;
  }
  .sec-faq .faq-question::before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: calc(100% - 20px * 2);
    background: var(--mstyle-purple-color);
    bottom: 50%;
    left: 49px;
    transform: translate(0, 50%);
  }
  .sec-faq .faq-question span {
    width: auto;
    font-size: var(--fz-24);
    padding: 0;
  }
  .sec-faq .faq-question svg {
    right: 8px;
    bottom: 50%;
    translate: 0 50%;
  }
  .sec-faq .faq-question span::after {
    content: none;
  }
  .sec-faq .faq-item .faq-answer {
    gap: 32px;
    padding: 0 42px 0 18px;
  }
  .sec-faq .faq-item .faq-answer::before {
    right: -24px;
  }
  .sec-faq .faq-item .faq-answer span {
    width: auto;
    font-size: var(--fz-24);
    padding: 0;
  }
  .sec-faq .faq-item .faq-answer span::after {
    right: -16.5px;
  }
  .sec-faq .faq-item .faq-answer.is-open {
    padding: 0 42px 20px 18px;
  }
}

/* ===============================================================
  faq-accordion style  ■ END ■
=============================================================== */


/* ===============================================================
  sec-contact（ベースはcommon.cssに記述済み）
=============================================================== */
.sec-contact .contact-module {
    margin: 100px 0 150px 0;
}

@media screen and (max-width:768px) {
    .sec-contact .contact-module {
        margin: 73px 0 100px 0;
    }
    .sec-contact .build-home-title .lower .element-for-sp {
        display: inline-block !important;
    }
}


/* ===============================================================
  secContact
=============================================================== */
.sec-contact {
    background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center top / 100%;
    padding: var(--sec-pad-image);
}

.sec-contact .h2-title .upper .sp {
    display: none;
}

.sec-contact .last-message {
    display: block;
    width: 60%;
    margin: 0 auto 65px auto;
}

.sec-contact .staff-pic {
    width: 362px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0 auto;
}

@media screen and (max-width:768px) {
    .sec-contact .h2-title .upper .pc {
        display: none;
    }
    .sec-contact .h2-title .upper .sp {
        display: inline;
    }
    .sec-contact .h2-title .lower h2.element-for-sp {
        display: inline-block !important;
    }
    .sec-contact .last-message {
        margin: 0 auto 20px auto;
    }
    .sec-contact .staff-pic {
        width: 80%;
    }
}


