@charset "UTF-8";

/**
 * Footer
 */
/*==================================
* Section
==================================*/
.footer__banner {
    width: 90%;
    margin: 30px auto 50px auto;
}

.footer__banner a {
    display: block;
    margin-bottom: 30px;
}

.footer__banner a img {
    max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
    .footer__banner {
        display: flex;
        width: 500px;
    }

    .footer__banner a:hover {
        opacity: 0.8;
    }
}

/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .u-hidden-sp {
        display: none !important;
    }
}

/*
　Padding
================================*/
.u-pt-0 {
    padding-top: 0 !important;
}

.u-pt-50 {
    padding-top: 50px !important;
}

/*
　Section
================================*/
.l-section {
    padding: 50px 0;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.l-section__container {
    padding: 0 8px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-section {
        padding: 80px 0;
    }

    .l-section__container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/*=================================

* マイページ物件リクエスト

=================================*/

/*
　吹き出し付き見出し
================================*/
.p-request__title-balloon {
    margin-bottom: 30px;
    text-align: center;
}

.p-request__title-balloon__inner {
    width: 85%;
    margin: 0 auto;
}

.p-request__title-balloon__inner p {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 25px;
    text-align: center;
    font-size: clamp(16px, 5vw, 28px);
    font-weight: bold;
    color: #fff;
    background: #156a60;
    border-radius: 10px;
}

.p-request__title-balloon__inner p::before {
    position: absolute;
    content: "";
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 20px solid #156a60;
}

.p-request__title-balloon h1 {
    font-size: clamp(26px, 26/320*100vw, 35px);
    font-weight: 900;
    color: #000;
}

.p-request__title-balloon h1 em {
    display: inline-block;
    margin-left: 10px;
    font-size: clamp(30px, 30/320*100vw, 43px);
    font-weight: 900;
    font-style: unset;
    color: #c30d24;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-request__title-balloon {
        margin-bottom: 40px;
    }

    .p-request__title-balloon__inner {
        width: 100%;
    }

    .p-request__title-balloon__inner p {
        font-size: 28px;
    }

    .p-request__title-balloon h1 {
        font-size: clamp(45px, 45/768*100vw, 50px);
        line-height: 1.1;
    }

    .p-request__title-balloon h1 em {
        font-size: clamp(55px, 55/768*100vw, 60px);
    }
}

/*
　概要
================================*/
.p-request__lead {
    width: 95%;
    margin: 0 auto;
}

.p-request__lead h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: clamp(20px, 20/320*100vw, 25px);
    font-weight: 900;
    color: #008000;
}

.p-request__lead p {
    font-weight: bold;
    line-height: 1.7;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__lead {
        width: 100%;
    }

    .p-request__lead h3 {
        margin-bottom: 30px;
        font-size: clamp(25px, 25/1140*100vw, 30px);
    }

    .p-request__lead p {
        font-size: 18px;
        text-align: center;
    }
}

/*
　ステップ
================================*/
.p-request__step {
    background-color: #f5f4ef;
}

.p-request__step__inner {
    width: 90%;
    margin: 0 auto 20px auto;
}

.p-request__step__title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}

.p-request__step ul li {
    display: flex;
    flex-direction: column;
}

.p-request__step ul li:not(:first-child) {
    margin-top: 30px;
}

.p-request__step__label {
    position: relative;
    padding: 7px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: #156a60;
    border-radius: 10px;
}

.p-request__step__label::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #156a60;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.p-request__step__card-body {
    flex: 1;
    height: auto;
    margin-top: 25px;
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
    background-color: #FFF;
    box-sizing: border-box;
}

.p-request__step__card_title {
    font-size: clamp(23px, 23/768*100vw, 30px);
    font-weight: 900;
    text-align: center;
    color: #156a60;
}

.p-request__step__card-body img {
    display: block;
    margin: 20px auto;
    width: 80px;
    height: 80px;
}

.p-request__step__card_text {
    font-size: 16px;
    line-height: 1.7;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__step__inner {
        width: 100%;
        max-width: 1200px;
    }

    .p-request__step__title {
        margin-bottom: 50px;
        font-size: clamp(25px, 25/1140*100vw, 35px);
    }
    
    .p-request__step ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .p-request__step ul li {
        width: 31.5%;
    }

    .p-request__step ul li:not(:first-child) {
        margin-top: 0;
    }

    .p-request__step__card-body {
        padding: 30px 25px 25px 25px;
    }

    .p-request__step__card_title {
        font-size: clamp(20px, 20/1140*100vw, 27px);
    }

    .p-request__step__card-body img {
        margin: 20px auto 30px auto;
    }
}

/*
　ご登録の流れ
================================*/
.p-request__flow-title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}

.p-request__flow {
    width: 95%;
    margin: 0 auto;
}

.p-request__flow__unit {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 25px auto 50px auto;
}

.p-request__flow__unit:not(:first-child)::before {
    content: "\f078";
    position: absolute;
    top: -60%;
    left: 50%;
    font-family: FontAwesome;
    font-size: 32px;
    font-weight: normal;
    color: #333;
}

.p-request__flow__unit__image {
    display: block;
    width: 100px;
}

.p-request__flow__unit__image img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.p-request__flow__unit__text {
    width: calc(100% - 115px);
}

.p-request__flow__unit__text h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 900;
    color: #156a60;
}

.p-request__flow__unit__text p {
    font-size: 16px;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-request__flow-title {
        margin-bottom: 50px;
        font-size: clamp(25px, 25/1140*100vw, 35px);
    }

    .p-request__flow {
        width: 100%;
    }

    .p-request__flow ul {
        display: flex;
        justify-content: space-between;
    }

    .p-request__flow__unit {
        display: block;
        width: 25%;
        margin: 0 auto;
    }

    .p-request__flow__unit__image {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .p-request__flow__unit__image img {
        width: clamp(135px, 135/1140*100vw, 180px);
        height: clamp(135px, 135/1140*100vw, 180px);
    }

    .p-request__flow__unit:not(:first-child)::before {
        content: "\f054";
        top: 23%;
        left: -17%;
    }

    .p-request__flow__unit__text {
        width: 100%;
        margin: 0 auto;
    }
    
    .p-request__flow__unit__text h3 {
        text-align: center;
        font-size: 22px;
    }
}

/*
　希望条件登録
================================*/
.p-request__induction {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 20px;
    box-sizing: content-box;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
    background-color: #156a60;
}

.p-request__induction__inner {
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 4% 0 2% 0;
}

.p-request__induction__inner h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .p-request__induction {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .p-request__induction__inner {
        max-width: 1140px;
        padding: 25px 0 15px 0;
    }

    .p-request__induction__inner h2 {
        font-size: clamp(35px, 5vw, 45px);
    }
}