@import url('reset.css');

:root {
    --bk: #000;
    --wh: #fff;
    --p: #ff0;

    --fz-s: 12px;
    --fz: 16px;
    --fz-m: 24px;
    --fz-l: 32px;
    --fz-h: 40px;

    --fw-m: 500;
    --fw: 700;
    --fw-bx: 800;

    --headerH: 72px;

    --r: 48px;

    --bb: 1px;
}

@media screen and (min-width: 1080px) {
    :root {
        --fz-s: 16px;
        --fz: 24px;
        --fz-m: 36px;
        --fz-l: 48px;
        --fz-h: 60px;

        --headerH: 120px;

        --r: 120px;

        --bb: 1.5px;
    }
}

html,
body {
    color: var(--p);
    font-family: 'Bookk Gothic', sans-serif;
    font-style: normal;
    font-size: var(--fz);
    font-weight: var(--fw-m);
    line-height: normal;
    background: var(--bk);
}

a,
button {
    display: inline-block;
    color: var(--p);
    font-family: 'Freesentation', sans-serif;
    font-style: normal;
    font-size: var(--fz-m);
    font-weight: var(--fw-bx);
    line-height: normal;
}

em {
    font-style: italic;
}

strong {
    font-weight: var(--fw-b);
}

.num {
    font-family: 'Amnesty Trade Gothic', sans-serif !important;
}

p {
    line-height: 175%;
}

p + p {
    margin-top: 28px;
}

.pc {
    display: flex;
}

.mobile {
    display: none;
}

@media screen and (max-width: 1080px) {
    .pc {
        display: none;
    }

    .mobile {
        display: flex;
    }
}

.scroll-p {
    height: 100dvh;
    overflow: hidden;
}

.icon-btn {
    width: 36px;
    height: 36px;

    cursor: pointer;
}

@media screen and (min-width: 1080px) {
    .icon-btn {
        width: 48px;
        height: 48px;
    }
}

.icon-btn svg {
    display: block;
    width: 100%;
    height: auto;
}

/* header */
header.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
}

.header-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, 0.00) 100%);
}

.gnb {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    height: var(--headerH);
}

.logo {
    width: auto;
    height: 48px;
}

.logo img {
    display: block;
    width: auto;
    height: 100%;
}

@media screen and (min-width: 1080px) {
    header.header {
        background: linear-gradient(180deg, #000 50%, rgba(0, 0, 0, 0.00) 100%);
    }

    .header-inner {
        margin: auto;
        padding: 24px;

        display: flex;
        justify-content: space-between;
        align-items: center;

        max-width: 1174px;
        background: none;
        height: var(--headerH);
    }

    .gnb {
        padding: 0;
        display: block;
        height: 72px;
    }

    .logo {
        height: 72px;
    }

    .gnb .nav-btn.icon-btn {
        display: none;
    }
}

.nav-btn.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--bk);

    cursor: pointer;
}

.nav-btn-inner {
    position: relative;
    width: 21px;
    height: 20px;
}

.nav-btn-inner > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 1px;
    background: var(--p);
}

.nav-btn .top {
    top: 1.5px;
    left: 0;
}

.nav-btn .middle {
    top: 10px;
    left: 0;
}

.nav-btn .bottom {
    top: 18.5px;
    left: 0;
}

.nav-btn.act .top {
    animation: top 600ms forwards;
}

.nav-btn.act .middle {
    animation: middle 600ms forwards;
}

.nav-btn.act .bottom {
    animation: bottom 600ms forwards;
}

.nav-btn.in .top {
    animation: top-r 600ms forwards;
}

.nav-btn.in .middle {
    animation: middle-r 600ms forwards;
}

.nav-btn.in .bottom {
    animation: bottom-r 600ms forwards;
}

@keyframes top {
    0% {
        top: 1.5px;
    }
    40% {
        top: 10px;
    }
    50% {
        top: 10px;
        transform: rotate(0);
    }
    100% {
        top: 10px;
        transform: rotate(45deg);
    }
}

