@charset "utf-8";
/* -------------------------------------------------
  全ページ共通読込ファイル
  スタイル
------------------------------------------------- */

.title-basic {
    border-bottom: 10px solid #008ccf;
    color: #008dcfa8;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin: auto;
    margin-bottom: 1.5rem;
    padding: 0 2rem 1.5rem;
    text-align: center;
    width: 60%;
}
.title-bgc {
    display: flex;
    gap: 16px;
    margin: 0 0 12px;
    color: #008bcf;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
}
.title-bgc::before {
    content: "";
    display: block;
    width: 8px;
    height: 48px;
    background-color: #008ccf;
}
.leadtext {
    color: #15456a;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
    .title-basic {
        font-size: 1.6rem;
        line-height: 1.4;
        padding-bottom: 0.5rem;
        width: 100%;
    }
    .title-bgc {
        align-items: flex-start;
        gap: 10px;
        font-size: 1.8rem;
    }
    .title-bgc::before {
        width: 4px;
        height: calc(1.8rem * 1.5);
    }
    .leadtext {
        font-size: 1.35rem;
    }
}

/* -------------------------------------------------
  フォーム系
------------------------------------------------- */
.select {
    background-color: #fff;
    position: relative;
    width: 100%;
}
.select::after {
    content: "";
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 0;
    bottom: 0;
    height: 6px;
    width: 14px;
    margin: auto 0;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    background-color: #008ccf;
}
.select select {
    padding: 0.9rem 1.5rem;
    outline: none;
    user-select: none;
    width: 100%;
}
.select select,
.select option {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.select select {
    color: #008ccf;
}
.select select:focus {
    background-color: #c8e8fd;
    border-color: #008ccf;
    color: #008ccf;
}
/* ボタン共通スタイル */
.btn-basic {
    border: 1px solid #fff;
    border-radius: 0.5rem;
    color: #fff;
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-basic::before {
    background-color: #fff;
    content: "無料";
    margin-right: 0.5rem;
    padding: 0 0.5rem;
}
.btn-basic::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
    .select select,
    .select option {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }
    .select::after {
        border-width: 5px;
        right: 1rem;
        top: 1.5rem;
    }
}

/* -------------------------------------------------
  header 2025/06 改修
------------------------------------------------- */
.l-header.m-fix .l-header__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 10;
}
.l-header__gray {
    background-color: #f3f5f7;
}
.l-header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.l-header__search {
    display: flex;
    gap: 6px;
    padding: 16px 48px;
    background-color: #df0b00;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    transition: 0.4s;
}
.l-header__search:hover {
    transform: translateY(2px);
}

.l-headerList {
    display: flex;
}
.l-headerList__link {
    position: relative;
    display: block;
    padding: 15px 30px;
    color: #000;
}
.l-headerList__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background-color: #d7e7ef;
}
.l-headerList__link.m-active::before {
    background-color: #008ccf;
}
.l-headerLogo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.l-headerLogo__image {
    width: 116px;
}
.l-headerLogo__text {
    color: #008ccf;
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .l-header__gray {
        display: none;
    }
    .l-header__wrap {
        padding: 20px 0;
    }
    .l-header__search {
        padding: 2px 12px;
    }
    .l-headerLogo__image {
        width: 62px;
    }
    .l-headerLogo__text {
        font-size: 18px;
    }
}
@media screen and (max-width: 375px) {
    .l-headerLogo__text {
        font-size: 15px;
    }
    .l-header__search {
        font-size: 15px;
    }
}

/* -------------------------------------------------
  breadcrumb 2025/06 改修
------------------------------------------------- */
.p-breadcrumb {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}
.p-breadcrumb__list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.p-breadcrumb__link {
    color: #fff;
}
.p-breadcrumb__item:nth-child(n + 2) {
    position: relative;
    padding-left: 28px;
}
.p-breadcrumb__item:nth-child(n + 2)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 6px;
    height: 6px;
    margin: auto 0;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .p-breadcrumb {
        flex-wrap: nowrap;
        overflow-x: scroll;
        white-space: nowrap;
    }
}

/* -------------------------------------------------
  main 2025/06 追記
------------------------------------------------- */
.l-main {
    position: relative;
}

