.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;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    margin: 0;
    padding: 0;
}

/*====================
フォントの振り分け
====================*/
: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 .btn-style-text {
    margin-left: 34px;
    font-weight: 400;
    font-feature-settings: "palt";
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

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

.dp-plus .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;
        border: 1px solid #000000;
        max-width: 320px;
        width: 100%;
        gap: 10px;
        z-index: 10;
    }

    .dp-plus a.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%;
}

.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;
}

/*====================
#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: clamp(100px, calc(64.79px + 7.0423vw), 200px);
}

.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;
}

.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;
    }
}

/*====================
contents　汎用CSS
====================*/
.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: clamp(30px, calc(18.43px + 1.1236vw), 40px);
}

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

.contents-item-text-area {
    display: flex;
    flex-direction: column;
    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 {
    display: block;
    width: 100%;
}

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

.contents-text h2.c-text-heder {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    line-height: clamp(40px, calc(0.00px + 3.1250vw), 60px);
    font-weight: 600;
    color: #004097;
    width: 100%;
}

.contents-text h3.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;
    width: 100%;
}

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

.contents-text .c-text-notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: justify;
    width: 100%;
}

.contents-movie-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
}

.contents-movie-item {
    overflow: hidden;
    display: flex;
    border-radius: 20px;
    width: 48%;
    aspect-ratio: 16 / 9;
}

.contents-movie-item iframe.iframe-style {
    width: 100%;
}

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

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

    .contents-img {
        border-radius: 12px;
    }

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

    .contents-text h2.c-text-heder {
        font-feature-settings: "halt";
        text-align: center;
    }

    .contents-text h3.c-text-label {
        font-size: clamp(18px, calc(4.36px + 3.6364vw), 20px);
        line-height: clamp(32px, calc(31.74px + 0.8511vw), 36px);
        font-feature-settings: "halt";
        text-align: center;
    }

    .contents-text .c-text-notes {
        font-size: clamp(14px, calc(8.00px + 1.6000vw), 16px);
        line-height: clamp(16px, calc(14.85px + 3.8298vw), 34px);
        font-feature-settings: "palt";
    }

    .contents-item-area.area-fix {
        margin: 0;
    }

    .contents-movie-area {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }

    .contents-movie-item {
        width: 100%;
        border-radius: 12px;
    }
}


/*====================
#dh-health-intro
====================*/
.intro-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);
}

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

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

.intro-text h2.label {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    font-weight: 600;
    width: 100%;
    text-align: left;
}

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

.intro-text .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;
}

.intro-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);
}

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

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

    .intro-text {
        max-width: 430px;
        align-items: center;
    }

    .intro-img {
        max-width: 430px;
    }

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

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

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

    .intro-img {
        border-radius: 12px;
    }

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

    .intro-text {
        gap: 30px;
    }

    .intro-text-fix {
        gap: 30px;
    }
}

/*====================
#dh-feature
====================*/
.dh-feature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: clamp(970px, calc(910.00px + 4.6875vw), 1000px);
    width: 100%;
    padding: 20px;
    padding-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    padding-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    padding-top: 200px;
    gap: 30px;
}

.dh-feature-header-area {
    margin-bottom: 40px;
}

.dh-feature-header-area h2.header {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    line-height: clamp(40px, calc(0.00px + 3.1250vw), 60px);
    font-weight: 600;
    color: #004097;
}

.dh-feature-main-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    gap: 30px;
}

.dh-feature-select-btn-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

button.dh-feature-select-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 300px;
    width: 32%;
    height: 60px;
    border-radius: 50px;
    background-color: #B4B4B4;
    transition: all 0.2s linear;
}

.btn-deco {
    width: 22px;
    aspect-ratio: 1 / 1;
    background-color: #6B6B6B;
    border-radius: 50%;
    transition: all 0.2s linear;
}

button.dh-feature-select-btn .btn-text {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    color: #FFFFFF;
    max-width: 202px;
    width: 100%;
}

button.dh-fs-btn-active {
    background-color: #000000;
}

.btn-deco-active {
    background-color: #A51111;
}

button.dh-feature-select-btn:hover {
    background-color: #000000;
}

button.dh-feature-select-btn:hover .btn-deco {
    background-color: #A51111;
}

