@charset "UTF-8";

/*==================================
* Section
==================================*/
.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #F5F5F5;
}

.l-section.l-section--blue {
    background: #eaf3f9;
}

.l-section.l-section--yellow {
    background: #fbf9ee;
}

.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;
    }
}

/*=================================

* トップ

=================================*/

/*
　AI簡易査定-02
================================*/
.c-banner-ai-satei-02 {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 8px;
    text-decoration: none !important;
    color: inherit;
}

.c-banner-ai-satei-02__inner {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #4f46e5 100%);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.5rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-banner-ai-satei-02:hover .c-banner-ai-satei-02__inner {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.c-banner-ai-satei-02__content {
    display: flex;
    flex-direction: column;
    gap: 2em 1em;
}

.c-banner-ai-satei-02__lead {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
    color: #ffffff;
}

.c-banner-ai-satei-02__title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.c-banner-ai-satei-02__title span {
    font-size: 1.15em;
    display: inline-block;
    vertical-align: text-bottom;
}

.c-banner-ai-satei-02__description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 10px;
}

.c-banner-ai-satei-02__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.c-banner-ai-satei-02__tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0d9488;
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
}

.c-banner-ai-satei-02__image {
    min-height: 190px;
    max-width: 200px;
    order: 2;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: end;
}

