.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.adobe-garamond-pro {
    font-family: "adobe-garamond-pro", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.skip-btn {
    top: 106px;
    right: 40px;
    color: #fff;
}
@media (max-width: 767px) {
    .skip-btn {
        top: 70px;
        right: 10px;
    }
}

.footer-bottom-inner {
    gap: 26px;
}

footer .logo-sub-text {
    font-size: 14px;
    margin-bottom: 20px;
    padding-right: 80px;
}

footer .logo-corporate {
    width: 218px;
}

footer .tel-title {
    font-size: 16px;
    letter-spacing: .04em;
}

footer .tel {
    font-size: 32px;
}

footer .small {
    max-width: 878px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.nav-copy-wrapper {
    gap: 10px 23px;
}

.nav-copy-wrapper {
    justify-content: center;
}

footer .small {
    margin-bottom: 0;
}

footer .footer-nav ul {
    gap: 20px;
}

footer .footer-nav ul li a {
    font-size: 10px;
}

footer .copy {
    font-size: 10px;
}

@media (max-width: 767px) {
    .footer-bottom-sp {
        background: #000;
        padding: 4.83vw 3.33vw 5.84vw;
    }

    .footer-bottom-sp .small {
        line-height: 1.4;
    }

    .footer-bottom-sp .tel {
        display: block;
    }

    .footer-bottom-sp .logo-corporate {
        width: 35vw;
    }
}

/* new css */

body {
    overflow: hidden;
    background-color: #000000;
}

body.outline {
    background-color: unset;
    overflow: auto;
}

/* header */
.header {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 44px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-nav {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
}

.header-contact-btn {
    padding: 9px 34px;
    border: 1px solid #FFFFFF;
    font-family: "adobe-garamond-pro", serif;
    color: #FFFFFF;
    font-size: 18.33px;
    letter-spacing: 0.04em;
    position: fixed;
    left: 50%;
    bottom: 46px;
    z-index: 50;
    transform: translateX(-50%);
    transition: bottom 0.3s ease;
}

.header-nav.scrolled .header-contact-btn {
    bottom: -200px;
    visibility: hidden;
    opacity: 0;
    transition: bottom 0.5s ease-in-out, visibility 0s ease 0.5s, opacity 0s ease 0.5s;
}

.header-nav.scrolled.static .header-contact-btn {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.header-nav.scrolled.show .header-contact-btn {
    opacity: 1;
    bottom: 0;
    visibility: visible;
    transition: opacity 0.5s ease-in-out 0.8s, visibility 0.5s ease-in-out;
}

.header-nav.scrolled.show .header-contact-btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.header-logo {
    display: none;
}

.header-nav.top .header-contact-btn {
    bottom: 0;
    visibility: hidden;
    opacity: 0;
}

.header-nav.top .header-contact-btn.softAnimation {
    bottom: 46px;
    visibility: visible;
    opacity: 1;
}

.header-nav.top.scrolled .header-contact-btn.softAnimation {
      bottom: -200px;
    visibility: hidden;
    opacity: 0;
}

.header-nav.top.scrolled.static .header-contact-btn.softAnimation {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 0;
}

.header-nav.top.scrolled.show .header-contact-btn.softAnimation {
  opacity: 1;
    bottom: 0;
    visibility: visible;
}


/* menu hamburger */
.menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 38px;
    height: 30px;
    position: relative;
    z-index: 99;
}

.menu span {
    display: block;
    background-color: #FFFFFF;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease, opacity .3s ease .025s
}

.menu::before,
.menu::after {
    content: "";
    background-color: #FFFFFF;
    display: block;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease;
}

.menu.is-active span {
    background-color: #000000;
    opacity: 0;
    transform: translateX(20px);
}

.menu.is-active::before {
    background-color: #000000;
    transform-origin: top right;
    transform: rotate(-38deg) translate(-5px, -1px);
}

.menu.is-active::after {
    background-color: #000000;
    transform-origin: bottom right;
    transform: rotate(37deg) translate(-5px, 0px);
}

/* navigation */
.nav {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 98;
    height: 100vh;
    height: 100dvh;
    padding: 130px 54px 62px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transform-origin: center;
    transition: visibility 0.7s ease, transform 0.7s ease, opacity 0.7s ease;
}

.nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.nav-list {
    margin-bottom: 58px;
}

.nav-item {
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0.7s;
}

.nav.is-open .nav-item:nth-of-type(1) {
    transition: opacity 0.4s ease 0.1s, transform 0.5s ease 0.1s;
}

.nav.is-open .nav-item:nth-of-type(2) {
    transition: opacity 0.4s ease 0.15s, transform 0.5s ease 0.15s;
}

.nav.is-open .nav-item:nth-of-type(3) {
    transition: opacity 0.4s ease 0.2s, transform 0.5s ease 0.2s;
}

.nav.is-open .nav-item:nth-of-type(4) {
    transition: opacity 0.4s ease 0.25s, transform 0.5s ease 0.25s;
}

.nav.is-open .nav-item:nth-of-type(5) {
    transition: opacity 0.4s ease 0.3s, transform 0.5s ease 0.3s;
}

.nav.is-open .nav-item:nth-of-type(6) {
    transition: opacity 0.4s ease 0.35s, transform 0.5s ease 0.35s;
}

.nav.is-open .nav-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.nav-link {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: opacity 0.4s ease-in-out;
    position: relative;
}

.nav-link::before {
    content: "";
    display: block;
    width: 12px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.44 17.44'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23a89676; %7D %3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1' data-name='レイヤー 1'%3E%3Cg%3E%3Cpath class='cls-1' d='M0,17.44l5.54-8.72L0,0h1.32l5.52,8.72L1.3,17.44H0Z'/%3E%3Cpath class='cls-1' d='M5.6,17.44l5.54-8.72L5.6,0h1.32l5.52,8.72-5.54,8.72h-1.3Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.icon-link::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5 11L1.50009 11L1.49999 2L4.5 2V3L2.50001 3L2.50008 10H9.5V8H10.5V11Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.50008 2H10.5001V6H9.50008V3.70711L6.50008 6.70711L5.79297 6L8.79297 3H6.50008V2Z' fill='black'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
        height: 12px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 52px;
    transition: opacity 0.4s ease 0.4s, transform 0.5s ease 0.4s;
}

.nav-buttons-link {
    flex: 0 0 calc((100% / 2) - (12px / 2));
    width: calc((100% / 2) - (12px / 2));
    background-color: #a89676;
    display: flex;
    line-height: 2.1;
    justify-content: center;
    font-family: "adobe-garamond-pro", serif;
    color: #FFFFFF;
    font-size: 19.09px;
    font-weight: 400;
    height: 36px;
}

.nav-bottom {
    transition: opacity 0.4s ease 0.45s, transform 0.5s ease 0.45s;
}

.nav-info {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16.86px;
    margin-bottom: 15px;
}

.nav-phone {
    font-family: Arial, sans-serif;
    font-size: 33.27px;
}

.nav-phone a {
    color: #000;
    transition: all .3s ease;
}

.nav-phone a:hover {
    opacity: .7;
}

.nav.is-open .nav-item {
    opacity: 1;
    transform: translateY(0);
}

/* footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

footer.show {
    transform: translateY(0);
}

footer {
    position: relative;
    transform: none;
}

.footer-bottom-inner {
    padding-top: 74px;
    flex-direction: column;
}

footer.show {
    transform: translateY(0);
}

footer .footer-bottom {
    height: 100% !important;
    opacity: 1 !important;
}


.outline footer {
    transform: none;
}

/* section */
.section {
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 9;
}

.section-2 {
     width: 100%;
    height: 100vh;
    position: relative;
    height: 100dvh;
}

.section-transition {
    transition: transform 1.25s ease-in-out, opacity 0.6s ease-in-out;
}

.section.active {
    transform: translateY(0);
    opacity: 1;
}

.section.active:has(+.section-auto.active) {
    transform: translateY(calc(0% - var(--fHeight)));
    transition-delay: 1.2s;
}

.section.prev {
    transform: translateY(0%) scale(0.7);
}

.section.next {
    transform: translateY(100%);
}

.section.active+.section-auto.active {
    transform: translateY(0);
    transition-delay: 1.2s;
}

.section-blur {
    filter: blur(50px);
    transition: filter 1.4s cubic-bezier(0, 0.315, 0.155, 0.995) 0.2s;
}

.section.active .section-blur {
    filter: blur(0);
}

/* NEW */
.sec-blur {
    filter: blur(50px);
    transition: filter 1.4s cubic-bezier(0, 0.315, 0.155, 0.995) 0.2s;
}

.sec-blur.inview-blue {
    filter: blur(0);
}

.section-yok {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-latour-is {
    position: relative;
    overflow: hidden;
    height: 100dvh;
    background-color: #000;
}

.section-block.access {
    overflow: hidden;
}
/* NEW */


.section.yokohama-project {
    position: fixed;
}

.section.section-mv {
    position: fixed;
    top: 0;
}

.section-gallery.active .yokohama-gallery__link.show {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.section.section-full .section-scroll {
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* for smooth scrolling on iOS */
    position: relative;
}

.section.section-full .section-scroll::-webkit-scrollbar {
    display: none;
}

.section.section-no-zoom.prev {
    transform: translateY(0%);
}

.section-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-info {
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    position: absolute;
    bottom: 14px;
    right: 14px;
}

/* for now no sp code for this */
.section-block {
    height: 100vh;
    height: 100dvh;
    position: relative;
    background-color: #000;
}

.section-wrapper.fade {
    opacity: 0 !important;
}

.section-wrapper .mv-bg {
    width: 100%;
}

.section.mv .mv-bg .section-info {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.section.mv .mv-bg .section-info.show {
    opacity: 1;
}

.section-fig,
.section-fig img,
.section-pic {
    display: block;
    width: 100%;
    height: 100%;
}

.section-fig img {
    object-fit: cover;
    object-position: bottom;
}

.section-fig .mv-bg__content iframe {
    box-sizing: border-box;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute !important;
    transform: translateX(-50%);
    width: 177.77777778vh !important;
    height: 56.25vw !important;
    max-width: unset;
    max-height: unset;
    bottom: 0;
}

@media (max-width:767px) {
    .section-fig .mv-bg__content iframe {
        height: 178.25vw !important;
    }
    
}

.section-caption {
    position: absolute;
    bottom: 48px;
    left: 0;
    z-index: 2;
    width: 340px;
    padding: 26.5px 10px 26.5px 35px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all .5s ease;
}

.section-caption-text {
    transition: all .3s ease;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.section-caption-text.show {
    max-height: 100%;
    opacity: 1;
    transform: translateY(0);
}


.section-caption-ttl {
    font-family: "adobe-garamond-pro", serif;
    color: #FFFFFF;
    font-size: 26px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px);
    transition: all 0.8s ease-in-out 0.6s;
}

.section.active .section-caption-ttl {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.section-caption-ttl span {
    font-family: "Noto Serif JP", serif;
}

.section-caption-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: "adobe-garamond-pro", serif;
    color: #FFFFFF;
    font-size: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-in-out 0.6s;
}

.section-caption-more::before {
    content: "";
    display: block;
    width: 9px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.02 12.64'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg id='_レイヤー_1' data-name='レイヤー 1'%3E%3Cg%3E%3Cpath class='cls-1' d='M0,12.64l4.02-6.32L0,0h.96l4,6.32L.94,12.64h-.94Z'/%3E%3Cpath class='cls-1' d='M4.06,12.64l4.02-6.32L4.06,0h.96l4,6.32-4.01,6.32h-.94Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.section.active .section-caption-ttl {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.section.active .section-caption-more {
    opacity: 1;
    transform: translateY(0);
}

.section-caption:hover {
    opacity: 0.5;
}

.section-content {
    height: 100%;
}

.section-caption-more.icon-link::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5 11L1.50009 11L1.49999 2L4.5 2V3L2.50001 3L2.50008 10H9.5V8H10.5V11Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.50008 2H10.5001V6H9.50008V3.70711L6.50008 6.70711L5.79297 6L8.79297 3H6.50008V2Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
}

/* MV */
.mv-bg {
    width: 100%;
    height: 100%;
}

.mv-bg__content {
    pointer-events: none;
}

/* skip btn */
.skip-btn {
    z-index: 10;
    transition: opacity 0.5s ease;
}

.skip-btn.hide {
    opacity: 0;
}

/* gallery page */
.gallery-info {
    background-color: #000000;
    display: flex;
    height: 100%;
}

.gallery-info__left,
.gallery-info__right {
    flex: 0 0 calc(100% / 2);
    width: calc(100% / 2);
}

.gallery-info__left {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-info__ttl {
    text-align: center;
    color: #FFFFFF;
    font-size: 21px;
    line-height: 2.1904761905;
    opacity: 0;
    filter: blur(3px);
    transform: translateY(30px);
    transition: all 1s ease-in-out 0.6s;
}

.gallery-info__right picture,
.gallery-info__right picture img {
    height: 100%;
}

.gallery-info__right picture img {
    object-fit: cover;
    object-position: right;
}

.yokohama-project.next.next .gallery-info__ttl {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(30px);
}

.yokohama-project.active .gallery-info__ttl {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.f-caption {
    display: block;
}

@media screen and (max-width:767px) {

    /* header */
    .header {
        position: fixed;
        width: 100%;
        padding: 0 4%;
        background-color: black;
        z-index: 1000;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-wrapper {
        position: relative;
        width: 100%;
    }

    .header-logo {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        max-width: 81px;
    }

    .header-nav {
        position: relative;
        top: unset;
        right: unset;
        justify-content: flex-end;
        gap: 16px;
        height: 40px;
    }

    .header-contact-btn {
        font-size: 22px;
        letter-spacing: -.012em;
        padding: 4.8px 17.5px;
        z-index: -1;
    }

    .header-nav.scrolled.static.show .header-contact-btn {
        z-index: 2;
              font-size: 12px;
        padding: 2.8px 17.5px;
    }


    /* footer */
    .top footer {
        margin-top: 0;
    }

    .footer-bottom-sp {
        padding-top: 34px;
        display: block !important;
        opacity: 1 !important;
    }

    .footer-bottom-inner {
        gap: 58px;
    }

    /* menu */
    .menu {
        width: 16px;
        height: 16px;
    }

    .menu::before,
    .menu::after,
    .menu span {
        height: 1px;
    }

    .menu.is-active::before {
        height: 1px;
        width: 16px;
        transform: rotate(-45deg) translate(0px, 0px) scale(1.3);
    }

    .menu.is-active::after {
        width: 16px;
        height: 1px;
        transform: rotate(45deg) translate(0px, 0px) scale(1.3);
    }

    /* nav */
    .nav {
        width: 100%;
        padding: 120px 46px 82px;
    }

    .nav-list {
        margin-inline: auto;
        max-width: 330px;
        margin-bottom: 80px;
    }

    .nav-buttons,
    .nav-bottom {
        max-width: 330px;
        margin-inline: auto;
    }

    .nav-bottom {
        text-align: center;
    }

    .nav.is-open .nav-item:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .nav-info {
        font-size: 16px;
    }

    .nav-phone {
        font-size: 31px;
    }

    .nav-phone a:hover {
        opacity: 1;
    }

    .header-wrapper:has(.nav.is-open) .header-logo img {
        filter: invert(1);
    }

    /* MV */
    .mv-bg iframe {
        height: 178.25vw !important;
    }

    .nav-buttons {
        margin-bottom: 42px;
    }

    /* skip btn */
    .skip-btn {
        font-size: 16px;
    }

    .section-caption-ttl {
        font-size: 22px;
        margin-bottom: 0;
    }

    .btn-more {
        font-size: 19.29px;
        letter-spacing: 0.02em;
        padding: 8px 17.4px;
        border: 1px solid #FFF;
    }

    /* sections */
    .section-caption {
        background-color: transparent;
        width: auto;
        padding-left: 35px;
        padding-bottom: 30px;
        bottom: 0;
    }

    .section-caption-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .section {
        height: calc(100vh - var(--scrollPadding));
        height: calc(100dvh - var(--scrollPadding));
    }

    .section-full {
        height: calc(100vh - var(--scrollPadding));
        height: calc(100dvh - var(--scrollPadding));
    }

    .section.section-full .section-scroll {
        height: calc(100vh - var(--scrollPadding));
        height: calc(100dvh - var(--scrollPadding));
    }

    .section.active {
        transform: translateY(var(--scrollPadding));
        opacity: 1;
    }

    .section-block {
        height: calc(100vh - var(--scrollPadding));
        height: calc(100dvh - var(--scrollPadding));
    }

    .section.active:has(+.section-auto.active) {
        transform: translateY(calc(var(--scrollPadding) - var(--fHeight)));
        transition-delay: 1.2s;
    }

    .section.prev {
        transform: translateY(var(--scrollPadding)) scale(0.7);
    }

    .section.next {
        transform: translateY(calc(100% + var(--scrollPadding)));
    }

    .section.active+.section-auto.active {
        transform: translateY(0);
        transition-delay: 1.2s;
    }

    /* gallery page */
    .gallery-info__left {
        display: none;
    }

    .gallery-info__left,
    .gallery-info__right {
        flex: 100%;
        width: 100%;
    }
}


@media screen and (max-width:529px) {
    .header-nav {
        height: auto;
    }

    .menu {
        width: 20px;
        height: 16px;
    }

    .menu span {
        height: 1px;
    }

    .menu::before,
    .menu::after {
        height: 1px;
    }

    .header {
        padding: 9px 15px;
    }

    .header-logo {
        max-width: 57px;
    }
}


/* access page */
.section-mv {
    position: relative;
    height: 100%;
    max-height: 100dvh;
}

.section-mv__image {
    height: 100dvh;
    object-fit: cover;
    object-position: bottom;
}

@media (max-width:767px) {
    .section-mv__image {
        height: calc(100dvh - 56px);
    }
}

.section-mv__title {
    color: #FFF;
    position: absolute;
    left: 68px;
    bottom: 45px;
    font-family: "adobe-garamond-pro", serif;
    font-size: 26px;
    line-height: calc(45 / 22);
}

.section-mv__title span {
    font-family: "Noto Serif JP", sans-serif;
}

.section-mv__title-desc {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: calc(42 / 21);
    letter-spacing: .02em;
    margin-top: -12px;
}

.section-mv__note {
    transition: all .3s ease;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFF;
    position: absolute;
    right: 15px;
    bottom: 0;
    font-size: 12px;
    line-height: calc(37 / 12);
}

.access-info {
    height: 100%;
    background: url(../img/access/access-01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFF;
    position: relative;
    padding: 440px 92px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.accesstaxi-info {
    height: 100%;
    background: url(../img/access/access-02.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFF;
    position: relative;
    padding: 0px 85px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.access-info__title {
    font-family: "adobe-garamond-pro", serif;
    font-size: 29px;
    line-height: 1;
    margin-bottom: 20px;
}

.access-info__text {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 15px;
}

.access-info__text.mb0 {
    margin-bottom: 0;
}

.access-info__flex {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 15px;
    max-width: 100%;
    width: 100%;
}

.access-info__location {
    width: 100%;
}

@media (min-width:768px) {
    .access-info__location {
        max-width: 330px;
    }
    .taxi-adjustment .access-info__location {
        max-width: 270px;
    }
}

.access-info__flex:last-child {
    margin-bottom: 0;
}

.access-info__flex .mb0 {
    margin-bottom: 0;
}

.access-info__text p {
    margin-bottom: 13px;
}

.accesstaxi-content-bg {
    max-width: 430px;
    position: relative;
    padding-top: 25px;

    &::before {
        content: "";
        width: calc(100% + 85px);
        height: calc(100% + 40px);
        position: absolute;
        background-color: #AFAFAF;
        mix-blend-mode: multiply;
        z-index: -1;
        left: -85px;
        top: 0;
    }
}

.accesstaxi-content-bg.taxi-adjustment {
    max-width: 464px;
    padding-top: 25px;
    padding-right: 5px;
}

@media (min-width:768px) {
    .accesstaxi-content-bg.car {
        &::before {
            width: calc(100% + 93px);
            left: -93px;
        }
    }

    .accesstaxi-content-bg.taxi-adjustment {
    max-width: 525px;
    padding-right: 35px;
}
}


@media (max-width:529px) {
    .accesstaxi-content-bg {
    padding-top: 25px;

    &::before {
        content: "";
        width: calc(100% + 25px);
        position: absolute;
        left: -25px;
        top: 0;
    }
}
}

@media (min-width:530px) {
    .access-info__text p .sm {
        font-size: 14px;
    }
    
    .access-info__text .xs {
        font-size: 12px;
    }
}

.access-info__text-md {
    font-size: 30px;
    line-height: 1;
}

.taxi-adjustment .access-info__location .access-info__text-md{
    line-height: 1.2;
}

.taxi-adjustment .access-info__text-md {
    font-size: 24px;
    line-height: 1;
}

.access-info__text-sm {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    line-height: 1;
}

    .access-info__text-sm.--fs-xs {
        font-size: 14px;
    }

.access-map {
    background-color: #FFF;
}

.access-map__container {
    max-width: 1043px;
    padding: 75px 20px 130px;
    margin-inline: auto;
    height: 100%;
}

.access-map__container .access-map__iframe,
.access-map__container iframe {
    height: revert-layer;
    margin-bottom: 31px;
    min-height:  385px;
    height: calc(100dvh - 500px);
    height: 100%;
}

.access-map__wrapper {
    display: flex;
    justify-content: space-between;
}

.access-map__content:first-child {
    margin-top: 25px;
}

.access-map__content:last-child {
    position: relative;
}

.access-map__content .section-mv__note {
    line-height: 1;
    right: 5px;
    bottom: 6px;
}

@media screen and (max-width:767px) {
    .section-mv__title {
        left: 20px;
        bottom: 22px;
        font-size: 22px;
        line-height: calc(45 / 35);
    }

    .section-mv__title-desc {
        font-size: 14px;
        line-height: calc(46 / 19);
        margin-top: 0px;
    }

    .section-mv__note {
        right: 10px;
    }

    .access-info {
        background: url(../img/access/access-01-sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        padding: 565px 35px 30px;
    }

    .accesstaxi-info {
        background: url(../img/access/access-02-sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        padding: 565px 35px 40px;
    }

    .access-info__title {
        font-size: 29px;
        margin-bottom: 10px;
    }

    .access-info__text {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .access-info__text p {
        margin-bottom: 8px;
    }

    .access-info__text-md {
        font-size: 30px;
    }

    .taxi-adjustment .access-info__text-md {
        font-size: 22px;
    }


    .access-info__text-sm {
        font-size: 14px;
        line-height: 1.2;
    }

    .access-info__text-sm.--fs-xs {
        font-size: 11px;
        margin-top: 18px;
    }

    .access-map__container {
        padding: 20px 0 32px;
    }

    .access-map__container .access-map__iframe,
    .access-map__container iframe {
        min-height: 175px;
        height: calc(88dvh - 470px);
        margin-bottom: 28px;
        height: 100%;
    }

    .access-map__wrapper {
        flex-direction: column;
        gap: 22px;
        padding-inline: 40px;
    }

    .access-map__content .access-info__title {
        margin-bottom: 15px;
    }

    .access-map__content .access-info__text p {
        margin-bottom: 0;
    }

    .access-map__content .access-info__text p:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .access-map__content:first-child {
        margin-top: 0px;
    }

    .access-map__content img {
        width: 100%;
    }
}


/* gallery page */
.yokohama-project {
    position: relative;
}

.yokohama-project__wrapper {
    background-color: #FFF;
    position: relative;
}

.yokohama-project__wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yokohama-gallery-wrapper {
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.yokohama-gallery-content__title {
    font-family: "Noto Serif JP", sans-serif;
    text-align: center;
    font-size: 21px;
    line-height: calc(46 / 21);
    letter-spacing: .02em;
    padding-top: 90px;
    opacity: 0;
    filter: blur(3px);
    transform: translateY(30px);
    transition: all 1.6s ease-in-out 0.4s;

}

.yokohama-gallery-wrapper.active .yokohama-gallery-content__title {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.yokohama-gallery {
    max-width: 1303px;
    margin-inline: auto;
    padding: 66px 20px 62px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px 20px;
}

.yokohama-gallery .section-mv__note {
    right: 10px;
}

.yokohama-gallery__link {
    display: block;
    width: fit-content;
    position: relative;
    transition: all .6s ease;
    overflow: hidden;
    width: calc((100% / 3) - ((20px * 2) / 3));
    opacity: 0;
    transform: translateY(450px) rotateX(24deg);
    transition: opacity .75s cubic-bezier(.24, .74, .58, 1), transform .75s cubic-bezier(.24, .74, .58, 1);
    will-change: transform, opacity;
    filter: blur(50px);
    transition: all 2s cubic-bezier(.24, .74, .58, 1);
}

.yokohama-gallery__image {
    transition: all .6s ease;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.yokohama-gallery__link:hover .yokohama-gallery__image {
    transform: scale(1.1);
}

.fancybox__thumbs,
.fancybox__container .f-thumbs {
    display: none !important;
    height: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.f-carousel__toolbar__column.is-right .f-button:not([data-fancybox-close]) {
    display: none !important;
}

.fancybox__slide.has-caption.f-zoomable {
    width: fit-content;
    height: auto;
    margin: auto;
}

.f-caption {
    opacity: 0 !important;
    height: fit-content !important;
    position: absolute;
    bottom: -40px;
    z-index: 5;
    left: 0;
    transform: translateY(40px);
    margin: 0 !important;
    padding: 0 !important;

    transition: opacity 0.5s ease-in-out 1s, transform 0.5s ease-in-out 1s;
}

.f-panzoom__wrapper {
    margin-top: -35px;
}

.f-caption.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.f-caption .section-caption-ttl {
    display: none;
    transform: none;
    filter: none;
    opacity: 1;
}

.fancybox__container>*:not(.fancybox__carousel),
.fancybox__container .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
    opacity: 0 !important;
    visibility: hidden;
    transform: translateY(40px) !important;
}

.fancybox__container>*:not(.fancybox__carousel),
.fancybox__container .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html, .f-panzoom__wrapper, .f-spinner).animate {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0) !important;
    transition: opacity 0.5s ease-in-out 0.1s, visibility 0.5s ease-in-out 0.1s,
        transform 0.5s ease-in-out 0.1s !important;
}

.section-caption-desc {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width:767px) {
    .section-caption-desc {
        font-size: 13px;
    }
}

#mv {
    height: 100%;
}

#mv video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Effect */
.tel,
.nav-phone,
.header-contact-btn,
.btn-more,
.nav-buttons-link,
.nav-link {
    transition: all 1.2s ease;
}

.btn-more {
    transition: all 0.8s ease-in-out 1s;
}

.tel:hover,
.nav-phone:hover,
.header-contact-btn:hover,
.btn-more:hover,
.nav-buttons-link:hover,
.nav-link:hover {
    opacity: .7;
}

.section .section-full {
    height: auto;
}

.f-carousel__toolbar {
    padding: 0 !important;
}

/* .f-carousel__toolbar.is-absolute .f-carousel__toolbar__column.is-right {
    display: none;
} */

/* .f-carousel__toolbar__column.is-right {
    position: absolute;
    top: 34px;
    right: 0;
} */

/* .fancybox__slide .f-button[data-fancybox-close] {
    width: 46px;
    height: 46px;
    background: rgba(54, 54, 54, .75);
    border-radius: 0;
}

.fancybox__slide .f-button[data-fancybox-close]:hover {
    background: rgba(54, 54, 54, .75);
    opacity: .7;
}

.fancybox__slide .f-button[data-fancybox-close] svg {
    width: 24px;
    height: 24px;
} */

@media screen and (max-width:991px) {
    .f-caption {
        left: 10px;
    }
}

@media screen and (max-width:767px) {
    .yokohama-gallery-content__title {
        font-size: 19px;
        line-height: calc(40 / 19);
        padding-top: 68px;
    }

    .section-mv {
        max-height: calc(100vh - var(--scrollPadding));
        max-height: calc(100dvh - var(--scrollPadding));
    }


    .yokohama-project__wrapper {
        height: 100%;
    }

    .yokohama-project__title {
        max-width: fit-content;
        padding: 5px 20px;
        font-size: 18px;
        line-height: calc(30 / 18);
    }

    .yokohama-gallery {
        padding: 60px 20px 45px;
        gap: 20px;
    }

    .yokohama-gallery__image {
        width: 100%;
    }

    .yokohama-gallery__link {
        width: calc((100% / 2) - (20px / 2));
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition: all 2.5s cubic-bezier(.24, .74, .58, 1);
    }

    .yokohama-gallery__figcaption {
        padding: 5px 10px;
        font-size: 16px;
        line-height: calc(30 / 16);
    }

    .yokohama-gallery__link:hover .yokohama-gallery__image {
        transform: scale(1);
    }

    .f-caption {
        max-width: 300px !important;
        margin-block: 0 !important;
        position: static;
        align-self: flex-start !important;
        text-align: start;
        margin: 9px 0 0 25px !important;
        border-bottom: none;
    }

    .f-button.is-arrow {
        width: 40px;
        height: 40px;
    }

    .f-button.is-arrow svg {
        width: 20px;
        height: 20px;
    }

    .f-button.is-arrow.is-next {
        right: 10px !important;
    }

    .f-button.is-arrow.is-prev {
        left: 10px !important;
    }

    .f-panzoom__viewport {
        width: 100% !important;
        height: 574px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .f-panzoom__content {
        min-height: 574px !important;
        object-fit: cover !important;
    }

    .f-panzoom__wrapper {
        min-height: 574px !important;
        margin-top: 60px !important;
    }
    .access-info__location {
        flex: 1;
        width: auto;
    }
}

@media screen and (max-width:575px) {

    .yokohama-gallery__link {
        width: 100%;
    }

    .f-panzoom__viewport {
        height: 365px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .f-panzoom__content {
        min-height: 365px !important;
        object-fit: cover !important;
    }

    .f-panzoom__wrapper {
        min-height: 365px !important;
    }

    .f-panzoom__wrapper.will-zoom-in {
        aspect-ratio: unset !important;
        height: 365px !important;
    }

    
}

@media screen and (max-width:529px) {
    .access-map__wrapper {
        padding-inline: 20px;
    }

    .access-info {
        padding: 565px 20px 30px;
    }

    .access-info__text {
        font-size: 15px;
        margin-bottom: 0;
    }

    .access-info__text span {
        font-size: 20px;
    }

    .access-info__text .sm {
        font-size: 11px;
    }

     .access-info__text .xs {
        font-size: 11PX;
    }


    .access-info__text-md {
        font-size: 20px;
    }

    .access-info__text-sm {
        font-size: 12px !important;
    }

    .section-mv__title-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .accesstaxi-info {
        padding: 565px 20px 40px;
    }
    .access-info__flex {
        justify-content: flex-start;
    }
    .access-info__location {
        max-width: 220px;
    }
}

.gallery .section-mv__image {
    opacity: 0;
    transform: scale(1.5);
    animation: fadeInZoomOut 3s ease-out forwards;
}

.access .section-mv__image {
    opacity: 0;
    transform: scale(1.5);
    animation: fadeInZoomOut 3s ease-out forwards;
}


@keyframes fadeInZoomOut {
      0% {
        opacity: 0.25;
        transform: scale(1.3);
      }
      50% {
        opacity: 0.5;
        transform: scale(1.15);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }


