@charset "utf-8";


body {
    /*スマホで勝手に文字が大きくなる対策*/
    -webkit-text-size-adjust: 100%;
}

#contents {
    width: 100%;
    padding-bottom: 0;
    background-color: #fff;
}

:root {
    --color-primary: #1E2189;
    --color-secondary: #68C0F0;
    --color-accent: #EAF98E;
    --color-line: #71FFAB;
    --color-black: #1E1E1E;
    --color-white: #FFFFFF;
    --color-gray: #8F8F8F;
    --color-light-gray: #CECECE;
    --color-bg-gray: #D9D9D9;
    --font-family: 'Noto Sans JP', sans-serif;
    --font-family-en: 'Jost', sans-serif;
}

.p-blog-item__img,
.p-staff__item-wrapper {
    overflow: hidden;
}

.p-blog-item a:hover .p-blog-item__img img,
.p-staff__item a:hover .p-staff__item-wrapper img {
    transform: scale(1.1);
    transform: scale(1.08);
    opacity: 1;
    transition: all .3s;
}

a:hover,
button:hover {
    opacity: 1;
}

/* =========================================
共通コンポーネント
========================================= */

/* 見出しコンポーネント */
.c-headline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-headline--center {
    align-items: center;
}

.c-headline--right {
    align-items: flex-end;
}

.c-headline__sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.c-headline__sub-text {
    font-family: var(--font-family-en);
    font-weight: 700;
    font-size: 78px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.c-headline__sub-text--white {
    color: var(--color-white);
}

.c-headline__sub-text--primary {
    color: var(--color-primary);
}

.c-headline__sub-line {
    width: 100%;
    height: 1px;
    opacity: 0.7;
}

.c-headline__sub-line--white {
    background-color: var(--color-white);
}

.c-headline__sub-line--black {
    background-color: var(--color-black);
}

.c-headline__main {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.4;
}

.c-headline__main--white {
    color: var(--color-white);
}

.c-headline__main--black {
    color: var(--color-black);
}

/* ボタンコンポーネント */
.c-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 21px 59px;
    background-color: var(--color-black);
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: 0.4s;
}


.c-btn__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-white);
    transition: 0.4s;
}

.c-btn--yellow {
    background-color: var(--color-accent);
}

.c-btn--yellow .c-btn__text {
    color: var(--color-black);
}

.c-btn--green {
    background-color: var(--color-line);
}

.c-btn--green .c-btn__text {
    color: var(--color-black);
}

/* =========================================
MVセクション
========================================= */
.p-mv {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 127px;
    overflow: hidden;
}

.p-mv__bg {
    height: 690px;
}

.p-mv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-mv__count {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
    height: 280px;
    padding: 50px 390px;
    background: linear-gradient(0deg, rgba(30, 33, 137, 1) 0%, rgba(30, 33, 137, 0.53) 60%, rgba(30, 33, 137, 0) 100%);
}

.p-mv__count-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-mv__count-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--color-white);
}

.p-mv__count-number {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.p-mv__count-number-value {
    font-family: var(--font-family-en);
    font-weight: 700;
    font-size: 100px;
    color: var(--color-white);
    line-height: 1;
}

.p-mv__count-number-unit {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 47px;
    line-height: 1;
    color: var(--color-white);
}

.p-mv__count-divider {
    width: 1px;
    height: 129px;
    background-color: var(--color-white);
}

.p-mv__count-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    width: 403px;
    justify-content: center;
}

.p-mv__count-btn-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--color-white);
    text-align: center;
}

.p-mv__assess-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 23px 46px;
    background-color: var(--color-accent);
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.p-mv__assess-btn-icon {
    width: 35px;
    height: 35px;
}

.p-mv__assess-btn-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-black);
}

/*メイン画像AIコーディング修正後*/

.p-mv__inner {
    width: 100%;
}

.main__view {
    position: relative;
    height: 690px;
}

.main__img-contents {
    height: 690px;
}

.main__box {
    position: relative;
    width: 1140px;
    margin: 0 auto;
}

