* {
    box-sizing: border-box;
    word-break: break-all;
}

img {
    max-width: 100%;
}

.w100 {
    width: 100%;
    height: auto;
}

.c1 {
    transform-origin: top left;
    transform: scaleX(0.8);
    width: 125%;
    font-feature-settings: "palt";
}

.c2 {
    transform-origin: top left;
    transform: scaleX(0.9);
    width: 111.1111111111%;
    font-feature-settings: "palt";
}

.ttl-01 {
    font-size: 28px;
    line-height: 1;
}
@media (min-width: 769px) {
    .ttl-01 {
        font-size: 34px;
    }
}
.ttl-01 span {
    display: inline-block;
}

.f-13 {
    font-size: 13px;
}
@media (min-width: 769px) {
    .f-13 {
        font-size: 17px;
    }
}

.f-en {
    font-family: linotype-sabon, sans-serif;
    font-weight: 700;
    font-style: normal;
}

a,
button {
    color: inherit;
    cursor: pointer;
    transition: opacity 0.4s;
}
a:hover,
button:hover {
    opacity: 0.6;
}

.txt_underline,
.txt_link {
    text-decoration: underline;
}

@media (min-width: 769px) {
    .hv_op {
        cursor: pointer;
        transition: opacity 0.4s;
    }
    .hv_op:hover {
        opacity: 0.6;
    }
}
@media (max-width: 768px) {
    .pc-visible {
        display: none;
    }
}

@media (min-width: 769px) {
    .sp-visible {
        display: none;
    }
}

[data-anime=fadeIn] {
    opacity: 0;
}
[data-anime=fadeIn].in-view {
    animation: fadeIn 0.8s 0.5s forwards;
}

[data-anime=fadeInUp] {
    opacity: 0;
    transform: translateY(30px);
}
[data-anime=fadeInUp].in-view {
    animation: fadeInUp 1.4s 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}
/* === body
==================================== */
html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: source-han-serif-jp-subset, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 1.75;
    background: #fff;
    color: #231914;
}
@media (min-width: 769px) {
    body {
        font-size: 20px;
    }
}

