/*----------------------------------------------------------------------------------

リセット

----------------------------------------------------------------------------------*/

* {
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    background-repeat: no-repeat;
    background-size: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    color: inherit;
    font-weight: inherit;
    border-radius: inherit;
}

a {
    cursor: pointer;
    transition: 0.3s ease;
}

img {
    width: 100%;
    vertical-align: top;
    border-radius: inherit;
}

main {
    margin-top: 120px;
}

@media screen and (max-width: 1023px) {
    main {
        margin-top: 100px;
    }
}

/*----------------------------------------------------------------------------------

テキスト

----------------------------------------------------------------------------------*/

.heading1 {
    font-size: clamp(1.5rem, 1.429rem + 0.36vw, 2rem);
    font-weight: bold;
    letter-spacing: 0.2em;
}

.heading1.category {
    background-color: #E8373D;
    padding: 20px;
    border-radius: 99px;
    text-align: center;
    color: #fff;
}

.heading2 {
    font-size: clamp(1.4rem, 1.343rem + 0.29vw, 1.8rem);
    font-weight: 700;
}

.heading2.border {
    text-decoration: underline #E84024 solid 2px;
    text-underline-offset: 0.8em;
    text-align: center;
}

.heading3 {
    font-size: clamp(1.2rem, 1.143rem + 0.29vw, 1.6rem);
    font-weight: 700;
}

.heading3.en {
    text-align: center;
}

.heading3.en span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-family: 'Fira Sans Condensed', 'Noto Sans JP', sans-serif;
    color: #E84024;
}

.text {
    font-size: clamp(0.9rem, 0.857rem + 0.21vw, 1.2rem);
    line-height: 1.8;
    text-align: justify;
}

/* .req {
    color: #E84024;
    font-weight: 500;
} */

/*----------------------------------------------------------------------------------

レイアウト

----------------------------------------------------------------------------------*/

.wide_795 {
    max-width: 795px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wide_1440 {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content {
    padding: 0 5.7%;
}

.hidden-area {
    overflow: hidden;
}

.mb {
    margin-bottom: 100px;
}

@media screen and (min-width: 1023px) {
    .content {
        padding: 0 6vw;
    }

    .mb {
        margin-bottom: 150px;
    }
}

/*----------------------------------------------------------------------------------

fade

----------------------------------------------------------------------------------*/

/* 通常 */
.fade {
    opacity: 0;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.show {
    animation: fade 1s ease 0.2s forwards;
}

/* アップ */
.fadeup {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.in {
    animation: fadeUp 1s ease 0.2s forwards;
}

/*----------------------------------------------------------------------------------

ブレイクポイント

----------------------------------------------------------------------------------*/

@media screen and (min-width: 1024px) {
    .br-pc {
        display: block;
    }
}

@media screen and (max-width: 1023px) {
    .br-pc {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }
}

/*----------------------------------------------------------------------------------

ボタン

----------------------------------------------------------------------------------*/

/* 無料簡易査定ボタン */
.assessment-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 1.143rem + 0.29vw, 1.6rem);
    font-weight: 600;
    height: 80px;
    transition: 0.3s;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.more {
    background: #AF0012 url(../images/common/more-arrow.svg) no-repeat right 30px center;
    background-size: 30px auto;
}

@media screen and (min-width: 1024px) {
    .assessment-more-btn {
        width: 700px;
    }

    .more {
        background-position: right 50px center;
    }
}

/* 通常ボタン */

.more-btn {
    display: block;
    position: relative;
    padding: 10px;
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    overflow: visible;
    width: 200px;
    text-align: center;
    margin: 0 auto;
	background-color: #AF0012;
}

/* ホバー共通 */
.assessment-more-btn::after,
.more-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.assessment-more-btn:hover::after,
.more-btn:hover::after {
    left: 100%;
    z-index: 1;
}

/*----------------------------------------------------------------------------------

ページトップ

----------------------------------------------------------------------------------*/

.top-container {
    position: relative;
    margin-bottom: 100px;
}

.top-container .ttl {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: #AF0012;
    padding: 20px 40px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 99px;
}

@media screen and (min-width: 1024px) {
    .top-container .ttl {
        max-width: 500px;
    }
}

/*----------------------------------------------------------------------------------

サービス内容 (ページ共通)

----------------------------------------------------------------------------------*/

.prompt {
    position: relative;
    padding: 100px 0 clamp(220px, 10vw + 50px, 250px);
}

.prompt .container {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.prompt .prompt-list li {
    padding: 20px 0;
}

.prompt img {
    width: 40%;
    min-width: 280px;
    position: absolute;
    right: 20px;
    bottom: 0;
}

@media screen and (min-width: 1024px) {
    .prompt {
        padding-bottom: 100px;
    }

    .prompt img {
        bottom: -20px;
        width: 30%;
        overflow: hidden;
    }
}

/*----------------------------------------------------------------------------------

査定の流れ

----------------------------------------------------------------------------------*/

.flow-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
}

.flow-area a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.flow-area a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease;
}

.flow-area .business::before {
    background-image: url('../images/common/flow1.png');
}

.flow-area .store::before {
    background-image: url('../images/common/flow2.png');
}

.flow-area a:hover::before {
    transform: scale(1.1);
}

.flow-area a .heading2 {
    background-color: #fff;
    padding: 10px 20px;
    color: #B61727;
    border-radius: 50px;
    z-index: 2;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .flow-area {
        flex-direction: row;
    }

    .flow-area a {
        width: 48%;
    }
}