@charset "utf-8";

/* エリア背景色 */
#m-area01 > div {
    margin: 2em auto 0;
    background: rgba(252, 252, 252, 1);
}

#m-area02 > div {
    margin: 2em auto 0;
    background: rgba(217, 250, 250, .8);
    background: rgba(252, 252, 252, 1);
}

#m-area03 {
    margin: 2em auto 0;
    background: #ffc7d7;
}

#m-area04 > div {
    margin: 2em auto 0;
    background: rgba(252, 252, 252, 1);
}

#m-area05 > div {
    margin: 2em auto 0;
    background: rgba(252, 252, 252, 1);
}

.flex {
    display: flex;
}

/* スライドショー */
.hero-area {
    margin: 0 auto -1em;
    width: 100%;
}

.slider-block {
    margin: 0 auto;
    width: min(100%, 1200px);
    width: 100%;
}

.slick-active::before {
    display: none;
}

.slider-item img {
    margin: 0 auto;
    width: 100%;
}

.slide-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 99;
    justify-content: center;
    align-items: center;
    width: 20px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, .3));
    transform: translateY(-50%);
    cursor: pointer;
}

.prev-arrow {
    left: .5vw;
}

.next-arrow {
    right: .5vw;
}

@media screen and (min-width: 801px) {
    .slide-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        z-index: 999;
        justify-content: center;
        align-items: center;
        width: 45px;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .prev-arrow {
        left: 17.7vw;
        padding-left: 5px;
    }

    .next-arrow {
        right: 17.7vw;
        padding-right: 5px;
    }

    .hero-area {
        margin: 0 auto;
    }

    .slider-item img {
        margin: 0 auto;
        width: calc(100% - 24px);
    }
}

/* ニュース一覧 */
.newslist-block {
    display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;

    grid-template-columns: 1fr 1fr;
    gap: 1em 4%;
}

.news-box {
    flex-grow: 1;
    margin: 0 auto;
    border-radius: .35em;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(207, 193, 197, .3);
    transition: 1.5s ease-out;
}

.news-box:nth-child(n + 5) {
    display: none;
}

@media screen and (min-width: 801px) {
    .newslist-block {
        display: grid;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;

        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5em 2%;
    }

    .news-box:nth-child(n + 5) {
        display: block;
    }

    .news-box:nth-child(n + 7) {
        display: none;
    }
}

.news-photo {
    overflow: hidden;
    margin: 0 auto;
    width: min(100%, 600px);
    height: auto;
    border-top-left-radius: .35em;
    border-top-right-radius: .35em;
}

.news-photo img {
    position: relative;
    width: 100%;
    border-top-left-radius: .35em;
    border-top-right-radius: .35em;
    transition: .5s;

    aspect-ratio: 1 / 1;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-box:hover .news-photo img {
    animation: zoom-photo 1s;
}

.news-info {
    position: relative;
    margin: 0 auto;
    padding: .45em .75em;
    width: min(100%, 400px);
    height: 6.5em;
    font-size: clamp(14px, .696rem + .57vw, 18px);
    line-height: 1;
}

.jump .news-info:after {
    display: block;
    position: absolute;
    bottom: .3em;
    right: .6em;
    content: "";
    width: .95em;
    height: .95em;
    background: url("/import/images/jump.svg");
    background-size: .95em;
    background-repeat: no-repeat;
}

.list-news-update {
    position: relative;
    padding: .25em 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    color: #545454;
    vertical-align: middle;

    user-select: none;
}

.list-news-category {
    position: relative;
    margin-left: auto;
    padding: .25em 0;
    width: 4.5em;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;

    user-select: none;
}

.list-news-title {
    display: -webkit-box;
    overflow: hidden;
    margin: 6px 0 0;
    font-size: clamp(14px, .696rem + .57vw, 18px);
    line-height: 1.3;
    font-weight: 500;
    color: #464646;
    text-align: left;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    user-select: none;
}

@media screen and (min-width: 801px) {
    .list-news-update {
        font-size: 15px;
    }

    .list-news-category {
        font-size: 15px;
    }
}

/* カレンダー */
.calendar-block {
    margin: 0 auto;
}

/* twitter */
.tw-box {
    margin: -1em auto 0;
    padding: 0;
    max-width: 900px;
}

.twitter-timeline {
    margin: 0 auto;
    background: #ffffff;
}

@media screen and (min-width: 801px) {
    .tw-box {
        margin: -1em auto 0;
        padding: 0 1em;
        max-width: 900px;
    }
}

/* HISTORY */
.history-area {
    display: block;
    overflow: hidden;
    padding: 0 1em 2em;
    min-height: 400px;
    width: 100%;
}

.history-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 300px;
    text-align: center;

    gap: .2em 1px;
}

.history-block li {
    position: relative;
    margin: 0 auto;
    width: 24%;
    text-align: center;
}

.rv-card {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fdf3f5;
    box-shadow: 0 14px 16px -10px rgba(0, 0, 0, 5%);
    color: inherit;
    text-decoration: none;
    transition: 1.2s ease-in-out;

    transform-style: preserve-3d;
    user-select: none;
}

.front-card,
.back-card {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.front-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.back-card {
    background: #fdf3f5;
    transform: rotateY(180deg);
}

.front-inner,
.back-inner {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.front-inner {
    border-radius: 50%;
    font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
    line-height: 1;
    font-weight: 500;
    color: #d6225b;
    text-align: center;
    transform: translate(-50%, -50%);
}

.back-inner {
    border-radius: 50%;
    text-align: center;
}

.back-inner img {
    transform: scale(1.4);
}

@media screen and (min-width: 801px) {
    .history-area {
        padding: 0 0 3em;
    }

    .history-block {
        max-width: 600px;

        gap: 1em;
    }

    .history-block li {
        width: 17.5%;
    }

    .rv-card {
        display: block;
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #fdf3f5;
        box-shadow: 0 14px 16px -10px rgba(0, 0, 0, 5%);
        color: inherit;
        text-decoration: none;
        transition: 1.2s ease-in-out;

        transform-style: preserve-3d;
        user-select: none;
    }
}

/* プリティストア */
.store-block {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;

    grid-template-columns: 1fr 1fr;
    gap: 1.5em 1.5em;
}

.store-info {
    display: block;
    margin-top: .5em;
    width: 100%;
}

.shop-place {
    display: inline-block;
    padding: .5em 1em;
    background: #000000;
    font-size: clamp(12px, .571rem + .57vw, 16px);
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

.shop-name {
    padding: .3em 0;
    font-size: clamp(14px, .696rem + .57vw, 18px);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #ed467c;
    color: #000000;
}

@media screen and (min-width: 801px) {
    .store-block {
        margin: 0 auto;
        padding: 0;

        gap: 1.5em 1.5em;
    }

    .store-box a {
        display: flex;
    }

    .store-photo {
        overflow: hidden;
        max-width: 300px;
        width: 70%;
    }

    .store-info {
        margin-top: 0;
        padding-left: 1em;
    }

    .shop-name {
        padding: .2em 0;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 400;
        color: #ed467c;
        color: #000000;
    }

    .rv-card:hover {
        transform: rotateY(180deg);
    }
}

@media screen and (min-width: 801px) {
    .store-block {
        margin: 0 auto;
        padding: 0;
    }

}