.bgVideo {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
}
.bgVideo .bgVideo-wrapper__pc {
    aspect-ratio: 16/9;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bgVideo .bgVideo-wrapper__sp {
    aspect-ratio: 9/16;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bgVideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-menu {
    z-index: 90;
    width: 38px;
    height: 19px;
    position: fixed;
    top: 20px;
    right: 20px;
    transition: 0.4s;
}
@media (min-width: 769px) {
    .btn-menu {
        display: none !important;
    }
}
.btn-menu::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn-menu span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 38px;
    height: 0.5px;
    background: #231914;
    transition: top 0.4s, width 0.4s, transform 0.4s, opacity 0.4s, background 0.8s;
}
.btn-menu span:nth-child(1) {
    top: 0;
}
.btn-menu span:nth-child(2) {
    top: 6px;
}
.btn-menu span:nth-child(3) {
    top: 12px;
}
.btn-menu span:nth-child(4) {
    top: 18px;
}
.btn-menu.close {
    top: 40px;
}
.btn-menu.close span {
    top: 11px;
    width: 40px;
}
.btn-menu.close span:nth-child(1), .btn-menu.close span:nth-child(4) {
    opacity: 0;
}
.btn-menu.close span:nth-child(2) {
    transform: rotate(45deg);
}
.btn-menu.close span:nth-child(3) {
    transform: rotate(-45deg);
}
.btn-menu.bg-black span {
    background: #fff;
}
.btn-menu.bg-black.close span {
    background: #231914;
}

@media (max-width: 768px) {
    .nav-wrap {
        z-index: 80;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .nav-wrap.hide {
        display: none;
    }
}
@media (min-width: 769px) {
    .nav-wrap {
        display: block !important;
    }
}
.nav-wrap .nav {
    transition: color 0.8s;
}
@media (min-width: 769px) {
    .nav-wrap .nav {
        z-index: 80;
        position: fixed;
        top: 40px;
        left: 48px;
        opacity: 0;
        animation: fadeInLeft 1s 0.4s forwards;
    }
}
.nav-wrap .nav a {
    display: inline-block;
}
@media (min-width: 769px) {
    .nav-wrap .nav.bg-black {
        color: #fff;
    }
}
.nav-wrap .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: linotype-sabon, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    line-height: 1;
}
@media (max-width: 768px) {
    .nav-wrap .nav-list {
        gap: 15px;
        margin: 110px 0 0 30px;
    }
}
@media (min-width: 769px) {
    .nav-wrap .nav-list {
        gap: 13px;
    }
}
@media (max-width: 768px) {
    .nav-wrap .nav-ft {
        width: 100%;
        margin-top: auto;
        padding: 0 30px 70px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.nav-wrap .sns-list {
    margin-top: 40px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
@media (min-width: 769px) {
    .nav-wrap .sns-list {
        opacity: 0;
        animation: fadeIn 1s 0.4s forwards;
        z-index: 999;
        position: absolute;
        top: 40px;
        right: 48px;
        gap: 14px;
        flex-direction: row;
        margin: 0;
    }
}
.nav-wrap .sns-list img {
    width: 30px;
}
.nav-wrap .sns-list img[alt=instagram] {
    width: 32px;
}
@media (min-width: 769px) {
    .nav-wrap .sns-list img {
        width: 33px;
    }
    .nav-wrap .sns-list img[alt=instagram] {
        width: 36px;
    }
}
.nav-wrap .sound-btn {
    display: flex;
    align-items: center;
    transition: color 0.8s;
}
@media (min-width: 769px) {
    .nav-wrap .sound-btn {
        opacity: 0;
        animation: fadeInLeft 1s 0.4s forwards;
        position: fixed;
        left: 48px;
        bottom: 56px;
        z-index: 90;
    }
    .nav-wrap .sound-btn.bg-black {
        color: #fff;
    }
    .nav-wrap .sound-btn.bg-black .icon {
        border-color: #fff;
    }
    .nav-wrap .sound-btn.bg-black[data-sound=on] .icon {
        background: #fff;
    }
}
.nav-wrap .sound-btn span {
    display: inline-block;
    line-height: 1;
}
@media (max-width: 768px) {
    .nav-wrap .sound-btn span {
        font-size: 20px;
    }
}
.nav-wrap .sound-btn .icon {
    aspect-ratio: 1/1;
    width: 16px;
    flex-shrink: 0;
    border: 1px solid #231914;
    border-radius: 100%;
    transition: 0.8s;
}
.nav-wrap .sound-btn[data-sound=on] .icon {
    background: #231914;
}

.mv {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
}
.mv .mv-inner {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeIn 1s 0.4s forwards;
}
.mv .date, .mv .ttl, .mv .catch, .mv .copy {
    position: absolute;
    top: 0;
}
.mv .date img, .mv .ttl img, .mv .catch img, .mv .copy img {
    mix-blend-mode: multiply;
}
.mv .date {
    width: min(32vw, 16vh);
    top: 9.1%;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 769px) {
    .mv .date {
        width: min(136px, 30vh);
        top: 40px;
    }
}
.mv .ttl {
    width: min(74.6666666667vw, 60vh);
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 769px) {
    .mv .ttl {
        width: min(440px, 80vh);
        top: 50%;
        transform: translate(-50%, -50%);
        margin-top: -58px;
    }
}
.mv .catch {
    width: min(26.6666666667vw, 40vh);
    top: 20%;
    left: 10.1333333333vw;
}
@media (min-width: 769px) {
    .mv .catch {
        width: 140px;
        left: 75%;
    }
}
.mv .copy {
    width: min(48vw, 28vh);
    top: auto;
    bottom: 10.8%;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 769px) {
    .mv .copy {
        width: min(250px, 40vh);
        bottom: 56px;
    }
}

.cover-blur {
    z-index: 1;
    position: relative;
    top: 200px;
    left: 0;
    width: 100%;
    height: 0;
}
@media (min-width: 769px) {
    .cover-blur {
        top: 164px;
    }
}
.cover-blur.hide::before {
    opacity: 0;
}
.cover-blur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--main-h) * 1px);
    -webkit-backdrop-filter: blur(50px) brightness(1.1);
    backdrop-filter: blur(50px) brightness(1.1);
    z-index: -1;
    transition: 0.8s;
}

.main-contents {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 200px;
    padding: 170px 0 180px;
    display: block;
}
.modal-open .main-contents {
    z-index: 90;
}
@media (min-width: 769px) {
    .main-contents {
        margin-top: 164px;
        padding: 323px 5.2015604681vw 210px 28.6085825748vw;
    }
}
@media screen and (min-width: 980px) {
    .main-contents {
        padding: 323px 132px 210px 274px;
    }
}

.cmn-sec-in {
    padding: 0 25px;
}
@media (min-width: 769px) {
    .cmn-sec-in {
        padding: 0;
        max-width: 960px;
        margin: 0 auto;
    }
}

.cmn-sec-ttl {
    position: relative;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 64px;
    font-family: linotype-sabon, sans-serif;
    font-weight: 700;
    font-style: normal;
}
@media (min-width: 769px) {
    .cmn-sec-ttl {
        font-size: 40px;
    }
}
.cmn-sec-ttl::before {
    content: "-";
    position: absolute;
    top: 0;
    left: -30px;
}
@media (min-width: 769px) {
    .cmn-sec-ttl::before {
        left: -25px;
    }
}

.cmn-box {
    border: 1px solid #231914;
    border-radius: 32px;
    padding: 24px;
}
@media (min-width: 769px) {
    .cmn-box {
        padding: 38px 40px;
        border-radius: 24px;
    }
}

.about .ttl-01 {
    margin-bottom: 64px;
}
@media (min-width: 769px) {
    .about .ttl-01 {
        line-height: 1.4;
        margin-bottom: 60px;
    }
}
.about .cmn-box {
    margin: 43px auto 0;
}
.about .about-list {
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 769px) {
    .about .about-list {
        margin-top: 120px;
        flex-direction: row-reverse;
        max-width: 840px;
        margin-right: 0;
        justify-content: space-between;
    }
    .about .about-list li {
        width: min(50%, 320px);
    }
    .about .about-list li:nth-child(2n) {
        margin-top: 194px;
    }
}
.about .about-list .photo {
    box-shadow: 10px 5px 20px 0 rgba(35, 25, 20, 0.2);
    margin-bottom: 24px;
    transition: 0.6s;
    background: #fff;
}
.about .about-list .photo.in-view {
    background: transparent;
}
.about .about-list .photo img {
    mix-blend-mode: luminosity;
}
.about .about-list .name {
    margin-bottom: 8px;
}
.about .about-list .prof {
    margin-top: 8px;
}
.about .about-list .comment {
    margin-top: 16px;
}

.contributors {
    margin-top: 200px;
}
.contributors .cmn-sec-ttl {
    margin-bottom: 27px;
}
@media (min-width: 769px) {
    .contributors .cmn-sec-ttl {
        margin-bottom: 0;
    }
}
.contributors .contributors-list {
    position: relative;
    width: 100%;
    aspect-ratio: 325/834;
}
@media screen and (min-width: 960px) {
    .contributors .contributors-list {
        aspect-ratio: 960/752;
        margin-top: -40px;
    }
}
.contributors .contributors-list li {
    position: absolute;
    width: 37.5384615385%;
}
@media screen and (min-width: 960px) {
    .contributors .contributors-list li {
        width: 16.6666666667%;
    }
}
.contributors .contributors-list li .modal-front:hover {
    opacity: 1;
}
.contributors .contributors-list li .modal-front:hover .photo {
    background: transparent;
}
.contributors .contributors-list li .title {
    line-height: 1;
}
@media (max-width: 768px) {
    .contributors .contributors-list li .title {
        font-size: 9px;
    }
}
.contributors .contributors-list li .photo {
    box-shadow: 0px 10px 30px 0 rgba(35, 25, 20, 0.2);
    margin-bottom: 8px;
    transition: 0.6s;
    background: #fff;
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}
.contributors .contributors-list li .photo img {
    mix-blend-mode: luminosity;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contributors .contributors-list li .name {
    margin-top: 3px;
    line-height: 1.34;
}
.contributors .contributors-list li:nth-child(1) {
    top: 0;
    right: 0;
}
.contributors .contributors-list li:nth-child(2) {
    top: 13.309352518%;
    left: 0;
}
.contributors .contributors-list li:nth-child(3) {
    top: 28.0575539568%;
    left: 47.0769230769%;
}
.contributors .contributors-list li:nth-child(4) {
    top: 51.7985611511%;
    left: 0;
}
.contributors .contributors-list li:nth-child(5) {
    top: 54.4364508393%;
    right: 0;
}
.contributors .contributors-list li:nth-child(6) {
    bottom: 0;
    left: 25.5384615385%;
}
@media screen and (min-width: 960px) {
    .contributors .contributors-list li:nth-child(1) {
        top: 0;
        right: 20.7291666667%;
    }
    .contributors .contributors-list li:nth-child(2) {
        top: 23.5372340426%;
        left: 0;
    }
    .contributors .contributors-list li:nth-child(3) {
        top: 30.3191489362%;
        left: 41.7708333333%;
    }
    .contributors .contributors-list li:nth-child(4) {
        top: 56.914893617%;
        left: 20.8333333333%;
    }
    .contributors .contributors-list li:nth-child(5) {
        top: 34.7074468085%;
        right: 0;
    }
    .contributors .contributors-list li:nth-child(6) {
        bottom: 0;
        left: 65.625%;
    }
}

.artists {
    margin-top: 200px;
}
.artists .cmn-sec-ttl {
    margin-bottom: 40px;
}
.artists .artists-list {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (min-width: 769px) {
    .artists .artists-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 40px;
    }
}
.artists .artists-list li .modal-front:hover {
    opacity: 1;
}
.artists .artists-list li .modal-front:hover .photo {
    background: transparent;
}
.artists .artists-list li .title {
    line-height: 1;
}
@media (max-width: 768px) {
    .artists .artists-list li .title {
        font-size: 9px;
    }
}
.artists .artists-list li .photo {
    box-shadow: 0px 10px 30px 0 rgba(35, 25, 20, 0.2);
    margin-bottom: 8px;
    transition: 0.6s;
    background: #fff;
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}
.artists .artists-list li .photo img {
    mix-blend-mode: luminosity;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artists .artists-list li .name {
    margin-top: 3px;
    line-height: 1.34;
}

.artist-box {
    margin-top: 24px;
    padding: 20px 24px 26px;
}
.artist-box .artist-box-ttl {
    margin-bottom: 16px;
}
.artist-box .artist-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.artist-box .artist-box-list li {
    padding-right: 10px;
    border-right: 1px solid #231914;
    line-height: 1;
    display: inline;
}
.artist-box .artist-box-list li:last-child {
    border: 0;
}

.exhibition {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
}
@media (min-width: 769px) {
    .exhibition {
        position: relative;
        z-index: 1;
    }
}
.exhibition::before, .exhibition::after {
    content: "";
    display: block;
    width: 100%;
    height: 378px;
    background: linear-gradient(180deg, rgba(35, 25, 20, 0) 0%, rgb(35, 25, 20) 100%);
}
@media (min-width: 769px) {
    .exhibition::before, .exhibition::after {
        position: relative;
        left: 0;
        margin-left: -100vw;
        width: 200vw;
        background: linear-gradient(180deg, rgba(35, 25, 20, 0) 0%, rgb(35, 25, 20) 50%, rgb(35, 25, 20) 100%);
    }
}
.exhibition::after {
    margin-top: -1px;
    background: linear-gradient(0deg, rgba(35, 25, 20, 0) 0%, rgb(35, 25, 20) 100%);
}
@media (min-width: 769px) {
    .exhibition::after {
        background: linear-gradient(0deg, rgba(35, 25, 20, 0) 0%, rgb(35, 25, 20) 50%, rgb(35, 25, 20) 100%);
    }
}
.exhibition .cmn-sec-in {
    margin-top: -1px;
    background: #231914;
    color: #fff;
}
@media (min-width: 769px) {
    .exhibition .cmn-sec-in {
        position: relative;
    }
    .exhibition .cmn-sec-in::before {
        content: "";
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        width: 200vw;
        height: 100%;
        margin-left: -100vw;
        background: #231914;
    }
}
.exhibition .cmn-sec-ttl {
    margin-bottom: 40px;
}
.exhibition .exh-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 20px;
}
@media (min-width: 769px) {
    .exhibition .exh-list {
        gap: 90px;
    }
}
@media (min-width: 769px) {
    .exhibition .exh-list .list-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 12.5%;
    }
}
.exhibition .exh-list .photo {
    position: relative;
    margin-bottom: 24px;
    aspect-ratio: 1/1;
    width: 100%;
}
@media (min-width: 769px) {
    .exhibition .exh-list .photo {
        width: 37.5%;
        margin-bottom: 0;
    }
}
.exhibition .exh-list .photo figure {
    position: relative;
    width: 100%;
    height: 100%;
}
.exhibition .exh-list .photo figcaption {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
}
.exhibition .exh-list .photo img {
    mix-blend-mode: luminosity;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.exhibition .exh-list .photo .normal-photo {
    mix-blend-mode: normal;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s 0.3s;
}
.exhibition .exh-list .photo.in-view .normal-photo {
    opacity: 1;
}
@media (min-width: 769px) {
    .exhibition .exh-list .text-area {
        flex: 1;
    }
}
.exhibition .exh-list .title {
    font-size: 28px;
    line-height: 1.34;
    margin-bottom: 16px;
}
.exhibition .exh-list .detail {
    margin-top: 24px;
}
.exhibition .exh-list .detail .bundle:not(:first-child) {
    margin-top: 16px;
}
.exhibition .exh-list .detail dt {
    font-size: 13px;
    line-height: 1.34;
}
@media (min-width: 769px) {
    .exhibition .exh-list .detail dt {
        font-size: 17px;
    }
}
.exhibition .exh-list .detail dd {
    font-size: 16px;
    margin-top: 3px;
}
@media (min-width: 769px) {
    .exhibition .exh-list .detail dd {
        font-size: 20px;
    }
}
.exhibition .exh-list .detail dd .note {
    font-size: 13px;
    line-height: 1.34;
}
@media (min-width: 769px) {
    .exhibition .exh-list .detail dd .note {
        font-size: 17px;
    }
}
.exhibition .artist-box {
    border-color: #fff;
}
.exhibition .artist-box .artist-box-list li {
    border-color: #fff;
}

.events {
    margin-top: 45px;
}
.events .cmn-sec-ttl {
    margin-bottom: 40px;
}
.events .events-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 20px;
}
@media (min-width: 769px) {
    .events .events-list {
        gap: 90px;
    }
}
@media (min-width: 769px) {
    .events .events-list .list-item {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 12.5%;
    }
}
.events .events-list .photo {
    position: relative;
    margin-bottom: 24px;
    aspect-ratio: 1/1;
    width: 100%;
    background: #fff;
}
@media (min-width: 769px) {
    .events .events-list .photo {
        width: 37.5%;
        margin-bottom: 0;
    }
}
.events .events-list .photo img {
    mix-blend-mode: luminosity;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.events .events-list .photo .normal-photo {
    mix-blend-mode: normal;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s 0.3s;
}
.events .events-list .photo.in-view .normal-photo {
    opacity: 1;
}
@media (min-width: 769px) {
    .events .events-list .text-area {
        flex: 1;
    }
}
.events .events-list .title {
    font-size: 28px;
    line-height: 1.34;
    margin-bottom: 16px;
}
.events .events-list .detail {
    margin-top: 24px;
}
.events .events-list .detail .bundle:not(:first-child) {
    margin-top: 16px;
}
.events .events-list .detail dt {
    font-size: 13px;
    line-height: 1.34;
}
.events .events-list .detail dd {
    font-size: 16px;
    margin-top: 3px;
}
.events .events-list .detail dd .note {
    font-size: 13px;
    line-height: 1.34;
}

.archives {
    margin-top: 130px;
}
@media (min-width: 769px) {
    .archives {
        margin-top: 178px;
        padding: 0 5.2015604681vw 0 28.6085825748vw;
    }
}
@media screen and (min-width: 980px) {
    .archives {
        padding: 0 132px 0 274px;
    }
}
.archives .cmn-sec-ttl {
    margin-bottom: 40px;
}
.archives .archives-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    padding: 0 7px;
}
@media (min-width: 769px) {
    .archives .archives-list {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        padding: 0;
    }
    .archives .archives-list li {
        width: 25%;
        max-width: 200px;
    }
}

.footer {
    margin-top: 120px;
    padding-bottom: 50px;
}
@media (min-width: 769px) {
    .footer {
        margin-top: 150px;
        padding-bottom: 56px;
    }
}
@media (min-width: 769px) {
    .footer .cmn-sec-in {
        max-width: 100%;
        padding: 0 48px;
    }
}
.footer .ft-cont-wrap {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
@media (min-width: 769px) {
    .footer .ft-cont-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.footer .ft-cont01 {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
@media (min-width: 769px) {
    .footer .ft-cont01 {
        flex-direction: row-reverse;
    }
}
.footer .ft-txt {
    font-size: 11px;
    line-height: 1.5;
}
.footer .logo-parco {
    width: 124px;
}
@media (min-width: 769px) {
    .footer .logo-parco {
        width: 135px;
        width: clamp(80px, 13.5vw, 135px);
        margin-bottom: 26px;
    }
}
.footer .ft-cont02 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 17px;
}
.footer .ft-cont02 .cont-l {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 19px;
}
.footer .sns-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer .sns-wrap a {
    display: inline-flex;
    align-items: center;
    width: 22px;
}
.footer .sns-wrap a.insta {
    width: 24px;
}
.footer .sns-wrap a.tiktok {
    width: 20px;
}
.footer .copy {
    font-size: 9px;
    text-align: right;
}
@media (min-width: 769px) {
    .footer .copy {
        font-size: clamp(7px, 1.1vw, 11px);
    }
}
.footer .copy span {
    display: inline-block;
}
.footer .logo-55 {
    display: inline-block;
    width: 65px;
}
@media (min-width: 769px) {
    .footer .logo-55 {
        width: clamp(40px, 6.5vw, 65px);
    }
}

/* =========================================================
modal
========================================================= */
.modal-block {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 999;
    color: #231914;
    display: none;
}
.modal-block .modal-overlay {
    width: 100vw;
    height: 150vh;
    background: rgba(35, 25, 20, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}
.modal-block .modal-body {
    width: calc(100vw - 48px);
    max-width: 1018px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -15px;
}
.modal-block .modal-content {
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
    overflow-y: auto;
    background: #fff;
    width: 100%;
    padding: 34px 34px 30px;
    box-sizing: border-box;
    display: none;
}
@media (min-width: 769px) {
    .modal-block .modal-content {
        padding: 100px 70px;
    }
}
.modal-block .modal-content:first-child .btn-prev {
    display: none !important;
}
.modal-block .modal-content:last-child .btn-next {
    display: none !important;
}
@media (min-width: 769px) {
    .modal-block .modal-content .col-2 {
        display: flex;
        justify-content: center;
        gap: 24px;
    }
}
.modal-block .modal-content .modal-photo {
    margin-bottom: 24px;
}
@media (min-width: 769px) {
    .modal-block .modal-content .modal-photo {
        width: 41%;
        margin-bottom: 0;
    }
}
@media (min-width: 769px) {
    .modal-block .modal-content .text-area {
        flex: 1;
    }
}
.modal-block .modal-content .text-area a {
    color: #002F9D;
    text-decoration: underline;
}
@media (min-width: 769px) {
    .modal-block .modal-content .text-area a {
        transition: 0.4s;
    }
    .modal-block .modal-content .text-area a:hover {
        opacity: 0.6;
    }
}
.modal-block .modal-content .job_ttl {
    font-size: 13px;
    line-height: 1.34;
    margin-bottom: 8px;
}
@media (min-width: 769px) {
    .modal-block .modal-content .job_ttl {
        font-size: 18px;
    }
}
.modal-block .modal-content .name {
    font-size: 16px;
    line-height: 1.34;
    margin-bottom: 24px;
}
@media (min-width: 769px) {
    .modal-block .modal-content .name {
        font-size: 20px;
    }
}
.modal-block .modal-content .sns-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}
.modal-block .modal-content .sns-wrap a {
    display: inline-block;
    width: 24px;
}
.modal-block .modal-content .sns-wrap a .x, .modal-block .modal-content .sns-wrap a .tiktok {
    width: 22px;
}
.modal-block .modal-content .text {
    font-size: 13px;
    margin-top: 24px;
}
@media (min-width: 769px) {
    .modal-block .modal-content .text {
        margin-top: 40px;
        font-size: 17px;
    }
}
.modal-block .modal-controll {
    width: 34px;
    position: absolute;
    top: 50%;
    margin-top: -17px;
}
.modal-block .modal-controll.btn-prev {
    left: -17px;
}
@media (min-width: 769px) {
    .modal-block .modal-controll.btn-prev {
        left: 18px;
    }
}
.modal-block .modal-controll.btn-next {
    right: -17px;
}
@media (min-width: 769px) {
    .modal-block .modal-controll.btn-next {
        right: 18px;
    }
}
.modal-block .modal-controll.btn-next img {
    rotate: 180deg;
}
.modal-block .icon-close {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
}
.modal-block .icon-close::before, .modal-block .icon-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}
.modal-block .icon-close::after {
    transform: rotate(45deg);
}
.modal-block .btn-close-top {
    position: absolute;
    top: -33px;
    right: -10px;
    cursor: pointer;
}
.modal-block .btn-close-bottom {
    color: #fff;
    position: absolute;
    bottom: -12px;
    left: 0;
    translate: 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    line-height: 1;
    font-family: linotype-sabon, sans-serif;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
}
/*# sourceMappingURL=map/layout.css.map */