@import '../components/category-menu.css';

.dp-plus,
.dp-plus *,
.dp-plus *::before,
.dp-plus *::after {
    box-sizing: border-box;
}

.layout-fix {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dp-plus a {
    text-decoration: none;
    cursor: pointer;
}

.dp-plus button {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

/*====================
フォントの振り分け
====================*/
:root {
    --font-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-serif: "Noto Serif JP", "Noto Sans JP", serif;
}

.dp-plus {
    font-family: var(--font-serif);
}

.d-sans {
    font-family: var(--font-sans);
}

/*====================
ボタンアクション
====================*/
.dp-plus a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.dp-plus p {
    margin: 0;
    padding: 0;
}

.border-run {
    max-width: 250px;
    z-index: 10;
}

.btn-style {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 250px;
    height: 42px;
}

.dp-plus p.btn-style-text {
    margin-left: 34px;
    font-weight: 400;
    font-feature-settings: "palt";
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.dp-plus p.btn-style-text-delta {
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.dp-plus p.btn-style-text-color-white {
    color: #FFFFFF;
}

.text-passive {
    opacity: 0;
    transition: all 0.3s linear;
}


.border-run {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #000000;
    text-decoration: none;

}

.border-run-color-white {
    color: #FFFFFF;
}

.border-run-line {
    position: absolute;
    background: currentColor;
    opacity: 1;
}

.border-run-line.t {
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease .18s;
}

.border-run-line.r {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .18s ease .36s;
}

.border-run-line.b {
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(1);
    transform-origin: right;
    transition: none;
}

.border-run-line.l {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .18s ease 0s;
}

.border-run:hover .border-run-line.t,
.border-run:hover .border-run-line.r,
.border-run:hover .border-run-line.l,
.border-run:focus-visible .border-run-line.t,
.border-run:focus-visible .border-run-line.r,
.border-run:focus-visible .border-run-line.l {
    transform: scale(1);
}

.border-run:hover .text-passive {
    opacity: 1;
}

.border-run:focus-visible {
    outline: none;
}

@media screen and (max-width:1030px) {
    .dp-plus a.border-run-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px;
        padding-bottom: 10px;
        max-width: 320px;
        width: 100%;
        gap: 10px;
        z-index: 10;
    }

    .btn-border-color {
        border: 1px solid #FFFFFF;
    }

    .border-run-mobile p.d-sans {
        font-size: 14px;
        line-height: normal;
    }
}

/*====================
#dp-hero
====================*/
.hero-area {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: fit-content;
}

.hero-area img.d-pc {
    display: block;
    width: 100%;
}

.hero-area img.d-mobile {
    display: none;
    width: 100%;
}

.dp-hero-text-area {
    position: absolute;
    top: calc((100% - clamp(42px, calc(7.49px + 6.9014vw), 140px)) / 2);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .80);
    padding: clamp(10px, calc(-0.56px + 2.1127vw), 40px) clamp(20px, calc(-39.86px + 11.9718vw), 190px);
    width: fit-content;
    height: auto;
}

.dp-hero-text-area p {
    font-size: clamp(16px, calc(7.55px + 1.6901vw), 40px);
    color: #FFFFFF;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width:500px) {
    .hero-area img.pc {
        display: none;
    }

    .hero-area img.mobile {
        display: block;
    }

    .dp-hero-text-area {
        width: 100%;
        top: 200px;
    }

    .dp-hero-text-area p {
        font-size: 20px;
    }

    .dp-hero-text-area {
        display: none;
    }
}

/*====================
#dp-select-btn
====================*/

.select-btn-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, calc(6.48px + 0.7042vw), 20px) 20px;
    gap: clamp(12px, calc(9.18px + 0.5634vw), 20px);
    width: 100%;
    height: fit-content;
}

.select-btn {
    position: relative;
    overflow: hidden;
    max-width: 440px;
    width: 100%;
    max-height: 160px;
    height: fit-content;
    border-radius: clamp(12px, calc(9.18px + 0.5634vw), 20px);
    transition: all 0.2s linear;
}

