@charset "UTF-8";

/*---------------------------------

    Common

---------------------------------*/

body {
    color: #000;
    font-family: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
a {
    color: #2C2C2C;
}
a:hover{
    color: #00d0f5;
}
.section-title p {
    padding-left: 7px;
    color: #00d0f5;
    font-size: 18px;
    font-weight: 700;
}
.section-title h2 {
    color: #2C2C2C;
    font-size: 40px;
    font-weight: 700;
}
.box-title {
    display: inline-grid;
    place-items: center;
    min-width: 216px;
    padding: 18px 20px;
    border: 1px solid currentColor;
    background-color: #fff;
    color: #00d0f5;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 767px) {

    .section-title p {
        font-size: 16px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .box-title {
        min-width: 150px;
        padding: 12px 16px;
        font-size: 14px;
    }

}


/*---------------------------------

    Header

---------------------------------*/

.logo-box {
    width: 280px;
}
.logo-box a {
    display: inline-block;
}
.logo-box a:hover {
    opacity: 0.7;
}
.logo-box .logo {
    width: 360px;
    height: 90px;
}
.logo-box .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sticky-header .logo-box .logo {
    height: 62px;
}
.sticky-header .logo-box .logo a {
    width: 100%;
    height: inherit;
}
.main-header .info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 60px;
}
.main-header .info li {
    display: flex;
    align-items: center;
    column-gap: 18px;
}
.main-header .info li:last-child {
    position: relative;
}
.main-header .info li:last-child::before {
    position: absolute;
    top: 50%;
    left: -30px;
    translate: 0 -50%;
    width: 1px;
    height: 34px;
    background-color: #d6d6d6;
    content: "";
}
.main-header .info li:first-child img {
    width: 21px;
}
.main-header .info li:last-child img {
    width: 18px;
}
.main-header .info li p {
    font-size: 16px;
}
.main-header .info li p span {
    font-weight: 700;
}
@media (max-width: 1300px) {

    .logo-box {
        width: 240px;
    }
    .logo-box .logo {
        width: 340px;
        height: 70px;
    }
    .sticky-header .logo-box .logo {
        height: 52px;
    }
    .main-menu .navigation > li > a {
        line-height: 20px;
        padding: 25px 0;
    }

}
@media (max-width: 1200px) {

    .main-header .info {
        padding: 0 20px;
    }

}
@media (max-width: 991px) {

    .logo-box {
        padding: 15px 0;
    }
    .logo-box .logo {
        width: 340px;
        height: 37px;
    }
    .sticky-header .logo-box .logo {
        height: 39px;
    }
    .mobile-menu .nav-logo {
        height: 160px;
    }
    .mobile-menu .nav-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}
@media (max-width: 767px) {

    .logo-box {
        width: 180px;
        padding: 12px 0;
    }
    .logo-box .logo {
        width: 220px;
        height: 30px;
    }
    .sticky-header .logo-box {
        padding: 11px 0px 17px;
    }
    .sticky-header .logo-box .logo {
        height: 26px;
    }
    .main-header .info {
        justify-content: center;
        column-gap: 30px;
        padding: 0;
    }
    .main-header .info li {
        column-gap: 12px;
    }
    .main-header .info li:last-child::before {
        left: -15px;
        height: 18px;
    }
    .main-header .info li:first-child img {
        width: 18px;
    }
    .main-header .info li p {
        font-size: 13px;
    }
    .mobile-menu .nav-logo {
        width: 270px;
    }

}


/*---------------------------------

    Modal

---------------------------------*/

.cm-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 9999;
}
.cm-modal.is-open {
    display: grid;
	place-items: center;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: 120px 80px 80px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 30px;
	right: 30px;
	width: 25px;
    height: 25px;
	cursor: pointer;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 4px;
    background-color: #000;
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-date {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}
.cm-modal-title {
    margin-bottom: 20px;
    color: #184AA7;
    font-size: 20px;
    font-weight: 700;
}
.cm-modal-text {
    margin-bottom: 30px;
    font-size: 16px;
}
.cm-modal-text-red {
    color: #FF0000;
}
.cm-modal-text a {
    color: #184AA7;
    text-decoration: underline;
}
.cm-modal-text a:hover {
    color: #00d0f5;
}
.cm-modal-img {
    margin-bottom: 30px;
}
.cm-modal-shop-img img {
    width: 360px;
}
.cm-modal-table table {
    width: 100%;
    max-width: 480px;
}
.cm-modal-table table th,
.cm-modal-table table td {
    padding: 4px 10px;
    border: 2px solid #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}
.cm-modal-table table thead th {
    padding: 2px 10px;
    background-color: #dae4fc;
    text-align: center;
}
.cm-modal-bottom {
    margin-top: 50px;
    text-align: center;
}
.cm-modal-close {
    display: inline-grid;
    place-items: center;
    width: 216px;
    height: 60px;
    border-radius: 5px;
    background: linear-gradient(90deg, #5DDCE6 0%, #8C53FF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.3s;
}
.cm-modal-close:hover {
    opacity: 0.7;
}
@media (max-width: 767px) {

    .cm-modal-container {
        padding: 80px 40px 60px;
    }
    .cm-modal-button {
        right: 20px;
    }
    .cm-modal-close {
        width: 160px;
        height: 50px;
        font-size: 14px;
    }
    .cm-modal-shop-img {
        text-align: center;
    }
    .cm-modal-table table th,
    .cm-modal-table table td {
        padding: 4px;
        font-size: 16px;
    }
    .cm-modal-table table tbody th {
        width: 80px;
    }

}


/*---------------------------------

    NEWS

---------------------------------*/

.news.sec-pad {
    padding: 60px 0 80px;
}
.news .shape-1 {
    top: 50px;
    left: calc(50% + 490px);
    width: 200px;
    aspect-ratio: 800 / 622;
    background-repeat: no-repeat;
    background-size: contain;
}
.news .auto-container {
    position: relative;
    z-index: 1;
}
.news-contents {
    margin-top: 60px;
}
.news .splide {
    padding-bottom: 70px;
}
.news .splide__pagination {
    display: flex !important;
    justify-content: center;
    gap: 10px 25px;
    bottom: 0;
}
.news .splide__pagination__page {
    opacity: 1;
    background: #D9D9D9;
    width: 13px;
    height: 13px;
    margin: 0;
}
.news .splide__pagination__page.is-active {
    width: 50px;
    height: 13px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #5DDCE6 0%, #8C53FF 100%);
    transform: unset;
}
.news-slide a {
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
    overflow: hidden;
    border: 1px solid #D3D3D3;
    border-radius: 15px;
    height: 100%;
}
.news-date {
    position: absolute;
    top: 30px;
    left: 24px;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 130px;
    height: 30px;
    border-radius: 9999px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.news-date span {
    display: inline-block;
    background: linear-gradient(90deg, #8C53FF 0%, #5DDCE6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.news-img {
    position: relative;
    aspect-ratio: 5 / 9;
    transition: opacity 0.3s;
}
.news-slide a:hover .news-img {
    opacity: 0.7;
}
.news-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-body {
    padding: 18px 24px 16px;
    background-color: #fff;
}
.news-shop-name {
    margin-bottom: 5px;
    color: #53AAF0;
    font-size: 14px;
    line-height: 1.4;
}
.news-title {
    font-size: 18px;
    font-weight: 700;
}
@media (max-width: 1449px) {

    .news .shape-1 {
        right: 30px;
        left: unset;
    }

}
@media (max-width: 991px) {

    .news .shape-1 {
        top: 70px;
        width: 160px;
    }

}
@media (max-width: 767px) {

    .news.sec-pad {
        padding: 60px 0;
    }
    .news .shape-1 {
        display: none;
    }
    .news-contents {
        margin-top: 50px;
    }
    .news .splide {
        padding-bottom: 60px;
    }
    .news .splide__pagination {
        gap: 10px 16px;
    }
    .news .splide__pagination__page {
        width: 10px;
        height: 10px;
    }
    .news .splide__pagination__page.is-active {
        width: 40px;
        height: 10px;
    }
    .news-slide a {
        border-radius: 10px;
    }
    .news-date {
        width: 120px;
        font-size: 14px;
    }
    .news-shop-name {
        font-size: 12px;
    }
    .news-title {
        font-size: 16px;
    }

}


/*---------------------------------

    SHOP LIST

---------------------------------*/

.shop {
    background-color: #F7F7F7;
}
.shop-block {
    margin-top: 60px;
}
.shop-block + .shop-block {
    margin-top: 140px;
}
.shop-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.shop-item a {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: hidden;
    border: 1px solid #D3D3D3;
    border-radius: 7px;
    background-color: #fff;
}
.shop-item-img {
    aspect-ratio: 278 / 192;
    transition: opacity 0.3s;
}
.shop-item a:hover .shop-item-img {
    opacity: 0.7;
}
.shop-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.shop-item-body {
    min-height: 100px;
    padding: 20px;
    border-top: 1px solid #D3D3D3;
}
.shop-item-floor {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #8C53FF 0%, #5DDCE6 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}
.shop-item-category {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.5;
}
.shop-item-title {
    font-size: 16px;
    font-weight: 700;
}
.shop .cm-modal-body {
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 991px) {

    .shop-list {
        grid-template-columns: repeat(3, 1fr);
    }

}
@media (max-width: 767px) {

    .shop-block {
        margin-top: 50px;
    }
    .shop-block + .shop-block {
        margin-top: 100px;
    }
    .shop-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .shop-item-body {
        min-height: 80px;
        padding: 6px 14px 10px;
    }
    .shop-item-title {
        font-size: 14px;
    }

}


/*---------------------------------

    FLOOR MAP

---------------------------------*/

.floor {
    overflow: hidden;
}
.floor .shape-1 {
    bottom: 50px;
    left: calc(50% + 500px);
    width: 200px;
    aspect-ratio: 800 / 622;
    background-repeat: no-repeat;
    background-size: contain;
}
.floor .auto-container {
    position: relative;
    z-index: 1;
}
.sortable-masonry {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}
.sortable-masonry .filters {
    margin-bottom: 70px;
}
.floor-map {
    margin-bottom: 80px;
}
.floor .box-title {
    margin-bottom: 50px;
}
.floor-list-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}
.floor-item {
    margin-bottom: 30px;
}
.floor-item:last-child {
    margin-bottom: 0;
}
.floor-item p {
    font-size: 12px;
    line-height: 1.5;
}
.floor-shop-name {
    font-size: 18px;
    font-weight: 700;
}
@media (max-width: 1499px) {

    .floor .shape-1 {
        left: calc(50% + 440px);
    }

}
@media (max-width: 1300px) {

    .floor .shape-1 {
        bottom: 30px;
        left: calc(50% + 350px);
    }

}
@media (max-width: 1199px) {

    .floor .shape-1 {
        left: calc(50% + 300px);
    }

}
@media (max-width: 991px) {

    .floor .shape-1 {
        left: calc(50% + 210px);
        width: 160px;
    }
    .floor-list-block {
        gap: 60px;
    }

}
@media (max-width: 767px) {

    .floor .shape-1 {
        display: none;
    }
    .sortable-masonry {
        margin-top: 50px;
    }
    .sortable-masonry .filters {
        margin-bottom: 30px;
    }
    .floor-map {
        margin-bottom: 50px;
    }
    .floor .box-title {
        margin-bottom: 30px;
    }
    .floor-list-block {
        display: block;
    }
    .floor-list {
        margin-bottom: 30px;
    }
    .floor-list:last-child {
        margin-bottom: 0;
    }
    .floor-shop-name {
        font-size: 16px;
    }

}


/*---------------------------------

    ACCESS

---------------------------------*/

.access {
    background-color: #F7F7F7;
}
.access-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 90px;
}
.access-map iframe {
    width: 100%;
    height: 480px;
}
.access-content {
    margin-top: 40px;
}
.access-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}
.access-content p {
    font-size: 16px;
}
.access-button {
    color: #184AA7;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.5s;
}
.access-button:hover {
    color: #00d0f5;
}
@media (max-width: 991px) {

    .access-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .access-map {
        order: 2;
    }
    .access-map iframe {
        height: 400px;
    }
    .access-contents {
        order: 1;
    }

}
@media (max-width: 767px) {

    .access-map iframe {
        height: 300px;
    }

}
