@charset "UTF-8";

/*
================================================================
 ヒーローイメージ
================================================================
*/

.top-hero-screen {
    position: relative;
    display: block;
    padding: 0 0 0;
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-white);
    text-align: center;
    /* min-height: calc(100vh + 125px - var(--themeval-global-header-height));
    min-height: calc(100lvh + 125px - var(--themeval-global-header-height)); */
}
.top-hero-screen-bg {
    position: sticky;
    z-index: 1;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: 0;
}
.top-hero-screen-bg-frame {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    overflow: hidden;
}
.top-hero-screen-bg-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/photo/hero_mv.jpg);
    background-repeat: no-repeat;
    background-position: 50% 25%;
    background-size: cover;
}
.top-hero-screen-bg-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.top-hero-screen-body {
    padding: 0 0 125px;
}
.top-hero-heading {
    position: relative;
    z-index: 21;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    min-height: calc(100vh - 100px - var(--themeval-global-header-height));
    min-height: calc(100lvh - 100px - var(--themeval-global-header-height));
    font-weight: 700;
    font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-hero-heading .this__title {
    display: block;
    font-size: 240%;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
}
.top-hero-heading .this__subtitle {
    display: block;
    margin-top: 1em;
    font-size: 100%;
    font-style: normal;
    font-weight: 700;
}
.top-hero-scroll-info {
    position: relative;
    z-index: 21;
    display: block;
    box-sizing: border-box;
    margin: -150px auto 0;
    padding: 100px 0 0;
    width: 100px;
    height: 150px;
    background-image: url(../img/icon/ico_scroll_next_lg.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 90px 90px;
    color: var(--themeval-color-theme-text-white);
    text-decoration: none;
    font-family: var(--themeval-font-en);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
}


@media screen {
    .top-hero-screen.disp-animate .top-hero-screen-bg-frame::before {
        opacity: 0.1;
        transform: scale(1.1);
        transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    }
    .top-hero-screen.disp-animate.disp-animate--display .top-hero-screen-bg-frame::before {
        opacity: 1;
        transform: none;
    }
    .top-hero-screen.disp-animate .top-hero-screen-bg-frame::after {
        opacity: 0.1;
        transition: opacity 1.5s ease-in-out 1.5s;
    }
    .top-hero-screen.disp-animate.disp-animate--display .top-hero-screen-bg-frame::after {
        opacity: 1;
    }
    .top-hero-screen.disp-animate .top-hero-heading {
        opacity: 0.01;
        transition: opacity 1s ease-in-out 2.5s;
    }
    .top-hero-screen.disp-animate.disp-animate--display .top-hero-heading {
        opacity: 1;
    }
}



@media (max-width: 1279px), (min-width: 1280px) and (max-height: 859px) {
    .top-hero-heading {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-hero-heading .this__title {
        font-size: 240%;
        line-height: 1.6;
    }
    .top-hero-heading .this__subtitle {
        margin-top: 1em;
    }
    .top-hero-scroll-info {
        margin: -100px auto 0;
        padding: 80px 0 0;
        width: 80px;
        height: 100px;
        background-size: 72px 72px;
        font-size: 16px;
    }
}
@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    .top-hero-screen-body {
        padding: 0 0 100px;
    }
    .top-hero-heading {
        min-height: calc(100vh - 50px - var(--themeval-global-header-height));
        min-height: calc(100lvh - 50px - var(--themeval-global-header-height));
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-hero-heading .this__title {
        font-size: 240%;
        line-height: 1.6;
    }
    .top-hero-heading .this__subtitle {
        margin-top: 1em;
    }
}
@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    .top-hero-screen-body {
        padding: 0 0 70px;
    }
    .top-hero-heading {
        min-height: calc(100vh - 50px - var(--themeval-global-header-height));
        min-height: calc(100lvh - 50px - var(--themeval-global-header-height));
        font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-hero-heading .this__title {
        font-size: 240%;
        line-height: 1.6;
    }
    .top-hero-heading .this__subtitle {
        margin-top: 1em;
    }
    .top-hero-scroll-info {
        margin: -80px auto 0;
        padding: 70px 0 0;
        width: 70px;
        height: 80px;
        background-size: 60px 60px;
        font-size: 11px;
    }
}
@media (max-width: 479px), (max-height: 511px) {
    .top-hero-screen-body {
        padding: 0 0 70px;
    }
    .top-hero-heading {
        min-height: calc(100vh - 50px - var(--themeval-global-header-height));
        min-height: calc(100lvh - 50px - var(--themeval-global-header-height));
        font-size: calc( 10rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-hero-heading .this__title {
        font-size: 240%;
        line-height: 1.6;
    }
    .top-hero-heading .this__subtitle {
        margin-top: 1em;
    }
}



/* 印刷用設定 */
@media print {
    .top-hero-screen {
        background-color: transparent;
        color: var(--themeval-color-theme-text-black);
    }
    .top-hero-screen-bg {
        display: none;
    }
    .top-hero-heading {
        min-height: 10em;
    }
    .top-hero-scroll-info {
        display: none;
    }
}



/*
================================================================
 Introduction
================================================================
*/

.top-introduction {
    /* position: relative; */
    display: block;
    margin: -125px 0 0;
}
.section-panel.top-introduction__content-panel {
    position: relative;
    display: block;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0) 125px, rgba(255,255,255,1) 125px, rgba(255,255,255,1));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    color: var(--themeval-color-theme-01);
    text-align: justify;
}
.section-panel.top-introduction__content-panel > .section-panel-bg {
    position: absolute;
    z-index: 11;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(-180deg, rgba(255,255,255,0), rgba(255,255,255,0) 200px, rgba(255,255,255,1) 200px, rgba(255,255,255,1));
    pointer-events: none;
    overflow: hidden;
    pointer-events: none;
}
.section-panel.top-introduction__content-panel > .section-panel-bg::before,
.section-panel.top-introduction__content-panel > .section-panel-bg::after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url(../img/background/bg_wave_single.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 2000px 950px;
}
.section-panel.top-introduction__content-panel > .section-panel-bg::before {
    top: 0;
}
.section-panel.top-introduction__content-panel > .section-panel-bg::after {
    top: 125px;
    transform: rotateY(180deg);
}
.section-panel.top-introduction__content-panel > .section-panel-body {
    position: relative;
    z-index: 21;
    display: block;
    box-sizing: border-box;
    padding: 100px 0 100px;
    min-height: calc(100vh + 125px);
    min-height: calc(100lvh + 125px);
    mix-blend-mode: multiply;
}
.section-panel.top-introduction__content-panel > .section-panel-tail {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: -140px;
    display: block;
    width: 100%;
    height: 160px;
    background-color: transparent;
    background-image: url(../img/background/bg_wave_cutter.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 2000px 320px;
}

.top-introduction-heading {
    display: block;
    margin: 0;
    text-align: left;
    font-weight: 700;
    line-height: 1.4;
    font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-introduction-heading .this__title {
    display: block;
    line-height: 1;
    font-size: 258.33%;
    font-family: var(--themeval-font-en);
}
.top-introduction-heading .this__subtitle {
    display: block;
}

.top-introduction-content {
    display: block;
    text-align: justify;
    margin-top: 90px;
    line-height: 2;
}

.top-introduction-image {
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    margin-top: 120px;
}
.top-introduction-image .this__img {
    display: block;
    width: 440px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.top-introduction-image .this__text {
    display: block;
    margin: 0.5em 0 0;
    color: var(--themeval-color-theme-02);
    font-size: calc( 32rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 1.4;
    font-weight: 700;
}


@media screen {
    .top-introduction-image.disp-animate .this__text {
        opacity: 0.01;
        transition: opacity 1s ease-in-out 1.5s;
    }
    .top-introduction-image.disp-animate.disp-animate--display .this__text {
        opacity: 1;
    }
    .top-introduction-image.disp-animate::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 400%;
        height: 100%;
        mix-blend-mode: screen;
        background-image: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.2) 63%, rgba(255,255,255,1) 65%, rgba(255,255,255,0) 67%, rgba(255,255,255,0));
        transition: transform 2.5s ease-out 0s;
    }
    .top-introduction-image.disp-animate.disp-animate--display::after {
        transform: translateX(-100%);
    }
}


@media (min-width: 1921px) {
    .section-panel.top-introduction__content-panel > .section-panel-bg::before,
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        background-size: 100% 950px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-tail {
        background-size: 100% 320px;
    }
}
@media (max-width: 1920px) and (min-width: 1080px) and (max-height: 767px) {
    .top-introduction {
        margin: -100px 0 0;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        top: 80px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        padding: 80px 0 80px;
        min-height: calc(100vh + 100px);
        min-height: calc(100lvh + 100px);
    }
}
@media (max-width: 1920px) and (min-width: 1080px) and (max-height: 639px) {
    .top-introduction {
        margin: -70px 0 0;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        top: 80px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        padding: 100px 0 50px;
        min-height: calc(100vh + 70px);
        min-height: calc(100lvh + 70px);
    }
}
@media (max-width: 1079px) {
    .top-introduction {
        margin: -100px 0 0;
    }
    .section-panel.top-introduction__content-panel {
        background-image: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0) 100px, rgba(255,255,255,1) 100px, rgba(255,255,255,1));
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        padding: 60px 0 80px;
        min-height: calc(100vh + 100px);
        min-height: calc(100lvh + 100px);
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::before {
        background-image: url(../img/background/bg_wave_double_tb-w.png);
        background-size: 1280px 816px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        display: none;
    }
    .section-panel.top-introduction__content-panel > .section-panel-tail {
        background-size: 1600px 256px;
        bottom: -112px;
        height: 128px;
    }
}
@media (max-width: 1079px) and (min-width: 768px) and (max-height: 639px) {
    .top-introduction {
        margin: -70px 0 0;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::before {
        background-image: url(../img/background/bg_wave_double_tb-w.png);
        background-size: 1280px 816px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        display: none;
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        padding: 50px 0 50px;
        min-height: calc(100vh + 70px);
        min-height: calc(100lvh + 70px);
    }
}
@media (max-width: 767px){
    .top-introduction {
        margin: -70px 0 0;
    }
    .section-panel.top-introduction__content-panel {
        background-image: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0) 70px, rgba(255,255,255,1) 70px, rgba(255,255,255,1));
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        padding: 50px 0 50px;
        min-height: calc(100vh + 70px);
        min-height: calc(100lvh + 70px);
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::before {
        background-image: url(../img/background/bg_wave_double_sp.png);
        background-size: 800px 510px;
    }
    .section-panel.top-introduction__content-panel > .section-panel-bg::after {
        display: none;
    }
    .section-panel.top-introduction__content-panel > .section-panel-tail {
        background-size: 1000px 160px;
        bottom: -70px;
        height: 80px;
    }
}

@media (max-width: 1279px), (min-width: 1280px) and (max-height: 859px) {
    .top-introduction-heading {
        font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-introduction-heading .this__title {
        font-size: 258.33%;
    }
    .top-introduction-content {
        margin-top: 70px;
    }
    .top-introduction-image {
        margin-top: 120px;
    }
    .top-introduction-image .this__img {
        width: 440px;
    }
    .top-introduction-image .this__text {
        margin: 0.5em 0 0;
        font-size: calc( 26rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }

}
@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    .top-introduction-heading {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-introduction-heading .this__title {
        font-size: 258.33%;
    }
    .top-introduction-content {
        margin-top: 30px;
    }
    .top-introduction-image {
        margin-top: 100px;
    }
    .top-introduction-image .this__img {
        width: 330px;
    }
    .top-introduction-image .this__text {
        margin: 0.5em 0 0;
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
}
@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    .top-introduction-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-introduction-heading .this__title {
        font-size: 258.33%;
    }
    .top-introduction-content {
        margin-top: 30px;
    }
    .top-introduction-image {
        margin-top: 70px;
    }
    .top-introduction-image .this__img {
        width: 330px;
    }
    .top-introduction-image .this__text {
        margin: 0.5em 0 0;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
}

/* 印刷用設定 */
@media print {
    .section-panel.top-introduction__content-panel > .section-panel-bg {
        display: none;
    }
    .section-panel.top-introduction__content-panel > .section-panel-body {
        min-height: initial;
    }
    .section-panel.top-introduction__content-panel > .section-panel-tail {
        display: none;
    }
    .top-introduction-content {
        break-before: avoid;
    }
    .top-introduction-image {
        break-before: avoid;
        break-inside: avoid;
    }
}

/*
================================================================
 Project Area
================================================================
*/

.top-project-area {
    /* position: relative; */
}

.section-panel.top-project-area__map-panel {
    position: relative;
    color: var(--themeval-color-theme-01);
    text-align: justify;
}
.section-panel.top-project-area__map-panel > .section-panel-bg {
    position: sticky;
    z-index: 1;
    top: 100%;
    display: block;
    width: 100%;
    height: 0;
}
.section-panel.top-project-area__map-panel > .section-panel-bg::before {
    content: "";
    position: absolute;
    display: block;
    top: calc(var(--themeval-global-header-height) - 100vh);
    top: calc(var(--themeval-global-header-height) - 100lvh);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    background-image: url(../img/background/bg_wave_picture.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.section-panel.top-project-area__map-panel > .section-panel-header {
    position: relative;
    z-index: 21;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 100px 0 0;
}

.top-project-area-heading {
    display: block;
    margin: 0;
    color: var(--themeval-color-theme-text-white);
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-project-area-heading .this__title {
    display: block;
    line-height: 1;
    font-size: 458.33%;
}
.top-project-area-heading .this__subtitle {
    display: block;
}

.section-panel.top-project-area__map-panel > .section-panel-body {
    position: sticky;
    z-index: 21;
    top: var(--themeval-global-header-height);
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: calc(100vh - var(--themeval-global-header-height));
    min-height: calc(100lvh - var(--themeval-global-header-height));
    padding: 30px 0 0;
    background: transparent;
    background-image: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1) 200px, rgba(255,255,255,1));
}

.section-panel.top-project-area__map-panel > .section-panel-position {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 30vh 0 100vh;
    margin: calc(100px + var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(100px + var(--themeval-global-header-height) - 100lvh) 0 0;
    background-color: transparent;
}

.top-project-area-map {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    max-width: calc( ( 100vh - 120px ) / 0.4779 );
    padding: 0 0 0;
    margin: 0 auto 0;
    overflow: hidden;
}
.top-project-area-map::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 47.79% 0 0;
    background-color: transparent;
    background-image: url(../img/map/map_main.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.top-project-area-map .pc-map-balloon {
    position: absolute;
    display: block;
    opacity: 0.01;
    pointer-events: none;
    transition: 
        transform var(--themeval-menu-transition),
        opacity var(--themeval-menu-transition);
}
.top-project-area-map .pc-map-balloon img {
    display: block;
    max-width: 100%;
    height: auto;
}

.top-project-area-map .sp-map-balloon {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 70% 0 0;
    opacity: 0.01;
    transition: 
        opacity var(--themeval-menu-transition-step-1),
        left var(--themeval-menu-transition-after);
}
.top-project-area-map .sp-map-balloon .map-pin {
    position: absolute;
    z-index: 1;
    display: block;
    width: 7%;
    height: auto;
    opacity: 0.01;
    transform: translate(-50%, -100%);
    transition: opacity var(--themeval-menu-transition-after);
}
.top-project-area-map .sp-map-balloon .map-pin::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    display: none;
    box-sizing: content-box;
    width: 110%;
    height: 0;
    padding: 40% 0 0;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
    transform: translate(-50%, 50%) scale(1.5);
    transition: transform var(--themeval-menu-transition-after);
}
.top-project-area-map .sp-map-balloon .map-pin::after {
    content: "";
    position: relative;
    z-index: 2;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 172% 0 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateY(-30%);
    transition: transform var(--themeval-menu-transition-after);
}
.top-project-area-map .sp-map-balloon .map-baloon {
    position: absolute;
    right: 0;
    top: calc( 100% - 50px );
    display: block;
    box-sizing: content-box;
    width: calc( 100% - 3px );
    height: auto;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-area {
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 50px;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-area::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: calc(50% - 25px);
    top: 0;
    display: block;
    width: 50px;
    height: 100%;
    background-image: url(../img/map/map_balloon_sp_ct.png);
    background-repeat: no-repeat;
    background-position: 51% top;
    background-size: auto 100px;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-area::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    display: block;
    width: calc(50% - 25px);
    height: 100%;
    background-image: url(../img/map/map_balloon_sp_rt.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100px;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-area .this__title {
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: calc(50% - 25px);
    height: 50px;
    padding: 10px 0 0 30px;
    background-image: url(../img/map/map_balloon_sp_lt.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100px;
    color: var(--themeval-color-theme-text-white);
    text-align: left;
    font-family: var(--themeval-font-en);
    font-weight: 400;
    font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 1.5;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-name {
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 10px 25px 30px 20px;
    color: var(--themeval-color-theme-01);
    text-align: center;
    font-weight: 700;
    font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 1.5;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-name::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(../img/map/map_balloon_sp_lb.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 120px;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-name::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(../img/map/map_balloon_sp_rb.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 120px;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-name .this__title {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}
.top-project-area-map .sp-map-balloon .map-baloon .map-balloon-name .this__title span {
    display: inline-block;
}

.top-project-area-map .this__print-image {
    display: none;
}

.top-project-area-map-scroll-info {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    box-sizing: border-box;
    margin: 0 0 0;
    padding: 60px 0 0;
    width: 100px;
    height: 90px;
    background-image: url(../img/icon/ico_scroll_next.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 50px 50px;
    color: var(--themeval-color-theme-text-white);
    text-decoration: none;
    font-family: var(--themeval-font-en);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.top-project-area-parallax-map {
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 23.89% 0 0;
}

.top-project-area-map .pc-map-balloon.area1_park-side {
    transform: translateY(-10%);
    left: 4%;
    bottom: 75%;
    width: calc( 100% * 430 / 1360 );
}
.top-project-area-map .pc-map-balloon.area1_seawall {
    transform: translateY(10%);
    left: 12%;
    top: 35%;
    width: calc( 100% * 295 / 1360 );
}
.top-project-area-map .pc-map-balloon.area2_ferry {
    transform: translateY(10%);
    right: 5%;
    top: 62%;
    width: calc( 100% * 200 / 1360 );
}
.top-project-area-map .pc-map-balloon.area2_ichiba-kan {
    transform: translateY(-10%);
    right: 13%;
    bottom: 60%;
    width: calc( 100% * 265 / 1360 );
}

.top-project-area-map.check-display-target-pmap-area-1-park-side--display-top-scrolled .pc-map-balloon.area1_park-side,
.top-project-area-map.check-display-target-pmap-area-1-seawall--display-top-scrolled .pc-map-balloon.area1_seawall,
.top-project-area-map.check-display-target-pmap-area-2-ferry--display-top-scrolled .pc-map-balloon.area2_ferry,
.top-project-area-map.check-display-target-pmap-area-2-ichiba-kan--display-top-scrolled .pc-map-balloon.area2_ichiba-kan {
    transform: none;
    opacity: 1;
}

.top-project-area-map .sp-map-balloon.area1_park-side .map-pin {
    left: 15%;
    top: 22%;
}
.top-project-area-map .sp-map-balloon.area1_park-side .map-pin::after {
    background-image: url(../img/map/map_pin_min.svg);
}
.top-project-area-map .sp-map-balloon.area1_seawall .map-pin {
    left: 12%;
    top: 30%;
}
.top-project-area-map .sp-map-balloon.area1_seawall .map-pin::after {
    background-image: url(../img/map/map_pin_kan.svg);
}
.top-project-area-map .sp-map-balloon.area2_ferry .map-pin {
    right: 3%;
    top: 54%;
}
.top-project-area-map .sp-map-balloon.area2_ferry .map-pin::after {
    background-image: url(../img/map/map_pin_kan.svg);
}
.top-project-area-map .sp-map-balloon.area2_ichiba-kan .map-pin {
    right: 13%;
    top: 33%;
}
.top-project-area-map .sp-map-balloon.area2_ichiba-kan .map-pin::after {
    background-image: url(../img/map/map_pin_min.svg);
}

.top-project-area-map.check-display-target-pmap-area-1-park-side--display-top .sp-map-balloon.area1_park-side,
.top-project-area-map.check-display-target-pmap-area-1-seawall--display-top .sp-map-balloon.area1_seawall,
.top-project-area-map.check-display-target-pmap-area-2-ferry--display-top .sp-map-balloon.area2_ferry,
.top-project-area-map.check-display-target-pmap-area-2-ichiba-kan--display-top .sp-map-balloon.area2_ichiba-kan {
    left: 0;
    opacity: 1;
    transition: opacity var(--themeval-menu-transition-step-2);
}
.top-project-area-map.check-display-target-pmap-area-1-park-side--display-top .sp-map-balloon.area1_park-side .map-pin,
.top-project-area-map.check-display-target-pmap-area-1-seawall--display-top .sp-map-balloon.area1_seawall .map-pin,
.top-project-area-map.check-display-target-pmap-area-2-ferry--display-top .sp-map-balloon.area2_ferry .map-pin,
.top-project-area-map.check-display-target-pmap-area-2-ichiba-kan--display-top .sp-map-balloon.area2_ichiba-kan .map-pin {
    opacity: 1;
    transition: opacity var(--themeval-menu-transition-step-2);
}
.top-project-area-map.check-display-target-pmap-area-1-park-side--display-top .sp-map-balloon.area1_park-side .map-pin::before,
.top-project-area-map.check-display-target-pmap-area-1-seawall--display-top .sp-map-balloon.area1_seawall .map-pin::before,
.top-project-area-map.check-display-target-pmap-area-2-ferry--display-top .sp-map-balloon.area2_ferry .map-pin::before,
.top-project-area-map.check-display-target-pmap-area-2-ichiba-kan--display-top .sp-map-balloon.area2_ichiba-kan .map-pin::before {
    transform: translate(-50%, 50%);
    transition: translate var(--themeval-menu-transition-step-2);
}
.top-project-area-map.check-display-target-pmap-area-1-park-side--display-top .sp-map-balloon.area1_park-side .map-pin::after,
.top-project-area-map.check-display-target-pmap-area-1-seawall--display-top .sp-map-balloon.area1_seawall .map-pin::after,
.top-project-area-map.check-display-target-pmap-area-2-ferry--display-top .sp-map-balloon.area2_ferry .map-pin::after,
.top-project-area-map.check-display-target-pmap-area-2-ichiba-kan--display-top .sp-map-balloon.area2_ichiba-kan .map-pin::after {
    transform: none;
    transition: transform var(--themeval-menu-transition-step-2);
}


.section-panel.top-project-area__content-panel {
    position: relative;
    margin: calc(var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 100lvh) 0 0;
    color: var(--themeval-color-theme-01);
}
.section-panel.top-project-area__content-panel > .section-panel-bg {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(100% - 200px);
    background-color: var(--themeval-color-theme-white);
}
.section-panel.top-project-area__content-panel > .section-panel-body {
    position: relative;
    box-sizing: border-box;
    padding: 0 0 100px;
    min-height: calc(100vh + 200px);
    min-height: calc(100lvh + 200px);
}
.section-panel.top-project-area__content-panel > .section-panel-body .content-inner-container {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.top-project-area-map-spacer {
    position: relative;
    margin: 0 auto 0;
    width: 100%;
    max-width: calc( ( 100vh - 120px ) / 0.4779 );
}
.top-project-area-map-spacer::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 47.79% 0 0;
}

.section-panel.top-project-area__content-panel > .section-panel-body .content-frame-container.top-project-area-content-half {
    position: relative;
    z-index: 21;
    margin-top: calc( -1 * min(100px, 15vh) );
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,1) calc(50% + 130px), rgba(255,255,255,0) calc(50% + 130px), rgba(255,255,255,0));
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
}
.section-panel.top-project-area__content-panel > .section-panel-body .content-frame-container.top-project-area-content-main {
    position: relative;
    z-index: 21;
    background-color: var(--themeval-color-theme-white);
}

.section-panel.top-project-area__content-panel > .section-panel-tail {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: -140px;
    display: block;
    width: 100%;
    height: 160px;
    background-color: transparent;
    background-image: url(../img/background/bg_wave_cutter.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 2000px 320px;
}

.top-project-area-content-section {
    position: relative;
    display: block;
    padding: 70px 0 0;
}
.top-project-area-content-half .top-project-area-content-section {
    margin-right: auto;
    margin-left: 0;
    width: calc(50% + 100px);
}
#shimizu-port-memo.top-project-area-content-section::before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 60px;
    top: 50px;
    display: block;
    width: 390px;
    height: 90px;
    background-color: transparent;
    background-image: url(../img/item/item_shimizu-port-memo.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    pointer-events: none;
}
.top-project-area-content-heading {
    position: relative;
    z-index: 11;
    display: block;
    margin: 0 0 30px;
    padding: 0 0 0 0.5em;
    color: var(--themeval-color-theme-01);
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 28rem / var(--themeval-root-font-size) ); /* $base-font-size */
    border-left: 10px solid var(--themeval-color-theme-01);
}
.top-project-area-content-section dl {
    position: relative;
    z-index: 11;
    display: block;
    box-sizing: border-box;
    margin: 0 0 0;
    padding: 0 0 0;
    width: 100%;
}
.top-project-area-content-section dl > dt {
    display: block;
    box-sizing: border-box;
    margin: 1em 0 0;
    padding: 0 0 0;
    width: 100%;
}
.top-project-area-content-section dl > dt .this__title {
    display: inline-block;
    box-sizing: border-box;
    margin: 0 0 0;
    padding: 0 0.3em 0;
    color: var(--themeval-color-theme-01);
    background-color: transparent;
    background-image: linear-gradient(0deg, var(--themeval-color-theme-03), var(--themeval-color-theme-03) 0.5em, var(--themeval-color-theme-white) 0.5em, var(--themeval-color-theme-white));
    line-height: 1.2;
    font-family: var(--themeval-font-en);
    font-weight: 700;
    font-size: calc( 32rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-project-area-content-section dl > dt .this__num {
    display: inline-block;
    box-sizing: border-box;
    margin: 0 0 0;
    padding: 0 0 0;
    line-height: 1;
    font-size: 137.5%;
    color: var(--themeval-color-theme-text-white);
    -webkit-text-stroke: 1px var(--themeval-color-theme-01);
    text-stroke: 1px var(--themeval-color-theme-01);
    paint-order: fill;
}
.top-project-area-content-section dl > dd {
    display: block;
    box-sizing: border-box;
    margin: 1em 0 0;
    padding: 0 0 0;
    width: 100%;
}

table.related-parties-table {
    position: relative;
    z-index: 11;
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
    background-color: var(--themeval-color-theme-white);
    border-collapse: collapse;
    white-space: nowrap;
}
table.related-parties-table thead th {
    position: relative;
    padding: 0.3em 1em;
    border-top: 0 none;
    border-bottom: 0 none;
    border-left: 0 none;
    border-right: 1px solid var(--themeval-color-theme-white);
    background-color: var(--themeval-color-theme-01);
    color: var(--themeval-color-theme-text-white);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}
table.related-parties-table thead th::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: transparent;
    border-left: 1px solid var(--themeval-color-theme-white);
    border-right: 1px solid var(--themeval-color-theme-white);
    pointer-events: none;
}
table.related-parties-table thead th:last-child {
    border-right: 0 none;
}
table.related-parties-table thead th:first-child::before {
    border-left: 0 none;
}
table.related-parties-table thead th:last-child::before {
    border-right: 0 none;
}
table.related-parties-table tbody td {
    position: relative;
    padding: 0.3em 1em;
    border-top: 0 none;
    border-left: 0 none;
    border-right: 1px solid var(--themeval-color-theme-gray-01);
    border-bottom: 1px solid var(--themeval-color-theme-gray-01);
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-01);
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}
table.related-parties-table tbody td:last-child {
    border-right: 0 none;
}
table.related-parties-table tbody td.related-parties-table__client {
    padding: 0.4em 2.5em;
    background-repeat: no-repeat;
    background-position: left 0.67em center;
    background-size: 1.67em 1.67em;
}
table.related-parties-table tbody td.related-parties-table__client.client-kan {
    background-image: url(../img/icon/ico_kan.svg);
}
table.related-parties-table tbody td.related-parties-table__client.client-min {
    background-image: url(../img/icon/ico_min.svg);
}
table.related-parties-table tbody td.related-parties-table__client .this__client-ico {
    position: absolute;
    left: 0.67em;
    top: 50%;
    display: block;
    width: 1.67em;
    transform: translateY(-50%);
}
table.related-parties-table tbody td.related-parties-table__client .this__client-ico img {
    display: block;
    width: 100%;
    height: auto;
}


@media (min-width: 1921px) {
    .section-panel.top-project-area__content-panel > .section-panel-tail {
        background-size: 100% 320px;
    }
}
@media (max-width: 1079px) {
    .section-panel.top-project-area__content-panel > .section-panel-tail {
        background-size: 1600px 256px;
        bottom: -112px;
        height: 128px;
    }
}
@media (max-width: 767px) {
    .section-panel.top-project-area__content-panel > .section-panel-tail {
        background-size: 1000px 160px;
        bottom: -70px;
        height: 80px;
    }
}


@media (max-width: 1279px), (min-width: 1280px) and (max-height: 859px) {
    .top-project-area-heading {
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-project-area-heading .this__title {
        font-size: 400%;
    }
    .top-project-area-heading .this__title img {
        width: 460px;
        height: auto;
    }
    .top-project-area-map-scroll-info {
        padding: 45px 0 0;
        width: 80px;
        height: 65px;
        background-size: 40px 40px;
        font-size: 16px;
    }
    .top-project-area-content-section {
        padding: 70px 0 0;
    }
    #shimizu-port-memo.top-project-area-content-section::before {
        right: 40px;
        top: 30px;
        width: 325px;
        height: 75px;
    }
    .top-project-area-content-heading {
        margin: 0 0 20px;
        padding: 0 0 0 0.5em;
        font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
        border-left: 10px solid var(--themeval-color-theme-01);
    }
    .top-project-area-content-section dl > dt .this__title {
        font-size: calc( 26rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}
@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    .top-project-area-heading {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-project-area-heading .this__title {
        font-size: 400%;
    }
    .top-project-area-heading .this__title img {
        width: 380px;
        height: auto;
    }
    .top-project-area-content-section {
        padding: 50px 0 0;
    }
    .top-project-area-content-half .top-project-area-content-section {
        margin-right: auto;
        width: calc(50% + 100px);
    }
    #shimizu-port-memo.top-project-area-content-section::before {
        right: 10px;
        top: 30px;
        width: 260px;
        height: 60px;
    }
    .top-project-area-content-heading {
        margin: 0 0 20px;
        padding: 0 0 0 0.5em;
        font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
        border-left: 10px solid var(--themeval-color-theme-01);
    }
    .top-project-area-content-section dl > dt .this__title {
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}
@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        padding: 70px 0 0;
    }
    .top-project-area-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-project-area-heading .this__title {
        font-size: 400%;
    }
    .top-project-area-heading .this__title img {
        width: 340px;
        height: auto;
    }
    .top-project-area-content-section {
        padding: 50px 0 0;
    }
    .top-project-area-content-heading {
        margin: 0 0 10px;
        padding: 0 0 0 0.5em;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
        border-left: 5px solid var(--themeval-color-theme-01);
    }
    .top-project-area-content-section dl > dt .this__title {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}
@media (max-width: 767px) {
    .top-project-area-map {
        max-width: calc( ( 100vh - 200px ) / 0.7 );
        padding: 0 0 100px;
    }
    .top-project-area-map::before {
        padding: 70% 0 0;
        background-image: url(../img/map/map_main_sp.jpg);
        background-position: 50% 50%;
    }
    .top-project-area-map::after {
        height: 150px;
    }
    .top-project-area-map .pc-map-balloon {
        display: none;
    }
    .top-project-area-map .sp-map-balloon {
        display: block;
    }
    /* .top-project-area-map-scroll-info {
        display: none;
    } */
    .top-project-area-map-scroll-info {
        bottom: 100px;
        left: 50%;
        margin-left: -40px;
        padding: 45px 0 0;
        width: 80px;
        height: 70px;
        background-size: 40px 40px;
        font-size: 14px;
        transition: opacity var(--themeval-menu-transition-step-2);
    }
    .top-project-area-map.check-display-target-pmap-area-1-park-side--display-top-scrolled .top-project-area-map-scroll-info {
        opacity: 0;
        transition: opacity var(--themeval-menu-transition-step-1);
    }

    .top-project-area-parallax-map {
        display: block;
        box-sizing: content-box;
        width: 100%;
        height: 0;
        padding: 80% 0 0;
    }

    .top-project-area-map-spacer {
        max-width: calc( ( 100vh - 200px ) / 0.7 );
    }
    .top-project-area-map-spacer::before {
        content: "";
        display: block;
        box-sizing: content-box;
        width: 100%;
        height: 0;
        padding: 70% 0 30px;
    }
    .section-panel.top-project-area__content-panel > .section-panel-body .content-frame-container.top-project-area-content-half {
        margin-top: 0;
        background-color: transparent;
        background-image: none;
    }
    .top-project-area-content-half .top-project-area-content-section {
        margin-right: auto;
        width: 100%;
    }
    #shimizu-port-memo.top-project-area-content-section::before {
        right: 5px;
        top: 40px;
        width: 195px;
        height: 45px;
    }
}
@media (max-width: 479px), (max-height: 511px) {
    .top-project-area-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-project-area-heading .this__title {
        font-size: 300%;
    }
    .top-project-area-heading .this__title img {
        width: 255px;
        height: auto;
    }
}


@media (min-width: 1440px) and (min-height: 1080px) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 25px;
        height: calc( 100vh + 250px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 250px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 275px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 1280px) and (max-width: 1439px) and (max-aspect-ratio: 7/5) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 25px;
        height: calc( 100vh + 250px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 250px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 275px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 1080px) and (max-width: 1279px) and (max-aspect-ratio: 5/4) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 0;
        height: calc( 100vh + 224px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 224px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 224px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 960px) and (max-width: 1079px) and (max-aspect-ratio: 4/3) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 0;
        height: calc( 100vh + 203px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 203px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 203px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 960px) and (max-width: 1079px) and (max-height: 719px) and (max-aspect-ratio: 4/3) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        top: -25px;
        height: calc( 100vh + 203px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 203px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 178px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 768px) and (max-width: 959px) and (max-aspect-ratio: 4/3) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: -25px;
        height: calc( 100vh + 203px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 203px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 173px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (min-width: 480px) and (max-width: 767px) and (max-aspect-ratio: 3/4) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 10px;
        height: calc( 100vh + 161px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 161px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 171px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}
@media (max-width: 479px) and (min-height: 540px) and (max-aspect-ratio: 5/7) {
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: sticky;
        top: 10px;
        height: calc( 100vh + 144px - var(--themeval-global-header-height) );
        height: calc( 100lvh + 144px - var(--themeval-global-header-height) );
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: sticky;
        top: 154px;
        margin-top: calc(var(--themeval-global-header-height) - 100vh);
        margin-top: calc(var(--themeval-global-header-height) - 100lvh);
    }
}


/* 印刷用設定 */
@media print {
    .top-project-area {
        break-before: always;
    }
    .section-panel.top-project-area__map-panel > .section-panel-bg {
        display: none;
    }
    .section-panel.top-project-area__map-panel > .section-panel-header {
        position: relative;
        top: 0;
        min-height: initial;
        height: auto;
        margin: 0;
    }
    .section-panel.top-project-area__map-panel > .section-panel-body {
        position: relative;
        top: 0;
        min-height: initial;
        height: auto;
        margin: 0;
        break-before: avoid;
    }
    .section-panel.top-project-area__map-panel > .section-panel-position {
        display: none;
    }
    .top-project-area-heading {
        color: var(--themeval-color-theme-text-black);
    }
    .top-project-area-heading .this__title[data-print-text] {
        line-height: 1.4;
    }
    .top-project-area-map {
        background-image: none;
        padding: 0;
    }
    .top-project-area-map .pc-map-balloon,
    .top-project-area-map .sp-map-balloon,
    .top-project-area-map::before,
    .top-project-area-map::after {
        display: none;
    }
    .top-project-area-map .this__print-image {
        display: block;
        width: 100%;
        height: auto;
    }
    .top-project-area-map-scroll-info {
        display: none;
    }
    .top-project-area-parallax-map {
        display: none;
    }
    .section-panel.top-project-area__content-panel {
        margin: 0;
    }
    .section-panel.top-project-area__content-panel > .section-panel-body {
        min-height: initial;
    }
    .top-project-area-map-spacer::before {
        display: none;
    }
    .section-panel.top-project-area__content-panel > .section-panel-body .content-frame-container.top-project-area-content-half {
        margin-top: 0;
    }
    .section-panel.top-project-area__content-panel > .section-panel-tail {
        display: none;
    }
    .top-project-area-content-section {
        break-inside: avoid;
    }
    .top-project-area-content-section dl > dt .this__title {
        border-bottom: 5px solid var(--themeval-color-theme-03);
    }
    .top-project-area-content-section dl > dt .this__num {
        color: var(--themeval-color-theme-03);
    }
    table.related-parties-table thead th {
        border-right: 3px solid var(--themeval-color-theme-01);
        border-bottom: 6px double var(--themeval-color-theme-01);
        background-color: var(--themeval-color-theme-white);
        color: var(--themeval-color-theme-01);
    }
    table.related-parties-table thead th::before {
        display: none;
    }
    table.related-parties-table tbody td {
        border-right: 3px solid var(--themeval-color-theme-gray-01);
        border-bottom: 3px solid var(--themeval-color-theme-gray-01);
    }
}


/*
================================================================
 Area
================================================================
*/

.top-area-detail {
    /* position: relative; */
}

.section-panel.top-area-detail__header-panel {
    position: relative;
    color: var(--themeval-color-theme-text-white);
    text-align: justify;
}
.section-panel.top-area-detail__header-panel > .section-panel-bg {
    position: sticky;
    z-index: 2;
    top: 100%;
    display: block;
    width: 100%;
    height: 0;
}
.section-panel.top-area-detail__header-panel > .section-panel-bg::before {
    content: "";
    position: absolute;
    display: block;
    top: calc(var(--themeval-global-header-height) - 100vh);
    top: calc(var(--themeval-global-header-height) - 100lvh);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    background-image: url(../img/background/bg_wave_picture.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.section-panel.top-area-detail__header-panel > .section-panel-body {
    position: relative;
    z-index: 21;
    display: block;
    box-sizing: border-box;
    padding: 100px 0 0;
}
.section-panel.top-area-detail__header-panel > .section-panel-shade {
    position: sticky;
    z-index: 4;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: calc(100vh + 200px - var(--themeval-global-header-height));
    height: calc(100lvh + 200px - var(--themeval-global-header-height));
    background: transparent;
    background-image: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1) 200px, rgba(255,255,255,1));
}

.top-area-detail-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-area-detail-heading .this__title {
    display: block;
    line-height: 1;
    font-size: 458.33%;
}
.top-area-detail-heading .this__subtitle {
    display: block;
    margin: 0 0 1em 2em;
    padding: 0.3em 1em;
    border-radius: 1em;
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-01);
    font-weight: 700;
    font-size: calc( 26rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 1.4;
}
.top-area-detail-introduction-heading {
    display: block;
    margin: 30px 0 30px;
    padding: 0 0 0;
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 34rem / var(--themeval-root-font-size) ); /* $base-font-size */
}

.top-area-detail-introduction {
    margin: 0 0 50px;
}


.section-panel.top-area-detail__content-panel {
    position: relative;
    display: block;
    width: 100%;
    margin: calc(var(--themeval-global-header-height) - 150px - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 150px - 100lvh) 0 0;
    color: var(--themeval-color-theme-01);
    text-align: justify;
}
.section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container {
    position: relative;
    z-index: 21;
    background-color: var(--themeval-color-theme-white);
}

.section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 0;
}
.section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-frame-map {
    width: 30%;
    margin-right: 7%;
}
.section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-withmap-container {
    width: 56%;
}

.top-area-detail-content-map-canvas {
    position: sticky;
    z-index: 1;
    top: calc(0px + var(--themeval-global-header-height));
    display: block;
    width: 100%;
    overflow: hidden;
    max-height: calc(100vh - var(--themeval-global-header-height));
}
.top-area-detail-content-map {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
}
.top-area-detail-content-map-canvas::before,
.top-area-detail-content-map::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    padding: 166.67% 0 0;
}
.top-area-detail-content-map .map-img {
    position: absolute;
    left: 100%;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.01;
    transition: 
        opacity var(--themeval-menu-transition-step-1),
        left var(--themeval-menu-transition-after);
}
.top-area-detail-content-map .map-img .map-pin {
    position: absolute;
    z-index: 1;
    display: block;
    width: 42px;
    height: auto;
    opacity: 0.01;
    transform: translate(-50%, -100%);
    transition: opacity var(--themeval-menu-transition-after);
}
.top-area-detail-content-map .map-img .map-pin::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    display: block;
    box-sizing: content-box;
    width: 110%;
    height: 0;
    padding: 40% 0 0;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.4);
    transform: translate(-50%, 50%) scale(1.5);
    transition: transform var(--themeval-menu-transition-after);
}
.top-area-detail-content-map .map-img .map-pin::after {
    content: "";
    position: relative;
    z-index: 2;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 172% 0 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateY(-30%);
    transition: transform var(--themeval-menu-transition-after);
}
.top-area-detail-content-map .this__print-image {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: auto;
}

#area-1-map.top-area-detail-content-map {
    top: 70%;
    transform: translateY(-70%);
}
#area-2-map.top-area-detail-content-map {
    top: 43%;
    transform: translateY(-43%);
}

.top-area-detail-content-map .map-img.area1_park-side {
    background-image: url(../img/map/map_area1_park-side.jpg);
}
.top-area-detail-content-map .map-img.area1_park-side .map-pin {
    left: 45%;
    top: 73%;
}
.top-area-detail-content-map .map-img.area1_park-side .map-pin::after {
    background-image: url(../img/map/map_pin_min.svg);
}

.top-area-detail-content-map .map-img.area1_seawall {
    background-image: url(../img/map/map_area1_seawall.jpg);
}
.top-area-detail-content-map .map-img.area1_seawall .map-pin {
    left: 62%;
    top: 65%;
}
.top-area-detail-content-map .map-img.area1_seawall .map-pin::after {
    background-image: url(../img/map/map_pin_kan.svg);
}

.top-area-detail-content-map .map-img.area2_ferry {
    background-image: url(../img/map/map_area2_ferry.jpg);
}
.top-area-detail-content-map .map-img.area2_ferry .map-pin {
    left: 81%;
    top: 35.5%;
}
.top-area-detail-content-map .map-img.area2_ferry .map-pin::after {
    background-image: url(../img/map/map_pin_kan.svg);
}

.top-area-detail-content-map .map-img.area2_ichiba-kan {
    background-image: url(../img/map/map_area2_ichiba-kan.jpg);
}
.top-area-detail-content-map .map-img.area2_ichiba-kan .map-pin {
    left: 62%;
    top: 50%;
}
.top-area-detail-content-map .map-img.area2_ichiba-kan .map-pin::after {
    background-image: url(../img/map/map_pin_min.svg);
}



.top-area-detail-content-map:not(.check-display-target-area-1-seawall--on-display):not(.check-display-target-area-1-seawall--display-top-scrolled) .map-img.area1_park-side,
.top-area-detail-content-map:not(.check-display-target-area-2-ichiba-kan--on-display):not(.check-display-target-area-2-ichiba-kan--display-top-scrolled) .map-img.area2_ferry {
    left: 0;
    opacity: 1;
}
.top-area-detail-content-map:not(.check-display-target-area-1-park-side--display-top-scrolled) .map-img.area1_park-side .map-pin,
.top-area-detail-content-map:not(.check-display-target-area-2-ferry--display-top-scrolled) .map-img.area2_ferry .map-pin {
    transition: opacity var(--themeval-menu-transition-step-1);
}


.top-area-detail-content-map.check-display-target-area-1-park-side--display-top .map-img.area1_park-side,
.top-area-detail-content-map.check-display-target-area-1-seawall--display-top .map-img.area1_seawall,
.top-area-detail-content-map.check-display-target-area-2-ferry--display-top .map-img.area2_ferry,
.top-area-detail-content-map.check-display-target-area-2-ichiba-kan--display-top .map-img.area2_ichiba-kan {
    left: 0;
    opacity: 1;
    transition: opacity var(--themeval-menu-transition-step-2);
}
.top-area-detail-content-map.check-display-target-area-1-park-side--display-top .map-img.area1_park-side .map-pin,
.top-area-detail-content-map.check-display-target-area-1-seawall--display-top .map-img.area1_seawall .map-pin,
.top-area-detail-content-map.check-display-target-area-2-ferry--display-top .map-img.area2_ferry .map-pin,
.top-area-detail-content-map.check-display-target-area-2-ichiba-kan--display-top .map-img.area2_ichiba-kan .map-pin {
    opacity: 1;
    transition: opacity var(--themeval-menu-transition-step-2);
}
.top-area-detail-content-map.check-display-target-area-1-park-side--display-top .map-img.area1_park-side .map-pin::before,
.top-area-detail-content-map.check-display-target-area-1-seawall--display-top .map-img.area1_seawall .map-pin::before,
.top-area-detail-content-map.check-display-target-area-2-ferry--display-top .map-img.area2_ferry .map-pin::before,
.top-area-detail-content-map.check-display-target-area-2-ichiba-kan--display-top .map-img.area2_ichiba-kan .map-pin::before {
    transform: translate(-50%, 50%);
    transition: translate var(--themeval-menu-transition-step-2);
}
.top-area-detail-content-map.check-display-target-area-1-park-side--display-top .map-img.area1_park-side .map-pin::after,
.top-area-detail-content-map.check-display-target-area-1-seawall--display-top .map-img.area1_seawall .map-pin::after,
.top-area-detail-content-map.check-display-target-area-2-ferry--display-top .map-img.area2_ferry .map-pin::after,
.top-area-detail-content-map.check-display-target-area-2-ichiba-kan--display-top .map-img.area2_ichiba-kan .map-pin::after {
    transform: none;
    transition: transform var(--themeval-menu-transition-step-2);
}

.top-area-detail-content-section {
    padding: 0 0 100px;
}
.top-area-detail-content-section:last-child {
    padding-bottom: 0;
}
.top-area-detail-content-heading {
    position: relative;
    display: block;
    margin: 0 0 0;
    padding: 0.25em 60px 0.35em 1em;
    border: 2px solid var(--themeval-color-theme-01);
    background-color: var(--themeval-color-theme-01);
    background-image: linear-gradient(0deg, var(--themeval-color-theme-white), var(--themeval-color-theme-white));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50px 100%;
    color: var(--themeval-color-theme-text-white);
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
    text-align: left;
}
.top-area-detail-content-heading::before {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    margin: -15px -15px 0 0;
    padding: 0 0 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
}
.top-area-detail-content-heading.client-kan::before {
    background-image: url(../img/icon/ico_kan.svg);
}
.top-area-detail-content-heading.client-min::before {
    background-image: url(../img/icon/ico_min.svg);
}
.top-area-detail-content-heading .this__client-ico {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    width: 30px;
    transform: translate(50%,-50%);
}
.top-area-detail-content-heading .this__client-ico img {
    display: block;
    width: 100%;
    height: auto;
}
.top-area-detail-content-heading span {
    display: inline-block;
}
.top-area-detail-content-map-sp {
    display: none;
    margin: 50px 0 0;
    width: 100%;
}
.top-area-detail-content-map-sp img {
    display: block;
    margin: 0 auto 0;
    width: 330px;
    max-width: 100%;
    height: auto;
}
.top-area-detail-content-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px 0 0;
    padding: 0 0 0;
}
.top-area-detail-content-box:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.top-area-detail-content-box .this__content {
    display: block;
    box-sizing: border-box;
    width: 48%;
    margin: 0 0 0;
    padding: 0 0 0;
}
.top-area-detail-content-box .this__img {
    display: block;
    box-sizing: border-box;
    width: 48%;
    margin: 0 0 0;
    padding: 0 0 0;
}
.top-area-detail-content-box .this__img img {
    display: block;
    width: 100%;
    height: auto;
}




.section-panel.top-area-detail__history-panel {
    position: relative;
    color: var(--themeval-color-theme-text-white);
    text-align: justify;
}

.section-panel.top-area-detail__history-panel > .section-panel-bg {
    position: sticky;
    z-index: 3;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    background-image: url(../img/photo/history_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.section-panel.top-area-detail__history-panel > .section-panel-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--themeval-rgb-theme-01),0.9);
}

.section-panel.top-area-detail__history-panel > .section-panel-header {
    position: sticky;
    z-index: 21;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    margin: calc(var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 100lvh) 0 0;
}
.section-panel.top-area-detail__history-panel > .section-panel-header + .section-panel-body {
    margin: calc(var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 100lvh) 0 0;
}

.top-area-detail-history-heading {
    display: block;
    margin: 0;
    padding: 1em 0 0;
    text-align: left;
    font-weight: 700;
    line-height: 1.4;
    font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-area-detail-history-heading .this__title {
    display: block;
    line-height: 1;
    font-size: 258.33%;
    font-family: var(--themeval-font-en);
}
.top-area-detail-history-heading .this__subtitle {
    display: block;
}


.top-area-detail-history-header {
    position: sticky;
    z-index: 12;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: 90px;
    overflow: hidden;
}
.top-area-detail-history-title {
    position: absolute;
    top: 40px;
    left: 370px;
    display: block;
    padding: 9px 19px;
    border: 1px solid var(--themeval-color-theme-text-white);
    font-size: calc( 14rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 1.4;
    opacity: 0.01;
    transition: opacity var(--themeval-menu-transition);
}
.top-area-detail-history-header + .top-area-detail-history-photo {
    margin: -90px 0 0;
}

.section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-header {
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
}
.section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-header + .top-area-detail-history-photo {
    margin: calc(var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 100lvh) 0 0;
}



.top-area-detail-history-photo {
    position: sticky;
    z-index: 11;
    top: var(--themeval-global-header-height);
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 240px 0 130px;
    padding: min(240px, 37.5vh) 0 min(130px, 20.3125vh); /* max view height 640px */
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    overflow: hidden;
}
.top-area-detail-history-photo-frame {
    position: relative;
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    width: 90%;
    max-width: var(--themeval-container-width);
    height: 100%;
}
.top-area-detail-history-photo-canvas {
    position: absolute;
    bottom: -5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 110%;
}
.top-area-detail-history-photo__img {
    display: block;
    height: auto;
    max-height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 
        0 0 10px 1px rgba(0,0,0,0.5);
    overflow: hidden;
}
.top-area-detail-history-photo__img::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 66.67% 0 0;
}
.top-area-detail-history-table {
    position: relative;
    z-index: 21;
    margin: calc(var(--themeval-global-header-height) - 100vh) 0 0;
    margin: calc(var(--themeval-global-header-height) - 100lvh) 0 0;
    mix-blend-mode: plus-lighter;
}
.top-area-detail-history-table::before {
    content: "";
    position: sticky;
    z-index: 20;
    top: var(--themeval-global-header-height);
    display: block;
    width: 100%;
    height: 180px;
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 180px;
}
.top-area-detail-history-table::after {
    content: "";
    position: sticky;
    z-index: 20;
    bottom: 0;
    display: block;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 120px;
}
.top-area-detail-history-table .top-area-detail-history-table-container {
    margin-top: -180px;
    margin-bottom: calc(var(--themeval-global-header-height) - 100vh);
    margin-bottom: calc(var(--themeval-global-header-height) - 100lvh);
}
.section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-table::before {
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
}
.section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-table .top-area-detail-history-table-container {
    margin-top: calc(var(--themeval-global-header-height) - 100vh);
    margin-top: calc(var(--themeval-global-header-height) - 100lvh);
}
.top-area-detail-history-table .top-area-detail-history-timeline {
    position: relative;
    padding: 180px 0 0;
}
.top-area-detail-history-table .top-area-detail-history-timeline::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 9px;
    height: 100%;
    border-right: 1px solid var(--themeval-color-theme-white);
}
.top-area-detail-history-table .top-area-detail-history-time {
    position: relative;
    z-index: 11;
    box-sizing: border-box;
    width: 100%;
    height: calc(100vh - 180px - var(--themeval-global-header-height));
    height: calc(100lvh - 180px - var(--themeval-global-header-height));
    padding: 0 0 0 20px;
}
.top-area-detail-history-table .top-area-detail-history-time .this__time {
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-family: var(--themeval-font-en);
    font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    padding: 0.5em 0 0;
    font-weight: 400;
}
.top-area-detail-history-table .top-area-detail-history-time .this__time::before {
    content: "";
    position: relative;
    bottom: calc(0.33em - 4px);
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-left: -15px;
    margin-right: 6px;
    background-color: var(--themeval-color-theme-text-white);
}
.top-area-detail-history-table .top-area-detail-history-time .this__img {
    display: none;
}
.top-area-detail-history-scroll-info {
    position: absolute;
    left: 0;
    top: calc(100vh - 100px - var(--themeval-global-header-height));
    top: calc(100lvh - 100px - var(--themeval-global-header-height));
    display: block;
    box-sizing: border-box;
    margin: 0 0 0;
    padding: 60px 0 0;
    width: 100%;
    height: 90px;
    background-image: url(../img/icon/ico_scroll_next.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 50px 50px;
    font-family: var(--themeval-font-en);
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    text-align: center;
    pointer-events: none;
}


.top-area-detail-history-photo-canvas {
    left: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * 0.025 + 10px);
}
.top-area-detail-history-photo__img {
    /* padding: 460px, height: 23.33vw, 428.57% */
    width: 35vw;
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * 0.35);
}
.top-area-detail-history-photo-canvas[data-count="3"] {
    width: calc(3 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 3 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="4"] {
    width: calc(4 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 4 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="5"] {
    width: calc(5 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 5 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="6"] {
    width: calc(6 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 6 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="7"] {
    width: calc(7 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 7 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="8"] {
    width: calc(8 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 8 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="9"] {
    width: calc(9 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 9 * 0.4 - 0.05 ));
}
.top-area-detail-history-photo-canvas[data-count="10"] {
    width: calc(10 * 40vw - 5vw);
    width: calc(min(var(--themeval-max-display-width), 100vw, calc((100vh - 460px) * 4.2857)) * ( 10 * 0.4 - 0.05 ));
}


#area-2-history-ferry .top-area-detail-history-title,
.check-display-target-area-2-history-ichiba-kan--display-top #area-2-history-ichiba-kan .top-area-detail-history-title {
    opacity: 1;
}



.section-panel.top-area-detail__voice-panel {
    position: relative;
    color: var(--themeval-color-theme-01);
    text-align: justify;
}
.section-panel.top-area-detail__voice-panel > .section-panel-body {
    position: relative;
    z-index: 21;
    display: block;
    box-sizing: border-box;
    padding: 100px 0 100px;
    background-color: var(--themeval-color-theme-white);
}
.section-panel.top-area-detail__voice-panel > .section-panel-tail {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: -140px;
    display: block;
    width: 100%;
    height: 160px;
    background-color: transparent;
    background-image: url(../img/background/bg_wave_cutter.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 2000px 320px;
}

.top-area-detail-voice-heading {
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    font-weight: 700;
    line-height: 1.4;
    font-size: calc( 34rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-area-detail-voice-layout {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 70px;
    width: 100%;
}
.top-area-detail-voice-img {
    display: block;
    box-sizing: border-box;
    width: 50%;
}
.top-area-detail-voice-img .this__img {
    position: sticky;
    top: var(--themeval-global-header-height);
    display: block;
    box-sizing: border-box;
    margin: 0 0 0 auto;
    width: calc(100% - 90px);
    min-height: min(100%, calc(100vh - var(--themeval-global-header-height)));
    min-height: min(100%, calc(100dvh - var(--themeval-global-header-height)));
    height: auto;
    max-height: initial;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}
.top-area-detail-voice-img.this--max-ratio-3x2 .this__img::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 66.6667% 0 0;
}
.top-area-detail-voice-img .this__img-sp {
    display: none;
    width: 100%;
    height: auto;
}
.top-area-detail-voice-content {
    display: block;
    box-sizing: border-box;
    width: 45%;
    max-width: 550px;
    padding: 0 30px 0 0;
}
.top-area-detail-voice-box {
    margin: 0 0 50px;
}
.top-area-detail-voice-box:last-child {
    margin: 0 0 0;
}
.top-area-detail-voice-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 30px;
    padding: 0 0 0 0.5em;
    color: var(--themeval-color-theme-01);
    border-left: 10px solid var(--themeval-color-theme-01);
    text-align: left;
}
.top-area-detail-voice-title .this__title {
    display: block;
    width: 5.5em;
    margin: 0 0.5em 0 0;
    line-height: 1.4;
    font-family: var(--themeval-font-en);
    font-weight: 700;
    font-size: calc( 32rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-area-detail-voice-title .this__subtitle {
    display: block;
    width: 20em;
    margin: 0 0 0 0;
    line-height: 1.4;
    font-weight: 500;
    font-size: calc( 15rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-area-detail-voice-title .this__subtitle span {
    display: inline-block;
}


@media (min-width: 1921px) {
    .section-panel.top-area-detail__voice-panel > .section-panel-tail {
        background-size: 100% 320px;
    }
}
@media (max-width: 1079px) {
    .section-panel.top-area-detail__voice-panel > .section-panel-tail {
        background-size: 1600px 256px;
        bottom: -112px;
        height: 128px;
    }
}
@media (max-width: 767px) {
    .section-panel.top-area-detail__voice-panel > .section-panel-tail {
        background-size: 1000px 160px;
        bottom: -70px;
        height: 80px;
    }
}


/* @media (min-width: 1280px) and (max-aspect-ratio: 1/1) { */
@media (min-width: 1280px) and (min-height: 1280px) {
    .top-area-detail-history-photo {
        padding: 240px 0 240px;
    }
}

@media (max-width: 1279px), (min-width: 1280px) and (max-height: 859px) {
    .top-area-detail-heading {
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-heading .this__title {
        font-size: 400%;
    }
    .top-area-detail-heading .this__title img {
        width: 244px;
        height: auto;
    }
    .top-area-detail-heading .this__subtitle {
        margin: 0 0 1em 2em;
        padding: 0.3em 1em;
        border-radius: 1em;
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-introduction-heading {
        margin: 0 0 30px;
        font-size: calc( 28rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap {
        padding: 70px 0;
    }
    .top-area-detail-content-section {
        padding: 0 0 50px;
    }
    .top-area-detail-content-heading {
        padding: 10px 60px 10px 1em;
        background-size: 50px 100%;
        line-height: 30px;
        font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-content-heading::before {
        right: 25px;
        margin: -15px -15px 0 0;
        width: 30px;
        height: 30px;
    }
    .top-area-detail-content-heading .this__client-ico {
        right: 25px;
        top: 50%;
        width: 30px;
    }
    .top-area-detail-content-map-sp {
        margin: 30px 0 0;
    }
    .top-area-detail-content-box {
        margin: 30px 0 0;
    }

    .top-area-detail-history-heading {
        padding: 1em 0 0;
        line-height: 1.4;
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-history-heading .this__title {
        font-size: 250%;
    }
    .top-area-detail-history-header {
        height: 80px;
    }
    .top-area-detail-history-title {
        top: 36px;
        left: 325px;
        padding: 7px 15px;
        font-size: calc( 13rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-history-header + .top-area-detail-history-photo {
        margin: -80px 0 0;
    }

    .top-area-detail-history-photo {
        padding: 230px 0 110px;
        padding: min(230px, 35.9375vh) 0 min(110px, 20.3125vh); /* max view height 640px */
    }
    .top-area-detail-history-table::before {
        height: 170px;
        background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
        background-size: 100% 170px;
    }
    .top-area-detail-history-table::after {
        background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
        background-size: 100% 100px;
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        margin-top: -170px;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline {
        padding: 170px 0 0;
    }
    .top-area-detail-history-table .top-area-detail-history-time {
        height: calc(100vh - 170px - var(--themeval-global-header-height));
        height: calc(100lvh - 170px - var(--themeval-global-header-height));
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__time {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-history-scroll-info {
        top: calc(100vh - 100px - var(--themeval-global-header-height));
        top: calc(100lvh - 100px - var(--themeval-global-header-height));
        padding: 45px 0 0;
        width: 100%;
        height: 65px;
        background-size: 40px 40px;
        font-size: 16px;
    }

    .section-panel.top-area-detail__voice-panel > .section-panel-body {
        padding: 70px 0 70px;
    }
    .top-area-detail-voice-heading {
        font-size: calc( 28rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-voice-layout {
        margin-top: 50px;
    }
    .top-area-detail-voice-img {
        width: 50%;
    }
    .top-area-detail-voice-img .this__img {
        width: calc(100% - 30px);
    }
    .top-area-detail-voice-content {
        width: 45%;
        max-width: 550px;
        padding: 0 0 0 0;
    }
    .top-area-detail-voice-box {
        margin: 0 0 50px;
    }
    .top-area-detail-voice-title {
        margin: 0 0 25px;
        padding: 0 0 0 0.5em;
        border-left: 10px solid var(--themeval-color-theme-01);
    }
    .top-area-detail-voice-title .this__title {
        font-size: calc( 26rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-voice-title .this__subtitle {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-history-photo-canvas {
        left: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * 0.035 + 10px);
    }
    .top-area-detail-history-photo__img {
        /* padding: 415px, height: 32.6667vw, 306.12% */
        /* 306vh - 1300px */
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * 0.49);
    }
    .top-area-detail-history-photo-canvas[data-count="3"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 3 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="4"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 4 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="5"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 5 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="6"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 6 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="7"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 7 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="8"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 8 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="9"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 9 * 0.56 - 0.07 ));
    }
    .top-area-detail-history-photo-canvas[data-count="10"] {
        width: calc(min(100vw, calc((100vh - 415px) * 3.0612)) * ( 10 * 0.56 - 0.07 ));
    }
    
}
@media (max-width: 1279px) {
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-frame-map {
        width: 30%;
        margin-right: 5%;
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-withmap-container {
        width: 60%;
    }
}
@media (min-width: 1080px) and (max-width: 1279px) and (max-aspect-ratio: 1/1) {
    .top-area-detail-history-photo {
        padding: 230px 0 230px;
    }
}

@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    .top-area-detail-heading {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-heading .this__title {
        font-size: 400%;
    }
    .top-area-detail-heading .this__title img {
        width: 200px;
        height: auto;
    }
    .top-area-detail-heading .this__subtitle {
        margin: 0 0 1em 2em;
        padding: 0.3em 1em;
        border-radius: 1em;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-introduction-heading {
        margin: 0 0 30px;
        font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap {
        padding: 70px 0;
    }
    .top-area-detail-content-section {
        padding: 0 0 50px;
    }
    .top-area-detail-content-heading {
        padding: 10px 60px 10px 1em;
        background-size: 50px 100%;
        line-height: 30px;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-content-heading::before {
        right: 25px;
        margin: -15px -15px 0 0;
        width: 30px;
        height: 30px;
    }
    .top-area-detail-content-heading .this__client-ico {
        right: 25px;
        top: 50%;
        width: 30px;
    }
    .top-area-detail-content-map-sp {
        margin: 30px 0 0;
    }

    .top-area-detail-history-heading {
        padding: 1em 0 0;
        line-height: 1.4;
        font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-history-heading .this__title {
        font-size: 250%;
    }
    .top-area-detail-history-header {
        height: 70px;
    }
    .top-area-detail-history-title {
        top: 32px;
        left: 300px;
        padding: 7px 15px;
        font-size: calc( 13rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-history-header + .top-area-detail-history-photo {
        margin: -70px 0 0;
    }

    .top-area-detail-history-photo {
        padding: 220px 0 110px;
        padding: min(220px, 34.375vh) 0 min(120px, 20.3125vh); /* max view height 640px */
    }
    .top-area-detail-history-table::before {
        height: 160px;
        background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
        background-size: 100% 160px;
    }
    .top-area-detail-history-table::after {
        background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 30px, rgba(0,0,0,1));
        background-size: 100% 100px;
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        margin-top: -160px;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline {
        padding: 160px 0 0;
    }
    .top-area-detail-history-table .top-area-detail-history-time {
        height: calc(100vh - 160px - var(--themeval-global-header-height));
        height: calc(100lvh - 160px - var(--themeval-global-header-height));
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__time {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-voice-heading {
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-voice-box {
        margin: 0 0 40px;
    }
    .top-area-detail-voice-title {
        margin: 0 0 20px;
        padding: 0 0 0 0.5em;
        border-left: 10px solid var(--themeval-color-theme-01);
    }
    .top-area-detail-voice-title .this__title {
        font-size: calc( 24rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-voice-title .this__subtitle {
        font-size: calc( 14rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}
@media (max-width: 1079px) {
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-frame-map {
        width: 40%;
        margin-right: 3%;
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-withmap-container {
        width: 54%;
    }
    .top-area-detail-content-box .this__content {
        width: 100%;
    }
    .top-area-detail-content-box .this__img {
        width: 100%;
        margin: 10px 0 0;
    }
}
@media (min-width: 768px) and (max-width: 1079px) and (max-aspect-ratio: 1/1) {
    .top-area-detail-history-photo {
        padding: 220px 0 220px;
    }
}

/* SP画面サイズ */
@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    .section-panel.top-area-detail__header-panel > .section-panel-body {
        padding: 70px 0 0;
    }
    .top-area-detail-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-heading .this__title {
        font-size: 400%;
    }
    .top-area-detail-heading .this__title img {
        width: 180px;
        height: auto;
    }
    .top-area-detail-heading .this__subtitle {
        margin: 0 0 1em 2em;
        padding: 0.3em 1em;
        border-radius: 1em;
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-introduction-heading {
        margin: 30px 0 30px;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-content-heading {
        padding: 8px 48px 8px 1em;
        background-size: 40px 100%;
        line-height: 24px;
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-content-heading::before {
        right: 20px;
        margin: -12px -12px 0 0;
        width: 24px;
        height: 24px;
    }
    .top-area-detail-content-heading .this__client-ico {
        right: 20px;
        top: 50%;
        width: 24px;
    }

    .top-area-detail-history-heading {
        padding: 1em 0 0;
        line-height: 1.4;
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-history-heading .this__title {
        font-size: 250%;
    }
    .top-area-detail-history-header {
        height: 60px;
    }
    .top-area-detail-history-title {
        top: 26px;
        left: 235px;
        padding: 4px 9px;
        font-size: calc( 11rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-history-header + .top-area-detail-history-photo {
        margin: -60px 0 0;
    }

    .top-area-detail-history-photo {
        padding: 150px 0 80px;
        padding: min(150px, 27.778vh) 0 min(80px, 15.385vh); /* max view height 540px */
    }
    .top-area-detail-history-table::before {
        height: 110px;
        background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1) 20px, rgba(0,0,0,1));
        background-size: 100% 110px;
    }
    .top-area-detail-history-table::after {
        background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 20px, rgba(0,0,0,1));
        background-size: 100% 70px;
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        margin-top: -110px;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline {
        padding: 110px 0 0;
    }
    .top-area-detail-history-table .top-area-detail-history-time {
        height: calc(100vh - 110px - var(--themeval-global-header-height));
        height: calc(100lvh - 110px - var(--themeval-global-header-height));
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__time {
        font-size: calc( 14rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-history-scroll-info {
        top: calc(100vh - 70px - var(--themeval-global-header-height));
        top: calc(100lvh - 70px - var(--themeval-global-header-height));
        padding: 35px 0 0;
        width: 100%;
        height: 50px;
        background-size: 30px 30px;
        font-size: 11px;
    }

    .top-area-detail-voice-heading {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-voice-box {
        margin: 0 0 30px;
    }
    .top-area-detail-voice-title {
        margin: 0 0 18px;
        padding: 0 0 0 0.5em;
        border-left: 5px solid var(--themeval-color-theme-01);
    }
    .top-area-detail-voice-title .this__title {
        font-size: calc( 20rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-voice-title .this__subtitle {
        font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }


    .top-area-detail-history-photo-frame {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * 0.8 + 20px);
        max-width: 100%;
    }
    .top-area-detail-history-photo-canvas {
        left: calc(min(100vw, calc((100vh - 285px) * 1.875)) * 0.05 + 10px);
    }
    .top-area-detail-history-photo__img {
        /* padding: 285px, height: 53.3333vw, 187.5% */
        /* 214vh - 610px */
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * 0.7);
    }
    .top-area-detail-history-photo-canvas[data-count="3"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 3 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="4"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 4 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="5"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 5 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="6"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 6 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="7"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 7 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="8"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 8 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="9"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 9 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="10"] {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * ( 10 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        width: calc(min(100vw, calc((100vh - 285px) * 1.875)) * 0.8 + 20px);
        max-width: 100%;
    }

}
@media (max-width: 767px){
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap {
        padding: 5% 0;
        justify-content: center;
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-frame-map {
        display: none;
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap .content-withmap-container {
        width: 95%;
    }
    .top-area-detail-content-section {
        padding: 0 0 50px;
    }
    .top-area-detail-content-map-sp {
        display: block;
        margin: 30px 0 0;
    }
    .top-area-detail-content-box .this__content {
        width: 48%;
    }
    .top-area-detail-content-box .this__img {
        width: 48%;
        margin: 0 0 0;
    }


    .top-area-detail-voice-layout {
        display: block;
        margin-top: 50px;
    }
    .top-area-detail-voice-img {
        width: 90%;
        margin: 0 auto;
    }
    .top-area-detail-voice-img .this__img {
        position: relative;
        top: 0;
        margin: 0 auto;
        width: 100%;
        min-height: initial;
        height: auto;
        max-height: initial;
        background-image: none !important;
    }
    .top-area-detail-voice-img .this__img::before {
        display: none !important;
    }
    .top-area-detail-voice-img .this__img-sp {
        display: block;
    }
    .top-area-detail-voice-content {
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 30px 0 0 0;
    }
}
@media print and (min-width: 480px) and (max-width: 767px) {
    .top-area-detail-voice-img {
        width: 66%;
    }
}
@media (max-width: 639px) {
    .top-area-detail-content-box .this__content {
        width: 100%;
    }
    .top-area-detail-content-box .this__img {
        width: 100%;
        margin: 10px 0 0;
    }
}
@media (min-width: 480px) and (max-width: 767px) and (max-aspect-ratio: 2/3) {
    .top-area-detail-history-photo {
        padding: 150px 0 150px;
    }
}

@media (max-width: 479px), (max-height: 511px) {
    .top-area-detail-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-heading .this__title {
        font-size: 300%;
    }
    .top-area-detail-heading .this__title img {
        width: 135px;
        height: auto;
    }
    .top-area-detail-heading .this__subtitle {
        margin: 0 0 0.5em 2em;
        padding: 0.3em 1em;
        border-radius: 1em;
        font-size: calc( 13rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-introduction-heading {
        margin: 20px 0 20px;
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-history-heading {
        padding: 1em 0 0;
        line-height: 1.4;
        font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-history-heading .this__title {
        font-size: 250%;
    }
    .top-area-detail-history-header {
        height: 50px;
    }
    .top-area-detail-history-title {
        top: 17px;
        left: 175px;
        padding: 4px 7px;
        font-size: calc( 9rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 1.4;
    }
    .top-area-detail-history-header + .top-area-detail-history-photo {
        margin: -50px 0 0;
    }

    .top-area-detail-voice-heading {
        font-size: calc( 16rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }

    .top-area-detail-voice-box {
        margin: 0 0 30px;
    }
    .top-area-detail-voice-title {
        margin: 0 0 16px;
        padding: 0 0 0 0.5em;
        border-left: 5px solid var(--themeval-color-theme-01);
    }
    .top-area-detail-voice-title .this__title {
        font-size: calc( 18rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-area-detail-voice-title .this__subtitle {
        font-size: calc( 11rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}
@media (max-width: 479px) and (max-aspect-ratio: 2/3) {
    .top-area-detail-history-photo {
        padding: 150px 0 150px;
    }
}
@media (max-height: 511px) {
    .top-area-detail-history-photo {
        padding: 130px 0 80px;
        padding: min(130px, 24.07vh) 0 min(80px, 15.385vh); /* max view height 540px */
    }
    .top-area-detail-history-photo-frame {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * 0.8 + 20px);
        max-width: 100%;
    }
    .top-area-detail-history-photo-canvas {
        left: calc(min(100vw, calc((100vh - 265px) * 1.875)) * 0.05 + 10px);
    }
    .top-area-detail-history-photo__img {
        /* padding: 265px, height: 53.3333vw, 187.5% */
        /* 214vh - 610px */
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * 0.7);
    }
    .top-area-detail-history-photo-canvas[data-count="3"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 3 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="4"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 4 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="5"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 5 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="6"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 6 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="7"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 7 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="8"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 8 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="9"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 9 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-photo-canvas[data-count="10"] {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * ( 10 * 0.8 - 0.1 ));
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        width: calc(min(100vw, calc((100vh - 265px) * 1.875)) * 0.8 + 20px);
        max-width: 100%;
    }

    .top-area-detail-history-table::before {
        height: 90px;
        background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,1) 20px, rgba(0,0,0,1));
        background-size: 100% 90px;
    }
    .top-area-detail-history-table::after {
        background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1) 20px, rgba(0,0,0,1));
        background-size: 100% 90px;
    }
    .top-area-detail-history-table .top-area-detail-history-table-container {
        margin-top: -90px;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline {
        padding: 90px 0 0;
    }
    .top-area-detail-history-table .top-area-detail-history-time {
        height: calc(100vh - 90px - var(--themeval-global-header-height));
        height: calc(100lvh - 90px - var(--themeval-global-header-height));
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__time {
        padding-top: 0;
        font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
}


/* 印刷用設定 */
@media print {
    .top-area-detail {
        break-before: always;
    }
    .section-panel.top-area-detail__header-panel {
        color: var(--themeval-color-theme-text-black);
    }
    .section-panel.top-area-detail__header-panel > .section-panel-bg {
        display: none;
    }
    .section-panel.top-area-detail__header-panel > .section-panel-body {
        break-inside: avoid;
    }
    .section-panel.top-area-detail__header-panel > .section-panel-shade {
        display: none;
    }
    .top-area-detail-heading .this__title[data-print-text] {
        line-height: 1.4;
    }
    .top-area-detail-heading .this__subtitle {
        border: 1px solid var(--themeval-color-theme-01);
        transform: translateY(50%);
    }
    .section-panel.top-area-detail__content-panel {
        break-before: always;
        margin: 0;
    }
    .section-panel.top-area-detail__content-panel > .section-panel-body .content-frame-container.content-frame-container--withmap {
        align-items: flex-start;
    }
    .top-area-detail-content-map-canvas {
        position: relative;
        top: 0;
        left: 0;
        max-height: initial;
    }
    .top-area-detail-content-map-canvas::before {
        display: none;
    }
    .top-area-detail-content-map {
        position: relative;
        top: 0 !important;
        left: 0;
        max-height: initial;
        transform: none !important;
    }
    .top-area-detail-content-map::before {
        /* display: none; */
    }
    .top-area-detail-content-map .map-img {
        display: none;
    }
    .top-area-detail-content-map .this__print-image {
        display: block;
    }
    .top-area-detail-content-section {
        /* break-inside: avoid; */
    }
    .top-area-detail-content-heading {
        background-color: var(--themeval-color-theme-white);
        color: var(--themeval-color-theme-01);
        break-after: avoid;
    }
    .top-area-detail-content-map-sp {
        break-after: avoid;
    }
    .top-area-detail-content-box {
        break-inside: avoid;
    }
    .section-panel.top-area-detail__history-panel {
        color: var(--themeval-color-theme-text-black);
    }
    .section-panel.top-area-detail__history-panel > .section-panel-bg {
        display: none;
    }
    .section-panel.top-area-detail__history-panel > .section-panel-header {
        position: relative;
        top: 0;
        height: auto;
        margin: 0;
    }
    .section-panel.top-area-detail__history-panel > .section-panel-header + .section-panel-body {
        margin: 0;
    }
    .top-area-detail-history {
        break-before: always;
        break-inside: avoid;
    }
    .section-panel.top-area-detail__history-panel > .section-panel-header {
        break-after: avoid;
    }
    .section-panel.top-area-detail__history-panel > .section-panel-body {
        padding: 50px 0 0;
    }
    .top-area-detail-history-header,
    .section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-header {
        position: relative;
        top: 0;
        height: auto;
    }
    .top-area-detail-history-title {
        position: relative;
        top: 0;
        left: 0;
        border: 1px solid var(--themeval-color-theme-text-black);
        opacity: 1 !important;
    }
    .top-area-detail-history-header + .top-area-detail-history-photo,
    .section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-header + .top-area-detail-history-photo {
        margin: 0;
    }
    .top-area-detail-history-photo {
        display: none;
    }
    .top-area-detail-history-table {
        margin: 0;
        mix-blend-mode: normal;
    }
    .top-area-detail-history-table::before,
    .top-area-detail-history-table::after {
        display: none;
    }
    .top-area-detail-history-table .top-area-detail-history-table-container,
    .section-panel.top-area-detail__history-panel > .section-panel-body:last-child .top-area-detail-history-table .top-area-detail-history-table-container {
        margin-top: 0;
        margin-bottom: 0;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline {
        padding: 20px 0 20px;
    }
    .top-area-detail-history-table .top-area-detail-history-timeline::before {
        border-right: 1px solid var(--themeval-color-theme-text-black);
    }
    .top-area-detail-history-table .top-area-detail-history-time {
        height: auto;
        break-inside: avoid;
        padding-bottom: 30px;
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__time::before {
        content: "●";
        width: 20px;
        height: auto;
        border-radius: 0;
        margin-left: -20px;
        margin-right: 0;
        background-color: transparent;
        font-size: 11px;
        text-align: center;
    }
    .top-area-detail-history-table .top-area-detail-history-time .this__img {
        display: block;
        width: 60%;
        height: auto;
        margin: 0 auto;
    }
    .top-area-detail-history-scroll-info {
        display: none;
    }
    .top-area-detail-voice {
        break-before: always;
    }
    .section-panel.top-area-detail__voice-panel > .section-panel-tail {
        display: none;
    }
    .top-area-detail-voice-header {
        break-after: avoid;
    }
    .top-area-detail-voice-img .this__img {
        position: relative;
        top: 0;
        min-height: initial;
        height: auto;
        max-height: initial;
        background-image: none !important;
    }
    .top-area-detail-voice-img .this__img::before {
        display: none !important;
    }
    .top-area-detail-voice-img .this__img-sp {
        display: block;
    }
    .top-area-detail-voice-img + .top-area-detail-voice-content {
        break-before: avoid;
    }
    .top-area-detail-voice-box {
        break-inside: avoid;
    }
}




/*
================================================================
 最後に
================================================================
*/

.section-panel.top-closing__header-panel {
    position: relative;
    color: var(--themeval-color-theme-white);
    text-align: justify;
}
.section-panel.top-closing__header-panel > .section-panel-bg {
    position: sticky;
    z-index: 1;
    top: 100%;
    display: block;
    width: 100%;
    height: 0;
}
.section-panel.top-closing__header-panel > .section-panel-bg::before {
    content: "";
    position: absolute;
    display: block;
    top: calc(var(--themeval-global-header-height) - 100vh);
    top: calc(var(--themeval-global-header-height) - 100lvh);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--themeval-global-header-height));
    height: calc(100lvh - var(--themeval-global-header-height));
    background-color: transparent;
    background-image: url(../img/background/bg_wave_picture.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.section-panel.top-closing__header-panel > .section-panel-body {
    position: relative;
    z-index: 21;
    display: block;
    width: 100%;
    padding: 150px 0 120px;
}

.top-closing-heading {
    display: block;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
    font-size: calc( 36rem / var(--themeval-root-font-size) ); /* $base-font-size */
}
.top-closing-content {
    margin-top: 30px;
}
.top-closing-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.top-closing-links > a,
.top-closing-links > .as-link {
    display: block;
    width: 300px;
    max-width: 32%;
    margin-top: max( calc( 50% - 450px ), 2% );
    margin-left: max( calc( 50% - 450px ), 2% );
}
.top-closing-links > a:nth-child(3n+1),
.top-closing-links > .as-link:nth-child(3n+1) {
    margin-left: 0;
}
.top-closing-links > a > img,
.top-closing-links > .as-link > img {
    display: block;
    width: 100%;
    height: auto;
}



@media (max-width: 1279px), (min-width: 1280px) and (max-height: 859px) {
    .section-panel.top-closing__header-panel > .section-panel-body {
        padding: 150px 0 120px;
    }

    .top-closing-heading {
        font-size: calc( 36rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-closing-content {
        margin-top: 30px;
    }
    .top-closing-links {
        margin-top: 50px;
    }
}

@media (max-width: 1079px), (min-width: 1080px) and (max-height: 767px) {
    .section-panel.top-closing__header-panel > .section-panel-body {
        padding: 100px 0 100px;
    }

    .top-closing-heading {
        font-size: calc( 26rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-closing-content {
        margin-top: 30px;
    }
    .top-closing-links {
        margin-top: 50px;
    }
}

@media (max-width: 767px), (min-width: 768px) and (max-height: 639px) {
    .section-panel.top-closing__header-panel > .section-panel-body {
        padding: 70px 0 100px;
    }

    .top-closing-heading {
        font-size: calc( 22rem / var(--themeval-root-font-size) ); /* $base-font-size */
    }
    .top-closing-content {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .top-closing-links {
        margin-top: 70px;
        display: block;
    }
    .top-closing-links > a,
    .top-closing-links > .as-link {
        margin: 20px auto 0;
        width: 300px;
        max-width: 100%;
    }
    .top-closing-links > a:nth-child(3n+1),
    .top-closing-links > .as-link:nth-child(3n+1) {
        margin-left: auto;
    }
}




/* 印刷用設定 */
@media print {
    .top-closing {
        break-before: always;
        break-inside: avoid;
    }
    .section-panel.top-closing__header-panel {
        color: var(--themeval-color-theme-text-black);
    }
    .section-panel.top-closing__header-panel > .section-panel-bg {
        display: none;
    }
}