.main__box::before {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(30, 33, 137, 0.70) 0%, rgba(30, 33, 137, 0.37) 60.32%, rgba(30, 33, 137, 0.00) 100%);
    width: 1920px;
    height: 280px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.main__ttl {
    position: absolute;
    width: 1239px;
    right: -365px;
    top: -516px;
    z-index: 1;
}

.main__ttl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-mv__box {
    position: absolute;
    display: flex;
    gap: 50px;
    z-index: 1;
    bottom: 50px;
    align-items: flex-end;
}

.satei__img {
    width: 35px;
}

.satei__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
Achievements
========================================= */
.p-achievements {
    background: url(../images/bg_img-achivements.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px 110px;
}

.p-achievements__bg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 841px;
    z-index: 1;
}

.p-achievements__headline {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}

.p-achievements__list {
    position: relative;
    z-index: 2;
    display: flex;
    width: auto;
    max-width: 100%;
    /* 親要素からはみ出さないように */
    margin: 0 auto;
    /* コンテナ自体を中央寄せ */
    overflow: hidden;
}

.p-achievements__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    width: 400px;
    padding: 29px 37px 40px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-black);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.p-achievements__item.swiper-slide {
    width: 400px;
}

.p-achievements__item-title {
    height: 68px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-white);
    text-align: center;
}

.p-achievements__item-content {
    display: flex;
    flex-direction: column;
}

.p-achievements__item-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    width: 320px;
    height: 56px;
}

.p-achievements__item-price-value {
    font-family: var(--font-family-en);
    font-weight: 700;
    font-size: 77px;
    line-height: 1;
    color: var(--color-white);
    text-align: right;
}

.p-achievements__item-price-unit {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--color-white);
}

.p-achievements__item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.p-achievements__item-detail {
    display: flex;
    align-items: center;
    gap: 7px;
}

.p-achievements__item-detail-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-bg-gray);
    flex-shrink: 0;
}

.p-achievements__item-detail-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white);
}

.p-achievements__item-detail-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.1;
}

.label__box {
    display: flex;
    gap: 10px;
    margin: 40px 0 18px;
}

[class*="label__txt--"] {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    width: fit-content;
    height: 40px;
    background-color: #eaf98e;
    padding: 0 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label__txt--type {
    background-color: #59bfea;
}


/* =========================================
   Staffセクション
   ========================================= */
.p-staff {
    position: relative;
    background: url(/images/top/bg_img-staff.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px;
    overflow-x: hidden;
}

.p-staff__inner {
    width: 1140px;
    margin: 0 auto;
}

.p-staff__headline {
    position: relative;
    z-index: 2;
    width: 1140px;
    margin-bottom: 69px;
    text-align: center;
    justify-content: center;
}

.c-headline__sub-line.s-headline__sub-line {
    width: 256px;
}
.expert__catch {
    margin-bottom: 30px;
    position: relative;
}
.expert__catch:before {
    position: absolute;
    content: "";
    background-color: #5B61BA;
    width: 1920px;
    height: 1px;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.expert__catch__ttl {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: var(--font-family);
}
.expert__catch__ttl span {
    font-size: 44px;
    font-weight: 700;
    font-family: var(--font-family);
}
.expert__catch__text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.8;
    font-family: var(--font-family);
}
.c-headline__sub.s-headline__sub {
    gap: 7px;
}

.p-staff__list {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-staff__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 354px;
    border: 1px solid var(--color-black);
}

.p-staff__item a {
    transition: .3s;
}

.p-staff__item-img {
    width: 354px;
    height: 265px;
    object-fit: cover;
}

.p-staff__item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 45px 30px 25px;
    background-color: var(--color-white);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.p-staff__item-text {
    height: 145px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
    overflow: hidden;
}

.p-staff__item-name {
    position: absolute;
    top: 240px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    height: 50px;
    background-color: var(--color-primary);
}

.p-staff__item-name-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-white);
}

.p-staff__item-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.p-staff__item-wrapper img {
    transition: .3s;
    width: 100%;
}

.p-staff__btn {
    position: relative;
    z-index: 2;
    width: 270px;
    margin: 40px auto 0;
}