.dh-feature-img-area {
    overflow: hidden;
    position: relative;
    max-width: clamp(970px, calc(910.00px + 4.6875vw), 1000px);
    width: 100%;
    height: fit-content;
    border-radius: 20px;
}

.dh-feature-img-track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.3s linear;
}

.dh-feature-img-track img {
    flex: 0 0 100%;
    width: 100%;
    display: block;
}

@media screen and (max-width:1030px) {
    .dh-feature-area {
        padding-top: 100px;
        max-width: 430px;
        gap: 20px;
    }

    button.dh-feature-select-btn {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        border-radius: 20px;
        padding: 12px;
        aspect-ratio: 1 / 1;
        height: fit-content;
        gap: 8px;
    }

    button.dh-feature-select-btn .btn-text {
        line-height: normal;
    }

    button.dh-feature-select-btn .d-mobile-fix {
        margin: 12px 0;
    }

    .dh-feature-img-area {
        border-radius: 12px;
    }

    .dh-feature-main-area {
        gap: 20px;
    }

    .dh-feature-header-area {
        margin: 0;
    }

    button.dh-feature-select-btn .btn-text {
        font-size: clamp(14px, calc(8.00px + 1.6000vw), 16px);
    }

}

@media screen and (max-width:500px) {
    .btn-deco {
        width: 16px;
    }

    button.dh-feature-select-btn {
        padding: 10px;
        aspect-ratio: auto;
        height: 100px;
    }
}

/*====================
#dh-topic 01/02/03
====================*/
.dh-topic-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 20px;
    padding-top: clamp(50px, calc(18.09px + 4.2662vw), 100px);
    padding-bottom: clamp(50px, calc(18.09px + 4.2662vw), 100px);
}

.dh-topic-area h2.label {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    ;
    line-height: clamp(40px, calc(0.00px + 3.1250vw), 60px);
    font-weight: 600;
    color: #004097;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

.dh-topic-area h3.label-sub {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 600;
    color: #000000;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    text-align: left;
    width: 100%;
}

.dh-to-text-fix {
    justify-content: space-between;
    gap: 30px;
}

.dh-to-notes-text-fix {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.contents-item-text-area.dh-to-header-fix {
    gap: 40px;
}

.dh-topic-02-fix {
    padding: 0;
    text-align: left;
}

.dh-topic-03-fix {
    padding: 30px 120px;
    gap: 40px;
}

.dh-topic-area .dh-topic-03-notes-fix {
    font-feature-settings: "palt";
}

.dh-topic-area .name {
    text-align: right;
}

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

    .contents-item-text-area.dh-to-header-fix {
        gap: 30px;
    }

    .dh-topic-03-fix {
        padding: 0;
        gap: 20px;
    }

    .contents-text .dh-topic-03-fix {
        text-align: center;
    }

    .dh-topic-02-fix {
        padding: 0;
        text-align: center;
    }
}

/*====================
#dh-case
====================*/
.dh-case-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 80px 20px;
    max-width: 1920px;
    width: 100%;
    background-color: #F5F5F5;
}

.dh-case-area .case-label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: normal;
    font-weight: 600;
    color: #000000;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
    margin-bottom: 36px;
}

.dh-case-item-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
}

.dh-case-item-wrap {
    width: 23%;
}

.dh-case-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background-color: #FFFFFF;
    width: 100%;
    transition: all 0.2s linear;
}

.dh-case-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .50) !important;
}

.dh-case-item img {
    width: 100%;
}

.dh-case-item img.dh-case-btn {
    width: 50px;
    aspect-ratio: 1 / 1;
    margin-bottom: 30px;
}

.dh-case-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(16px, calc(8.00px + 0.6250vw), 20px);
    width: 100%;
    gap: 10px;
}

.dh-case-text .label {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.dh-case-text .notes {
    font-size: clamp(14px, calc(8.00px + 1.6000vw), 16px);
    line-height: normal;
    text-align: center;
    font-weight: 400;
}

.case-break-mobile {
    display: none;
}

.case-break-pc {
    display: inline;
}

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

    .dh-case-area .case-label {
        max-width: 430px;
        margin-bottom: 20px;
        text-align: center;
    }

    .dh-case-item-area {
        max-width: 430px;
        gap: 10px;
    }

    .dh-case-item-wrap {
        width: 48%;
    }

    .dh-case-item {
        width: 100%;
        border-radius: 12px;
        height: 390px;
    }

    .dh-case-item img.dh-case-btn {
        width: 36px;
    }

    .dh-case-text {
        padding: 16px clamp(16px, calc(-11.27px + 7.2727vw), 20px);
    }

    .case-break-mobile {
        display: inline;
    }

    .case-break-pc {
        display: none;
    }

    .dh-case-text .label {
        min-height: 48px;
    }

    .dh-case-text .notes {
        min-height: 72px;
    }
}

