@charset "UTF-8";

/* CSS変数定義 */
:root {
    --z-header: 999;
    --z-modal: 1000;
    --z-popup: 1001;
    --z-tooltip: 1002;
}

/* ヘッダー・ナビゲーション用のスタイル */
.c-header {
    background: #231815;
    min-height: 80px;
    transition: all 0.3s;
    padding: 0 10px;
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: var(--z-header);
}

.c-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6875rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-header__logo img {
    height: 50px;
    transition: all 0.3s;
}

.c-header__toggle {
    box-shadow: none !important;
    padding: 0 !important;
    background: none;
    border: none;
    position: relative;
    width: 1.5em;
    height: 1.1em;
}

.c-header__toggleLine {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.2s ease-out;
    position: absolute;
}

.c-header__toggleLine:nth-child(1) {
    top: 0;
}

.c-header__toggleLine:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.c-header__toggleLine:nth-child(3) {
    bottom: 0;
}

.c-header__toggle:not(.collapsed) .c-header__toggleLine:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.c-header__toggle:not(.collapsed) .c-header__toggleLine:nth-child(2) {
    opacity: 0;
}

.c-header__toggle:not(.collapsed) .c-header__toggleLine:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.c-header__nav {
    background: #231815;
    color: #fff;
    transition: all 0.3s;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 80px;
    left: auto;
    right: 0;
    z-index: var(--z-popup);
}

.c-header__nav.show {
    display: block;
}

.c-header__navList {
    min-width: 300px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: calc(100vh - 80px);
}

.c-header__navItem {
    border-top: 1px solid #616161;
}