/* -------------------------------------------------
メインビジュアル 2025/06 改修
------------------------------------------------- */
.p-mainVisual {
    background: linear-gradient(#008bcf, #0067ba);
}
.p-mainVisual__inner {
    max-width: 1200px;
}
.p-mainVisual__wrap {
    display: flex;
    align-items: flex-end;
    max-width: calc(100% - 65px);
}
.p-mainVisual__content {
    padding: 100px 0 0;
    color: #fff;
    width: 60%;
}
.p-mainVisual__read {
    font-size: 32px;
    font-weight: bold;
}
.p-mainVisual__labels {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin: 14px 0;
}
.p-mainVisual__label {
    display: inline-block;
    min-width: 300px;
    padding: 4px;
    background: #fff038;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
.p-mainVisual__title {
    margin: 0 0 60px;
    font-size: 64px;
    font-weight: bold;
    line-height: 1.08;
}
.p-mainVisual__image {
    position: relative;
    width: 40%;
    max-width: 488px;
}
.p-mainVisual__image p {
    position: absolute;
    bottom: 8px;
    right: -10px;
    width: auto;
    font-size: 16px;
    text-stroke: 3px #fff;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke;
}
.p-mainVisual__form {
    margin-bottom: -165px;
}

@media screen and (min-width: 973px) {
    .p-mainVisual__content {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 767px) {
    .p-mainVisual {
        padding: 0 0 15px;
    }
    .p-mainVisual__wrap {
        display: block;
        max-width: 100%;
    }
    .p-mainVisual__content {
        padding: 50px 0 0;
        margin: 0 0 30px;
        width: 100%;
        text-align: center;
    }
    .p-mainVisual__read {
        font-size: 1.2rem;
    }
    .p-mainVisual__labels {
        justify-content: center;
        margin: 14px 0;
    }
    .p-mainVisual__label {
        min-width: 1%;
        padding: 4px;
        font-size: 1.5rem;
    }
    .p-mainVisual__title {
        margin: 0;
        font-size: 2.8rem;
    }
    .p-mainVisual__image {
        width: 100%;
        max-width: 488px;
    }
    .p-mainVisual__image p {
        right: 0;
    }
    .p-mainVisual__form {
        margin-bottom: 0;
    }
}
/* -------------------------------------------------
Page: 各ページコンテンツ
------------------------------------------------- */

/* -------------------------------------------------
3つの強み
------------------------------------------------- */
.p-forte {
    padding-top: 90px;
    background-color: #fff;
}
.p-forte__list {
    display: flex;
    gap: 45px;
    margin: 55px 0 0;
}
.p-forte__item {
    flex: 1;
}
.p-forte__number {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 56px;
    height: 40px;
    margin: 20px auto 0;
    font-size: 20px;
    background-color: #fff038;
}
.p-forte__number::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 56px;
    height: 20px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    background-color: #fff038;
}
.p-forte__hr {
    width: 100%;
}
.p-forte__title {
    margin: 34px 0;
    font-size: 56px;
    font-weight: bold;
    text-align: center;
}
.p-forte__sub {
    margin-top: 12px;
    color: #008ccf;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
}
.p-forte__text {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .p-forte {
        padding-top: 60px;
    }
    .p-forte__list {
        display: block;
        margin: 30px 0 0;
    }
    .p-forte__item:nth-child(n + 2) {
        margin-top: 30px;
    }
    .p-forte__head {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 0 0 20px;
    }
    .p-forte__number {
        width: 56px;
        height: 40px;
        margin: 20px 0 0;
        font-size: 20px;
    }
    .p-forte__number::before {
        top: -20px;
        width: 56px;
        height: 20px;
    }
    .p-forte__title {
        margin: 0;
        font-size: 28px;
    }
    .p-forte__sub {
        margin-top: 12px;
        font-size: 20px;
    }
    .p-forte__text {
        margin-top: 1rem;
        font-size: 18px;
    }
}

/* -------------------------------------------------
  ケースに合わせて、適切な選択をご提案
------------------------------------------------- */
.case {
    background-color: #f0f9ff;
}
.case__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2.6%;
    position: relative;
    margin-top: 75px;
    z-index: 2;
}
.case__item {
    border: 3px solid #008ccf;
    display: flex;
    flex-direction: column;
    width: 31.6%;
}
.case__item-title {
    order: 1;
    background-color: #008ccf;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    padding: 1rem 0.5rem;
    position: relative;
    text-align: center;
    z-index: 2;
}
.case__item-title::after {
    background-image: url("./../img/common/case/case_arrow.png");
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
    height: 56px;
    width: 120px;
    z-index: 1;
}
.case__item-num {
    display: block;
    margin-bottom: 0.8rem;
}
.case__item-num img {
    width: 53px;
    aspect-ratio: 53/21; /* CLS対策 */
    margin: 0 auto;
}
.case__item-text {
    order: 2;
    background-color: #fff;
    color: #008ccf;
    font-size: 1.55rem;
    font-weight: 500;
    height: 100%;
    line-height: 1.2;
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
}
.case__item-text .orange {
    color: #ff7e00;
}
.case__item-text .gray {
    color: #666;
}
.case__item-text .middle {
    font-size: 2.43rem;
}
.case__item-text .large {
    font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
    .case__list {
        flex-direction: column;
        gap: 1rem;
        margin-top: 40px;
    }
    .case__item {
        width: 100%;
        margin: 0;
    }
    .case__item-num {
        margin-bottom: 0.5rem;
    }
    .case__item-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    .case__item-text {
        padding-top: 2rem;
    }
    .case__item-text .large {
        font-size: 2.4rem;
    }
}

/* -------------------------------------------------
W査定とは
------------------------------------------------- */
.double {
    background-color: #f0f9ff;
}
.double__item {
    background-color: #fff;
    box-shadow: 2px 2px 6px rgba(100, 100, 100, 0.3);
    padding: 2rem;
    width: 49%;
}
.double__suggest .double__item {
    box-shadow: unset;
}
.double__item-title {
    background-color: #008cce;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    padding: 1rem;
    text-align: center;
}
.rent .double__item-title {
    background-color: #ff7e00;
}
.double__item-text {
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}
.double__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 28px;
    margin-bottom: 3rem;
}
.double__suggest .double__list {
    margin-bottom: 0;
}
.double__suggest {
    background-color: #c8e8fd;
    margin-bottom: 3.5rem;
    padding: 1.5rem 2rem 2rem;
    position: relative;
}
.double__suggest::before,
.double__suggest::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.double__suggest::before {
    background-color: #c8e8fd;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    height: 35px;
    width: 70px;
    top: -35px;
}
.double__suggest::after {
    color: #008cce;
    content: "＋";
    font-size: 2.4rem;
    font-weight: 500;
    top: -30px;
}
.double__suggest-title {
    color: #008cce;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-align: center;
}
.double__suggest-title .em {
    color: #ff7e00;
}
.double__figure {
    border-bottom: 2px solid #008cce;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
}
.rent .double__figure {
    border-color: #ff7e00;
}
.double__figure img {
    display: block;
    margin: auto;
    width: 75%;
    aspect-ratio: 303/88; /* CLS対策 */
}
.double__balance {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.double__balance .title,
.double__balance .data {
    margin-bottom: 0.4rem;
}
.double__balance .title {
    background-color: #7a7a7a;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.2rem;
    text-align: center;
    width: 5rem;
}
.double__balance .title.income,
.double__balance .title.merit {
    background-color: #ff7e00;
}
.double__balance .data {
    width: calc(98% - 5rem);
}
.double__btn {
    text-align: center;
}
.double__btn a {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    display: inline-block;
    padding: 16px 88px;
    background-color: #ff7e00;
    border-radius: 5px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.double__btn a:hover {
    background-color: #f89430;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.double__btn span {
    position: relative;
}
.double__btn span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    width: 15px;
    height: 15px;
    margin: auto 0;
    border: solid #fff;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
}
.double__attention {
    margin: 1em 0 0;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .double__inner::before,
    .double__inner::after {
        display: none;
    }
    .double__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .double__text {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
    }
    .double__text .em {
        font-size: 1.3rem;
    }
    .double__item {
        padding: 1rem;
        width: 100%;
    }
    .double__item.rent {
        margin-bottom: 1.5rem;
    }
    .double__item:nth-child(1) {
        margin-bottom: 1rem;
    }
    .double__suggest {
        margin-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .double__balance .data {
        font-size: 1.1rem;
    }
    .double__attention {
        text-align: left;
    }
}

@media screen and (max-width: 475px) {
    .double__btn a {
        font-size: 25px;
    }
    .double__btn span::after {
        width: 13px;
        height: 13px;
    }
}

@media screen and (max-width: 414px) {
    .double__btn a {
        font-size: 20px;
    }
    .double__btn span::after {
        width: 11px;
        height: 11px;
        border-width: 2px 2px 0 0;
    }
}

@media screen and (max-width: 375px) {
    .double__btn a {
        font-size: 15px;
    }
}

/* -------------------------------------------------
  安心してご利用いただける理由
------------------------------------------------- */
.point__title {
    color: #15456a;
    font-size: 2.3rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
}
.point__title .bdr {
    border-bottom: 14px solid #c8e8fd;
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0 2rem 1.5rem;
}
.point__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.point__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
}
.point__item img {
    aspect-ratio: 383/148; /* CLS対策 */
}
.point__item:nth-child(-n + 2) {
    margin-bottom: 3rem;
}
.point__head {
    background-color: #008ccf;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.point__head-num {
    background-image: url("./../img/common/point/point_head_arrow.png");
    background-position: center right;
    background-size: contain;
    padding-left: 1.2rem;
    padding-top: 2.3rem;
    width: 18%;
}
.point__head-num img {
    width: 55px;
    aspect-ratio: 55/43; /* CLS対策 */
}
.point__head-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.point__head-title {
    padding: 1.2rem 1rem 1.6rem;
}
.point__item-maintitle {
    font-size: 1.7rem;
    font-weight: 500;
}
.point__item-maintitle .em {
    color: #fff038;
    font-size: 2.3rem;
}
.point__item-subtitle {
    color: #008cce;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.point__item-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.point__activity {
    background-color: #c8e8fd;
    padding: 1rem;
}
.point__activity-title {
    background-color: #fff;
    border-radius: 20px;
    color: #008cce;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    padding: 0.6rem 2rem;
}
.point__activity-list {
    color: #15456a;
    font-weight: 500;
}
.point__activity-list li {
    padding-top: 0.3rem;
}
.point__activity-list li:not(:last-child) {
    border-bottom: 1px solid #a5cae3;
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
}
.point__activity-list li:not(:last-child)::before {
    content: "・";
    display: block;
}
.point__activity-list li:last-child {
    padding: 0;
    text-align: right;
}
.point__attention {
    list-style: none;
}
.point__attention li {
    counter-increment: number;
}
.point__attention li::before {
    content: "※" counter(number);
    margin-right: 0.8rem;
}
.point__pdflink {
    color: #008cce;
    display: block;
    margin-bottom: 1rem;
    transition: 0.3s;
}
.point__pdflink:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.point__pdflink::before {
    background-image: url("./../img/common/icon_pdf.png");
    background-size: contain;
    content: "";
    display: inline-block;
    margin-left: 2.4rem;
    margin-right: 0.5rem;
    height: 15px;
    width: 15px;
}
@media screen and (max-width: 767px) {
    .point {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
    .point__item {
        width: 100%;
    }
    .point__item:not(:last-child) {
        margin-bottom: 3rem;
    }
    .point__title {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    .point__title .bdr {
        border-width: 8px;
        padding: 0 0.3rem 1rem;
    }
    .point__head {
        flex-wrap: nowrap;
        margin-bottom: 1.5rem;
    }
    .point__item-subtitle {
        font-weight: normal;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .point__head-num {
        align-items: center;
        display: flex;
        font-size: 0.7rem;
        line-height: 1.2;
        padding: 0;
        padding-left: 0.5rem;
        width: 35%;
    }
    .point__head-num img {
        margin-left: 0.5rem;
        width: 30px;
        aspect-ratio: 30/23; /* CLS対策 */
    }
    .point__item-maintitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    .point__item-maintitle .em {
        font-size: 2rem;
    }
    .point__activity-title {
        text-align: center;
        font-size: 1.3rem;
    }
    .point__activity-list li {
        font-size: 1.1rem;
    }
}

/* -------------------------------------------------
  全国の査定依頼・相場情報
------------------------------------------------- */
.whole a {
    color: #0057fa;
    transition: 0.3s;
}
.whole a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.whole__title {
    background-color: #dff2fc;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
}
.whole__title img {
    aspect-ratio: 1/1; /* CLS対策 */
}
.whole__block {
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(100, 100, 100, 0.3);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.whole__block:last-child {
    margin-bottom: 0;
}
.whole__content {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}
.whole__list {
    align-items: center;
    display: flex;
    margin: 0.5rem 0;
    width: 100%;
}
.whole__list.pickup {
    width: 100%;
}
.whole__list-category {
    font-size: 1.15em;
    width: 15%;
}
.whole__list-neighbor {
    width: 15%;
}
.whole__list-category::after {
    content: "\f054";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 0.6rem;
    margin-left: 0.8rem;
    padding-bottom: 4px;
    text-decoration: none;
    vertical-align: middle;
}
.whole__list-title {
    flex-shrink: 0;
    width: 110px;
    padding: 0;
    background-color: #dff2fc;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
}
.pickup .whole__list-title {
    background-color: #fff038;
}
.pickup .whole__list-title.-blue {
    background-color: #4a86e8;
    color: #fff;
}
.whole__list-link {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
}
.whole__list-link li {
    padding: 0 8px;
}
.whole__list-link li:not(:last-child) {
    border-right: 1.1px solid #ccc;
}

.pickup.all .whole__list-link {
    width: calc(100% - 7rem);
}
.pickup .whole__list-link {
    width: calc(85% - 7rem);
}

.whole__link {
    margin-bottom: 1.5rem;
    padding-left: 0.8rem;
}
.whole__link .whole__list-category:not(:last-child) {
    margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
    .whole {
        background-color: #f0f9ff;
        padding: 50px 0 40px;
    }
    .whole__title {
        font-size: 1.4rem;
    }
    .whole__list {
        align-items: flex-start;
        width: 100%;
    }
    .whole__content {
        padding: 0.5rem 1rem;
    }
    .whole__content a {
        font-size: 1.15rem;
    }
    .whole__block {
        margin-bottom: 1rem;
    }
    .whole__list.pickup {
        flex-wrap: wrap;
    }
    .whole__list-category {
        margin-bottom: 1rem;
        width: 100%;
    }
    .whole__list-neighbor {
        margin-bottom: 1rem;
        width: 100%;
    }
    .pickup .whole__list-link {
        width: calc(100% - 7rem);
    }
}

/* 追加分(whole) */
.whole a {
    color: #2c8cce;
}
.whole__block {
    position: relative;
}
.whole__title {
    padding: 25px 30px;
    color: #2c8cce;
}
.iconSearch {
    display: inline-block;
    max-width: 24px;
    max-height: 24px;
    margin-right: 10px;
}

.whole__content {
    display: block;
    padding: 68px 0 61px;
}
.p-whole__map {
    position: absolute;
    top: 34px;
    left: 20px;
}
.p-whole__mapCard {
    width: 110px;
    padding: 13px 0 12px;
    background: #fff;
    border: 3px solid #185986;
    border-radius: 6px;
    text-align: center;
    position: absolute;
}
.mapArrow_t::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid #185986;
    position: absolute;
    top: -31px;
}
.mapArrow_l::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-left: 14px solid transparent;
    border-right: 14px solid #185986;
    border-bottom: 9px solid transparent;
    position: absolute;
    left: -31px;
}
.mapArrow_b::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 14px solid #185986;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid transparent;
    position: absolute;
    bottom: -31px;
}
.mapArrow_r::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-left: 14px solid #185986;
    border-right: 14px solid transparent;
    border-bottom: 9px solid transparent;
    position: absolute;
    right: -31px;
}

.hokkaidou.mapArrow_r::after {
    top: 44px;
}
.touhoku.mapArrow_l::before {
    top: 36px;
}
.kantou.mapArrow_l::before {
    top: -1px;
}
.hokuriku.mapArrow_b::after {
    left: 61px;
}
.toukai.mapArrow_t::before {
    left: 24px;
}
.kansai.mapArrow_t::before {
    left: 78px;
}
.tyuugoku.mapArrow_b::after {
    left: 37px;
}
.shikoku.mapArrow_t::before {
    left: 81px;
}
.kyuusyuu.mapArrow_b::after {
    left: 90px;
}

.hokkaidou.p-whole__mapCard {
    top: 0;
    left: 270px;
}
.touhoku.p-whole__mapCard {
    top: 130px;
    right: 0;
}
.kantou.p-whole__mapCard {
    width: 120px;
    top: 297px;
    right: 0;
}
.hokuriku.p-whole__mapCard {
    width: 120px;
    top: 105px;
    left: 250px;
}
.toukai.p-whole__mapCard {
    top: 384px;
    left: 309px;
}
.kansai.p-whole__mapCard {
    width: 120px;
    bottom: 0;
    left: 179px;
}
.tyuugoku.p-whole__mapCard {
    top: 168px;
    left: 130px;
}
.shikoku.p-whole__mapCard {
    bottom: 0;
    left: 59px;
}
.kyuusyuu.p-whole__mapCard {
    width: 120px;
    top: 168px;
    left: 0;
}

.p-whole__mapCardTtl {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
}

.p-whole__mapCardLink {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.p-whole__mapCardLink li {
    padding: 0 9px;
    margin-bottom: 6px;
}
.p-whole__mapCardLink li:nth-child(odd) {
    border-right: 1px solid #ccc;
}
.p-whole__mapCardLink li:last-child {
    border: none;
}

.p-whole__mapCardLink li a {
    text-decoration: underline;
    line-height: calc(20 / 14);
}

.whole__listContainer {
    margin-left: 585px;
}
.whole__list {
    margin: 0 0 16px;
}

@media screen and (max-width: 1020px) {
    .whole__content {
        padding: 35px 7% 30px;
    }
    .p-whole__map {
        display: none;
    }
    .whole__listContainer {
        margin-left: 0;
    }
    .whole__list-link {
        font-size: 2.2vw;
    }
}
@media screen and (max-width: 580px) {
    .whole__list {
        flex-direction: column;
    }
    .whole__list-title {
        margin-bottom: 10px;
    }
    .whole__list-link {
        line-height: 1.8;
    }
}

/* -------------------------------------------------
  お店を探す
------------------------------------------------- */
.stores {
    padding: 120px 0 0;
}
.stores__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.stores__item {
    border: 2px solid #c8d5e2;
    border-radius: 6px;
    padding: 20px;
    width: calc(50% - 1rem);
}
.stores__name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
}
.stores__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.stores__photo {
    width: 38%;
    height: 150px;
}
.stores__photo img {
    max-height: 100%;
    image-rendering: -webkit-optimize-contrast;
    object-fit: contain;
}
.stores__info {
    width: 58%;
}
.stores__address {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.stores__detail {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.stores__detail .title,
.stores__detail .data {
    margin-bottom: 0.4rem;
}
.stores__detail .title {
    background-color: #eceff2;
    font-size: 0.8rem;
    padding: 0.3rem;
    text-align: center;
    width: 5rem;
}
.stores__detail .data {
    font-size: 0.9rem;
    padding-left: 0.8rem;
    width: calc(100% - 5rem);
}
.stores__detail .stores__tel {
    font-family: "Roboto";
    font-size: 1.5rem;
    font-weight: 500;
}
.stores__detail a {
    color: #008ccf;
    text-decoration: underline;
    transition: 0.3s;
}
.stores__detail a:hover {
    opacity: 0.7;
    text-decoration: none;
}
.stores__attention {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
}
.stores__btn {
    text-align: center;
}
.stores__btn a {
    background-color: #ff7e00;
    border-radius: 3rem;
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    padding: 1rem 4rem;
    transition: 0.3s;
}
.stores__btn a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
    .stores {
        background-color: #f0f9ff;
        padding: 50px 0 40px;
    }
    .stores__list {
        display: block;
        background-color: #fff;
        box-shadow: 0px 2px 5px rgba(100, 100, 100, 0.3);
        height: 500px;
        overflow-y: scroll;
        padding: 1rem;
    }
    .stores__item {
        padding: 1.5rem;
        width: 100%;
    }
    .stores__item:nth-child(n + 2) {
        margin-top: 1rem;
    }
    .stores__photo {
        height: 60px;
        width: 90px;
        overflow: hidden;
    }
    .stores__photo img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .stores__info {
        width: calc(100% - 100px);
    }
    .stores__photo {
        margin-top: -30px;
    }
    .stores__name {
        font-size: 1.6rem;
        margin-left: 100px;
    }
    .stores__address {
        min-height: 30px;
    }
    .stores__detail {
        margin-left: -100px;
    }
    .stores__text {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: left;
    }
}
/* -------------------------------------------------
  各ページ専用オリジナル装飾
------------------------------------------------- */

/* -------------------------------------------------
  SUMiTAS不動産売却査定とは
------------------------------------------------- */
.p-about {
    padding: 105px 0 0;
}
.p-about__inner {
    position: relative;
    padding-bottom: 40px;
}
.p-about__title {
    margin: 0 0 44px;
    font-size: 72px;
    font-weight: bold;
    line-height: 1.2;
}
.p-about__title span {
    color: #008ccf;
}
.p-about__sub {
    margin-bottom: 35px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
}
.p-about__sub span {
    color: #008ccf;
}
.p-about__text {
    width: 59.6%;
    font-size: 20px;
    line-height: 1.6;
}
.p-about__text + .p-about__text {
    margin-top: 1em;
}
.p-about__ambassador {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40.4%;
}
.p-about__ambassador p {
    position: absolute;
    bottom: 20px;
    right: 17px;
    font-size: 16px;
    text-stroke: 3px #fff;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke;
}
@media screen and (max-width: 767px) {
    .p-about {
        padding: 40px 0 0;
    }
    .p-about__inner {
        padding-bottom: 0;
    }
    .p-about__title {
        margin: 0 0 24px;
        font-size: 28px;
    }
    .p-about__sub {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .p-about__text {
        width: 100%;
        font-size: 16px;
    }
    .p-about__ambassador {
        position: relative;
        width: 80%;
        margin: 0 auto;
    }
    .p-about__ambassador p {
        bottom: 8px;
        right: 10px;
        font-size: 12px;
    }
}

/*
  ダブル査定/10秒査定　メイン部分
------------------------------------------------- */

.mainvis.mainvis-double {
    background-image: url("./../../assets/img/common/mainvisual_bg-double.jpg");
    padding: 5rem 0 4rem;
}
.mainvis-double .assess__form {
    background-color: #fff;
    padding: 2rem;
}
.mainvis-double .assess__input-title {
    border-color: #ddd;
    color: #008cce;
}
.mainvis-double .select {
    border: 1px solid #008cce;
    box-shadow: 0 2px 3px rgba(100, 100, 100, 0.3);
}
.mainvis-double .radio__item {
    padding-left: 0;
}
.mainvis-double .radio input[type="radio"] + label {
    border: 1px solid #008cce;
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 35px;
}
.mainvis-double .radio input[type="radio"]:checked + label {
    background-color: #f0f9ff;
    box-shadow: 0 0 0 1px #008cce inset;
}
.mainvis-double .radio input[type="radio"]:checked + label::before {
    left: 12px;
}
.mainvis-double .radio input[type="radio"] + label::after {
    left: 8px;
}
.mainvis-double .assess__btn {
    background-color: #e00000;
    box-shadow: 0 2px 5px rgba(150, 150, 150, 0.5);
    color: #fff;
    margin: 2px 0;
    transition: 0.2s;
}
.mainvis-double .assess__btn::before {
    color: #e00000;
}
.mainvis-double .assess__btn:hover {
    margin-bottom: 0;
    margin-top: 4px;
    opacity: 0.8;
}
.mainvis-double .assess__btn:hover::before {
    background-color: #fff;
}
.mainvis-double__maintext {
    color: #fff;
    font-weight: 500;
    text-align: center;
}
.mainvis-double__maintext-label {
    color: #fff038;
    display: block;
    font-size: 2.5rem;
}
.mainvis-double__maintext-label::before,
.mainvis-double__maintext-label::after {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 30px;
    width: 30px;
}
.mainvis-double__maintext-label::before {
    background-image: url("./../../assets/img/common/icon_slash-yellow-before.png");
    margin-right: 1.5rem;
}
.mainvis-double__maintext-label::after {
    background-image: url("./../../assets/img/common/icon_slash-yellow-after.png");
    margin-left: 1.5rem;
}
.mainvis-double__maintext-large {
    font-size: 6.4rem;
    padding: 0 2rem;
}
.mainvis-double__maintext-large .large {
    font-size: 17.6rem;
}
.mainvis-double__title {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    margin-top: 76px;
    margin-bottom: 1.5rem;
}
.mainvis-double__figure {
    background-color: #fff;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 63px 74px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 0.5rem;
    padding-top: 1.8rem;
    height: 180px;
    width: 180px;
    flex-shrink: 0;
}
.mainvis-double__figure.sell {
    background-image: url("./../../assets/img/common/deals/deals_bg_sell.jpg");
}
.mainvis-double__figure.rent {
    background-image: url("./../../assets/img/common/deals/deals_bg_rent.jpg");
}
.mainvis-double__figure-text {
    color: #008cce;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.mainvis-double__figure-text .em {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}
.mainvis-double__catch {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: calc(76px + 2rem);
    text-align: center;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .mainvis-double__figure {
        background-size: 55px 65px;
        font-size: 1.7rem;
        height: 160px;
        width: 160px;
    }
    .mainvis-double__figure-text {
        font-size: 1.7rem;
    }
    .mainvis-double__maintext-large {
        font-size: 4rem;
    }
    .mainvis-double__maintext-large .large {
        font-size: 11rem;
    }
    .mainvis-double .assess__form {
        flex-wrap: wrap;
    }
    .mainvis-double .assess__input {
        margin-bottom: 1rem;
    }
    .mainvis-double .assess__btn {
        padding: 1rem;
    }
    .mainvis-double .assess__input,
    .mainvis-double .assess__btn {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .mainvis.mainvis-double {
        padding: 2rem 0;
    }
    .mainvis-double__maintext-label {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .mainvis-double__maintext-label::before,
    .mainvis-double__maintext-label::after {
        height: 15px;
        width: 15px;
    }
    .mainvis-double__maintext-label::before {
        margin-right: 0.5rem;
    }
    .mainvis-double__maintext-label::after {
        margin-left: 0.5rem;
    }
    .mainvis-double__figure {
        background-size: 31px 37px;
        height: 80px;
        padding-top: 1rem;
        width: 80px;
    }
    .mainvis-double__figure-text {
        font-size: 1rem;
    }
    .mainvis-double__figure-text .em {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    .mainvis-double__maintext-large {
        font-size: 1.5rem;
        padding: 0;
        white-space: nowrap;
    }
    .mainvis-double__maintext-large .large {
        font-size: 4rem;
    }
    .mainvis-double__catch {
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 1.6;
    }
    .mainvis-double .assess__btn {
        padding: 1.5rem 0;
    }
}
/*
  10秒W査定
--------------------- */
.mainvis.mainvis-quick {
    background-image: url("./../../assets/img/common/mainvisual_bg-quick.jpg");
}
.mainvis-quick .large {
    font-size: 14rem;
}
.mainvis-quick .mainvis-double__maintext-label {
    margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
    .mainvis-quick .large {
        font-size: 4rem;
    }
    .mainvis-quick .mainvis-double__catch {
        margin-bottom: 0;
    }
    .mainvis-quick .mainvis-double__maintext-label {
        margin-bottom: 1rem;
    }
}

/* -------------------------------------------------
  価格相場
------------------------------------------------- */
.price {
    padding-bottom: 3rem;
    padding-top: 2rem;
}
.price__title {
    background-color: #ff7e00;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    padding: 1.5rem 1rem;
    position: relative;
    text-align: center;
}
.price__title.left {
    text-align: left;
    padding: 0.7rem 1rem 0.9rem;
}
.price__title.orange-top {
    padding: 1.25rem 1rem;
}
.price__title.blue {
    background: #2c8ccf;
}
.price__title-img {
    position: absolute;
    bottom: 1px;
    left: 15%;
    width: 62px;
}
.price__subtitle {
    color: #ff7e00;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.price__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.price__tel {
    color: #15456a;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.1;
}
.price__tel-num {
    color: #15456a;
    display: block;
    font-family: "Roboto";
    font-size: 2.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.price__tel-num img {
    margin-right: 0.5rem;
    vertical-align: baseline;
    width: 40px;
}
.price__tel .small {
    font-size: 0.85rem;
}
.price__show {
    margin-left: 8rem;
    width: 40%;
}
.price__show-text {
    align-items: center;
    color: #008ccf;
    display: flex;
    font-size: 1.2rem;
    font-weight: 500;
    justify-content: center;
    margin-bottom: 1rem;
}
.price__show-text::before,
.price__show-text::after {
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 33px;
    width: 33px;
}
.price__show-text::before {
    background-image: url("./../img/common/icon_slash-blue-before.png");
    margin-right: 0.3rem;
}
.price__show-text::after {
    background-image: url("./../img/common/icon_slash-blue-after.png");
    margin-left: 0.3rem;
}
.price__show-btn {
    background-color: #ff7e00;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 2px 3px 8px rgba(100, 100, 100, 0.3);
    color: #fff;
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    position: relative;
    transition: 0.3s;
}
.price__show-btn::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 1.4rem;
    font-weight: 600;
    position: absolute;
    right: 2rem;
    top: 40%;
    vertical-align: middle;
}
.price__show-btn:hover {
    background-color: #f89430;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.price__show-btn:hover::after {
    animation: afterArrowSlide 1s infinite;
}
@keyframes afterArrowSlide {
    0% {
        right: 2rem;
    }
    20% {
        right: 1.7rem;
    }
    40% {
        right: 2rem;
    }
    100% {
        right: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .price {
        padding-bottom: 0;
    }
    .price__title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        padding-left: 2.5rem;
    }
    .price__title-img {
        left: 4.5%;
        width: 40px;
    }
    .price__subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .price__tel {
        margin-bottom: 2rem;
    }
    .price__show {
        margin-left: 0;
        width: 100%;
    }
    .price__show-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    .price__show-text::before,
    .price__show-text::after {
        height: 24px;
        width: 24px;
    }
    .price__show-btn {
        padding: 1.5rem 1rem;
    }
    .price__show-btn::after {
        margin-left: 2rem;
    }
}

/* -------------------------------------------------
  査定
------------------------------------------------- */
.assess {
    background-color: #008ccf;
    color: #fff;
    padding: 6rem 0 4rem;
}
.assess__text {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 4rem;
    text-align: center;
}
.assess__form {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.assess__input {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    width: 66%;
}
.assess__input-title {
    border: 1px solid #fff;
    flex-shrink: 0;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.6rem;
    text-align: center;
    width: 17%;
}
.assess__input-title:nth-of-type(1) {
    margin-bottom: 1rem;
}
.assess__input-data {
    padding-left: 1rem;
    width: 83%;
}
.assess__input-select {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.assess__input-select .select {
    width: 32%;
}
.assess__input-radio .radio {
    display: flex;
    justify-content: flex-start;
}
.radio__item {
    background-color: #fff;
    border-radius: 10px;
    color: #008cce;
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    padding-left: 1rem;
    width: 25%;
}
.radio__item:not(:last-child) {
    margin-right: 0.5rem;
}
.radio input[type="radio"] {
    display: none;
}
.radio input[type="radio"] + label {
    cursor: pointer;
    display: inline-block;
    padding: 0.8rem 1rem;
    padding-left: 2rem;
    position: relative;
    width: 100%;
}
.radio input[type="radio"] + label::after {
    background-color: #fff;
    border: 1px solid #008cce;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    z-index: 1;
}
.radio input[type="radio"]:checked + label::before {
    animation: fadeInChecked 0.25s;
    background-color: #008cce;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 14px;
    z-index: 2;
}
@keyframes fadeInChecked {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.assess__btn {
    background-color: #fff038;
    color: #15456a;
    padding: 2rem 1.5rem;
    transition: 0.3s;
    width: 31.5%;
}
.assess__btn:hover {
    background-color: #15456a;
    color: #fff;
}
.assess__btn:hover::before {
    background-color: #fff038;
    color: #15456a;
}
@media screen and (max-width: 767px) {
    .assess {
        padding: 2rem 1.5rem 1.5rem;
    }
    .assess__text {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    .assess__form,
    .assess__input,
    .assess__input-select {
        flex-direction: column;
    }
    .assess__input-title,
    .assess__input-data {
        margin-bottom: 1rem;
    }
    .assess__input,
    .assess__btn,
    .assess__input-title,
    .assess__input-data,
    .assess__input-select .select {
        width: 100%;
    }
    .assess__input-select {
        padding-left: 0;
    }
    .assess__input-select .select:not(:last-child) {
        margin-bottom: 0.4rem;
    }
    .assess__input-radio {
        padding-left: 0;
    }
    .assess__input-radio .radio {
        flex-wrap: wrap;
        justify-content: unset;
    }
    .radio__item {
        width: 49%;
    }
    .radio input[type="radio"] + label {
        padding-left: 2.4rem;
    }
    .radio__item:not(:last-child) {
        margin-bottom: 0.4rem;
        margin-right: 0;
    }
    .radio__item:nth-child(2n + 1) {
        margin-right: 2%;
    }
    .assess__btn {
        font-size: 1.8rem;
        padding: 1.5rem 1rem;
    }
}

/*
  メリット・デメリット
----------------------------- */
.merideri__title {
    color: #15456a;
    font-size: 2.3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}
.merideri__block {
    display: flex;
    justify-content: space-between;
}
.merideri__item {
    background-color: #fff;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    width: 49%;
}
.merideri__item-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 1rem 1.2rem;
    text-align: center;
}
.sell.merideri__item {
    border-color: #008cce;
}
.rent.merideri__item {
    border-color: #ff7e00;
}
.sell .merideri__item-title {
    background-color: #008cce;
}
.rent .merideri__item-title {
    background-color: #ff7e00;
}
.merideri__item-title .small {
    font-size: 1.3rem;
    text-align: center;
}
.merideri__text {
    padding: 2rem 1rem 1rem 1.5rem;
}
.merideri__list li {
    font-size: 1.1rem;
}
.merideri__list li::before {
    content: "・";
}
.merideri__list .em {
    font-weight: 500;
}
.sell .merideri__list .em {
    color: #008cce;
}
.rent .merideri__list .em {
    color: #ff7e00;
}
@media screen and (max-width: 767px) {
    .merideri__title {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .merideri__block {
        flex-wrap: wrap;
    }
    .merideri__item {
        width: 100%;
    }
    .merideri__item.sell {
        margin-bottom: 1rem;
    }
    .merideri__text {
        padding: 1rem;
    }
}

/* -------------------------------------------------
  ここがちがう　２
------------------------------------------------- */
.strength {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}
.strength__item {
    background-color: #008cce;
    color: #fff;
    padding: 2rem;
    text-align: center;
    width: 31.5%;
}
.strength__title {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.strength__content {
    font-size: 1.2rem;
    font-weight: 500;
}
.strength__content .em {
    color: #fff038;
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    .strength {
        flex-wrap: wrap;
    }
    .strength__item {
        align-items: center;
        display: flex;
        padding: 1rem;
        width: 100%;
    }
    .strength__item:not(:last-child) {
        margin-bottom: 1rem;
    }
    .strength__title {
        flex-shrink: 0;
        line-height: 1.4;
        margin-bottom: 0;
        width: 25%;
    }
    .strength__content {
        flex-shrink: 0;
        line-height: 1.4;
        padding-left: 1rem;
        width: 75%;
    }
    .strength__content .em {
        font-size: 1.6rem;
    }
}

/* -------------------------------------------------
  各エリアの相場
------------------------------------------------- */
.areaprice {
    margin-top: 70px;
}
.areaprice:nth-of-type(n + 2) {
    margin-top: 140px;
}
.areaprice__block {
    margin-top: 50px;
}
.areaprice__title {
    background-color: #ff7e00;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    padding: 1.1rem;
}
.areaprice__title.tac {
    text-align: center;
}
.areaprice__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1rem;
}
.areaprice__text span {
    color: #ff7e00;
}
.areaprice__list {
    margin-top: 30px;
    margin-bottom: 2rem;
}
.areaprice__item-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.areaprice__arenamae {
    background-color: #008cce;
    border-radius: 6px;
    color: #fff;
    flex-shrink: 0;
    font-size: 1.15rem;
    min-width: 180px;
    padding: 0.7rem;
    text-align: center;
    width: 15.5%;
}
.areaprice__arenamae a {
    color: #fff;
}
.areaprice__arenamae.pickup {
    background-color: #fff038;
    color: #15456a;
    padding-top: 2.25rem;
}
.areaprice__link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 82%;
}
.areaprice__link a {
    display: grid;
    place-content: center;
    width: calc((100% - 60px) / 7);
    padding: 0.7rem 0.5rem;
    border: 1px solid #008cce;
    border-radius: 6px;
    color: #008cce;
    font-size: 1.15rem;
    font-weight: 500;
    transition: 0.3s;
}
.areaprice__link a:hover {
    background-color: #008cce;
    color: #fff;
}
.areaprice__detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #008ccf;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    text-decoration: underline;
}
.areaprice__detail::before {
    content: "";
    width: 14px;
    height: 14px;
    border: solid #008ccf;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .areaprice {
        margin-top: 20px;
    }
    .areaprice:nth-of-type(n + 2) {
        margin-top: 40px;
    }
    .areaprice__block {
        margin-top: 20px;
    }
    .areaprice__item-area {
        flex-wrap: wrap;
    }
    .areaprice__arenamae {
        width: 100%;
    }
    .areaprice__arenamae.pickup {
        padding-top: 0.7rem;
    }
    .areaprice__link {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }
    .areaprice__link a {
        width: calc((100% - 20px) / 3);
    }
    .areaprice__detail {
        font-size: 18px;
    }
    .areaprice__detail::before {
        width: 10px;
        height: 10px;
        border-width: 2px 2px 0 0;
    }
}
/* エリア選択（都道府県・市区町村以下） */
.areaprice__count {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0;
}
.areaprice__count-item {
    border: 2px solid #008cce;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    width: calc((100% - 24px) / 4);
}
.areaprice__count-title {
    color: #15456a;
    font-size: 20px;
    margin-bottom: 1rem;
}
.areaprice__count-num {
    color: #15456a;
    font-size: 20px;
    font-weight: 500;
}
.areaprice__count-num .em {
    color: #fe4c00;
    font-size: 48px;
    margin-right: 0.3rem;
}
.areaprice .table-scrollable {
    max-height: 420px;
    margin-bottom: 3rem;
    overflow-y: auto;
}
.areaprice__table {
    text-align: center;
    width: 100%;
}
.areaprice__table thead th {
    background-color: #008cce;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1rem 0.3rem;
    position: sticky;
    top: 0;
    z-index: 2;
}
.areaprice__table tbody th,
.areaprice__table tbody td {
    background-color: #fff;
}
.areaprice__table tbody tr:nth-child(odd) th,
.areaprice__table tbody tr:nth-child(odd) td {
    background-color: #eceff2;
}
.areaprice__table tbody th,
.areaprice__table tbody td {
    color: #15456a;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1rem 0.5rem;
}
.areaprice__table .em {
    font-size: 2.3rem;
}
.areaprice__store-title {
    color: #15456a;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    text-align: center;
    vertical-align: sub;
}
.areaprice__store-title::before,
.areaprice__store-title::after {
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 33px;
    width: 33px;
}
.areaprice__store-title::before {
    background-image: url("./../img/common/icon_slash-blue-before.png");
    margin-right: 0.3rem;
}
.areaprice__store-title::after {
    background-image: url("./../img/common/icon_slash-blue-after.png");
    margin-left: 0.3rem;
}
.areaprice__store-block {
    border: 1px solid #d0cece;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(100, 100, 100, 0.3);
    display: flex;
    margin-bottom: 2.5rem;
    padding: 2.5rem 2rem;
}
.areaprice__store-img {
    flex-shrink: 0;
    width: 20.5%;
}
.areaprice__store-img img {
    width: 100%;
}
.areaprice__store-info {
    flex: 1;
    padding: 0 2.1rem;
}
.areaprice__store-link {
    flex-shrink: 0;
    width: 39.5%;
}
.areaprice__store-name {
    color: #15456a;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.areaprice__store-address {
    color: #15456a;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.areaprice__store-btn {
    background-color: #ff7e00;
    border: 1px solid #fff;
    box-shadow: 0 3px 8px rgba(100, 100, 100, 0.3);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 3rem;
    position: relative;
    text-align: center;
    transition: 0.3s;
}
.areaprice__store-btn::before {
    display: none;
}
.areaprice__store-btn:hover {
    background-color: #f89430;
}
.areaprice__store-btn::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 1.4rem;
    font-weight: 600;
    position: absolute;
    right: 2rem;
    top: 40%;
    vertical-align: middle;
}
.areaprice__store-btn:hover::after {
    animation: afterArrowSlide 1s infinite;
}
.areaprice .price__tel {
    margin-bottom: 0;
    text-align: center;
}
.areaprice .price__tel-num {
    font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
    .areaprice__title {
        font-size: 1.25rem;
    }
    .areaprice .table-scrollable {
        max-height: 240px;
        overflow-x: scroll;
    }
    .areaprice__table {
        white-space: nowrap;
    }
    .areaprice__table tbody th {
        position: sticky;
        left: 0;
    }
    .areaprice__count-item {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
        width: 100%;
    }
    .areaprice__count-item:not(:last-child) {
        margin-bottom: 0.5rem;
    }
    .areaprice__count-title {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .areaprice__count-num .em {
        font-size: 2rem;
    }
    .areaprice__store-title {
        font-size: 1.3rem;
    }
    .areaprice__store-block {
        flex-wrap: wrap;
        padding: 1.5rem;
    }
    .areaprice__store-link {
        width: 100%;
    }
    .areaprice__store-img {
        padding-right: 10px;
        width: 100px;
    }
    .areaprice__store-info {
        margin-bottom: 1rem;
        padding: 0;
        width: calc(100% - 110px);
    }
    .reaprice__store-name-wrap {
        min-height: 70px;
    }
    .areaprice__store-title {
        line-height: 1.4;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        width: 70%;
    }
    .areaprice__store-title::before,
    .areaprice__store-title::after {
        position: absolute;
        top: 15px;
        width: 24px;
        height: 24px;
    }
    .areaprice__store-title::before {
        left: -20px;
    }
    .areaprice__store-title::after {
        right: -20px;
    }
    .areaprice .stores__detail {
        padding-top: 1rem;
    }
    .areaprice__store-name {
        font-size: 1.3rem;
    }
    .areaprice__store-address {
        font-size: 0.95rem;
    }
    .areaprice__store-btn {
        font-size: 1.3rem;
    }
    .areaprice__table thead th,
    .areaprice__table tbody th,
    .areaprice__table tbody td {
        font-size: 1rem;
    }
    .areaprice__table .em {
        font-size: 1.6rem;
    }
}
/*↓↓20201223↓↓*/
.p-areaTransition__comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 932px;
    padding: 10px 0;
    margin: 35px auto 8px;
    border: 2px solid #2c8ccf;
    border-radius: 10px;
}
.p-areaTransition__comparisonWrap {
    display: flex;
    align-items: center;
}
.p-areaTransition__comparisonWrap:nth-child(2) {
    border: solid #c7c7c7;
    border-width: 0 0 0 1px;
    padding-left: 5%;
    margin-left: 5%;
}
.p-areaTransition__year {
    color: #2c8ccf;
    font-size: 16px;
}
.p-areaTransition__price {
    align-items: baseline;
    margin: 0 20px;
    font-size: 16px;
}
.p-areaTransition__price span {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
}
.p-areaTransition__ratio {
    position: relative;
    min-width: 123px;
    padding: 10px 26px 10px 12px;
    background: #2c8ccf;
    color: #fff;
    font-size: 22px;
    border-radius: 20px;
}
.p-areaTransition__ratio.m-down::after {
    content: "↓";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 22px;
    height: 22px;
    margin: auto 0;
}
.p-areaTransition__ratio.m-up::after {
    content: "↑";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 22px;
    height: 22px;
    margin: auto 0;
}
@media screen and (max-width: 841px) {
    .p-areaTransition__comparisonWrap:nth-child(2) {
        padding-left: 25px;
        margin-left: 25px;
    }

    .p-areaTransition__price {
        margin: 0 15px;
    }
}
@media screen and (max-width: 767px) {
    .p-areaTransition__comparison {
        display: block;
        width: 100%;
        padding: 10px;
        margin: 35px auto 8px;
    }
    .p-areaTransition__comparisonWrap {
        justify-content: space-between;
    }
    .p-areaTransition__comparisonWrap:nth-child(2) {
        border-width: 1px 0 0 0;
        padding: 10px 0 0;
        margin: 10px 0 0;
    }
    .p-areaTransition__year {
        font-size: 13px;
    }
    .p-areaTransition__price {
        margin: 0 10px;
        font-size: 13px;
    }
    .p-areaTransition__price span {
        font-size: 28px;
    }
    .p-areaTransition__ratio {
        max-width: 100px;
        min-width: auto;
        padding: 10px 26px 10px 12px;
        font-size: 18px;
        flex: 1;
    }
    .p-areaTransition__ratio.m-down::after {
        right: 8px;
    }
    .p-areaTransition__ratio.m-up::after {
        right: 8px;
    }
}

.p-areaHighly__wrap {
    width: 100%;
    margin: 72px auto 0;
}
.p-areaHighly__top5 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 44px;
}
.p-areaHighly__top5Item {
    position: relative;
    width: calc((100% - 60px) / 3);
    padding: 35px 20px 21px;
    border: 2px solid #2c8ccf;
    border-radius: 10px;
    text-align: center;
}
.p-areaHighly__top5Item.m-wide {
    width: calc((100% - 30px) / 2);
    margin: 0;
}
.p-areaHighly__crown {
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 76px;
    padding: 26px 0 0;
    margin: 0 auto;
    color: #fff;
    background: url("../../../img/area/ico_crown.svg") no-repeat;
    background-size: 100%;
    line-height: 1.5;
}
.p-areaHighly__crown span {
    font-size: 23px;
}
.p-areaHighly__area {
    display: inline-block;
    margin-bottom: 10px;
    color: #15456a;
    font-size: 20px;
    text-decoration: underline;
    text-underline-position: under;
    line-height: 1.5;
    transition: 0.3s;
}
.p-areaHighly__area_not_link {
    display: inline-block;
    color: #15456a;
    font-size: 20px;
    line-height: 1.5;
    transition: 0.3s;
}
.p-areaHighly__area:hover {
    opacity: 0.7;
}
.p-areaHighly__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 23px;
}
.p-areaHighly__price span {
    color: #fa7d1f;
    font-size: 45px;
}
.p-areaHighly__other {
    display: flex;
}
.p-areaHighly__otherTable {
    margin-bottom: 8px;
}
.p-areaHighly__otherNum {
    width: 10%;
}
.p-areaHighly__otherArea {
    width: 25%;
    text-align: left;
}
.p-areaHighly__otherArea a {
    color: #15456a;
    text-decoration: underline;
    text-underline-position: under;
    line-height: 1.5;
    transition: 0.3s;
}
.p-areaHighly__otherArea a:hover {
    opacity: 0.7;
}
.p-areaHighly__otherPrice {
    text-align: left;
    line-height: 1.4;
}
.p-areaHighly__otherPrice span {
    font-size: 32px;
}
@media screen and (max-width: 767px) {
    .p-areaHighly__wrap {
        width: 100%;
        margin: 45px auto 0;
    }
    .p-areaHighly__top5 {
        margin: 0;
    }
    .p-areaHighly__top5Item {
        position: relative;
        width: calc((100% - 20px) / 2);
        padding: 25px 10px 15px;
        margin: 0 0 45px;
    }
    .p-areaHighly__top5Item.m-wide {
        width: calc((100% - 20px) / 2);
        margin: 0 0 45px;
    }
    .p-areaHighly__top5Item.m-wide.m-top {
        width: 100%;
        margin: 0 0 45px;
    }
    .p-areaHighly__crown {
        position: absolute;
        top: -38px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: baseline;
        width: 76px;
        padding: 26px 0 0;
        margin: 0 auto;
        color: #fff;
        background: url("../../../img/area/ico_crown.svg") no-repeat;
        background-size: 100%;
        line-height: 1.5;
    }
    .p-areaHighly__crown span {
        font-size: 20px;
    }
    .p-areaHighly__area {
        color: #15456a;
        font-size: 18px;
        text-decoration: underline;
        text-underline-position: under;
        line-height: 1.5;
    }
    .p-areaHighly__price {
        font-size: 15px;
    }
    .p-areaHighly__price span {
        font-size: 32px;
    }
    .p-areaHighly__top5Item.m-wide.m-top .p-areaHighly__price {
        font-size: 20px;
    }
    .p-areaHighly__top5Item.m-wide.m-top .p-areaHighly__price span {
        font-size: 40px;
    }
    .p-areaHighly__other {
        display: block;
    }
    .p-areaHighly__otherTable {
        width: 100%;
    }
    .p-areaHighly__otherPrice {
        line-height: 1.4;
    }
    .p-areaHighly__otherPrice span {
        font-size: 28px;
    }
    .p-areaHighly__otherImage {
        display: none;
    }
}

.p-areaRep {
    margin: 75px 0 0;
}
.p-areaRep__title {
    margin: 0;
}
.p-areaRep__wrap {
    max-height: 660px;
    overflow-y: auto;
}
.p-areaRep__list {
    display: flex;
    flex-wrap: wrap;
    padding: 38px 21px 0;
}
.p-areaRep__list li {
    width: calc((100% - 60px) / 4);
    max-width: 262px;
    margin-right: 20px;
    font-size: 16px;
    line-height: 1.5;
}
.p-areaRep__list li:nth-child(4n) {
    margin-right: 0;
}
.p-areaRep__list li:nth-child(n + 5) {
    margin-top: 40px;
}
.p-areaRep__list li p {
    font-size: 16px;
    line-height: 1.5;
}
.p-areaRep__list li a {
    transition: 0.3s;
}
.p-areaRep__list li a:hover {
    opacity: 0.7;
}
.p-areaRep__image {
    position: relative;
    margin-bottom: 8px;
    background: #e6f4fa;
}
.p-areaRep__image::before {
    content: "";
    padding-top: 64.13%;
    display: block;
}
.p-areaRep__image img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.p-areaRep__shop {
    display: inline-block;
    margin-bottom: 5px;
    color: #000;
}
.p-areaRep__name {
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px dotted #dbe4e8;
}
.p-areaRep__comment {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.p-areaRep__contact {
    padding: 8px 13px 13px;
    margin-top: 9px;
    background: #eaeaea;
    text-align: center;
}
.p-areaRep__valuation {
    position: relative;
    display: block;
    padding: 5.5px 0;
    margin-top: 8px;
    background: #008cce;
    color: #fff;
    border-radius: 5px;
}
.p-areaRep__valuation::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    width: 5.5px;
    height: 5.5px;
    margin: auto 0;
    border: solid #fff;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
}
.p-areaRep__tel {
    display: block;
    padding: 4.5px 0;
    margin-top: 8px;
    background: #fff;
    color: #008cce;
    border: 1px solid #008cce;
    border-radius: 5px;
}
.p-areaRep__tel span {
    position: relative;
    padding-left: 16px;
}
.p-areaRep__tel span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 15px;
    margin: auto 0;
    background: url("../../../img/area/ico_tel.svg") no-repeat;
    background-size: 100%;
}
@media screen and (max-width: 767px) {
    .p-areaRep {
        margin: 40px 0 0;
    }
    .p-areaRep__title {
        margin: 0;
    }
    .p-areaRep__wrap {
        max-height: 480px;
    }
    .p-areaRep__list {
        padding: 20px 0 0;
    }
    .p-areaRep__list li {
        width: calc((100% - 20px) / 2);
        font-size: 13px;
        line-height: 1.5;
    }
    .p-areaRep__list li p {
        font-size: 13px;
        line-height: 1.5;
    }
    .p-areaRep__list li:nth-child(2n),
    .p-areaRep__list li:nth-child(4n) {
        margin-right: 0;
    }
    .p-areaRep__list li:nth-child(n + 3),
    .p-areaRep__list li:nth-child(n + 5) {
        margin-top: 20px;
    }
    .p-areaRep__image {
        margin-bottom: 8px;
        background: #e6f4fa;
    }
    .p-areaRep__shop {
        display: inline-block;
        margin-bottom: 5px;
        color: #008cce;
        text-decoration: underline;
    }
    .p-areaRep__name {
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: bold;
        border-bottom: 1px dotted #dbe4e8;
    }
    .p-areaRep__contact {
        padding: 8px 13px 13px;
        margin-top: 9px;
        background: #eaeaea;
        text-align: center;
    }
    .p-areaRep__valuation {
        position: relative;
        display: block;
        padding: 5.5px 0;
        margin-top: 8px;
        background: #008cce;
        color: #fff;
        border-radius: 5px;
    }
    .p-areaRep__valuation::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 13px;
        width: 5.5px;
        height: 5.5px;
        margin: auto 0;
        border: solid #fff;
        border-width: 1px 1px 0 0;
        transform: rotate(45deg);
    }
    .p-areaRep__tel {
        display: block;
        padding: 4.5px 0;
        margin-top: 8px;
        background: #fff;
        color: #008cce;
        border: 1px solid #008cce;
        border-radius: 5px;
    }
    .p-areaRep__tel span {
        position: relative;
        padding-left: 16px;
    }
    .p-areaRep__tel span::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 12px;
        height: 15px;
        margin: auto 0;
        background: url("../../../img/area/ico_tel.svg") no-repeat;
        background-size: 100%;
    }
}
/*↑↑20201223↑↑*/

/* -------------------------------------------------
  相場　マトリクス
------------------------------------------------- */
.matrix {
    overflow: hidden;
}
.matrix__text {
    margin-bottom: 2rem;
}
.matrix .table-scrollable {
    margin-bottom: 2.5rem;
}
.matrix__table {
    table-layout: fixed;
    width: 100%;
}
.matrix__table a {
    background-color: #f0f9ff;
    color: #008cce;
    display: block;
    font-size: 1.15rem;
    padding: 1rem 0;
    height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    transition: 0.3s;
}
.matrix__table a:hover {
    background-color: #e2f1fb;
    text-decoration: none;
}
.matrix__table th,
.matrix__table td {
    border: 1px solid #d3d5d6;
}
.matrix__table th {
    font-weight: 500;
    padding: 1rem 0.5rem;
    text-align: center;
}
.matrix__table thead th {
    width: 7.3%;
}
.matrix__table thead th:first-child {
    width: 12.4%;
}
.matrix__table thead th {
    background-color: #c8e8fd;
    border-color: #008cce;
    color: #008cce;
}
.matrix__table tbody th {
    background-color: #f7f8f8;
    color: #707070;
}
@media screen and (max-width: 767px) {
    .matrix .table-scrollable {
        height: 240px;
        overflow: scroll;
    }
    .matrix__table {
        table-layout: unset;
        white-space: nowrap;
    }
    .matrix__table thead th {
        border: none;
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .matrix__table tbody th {
        position: sticky;
        left: 0;
    }
}

/* -------------------------------------------------
  エリアから土地売却・相場をみる
------------------------------------------------- */
.areapricelink {
    overflow: hidden;
}
.areapricelink.--large {
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.leadtext.--large {
    width: 100%;
}
.areapricelink__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 2rem;
}
.areapricelink__item {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #008cce;
    color: #008cce;
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 1rem;
    text-align: center;
    transition: 0.3s;
    width: calc((100% - 100px) / 6);
}
.areapricelink__item:hover {
    background-color: #008cce;
    color: #fff;
}
.areapricelink__list.large {
    border-bottom: none;
    margin-bottom: 0;
    margin-right: 0;
}
.large .areapricelink__item {
    margin-right: 6.6%;
    text-align: left;
    width: 46.66%;
}
.large .areapricelink__item:nth-child(2n + 1) {
    margin-right: 0;
}

.p-syubetu {
    padding: 0 0 120px;
}
@media screen and (max-width: 767px) {
    .p-syubetu {
        padding: 0 0 40px;
    }
}

/* 他種別の査定へのリンク */
.p-assessOther {
    margin: 75px 0 0;
}
.p-assessOther__text {
    font-size: 20px;
}
.p-assessOther__wrap {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0;
    text-align: center;
}
.p-assessOther__wrap .c-button {
    width: 525px;
}
@media screen and (max-width: 767px) {
    .p-assessOther {
        margin: 40px 0 0;
    }
    .p-assessOther__text {
        font-size: 16px;
        line-height: 1.5;
    }
    .p-assessOther__wrap {
        flex-direction: column;
        justify-content: initial;
        gap: 15px;
        margin: 10px 0 0;
    }
    .p-assessOther__wrap .c-button {
        width: 100%;
    }
}

/*add 20201118---*/
.areapricelink__list.large + .areapricelink__list.full {
    margin-top: -1.5em;
}
.full .areapricelink__item {
    margin-right: 0;
    text-align: left;
    width: calc(100% - 30px);
}
/*---add 20201118*/
@media screen and (max-width: 767px) {
    .areapricelink__list {
        gap: 10px 2%;
    }
    .areapricelink__item {
        margin-right: 0;
        width: 48%;
    }
    .large .areapricelink__item {
        margin-right: 0;
        width: 100%;
    }
    .large .areapricelink__item:nth-child(2n + 1) {
        margin-right: 0;
    }
    /*add 20201118---*/
    .full .areapricelink__item {
        margin-right: 0;
        width: 100%;
    }
    /*---add 20201118*/
}

/* -------------------------------------------------
  成功した方の声
------------------------------------------------- */
.opinion {
    padding-top: 6rem;
}
.opinion__title {
    position: relative;
}
.opinion__title img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 120px;
    width: 90px;
}
.opinion__list {
    margin-bottom: 4rem;
}
.opinion__item {
    display: flex;
    justify-content: space-between;
}
.opinion__item:not(:last-child) {
    border-bottom: 1px solid #707070;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.opinion__img {
    width: 15.5%;
}
.opinion__text {
    color: #15456a;
    width: 81.2%;
}
.opinion__name {
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.opinion__name a {
    color: #008ccf;
    font-size: 1rem;
    margin-left: 1.5rem;
    text-decoration: underline;
    transition: 0.3s;
}
.opinion__name a:hover {
    opacity: 0.7;
    text-decoration: none;
}
.opinion__comment {
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .opinion {
        padding-top: 3rem;
    }
    .opinion__list {
        margin-bottom: 2rem;
    }
    .opinion__item:not(:last-child) {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .opinion__title {
        text-align-last: left;
    }
    .opinion__title img {
        height: 80px;
        width: 60px;
    }
    .opinion__img {
        height: 80px;
        width: 100px;
    }
    .opinion__text {
        width: calc(100% - 110px);
    }
    .opinion__name {
        margin-bottom: 0.5rem;
        min-height: 80px;
    }
    .opinion__name a {
        display: block;
        margin-left: 0;
    }
    .opinion__comment {
        margin-left: -110px;
    }
}

/* -------------------------------------------------
  詳しく査定　フォーム
------------------------------------------------- */
.assessform {
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.assessform .select select:focus {
    background-color: #fff1e3;
    box-shadow: 0 0 0 1px #008ccf;
    color: #1c1c1c;
}
.assessform__title {
    background-color: #008ccf;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
}
.assessform__title .small {
    font-size: 1.3rem;
}
.assessform__text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #15456a;
}
.assessform__main {
    background-image: url("./../img/common/assess/assess_bg.png");
    background-position: right 8% bottom;
    background-repeat: no-repeat;
    background-size: 339px auto;
    border: 2px solid #008ccf;
    padding: 2rem 10%;
}
.assessform__label {
    align-items: center;
    display: flex;
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.assessform__label::before {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    flex-shrink: 0;
    height: 40px;
    width: 102px;
    margin-right: 1rem;
}
.assessform__step1 .assessform__label::before {
    background-image: url("./../img/common/assess/assess_label_step1.png");
}
.assessform__step2 .assessform__label::before {
    background-image: url("./../img/common/assess/assess_label_step2.png");
}
.assessform select {
    border: 2px solid #666;
    border-radius: 4px;
    color: #333;
}
.assessform__step1,
.assessform__step2 {
    margin-bottom: 2rem;
}
.assessform__step1-select {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.assessform__step1-select .select {
    width: 32.5%;
}
.assessform__step2 .select {
    width: 66.25%;
}
.assessform__btn {
    text-align: center;
}
.assessform__btn .btn {
    background-color: #ff7e00;
    border-radius: 8px;
    box-shadow: 0 3px 3px rgba(100, 100, 100, 0.5);
    color: #fff;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    padding: 1.5rem 5rem;
    transition-duration: 0.3s;
}
.assessform__btn .btn:hover {
    /*  background-color: #f89430;
  margin-top: 0.1rem;
  padding-bottom: 1.4rem;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.4);*/
}
.assessform__koyuki {
    display: none;
}
@media screen and (max-width: 767px) {
    .assessform__title {
        font-size: 1.4rem;
        text-align: center;
    }
    .assessform__title .small {
        font-size: 1rem;
    }
    .assessform__title img {
        height: 70px;
        width: 70px;
    }
    .assessform__text {
        line-height: 1.4;
        text-align: left;
    }
    .assessform__main {
        background-image: none;
        padding: 1.5rem;
    }
    .assessform__label {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    .assessform__label::before {
        height: 32px;
        margin-right: 0.6rem;
        width: 80px;
    }
    .assessform .select {
        width: 100%;
    }
    .assessform__step1-select .select:not(:last-child) {
        margin-bottom: 0.5rem;
    }
    .assessform__btn .btn {
        font-size: 1.8rem;
        padding: 1.5rem 1rem;
        width: 100%;
    }
}

/* -------------------------------------------------
  コラム
------------------------------------------------- */
.column {
    background-color: #eff8fc;
}
.column__list {
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.column__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: 0.3s;
}
.column__item:hover {
    opacity: 0.7;
}
.column__item:not(:last-child) {
    margin-bottom: 2rem;
}
.column__thumb {
    width: 12.5%;
    height: 110px;
    overflow: hidden;
}
.column__thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.column__text {
    width: 85.5%;
}
.column__item-title {
    color: #15456a;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    overflow: hidden;
    text-decoration: underline;
    text-overflow: ellipsis;
    transition: 0.3s;
    white-space: nowrap;
}
.column__item:hover .column__item-title {
    text-decoration: none;
}
.column__info {
    align-items: center;
    display: flex;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.column__date {
    color: #707070;
    font-weight: 500;
}
.column__category {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1rem;
}
.column__category li {
    background-color: #008cce;
    color: #fff;
    font-weight: 300;
    line-height: 1;
    padding: 0.3rem 0.8rem;
}
.column__category li:not(:last-child) {
    margin-right: 0.4rem;
}
.column__content {
    color: #15456a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    max-height: 4.7rem;
    overflow: hidden;
}
.column__title {
    background-color: #008ccf;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
}
.column__btn {
    text-align: center;
}
.column__btn .btn {
    background-color: #eceff2;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(100, 100, 100, 0.3);
    color: #15456a;
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 1.8rem;
    transition: 0.3s;
}
.column__btn .btn:hover {
    background-color: #fff;
    border-color: #008cce;
    color: #008cce;
}
.column__btn .btn::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 1.2rem;
    margin-left: 1rem;
}
@media screen and (max-width: 767px) {
    .column {
        padding-bottom: 2rem;
        padding-top: 0;
    }
    .column__title {
        font-size: 1.4rem;
        text-align: center;
    }
    .column__list {
        margin-bottom: 1rem;
    }
    .column__thumb {
        height: 70px;
        width: 100px;
    }
    .column__text {
        width: calc(100% - 110px);
    }
    .column__item-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 0.3rem;
        height: 4rem;
        overflow: hidden;
        white-space: unset;
    }
    .column__info {
        font-size: 0.8rem;
    }
    .column__content {
        margin-left: -110px;
        max-height: 4.5rem;
        overflow: hidden;
    }
}

/* -------------------------------------------------
  選べる方法
------------------------------------------------- */
.means {
    padding-top: 100px;
}
.means.small {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
}
.means__item {
    background-color: #fff;
    border: 2px solid #008cce;
    display: flex;
    flex-direction: column;
    padding: 4rem 8%;
    position: relative;
}
/* 表示順調整--- */
.means__title {
    order: 1;
}
.means__flow {
    order: 3;
}
.means__text {
    order: 4;
}
.means__point {
    order: 5;
}
.means__recommend {
    order: 6;
}
/* 表示順調整--- */

.means__item {
    margin-top: 30px;
}
.means__item::before {
    border: 80px solid transparent;
    border-bottom-color: #008cce;
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    left: -80px;
    top: -80px;
    transform: rotate(-45deg);
    z-index: 2;
}
.means__item::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 33px;
    width: 36px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}
.means__item.means1::after {
    background-image: url("./../img/common/means/means_num_1.png");
}
.means__item.means2::after {
    background-image: url("./../img/common/means/means_num_2.png");
}
.means__title {
    color: #008cce;
    font-size: 1.15rem;
    font-weight: 500;
    position: relative;
    margin: auto;
    margin-bottom: 3.5rem;
    min-width: 270px;
    width: 30%;
    text-align: center;
}
.means__title .small {
    display: block;
    margin-bottom: 0.5rem;
}
.means__title::before,
.means__title::after {
    color: #c8e8fd;
    display: block;
    font-size: 6rem;
    position: absolute;
    top: 0;
}
.means__title::before {
    content: "“";
    left: -50px;
}
.means__title::after {
    content: "”";
    right: -50px;
}
.means__flow {
    background-color: #e6f5fe;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 3rem 3rem 1.2rem;
    position: relative;
}
.means__flow-title {
    background-color: #15456a;
    color: #fff;
    display: block;
    text-align: center;
    padding: 1rem 8rem;
    border-radius: 2rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.means__flow-list {
    align-items: center;
    display: flex;
    justify-content: center;
}
.means__flow-item {
    align-items: center;
    color: #15456a;
    display: flex;
    font-size: 1.15rem;
    font-weight: 500;
    position: relative;
}
.means__flow-item.add-arrow::after {
    background-image: url("./../img/common/means/means_step_arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 26px;
    content: "";
    display: block;
    margin-left: 1.5rem;
    height: 30px;
    width: 30px;
}
.means__flow-item.add-flownum::before {
    background-color: #15456a;
    border-radius: 50%;
    color: #fff;
    content: "";
    display: block;
    font-size: 0.9rem;
    left: -0.7rem;
    top: -0.3rem;
    line-height: 2rem;
    position: absolute;
    text-align: center;
    width: 2rem;
}
.means__flow-item.flow1::before {
    content: "1";
}
.means__flow-item.flow2::before {
    content: "2";
}
.means__flow-item.flow3::before {
    content: "3";
}
.means__flow-item:not(:last-child) {
    margin-right: 2rem;
}
.means__flow-img {
    display: block;
    margin-right: 1rem;
    width: 82px;
}
.means__point {
    align-items: center;
    border: 3px solid #ff7e00;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 3rem 1rem 5rem;
}
.means__point-mark {
    background-color: #ff7e00;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    font-family: "Barlow Condensed";
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 75px;
    text-align: center;
    width: 75px;
}
.means__point-text {
    color: #ff7e00;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 1rem;
    width: 70%;
}
.means__point-img {
    width: 24.5%;
}
.means__text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
}
.means__recommend-title {
    background-color: #008ccf;
    border-radius: 14px;
    color: #fff;
    font-size: 1.1rem;
    margin: auto;
    margin-bottom: 1rem;
    padding: 0.3rem 1rem 0.4rem;
    text-align: center;
    width: 14rem;
}
.means__recommend-text {
    color: #008cce;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .means {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
    .means__item {
        padding: 2.5rem 1rem;
    }

    /* 表示順調整--- */
    .means__title {
        order: 1;
    }
    .means__flow {
        order: 3;
    }
    .means__text {
        order: 2;
    }
    .means__point {
        order: 5;
    }
    .means__recommend {
        order: 4;
    }
    /* 表示順調整--- */

    .means__item::before {
        border-width: 50px;
        left: -50px;
        top: -50px;
    }
    .means__item::after {
        height: 17px;
        width: 19px;
        left: 0.5rem;
        top: 0.5rem;
    }
    .means__title {
        margin-bottom: 1.5rem;
        min-width: unset;
        width: 60%;
        white-space: nowrap;
    }
    .means__title::before,
    .means__title::after {
        font-size: 4.5rem;
    }
    .means__title::before {
        left: -30px;
    }
    .means__title::after {
        right: -30px;
    }
    .means__title .main {
        display: block;
        font-size: 2rem;
    }
    .means__flow {
        padding: 2rem 1rem 1rem 2rem;
    }
    .means__flow-list {
        align-items: flex-start;
        flex-direction: column;
    }
    .means__flow-img {
        width: 60px;
    }
    .means__flow-text {
        width: calc(100% - 60px - 1rem);
    }
    .means__flow-item {
        flex-wrap: wrap;
        font-size: 1.3rem;
        width: 100%;
    }
    .means__flow-item:not(:last-child) {
        margin-right: 0;
    }
    .means__flow-item.add-arrow::after {
        margin-left: 0;
        transform: rotate(90deg);
        width: 100%;
    }
    .means__flow-title {
        padding: 1rem 2rem;
        width: 60%;
    }
    .means__point {
        flex-direction: column;
        margin-bottom: 0;
        padding: 2rem 1rem;
        margin-top: 1.5rem;
        position: relative;
    }
    .means__point-mark {
        border-radius: 14px;
        line-height: 2rem;
        position: absolute;
        top: -1rem;
        width: 40%;
    }
    .means__point-text,
    .means__point-img {
        width: 100%;
    }
    .means__point-text {
        margin-bottom: 1rem;
    }
    .means__point-img {
        padding: 0 3rem;
    }
    .means1 .means__recommend {
        margin-bottom: 2rem;
    }
}

/*
横2列タイプの表示
------------------------------- */
.means.small .title-basic {
    border-color: #c8e8fd;
    line-height: 1.6;
    margin-bottom: 4rem;
}
.means.small .title-basic .main {
    color: #15456a;
}
.means.small .means__inner {
    display: flex;
}
.means.small .means__item {
    border-width: 4px;
    display: block;
    padding: 4rem 3%;
    width: 48.5%;
}
.means.small .means__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 3%;
}
.means.small .means__item::before {
    left: -82px;
}
.means.small .means__title {
    margin-bottom: 1.5rem;
}
.means.small .means__title .small {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.means.small .means__title .main {
    font-size: 2.7rem;
    font-weight: 600;
}
.means.small .means__title::before,
.means.small .means__title::after {
    font-size: 8rem;
    top: 34px;
}
.means.small .means__text {
    line-height: 1.8;
    padding: 0 2rem;
    text-align: left;
}
.means.small .means__recommend-title {
    border-radius: 24px;
    font-size: 1.3rem;
    padding: 1rem;
    width: 70%;
}
.means.small .means__recommend-text {
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .means1 .means__recommend {
        margin-bottom: 0;
    }
    .means.small .means__inner {
        flex-direction: column;
    }
    .means.small .means__item {
        padding: 2rem 1.5rem;
        width: 100%;
    }
    .means.small .means__item:not(:last-child) {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
    .means.small .means__item::before {
        left: -50px;
    }
    .means.small .means__text {
        margin-bottom: 1.5rem;
        padding: 0;
    }
}

/* 追加(.p-means__strength) */

.p-means__strength {
    padding: 46px 11% 48px;
    background-color: #fff;
    margin: 40px 0;
}

.p-means__strengthTtl {
    text-align: center;
    margin-bottom: 34px;
}

.p-means__strengthFlex {
    display: flex;
    justify-content: space-between;
}

.p-means__strengthCard {
    text-align: center;
}

.p-means__strengthImg {
    margin-bottom: 24px;
}
.p-means__strengthText {
    display: inline-block;
    font-size: 24px;
    max-width: 8em;
    line-height: 1.33;
}
span.p-means__orange {
    font-weight: bold;
    color: #fa7d1f;
}
/* 該当する画像がブロック要素の場合でも中央揃えにするためのコード */
.p-means__strengthTtl img,
.p-means__strengthImg img,
.p-means__bottomTryangle img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.p-means__bottom {
    text-align: center;
}
.p-means__bottomTryangle {
    margin-bottom: 24px;
}

.p-means__bottomText {
    color: #2c8cce;
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .p-means__strengthFlex {
        flex-direction: column;
    }

    .p-means__strengthCard {
        margin-bottom: 40px;
    }

    .p-means__strengthImg {
        margin-bottom: 15px;
    }

    .p-means__bottomTryangle {
        width: 75px;
        margin: 0 auto 24px;
    }

    .p-means__bottomText {
        font-size: 22px;
    }
}

/* -------------------------------------------------
  想定価格を算出する
------------------------------------------------- */
.calculator {
    margin-bottom: 4rem;
}
.calculator .anc {
    padding-top: 93px;
    margin-top: -93px;
}
.calculator__inner {
    margin: auto;
    text-align: center;
    width: 75%;
}
.calculator__menu {
    display: flex;
}
.calculator__menu-item {
    background-color: #ddd;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    transition: 0.3s;
}
.calculator__menu-item.is-active {
    background-color: #008cce;
    color: #fff;
}
.calculator__menu-item:not(:last-child) {
    margin-right: 0.3rem;
}
.calculator__menu-item:hover {
    background-color: #008cce;
    color: #fff;
}
.calculator__menu-item.is-active:hover {
    background-color: #008cce;
    color: #fff;
    opacity: 0.7;
}
.calculator__content {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
}
.calculator .radio {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.calculator .radio__item {
    width: auto;
}
.calculator .radio__item {
    border: 1px solid #008cce;
}
.calculator__inputtext {
    display: flex;
    width: 100%;
}
.calculator__inputtext input {
    border: 1px solid #008ccf;
    display: block;
    flex-basis: 80%;
    font-size: 1.15rem;
    padding: 0.9rem 1.5rem;
    transition: 0.3s;
}
.calculator input:focus {
    background-color: #c8e8fd;
    outline: none;
}
.calculator__srchbtn {
    background-color: #008ccf;
    color: #fff;
    display: block;
    flex-basis: 20%;
    font-size: 1.15rem;
    padding: 0 3rem;
    transition: 0.3s;
}
.calculator__srchbtn:hover {
    opacity: 0.7;
}
.calculator__datas {
    padding: 2rem 0;
}
.calculator__datas-inner {
    justify-content: center;
    display: flex;
    margin-bottom: 1rem;
}
.calculator__datas input,
.calculator__datas select {
    border: 1px solid #008cce;
    padding: 0.5rem;
    transition: 0.3s;
    width: 7rem;
}
.calculator__datas input {
    margin-right: 0.3rem;
}
.calculator__datas input[type="number"] {
    text-align: right;
}
.calculator__datas input:focus,
.calculator__datas select:focus {
    outline: none;
}
.calculator__datas-item:not(:last-child) {
    margin-right: 1rem;
}
.calculator__datas-btn {
    background-color: #ff7e00;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(150, 150, 150, 0.3);
    color: #fff;
    font-size: 1.15rem;
    margin-top: 1rem;
    padding: 1rem 2rem;
    transition: 0.3s;
}
.calculator__datas-btn:hover {
    background-color: #f89430;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.calculator__result {
    border-bottom: 1px solid #bbb;
    border-top: 1px solid #bbb;
    margin-bottom: 1.5rem;
    padding: 2rem 0;
}
.calculator__result-text {
    font-size: 1.15rem;
    line-height: 1.4;
}
.calculator__result-text:not(:last-child) {
    margin-bottom: 0.8rem;
}
.calculator__result-text .num {
    color: #e42929;
    font-size: 1.5rem;
    font-weight: 600;
}
.calculator__proviso {
    font-size: 0.9em;
    line-height: 1.6;
    margin-top: 1.5rem;
}
.calculator__link {
    text-align: center;
}
.calculator__link .btn {
    background-color: #fff038;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(150, 150, 150, 0.3);
    color: #15456a;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: 0.3s;
}
.calculator__link .btn:hover {
    background-color: #15456a;
    border-color: #15456a;
    color: #fff;
}
.calculator__attention {
    color: #008cce;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 3rem 0;
    text-align: center;
}
.calculator__ancArea {
    margin: 2rem 0 1rem;
}
.calculator__ancArea ul {
    background: #f0f9ff;
    padding: 2rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.calculator__ancArea ul li {
    min-width: 330px;
}
.calculator__ancArea ul li:not(:last-of-type) {
    margin-right: 2rem;
}
.calculator__ancArea a.btn {
    position: relative;
    width: 100%;
    background-color: #fa7d1f;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgb(100 100 100 / 30%);
    color: #fff;
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 1.5rem;
    transition: 0.3s;
}
.calculator__ancArea a.btn.blue {
    background-color: #2c8ccf;
}
.calculator__ancArea a.btn:hover {
    background-color: #fff;
    border-color: #008cce;
    color: #008cce;
}
.calculator__ancArea a.btn::after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 1.2rem;
    position: absolute;
    top: 32%;
    right: 5%;
}
@media screen and (max-width: 767px) {
    .calculator__ancArea ul {
    }
    .calculator__ancArea ul li {
        width: 80%;
        min-width: auto;
    }
    .calculator__ancArea a.btn {
        font-size: 1.15rem;
        padding: 1.8rem;
    }
    .calculator__ancArea ul li:not(:last-of-type) {
        margin: 0 0 1rem;
    }
}

/* タブ切り替えまわり
------------------------------------------ */
.jq-tablistTarget {
    display: none;
}
.jq-tablistTarget.is-show {
    display: block;
}

@media screen and (max-width: 767px) {
    .calculator__inner {
        width: 100%;
    }
    .calculator__content {
        padding: 1.5rem 1rem;
    }
    .calculator .radio {
        flex-wrap: wrap;
    }
    .calculator .radio__item {
        margin-right: 0;
        width: 100%;
    }
    .calculator__datas-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align-last: left;
    }
    .calculator__datas {
        font-size: 1.2rem;
    }
    .calculator__datas-item {
        width: 50%;
    }
    .calculator__datas-item:not(:last-child) {
        margin-right: 0;
    }
    .calculator__datas-item:last-of-type {
        width: 100%;
    }
    .calculator__datas-btn {
        font-size: 1.4rem;
        width: 100%;
    }
    .calculator__srchbtn {
        padding: 1rem 0;
    }
    .calculator__result {
        font-size: 1.2rem;
    }
    .calculator__result-text .num {
        font-size: 1.7rem;
    }
    .calculator__link .btn {
        font-size: 1.4rem;
        width: 100%;
    }
    .calculator__attention {
        font-size: 1.3rem;
        margin: 2rem 0;
    }
}

/* -------------------------------------------------
  footer
------------------------------------------------- */
.p-disposalButton {
    position: fixed;
    top: 167px;
    right: 0;
    z-index: 100;
}
.p-disposalButton__label {
    padding: 0 8px;
    margin: 0 0 10px;
    background: #fff;
    color: #e01d0d;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}
.p-disposalButton__text {
    position: relative;
    max-height: 5.5em;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 21px;
    font-weight: bold;
    line-height: 1.5;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .p-disposalButton__text {
        width: 100%;
    }
}
.p-disposalButton__text::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    width: 12px;
    height: 12px;
    margin: 0 auto;
    border: solid #fff;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .p-disposalButton {
        top: initial;
        bottom: 0;
        width: 100%;
        padding: 7.5px 10px;
        background: #2c8ccf;
    }
    .p-disposalButton ~ .footer {
        padding-bottom: calc(2.5rem + 50px);
    }
    .p-disposalButton__label {
        padding: 0 6px;
        margin: 0 8px 0 0;
        font-size: 13px;
    }
    .p-disposalButton__text {
        writing-mode: unset;
        font-size: 20px;
    }
    .p-disposalButton__text::after {
        bottom: 0;
        top: 0;
        left: initial;
        right: -13px;
        width: 6px;
        height: 6px;
        margin: auto 0;
        border-width: 2px 2px 0 0;
    }
}

/*add 20201222---*/
.footer__qa {
    position: relative;
    padding: 15px 25px;
    margin: 2rem 0;
    border: 1px solid #008ccf;
    text-align: center;
    cursor: pointer;
}
.footer__qa .foottext__title {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}
.footer__qa .foottext__title::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14.7px 8.5px 0 8.5px;
    border-color: #008ccf transparent transparent transparent;
    transition: 0.3s;
}
.footer__qa .foottext__title.m-open::after {
    transform: rotate(-180deg);
}
.footer__qa ul {
    display: none;
    margin-top: 1.5em;
    text-align: left;
}
.footer__qa li:nth-of-type(n + 2) {
    margin-top: 10px;
}
.footer__qaList {
    color: #707074;
    line-height: 1.8;
    padding-bottom: 5px;
    border-bottom: 1px dotted #707070;
}
.footer__qaList:last-child {
    border: none;
}
.footer__qaList p:first-child {
    margin: 0 0 5px;
    font-weight: bold;
}
.footer__qaList p {
    display: flex;
    line-height: 1.8;
}
.footer__qaList p span {
    min-width: 15px;
    text-align: center;
    border: none;
}
@media screen and (max-width: 767px) {
    .footer__qa .foottext__title::after {
        right: -20px;
        border-width: 8.7px 5px 0 5px;
    }
}

/*---add 20201222*/
/*add 20201113---*/
.footer__kanren {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.footer__kanren .footerHeading {
    font-size: 1.3rem;
}
.footer__kanren .footerHeading span {
    position: relative;
    padding: 0 25px 0 3px;
}
.footer__kanren .footerHeading span::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0px;
    height: 2px;
    width: 100px;
}
.footer__kanren .footerHeading span::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 100px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.footer__kanren .linkList {
    margin-top: 16px;
    line-height: 1.8;
}
.footer__kanren .linkList a {
    position: relative;
    padding-right: 15px;
    text-decoration: none;
}
.footer__kanren .linkList a:hover,
.footer__kanren .linkList a:active {
    text-decoration: underline;
}
.footer__kanren .linkList a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0px;
    width: 2px;
    height: 10px;
    margin-left: -10px;
}
.footer__kanren .linkList a:nth-of-type(1)::before {
    display: none;
}
.footer__kanren .linkList a {
    color: #0057fa;
}
.footer__kanren .footerHeading span::before,
.footer__kanren .footerHeading span::after,
.footer__kanren .linkList a::before {
    background-color: #c8d5e2;
}
/*---add 20201113*/

.foottext {
    margin-bottom: 2.5rem;
}
.foottext__title {
    color: #008ccf;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}
.foottext__content {
    color: #707070;
    line-height: 1.8;
}
.footer {
    background-color: #008ccf;
    color: #fff;
    padding: 2.5rem 0 5rem;
}
.footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__main-item {
    width: 50%;
}
.footer__logo {
    display: block;
    margin: auto;
    margin-bottom: 3rem;
    width: 40%;
    aspect-ratio: 115/68; /* CLS対策 */
}
.footernav-wrapper a[target="_blank"]::after {
    content: '';

    /* 外部サイトアイコン */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF' d='M14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3m-2 16H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;

    /* アイコンのサイズ */
    display: inline-block;
    width: 1.0em;
    height: 1.0em;

    /* アイコンの位置調整 */
    margin-left: 0.3rem;
    position: relative;
    top: 0.1em;
}
.footernav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0 auto;
    gap: 2.5rem;
}
.footernav:first-of-type {
    margin-bottom: 1rem;
}
.footernav__item a {
    color: #fff;
    text-decoration: none;
}
.footernav__item:hover a {
    opacity: 0.7;
    text-decoration: underline;
}
/*.footernav__item:not(:last-child)::after {*/
/*    color: azure;*/
/*    content: "｜";*/
/*    padding: 0 1rem;*/
/*}*/
.footer__info {
    padding-left: 4rem;
}
.footer__logosub {
    display: block;
    margin-bottom: 2rem;
    width: 60%;
}
.footer__office-item {
    line-height: 1.6;
}
.footer__office-item:not(:last-child) {
    margin-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
    .foottext {
        margin-bottom: 1rem;
        padding-top: 1.5rem;
    }
    .foottext__title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .foottext__content {
        font-size: 0.9rem;
    }
    .footer {
        padding-bottom: 2.5rem;
    }
    .footer__main-item {
        width: 100%;
    }
    .footernav__item:not(:last-child)::after {
        padding: 0 0.7rem;
    }
    .footer__logo {
        margin-bottom: 1.5rem;
    }
}

/* 追加分2023_08 */
.foottext__content {
    margin-bottom: 33px;
}

.foottext__btn {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.foottext__btn a {
    display: block;
    width: 330px;
    max-width: 330px;
    line-height: 66px;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: #fff;
    text-align: center;
}

.btn__easy {
    background-color: #fa7d1f;
    margin-right: 27px;
}
.btn__correct {
    background-color: #2c8ccf;
}

@media screen and (max-width: 580px) {
    .foottext__btn {
        flex-direction: column;
    }

    .foottext__btn a {
        width: 90%;
    }

    .btn__easy {
        margin: 0 auto 20px;
    }
    .btn__correct {
        margin: 0 auto;
    }
}

.p-quick__movie {
    position: fixed;
    right: 20px;
    bottom: 40px;
}

@media screen and (max-width: 768px) {
    .p-quick__movie {
        width: 30%;
    }
}

/*-----------------------------------------------
バナー
----------------------------------------------- */
.banner {
    display: flex;
    flex-wrap: wrap;
    margin: 3rem auto 4rem;
}
.banner__text {
    color: #008cce;
    font-size: 1.55rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}
.banner__link img {
    transition: 0.3s;
    aspect-ratio: 285/104; /* CLS対策 */
}
.banner__link {
    box-shadow: 0 3px 8px rgba(150, 150, 150, 0.5);
    border-radius: 20px;
    overflow: hidden;
}
.banner__link:hover img {
    opacity: 0.8;
}
.banner-2col {
    justify-content: space-between;
}
.banner-2col .banner__link {
    width: 49%;
}
@media screen and (max-width: 767px) {
    .banner-2col {
        flex-wrap: wrap;
    }
    .banner-2col .banner__link {
        width: 100%;
    }
    .banner__link:not(:last-child) {
        margin-bottom: 1rem;
    }
}

/*-----------------------------------------------
よくある質問
----------------------------------------------- */
.faqblock {
    margin-bottom: 3rem;
    margin-top: 5rem;
}
.faq__title,
.faq__answer {
    color: #008cce;
    font-weight: 500;
    line-height: 1.6;
    padding: 1.2rem 3rem;
}
.faqlist {
    counter-reset: questionNum;
    margin-top: 2.5rem;
}
.faq__title {
    background-color: #f0f9ff;
    font-size: 1.4rem;
}
.faqlist .faq__title::before {
    counter-increment: questionNum;
    content: "Q" counter(questionNum) "．";
}
.faq__answer {
    background-color: #fff;
    font-size: 1.15rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.faq__answer::before {
    content: "A．";
}
@media screen and (max-width: 767px) {
    .faqblock {
        margin-bottom: 2rem;
        margin-top: 3rem;
    }
    .faq__title,
    .faq__answer {
        padding: 1rem;
    }
    .faq__title {
        font-size: 1.2rem;
    }
    .faq__answer {
        font-size: 1.1rem;
        padding-bottom: 2rem;
    }
}

.p-request {
    padding: 60px 0 70px;
}
@media screen and (max-width: 767px) {
    .p-request {
        padding: 10vw 0;
    }
}
.p-request__ttl {
    position: relative;
    color: #fff;
    font-size: 24px;
    line-height: 1.8;
    margin: 0 0 20px;
    padding: 0 0 0 118px;
}
.p-request__subscript {
    font-size: 16px;
    color: #15456a;
    line-height: 1.8;
}
.p-request__ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 92px;
    height: 94px;
}
@media screen and (max-width: 767px) {
    .p-request__ttl {
        font-size: 4.3vw;
        padding: 0 0 0 17vw;
        margin: 0;
        font-weight: 500;
    }
    .p-request__subscript {
        font-size: 3.7vw;
    }
    .p-request__ttl.-second {
        padding: 2vw 0 2vw 18vw !important;
    }
    .p-request__ttl::before {
        left: 1vw;
        width: 16vw;
        height: 16vw;
    }
}
.p-request__ttl.-first {
    background: #ff7e00;
}
.p-request__ttl.-first::before {
    background: url("../img/common/bg_request_ttl01@2x.png") 0 0 no-repeat;
    background-size: 100% auto;
}
.p-request__ttl.-second {
    background: #008ccf;
    margin-top: 90px;
    padding: 6px 0 6px 122px;
}
.p-request__ttl.-second::before {
    background: url("../img/common/bg_request_ttl02@2x.png") 0 0 no-repeat;
    background-size: 100% auto;
}
.p-request__ttl span {
    font-size: 18px;
}
.p-request__ttl p {
    font-size: 15px;
    margin-bottom: -6px;
    line-height: 1.8;
    padding: 0 5px;
}
@media screen and (max-width: 767px) {
    .p-request__ttl span {
        font-size: 3.2vw;
    }
    .p-request__ttl p {
        font-size: 2.7vw;
    }
}
@media screen and (max-width: 640px) {
    .p-request__ttl p {
        margin-bottom: 0;
    }
}
.p-request__underlink {
    margin: 5px auto 0;
    line-height: 1.8;
}
.p-request__underlink a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding-left: 20px;
    box-sizing: border-box;
}
.p-request__underlink a:before {
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #008ccf;
}
@media screen and (max-width: 767px) {
    .p-request__underlink a {
        font-size: 14px;
        padding-left: 15px;
    }
    .p-request__underlink a:before {
        top: 4px;
    }
}
.-selected {
    background-color: #c8e8fd;
}
/*-----------------------------------------------
Hight Chart
----------------------------------------------- */
.p-areaTransition__comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 932px;
    padding: 10px 0;
    margin: 35px auto 8px;
    border: 2px solid #2c8ccf;
    border-radius: 10px;
}
.p-areaTransition__comparisonWrap {
    display: flex;
    align-items: center;
}
.p-areaTransition__comparisonWrap:nth-child(2) {
    border: solid #c7c7c7;
    border-width: 0 0 0 1px;
    padding-left: 5%;
    margin-left: 5%;
}
.p-areaTransition__year {
    color: #2c8ccf;
    font-size: 16px;
}
.p-areaTransition__price {
    align-items: baseline;
    margin: 0 20px;
    font-size: 16px;
}
.p-areaTransition__price span {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
}
.p-areaTransition__ratio {
    position: relative;
    min-width: 123px;
    padding: 10px 26px 10px 12px;
    background: #2c8ccf;
    color: #fff;
    font-size: 22px;
    border-radius: 20px;
}
.p-areaTransition__ratio.-down {
    background: #d63636;
}
.p-areaTransition__ratio.-equal {
    background: #808080;
    text-align: center;
    padding: 10px 24px;
}
.p-areaTransition__ratio.m-down::after {
    content: "↓";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 22px;
    height: 22px;
    margin: auto 0;
}
.p-areaTransition__ratio.m-up::after {
    content: "↑";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 22px;
    height: 22px;
    margin: auto 0;
}
@media screen and (max-width: 841px) {
    .p-areaTransition__comparisonWrap:nth-child(2) {
        padding-left: 25px;
        margin-left: 25px;
    }

    .p-areaTransition__price {
        margin: 0 15px;
    }
}
@media screen and (max-width: 767px) {
    .p-areaTransition__comparison {
        display: block;
        width: 100%;
        padding: 10px;
        margin: 35px auto 8px;
    }
    .p-areaTransition__comparisonWrap {
        justify-content: space-between;
    }
    .p-areaTransition__comparisonWrap:nth-child(2) {
        border-width: 1px 0 0 0;
        padding: 10px 0 0;
        margin: 10px 0 0;
    }
    .p-areaTransition__year {
        font-size: 13px;
    }
    .p-areaTransition__price {
        margin: 0 10px;
        font-size: 13px;
    }
    .p-areaTransition__price span {
        font-size: 28px;
    }
    .p-areaTransition__ratio {
        max-width: 100px;
        min-width: auto;
        padding: 10px 26px 10px 12px;
        font-size: 16px;
        flex: 1;
    }
    .p-areaTransition__ratio.m-down::after {
        right: 8px;
    }
    .p-areaTransition__ratio.m-up::after {
        right: 8px;
    }
}
.p-areaHighly__wrap {
    width: 100%;
    margin: 72px auto 0;
}
.p-areaHighly__top5 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 44px;
}
.p-areaHighly__top5Item {
    position: relative;
    width: calc((100% - 60px) / 3);
    padding: 35px 20px 21px;
    margin: 53px 30px 0 0;
    border: 2px solid #2c8ccf;
    border-radius: 10px;
    text-align: center;
}
.p-areaHighly__top5Item:last-child {
    margin-right: 0;
}
.p-areaHighly__top5Item.m-wide {
    width: calc((100% - 30px) / 2);
    margin: 0 30px 0 0;
}
.p-areaHighly__top5Item.m-wide:nth-child(n + 2) {
    margin-right: 0;
}
.p-areaHighly__crown {
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 76px;
    padding: 26px 0 0;
    margin: 0 auto;
    color: #fff;
    background: url("../img/common/area/ico_crown.svg") no-repeat;
    background-size: 100%;
    line-height: 1.5;
}
.p-areaHighly__crown span {
    font-size: 23px;
}
.p-areaHighly__area {
    display: inline-block;
    margin-bottom: 10px;
    color: #15456a;
    font-size: 20px;
    text-decoration: underline;
    text-underline-position: under;
    line-height: 1.5;
    transition: 0.3s;
}
.p-areaHighly__area:hover {
    opacity: 0.7;
}
.p-areaHighly__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 23px;
}
.p-areaHighly__price span {
    color: #fa7d1f;
    font-size: 45px;
}
.p-areaHighly__other {
    display: flex;
}
.p-areaHighly__otherTable {
    margin-bottom: 8px;
}
.p-areaHighly__otherArea a {
    color: #15456a;
    text-decoration: underline;
    text-underline-position: under;
    line-height: 1.5;
    transition: 0.3s;
}
.p-areaHighly__otherArea a:hover {
    opacity: 0.7;
}
.p-areaHighly__otherPrice {
    line-height: 1.4;
}
.p-areaHighly__otherPrice span {
    font-size: 32px;
}
@media screen and (max-width: 767px) {
    .p-areaHighly__wrap {
        width: 100%;
        margin: 45px auto 0;
    }
    .p-areaHighly__top5 {
        justify-content: space-between;
        margin: 0;
    }
    .p-areaHighly__top5Item {
        position: relative;
        width: calc((100% - 20px) / 2);
        padding: 25px 10px 15px;
        margin: 0 0 45px;
        margin-right: 0;
    }
    .p-areaHighly__top5Item.m-wide {
        width: calc((100% - 20px) / 2);
        margin: 0 0 45px;
    }
    .p-areaHighly__top5Item.m-wide.m-top {
        width: 100%;
        margin: 0 0 45px;
    }
    .p-areaHighly__crown {
        position: absolute;
        top: -38px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: baseline;
        width: 76px;
        padding: 26px 0 0;
        margin: 0 auto;
        color: #fff;
        background: url("../img/common/area/ico_crown.svg") no-repeat;
        background-size: 100%;
        line-height: 1.5;
    }
    .p-areaHighly__crown span {
        font-size: 20px;
    }
    .p-areaHighly__area {
        color: #15456a;
        font-size: 18px;
        text-decoration: underline;
        text-underline-position: under;
        line-height: 1.5;
    }
    .p-areaHighly__price {
        font-size: 15px;
    }
    .p-areaHighly__price span {
        font-size: 32px;
    }
    .p-areaHighly__top5Item.m-wide.m-top .p-areaHighly__price {
        font-size: 20px;
    }
    .p-areaHighly__top5Item.m-wide.m-top .p-areaHighly__price span {
        font-size: 40px;
    }
    .p-areaHighly__other {
        display: block;
    }
    .p-areaHighly__otherTable {
        width: 100%;
    }
    .p-areaHighly__otherPrice {
        line-height: 1.4;
    }
    .p-areaHighly__otherPrice span {
        font-size: 28px;
    }
    .p-areaHighly__otherImage {
        display: none;
    }
}
/*Css Graph*/
.myChart {
    max-height: 45vh;
}

.point__span {
    display: block;
    margin-bottom: 1rem;
    transition: 0.3s;
}

/** Css Iframe */
button.btn.-start:disabled {
    background: #878b95;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

.assessform__main.-iframe {
    background-color: #fff;
}

.assessform.-iframe {
    padding-top: 0;
    padding-bottom: 0;
}
.assessform.-iframe .inner {
    padding: 0;
}

.assessform__btn .btn_iframe {
    width: 413px;
}

@media screen and (max-width: 767px) {
    .assessform__btn .btn_iframe {
        width: 100%;
    }
    .assessform__main.-iframe .select::after {
        top: 0;
        bottom: 0;
        margin: auto 0;
        border-width: 5px 5px 0;
    }
}

@media screen and (max-width: 640px) {
    .assessform__btn .btn_iframe {
        font-size: 5.33333vw;
    }
}

/** End Css Iframe */

/*売却査定受付なし*/
.mainvis__form.m-rejected {
    padding: 2rem 0.8rem;
    background: #fff;
    color: #f00;
}
.mainvis__form.m-rejected p {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 36px;
}
@media screen and (max-width: 767px) {
    .mainvis__form.m-rejected p {
        font-size: 2.2rem;
    }
}

/*査定フォーム注釈*/
.p-valuationFixAnnotation {
    margin: 0.5em 0 0;
}
.p-valuationFixAnnotation.m-white {
    color: #fff;
}

/*
  10秒査定メインビジュアル 2022/07/08追加
  10秒査定 2023/08/17改修
*/
.p-quickMain {
    position: relative;
    background: #008ccf;
}
.p-quickMain__wrap {
    padding-top: 104px;
    padding-right: 37.5%; /* 450px */
    padding-bottom: 94px;
    background-image: url("../img/common/quick/main_fujimotomiki.png");
    background-position: bottom right;
    background-size: auto calc(100% - 20px);
    color: #fff;
    text-align: left;
}

.p-quickMain__ttl {
}
.p-quickMain__spFigure {
    display: none;
}
@media screen and (max-width: 767px) {
    .p-quickMain__wrap {
        padding-top: 3.5rem;
        padding-right: 0;
        padding-bottom: 0;
        background-image: none;
        color: #fff;
        text-align: center;
    }
    .p-quickMain__label {
        padding: 0 20px;
        font-size: 12px;
    }
    .p-quickMain__label::before,
    .p-quickMain__label::after {
        width: 15px;
        height: 15px;
        background-size: 15px 15px;
    }
    .p-quickMain__ttl {
        position: relative;
        width: 85%;
        max-width: 600px;
        margin: 0 auto;
    }
    .p-quickMain__spFigure {
        display: block;
        margin: 1.5rem auto 0;
        width: 100%;
        padding-right: 10%;
        max-width: 600px;
    }
}

/* 10秒で売却価格・賃貸の相場をチェック（匿名） */
.p-quickPrice {
    padding: 4.2rem 0 3rem;
}
.p-quickPrice .leadtext {
    margin: 0 0 2rem;
}
.p-quickPrice .calculator__attention {
    margin: 6.5rem auto 0;
}

.p-quickPriceBlock + .p-quickPriceBlock {
    margin-top: 3.5rem;
}
.p-quickPriceBlock__title {
    position: relative;
    margin-bottom: 0;
}
.calculator__title::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10.5px 16.7px 10.5px;
    border-color: transparent transparent #ffffff transparent;
    transition: 0.3s;
}
.calculator__title.m-close::after {
    transform: rotate(-180deg);
}
[data-accordion] .p-quickPriceBlock__title {
    cursor: pointer;
}
.p-quickPriceBlock__content {
    padding: 0;
}
.p-quickPriceBlock__inner {
    padding: 2.14rem 0 0;
}

.p-quickPriceBlock.is-close {
}

.p-quickPrice__list li {
    display: flex;
    align-items: flex-start;
    max-width: 580px;
    margin: 0 auto;
    padding: 18px 20px 12px;
    border-bottom: 1px dotted #bbb;
}
.p-quickPrice__list img {
    padding: 7px 0 3px;
}
.p-quickPrice__list p {
    color: #2c8cce;
    font-size: 24px;
    font-weight: 500;
    line-height: calc(35 / 24);
    margin-left: 15.8px;
}
@media screen and (max-width: 767px) {
    .p-quickPrice {
        padding: 3rem 0 2rem;
    }
    .p-quickPrice .leadtext {
        margin: 0 0 1.5rem;
    }
    .p-quickPrice .calculator__attention {
        margin: 3.2rem auto 0;
    }

    .p-quickPrice__list li {
        display: flex;
        align-items: flex-start;
        max-width: 580px;
        margin: 0 auto;
        padding: 10px 16px 8px;
        border-bottom: 1px dotted #bbb;
    }
    .p-quickPrice__list img {
        width: 24px;
        padding: 4px 0 0;
    }
    .p-quickPrice__list p {
        font-size: 18px;
        line-height: 1.5;
        margin-left: 8px;
    }
}

.p-quickDeals {
    margin-bottom: 4rem;
}
.p-quickDeals .deals__lead {
    width: 42%;
    margin-left: 0;
}
.p-quickDeals .btn-basic.deals__link {
    max-width: 388px;
    margin: 0 auto;
}
.p-quickDeals .btn-basic.deals__link.m-blue {
    margin-top: 10px;
    background: #fff;
    color: #008ccf;
}
.p-quickDeals .btn-basic.deals__link.m-blue::after {
    color: #008ccf;
}
.p-quickDeals .btn-basic.deals__link.m-blue:hover {
    text-shadow: none;
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
    .p-quickDeals .deals__lead {
        width: 100%;
        margin-left: 0;
        margin-bottom: 1rem;
    }
}
/* Add css 2022/07/12 */
.bg-white {
    background: white !important;
}
.bg-transparent {
    background: transparent !important;
}
.pb-2 {
    padding-bottom: 2rem !important;
}
@media screen and (max-width: 767px) {
    .pb-2 {
        padding-bottom: 0 !important;
    }
}

/* エリアページ */
.area_page {
    overflow-x: hidden;
    padding: 165px 0 100px;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .area_page {
        padding: 0 0 40px;
    }
}

.areaprice__anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.areaprice__anchor a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #008ccf;
    font-size: 16px;
    text-decoration: underline;
}
.areaprice__anchor a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: solid #008ccf;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .areaprice__anchor {
        flex-direction: column;
        gap: 20px;
    }
}