@media screen and (max-width:500px) {
    .dh-case-item {
        height: clamp(340px, calc(203.64px + 36.3636vw), 360px);
    }
}

/*====================
#dh-topic 04
====================*/
.dh-topic-04-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 80px 20px;
    max-width: 1920px;
    width: 100%;
    background-color: #F5F5F5;
}

.dh-topic-header-fix {
    gap: 70px;
}

.dh-topic-04-header-fix {
    gap: 0;
}

.contents-text h2.dh-topic-04-header {
    color: #000000;
}

.contents-text .bold-fix {
    font-weight: 600;
}

.dh-topic-04-notes-fix {
    gap: 0;
}

@media screen and (max-width:1030px) {
    .dh-topic-04-area {
        padding: 60px 20px;
        margin: 50px 0;
    }

    .dh-topic-04-fix {
        align-items: center;
    }

    .contents-text h3.dh-topic-04-c-text-label {
        text-align: center;
    }

    .dh-topic-header-fix {
        gap: 30px;
    }
}

/*====================
#dh-comment
====================*/
.dh-comment-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 100px 0;
    padding-left: clamp(98px, calc(-106.00px + 15.9375vw), 200px);
    padding-bottom: 200px;
    align-items: flex-start;
    gap: 30px;
}

.dh-comment-area h2.label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    font-weight: 600;
    padding-right: clamp(98px, calc(-106.00px + 15.9375vw), 200px);
    color: #000000;
    text-align: left;
    width: 100%;
}

.comment-item-area {
    list-style: none;
    margin: 0;
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    padding-bottom: 18px;
    padding-right: clamp(98px, calc(-106.00px + 15.9375vw), 200px);
}



.comment-scrollbar-deco {
    position: relative;
    width: 100%;
    --sb-h: 10px;
    --sb-end-gap: clamp(98px, calc(-106.00px + 15.9375vw), 200px);
    --arrow-space: 26px;
    --arrow-pad: 6px;
    --sb-track: rgba(0, 0, 0, .20);
    --sb-thumb: rgba(0, 0, 0, .55);
}

.comment-item-area {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 18px;
}

.comment-item-area::-webkit-scrollbar {
    height: var(--sb-h);
}

.comment-item-area::-webkit-scrollbar-track {
    background: var(--sb-track);
    border-radius: 999px;
    margin-left: var(--arrow-space);
    margin-right: calc(var(--sb-end-gap) + var(--arrow-space));
}

.comment-item-area::-webkit-scrollbar-thumb {
    background: var(--sb-thumb);
    border-radius: 999px;
}

.comment-item-area::-webkit-scrollbar-track-piece:end {
    margin-right: 0;
}

.comment-scrollbar-deco::before,
.comment-scrollbar-deco::after {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 0;
    border-style: solid;
    pointer-events: none;
    z-index: 5;
    transform: translateY(calc((var(--sb-h) - 14px) / 2));
}

.comment-scrollbar-deco::before {
    left: var(--arrow-pad);
    border-width: 7px 9px 7px 0;
    border-color: transparent var(--sb-thumb) transparent transparent;
}

.comment-scrollbar-deco::after {
    right: calc(var(--sb-end-gap) + var(--arrow-pad));
    border-width: 7px 0 7px 9px;
    border-color: transparent transparent transparent var(--sb-thumb);
}


.comment-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
    color: #FFFFFF;
    background-color: #000000;
    width: 480px;
    height: 400px;
    flex: 0 0 480px;
}