@keyframes middle {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes bottom {
    0% {
        top: 18.5px;
    }
    40% {
        top: 10px;
    }
    50% {
        top: 10px;
        transform: rotate(0);
    }
    100% {
        top: 10px;
        transform: rotate(-45deg);
    }
}

@keyframes top-r {
    0% {
        top: 10px;
        transform: rotate(45deg);
    }
    40% {
        top: 10px;
    }
    50% {
        top: 10px;
        transform: rotate(0);
    }
    100% {
        top: 1.5px;
    }
}

@keyframes middle-r {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bottom-r {
    0% {
        top: 10px;
        transform: rotate(-45deg);
    }
    40% {
        top: 10px;
    }
    50% {
        top: 10px;
        transform: rotate(0);
    }
    100% {
        top: 18.5px;
    }
}

nav {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding-top: var(--headerH);
    width: 100%;
    background: var(--p);

    transform: translateY(-100%);
    transition: transform 400ms ease;
}

@media screen and (min-width: 1080px) {
    nav {
        position: static;
        display: flex;
        padding: 0;
        width: fit-content;
        transform: none;
        transition: none;
        background: none;
    }
}

.header.nav-act nav {
    transform: translateY(0);
}

.nav-inner {
    padding: 60px 12px 12px;
}

.nav-item {
    display: block;
    height: 48px;
    line-height: 48px;
    background: var(--bk);
    color: var(--p);
    border: var(--bb) solid var(--p);
    text-align: center;
}

@media screen and (min-width: 1080px) {
    .nav-inner {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .nav-item {
        padding: 0 36px;
        background: none;
        color: var(--p);
        font-size: var(--fz);
        border: none;
        text-align: center;
    }

    .nav-item:last-child {
        padding: 0 0 0 36px;
    }
}

/* layout */
html {
    scroll-behavior: smooth;
}

#wrapper {
    padding-top: var(--headerH);
    padding-bottom: calc(var(--vh, 1vh) * 25 + 72px);
}

@media screen and (max-width: 1080px) {
    #wrapper {
        touch-action: pan-y;
    }
}

@media screen and (min-width: 1080px) {
    #wrapper {
        padding-bottom: calc(var(--vh, 1vh) * 25 + 96px);
    }
}

/* site title */
.site-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--r) 24px;
    height: calc(var(--vh, 1vh) * 75 - (var(--headerH) + 72px));
}

.site-title > div {
    margin: auto;
    width: 100%;
    max-width: 480px;

    height: 100%;
}

.site-title svg {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1080px) {
    .site-title {
        padding: 12px 144px;
        height: calc(var(--vh, 1vh) * 75 - (var(--headerH) + 96px));
    }

    .site-title > div {
        margin: auto;
        max-width: 1174px;
    }

    /*.site-title svg {*/
    /*    width: auto;*/
    /*    height: 100%;*/
    /*}*/
}

/* section */
.sec {
    margin-bottom: calc(var(--r) - var(--headerH));
    padding-top: var(--headerH);
}

#main.sec {
    padding-top: var(--r);
}

@media screen and (min-width: 580px) {
    #main.sec {
        padding-bottom: var(--r);
    }

    .desc.desc--main,
    #history .desc {
        margin: auto;
        max-width: 740px;
    }
}

.sec-inner {
    padding: 0 24px;
}

@media screen and (min-width: 580px) {
    .sec-inner {
        padding: 0 76px;
    }
}

.sec-title {
    margin-bottom: 24px;
    padding-top: 14px;
    padding-left: 18px;
    border-top: var(--bb) solid var(--p);
    border-left: var(--bb) solid var(--p);
}

.sec-title-inner {
    max-width: 190px;
    font-family: 'Freesentation', sans-serif;
    font-size: var(--fz-l);
    font-weight: var(--fw-bx);
    letter-spacing: -0.64px;
    line-height: 125%;
}

@media screen and (min-width: 580px) {
    .sec-title {
        margin: 0 auto 36px;
        max-width: 740px;
    }

    .sec-title-inner {
        max-width: none;
    }
}

/* cont */
.title-wrapper {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 240px;
}

.title {
    display: inline-block;
    margin: 2px 0;
    padding: 0 3px;
    width: fit-content;
    height: 42px;
    line-height: 42px;

    background: var(--p);
    color: var(--bk);
    font-family: 'Amnesty Trade Gothic', 'Freesentation', sans-serif;
    font-size: var(--fz-h);
    font-weight: var(--fw-bx);
}

@media screen and (max-width: 1080px) {
    .title.num + br {
        display: none;
    }
}

@media screen and (min-width: 1080px) {
    .title-wrapper {
        display: block;
        max-width: 550px;
        text-align: center;
    }

    .title {
        margin: 2px 0;
        padding: 0 4px;
        height: 54px;
        line-height: 54px;
        font-size: 52px;
    }

    .title:not(.num) + .title {
        margin-left: -3px;
    }
}

.main-cont {
    padding-top: var(--headerH);
}

.cont-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 -24px;
}