.select-btn-logo {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 4;
}

.select-btn-front {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #B4B4B4;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    z-index: 3;
}

.select-btn-img {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}

.select-btn-back {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.2s linear;
}

.select-btn:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .50);
}

.select-btn:hover .select-btn-back {
    background-color: #004097;
}

.select-btn-active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .50);
}

.select-btn-back-active {
    background-color: #004097;
}

@media screen and (max-width:500px) {
    .select-btn-area {
        flex-wrap: wrap;
        gap: 10px;
    }

    .select-btn {
        max-width: clamp(160px, calc(-44.55px + 54.5455vw), 190px);
        max-height: 120px;
    }
}

/*====================
#dp-overview
====================*/
.dp-overview-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 20px;
    padding-top: clamp(30px, calc(12.39px + 3.5211vw), 80px);
    padding-bottom:0;
}

.product-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1520px;
    width: 100%;
    height: fit-content;
    gap: clamp(20px, calc(2.39px + 3.5211vw), 70px);
}

.product-top a.product-select-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    max-width: clamp(250px, calc(176.06px + 14.7887vw), 460px);
    width: 100%;
    height: fit-content;
    background-color: #B4B4B4;
    border-radius: 50px;
    transition: all 0.2s linear;
}

.product-select-btn-img {
    overflow: hidden;
    max-width: clamp(30px, calc(15.92px + 2.8169vw), 70px);
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.product-select-btn-img img {
    width: clamp(30px, calc(15.92px + 2.8169vw), 70px);
}

.product-select-btn-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0 15px;
    padding-bottom: 2px;
    gap: 10px;
}

.product-select-btn-text span {
    font-size: clamp(14px, calc(9.77px + 0.8451vw), 26px);
    color: #FFFFFF;
    font-weight: 400;
}

.product-top a.product-select-btn:hover {
    background-color: #000000;
}

.product-top a.product-select-btn-active {
    background-color: #000000;
}

.product-under {
    width: 100%;
}

.product-category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    padding-top: clamp(30px, calc(22.96px + 1.4085vw), 50px);
}

.product-img-area {
    display: flex;
    flex-direction: column;
    max-width: 1070px;
    width: 100%;
    gap: 30px;
}

.product-pv-area {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    width: 100%;
}

.product-pv-area .product-img {
    max-width: 1070px;
    width: 100%;
}

.product-thumb-area {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1008px;
    width: 100%;
}

.product-thumb-btn-right {
    position: absolute;
    top: calc((100% - 57px) / 2);
    right: calc(-57px / 2);
    width: 57px;
    display: flex;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .50);
    border-radius: 50%;
    transform: scale(1, 1);
    transition: all 0.2s linear;
    z-index: 10;
}

.product-thumb-btn-right:hover {
    transform: scale(1.1, 1.1);
}

.product-thumb-btn-left {
    position: absolute;
    display: none;
    top: calc((100% - 37px) / 2);
    left: 0;
    width: 37px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .50);
    border-radius: 50%;
    transform: scale(1, 1);
    transition: all 0.2s linear;
    z-index: 10;
}

.product-thumb-btn-left img,
.product-thumb-btn-right img {
    display: block;
    width: 100%;
}

.product-thumb-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(125px, calc(84.51px + 8.0986vw), 240px);
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    border: 2px solid #707070;
    z-index: 10;
}

.product-thumb-loop-area {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 1008px;
    width: 100%;
    height: fit-content;
    gap: clamp(8px, calc(5.18px + 0.5634vw), 16px);
}

.product-thumb-item {
    display: block;
    max-width: clamp(125px, calc(84.51px + 8.0986vw), 240px);
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    flex: 0 0 auto;
}

.product-thumb-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-thumb-item-active {
    cursor: default;
}

.product-text-area {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    gap: clamp(18px, calc(13.77px + 0.8451vw), 30px);
}

