/* ==========================================================================
   shop styles
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
body * {
    font-family: 'Noto Sans JP', sans-serif;
}

:root {
    --gray002: 34 34 34 / 0.02;
    --gray004: 34 34 34 / 0.04;
    --gray008: 34 34 34 / 0.08;
    --gray010: 34 34 34 / 0.1;
    --gray012: 34 34 34 / 0.12;
    --gray016: 34 34 34 / 0.16;
    --gray020: 34 34 34 / 0.2;
    --gray040: 34 34 34 / 0.4;
    --gray060: 34 34 34 / 0.6;
    --gray080: 34 34 34 / 0.8;
    --black045: 0 0 0 / 0.45;
    --black068: 0 0 0 / 0.68;
    --black093: 0 0 0 / 0.93;
    --black093: 0 0 0 / 0.93;
    --point: #b08623;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
ul {
    padding-left: 0;
}
ul li {
    list-style-type: none;
}
.gnavi.top::after {
    opacity: 1;
}

.list-decimal {
    list-style-type: decimal;
}
.list-kome li {
    margin-left: 1em;
    margin-top: 0.25em;
    list-style: none;
    text-indent: -1em;
}
.list-kome li::before {
    content: '※';
}

#container {
    padding-top: 0;
}

.content {
    background: rgb(var(--gray010));
}

.content h2,
.content h3,
.content h4 {
    font-size: inherit;
    font-weight: bold;
    margin-bottom: .5em;
}

.content img {
    max-width: 100%;
    display: inline-block;
}

.content .contentInner {
    width: 100%;
    padding-top: 4em;
    padding-bottom: 4em;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content .userInfo {
    display: flex;
    justify-content: flex-end;
    gap: 2em;
}
.content .userInfo .infoKaimo,
.content .userInfo .infoWallet {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 0.85em;
}
.content .userInfo .infoKaimo img {
    display: inline-block;
    max-width: 1.7em;
    margin-right: 0.5em;
}
.content .userInfo .infoBtn.infoBtn--charge,
.content .userInfo .infoBtn.infoBtn--login {
    padding: 2px 7px;
    color: rgb(var(--gray060));
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 0.5em;
    border: 1px solid rgb(var(--gray060));
    border-radius: 5em;
    background: transparent;
}
.content .userInfo .infoBtn.infoBtn--login {
    color: #fff;
    border: none;
    background: #ffc412;
}
.content .userInfo .infoWallet {
    position: relative;
}
.content .userInfo .infoWallet::before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    left: -1em;
    width: 1px;
    height: 1em;
    background: rgb(var(--gray040));
    vertical-align: middle;
}

.content .goodsBtn {
    display: block;
    width: 100%;
    height: 48px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: 600;
    border-radius: 2px;
    background: #7981e1;
    opacity: 0.9;
}
.content .goodsBtn:disabled {
    color: #eee;
    background: #999;
    opacity: 0.9;
    cursor: default;
}
.content .goodsBtn:not(:disabled):hover {
    opacity: 1;
}
.content a.goodsBtn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content .goodsBtn--line {
    color: #7981e1;
    background: #fff;
    border: 1px solid #7981e1;
}

.content .mainArea .mainHeader {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 0.75em;
}
.content .mainArea .mainHeader img {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.content .mainArea .mainHeader .mainHeaderContent {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 5px #000;
}
.content .mainArea .mainHeader .mainHeaderTitle {
    font-size: 2em;
    font-weight: bold;
}
.content .mainArea .mainHeader .mainHeaderText {
    color: #fff;
}

.content .mainUserInfo {
    margin-top: 2em;
}

.content .mainArea .mainItemList {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2em;
}
.content .mainArea .mainItemList .mainItem {
    position: relative;
    width: calc((100% - 3rem) / 4);
    background: #fff;
    border-radius: 0.75em;
    overflow: hidden;
    text-align: center;
}
.content .mainArea .mainItemList .mainItem .mainItemCover,
.content .mainArea .mainItemList .mainItem .mainItemCover img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.content .mainArea .mainItemList .mainItem .mainItemCover {
    display: none;
}
.content .mainArea .mainItemList .mainItem:hover .mainItemCover {
    display: block;
}
.content .mainArea .mainItemList .mainItem .mainItemCover img {
    object-fit: cover;
    object-position: center;
}
.content .mainArea .mainItemList .mainItem .mainItemCoverInner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 1.5em;
    display: grid;
}
.content .mainArea .mainItemList .mainItem .mainItemCoverTitle,
.content .mainArea .mainItemList .mainItem .mainItemCoverBtn {
    flex: 1;
    align-self: flex-end;
}
.content .mainArea .mainItemList .mainItem .mainItemCoverTitle {
    color: #fff;
    font-size: 1.15em;
}
.content .mainArea .mainItemList .mainItem .mainItemCoverBtn {
    color: #fff;
    padding: 0.5em;
    border-radius: 5em;
    background: var(--point);
}
.content .mainArea .mainItemList .mainItem .mainItemThumb {
    padding: 1.5em 1.5em 0;
}
.content .mainArea .mainItemList .mainItem .mainItemThumb img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.content .mainArea .mainItemList .mainItem .mainItemTitle {
    padding: 2em 0;
}
.content .mainArea .mainItemList .mainItem .mainItemPrice {
    font-weight: bold;
    padding: 1em;
    background: rgb(var(--gray004));
}
.content .mainArea .mainItemList .mainItem .mainItemPrice img {
    display: inline-block;
    max-width: 1.5em;
    margin-right: 0.35em;
}
.content .mainArea + .attArea {
    background: #fff;
}

.content .attArea .attTitle {
    font-weight: bold;
    font-size: inherit;
}
.content .attArea .attList {
    font-size: 0.9em;
}

.content.msgBox {
    padding-top: 10rem;
}
.content .text-sm {
    font-size: 0.85rem;
}
.content .text-lg {
    font-size: 1.25rem;
}

.content .goodsTop {
    display: flex;
    align-items: start;
    gap: 1.25em;
}
.content .goodsTopBox {
    max-width: 700px;
    min-height: 380px;
    background: #fff;
    border-radius: 1em;
    padding: 2.5em;
    margin-right: auto;
    margin-left: auto;
}
.content .goodsTop .goodsTopBox:first-child {
    width: 460px;
}
.content .goodsTop .goodsTopBox:first-child img {
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.content .goodsTop .goodsTopBox:last-child {
    width: calc(100% - 460px - 1.25em);
}

.content .goodsTopTitle {
    font-size: 1.65em;
}
.content .goodsTopSummary {
    margin-top: 2em;
    color: rgb(var(--black068));
}
.content .goodsTopInfo h3 {
    font-size: 1em;
}
.content .goodsTopInfo div {
    font-size: 0.85em;
}
.content .goodsTopPrice {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
}
.content .goodsTopPrice img {
    width: 1.5em;
    margin-right: 0.5em;
}
.content .goodsTopBtn {
    margin-top: 1.5em;
}

.content .goodsInfo {
    background: #fff;
    color: rgba(0, 0, 0, 0.6);
}
.content .goodsInfo .userInfo {
    margin-bottom: 2em;
}
.content .goodsInfoTitle {
    font-size: 1.65em;
    text-align: center;
    margin-bottom: 1em;
}
.content .goodsInfoList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.content .goodsInfoList .goodsInfoItem {
    position: relative;
    width: 150px;
    margin: 1em 1em 0;
}
.content .goodsInfoList .goodsInfoItemThumb {
    height: 150px;
    border: 1px solid rgb(232, 232, 232);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    padding: 1em;
}

.content .goodsInfoDesc {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.content .goodsInfoDesc thead th,
.content .goodsInfoDesc tbody td {
    height: 2.5em;
    padding: 0.25em 0.5em;
}
.content .goodsInfoDesc thead th {
    color: #fff;
    text-align: center;
    background: #7981e1;
}
.content .goodsInfoDesc tbody td {
    border-bottom: 1px solid rgb(232, 232, 232);
    font-size: .95em;
}

.content .registEndBox {
    min-height: auto;
    text-align: center;
    margin-top: 130px;
}
.content .registEndChar {
    margin-top: -172px;
}

.popupArea {
    position: fixed;
    inset: 0px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
    display: none;
}
.popupArea.active {
    display: flex;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.15s ease-in;
}
.popupArea .popupBg {
    background: rgba(0, 0, 0, 0.45);
    position: fixed;
    inset: 0px;
}
.popupArea .popupMain {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 1.5em;
    max-width: 500px;
    width: 90%;
}
.popupArea .popupTitle {
    font-size: 1.25em;
    font-weight: bold;
}
.popupArea .popupInfoList {
    margin-top: 1em;
    background: rgb(var(--gray004));
    border-radius: 0.25em;
    padding: 1em;
}
.popupArea .popupInofo {
    display: flex;
    padding: 0.5em 0;
}
.popupArea .popupInofo .popupInfoTitle {
    width: 4em;
    font-weight: bold;
}
.popupArea .popupText {
    margin-top: 1em;
    font-size: 0.9em;
}
.popupArea .popupBtnArea {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1.5em;
}
.popupArea .popupBtnArea .popupBtn {
    flex: 1;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-weight: 600;
    border-radius: 2px;
    background: #7981e1;
    color: #fff;
}
.popupArea .popupBtnArea .popupBtn--close {
    background: #fff;
    border: 1px solid #7981e1;
    color: #7981e1;
}
.popupArea .popupCloseBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-size: contain;
    cursor: pointer;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .content .contentInner {
        padding-top: 2em;
        padding-bottom: 2em;
    }

    .content .mainArea .mainHeader {
        height: 150px;
    }
    .content .mainUserInfo {
        margin-top: 1em;
    }
    .content .mainArea .mainItemList .mainItem {
        width: calc((100% - 1rem) / 2);
    }
    .content .mainArea .mainItemList .mainItem .mainItemTitle {
        padding: 1em 0;
    }
    .content .mainArea .mainItemList .mainItem .mainItemPrice {
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

    .content .goodsTop {
        display: block;
    }
    .content .goodsTop .goodsTopBox {
        min-height: auto;
        padding: 1.5rem;
    }
    .content .goodsTop .goodsTopBox:first-child,
    .content .goodsTop .goodsTopBox:last-child {
        width: 100%;
    }
    .content .goodsTop .goodsTopBox:last-child {
        border-top: 1px solid rgb(var(--gray010));
    }
    .content .goodsTopTitle {
        font-size: 1.3em;
    }
    .content .goodsTopSummary {
        margin-top: 1em;
    }
    .content .goodsTopPrice,
    .content .goodsTopBtn {
        margin-top: 1.5em;
    }

    .content .goodsInfoTitle {
        font-size: 1.3em;
    }
    .content .goodsInfoList .goodsInfoItem {
        width: 135px;
        margin: 0 0.5rem;
    }
    .content .ticketItem .ticketItemThumb {
        height: 135px;
    }
    .content .ticketTable {
        font-size: 0.85rem;
    }

    .content .registEndChar {
        margin-top: -167px;
    }

    .popupArea .popupInfoList {
        margin-top: 1em;
        padding: 0.5em;
    }
    .popupArea .popupInofo {
        padding: 0.25em 0;
    }
}

@media screen and (max-width: 480px) {
    .content .goodsTop .goodsTopBox:first-child img {
        max-width: 80%;
    }
}