@media screen and (min-width: 1080px) {
    .main-cont {
        padding-top: calc(var(--headerH) + 12px);
    }

    .cont-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin: 0 auto;
        padding-bottom: var(--r);
    }
}

.cont {
    position: relative;
    width: 260px;
    height: 320px;
    border: var(--bb) solid var(--p);
    background: var(--bk);
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.50);

    transition: width 250ms ease, height 250ms ease, background 250ms ease, transform 250ms ease;
}

.cont:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    bottom: -24px;
    left: 50%;
    width: 36px;
    height: 24px;

    background-image: url("data:image/svg+xml,%3Csvg width='36' height='24' viewBox='0 0 36 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-inside-1_105_6725' fill='white'%3E%3Cpath d='M0 0L36 0V24H0L0 0Z'/%3E%3C/mask%3E%3Cpath d='M36 24V25H37V24H36ZM0 24H-1V25H0L0 24ZM36 0L35 0V24H36H37V0L36 0ZM36 24V23H0L0 24L0 25H36V24ZM0 24H1L1 0L0 0L-1 0L-1 24H0Z' fill='url(%23paint0_linear_105_6725)' mask='url(%23path-1-inside-1_105_6725)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_105_6725' x1='18' y1='0' x2='18' y2='24' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFFF00'/%3E%3Cstop offset='1' stop-color='%23FFFF00' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    transform: translateX(-50%);
}

.cont + .cont {
    margin-top: var(--r);
}

@media screen and (min-width: 1080px) {
    .cont:after {
        bottom: -48px;
        width: 54px;
        height: 48px;

        background-image: url("data:image/svg+xml,%3Csvg width='54' height='48' viewBox='0 0 54 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-inside-1_127_2243' fill='white'%3E%3Cpath d='M0 0L54 0V48H0L0 0Z'/%3E%3C/mask%3E%3Cpath d='M54 48V49H55V48H54ZM0 48H-1V49H0L0 48ZM54 0L53 0V48H54H55V0L54 0ZM54 48V47H0L0 48L0 49H54V48ZM0 48H1L1 0L0 0L-1 0L-1 48H0Z' fill='url(%23paint0_linear_127_2243)' mask='url(%23path-1-inside-1_127_2243)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_127_2243' x1='27' y1='0' x2='27' y2='48' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFFF00'/%3E%3Cstop offset='1' stop-color='%23FFFF00' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .cont + .cont {
        margin-top: 0;
    }
}

.cont--1 {
    transform: rotate(-5deg);
}

.cont--2 {
    transform: rotate(5deg);
}

.cont--3 {
    transform: rotate(-5deg);
}

@media screen and (min-width: 1080px) {
    .cont {
        position: relative;
        width: 360px;
        height: 480px;
        border: var(--bb) solid var(--p);

        background: var(--bk);
        box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.50);

        transition: all 250ms ease;
    }

    .cont--1 {
        transform: rotate(-7.5deg);
    }

    .cont--2 {
        transform: rotate(0) translateY(var(--r));
    }

    .cont--3 {
        transform: rotate(5deg);
    }
}

.cont-inner {
    position: relative;
    z-index: 1;
    padding: 24px;
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.cont-inner::-webkit-scrollbar {
    display: none;
}

.cont-desc {
    padding-top: 36px;
}

.quotation {
    margin: 0 auto 24px;
    padding-left: 18px;
    border-left: var(--bb) solid var(--p);
}

blockquote {
    margin: 24px auto;
    padding-left: 18px;
    border-left: var(--bb) solid var(--p);
    line-height: 175%;
}

.quotation .ref {
    display: inline-block;
    margin-top: 28px;
    font-size: var(--fz-s);
    line-height: 175%;
}

@media screen and (min-width: 1080px) {
    .quotation {
        margin: 0 auto 36px;
        max-width: 740px;
    }

    blockquote {
        margin: 36px auto;
    }
}

.cont-btn {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--bk);
}

.cont-btn .icon-ex {
    display: block;
}

.cont-btn .icon-re {
    display: none;
}

@media screen and (min-width: 1080px) {
    .cont-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 48px;
        height: 48px;
    }
}

.cont .title,
.cont .cont-desc,
.cont .quotation {
    transition: all 250ms ease;
}

.cont.ex {
    z-index: 25;
    width: calc(100% - 24px);
    height: calc(100vh - 12px);
    background: var(--p);
    box-shadow: none;
    transform: rotate(0);
}

.cont.ex.ex-m {
    position: fixed;
    top: 12px;
    left: 12px;
    margin-top: 0;
}

