#swiper-news .swiper-slide {
    width: 100%;
}

/* ------------  ヘッダー カルーセル*/

#swiper__carousel {
    padding: calc(var(--headerNav-height) + 16px) 0 8px;
}

#swiper__carousel .swiper-slide {
    position: relative;
    margin: 0 auto;
}

#swiper__carousel .swiper-slide a {
    display: block;
    width: 100%;
    height: clamp(120px, 36vw, 340px);
    overflow: hidden;
    border-radius: var(--carousel-borderRadius);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
}

#swiper__carousel .swiper-slide img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 6px 0;
}

.swiper-slide-title:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
    border-bottom-left-radius: var(--carousel-borderRadius);
    border-bottom-right-radius: var(--carousel-borderRadius);
}

.swiper-slide-title p {
    position: relative;
    --font-weight: 400;
    --font-size: 13px;
}

.swiper-slide-label {
    display: flex;
    padding: 6px 12px 6px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 10px 0px 0px 10px;
    background: #FFF;
    position: absolute;
    top: 10px;
    right: 0;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    text-overflow: ellipsis;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.news__menu {
    position: relative;
    margin-bottom: 24px;
}

.news__menu-button-all {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 22%;
}

.news__menu-ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.news__menu-button {
    border-right: 1px solid var(--color-white);
    background: var(--color-gray-lightEEE);
    color: var(--color-gray-dark444);
    width: 100%;
    padding: 6px 0;
    letter-spacing: 1px;
    --font-size: 14px;
    --line-height: 22px;
}

.news__menu-button-active {
    background: var(--color-gray-dark);
    color: var(--color-white);
}

.news__list-ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 var(--paddingLR);
}

.news__list-li {
    display: none;
    width: 100%;
    opacity: 0;
}

.news__link {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.news__link__img-container {
    width: 104px;
    height: 104px;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news__link__img {
    object-fit: cover;
    height: 100%;
}

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

.news__link__text-tag {
    padding-left: 4px;
    --line-height: 1.25;
    color: var(--color-gray-dark444);
    font-size: 12px;
    letter-spacing: 1px;
}

.news__link__text-title {
    color: var(--color-gray-dark444);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.news__link__text-footer {
    color: var(--color-gray-dark);
    text-align: center;
    font-size: 12px;
    text-align: right;
}

.news__list-link {
    display: none;
    justify-content: center;
    align-items: end;
    gap: 8px;
    width: fit-content;
    margin-left: auto;
    color: var(--color-gray-dark444);
    padding-top: 24px;
    padding-right: var(--paddingLR);
    line-height: 1;
    font-family: var(--font-family);
    font-size: 14px;
}

.news__list-link-arrow {
    display: block;
    width: 8px;
    height: 12px;
}

.news__list-li-show {
    display: flex;
    opacity: 100%;
}

@media only screen and (min-width: 768px) {


    #swiper__carousel {
        padding: 0 0 8px;
    }

    #swiper__carousel .swiper-slide a {
        height: clamp(160px, 21vw, 340px);
    }

    .swiper-wrapper {
        padding: 0;
    }

    .news__menu-ul li {
        width: 100%;
    }

    .news__menu-button-all {
        width: 20%;
    }

    .news__list-link {
        padding: 0;
    }
}

.section-service>* {
    margin-bottom: 16px;
}

.section-news,
.section-list,
.section-service>*:last-child {
    margin-bottom: var(--spacing-between-sections);
}

.section-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.list__ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    margin: 24px auto 40px;
    width: 100%;
    gap: 16px;
}

.list__li {
    margin: 0 auto;
}

.list__li-link {
    display: flex;
    width: 104px;
    flex-direction: column;
    align-items: center;
    gap: 10.8px;
    margin: 0 auto;
}

.list__li-imgcontainer {
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
    position: relative;
}

.list__li-img {
    display: block;
    max-width: 44px;
    margin: auto;
    height: auto;
}

.list__li-img-center {
    position: relative;
    left: 4%;
}

.list__li-p {
    color: var(--color-gray-dark444);
    text-align: center;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    word-break: keep-all;
}

.section__h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    --font-size: 20px;
    --font-weight: 500;
    letter-spacing: 1px;
    padding: 0 var(--paddingLR);
    width: 100%;
    position: relative;
    left: -6px;
    margin-bottom: 16px;
}

.section__h2-icon {
    max-width: 50px;
    filter: drop-shadow(0px 0px 10px rgba(255, 153, 0, 0.50));
}

.section__h2-icon-sanrio {
    filter: drop-shadow(0px 0px 4px rgba(46, 124, 246, 0.30));
}