.product-text-area h2 {
    font-size: clamp(24px, calc(19.77px + 0.8451vw), 36px);
    font-weight: 400;
}

.spec-fix {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spec-text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.product-name-area {
    display: flex;
    flex-direction: column;
}

.spec-text-area h3.product-name {
    font-size: clamp(20px, calc(17.89px + 0.4225vw), 26px);
    font-weight: 600;
    margin: 0;
}

.spec-text-area .product-name-sub {
    font-size: 16px;
    font-weight: 600;
}

.spec-area {
    width: 100%;
}

.spec-table {
    --spec-label-max: 4;
    border-collapse: collapse;
    width: 100%;
}

.spec-table-label-4 {
    --spec-label-max: 4;
}

.spec-table-label-5 {
    --spec-label-max: 5;
}

.spec-table-label-6 {
    --spec-label-max: 6;
}

.spec-table th,
.spec-table td {
    vertical-align: top;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 32px;
}

.spec-table th {
    width: calc(var(--spec-label-max, 4) * 1em + 20px);
    padding-right: 20px;
    border-right: 1px solid #000000;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
}

.spec-table td {
    padding-left: 20px;
    font-weight: 300;
}

.spec-label-text {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: calc(var(--spec-label-max, 4) * 1em);
    white-space: nowrap;
    vertical-align: top;
}

.spec-label-char {
    display: block;
    flex: 0 0 auto;
}

@media screen and (max-width:1030px) {
    .dp-overview-area {
        max-width: 430px;
    }

    .product-top {
        gap: 10px;
    }

    .product-select-btn-text {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .product-select-btn-text span {
        font-size: 14px;
        line-height: 18px;
    }

    .product-top a.product-select-btn {
        padding-bottom: 8px;
    }

    .product-pv-area {
        border-radius: 12px;
    }

    .product-pv-area .product-img {
        max-width: 390px;
    }

    .product-thumb-frame {
        left: calc((100% - clamp(107px, calc(-15.73px + 32.7273vw), 125px)) / 2);
        width: clamp(107px, calc(-15.73px + 32.7273vw), 125px);
        border-radius: 12px;
    }

    .product-thumb-btn-right {
        right: 0;
        top: calc((100% - 37px) / 2);
        width: 37px;
    }

    .product-thumb-btn-left {
        display: flex;
    }

    .product-thumb-btn-right:hover {
        transform: scale(1, 1);
    }

    .product-thumb-loop-area {
        gap: 1.86vw;
    }

    .product-thumb-item {
        max-width: clamp(107px, calc(-15.73px + 32.7273vw), 125px);
    }

    .product-category {
        flex-direction: column;
    }

    .spec-table th,
    .spec-table td {
        font-size: clamp(14px, calc(0.36px + 3.6364vw), 16px);
        line-height: clamp(28px, calc(0.73px + 7.2727vw), 32px);
    }

    .spec-table th {
        width: 5.7em;
    }
}

/*====================
#dp-technology
====================*/
.dp-technology-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1920px;
    padding: 80px 20px;
    background-color: #000000;
    width: 100%;
    height: fit-content;
    gap: clamp(50px, calc(18.09px + 4.2662vw), 100px);
}

.dp-technology-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    max-width: clamp(420px, calc(142.25px + 26.9663vw), 660px);
    width: 100%;
}

.dp-technology-text-fix {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-technology-text p.label {
    font-size: clamp(24px, calc(18.37px + 1.1268vw), 40px);
    font-weight: 700;
    width: 100%;
    text-align: left;
}

.dp-technology-text p.label-sub {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    font-weight: 700;
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
}

.dp-technology-text p.notes {
    font-size: clamp(16px, calc(15.30px + 0.1408vw), 18px);
    font-weight: 400;
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    text-align: justify;
}

.dp-technology-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: clamp(500px, calc(199.10px + 29.2135vw), 760px);
    width: 100%;
    height: fit-content;
    border-radius: clamp(12px, calc(9.18px + 0.5634vw), 20px);
}