.c-header__navLink,
.c-header__navBtn {
    padding: 1em;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.c-header__navLink::after {
    content: "▶";
    display: inline;
    color: #616161;
    transition: all 0.2s;
}

.c-header__navLink:hover,
.c-header__navBtn:hover {
    background-color: #616161;
    color: #fff;
}

.c-header__navLink:hover::after {
    color: #fff;
}

.c-header__navItem--auth {
    border-bottom: 1px solid #616161;
}

.c-header__navBtn--login {
    background: #dc6751;
}

.c-header__navBtn--logout {
    background: #bf0f2c;
}

/* フッター用のスタイル */
.c-footer {
    background: #231815;
    color: #fff;
    padding: 35px 25px;
}

.c-footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.c-footer__links {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding-left: 0;
    margin: 0;
}

.c-footer__linkItem {
    margin: 0;
}

.c-footer__link {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.c-footer__link:hover {
    color: #25a0da;
    text-decoration: underline;
}

.c-footer__copyright {
    display: block;
    text-align: center;
    font-size: 10px;
    padding: 30px 0;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 767.98px) {
    .c-header {
        min-height: 60px;
        padding: 0 3%;
    }

    .c-header__logo img {
        height: 30px;
    }

    .c-header__container {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .c-header__nav {
        top: 60px;
        width: 100%;
        overflow-y: auto;
    }

    .c-header__navList {
        min-width: 50vw;
        height: calc(100vh - 60px);
    }

    .c-footer__links {
        list-style-type: none;
        display: block;
        padding-left: 0;
    }

    /* モバイル時のメインコンテンツパディング調整 */
    .l-main {
        padding-top: 40px;
    }
}

*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
    all: unset;
    display: revert;
}

/* 固定ヘッダー対応 - メインコンテンツのパディング */
.l-main {
    padding-top: 60px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
}

table {
    border-collapse: collapse;
}

textarea {
    white-space: revert;
}

/* ================
	@include var.fontDefault(400);
	フォント固有の設定を引き継げるmixin
	引数はfont-weight
================ */
* {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

html {
    scroll-behavior: smooth;
}
html::-webkit-scrollbar {
    display: none;
}
html.is-fixed {
    overflow: hidden;
}

body {
    background: #f5f5f5;
    color: #231816;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    width: 100vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: 15px;
}

img {
    border-style: none;
    height: auto;
    vertical-align: bottom;
    max-width: 100%;
}
img [data-objectfit="cover"] {
    -o-object-fit: cover;
    object-fit: cover;
}

a,
button {
    text-decoration: none;
    transition: all 0.25s ease;
}
a:hover,
a:active,
button:hover,
button:active {
    outline-width: 0;
    cursor: pointer;
}

@media screen and (min-width: 1024px) {
    a[href*="tel:"] {
        cursor: default;
        pointer-events: none;
        text-decoration: none;
    }
}
.l-container {
    padding: 20px 0 0;
    width: 100%;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
    .l-container {
        max-width: 87.8477306003vw;
    }
}
@media screen and (min-width: 1366px) {
    .l-container {
        max-width: 1200px;
    }
}

.l-item__link {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.l-item__link:hover .l-item__thumbnail img {
    opacity: 0.8;
}
.l-item__thumbnail {
    border: 1px solid #efefef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 275/183;
    margin: 0 auto 10px;
}
.l-item__thumbnail img {
    width: 100%;
    transition: all 0.25s ease;
}
.l-item__new {
    background: #cb2000;
    border: 2px solid #ffffff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
}
.l-item__title {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.l-item__detail {
    margin-top: 12px;
}
.l-itemDetail__btn {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .l-itemDetail__btn {
        display: none;
    }
}
.l-itemDetail__btn:before {
    content: "詳細";
    font-size: 15px;
    line-height: 1;
    transition: 0.3s;
}
.l-itemDetail__btn:after {
    background: transparent url(../img/common/icon_plus.svg) no-repeat center;
    background-size: contain;
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
}
.l-itemDetail__btn.is-open:before {
    content: "とじる";
}
.l-itemDetail__btn.is-open:after {
    background: transparent url(../img/common/icon_minus.svg) no-repeat center;
    background-size: contain;
}
.l-itemDetail__paragraph {
    display: none;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 150%;
}
@media screen and (min-width: 1024px) {
    .l-itemDetail__paragraph {
        display: block !important;
    }
}
.l-item__nothing {
    background: #f3f3f3;
    border-radius: 20px;
    padding: 20px 0;
    display: none;
}
@media screen and (min-width: 1024px) {
    .l-item__nothing {
        padding: 40px 0;
    }
}
.l-itemNothing__paragraph {
    color: #6e6e6e;
    text-align: center;
}

.l-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
@media screen and (min-width: 1024px) {
    .l-slider__controls {
        display: none;
    }
}
.l-sliderControls__prev {
    background: #ffe39c;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    position: absolute;
    top: 25%;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.l-sliderControls__prev:before {
    background: transparent url(../img/common/icon_chevron-l.svg) no-repeat
        center;
    background-size: contain;
    content: "";
    width: 24px;
    height: 24px;
}
.l-sliderControls__next {
    background: #ffe39c;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    position: absolute;
    top: 25%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.l-sliderControls__next:before {
    background: transparent url(../img/common/icon_chevron-r.svg) no-repeat
        center;
    background-size: contain;
    content: "";
    width: 24px;
    height: 24px;
}
.l-sliderControls__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.l-sliderControls__pagination .swiper-pagination-bullet {
    background: #ffffff;
    border-radius: 2px;
    display: block;
    width: 40px;
    height: 4px;
    opacity: 1;
}
.l-sliderControls__pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #cb2000;
}

.swiper .swiper-slide {
    height: auto;
}

.swiper .swiper-slide-item {
    height: 100%;
}

@media screen and (min-width: 1024px) {
    .c-br.-sp {
        display: none;
    }
}
.c-br.-pc {
    display: none;
}
@media screen and (min-width: 1024px) {
    .c-br.-pc {
        display: inline-block;
    }
}

.c-btn {
    border-radius: 9999px;
    position: relative;
    margin: 0 auto;
}
.c-btn.-start {
    background: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: block;
    width: 148px;
    height: 36px;
    padding: 6px 20px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.c-btn.-start:after {
    background: transparent url(../img/common/icon_play.svg) no-repeat center;
    background-size: contain;
    border-radius: 50%;
    content: "";
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
.c-btn.-start .c-btn__text {
    color: #cb2000;
    font-size: 12px;
    font-weight: 700;
}
.c-btn.-primary {
    background: #cb2000;
    border: 2px solid transparent;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.c-btn.-primary .c-btn__text {
    color: #ffffff;
}
.c-btn.-primary:hover {
    background: #ffffff;
    border: 2px solid #cb2000;
}
.c-btn.-primary:hover .c-btn__text {
    color: #cb2000;
}
.c-btn.-secondary {
    background: #ffffff;
    border: 2px solid #cb2000;
}
.c-btn.-secondary .c-btn__text {
    color: #cb2000;
}
.c-btn.-secondary:hover {
    background: #cb2000;
}
.c-btn.-secondary:hover .c-btn__text {
    color: #ffffff;
}

/* ミッション関連ボタン拡張 */
.c-btn.-mission {
    font-weight: 700;
    padding: 10px 0;
    width: 100%;
    height: 60px;
}

.c-btn.-reward {
    padding: 12px 35px 14px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .c-btn.-reward {
        padding: 12px 25px 14px;
    }
}

.c-heading {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
@media screen and (min-width: 1024px) {
    .c-heading {
        margin-bottom: 30px;
        font-size: 32px;
    }
}

.c-tag {
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px 4px;
    font-size: 14px;
    font-weight: 400;
}
.c-tag.-blue {
    background: #abd6fc;
}
.c-tag.-green {
    background: #89dcbf;
}
.c-tag.-pink {
    background: #ffc9c9;
}
.c-tag.-yellow {
    background: #f6eb84;
}
.c-tag__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