/* =========================================
Trust usセクション
========================================= */
.p-trust-us {
    position: relative;
    background: url(/images/top/bg_img-trust.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px 110px;
    overflow-x: hidden;
}

.p-trust-us__inner {
    width: 1140px;
    margin: 0 auto;
}

.p-trust-us__headline {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}

.p-trust-us__contents {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: -1px;
}

.p-trust-us__contents::before {
    position: absolute;
    content: "";
    background-color: #BAE4FF;
    width: 1920px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.p-trust-us__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.p-trust-us__item-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    width: 1140px;
    padding: 79px 77px 81px;
    background: rgba(29, 184, 227, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid #BAE4FF;
    border-top: none;
    border-bottom: none;
}

.p-trust-us__item-content::before {
    position: absolute;
    content: "";
    background-color: #BAE4FF;
    width: 1920px;
    height: 1px;
    bottom: 0;
}

.trust__img {
    width: 374px;
}

.trust__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-trust-us__item-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.p-trust-us__item-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-trust-us__item-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--color-primary);
    width: fit-content;
}

.p-trust-us__item-title-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-white);
}

.p-trust-us__item-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white);
}


/* =========================================
caseセクション
========================================= */
.p-case {
    background: url(../images/case__bg.webp) no-repeat center / cover;
    padding-block: 113px;
    overflow-x: hidden;
}

.p-case__inner {
    width: 1140px;
    margin: 0 auto;
}

.p-case__headline {
    margin-bottom: 51px;
}

.p-case__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-gray);
}

.p-case__item {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--color-gray);
}

.p-case__contents {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 1140px;
    padding: 49px 80px 80px;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 1px solid var(--color-gray);
    border-right: 1px solid var(--color-gray);
    position: relative;
}
.p-case__contents::before {
    position: absolute;
    content: "";
    background-color: #8F8F8F;
    width: 1920px;
    height: 1px;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.p-case__contents::after {
    position: absolute;
    content: "";
    background-color: #8F8F8F;
    width: 1920px;
    height: 1px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.p-case__contents-ttl {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
}

.p-case__contents-ttl-num {
    font-family: var(--font-family-en);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
}

.p-case__contents-ttl-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    color: var(--color-primary);
}

.p-case__contents-body {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* お客様の状況 */
.p-case__customer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-case__section-ttl {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-case__section-ttl-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-black);
}

.p-case__section-ttl-text--primary {
    color: var(--color-primary);
}

.p-case__section-ttl-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
}

.p-case__section-ttl-line--primary {
    background-color: var(--color-primary);
}

.p-case__customer-contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ご相談内容 */
.p-case__consultation {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.p-case__consultation-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 90px;
    height: 43px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #585858;
    text-align: center;
}

.p-case__plan-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-case__plan-item {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 43px;
    padding: 7px 20px;
    background-color: #e3f2f6;
}

.p-case__plan-item-icon {
    display: block;
    width: 14px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath d='M1 5L5.5 9L13 1' stroke='%231E2189' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.p-case__plan-item-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
}

.p-case__customer-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
}

/* 売却までの流れ */
.p-case__flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-case__flow-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
}

.p-case__flow-desc p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-family: var(--font-family);
    font-weight: 500;
}

.p-case__flow-desc p+p {
    margin-top: 0;
}

/* お客様の声 */
.p-case__voice {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 50px;
    background-color: var(--color-primary);
}

.p-case__voice-illust {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.p-case__voice-illust--01 {
    background-image: url(../images/customer01.webp);
}

.p-case__voice-illust--02 {
    background-image: url(../images/customer02.webp);
}

.p-case__voice-contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.p-case__voice-ttl {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-white);
}

.p-case__voice-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white);
}

/* =========================================
   Contactセクション
   ========================================= */
.p-contact {
    position: relative;
    background: url(/images/top/bg_radiation.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px 115px;
}

.p-contact__inner {
    width: 1140px;
    margin: 0 auto;
}

.p-contact__box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 50px 80px 76px;
}

.p-contact__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.p-contact__content {
    display: flex;
    align-items: center;
    gap: 34px;
    width: 100%;
}

.p-contact__company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.p-contact__tel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.p-contact__tel-item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 8px;
}

.p-contact__tel-shop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-white);
    min-width: 99px;
    height: 36px;
}

.p-contact__tel-shop-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
}

