:root {
    --ft-guy: "Luckiest Guy", cursive;
}
* {
    box-sizing: border-box;
    color: #000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}

/* フェードインアップ */
.js-fadeUp {
	opacity:0;
	transform: translateY(30px);
}

/* inviewになったらバウンド付きフェードイン */
.js-fadeUp.is-inview {
	animation: fadeUpBounce 1s ease-out forwards;
}

/* バウンドアニメーション */
@keyframes fadeUpBounce {
	0% {
		opacity:0;
		transform:translateY(30px);
	}
	40% {
		opacity:1;
		transform:translateY(0);
	}
	60% {
        opacity:1;
		transform:translateY(-6px); /* 1回目のバウンド（上に） */
	}
	75% {
        opacity:1;
		transform:translateY(0px);   /* 下に落ちる */
	}
	88% {
        opacity:1;
		transform:translateY(-2px);  /* 2回目の小さなバウンド */
	}
	100% {
        opacity:1;
		transform:translateY(0);     /* 最終位置で止まる */
	}
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}

/* fv */
.fv-main {
    position: relative;
}
.fv picture {
    display: block;
    line-height: 0;
}
.fv img {
    width: 100%;
    max-width: none;
}
.fv-chara {
    margin: auto;
    position: absolute;
    right: -40vw;
    left: 0;
    bottom: 14%;
    width: 45vw;
}
@media screen and (max-width: 968px) {
    .fv {
        margin: 0 0 -1px;
        position: relative;
    }
    .fv-main {
        position: relative;
    }
    .fv-chara {
        right: 0;
        left: -4vw;
        bottom: 7.5%;
        width: 95%;
    }
}
@media screen and (max-width: 768px) {}


/* loopsliders */
.loopsliders {
    background:#fff;
    line-height: 0;
    position: relative;
}
.loopsliders::before,
.loopsliders::after {
    background: url(../images/rope.png) repeat-x;
    background-position: center;
    background-size: 1953px;
    content: "";
    display: block;
    height: 38px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}
.loopsliders::before {
    top: calc((38px / 2) * -1);
}
.loopsliders::after {
    bottom: calc((38px / 2) * -1);
}
.loopslider {
    animation: scroll-left 45s linear infinite;
    display: flex;
    width: max-content;
}
.loopslide {
    flex-shrink: 0;
    width: 2392px;
}
/* CSSアニメーション */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 1168px) {
    .loopslide {
        width: 2392px;
    }
}
@media screen and (max-width: 968px) {
    .loopsliders {
        padding: 10px 0;
    }
    .loopsliders::before,
    .loopsliders::after {
        background-size: 1225px;
        height: 48px;
    }
    .loopslide {
        width: 340vw;
    }
}
/* floating */
.floating {
    display: none;
    height: max-content;
    margin: auto;
    padding: 0 0 135px;
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 100%;
    max-width: calc(219px * 0.8);
    z-index: 2;
}
.floating-inner {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}
.floating-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.floating-item {
    filter: drop-shadow(17px 0 16px rgb(70 70 70 / 30%));
    position: relative;
    width: 100%;
}
.floating-item:last-child::after {
    background: url(../images/bob_pat.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: calc(215px * 0.8);
    position: absolute;
    left: 0;
    bottom: -140px;
    width: calc(241px * 0.8);
}
.floating-item a {
    display: block;
    line-height: 0;
}
@media screen and (max-width: 968px) {
    .floating {
        padding-bottom: 0;
        bottom: 27%;
        max-width: 25vw;
    }
    .floating-items {
        gap: 3vw;
    }
    .floating-item:last-child::after {
        height: 20vw;
        bottom: -17.5vw;
        width: 24vw;
    }
}

/* endroll */
.endroll {
    background: url(../images/endroll-bg.jpg) no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 100px 0 120px;
    position: relative;
}
.endroll-inner {
    position: relative;
    z-index: 1;
}
.endroll-head {
    margin: 0 auto 130px;
}
.endroll-logo {
    line-height: 0;
    margin: 0 auto 85px;
    width: 95%;
    max-width: 589px;
}
.endroll-movie {
    aspect-ratio: 16 / 9;
    filter: drop-shadow(0 3px 60px rgb(0 0 0 / 20%));
    margin: 0 auto;
    width: 92%;
    max-width: 1152px;
}
.endroll-items {
    display: flex;
    flex-direction: column;
    gap: 125px;
}
.endroll-ttl {
    margin: 0 auto 40px;
    text-align: center;
}
.endroll-ttl.catch-ttl {
    margin-bottom: 120px;
}
.endroll-ttl h3 {
    font-family: var(--ft-guy);
    font-size: 65px;
    font-weight: 400;
}
.story-ttl h3 {
    color: #46d8e6;
}
.cast-ttl h3 {
    color: #46e69d;
}
.endroll-text {
    text-align: center;
}
.endroll-text p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.1em;
}
.endroll-text .story-txt {
    color: #46d8e6;
    font-size: 20px;
    font-weight: 900;
    line-height: 47px;
    letter-spacing: 0.08em;
}
.endroll-text .cast-txt,
.endroll-text .cast-txt span {
    color: #46e69d;
    font-size: 20px;
    font-weight: 900;
    line-height: 47px;
    letter-spacing: 0.08em;
}
.endroll-text .cast-txt span {
    font-size: 0.8em;
}
.endroll-cta {
    filter: drop-shadow(9px 9px 0 #ef3394);
    margin: 90px auto 0;
    width: 100%;
    max-width: 608px;
}
.endroll-cta a,
.endroll-cta picture {
    display: block;
    line-height: 0;
}
@media screen and (max-width: 968px) {
    .endroll {
        background-image: url(../images/endroll-bg-sp.jpg);
        padding: 20vw 0 15vw;
    }
    .endroll-inner {
        margin: 0 auto;
        width: 88%;
    }
    .endroll-head {
        margin: 0 auto 8vw;
    }
    .endroll-logo {
        margin: 0 auto 9vw;
        width: 71%;
    }
    .endroll-movie {
        margin-left: -2.5%;
        width: 105%;
    }
    .endroll-items {
        gap: 15vw;
    }
    .endroll-ttl {
        margin: 0 auto 4vw;
    }
    .endroll-ttl.catch-ttl {
        margin: 0 auto 7vw;
        width: 60%;
    }
    .endroll-ttl h3 {
        font-size: 8vw;
    }
    .endroll-ttl h2,
    .endroll-ttl h2 span {
        font-size: 8vw;
    }
    .endroll-ttl h2 span {
        top: 1.8vw;
    }
    .endroll-text p {
        font-size: 3vw;
        line-height: 5.5vw;
    }
    .endroll-text .story-txt {
        font-size: 2.5vw;
        line-height: 5.5vw;
    }
    .endroll-text .cast-txt {
        font-size: 2.5vw;
    }
    .endroll-text .cast-txt,
    .endroll-text .cast-txt span {
        line-height: 2.3em;
    }
    .endroll-cta {
        margin: 15vw auto 0;
        width: 92%;
    }
}

/* bottom */
.bottom {
    padding: 90px 0 0;
}
.bottom-inner {
    margin: 0 auto;
    width: 92%;   
}
.information-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto 100px;
    width: 100%;
    max-width: 732px;
}
.information-item a {
    display: block;
    line-height: 0;
}
.copyright {
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 14.4px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 968px) {
    .bottom {
        padding: 15vw 0 0;
    }
    .bottom-inner {
        margin-left: -1%;
        width: 102%;
    }
    .information-items {
        gap: 4vw;
        margin: 0 0 8vw
    }
    .copyright p {
        font-size: 2.2vw;
    }
}
@media screen and (max-width: 768px) {}