.section__h2::before {
    content: "";
    position: absolute;
    width: calc(100% - 50px - (var(--paddingLR)/2));
    height: 3px;
    z-index: 0;
    background: linear-gradient(86deg, #FF8A00 3.28%, #FFD600 96.72%);
    bottom: 6px;
    left: 40px;
}

.section__h2-shops {
    margin-bottom: 0;
}

.section__h2-icon-shop {
    filter: none;
    width: 24px;
}

.section__h2-shops::before {
    content: none;
}

.section__h2-text {
    --font-size: 24px;
    --font-weight: 500;
    --line-height: 150%;
    letter-spacing: 1px;
}

.section__h2-sanrio .section__h2-text {
    --font-size: clamp(12px, 3.8vw,24px);
}

.section__h2-sanrio::before {
    background: linear-gradient(86deg, #024287 3.28%, #2EAEF6 96.72%);
}

@media screen and (min-width: 500px) {
    .section__h2-sanrio .section__h2-text {
        position: static;
        --font-size: 24px;
    }
}


.section__h3 {
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    justify-content: center;
    align-items: center;
    /* gap: 10px; */
    /* color: var(--color-yellow); */
    padding: 0 var(--paddingLR);
    --font-weight: 500;
    margin-bottom: 8px;
}

/* .section__h3-line {
    height: 1px;
    width: 100%;
    background-color: var(--color-yellow);
} */

.section__h3-text {
    white-space: nowrap;
    font-size: 20px;
}

.section__button {
    position: relative;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    height: fit-content;
    line-height: 1;
    padding: 0 var(--paddingLR);
}

.section__button-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    color: var(--black, #444);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

/* SWIPERS  */
.swiper-shouhin-raking .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--color-gray-lightDDD);
    z-index: 1;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    font-family: var(--font-familyRoboto);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-white);
}

.swiper-shouhin-raking .swiper-slide:nth-child(1):before {
    content: "1";
    background-color: var(--color-yellow);
}

.swiper-shouhin-raking .swiper-slide:nth-child(2):before {
    content: "2";
    background-color: #BACDF2;
}

.swiper-shouhin-raking .swiper-slide:nth-child(3):before {
    content: "3";
    background-color: #C0AA8A;
}

.swiper-shouhin-raking .swiper-slide:nth-child(4):before {
    content: "4";
}

.swiper-shouhin-raking .swiper-slide:nth-child(5):before {
    content: "5";
}

.swiper-shouhin-raking .swiper-slide:nth-child(6):before {
    content: "6";
}

.swiper-shouhin-raking .swiper-slide:nth-child(7):before {
    content: "7";
}

.swiper-shouhin-raking .swiper-slide:nth-child(8):before {
    content: "8";
}

.swiper-shouhin-raking .swiper-slide:nth-child(9):before {
    content: "9";
}

.swiper-shouhin-raking .swiper-slide:nth-child(10):before {
    content: "10";
}

.swiper-shouhin img {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
    border-radius: 8px;
}

.swiper-shouhin .item-name {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    /* Limit to 4 lines */
    line-clamp: 4;
    /* Limit to 4 lines */
    max-height: 4 * 1.2em;
    /* (line height) * (number of lines) */
    text-overflow: ellipsis;
    white-space: normal;
    color: var(--color-gray-dark444);
}

.swiper-shouhin .item-price {
    font-size: 14px;
    color: var(--color-gray-dark444);
    text-align: right;
}

.swiper-button-prev,
.swiper-button-next {
    top: 40% !important;
    height: 34px !important;
    width: 34px !important;
    color: #000;
    border-radius: 50%;
    opacity: .8;
    background: #FFF;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #fac217;
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #000;
    font-size: 10px !important;
    font-weight: 700;
}

.swiper-button-disabled {
    opacity: 0 !important;
}

.service__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-dark444);
    padding: 0 var(--paddingLR);
    width: fit-content;
    margin-left: auto;

}

.service__link-span {
    --font-size: 14px;
    --line-height: 22px;
}

.service__link-img {
    fill: var(--color-yellow);
    color: var(--color-yellow);
    max-width: 14px;
}

.swiper-shouhin,
.swiper-stagecafe {
    padding: 0 var(--paddingLR);
    position: relative;
}

.swiper-stagecafe .swiper-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.swiper-stagecafe .swiper-button-prev,
.swiper-stagecafe .swiper-button-next {
    display: none;
}

.swiper-stagecafe .swiper-slide {
    width: 100%;
}

.title-img-container {
    min-height: 136px;
    overflow: hidden;
    display: flex;
    justify-content: end;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
    width: 100%;
    aspect-ratio: 280 / 125;
}

.title-img {
    height: auto;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 280 / 125;
}

.title-name {
    color: var(--color-gray-dark444);
}

.swiper-fade-right {
    position: absolute;
    right: 0px;
    bottom: -40.714px;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    width: 40px;
    height: 500px;
    z-index: 10;
}