.p-contact__tel-number {
    font-family: var(--font-family-en);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: var(--color-white);
}

.p-contact__hours {
    display: flex;
    flex-direction: column;
}

.p-contact__hours-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-white);
}

.p-contact__btn-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.p-contact__btn-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-white);
    text-align: center;
}

.p-contact__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 300px;
    padding: 21px 26px;
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: 0.4s;
}

.p-contact__btn:hover {
    background-color: #fff;
    transition: 0.4s;
}

.p-contact__btn--yellow {
    background-color: var(--color-accent);
}

.p-contact__btn--green {
    background-color: var(--color-line);
}

[class*="icon__img--"] {
    width: 30px;
}

[class*="icon__img--"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-contact__btn-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-black);
}

/* =========================================
serviceセクション
========================================= */
.p-service {
    position: relative;
    background: url(../images/bg_service.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px 112px;
}

.p-service__headline {
    margin-bottom: 31px;
}

.p-service__inner {
    width: 1140px;
    margin: 0 auto;
}

.service__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 24px;
}

.service__item {
    width: 170px;
}

.service__circle {
    width: 170px;
    height: 170px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.service__name {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-family);
}


/* =========================================
Market Priceセクション
========================================= */
.p-market {
    position: relative;
    background: url(../images/market__bg.webp) no-repeat center / cover;
    width: 100%;
    padding-block: 110px;
    overflow: hidden;
}

.p-market__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    width: 1141px;
    margin: 0 auto;
}

.p-market__headline {
    width: 100%;
}

/* テーブル */
.p-market__table {
    display: flex;
    width: 1141px;
}

.p-market__table-col {
    display: flex;
    flex-direction: column;
}

.p-market__table-col--area {
    width: 440px;
    flex-shrink: 0;
}

.p-market__table-col--data {
    flex: 1;
}

/* ヘッダー行 */
.p-market__table-head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 69px;
    padding: 24px 50px;
    border-right: 1px solid var(--color-white);
}

.p-market__table-col--last .p-market__table-head {
    border-right: none;
}

.p-market__table-head--primary {
    background-color: var(--color-primary);
}

.p-market__table-head--dark {
    background-color: var(--color-black);
}

.p-market__table-head-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-white);
}

/* データ行 */
.p-market__table-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 50px 22px 50px;
    border-top: 1px solid var(--color-light-gray);
    border-right: 1px solid var(--color-light-gray);
}

.p-market__table-col--last .p-market__table-cell {
    border-right: none;
}

.p-market__table-cell--last {
    border-bottom: 1px solid var(--color-light-gray);
}

.p-market__table-cell--area {
    background-color: #e9eafe;
}

.p-market__table-cell--data {
    background-color: var(--color-white);
}

.p-market__table-cell-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-black);
}

/* =========================================
   AreaInfoセクション
   ========================================= */
.p-areainfo {
    position: relative;
    width: 100%;
    padding-block: 110px;
    overflow-x: hidden;
}

.p-areainfo__inner{
    width: 1140px;
    margin: 0 auto;
}

.p-areainfo__headline {
    width: 1140px;
    margin: 0 auto 32px;
}

span.c-headline__sub-line.ai-headline__sub-line.c-headline__sub-line--black{
    width: 373px;
}

.p-areainfo__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.p-areainfo__area-block {
    /* display: none; */
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.p-areainfo__area-block.is-active {
    display: flex;
}

.p-areainfo__tab-list {
    display: flex;
    gap: 8px;
    width: 1140px;
}

.p-areainfo__tab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 156px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-areainfo__tab-btn--active {
    background-color: var(--color-black);
}

.p-areainfo__tab-btn--active:hover{
    cursor: unset;
}

.p-areainfo__tab-btn--active:hover .p-areainfo__tab-btn-text{
    pointer-events: none;
}

.p-areainfo__tab-btn--inactive {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
}

.p-areainfo__tab-btn-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.p-areainfo__tab-btn--active .p-areainfo__tab-btn-text {
    color: var(--color-white);
}

.p-areainfo__tab-btn--active .p-areainfo__tab-btn-text:hover{
    pointer-events: none;
}

.p-areainfo__tab-btn--inactive .p-areainfo__tab-btn-text {
    color: var(--color-black);
}

.c-btn.area-info__btn{
    width: 270px;
    height: 70px;
    margin: 0 auto;
    padding: 0;
}

/* =========================================
   Blog共通スタイル
   ========================================= */
.p-blog-list {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.p-blog-list::before{
    position: absolute;
    content: "";
    background: #CECECE;
    width: 1920px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p-blog-list::after{
    position: absolute;
    content: "";
    background: #CECECE;
    width: 1920px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p-blog-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 380px;
    padding: 40px;
    border-left: 1px solid var(--color-light-gray);
}

.p-blog-item:last-child {
    border-right: 1px solid var(--color-light-gray);
}

.p-blog-item__img {
    width: 300px;
    height: auto;
}

.p-blog-item__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f7f7f7;
}

.p-blog-item__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 12px 0 0;
}

.p-blog-item__date {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-primary);
}