/* share */
.share {
    background: #e5e5e5;
    padding: 50px 0;
}
.share-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 775px;
}
.share-head {
    margin: 0 0 25px;
    text-align: center;
}
.share-head h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.share-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.share-item {
    width: 100%;
    max-width: 247px;
}
@media screen and (max-width: 968px) {
    .share {
        padding: 12vw 0;
    }
    .share-inner {
        width: 80%;
    }
    .share-head {
        margin: 0 0 25px;
    }
    .share-head h2 {
        font-size: 4.5vw;
    }
    .share-items {
        gap: 3vw;
    }
    .share-item {
        width: 50vw;
        max-width: 247px;
    }
}
@media screen and (max-width: 768px) {}

/* attention */
.attention {
    background: url(../images/attention-bg2.png) no-repeat, url(../images/attention-bg.jpg) no-repeat;
    background-position: center bottom, center top;
    background-size: 1920px, cover;
    padding: 180px 0 130px;
}
.attention-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1197px;
}
.attention-content {
	position: relative;
    border: 2px solid #fff;
	border-radius: 37px;
    position: relative;
}
.attention-content h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 70px 0 55px;
    text-align: center;
}
.attention-content__text {
    display: flex;
    flex-direction: column;
    padding: 0 70px 80px;
    position: relative;
}
.attention-content__text div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 28px;
}
.attention-content .attention-content__text p {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.attention-content__text p a {
    border-bottom: 1px solid #7d95ff;
    color: #7d95ff;
    font-size: 15px;
    font-weight: 700;
}
@media screen and (max-width: 968px) {
    .attention {
        background-image: url(../images/attention-bg-sp.jpg);
        background-size: cover;
        padding: 4vw 0 15vw;
    }
    .attention-inner {
        width: 85%;
    }
    .attention-content {
        border-radius: 4.5vw;
        margin: 15vw 0 0;
    }
    .attention-content h2 {
        font-size: 4vw;
        padding: 7vw 0 0vw;
    }
    .attention-content .attention-content__text {
        padding: 5vw 5vw 6vw;
    }
    .attention-content .attention-content__text div {
        line-height: 3.5vw;
    }
    .attention-content .attention-content__text p {
        font-size: 2.1vw;
    }
    .attention-content__text p a {
        font-size: 2.1vw;
    }
}
@media screen and (max-width: 768px) {}

/* selectgoods */
.selectgoodslineup {
    background: url(../images/selectgoods-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
}
.selectgoodslineup-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1310px;
}
.selectgoodslineup-head {
    margin: 0 0 65px;
    text-align: center;
}
.selectgoodslineup-head h2 {
    line-height: 64px;
}
.selectgoodslineup-head h2 span {
    font-family: var(--ft-guy);
    font-size: 70px;
    font-weight: 400;
	background: linear-gradient(
		0deg,
		rgba(236, 208, 5, 1) 0%,
		rgba(253, 249, 124, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 3px #f76e00;
	filter: drop-shadow(6px 4px 0 #f76e00);
    letter-spacing: 0.1em;
}
.selectgoodslineup-items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 42px;
}
.selectgoodslineup-item {
    border-radius: 20px;
    overflow: hidden;
    width: calc((100% - (42px * 2)) / 3);
}
.selectgoodslineup-item__image {
    aspect-ratio: 1 / 1;
    line-height: 0;
    overflow: hidden;
    position: relative;
}
.selectgoodslineup-item__image::after {
    aspect-ratio: 1 / 1;
    background: url(../images/cover.png) no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.selectgoodslineup-item__image img {
    aspect-ratio: 1 / 1;
}
.selectgoodslineup-item__text {
    background: #823D02;
    background: linear-gradient(121deg, rgba(130, 61, 2, 1) 65%, rgba(121, 63, 14, 1) 100%);
    padding: 25px 20px;
    text-align: center;
}
.selectgoodslineup-item__name {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 10px;
}
.selectgoodslineup-item__price {
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: 900;
    height: 36px;
    margin: 0 auto;
    width: 172px;
}
.selectgoodslineup-item__btn {
    background: url(../images/btn-y.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 71px;
    margin: 35px auto 0;
    position: relative;
    width: 90%;
}
.selectgoodslineup-item__btn::before {
    font-size: 16px;
    font-weight: 500;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: -27px;
    text-align: center;
}
.selectgoodslineup-item.soldout .selectgoodslineup-item__btn::before {
    content: "SOLD OUT";
    color: #ff5e5e;
}
.selectgoodslineup-item.littlestock .selectgoodslineup-item__btn::before {
    content: "＼残りわずか／";
    color: #ffff00;
}
.selectgoodslineup-item__btn p {
    color: #823d02;
    font-size: 28px;
    font-weight: 900;
}
@media screen and (max-width: 1268px) {
    .selectgoodslineup-items {
        gap: 3.5vw;
    }
    .selectgoodslineup-item {
        width: calc((100% - (3.5vw * 2)) / 3);
    }
    .selectgoodslineup-item__text {
        padding: 3vw 2.5vw;
    }
    .selectgoodslineup-item__name {
        font-size: 2vw;
        margin: 0 0 1vw;
    }
    .selectgoodslineup-item__price {
        font-size: 1.8vw;
        height: 3.5vw;
        width: 15vw;
    }
    .selectgoodslineup-item__btn {
        height: 6vw;
        margin: 3.5vw auto 0;
    }
    .selectgoodslineup-item__btn::before {
        font-size: 1.8vw;
        top: -2.8vw;
    }
    .selectgoodslineup-item__btn p {
        font-size: 2vw;
    }
}
@media screen and (max-width: 968px) {
    .selectgoodslineup {
        background-image: url(../images/selectgoods-bg-sp.jpg);
        padding: 15vw 0 18vw;
    }
    .selectgoodslineup-head h2 {
        line-height: 8vw;
    }
    .selectgoodslineup-head h2 span {
        font-size: 9vw;
        -webkit-text-stroke: .5vw #f76e00;
        filter: drop-shadow(1vw .8vw 0 #f76e00);
    }
    .selectgoodslineup-items {
        justify-content: space-between;
        gap: 4.5vw;
    }
    .selectgoodslineup-item {
        border-radius: 4vw;
        width: calc((100% - (4.5vw * 1)) / 2);
    }
    .selectgoodslineup-item__text {
        padding: 3vw 2.5vw 3.5vw;
    }
    .selectgoodslineup-item__name {
        font-size: 3.8vw;
        margin: 0 0 1vw;
    }
    .selectgoodslineup-item__price {
        font-size: 3.5vw;
        height: 5vw;
        width: 20vw;
    }
    .selectgoodslineup-item__btn {
        height: 9vw;
        margin: 5.5vw auto 0;
        width: 90%;
    }
    .selectgoodslineup-item__btn::before {
        font-size: 2.8vw;
        top: -4.2vw;
    }
    .selectgoodslineup-item__btn p {
        font-size: 4vw;
    }
}
@media screen and (max-width: 768px) {

}

/* ticket */
.ticketlineup {
    background: url(../images/ticket-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
}
.ticketlineup-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1310px;
}
.ticketlineup-head {
    margin: 0 0 65px;
    text-align: center;
}
.ticketlineup-head h2 {
    line-height: 64px;
}
.ticketlineup-head h2 span {
    font-family: var(--ft-guy);
    font-size: 70px;
    font-weight: 400;
	background: linear-gradient(
		0deg,
		rgba(236, 208, 5, 1) 0%,
		rgba(253, 249, 124, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 3px #50cd6d;
	filter: drop-shadow(6px 4px 0 #50cd6d);
    letter-spacing: 0.1em;
}
.ticketlineup-items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 42px;
}
.ticketlineup-item {
    background: #fff;
    border: 3px solid #50cd6d;
    border-radius: 20px;
    filter: drop-shadow(9px 9px 0 #50cd6d);
    overflow: hidden;
    width: calc((100% - (42px * 3)) / 4);
}
.ticketlineup-item__image {
    line-height: 0;
}
.ticketlineup-item__text {
    background: #fff;
    margin: 0 auto;
    padding: 25px 0;
    position: relative;
    text-align: center;
    width: 90%;
}
.ticketlineup-item__text::before {
    background-image : linear-gradient(to right, #50cd6d 3px, transparent 3px);
    background-size: 15px 3px;
    background-repeat: repeat-x; 
    background-position: left bottom;
    content: "";
    display: block;
    height: 3px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}
.ticketlineup-item__name {
    color: #50cd6d;
    font-size: 18px;
    font-weight: 900;
    line-height: 21px;
    margin: 0 0 10px;
}
.ticketlineup-item__name span {
    color: #50cd6d;
    font-size: .7em;
}
.ticketlineup-item__price {
    background: #feff91;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    margin: 0 auto;
    padding: 0 0 0.2em;
    width: 151px;
}
.ticketlineup-item__price p {
    color: #50cd6d;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 17px;
    font-weight: 900;
}
.ticketlineup-item__price p span {
    color: #50cd6d;
    font-size: .8em;
    margin-left: .3em;
}
.ticketlineup-item__btn {
    background: url(../images/btn-g.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    margin: 25px auto 0;
    position: relative;
    width: 90%;
}
.ticketlineup-item__btn p {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
}
@media screen and (max-width: 1268px) {
    .ticketlineup-items {
        gap: 2vw;
    }
    .ticketlineup-item {
        filter: drop-shadow(.6vw .6vw 0 #50cd6d);
        width: calc((100% - (2vw * 3)) / 4);
    }
    .ticketlineup-item__text {
        padding: 3vw 0;
    }
    .ticketlineup-item__name {
        font-size: 1.3vw;
        line-height: 1.8vw;
        margin: 0 0 .8vw;
    }
    .ticketlineup-item__price {
        height: 2.3vw;
        width: 11vw;
    }
    .ticketlineup-item__price p {
        font-size: 1.3vw;
    }
    .ticketlineup-item__btn {
        height: 4vw;
        margin: 1.5vw auto 0;
    }
    .ticketlineup-item__btn p {
        font-size: 1.6vw;
    }
}
@media screen and (max-width: 968px) {
    .ticketlineup {
        padding: 12vw 0;
    }
    .ticketlineup-head {
        margin: 0 0 8vw;
    }
    .ticketlineup-head h2 {
        line-height: 7vw;
    }
    .ticketlineup-head h2 span {
        font-size: 8vw;
        -webkit-text-stroke: 3px #50cd6d;
        filter: drop-shadow(6px 4px 0 #50cd6d);
    }
    .ticketlineup-items {
        gap: 3.5vw;
        row-gap: 4vw;
    }
    .ticketlineup-item {
        width: calc((100% - (3.5vw * 1)) / 2);
    }
    .ticketlineup-item__name {
        font-size: 2.5vw;
        line-height: 3vw;
        margin: 0 0 .8vw;
    }
    .ticketlineup-item__price {
        height: 4.3vw;
        width: 20vw;
    }
    .ticketlineup-item__price p {
        font-size: 2.3vw;
    }
    .ticketlineup-item__btn {
        height: 6vw;
        margin: 2.5vw auto 0;
    }
    .ticketlineup-item__btn p {
        font-size: 2.3vw;
    }
}
@media screen and (max-width: 768px) {
    .ticketlineup {
        padding: 15vw 0 18vw;
    }
    .ticketlineup-head h2 {
        line-height: 8vw;
    }
    .ticketlineup-head h2 span {
        font-size: 9vw;
        -webkit-text-stroke: .5vw #50cd6d;
        filter: drop-shadow(1vw .8vw 0 #50cd6d);
    }
    .ticketlineup-item__name {
        font-size: 3vw;
        line-height: 3.8vw;
        margin: 0 0 1vw;
    }
    .ticketlineup-item__price {
        height: 5vw;
        width: 20vw;
    }
    .ticketlineup-item__price p {
        font-size: 2.8vw;
    }
    .ticketlineup-item__btn {
        height: 8vw;
        margin: 3.5vw auto 0;
        width: 90%;
    }
    .ticketlineup-item__btn p {
        font-size: 3vw;
    }
}

/* limited */
.limited {
    background: url(../images/limited-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 150px;
}
.limited-inner {
    margin: 0 auto;
    width: 92%;
}
.limited-head {
    margin: 0 0 65px;
    text-align: center;
}
.limited-head h2 {
    line-height: 64px;
}
.limited-head h2 span {
    font-family: var(--ft-guy);
    font-size: 70px;
    font-weight: 400;
	background: linear-gradient(
		0deg,
		rgba(236, 208, 5, 1) 0%,
		rgba(253, 249, 124, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 3px #285dc1;
	filter: drop-shadow(6px 4px 0 #285dc1);
    letter-spacing: 0.1em;
}
.limited-ttl {
    margin: 25px 0 0;
}
.limited-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.limited-tag {
    background: #285dc1;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    margin-right: 10px;
    padding: 2px 8px;
    width: 100%;
    max-width: max-content;
}
.limited-ttl .ttl {
    color: #285dc1;
    font-size: 31px;
    font-weight: 900;
}
.limited-ttl .online {
    color: #285dc1;
    font-size: calc(31px * 0.8);
    font-weight: 900;
}
.limited-ttl .date {
    color: #285dc1;
    font-size: 22px;
    font-weight: 900;
}

.limited-items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    left: 50px;
}
.limited-item a,
.limited-cta a {
    display: block;
    line-height: 0;
}
.limited-item:first-child {
    width: calc(531px * 0.9);
}
.limited-item:last-child {
    width: calc(627px * 0.9);
}
.limited-cta {
    margin: 60px auto 0;
    width: 100%;
    max-width: 670px;
}
@media screen and (max-width: 1368px) {
    .limited-items {
        left: 30px;
    }
    .limited-item:first-child {
        width: 433px;
    }
    .limited-item:last-child {
        width: 510px;
    }
    .limited-cta {
        max-width: 580px;
    }
}
@media screen and (max-width: 1068px) {
    .limited-items {
        left: 20px;
    }
    .limited-item:first-child {
        width: 385px;
    }
    .limited-item:last-child {
        width: 453px;
    }
    .limited-cta {
        max-width: 525px;
    }
}
@media screen and (max-width: 968px) {
    .limited {
        background-image: url(../images/limited-bg-sp.jpg);
        padding: 15vw 0 25vw;
    }
    .limited-head {
        margin: 0 0 8vw;
    }
    .limited-head h2 {
        line-height: 7vw;
    }
    .limited-ttl {
        margin: 4vw 0 0;
    }
    .limited-tag {
        font-size: 3vw;
        margin-right: 2vw;
        padding: 2px 8px;
    }
    .limited-ttl .ttl {
        font-size: 4.5vw;
        width: 100%;
    }
    .limited-ttl .online {
        font-size: calc(4.5vw * 0.8);
    }
    .limited-ttl .date {
        font-size: 2.5vw;
    }
    .limited-items {
        gap: 6vw;
        left: -1vw;
    }
    .limited-item:first-child {
        width: 95%;
    }
    .limited-item:last-child {
        position: relative;
        left: 2.5vw;
        width: 100%;
    }
    .limited-cta {
        margin: 10vw auto 0;
        max-width: 93%;
    }
}
@media screen and (max-width: 768px) {
    .limited-head {
        margin-bottom: 6vw;
    }
    .limited-head h2 {
        line-height: 8vw;
    }
    .limited-head h2 span {
        font-size: 9vw;
        -webkit-text-stroke: .5vw #285dc1;
        filter: drop-shadow(1vw .8vw 0 #285dc1);
    }
    .limited-ttl .date {
        font-size: 3vw;
    }
}

/* blockname */
.campaign {
    background: url(../images/campaign-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    margin: -42px 0;
    padding: 150px 0;
    position: relative;
}
.campaign-inner {
    margin: 0 auto;
    width: 92%;
}
.campaign-head {
    margin: 0 0 65px;
    text-align: center;
}
.campaign-head h2 {
    display: inline;
    line-height: 64px;
    position: relative;
}
.campaign-head h2::before {
    background: url(../images/eyecatch.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 115px;
    position: absolute;
    left: -105px;
    bottom: 0;
    width: 129px;
}
.campaign-head h2 span {
    font-family: var(--ft-guy);
    font-size: 70px;
    font-weight: 400;
	background: linear-gradient(
		0deg,
		rgba(236, 208, 5, 1) 0%,
		rgba(253, 249, 124, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 3px #18ad9a;
	filter: drop-shadow(6px 4px 0 #18ad9a);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}
.campaign-head p {
    color: #18ad9a;
    font-size: 26px;
    font-weight: 900;
    line-height: 41px;
    margin: 25px 0 0;
}
.campaign-head p span {
    color: #18ad9a;
    font-size: .8em;
}
.campaign-item {
    margin: 0 auto;
    position: relative;
    left: 20px;
    width: 92%;
    max-width: 1033px;
}
.campaign-cta {
    margin: -50px auto 0;
    width: 92%;
    max-width: calc(669px * 0.8);
}
.campaign-cta__img {
    line-height: 0;
    filter: drop-shadow(37px 0 38px rgb(68 139 149 / 33%));
    position: relative;
    z-index: 1;
}
.campaign-cta__btn {
    margin-top: -17px;
}
.campaign-cta__btn a {
    display: block;
    filter: drop-shadow(8px 8px 0 #74432a);
}
.campaign-codebox {
    margin: 50px auto 0;
    text-align: center;
}
.campaign-date {
    line-height: 0;
    margin: 0 auto 50px;
    width: 92%;
    max-width: 1290px;
}
.campaign-code {
    filter: drop-shadow(37px 0 38px rgb(68 139 149 / 33%));
    line-height: 0;
    margin: 0 auto;
    width: 92%;
    max-width: 1074px;
}
@media screen and (max-width: 968px) {
    .campaign {
        background-image: url(../images/campaign-bg-sp.png);
        margin: -4vw 0px;
        padding: 24vw 0 18vw;
    }
    .campaign-head {
        margin: 0 0 10vw;
    }
    .campaign-head h2 {
        line-height: 7vw;
    }
    .campaign-head p {
        font-size: 23px;
        line-height: 36px;
        margin: 20px 0 0;
    }
    .campaign-item {
        left: 0;
        width: 100%;
    }
    .campaign-cta {
        margin: 4vw auto 0;
    }
    .campaign-cta__img {
        filter: none;
        margin: 0 auto -11vw;
        width: 85%;
    }
    .campaign-cta__btn {
        margin-top: 0;
    }
    .campaign-cta__btn a {
        filter: drop-shadow(1vw 1vw 0 #74432a);
    }
    .campaign-codebox {
        margin: 5vw auto 0;
    }
    .campaign-date {
        margin: 0 auto 5vw;
        width: 100%;
    }
    .campaign-code {
        filter: drop-shadow(37px 0 38px rgb(68 139 149 / 33%));
    }
}
@media screen and (max-width: 768px) {
    .campaign-head h2 {
        line-height: 8vw;
    }
    .campaign-head h2 span {
        font-size: 9vw;
        -webkit-text-stroke: .5vw #18ad9a;
        filter: drop-shadow(1vw .8vw 0 #18ad9a);
    }
    .campaign-head h2::before {
        height: 15vw;
        left: -16vw;
        width: 20vw;
    }
    .campaign-head p {
        font-size: 3.8vw;
        line-height: 5.5vw;
        margin: 4vw 0 0;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}