.comment-item-fix {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.comment-item h3.comment-label {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    font-weight: 400;
    color: #FFFFFF;
}

.comment-item .notes {
    font-size: 16px;
    line-height: 30px;
    width: 100%;
    font-weight: 400;
    text-align: justify;
}

.comment-item .neame {
    font-size: 16px;
    width: 100%;
    font-weight: 400;
    text-align: right;
}

.comment-item-deco {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
}

@media screen and (max-width:1030px) {
    .dh-comment-area {
        padding: 50px 0;
        padding-left: clamp(55px, calc(-195.00px + 50.0000vw), 320px);
        padding-bottom: 100px;
    }

    .dh-comment-area h2.label {
        padding-right: clamp(55px, calc(-195.00px + 50.0000vw), 320px);
    }

    .comment-item-area {
        padding-right: clamp(55px, calc(-195.00px + 50.0000vw), 320px);
    }

    .comment-scrollbar-deco {
        position: relative;
        width: 100%;
        --sb-h: 10px;
        --sb-end-gap: clamp(55px, calc(-195.00px + 50.0000vw), 320px);
        --arrow-space: 26px;
        --arrow-pad: 6px;
        --sb-track: rgba(0, 0, 0, .20);
        --sb-thumb: rgba(0, 0, 0, .55);
    }

    .dp-ma-comment-area h2.label {
        text-align: center;
    }

    .comment-item {
        width: 390px;
        flex: 0 0 390px;
        border-radius: 12px;
    }

    .comment-item .notes {
        font-size: 14px;
        line-height: 26px;
    }
}

@media screen and (max-width:500px) {
    .dh-comment-area {
        padding-left: 20px;
    }

    .dh-comment-area h2.label {
        padding-right: 20px;
    }

    .comment-item-area {
        padding-right: 20px;
    }

    .comment-scrollbar-deco {
        position: relative;
        width: 100%;
        --sb-h: 10px;
        --sb-end-gap: 20px;
        --arrow-space: 26px;
        --arrow-pad: 6px;
        --sb-track: rgba(0, 0, 0, .20);
        --sb-thumb: rgba(0, 0, 0, .55);
    }

    .comment-item {
        width: clamp(335px, calc(-40.00px + 100.0000vw), 390px);
        flex: 0 0 clamp(335px, calc(-40.00px + 100.0000vw), 390px);
    }

    .comment-item {
        gap: 12px;
    }

    .comment-item-fix {
        gap: 12px;
    }

    .comment-item h3.comment-label {
        font-size: 18px;
    }

    .comment-item .notes {
        font-size: clamp(14px, calc(0.36px + 3.6364vw), 16px);
    }

}

/*====================
#dh-faq
====================*/
.dh-faq-area {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    height: 400px;
    padding: 80px 20px;
    gap: 30px;

}

.dh-company-cta-area h3.c-text-label {
    text-align: left;
}

.dh-faq-text-area {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
    z-index: 3;
    gap: 70px;
}

.dh-faq-text-area .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;
    color: #FFFFFF;
    width: 100%;
}

.dh-faq-img-gradation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(53, 53, 53, 1) 0%, rgba(53, 53, 53, 0) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

.dh-faq-area img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: none;
    width: 1920px;
    aspect-ratio: 24 / 5;
    z-index: 1;
}

.dp-plus a.dh-faq-btn-fix {
    margin-left: 100px;
}

@media screen and (max-width:1030px) {
    .dh-faq-area {
        height: 350px;
        justify-content: center;
    }

    .dh-faq-text-area {
        max-width: 430px;
        align-items: center;
        gap: 40px;
    }

    .dh-faq-text-area .c-text-label {
        text-align: center;
    }

    .dh-faq-area img {
        width: 1920px;
        aspect-ratio: auto;
    }

    .dh-faq-img-gradation {
        background: none;
        background-color: #919191;
    }
}

@media screen and (max-width:500px) {
    .dh-faq-area {
        height: clamp(304px, calc(-9.64px + 83.6364vw), 350px);
    }

    .dh-faq-img-gradation {
        background: none;
    }

    .dh-faq-area img {
        width: 100%;
    }
}


/*====================
レスポンシブ切り替え
====================*/
.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;
}

.d-pc-s {
    display: inline-block;
}

.d-mobile-s {
    display: none;
}

img.d-pc-faq {
    display: flex;
}

img.d-mobile-faq {
    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;
    }

    .d-pc-s {
        display: none;
    }

    .d-mobile-s {
        display: inline-block;
    }
}

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

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

    img.d-pc-faq {
        display: none;
    }

    img.d-mobile-faq {
        display: flex;
    }
}