.dp-technology-img img {
    width: 100%;
}

@media screen and (max-width:1030px) {
    .dp-technology-area {
        padding: 60px 20px;
    }

    .dp-technology-text {
        max-width: 430px;
    }

    .dp-technology-img {
        max-width: 430px;
    }

    .dp-technology-text p.label {
        text-align: center;
        font-size: clamp(22px, calc(8.36px + 3.6364vw), 24px);
    }

    .dp-technology-text p.label-sub {
        text-align: center;
        font-size: clamp(18px, calc(4.36px + 3.6364vw), 20px);
    }

    .dp-technology-text p.notes {
        font-size: clamp(14px, calc(0.36px + 3.6364vw), 16px);
        line-height: clamp(30px, calc(2.73px + 7.2727vw), 34px);
    }

    .dp-technology-img {
        border-radius: 12px;
    }

    .dp-technology-img img {
        width: 100%;
    }

    .dp-technology-text {
        gap: 30px;
    }

    .dp-technology-text-fix {
        gap: 30px;
    }
}

/*====================
#dp-feature
====================*/
.dp-feature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px 20px;
    padding-bottom: 100px;
    max-width: 1920px;
    width: 100%;
}

.dp-feature-header {
    display: flex;
    flex-direction: row;
}

.dp-feature-header p {
    font-size: clamp(24px, calc(18.37px + 1.1268vw), 40px);
    font-weight: 600;
    color: #004097;
}

.dp-feature-item-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: clamp(30px, calc(12.39px + 3.5211vw), 80px);
    gap: clamp(16px, calc(7.55px + 1.6901vw), 40px);
    width: 100%;
}

.dp-feature-item {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: clamp(20px, calc(-0.00px + 2.6042vw), 50px);
    max-width: 500px;
    width: 100%;
    aspect-ratio: 25 / 21;
}

.dp-feature-item-heder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    padding-bottom: 10px;
    margin-top: clamp(4px, calc(-26.67px + 3.9931vw), 50px);
    background-color: rgba(255, 255, 255, .80);
    border-radius: 100px;
    width: 100%;
    z-index: 2;
}

.dp-feature-item-heder p.label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    font-weight: 600;
    line-height: normal;
    color: #000000;
}

.dp-feature-item p {
    font-size: clamp(18px, calc(17.30px + 0.1408vw), 20px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
    font-feature-settings: "palt";
}

.dp-feature-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media screen and (max-width:1030px) {
    .dp-feature-area {
        padding: 100px 20px;
        padding-bottom: 50px;
        max-width: 430px;
    }

    .dp-feature-header {
        flex-direction: column;
    }

    .dp-feature-item-heder {
        margin-top: clamp(30px, calc(-38.18px + 18.1818vw), 40px);
    }

    .dp-feature-header p {
        text-align: center;
        font-size: clamp(22px, calc(8.36px + 3.6364vw), 24px);
        line-height: clamp(36px, calc(8.73px + 7.2727vw), 40px);
    }

    .dp-feature-item-heder p.label {
        font-size: clamp(18px, calc(4.36px + 3.6364vw), 20px);
    }

    .dp-feature-item p {
        font-size: clamp(16px, calc(2.36px + 3.6364vw), 18px);
        line-height: normal;
    }

    .dp-feature-item-area {
        flex-direction: column;
        margin-top: 30px;
    }

    .dp-feature-item {
        padding: clamp(30px, calc(-38.18px + 18.1818vw), 40px);
        border-radius: 12px;
        aspect-ratio: 13 / 10;
    }
}

/*====================
#dp-uniqueness
====================*/
.dp-uniqueness-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 100px 20px;
}

.dp-uniqueness-area p.label {
    font-size: clamp(24px, calc(18.37px + 1.1268vw), 40px);
    font-weight: 600;
    color: #004097;
    max-width: 1520px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
}