/* Add css 2022/08/24 */
.c-youtube {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.c-youtube__link {
    position: relative;
    display: block;
}
.c-youtube__link img {
    width: 100%;
    height: auto;
}
.c-youtube__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 117px;
    height: 82px;
    background: url("../img/common/icon_youtube-play.svg") no-repeat;
    object-fit: contain;
}
@media (hover: hover) {
    .c-youtube__link:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 767px) {
    .c-youtube__link::before {
        width: 70px;
        height: 49px;
    }
}

/* 不動産売却を成功させるには */
.p-success {
    padding: 0 0 110px;
}
.p-success__lead {
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 1.6;
}
.p-success__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 85px 70px;
    margin: 80px 0 0;
}
.p-success__item {
    width: 100%;
    max-width: 450px;
    text-align: center;
}
.p-success__text {
    font-size: 20px;
    line-height: 1.6;
}
.p-success__link {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-success {
        padding: 50px 0;
    }
    .p-success__lead {
        margin: 20px 0 0;
        font-size: 14px;
    }
    .p-success__list {
        gap: 2rem;
        margin: 3rem 0 0;
    }
    .p-success__item {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .p-success__text {
        font-size: 1.35rem;
        line-height: 1.6;
    }
    .p-success__link {
        margin-top: 15px;
    }
}

/* -------------------------------------------------
  Utility
------------------------------------------------- */
/* 表示切替 */
.u-sp {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .u-pc {
        display: none !important;
    }

    .u-sp {
        display: block !important;
    }
}

/* レイアウト */
.u-center {
    text-align: center;
}

/* メインジュアル下スペース調整 */
.u-mvUnder {
    display: block;
    padding-top: 165px;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .u-mvUnder {
        display: none;
    }
}

/* Css section guide: 2025/06/25 */
.c_linkto {
    display: block;
    font-weight: 700;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-decoration: none !important;
    min-height: 265px;
    box-shadow: 0 2px 4px 0 rgba(24, 44, 84, 0.1), 0 2px 8px 0 rgba(24, 44, 84, 0.1);
}
.c_linkto:hover {
    color: #888;
    text-decoration: none;
}
.c_linkto_img_wrap {
    display: block;
    height: 0;
    margin: 0;
    overflow: hidden;
    padding-bottom: 57.7%;
    position: relative;
}
.c_linkto:not(.longc_linkto) img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}
.c_linkto .c_linkto_text {
    display: block;
    line-height: 1.6;
    padding: 15px 13px;
}
.sng-link-time {
    color: #b5b5b5;
    display: block;
    font-size: 13.5px;
    margin-bottom: 5px;
}
.c_linkto_text p {
    font-size: 15px;
    margin: 8px 0 0;
}
.c-preparation {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #008bcf !important;
}