.p-blog-item__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* =========================================
   Tipsセクション
   ========================================= */
.p-tips {
    position: relative;
    background: url(/images/top/bg-topic.webp) center/cover no-repeat;
    width: 100%;
    padding-block: 108px;
    overflow-x: hidden;
}

.p-tips__inner {
    width: 1140px;
    margin: 0 auto;
}

.p-tips__headline {
    position: relative;
    z-index: 2;
    width: 1140px;
}

.p-tips__headline.c-headline{
    margin-bottom: 34px;
}

.c-headline__sub-line.t-headline__sub-line{
    width: 160px;
}

.p-tips__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.p-tips__btn {
    position: relative;
    z-index: 2;
}

.c-btn.p-tips__btn{
    width: 270px;
    height: 70px;
    margin: 0 auto;
    padding: 0;
}


/* =========================================
   Questionセクション
   ========================================= */
.p-question {
    position: relative;
    background-color: #fff;
    width: 100%;
    padding: 110px 0;
}

.c-headline.q-headline{
    margin-bottom: 32px;
}

.c-headline__sub-line.q-headline__sub-line{
    width: 360px;
}

.p-question__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-light-gray);
}

.p-question__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 1140px;
    padding: 66px 32px 64px 30px;
    border-bottom: 1px solid var(--color-light-gray);
    border-left: 1px solid var(--color-light-gray);
    border-right: 1px solid var(--color-light-gray);
}

.p-question__item:last-child {
    border-bottom: none;
}

.p-question__item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-question__item-q {
    width: 14px;
    height: 27px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-primary);
}

.p-question__item-title {
    width: 1045px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-primary);
}

.p-question__item-answer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
}

.p-question__item-answer-text {
    width: 1045px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
}

/* =========================================
   Shopセクション
   ========================================= */
.p-shop {
    position: relative;
    background: url(/images/top/bg_img-shop.webp) center/cover no-repeat;
    width: 100%;
    padding-block: 112px 110px;
}

.p-shop__inner{
    width: 1140px;
    margin: 0 auto;
}

.p-shop__contents {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.p-shop__headline {
    position: relative;
    z-index: 2;
}

.p-shop__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.p-shop__item {
    display: flex;
    gap: 30px;
}

.p-shop__item-img-wrap {
    position: relative;
    width: 372px;
    height: 308px;
}

.p-shop__item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-shop__item-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 438px;
}

.p-shop__item-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--color-white);
}

.p-shop__item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-shop__item-detail {
    display: flex;
    gap: 20px;
}

.p-shop__item-detail-label {
    width: 112px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white);
}

.p-shop__item-detail-value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white);
}

.p-shop__divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.7;
}

/*ボタンアニメーション*/

.p-area__btn:hover,
.c-btn:hover{
    opacity: 1;
    transition: 0.4s;
}

.c-btn:hover{
    background-color: #fff;
}

.p-area__btn:hover{
    background-color: #000;
    transition: 0.4s;
}

.c-btn:hover .c-btn__text{
    color: #000;
    transition: 0.4s;
}

.p-area__btn:hover .p-area__btn-text{
    color: #fff;
    transition: 0.4s;
}

/*ホバー*/

.p-mv__assess-btn.animoshines:hover{
    background-color: #fff;
}