.dp-uniqueness-area p.label-sub {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    font-weight: 600;
    color: #000000;
    max-width: 1520px;
    width: 100%;
    text-align: left;
    width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
}

.contents-item-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1520px;
    width: 100%;
    gap: clamp(40px, calc(37.45px + 8.5106vw), 80px);
}

.contents-item-area.area-fix {
    margin-top: 40px;
}

.contents-item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(50px, calc(18.09px + 4.2662vw), 100px);
    width: 100%;
}

.contents-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    max-width: clamp(500px, calc(199.10px + 29.2135vw), 760px);
    width: 100%;
    z-index: 2;
}

.contents-img img {
    width: 100%;
}

.contents-text {
    display: flex;
    flex-direction: column;
    max-width: clamp(420px, calc(142.25px + 26.9663vw), 660px);
    width: 100%;
    gap: clamp(10px, calc(6.48px + 0.7042vw), 20px);
    z-index: 3;
}

.text-end {
    justify-content: flex-end;
}

.contents-text p.c-text-label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #000000;
}

.contents-deco-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.contents-text p.c-text-notes {
    font-size: clamp(18px, calc(17.30px + 0.1408vw), 20px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    margin: 0;
    padding: 0;
    text-align: justify;
}

@media screen and (max-width:1030px) {
    .dp-uniqueness-area {
        max-width: 430px;
        padding: 50px 20px;
    }

    .contents-item {
        flex-direction: column;
        gap: 20px;
    }

    .contents-img img {
        width: 100%;
    }

    .dp-uniqueness-area p.label {
        text-align: center;
        width: 100%;
    }

    .dp-uniqueness-area p.label-sub {
        text-align: center;
        width: 100%;
    }

    .contents-text p.c-text-label {
        font-size: clamp(18px, calc(17.87px + 0.4255vw), 20px);
        line-height: clamp(32px, calc(31.74px + 0.8511vw), 36px);
    }

    .contents-text p.c-text-notes {
        font-size: clamp(14px, calc(2.00px + 3.2000vw), 18px);
        line-height: clamp(16px, calc(14.85px + 3.8298vw), 34px);
    }
}

/*====================
#dh-me-details
====================*/
.dh-me-details-area {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    padding: 80px 20px;
    max-width: 1920px;
    width: 100%;
    margin-bottom: 40px;
}

.dh-me-details-area h2 {
    margin-bottom: 0;
    color: #004097;
}

.d-main-color {
    color: #004097 !important;
}

.dh-me-details-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: clamp(500px, calc(199.10px + 29.2135vw), 760px);
    width: 100%;
    z-index: 2;
}

.dh-me-details-img img {}

.dh-me-details-back-img {
    position: absolute;
    top: 60px;
    left: 0;
    width: clamp(590px, calc(38.00px + 43.1250vw), 866px);
    z-index: 1;
}

@media screen and (max-width:1030px) {
    .dh-me-details-area {
        margin-top: 50px;
        padding: 60px 20px;
    }

    .dh-me-details-fix {
        max-width: 430px;
        gap: 30px;
    }

    .dh-me-details-fix p.c-text-label {
        text-align: center;
        line-height: normal;
        font-feature-settings: "halt";
    }

    .dh-me-details-img img {
        margin-bottom: 30px
    }
}

/*====================
レスポンシブ切り替え
====================*/
.d-pc {
    display: flex;
}

.d-mobile {
    display: none;
}

img.d-pc {
    display: block;
}

img.d-mobile {
    display: none;
}

.hero-area img.d-pc {
    display: block;
}

.hero-area img.d-mobile {
    display: none;
}

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

    .d-mobile {
        display: flex;
    }

    img.d-pc {
        display: none;
    }

    img.d-mobile {
        display: block;
    }
}

@media screen and (max-width:500px) {
    .hero-area img.d-pc {
        display: none;
    }

    .hero-area img.d-mobile {
        display: block;
    }
}