/* .swiper-fade-left {
    position: absolute;
    left: 0px;
    bottom: -40.714px;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    width: 40px;
    height: 500px;
    z-index: 10;
} */


.section-shops {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-dark444);
    width: calc(100% - var(--paddingLR) * 2);
    margin: 0 auto;
}

.section-shops .section__h2 {
    padding: 0;
}

.shop__card {
    display: flex;
    padding-bottom: 16px;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--color-gray-lightEEE);
}

.shop__card:last-of-type {
    border-bottom: none;
}

.shop__card-title {
    font-family: var(--font-family);
    leading-trim: both;
    text-edge: cap;
    --font-weight: 700;
    --line-height: 22px;
    /* 137.5% */
}

.shop__card__contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.shop__card__contents-toggle {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: -1;
    height: 100%;
    max-height: 0;
    transition: all .3s ease-in-out;
}

.toggle-display {
    z-index: 0;
    max-height: 300px;
    transition: all .3s ease-in-out;
}

.shop__card__contents-row,
.shop__card__contents-sns {
    display: flex;
    align-items: start;
    gap: 8px;
    --line-height: 22px;
    --font-size: 13px;
    width: 100%;
}

.shop__card__contents-row p {
    position: relative;
    top: -4px;
}

.shop__card__contents-phone {
    align-items: center;
}

.shop__contents-toggle {
    display: flex;
    opacity: 0;
    position: relative;
    top: -50px;
    transition: all .3s ease-in-out;
}

.toggle-transition {
    opacity: 1;
    top: 0px;
    transition: all .3s ease-in-out;
}

.shop__card__contents-phone p {
    position: static;
}

.shop__card-icon {
    max-width: 16px;
    --line-height: 1;
}

.contents-snsmap {
    position: relative;
}

.shop__card__contents-sns {
    position: absolute;
    align-items: center;
    justify-content: end;
    gap: 8px;
    right: 0;
    top: -60px;
    width: fit-content;
}

.shop__card__contents-time {
    flex-wrap: wrap;
}

.shop__card__contents-time .shop__card__contents-sns {
    position: static;
    width: 100%;
    justify-content: start;
}

.shop__card__contents-map {
    width: 100%;
    max-height: 200px;
}

.shop__card-button {
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.shop__card-button-text {
    color: var(--color-gray-dark444);
}

.shop__card-button-icon {
    max-width: 12px;
    transition: .3s ease-in-out;
}

.shop__card-button-icon.rotate {
    transform: rotate(180deg);
    transition: .3s ease-in-out;
}

@media only screen and (min-width: 428px) {
    .title-img-container {
        align-items: end;
    }

    .shop__card__contents-time .shop__card__contents-sns {
        flex: 1;
        width: auto;
        justify-content: end;
    }
}

@media only screen and (min-width: 768px) {
    :root {
        --spacing-between-sections: 80px;
    }

    .news__list-ul {
        padding: 0;
    }

    .section__h2 {
        margin-bottom: 24px;
        padding: 0;
    }

    .section__h3 {
        grid-template-columns: min-content 1fr min-content;
        padding: 0;
    }

    .section__button {
        max-width: 354px;
        padding: 0;
        margin-top: 32px;
    }

    .section-news {
        padding-right: var(--paddingLR);
    }

    .section-list,
    .section-service {
        padding-right: var(--paddingLR);
    }

    .section-list {
        gap: 0;
    }

    .section__h2::before {
        width: calc(100% - 40px);
    }

    .section__h2-shops {
        margin-bottom: 8px;
    }

    .service__link {
        padding: 0;
    }

    .swiper-shouhin,
    .swiper-stagecafe {
        padding-left: 0;
        padding-right: var(--paddingLR);
    }

    .swiper-stagecafe .swiper-wrapper {
        flex-direction: row;
        justify-content: start;
        gap: 0;
    }

    .swiper-stagecafe .swiper-button-prev,
    .swiper-stagecafe .swiper-button-next {
        display: flex;
    }

    .title-img {
        height: 100%;
    }

    .title-img-container {
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 1020px) {
    .list__ul {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        padding: 0 25px;
        margin: 0;
    }

    .section-shops {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 24px;
        gap: 24px;
        column-gap: 40px;
        width: calc(100% - var(--paddingLR));
        margin-left: 0;
    }

    .section-shops .section__h2 {
        grid-area: 1 / 1 / 2 / 3;
    }

    .section-shops .shop__card:nth-of-type(1) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .section-shops .shop__card:nth-of-type(2) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .section-shops .shop__card:nth-of-type(3) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .section-shops .shop__card:nth-of-type(4) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .section-shops .shop__card:nth-of-type(5) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .shop__card:last-of-type {
        border-bottom: 1px solid var(--color-gray-lightEEE);
    }
}