.c-banner-ai-satei-02__image img {
    width: 100%;
    filter: drop-shadow(3px 3px 4px #CCC);
    margin-bottom: -100%;
}

.c-banner-ai-satei-02__action {
    margin-top: 1rem;
}

.c-banner-ai-satei-02__button {
    display: inline-flex;
    align-items: center;
    padding: 0;
    padding-bottom: 0.15rem;
    background: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    position: relative;
}

.c-banner-ai-satei-02__button::before {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1.5px;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.c-banner-ai-satei-02:hover .c-banner-ai-satei-02__button::before {
    transform: scaleX(0);
    transform-origin: right;
}

.c-banner-ai-satei-02__button::after {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-left: 0.3rem;
    font-weight: normal;
}

.c-banner-ai-satei-02__note {
    margin-top: 0.4rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

/* PC */
@media screen and (min-width: 768px) {
    .c-banner-ai-satei-02 {
        max-width: 800px;
    }

    .c-banner-ai-satei-02__inner {
        padding: 1.75rem 1.75rem 0;
    }

    .c-banner-ai-satei-02__content {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 2rem;
    }

    .c-banner-ai-satei-02__text {
        flex: 1;
        padding-bottom: 1.75rem;
    }

    .c-banner-ai-satei-02__lead {
        font-size: 23px;
    }

    .c-banner-ai-satei-02__title {
        font-size: clamp(40px, 50/1140*100vw, 50px);
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .c-banner-ai-satei-02__title span {
        font-size: 1.2em;
        display: inline-block;
        line-height: 0.9;
        vertical-align: bottom;
    }

    .c-banner-ai-satei-02__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .c-banner-ai-satei-02__button {
        font-size: 16px;
    }

    .c-banner-ai-satei-02__image {
        min-height: 250px;
        max-width: 300px;
        display: flex;
        flex-shrink: 0;
        align-items: flex-end;
        width: 220px;
        overflow: hidden;
        align-self: stretch;
    }

    .c-banner-ai-satei-02__image img {
        width: 200px;
        margin-bottom: -65%;
    }
}

/*=================================

* AI査定

=================================*/

/*
　ヒーローセクション
================================*/
.p-ai-satei__hero {
    background: #fff;
}

.p-ai-satei__hero-inner {
    max-width: 1140px;
    padding: 3.5rem 8px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.p-ai-satei__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.p-ai-satei__hero-text {
    width: 100%;
}

.p-ai-satei__hero-title {
    font-size: clamp(36px, 70 / 768 * 100vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.p-ai-satei__hero-title-accent {
    font-size: clamp(22px, 40 / 768 * 100vw, 40px);
    font-weight: 800;
    color: #0d9488;
}

.p-ai-satei__hero-description {
    color: #333;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.p-ai-satei__hero-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 2rem 0;
    justify-content: center;
}

.p-ai-satei__hero-label {
    padding: 10px;
    text-align: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #0d9488;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-ai-satei__hero-label span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.p-ai-satei__hero-cta {
    display: block;
    background-color: #4f46e5;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    padding: 25px 30px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(29, 45, 80, 0.2);
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.p-ai-satei__hero-cta:hover {
    background-color: #4338ca;
}

.p-ai-satei__cta-arrows {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    margin-left: 10px;
    vertical-align: middle;
    top: -20px;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow {
    position: absolute;
    width: 30px;
    height: 4px;
    opacity: 0;
    transform: scale(0.3);
    animation: arrow-move 3s ease-out infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:first-child {
    animation: arrow-move 3s ease-out 0s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:nth-child(2) {
    animation: arrow-move 3s ease-out 1s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:nth-child(3) {
    animation: arrow-move 3s ease-out 2s infinite;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:before,
.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 1px;
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:before {
    left: 1px;
    transform: skewY(30deg);
}

.p-ai-satei__cta-arrows .p-ai-satei__cta-arrow:after {
    right: 1px;
    transform: skewY(-30deg);
}

@keyframes arrow-move {
    25% {
        opacity: 0.6;
    }
    43% {
        transform: translateY(12px);
        opacity: 0.8;
    }
    62% {
        transform: translateY(24px);
        opacity: 1;
    }
    100% {
        transform: translateY(36px) scale(0.5);
        opacity: 0;
    }
}

.p-ai-satei__hero-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

.p-ai-satei__hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    filter: drop-shadow(2px 2px 4px #999);
    max-width: 230px;
    margin-bottom: -120px;
}

.p-ai-satei__hero--02 {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #4f46e5 100%);
}

.p-ai-satei__hero--02 .p-ai-satei__hero-title,
.p-ai-satei__hero--02 .p-ai-satei__hero-title-accent,
.p-ai-satei__hero--02 .p-ai-satei__hero-description{
    color: #fff;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-label {
    background-color: #F2DEA0;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-label span {
    color: #0d9488;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-cta {
    background-color: #0F50A6;
}

.p-ai-satei__hero--02  .p-ai-satei__hero-cta:hover {
    background-color: #0a3874;
}

.p-ai-satei__hero--02 .p-ai-satei__hero-image,
.p-ai-satei__hero--03 .p-ai-satei__hero-image {
    filter: drop-shadow(2px 2px 4px #CCC);
}

.p-ai-satei__hero--03 {
    background-image: url(../img/ai-satei__hero--bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-title,
.p-ai-satei__hero--03 .p-ai-satei__hero-title-accent,
.p-ai-satei__hero--03 .p-ai-satei__hero-description{
    color: #fff;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-title-accent {
    color: #F2E30F;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-label {
    background-color: #FFF;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-label span {
    color: #0d54a6;
}

.p-ai-satei__hero--03 .p-ai-satei__hero-cta {
    background-color: #8C0E03;
}

.p-ai-satei__hero--03  .p-ai-satei__hero-cta:hover {
    background-color: #700b02;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__hero-inner {
        padding: 5rem 8px;
    }

    .p-ai-satei__hero-content {
        flex-direction: row;
        gap: 30px;
    }

    .p-ai-satei__hero-text {
        width: 63%;
        text-align: left;
    }

    .p-ai-satei__hero-description {
        font-size: 18px;
    }

    .p-ai-satei__hero-cta {
        margin: 0;
        font-size: 20px;
    }

    .p-ai-satei__hero-labels {
        justify-content: flex-start;
    }

    .p-ai-satei__hero-label {
        width: 140px;
        height: 140px;
    }

    .p-ai-satei__hero-label span {
        font-size: 20px;
    }

    .p-ai-satei__hero-title {
        font-size: clamp(40px, 65 / 1140 * 100vw, 60px);
        letter-spacing: 0.01px;
        line-height: 1.1;
    }
    
    .p-ai-satei__hero-title-accent {
        font-size: clamp(24px, 40 / 1140 * 100vw, 40px);
        letter-spacing: 0.01px;
        line-height: 1.1;
    }
    
    .p-ai-satei__hero-image {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0;
    }

}

/*
　セクションタイトル
================================*/
.p-ai-satei__title {
    margin: 0 auto 30px auto;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    background-color:  transparent !important;
}

@media screen and (min-width: 768px) {
    .p-ai-satei__title {
        width: 100%;
        font-size: 2.3rem;
    }
}
    
/*
　特徴セクション
================================*/
.p-ai-satei__features {
    background-color: #ffffff;
}

.p-ai-satei__features-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 8px;
}

.p-ai-satei__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.p-ai-satei__features-card {
    background-color: #fbfcfd;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #eef0f2;
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1rem;
    align-items: start;
}

.p-ai-satei__features-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    align-self: center;
}

.p-ai-satei__features-card-icon img {
    width: 40px;
    aspect-ratio: 1 / 1;
    height: 40px;
    object-fit: contain;
}

.p-ai-satei__features-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
    line-height: 1.3;
    align-self: center;
}

.p-ai-satei__features-card-description {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    grid-column: 1 / -1;
    margin-top: 0.75rem;
}

@media screen and (min-width: 500px) {

    .p-ai-satei__features-card {
        display: block;
        padding: 30px 15px 20px;
    }

    .p-ai-satei__features-card-icon {
        width: 4rem;
        height: 4rem;
        margin: 0 auto 1rem;
    }

    .p-ai-satei__features-card-icon img {
        width: 60px;
        height: 60px;
    }

    .p-ai-satei__features-card-title {
        font-size: 17px;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__features-grid {
        gap: 1.5rem;
    }

    .p-ai-satei__features-card-description {
        font-size: 16px;
        margin-top: 0;
        line-height: 1.6;
    }

    .p-ai-satei__features-card-title {
        font-size: clamp(16px, 19 / 1140 * 100vw, 19px);
        margin-bottom: 15px;
        text-align: center;
    }
}

/*
　ステップセクション
================================*/
.p-ai-satei__steps {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 8px;
}

.p-ai-satei__steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap:  2em 0;
    position: relative;
    margin: 0 auto;
    max-width: 550px;
}

.p-ai-satei__steps-line {
    display: none;
}

.p-ai-satei__step {
    position: relative;
}

.p-ai-satei__step-circle {
    width: 6rem;
    height: 6rem;
    background-color: #0d9488;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
}

.p-ai-satei__step-circle-inner {
    text-align: center;
    line-height: 1.1;
}

.p-ai-satei__step-label {
    font-size: 14px;
    font-weight: 600;
}

.p-ai-satei__step-number {
    font-size: 24px;
    font-weight: 700;
}

.p-ai-satei__step-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.p-ai-satei__step-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: flex;
    justify-content: center;
}


/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__steps-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap:  2em 0;
        position: relative;
        margin: 0 auto;
        max-width: none;
    }

    .p-ai-satei__steps-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 16%;
        right: 16%;
        height: 2px;
        background-color: #e5e7eb;
    }
}

/*
  フォームセクション
================================*/
.p-ai-satei__form {
    background: #f8fafc;
}

/*
　マイページセクション
================================*/
.p-ai-satei__mypage {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.p-ai-satei__mypage-text {
    width: 100%;
}

.p-ai-satei__mypage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.p-ai-satei__mypage-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #333;
}

.p-ai-satei__mypage-feature-title {
    font-weight: 700;
    font-size: 18px;
}

.p-ai-satei__mypage-feature-title::before {
    font-family: "FontAwesome";
    content: "\f058";
    margin-right: 0.4em;
    color: #0d9488;
}

.p-ai-satei__mypage-feature-description {
    font-size: 16px;
}

.p-ai-satei__mypage-note {
    margin-top: 20px;
    font-size: 15px;
    color: #333;
}

.p-ai-satei__mypage-demo {
    width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
    .p-ai-satei__mypage {
        flex-direction: row;
        padding: 40px 30px;
    }

    .p-ai-satei__mypage-title {
        font-size: clamp(20px, 24 / 1140 * 100vw, 24px);
        margin-bottom: 20px;
    }

    .p-ai-satei__mypage-text {
        width: 50%;
    }

    .p-ai-satei__mypage-demo {
        width: 50%;
    }
}

/*
　チャットデモ
================================*/
.p-ai-satei__chat {
    background-color: #f8fafc;
    padding: 10px;
    border-radius: 1em;
    border: 1px solid #e5e7eb;
}

.p-ai-satei__chat-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.p-ai-satei__chat-avatar {
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-ai-satei__chat-avatar img {
    width: 20px;
    height: 20px;
}

.p-ai-satei__chat-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.p-ai-satei__chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.p-ai-satei__chat-message {
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 15px;
    width: 80%;
}

.p-ai-satei__chat-message--user {
    background-color: #ccfbf1;
    color: #134e4a;
    border-top-left-radius: 0.25rem;
}

.p-ai-satei__chat-message--agent {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #f3f4f6;
    border-top-right-radius: 0.25rem;
    margin-left: auto;
}

.p-ai-satei__chat-message--input {
    background-color: #f1f5f9;
    color: #333;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
    cursor: default;
}