@charset "utf-8";

:root {
    --color-black: #1F1D1B;
    --color-red: #E60012;
}

html {
    font-size: 62.5%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.anniversary {
    background: url(../images/bg-logo.png), url(../images/bg-main.png);
    background-repeat: no-repeat;
    background-size: contain cover;
    color: var(--color-black);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
}

.anniversary::before {
    background: url(../images/bg-logo.png), url(../images/bg-main.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(34.7vw, 50rem), cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

.inner {
    max-width: 100rem;
    margin-inline: auto auto;
    padding-inline: 2rem 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.section-title img {
    margin-bottom: 3rem;
}

.asterisk {
    margin-left: 1em;
    text-indent: -1em;
}

.asterisk::before {
    content: '※';
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .anniversary::before {
        background-size: 60vw, cover;
    }

    .section-title {
        font-size: 4.8vw;
    }

    .section-title img {
        margin-bottom: 5.33vw;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* 最初のアニメーション部分 */
.logo-animate {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 1s;
    z-index: 101;

}

.logo-animate.logo-fadeout {
    opacity: 0;
}

.logo-animate.logo-display-none {
    display: none;
}

.logo-animate__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: min(18%, 26.4rem);
}

.logo-animate__img.logo-fadein {
    opacity: 1;
    transition: all 1s;
}


@media screen and (max-width: 767px) {
    .logo-animate__img {
        width: 60vw;
    }
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.header .header__logo {
    box-sizing: border-box;
    padding: 4rem;
    width: 16rem;
}

.header .menu__outer {
    position: fixed;
    top: 0;
    right: 0;
}

.header .menu {
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin: 3rem 4rem;
    padding: 1rem 2rem 2rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.header .menu::before,
.header .menu::after {
    background-color: var(--color-black);
    content: '';
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 0;
    transition: all 0.8s;
    height: 0.1rem;
    width: 4rem;
}

.header .menu::after {
    top: 2rem;
}

.header .menu__outer.open .menu::before {
    transform: rotate(45deg);
    top: 1.5rem;
}

.header .menu__outer.open .menu::after {
    transform: rotate(-45deg);
    top: 1.5rem;
}

.header .header__nav {
    background-color: #fff;
    border: 1px solid var(--color-red);
    display: none;
    filter: drop-shadow(0 0 4.267rem #DACFCA);
    opacity: 0;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    position: relative;
    top: -4rem;
}

.header .menu__outer.open .header__nav {
    display: block;
    opacity: 1;
    max-height: unset;
    overflow-y: scroll;
    padding: 10.9rem 4rem 8rem;
    max-height: 100vh;
}

.header .header__nav-img {
    width: auto;
    height: 2.8rem;
    margin-bottom: 1.5rem;
}

.header .header__nav-img--big {
    height: 4.5rem;
}

.header .header__nav-list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

.header .header__nav-link {
    color: var(--color-black);
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .header .header__logo {
        padding: 4vw;
        width: 24vw;
    }

    .header .menu__outer.open .header__nav {
        max-height: 100%;
    }

    .header .header__nav-link {
        font-size: 3.73vw;
    }
}

.main {
    margin-top: -8rem;
}

@media screen and (max-width: 767px) {
    .main {
        margin-top: 10vw;
    }
}

/* kv */
.kv {
    position: relative;
    height: min(55.56vw, 80rem);
}

.kv .kv__img {
    aspect-ratio: 1;
    filter: drop-shadow(0 0 4.267rem #DACFCA);
    margin-inline: auto auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(55.56vw, 80rem);

    z-index: 10;
}

.kv .kv-swiper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.kv .swiper-wrapper {
    transition-timing-function: linear;
}

.kv .swiper-slide img {
    overflow: hidden;
}


@media screen and (max-width: 767px) {
    .kv {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .kv .kv__img {
        order: 1;
        margin-inline: auto auto;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        width: calc(100% - 4rem);
    }

    .kv .kv-swiper {
        order: 2;
        position: relative;
        top: unset;
        transform: unset;
        margin-top: 10.67vw;
    }
}


/* message */
.message {
    margin-top: 18rem;
}

@media screen and (max-width: 767px) {
    .message {
        margin-top: 21.33vw;
    }
}

/* news */
.news {
    margin-top: 20rem;
}

.news .section-title {
    width: 17.9rem;
}

.news .news__content {
    background-color: #fff;
    margin-top: 4rem;
    padding: 2.4rem 4rem;
}

.news .umj-feed {
    max-width: 100%;
}

.news .umj-feed .umj-feed-items .umj-feed-item,
.news .umj-feed .umj-feed-items .umj-feed-item:first-child {
    border: unset;
    display: flex;
    padding-block: 2.4rem 2.4rem;
}

.news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-title,
.news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-desc {
    color: var(--color-black);
    flex: unset;
}

@media (hover: hover) {

    .news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-title:hover,
    .news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-desc:hover {
        text-decoration: underline;
    }
}

.news .umj-feed .umj-feed-items .umj-feed-item-info {
    column-gap: 2.4rem;
    flex-wrap: nowrap;
    font-size: 1.6rem;
    font-weight: 700;
}

.news .umj-feed-item-date {
    order: 1;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

.news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-title,
.news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-desc {
    order: 2;
}

.news .news__dec {
    margin-top: 10rem;
}


@media screen and (max-width: 767px) {
    .news {
        margin-top: 21.33vw;
    }

    .news .section-title {
        text-align: center;
        margin-inline: auto auto;
        width: 40vw;
    }

    .news .news__content {
        margin-top: 10.67vw;
        padding-inline: 2rem 2rem;
    }

    .news .news__dec {
        margin-top: 21.33vw;
    }

    .news .umj-feed .umj-feed-items .umj-feed-item-info {
        flex-direction: column;
        font-size: 4.27vw;
    }

    .news .umj-feed-item-date {
        font-size: 3.73vw;
    }

    .news .umj-feed .umj-feed-items .umj-feed-item,
    .umj-feed .umj-feed-items .umj-feed-item:first-child {
        padding-block: 3.2vw 3.2vw;
    }

    .news .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-title,
    .umj-feed .umj-feed-items .umj-feed-item-info .umj-feed-item-desc {
        font-size: 3.73vw;
    }
}

/* release */
.release {
    margin-top: 10rem;
}

.release .section-title {
    text-align: center;
    margin-inline: auto auto;
    width: min(24.5%, 24.5rem);
}

.release .release__content {
    background-color: #fff;
    margin-top: 4rem;
    padding: 4rem;
}

.release .release__content-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    line-height: 2;
}

.release .release__content-title-note {
    font-size: 1.4rem;
    text-align: center;
    line-height: 2;
    margin-top: 0.4rem;
}

.release .release__list {
    display: flex;
    column-gap: 4%;
    margin-top: 4rem;
}

.release .release__item {
    text-align: center;
    width: 48%;
}

.release .release__item-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    margin-top: 2.4rem;
}

.release .release__item-text {
    font-size: 1.4rem;
    line-height: 2;
}

.release .release__item-info {
    background-color: var(--color-red);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    margin-top: 4rem;
}

.release .release__item-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
    margin-top: 4rem;
}

.release .release__item-info-item {
    font-size: 1.6rem;
    font-weight: 700;
    margin-left: 1em;
    text-indent: -1em;
}

.release .release__item-info-item::before {
    background-color: var(--color-red);
    content: '';
    display: inline-block;
    transform: rotate(45deg);
    margin-right: 1rem;
    height: 0.5em;
    width: 0.5em;
}

.release .release__item-info-item-note {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5em;
}

.release .release__item-info-text {
    font-size: 1.6rem;
    margin-top: 4rem;
}

.release .release__note-list {
    display: block;
    margin-top: 4rem;
    margin-inline: auto 0;
    width: fit-content;
}

.release .release__note-item {
    font-size: 1.4rem;
}

.release .release__dec {
    margin-top: 10rem;
}

@media screen and (max-width: 767px) {
    .release {
        margin-top: 21.33vw;
    }

    .release .section-title {
        width: 60vw;
    }

    .release .release__content {
        margin-top: 10.67vw;
        padding: 7.33vw 2rem;
    }

    .release .release__content-title {
        font-size: 4.67vw;
        line-height: 1.6;
    }

    .release .release__content-title-note {
        font-size: 3.2vw;
        line-height: 1.6;
        text-align: left;
        margin-top: 2.33vw;
    }

    .release .release__list {
        margin-top: 5.33vw;
    }

    .release .release__item-title {
        font-size: 4.27vw;
        line-height: 1.3;
        margin-top: 2.67vw;
    }

    .release .release__item-text {
        font-size: 3.2vw;
        line-height: 1.4;
        margin-top: 0.5em;
    }

    .release .release__item-info {
        font-size: 4.27vw;
        margin-top: 10.67vw;
    }

    .release .release__item-info-list {
        grid-template-columns: 1fr;
        row-gap: 5.33vw;
        margin-top: 8vw;
    }

    .release .release__item-info-item {
        font-size: 4.27vw;
        line-height: 1.3;
        margin-left: 1.5em;
    }

    .release .release__item-info-item-note {
        font-size: 3.47vw;
        margin-top: 0.5em;
    }

    .release .release__item-info-text {
        font-size: 4.27vw;
        margin-top: 8vw;
        margin-left: 0.5em;
    }

    .release .release__note-list {
        margin-top: 8vw;
    }

    .release .release__dec {
        margin-top: 21.33vw;
    }
}

/* campaign */
.campaign {
    margin-top: 10rem;
}

.campaign .section-title {
    width: min(33%, 33.8rem);
}

.campaign .section-title img {
    margin-bottom: 1rem;
}

.campaign .campaign__content {
    background-color: #fff;
    font-size: 1.8rem;
    margin-top: 4rem;
    padding: 4rem;
    width: 100%;
}

.campaign .campaign__dec {
    margin-top: 10rem;
}

@media screen and (max-width: 767px) {
    .campaign {
        margin-top: 21.33vw;
    }

    .section-title {
        text-align: center;
        margin-inline: auto auto;
        width: 60vw;
    }

    .campaign__content {
        margin-top: 10.67vw;
    }

    .campaign__dec {
        margin-top: 21.33vw;
    }
}

/* live */
.live {
    margin-top: 10rem;
}

.live .section-title {
    text-align: center;
    margin-inline: auto auto;
    width: min(14.5%, 14.8rem);
}

.live .live__content {
    background-color: #fff;
}

.live .live__title {
    background-color: var(--color-red);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    margin-top: 4rem;
}

.live .live__list {
    display: flex;
    column-gap: 2%;
    padding: 2.4rem 4rem 0;
}

.live .live__item {
    display: flex;
    align-items: center;
    column-gap: 1.6rem;
    width: 32%;
}

.live .live__pref {
    border: 1px solid var(--color-red);
    border-radius: 50%;
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    height: 7rem;
    width: 7rem;
}

.live .live__date {
    font-family: "Jost", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
}

.live .live__day {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.live .live__place {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1rem;
}

.live .live__note {
    text-align: right;
    font-size: 1.4rem;
    padding: 2.4rem 4rem;
}

.live .live__dec {
    margin-top: 10rem;
}

@media screen and (max-width: 767px) {
    .live {
        margin-top: 21.33vw;
    }

    .live .section-title {
        width: 30vw;
    }

    .live .live__title {
        font-size: 4.27vw;
        margin-top: 10.67vw;
    }

    .live .live__list {
        flex-direction: column;
        row-gap: 4vw;
        padding: 2rem;
    }

    .live .live__item {
        column-gap: 5%;
        width: 100%;
    }

    .live .live__pref {
        font-size: 3.73vw;
        height: 18.67vw;
        width: 18.67vw;
    }

    .live .live__date {
        font-size: 6.4vw;
    }

    .live .live__place {
        font-size: 3.73vw;
    }

    .live .live__day {
        font-size: 4.27vw;
    }

    .live .live__note {
        font-size: 3.73vw;
        padding-block: 0 6.4vw;
    }

    .live .live__dec {
        margin-top: 21.33vw;
    }
}

/* special contents */
.special {
    margin-top: 10rem;
}

.special .section-title {
    text-align: center;
    margin-inline: auto auto;
    width: min(57%, 59rem);
}

.special .section-title img {
    margin-bottom: 1rem;
}

.special .special__content {
    background-color: #fff;
    margin-top: 4rem;
    padding: 4rem;
}

.special .special__list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 1%;
    flex-wrap: wrap;
    row-gap: 2.4rem;
}

.special .special__item {
    text-align: center;
    width: calc((100% / 3) - 2%);
}

.special .special__item-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0.4rem;
}

.special .special__item-img {
    aspect-ratio: 1;
    width: 100%;
}

@media (hover: hover) {
    .special .special__item-link:hover {
        opacity: 0.7;
    }
}

.special .special__dec {
    margin-top: 19.4rem;
}

@media screen and (max-width: 767px) {
    .special {
        margin-top: 21.33vw;
    }

    .section-title {
        width: 80vw;
    }

    .special__content {
        margin-top: 10.67vw;
        padding: 5.33vw 2rem;
    }

    .special__list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
        row-gap: 6.4vw;
    }

    .special__item {
        width: calc(100% / 2 - 5%);
    }

    .special__item-title {
        font-size: 3.73vw;
    }

    .special__dec {
        margin-top: 21.33vw;
    }
}

/* store */
.store {
    margin-top: 10rem;
}

@media screen and (max-width: 767px) {
    .store {
        margin-top: 21.33vw;
    }
}

/* footer */
.footer {
    min-height: 100vh;
    margin-top: 19.5rem;
    position: relative;
}

.footer .footer__logo {
    margin-inline: auto auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(34.7vw, 50rem);
}

.footer .footer__text {
    font-size: 1.2rem;
    padding-left: 8rem;
    position: absolute;
    bottom: 4rem;
    left: 0;
}

.footer .policy__links a {
    color: var(--color-black);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
}

@media (hover: hover) {
    .footer .policy__links a:hover {
        text-decoration: underline;
    }
}

.footer .copywrite {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .footer {
        margin-top: 21.33vw;
    }

    .footer .footer__logo {
        width: 60vw;
    }

    .footer .footer__text {
        bottom: 5.33vw;
        font-size: 3.2vw;
        padding-inline: 5.33vw;
    }

    .footer .copywrite {
        margin-top: 2.67vw;
    }
}