/* -- 以下 2025/06 未使用 -- */
/* -------------------------------------------------
  main visual
------------------------------------------------- */
/* .mainvis {
    background-image: url("./../img/common/mainvisual_bg.jpg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0 2rem;
}
.mainvis__inner {
    display: flex;
    justify-content: space-between;
}
.mainvis__maintext {
    color: #fff;
    letter-spacing: 1px;
    padding-top: 2rem;
    width: 50%;
}
.maintext__top {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
}
.maintext__label {
    background-color: #fff038;
    color: #15456a;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    padding: 0.7rem 2.2rem;
}
.maintext__main {
    font-weight: 500;
    margin-bottom: 1.8rem;
}
.maintext__main .large {
    display: block;
    font-size: 4.43rem;
    margin-bottom: 1.4rem;
}
.maintext__main .middle {
    font-size: 2.75rem;
    line-height: 1.3;
}
.maintext__description {
    font-size: 1.36rem;
    font-weight: 500;
    line-height: 1.8;
}
.mainvis__form {
    background-color: #008ccf;
    border: 5px solid #fff;
    border-radius: 0.8rem;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    position: relative;
    width: 40%;
}
.mainvis__form .select {
    margin-bottom: 0.5rem;
}
.mainvis__baloon {
    background-color: #fff038;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    height: 105px;
    left: -4rem;
    top: -2.5rem;
    line-height: 1.4;
    padding-top: 2rem;
    position: absolute;
    text-align: center;
    width: 105px;
}
.mainvis__form-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.mainvis__form-btn {
    background-color: #e00000;
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
    width: 100%;
}
.mainvis__form-btn:hover {
    background-color: #e42929;
    box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5);
    animation: mainVisBtnBound 1s infinite;
}
.mainvis__form-btn::before {
    color: #e00000;
}
@keyframes mainVisBtnBound {
    0% {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
    30% {
        margin-top: 1.65rem;
        margin-bottom: -0.15rem;
    }
    45% {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
    100% {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .mainvis {
        background-position-x: 18%;
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
    .mainvis__inner {
        flex-direction: column;
    }
    .mainvis__maintext,
    .mainvis__form {
        width: 100%;
    }
    .maintext__label {
        margin-bottom: 1rem;
    }
    .mainvis__maintext {
        padding-top: 1rem;
        text-align: center;
    }
    .maintext__top {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .maintext__main {
        margin-bottom: 1rem;
    }
    .maintext__main .large {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    .maintext__main .middle {
        font-size: 1.75rem;
    }
    .maintext__description {
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 1.5rem;
    }
    .mainvis__form {
        padding: 2rem 1rem 1.5rem;
    }
    .mainvis__form-title {
        font-size: 1.4rem;
        padding-left: 1.5rem;
    }
    .mainvis__baloon {
        font-size: 1.1rem;
        left: -1rem;
        height: 75px;
        top: -2.5rem;
        padding-top: 1.7rem;
        width: 75px;
    }
    .mainvis__form .select:last-of-type {
        margin-bottom: 0.8rem;
    }
    .mainvis__form-btn {
        font-size: 1.8rem;
    }
} */