.cont.ex .title {
    background: var(--bk);
    color: var(--p);
}

.cont.ex .cont-desc {
    padding-bottom: calc(var(--headerH) + 100px);
    color: var(--bk);
}

.cont.ex .quotation {
    border-left: var(--bb) solid var(--bk);
}

.cont.ex blockquote {
    border-left: var(--bb) solid var(--bk);
}

.cont.ex .cont-btn .icon-ex {
    display: none;
}

.cont.ex .cont-btn .icon-re {
    display: block;
}

@media screen and (min-width: 1080px) {
    .cont-desc {
        margin: auto;
        max-width: 740px;
        font-size: 20px;
    }

    .cont-desc .quotation .ref {
        font-size: 12px;
    }

    .cont.ex {
        width: 100%;
    }

    .cont.ex .cont-desc {
        padding-top: 58px;
        font-size: 24px;
    }

    .cont.ex .cont-desc .quotation .ref {
        font-size: var(--fz-s);
    }

    .cont.ex .title {
        height: 62px;
        line-height: 62px;
        font-size: 60px;
    }
}

/* history */
.history-list-wrapper {
    margin: var(--r) -24px 0;
}

@media screen and (min-width: 580px) {
    .history-list-wrapper {
        margin: var(--r) -76px 0;
    }
}

.history-list .swiper-slide {
    width: 240px;
}

.history-card {
    position: relative;
    display: block;
}

.history-img {
    position: relative;
    width: 240px;
    height: 240px;
}

.history-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: grayscale(1);
}

.history-card:hover .history-img img {
    filter: grayscale(0);
}

.history-img:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, #000 100%);
}

.history-img.history-img--empty {
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70%, #000 100%), rgba(255, 255, 0, 0.50);
}

.history-img.history-img--empty:after {
    display: none;
}

.history-title-wrapper {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
}

.history-title.num {
    font-size: 60px;
    letter-spacing: -4.2px;
}

.history-sub {
    max-width: 180px;
    min-height: 42px;
    font-family: 'Bookk Gothic', sans-serif;
    font-size: var(--fz-s);
    font-weight: var(--fw-m);
    line-height: 175%;
}

.history-img.history-img--empty + .history-title-wrapper * {
    color: var(--bk);
}

@media screen and (min-width: 580px) {
    .history-list .swiper-slide {
        /*width: calc(30vw - 80px);*/
        width: 360px;
    }

    .history-img {
        position: relative;
        /*width: calc(30vw - 80px);*/
        /*height: calc(30vw - 80px);*/
        width: 360px;
        height: 360px;
    }

    .history-title-wrapper {
        bottom: 24px;
        left: 24px;
        width: calc(100% - 48px);
    }

    .history-title.num {
        font-size: 96px;
        letter-spacing: -4.2px;
    }

    .history-sub {
        max-width: 220px;
        min-height: 56px;
    }
}

/* archive */
.archive-list-wrapper {
    margin: 24px -12px 0;
}

.archive-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.archive-img {
    width: calc(50vw - 12px - 3px);
}
@media screen and (min-width: 1080px) {
    .archive-list-wrapper {
        margin: 36px auto 0;
        padding: 0 24px;
        max-width: 1174px;
    }
}

@media screen and (min-width: 580px) {
    .archive-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .archive-img {
        width: 100%;
    }
}

.archive-img svg {
    display: block;
    width: 100%;
    height: auto;
}

.archive-card {
    overflow: hidden;
}

.archive-card .archive-img svg * {
    transition: all 250ms ease;
}

.archive-card:hover .archive-img:not(.archive-img--empty) svg rect {
    opacity: 0;
}

/*.archive-card:hover .archive-img--empty svg defs {*/
/*  display: none;*/
/*}*/

/*.archive-card:hover .archive-img--empty svg stop {*/
/*  stop-opacity: 0;*/
/*}*/

/*.archive-card:hover .archive-img--empty svg g {*/
/*  fill: none !important;*/
/*  opacity: 1;*/
/*}*/

/* credit */
.sec--credit {
    margin-bottom: 0;
    padding-bottom: 24px;
}

.credit-title {
    padding-top: 8px;
    border-top: var(--bb) solid var(--p);
    font-size: var(--fz-s);
    line-height: 175%;
    text-align: center;
}

.credit-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    column-gap: 24px;
    row-gap: 21px;
}

.credit {
    font-size: var(--fz-s);
    line-height: 175%;
}

.credit-list > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.credit-list > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.credit-list > div:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.credit-list > div:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
}

