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

.text-layout-fix,
.text-layout-fix li,
.athlete-detail-list,
.athlete-detail-item,
.athlete-career-area dt,
.athlete-career-area dd,
.comment-area,
.comment-area dt,
.comment-area dd {
    margin: 0;
    padding: 0;
}

.text-layout-fix {
    list-style: none;
}

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

.dp-plus a.border-run {
    margin-top: 20px;
}

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

    .height-fix {
        height: 24px;
    }
}

/*====================
#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;
}

h1.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) {
    .dp-hero-text-area {
        width: 100%;
        top: 200px;
    }

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

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

/*====================
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-area 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;
    font-weight: 600;
}

.contents-item-area 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;
}

.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-text .bold-fix {
    font-weight: 600;
}

.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;
        justify-content: 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";
    }

    .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-text {
        gap: 30px;
    }

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



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

.intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #000000;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
    gap: 60px;
}

.intro-text h2.label {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    font-weight: 500;
    width: 100%;
    text-align: center;
    justify-content: center;
    color: #000000;
}

.intro-text p.notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    font-weight: 400;
    line-height: clamp(36px, calc(8.00px + 2.1875vw), 50px);
    text-align: center;
    color: #000000;
}

.contents-text.professor-intro-fix {
    align-items: flex-start;
}

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

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

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

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

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

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

    .intro-text {
        gap: 30px;
    }

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

    .contents-item.professor-intro-fix {
        max-width: 430px;
        justify-content: center;
    }

    .contents-text.professor-intro-fix {
        align-items: center;
    }


}

/*====================
#athlete-contents
====================*/
.athlete-contents-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F5F5F5;
    max-width: 1920px;
    width: 100%;
    padding: 80px 20px;
}

.athlete-contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
}

.athlete-contents-img-fix {
    overflow: unset;
    position: relative;
    border-radius: 0;
    max-width: 300px;
}

athlete-contents-img-fix img.athlete-example-img {
    width: 100%;
}

.contents-img img.athlete-img-finger {
    position: absolute;
    bottom: -14px;
    right: 16px;
    width: 56px;
}

.athlete-contents-text-fix {
    max-width: 450px;
    gap: 0;
    z-index: 3;
}

.contents-text .a-contents-text-fix {
    line-height: 30px;
}

.text-layout-fix {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
}




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

    .athlete-contents {
        max-width: 430px;
        flex-direction: column;
        align-items: center;
    }

    .athlete-contents-img-fix {
        max-width: 320px;
    }

    .athlete-contents-text-fix {
        max-width: 430px;
        gap: 30px;
    }

    .contents-text .c-text-notes {
        text-align: center;
        font-size: 18px;
    }

    .contents-text .a-contents-text-fix {
        text-align: justify;
    }

    .contents-img img.athlete-img-finger {
        right: 84px;
    }



}



/*====================
#athlete-each
====================*/
.athlete-each-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
    gap: 40px;
    padding: 20px;
    padding-top: clamp(100px, calc(64.79px + 7.0423vw), 200px);
    padding-bottom: clamp(100px, calc(64.79px + 7.0423vw), 200px);
}

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

.athlete-item-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.athlete-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 48%;
    gap: 40px;
}

.athlete-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 300px;
    min-width: 230px;
    width: 100%;
}

.athlete-img {
    border-radius: 20px;
    width: 100%;
}

.athlete-item-left .name {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.link-icon-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.link-icon {
    width: auto;
    height: 24px;
}

.athlete-career-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.athlete-career-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    padding-bottom: 2px;
    height: 30px;
}

.athlete-career-area .athlete-career-header-text {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.athlete-career-area .athlete-career-text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000000;
    text-align: justify;
}

.athlete-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    min-width: 250px;
    width: 100%;
    gap: 30px;
}

.athlete-genre {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    border-radius: 30px;
    width: 100%;
    height: 40px;
    background-color: #000000;
}

.athlete-genre .genre {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #FFFFFF;
    width: 100%;
    padding: 0 16px;
    text-align: left;
}

.comment-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

.to-everyone {
    min-height: 326px;
}

.to-denba {
    min-height: 260px;
}

.comment-area .comment-header {
    font-size: clamp(20px, calc(12.00px + 0.6250vw), 24px);
    font-weight: 500;
    color: #000000;
}

.comment-area .comment-notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(28px, calc(16.00px + 0.9375vw), 34px);
    font-weight: 400;
    color: #000000;
}

.deco-h-line {
    width: 1px;
    height: stretch;
    background-color: #000000;
}

h2.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:1030px) {
    .athlete-each-area {
        max-width: 430px;
    }

    .athlete-item-area {
        flex-direction: column;
        gap: 40px;
    }

    .athlete-item {
        flex-direction: column;
        width: 100%;
    }

    .athlete-item-left {
        max-width: none;
        min-width: auto;
    }

    .athlete-career-area {
        max-width: 300px;
    }

    .athlete-item-right {
        max-width: none;
        min-width: auto;
    }

    .athlete-genre .genre {
        text-align: center;
    }

    .to-everyone {
        min-height: auto;
    }

    .to-denba {
        min-height: auto;
    }

    .comment-area .comment-header {
        text-align: center;
    }

    .deco-h-line {
        width: 100%;
        height: 1px;
    }

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





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

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