.credit-list > div:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.credit-list > div:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

@media screen and (min-width: 1080px) {
    .sec--credit .sec-inner {
        display: grid;
        grid-template-columns: 1fr 3fr;
        padding: 24px 0 0;
        margin: auto;
        width: 100%;
        max-width: 740px;
        border-top: var(--bb) solid var(--p);
    }

    .credit-title {
        padding-top: 0;
        border-top: none;
        text-align: left;

        font-size: 14px;
    }

    .credit {
        font-size: 14px;
    }

    .credit-list {
        margin-top: 0;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 16px;
    }

    .credit-list > div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .credit-list > div:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .credit-list > div:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .credit-list > div:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .credit-list > div:nth-child(5) {
        grid-column: 3;
        grid-row: 1;
    }

    .credit-list > div:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }
}

/* news */
.news a {
    /*display: grid;*/
    /*grid-template-rows: 1fr 2fr;*/
    display: block;
    width: 100%;
    padding: 5.5px 0 12px;
    border-top: var(--bb) solid var(--p);
}

@media screen and (min-width: 580px) {
    .news-list-wrapper {
        margin: auto;
        max-width: 740px;
    }

    .news a {
        display: grid;
        grid-template-columns: 144px 1fr;
    }
}

.news-date {
    display: block;
    font-family: 'Bookk Gothic', sans-serif;
    font-size: var(--fz-s);
    font-weight: 700;
    line-height: 175%;
}

.news-title {
    /*display: inline-flex;*/
    /*align-items: center;*/
    font-family: 'Bookk Gothic', sans-serif;
    font-size: var(--fz);
    line-height: 150%;
}

@media screen and (min-width: 580px) {
    .news-date {
        font-size: 16px;
    }

    .news-title {
        display: block;
        line-height: 175%;
    }
}

/* add :: icon */
.icon-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    width: 16px;
    height: 16px;
}

.icon-down svg {
    display: block;
    width: 100%;
    height: 100%;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: 12px;
    height: 12px;
    transform: translateY(2px);
}

.icon-link svg {
    display: block;
    width: 100%;
    height: 100%;
}

.chk-link-btn .icon-link {
    width: 12px;
    height: 12px;
}

@media screen and (min-width: 1080px) {
    .icon-down {
        width: 20px;
        height: 20px;
    }

    .icon-link {
        margin-left: 2px;
        padding-top: 0;
        width: 16px;
        height: 16px;
    }
}

/* add :: desc */
.desc figure {
    position: relative;
    margin: 24px auto;
}

.desc figure:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 0, 0.00) 75%, #FF0 100%);
}

.desc span {
    display: block;
    margin-top: -18px;
    padding-bottom: 24px;
    font-size: 12px;
    line-height: 175%;
}

@media screen and (min-width: 1080px) {
    .desc figure {
        margin: 36px auto;
    }

    .desc span {
        display: block;
        margin-top: -30px;
        padding-bottom: 36px;
    }
}

ins {
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: var(--bb);
    text-decoration-skip-ink: auto;
}

@media screen and (min-width: 1080px) {
    ins {
        text-decoration: underline;
        text-underline-offset: 10px;
        text-decoration-thickness: var(--bb);
        text-decoration-skip-ink: auto;
    }
}

.dim {
    display: none;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-popup-wrapper {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-touch .intro-popup-wrapper{
    display: none !important;
}

.touch .intro-popup-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.touch .intro-popup {
    position: relative;
    z-index: 2;
    padding: 20px 8px 8px;
    width: 40vw;
    min-width: 272px;
    background: var(--p);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.75);
}

.touch .intro-popup-cont {
    text-align: center;
}

.touch .intro-popup-cont > div {
    margin-bottom: 8px;
    color: var(--bk);
    line-height: 175%;
}

.touch .intro-popup-cont > span {
    display: block;
    font-size: var(--fz-s);
    line-height: 175%;

    color: var(--bk);
}

.touch .intro-popup-btn-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 4px;
    margin-top: 20px;
}

.touch .intro-popup-btn {
    flex: 1;
    height: 36px;
    line-height: 36px;
    border: var(--bb) solid var(--bk);
    text-align: center;

    background: var(--p);
    color: var(--bk);

    font-family: 'Freesentation', sans-serif;
    font-style: normal;
    font-size: var(--fz);
    font-weight: var(--fw-bx);

    cursor: pointer;
}

.touch .intro-popup-btn.intro-popup-btn--a {
    background: var(--bk);
    color: var(--p);
}

.touch .intro-popup-dim {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
