body {
    background: linear-gradient(to bottom, #b089bc 0%, #753c93 50%);
	font-family: "zen-maru-gothic", sans-serif;
    font-weight: 400;
	letter-spacing: -0.05em;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: min(1.4vw,18px);
	line-height: 1.4;
}

:root {
    --bg_gray: #f0f0f0;
}
/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
    position: relative;
}
header::before {
    content: "";
    display: block;
    width: 30%;
    max-width: 680px;
    height: 100%;
    background: url("../img/main_bg.png") left top / contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
header .main {
    max-width: 1200px;
    margin: auto;
    padding-top: 200px;
    position: relative;
    z-index: 2;
}
header .main .logo {
    width: 70%;
    margin: auto;
}
header .main img[class^="img0"] {
    width: 22%;
    max-width: 460px;
    position: absolute;
    top: 0;
}
header .main img.img01 {
    top: 12%;
    left: -2%;
}
header .main img.img02 {
    top: 72%;
    left: 2%;
}
header .main img.img03 {
    top: -4%;
    left: 34%;
}
header .main img.img04 {
    top: -3%;
    right: 21%;
}
header .main img.img05 {
    top: 6%;
    right: -2%;
}
header .main img.img06 {
    top:66%;
    right: 0;
}

header .main.yay.on img.img01 {
    animation: main_img01 .6s;
}
@keyframes main_img01 {
	0% {opacity: 0; transform: translate(-30px,-15px);}
	100% {opacity: 1; transform: translate(0);}
}
header .main.yay.on img.img02 {
    animation: main_img02 .6s;
}
@keyframes main_img02 {
	0% {opacity: 0; transform: translate(-30px,15px);}
	100% {opacity: 1; transform: translate(0);}
}
header .main.yay.on img.img03,
header .main.yay.on img.img04 {
    animation: main_img03 .6s;
}
@keyframes main_img03 {
	0% {opacity: 0; transform: translate(0,-15px);}
	100% {opacity: 1; transform: translate(0);}
}
header .main.yay.on img.img05 {
    animation: main_img05 .6s;
}
@keyframes main_img05 {
	0% {opacity: 0; transform: translate(30px,-15px);}
	100% {opacity: 1; transform: translate(0);}
}
header .main.yay.on img.img06 {
    animation: main_img06 .6s;
}
@keyframes main_img06 {
	0% {opacity: 0; transform: translate(30px,15px);}
	100% {opacity: 1; transform: translate(0);}
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
.container {
	width: calc(100% - 80px);
	padding: 0 40px;
}
.max1200 {
	max-width: 1200px;
	margin: auto;
}
.max589 {
	max-width: 589px;
	margin: auto;
}
.max800 {
    max-width: 800px;
    margin: auto;
}
.max460 {
    max-width: 460px;
    margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.align_end {
	align-items: flex-end;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.wrap {
    display: inline-block;
}

/* フォント */
.font_14 {
	font-size: min(1.2vw,14px);
}
.font_16 {
	font-size: min(1.3vw,16px);
}
.font_20 {
	font-size: min(1.6vw,20px);
}
.font_24 {
	font-size: min(1.8vw,24px);
}
.font_30 {
	font-size: min(2.4vw,30px);
}
.font_34 {
	font-size: min(2.6vw,34px);
}
.font_46 {
	font-size: min(3.4vw,46px);
}
.font_54 {
	font-size: min(4vw,54px);
}
.txt_center {
	text-align: center;
}
.bold {
	font-weight: 700;
}
.black {
    font-weight: 900;
}
.medium {
    font-weight: 500;
}
.white {
    color: #fff;
}
.red {
    color: #e7380d;
}
.purple {
    color: #601986;
}
.yellow {
    color: #fff000;
}
.line1 {
    line-height: 1;
}
.line1_2 {
    line-height: 1.2;
}
.line1_6 {
    line-height: 1.6;
}
.gothic {
	font-family: "noto-sans-cjk-jp", sans-serif;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1.2s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	50% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinright {
	animation: fadeinright .6s;
}
@keyframes fadeinright {
	0% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.animated.fadeinright.second {
	animation: fadeinright_2nd 1.2s;
}
@keyframes fadeinright_2nd {
	0% {opacity: 0; transform: translateX(30px);}
	50% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.yay {
    opacity: 0;
    transform: translateY(2px);
    transition: all 1s;
}
.yay.fadeinup {
    transform: translateY(20px);
}
.yay.on {
    transform: translateY(0);
    opacity: 1;
}
.yay.fadeinup.second.on {
    animation: yay_up_2nd 1.2s;
}
@keyframes yay_up_2nd {
	0% {opacity: 0; transform: translateY(20px);}
	16.66% {opacity: 0; transform: translateY(20px);}
	100% {opacity: 1; transform: translateY(0);}
}


/*==================================================================================
メイン
==================================================================================*/
section#main {
    padding: 30px 0 0;
    position: relative;
}
section#main::before {
    content: "";
    display: block;
    width: 8%;
    max-width: 140px;
    height: 100%;
    background: url("../img/bg01.png") left top / contain no-repeat;
    position: absolute;
    top: 30%;
    left: 8%;
}
section#main::after {
    content: "";
    display: block;
    width: 8%;
    max-width: 160px;
    height: 100%;
    background: url("../img/bg02.png") left top / contain no-repeat;
    position: absolute;
    top: 10%;
    right: 5%;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 210px;
    box-sizing: border-box;
    padding-top: 75px;
    background: url("../img/btn01.png") center top / contain no-repeat;
    color: #fff;
    z-index: 10;
	/*animation: btn 1.4s linear infinite;*/
}
@keyframes btn {
	0% {transform: rotate(0);}
	25% {transform: rotate(3deg);}
	50% {transform: rotate(0);}
	75% {transform: rotate(-3deg);}
	100% {transform: rotate(0);}
}
.btn:hover {
	transition: transform .3s;
    transform: scale(1.1);
}
.btn:nth-child(1) {
    margin-right: 40px;
}
.btn:nth-child(2) {
    background-image: url("../img/btn02.png");
}
.btn p {
    text-align: center;
    line-height: 1.2;
}
.btn p.font_24 {
    font-size: 24px;
}
.btn p.font_20 {
    font-size: 20px;
}
.mov {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 10;
}
.mov .img {
    width: 160px;
    position: absolute;
    right: -180px;
    bottom: 0;
}
.mov iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 2;
}
/*==================================================================================
オリジナルアクリルスタンド
==================================================================================*/
section#present01 {
	padding: 60px 0 0;
    position: relative;
}
section#present01::before {
	content: "";
	width: 14%;
	height: 14%;
    background: url("../img/bg03.png") left top / contain no-repeat;
	position: absolute;
	top: 5vw;
	left: 10%;
}
.boad {
    padding: 20px;
    background: #fff;
    border: 6px #fccf00 solid;
    border-radius: 50% 50% 20px 20px;
    position: relative;
    z-index: 10;
}
section#present01 .boad {
    background: url("../img/present01_02.png") left 20px top 45% / 16% no-repeat #fff;
} 
section#present01 .boad .img {
    width: 27%;
    box-sizing: border-box;
    position: absolute;
    top: -12%;
    right: -2%;
    z-index: 2;
} 

section#present01 .boad .img span {
    font-size: 10px;
    color: #fff;
	position: absolute;
	right: 5%;
	bottom: 10%;
} 
section#present01 .boad::after {
    content: "";
    display: block;
    width: 16%;
    height: 30%;
    background: url("../img/present01_03.png") right top / contain no-repeat;
    position: absolute;
    top: 35%;
    right: -2%;
    z-index: 2;
} 
h2 {
    text-align: center;
    letter-spacing: 0.5em;
}
h2 span.p_num {
    display: inline-block;
    width: 140px;
    margin: 0 auto 20px;
}
section#present01 h2 .ttl {
    width: 90%;
    margin: auto;
}
section#present01 h2 .chusen500 {
    width: 70%;
    margin: auto;
}
section#present01 .oubo span {
    display: inline-block;
    padding: 8px 20px 8px 30px;
    border: 2px #000 solid;
    border-radius: 10px;
    position: relative;
}
section#present01 .oubo span::after {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background: url("../img/present01_oubo.png") center center / contain no-repeat;
    position: absolute;
    top: -40%;
    left: -50px;
}
section#present01 .col2 {
    width: calc(50% - 5px);
    box-sizing: border-box;
    padding: 40px 20px 20px;
    background: #e9e5e2;
    border-radius: 20px;
    position: relative;
}
section#present01 h3 {
    width: 100%;
    position: absolute;
    top: -30px;
    left: 0;
}
section#present01 h3 img {
    width: 50px;
    margin-right: 20px;
}
section#present01 h3 span {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 3px #601986 solid;
}
section#present01 .col2:nth-child(1) h3 span {
    letter-spacing: 0.3em;
}
section#present01 .result span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    background: url("../img/resullt.png") center center / contain no-repeat;
}
section#present01 .result p {
    width: calc(100% - 5.8em);
}
section#present01 ul li {
    margin-bottom: 5px;
}
section#present01 ul li p {
    padding-left: 30px;
    position: relative;
}
section#present01 ul li p span.num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #601986;
    color: #fff;
    position: absolute;
    top: 2px;
    left: 0;
}

/*==================================================================================
オリジナルステッカー
==================================================================================*/
section#present02 {
    padding: 60px 0 17vw;
    background: url("../img/bg04.png") left 10% top 10% / 10% no-repeat, url("../img/bg05.png") right 8% top 5% / 16% no-repeat;
    position: relative;
}
section#present02::after {
    content: "";
    display: block;
    width: 100%;
    height: 70%;
    background: url("../img/present_btm.png") center bottom / contain no-repeat;
    position: absolute;
    bottom: -7vw;
    left: 0;
    z-index: 2;
}
section#present02 .boad::before {
    content: "";
    display: block;
    width: 18%;
    height: 24%;
    background: url("../img/present02_01.png") left top / contain no-repeat;
    position: absolute;
    top: 22%;
    left: 3%;
    z-index: 2;    
}
section#present02 h2 {
    position: relative;
    z-index: 2;
} 
section#present02 h2 .ttl {
    width: 62%;
    margin: 0 auto 10px;
}
section#present02 h2 .sticker span {
    display: inline-block;
    padding: 5px 20px;
    background: #ec6c00;
    color: #fff;
    letter-spacing: -0.1em;
}
section#present02 .img {
    width: 36%;
    box-sizing: border-box;
	padding-bottom: 15px;
    position: absolute;
    top: 18%;
    right: -4.5%;
    z-index: 2;
} 
section#present02 .img span {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0;
    position: absolute;
    bottom: 0;
	left: 16%;
} 
section#present02 .senchaku {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10em;
    height: 10em;
    border-radius: 50%;
    background: #ec6c00;
    color: #fff;
    position: absolute;
    top: 4%;
    right: 10%;
}
section#present02 .senchaku span {
    display: block;
    margin-bottom: 5px;
}
section#present02 h3 {
    max-width: 95%;
    margin: 0 auto 10px;
    position: relative;
	z-index: 2;
}
section#present02 h3::before {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px #000 solid;
    position: absolute;
    top: 50%;
    left: 0;
}
section#present02 h3::after {
    content: "";
    display: block;
    width: 10%;
	height: 14vw;
	max-height: 140px;
	background: url("../img/present02_03.png") right top / contain no-repeat;
	position: absolute;
	top: -400%;
	right: -2%;
	z-index: 2;
}
section#present02 h3 span {
    display: inline-block;
    padding-right: 5px;
    background: #fff;
    position: relative;
    z-index: 2;
}
section#present02 ul {
    max-width: 95%;
    align-content: flex-start;
    clear: both;
    margin: auto;
	position: relative;
}
section#present02 ul li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    float: left;
}
section#present02 ul li:nth-child(even) {
    margin-left: 20px;
}
section#present02 ul li:nth-child(3),
section#present02 ul li:last-child {
    clear: both;
}
section#present02 ul li:nth-child(5) {
    margin-top: -60px;
}
section#present02 ul li:nth-child(6) {
    clear: both;
    margin-left: 0;
}
section#present02 ul li:nth-child(7) {
    float: right;
	margin-top: -8%;
}
section#present02 ul li span.ttl {
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    background: #f8b62d;
}
section#present02 ul li:nth-child(2) span.ttl {
    background: #dae000;
}
section#present02 ul li:nth-child(3) span.ttl {
    background: #a2d7d4;
}
section#present02 ul li:nth-child(4) span.ttl {
    background: #c6abd1;
}
section#present02 ul li:nth-child(5) span.ttl {
    background: #f3abca;
}
section#present02 ul li:nth-child(6) span.ttl {
    background: #dcd1c4;
}
.border {
    border-bottom: 1px #000 solid;
}

/*==================================================================================
コラボイベント
==================================================================================*/
section#event {
    padding: 10vw 0 16vw;
    background: linear-gradient(to bottom, #fff 0%, #f8b62d 50%);
	position: relative;
}
section#event::after {
    content: "";
    display: block;
    width: 100%;
    height: 70%;
    background: url("../img/footer_bg.png") center bottom / contain no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
section#event .container {
	position: relative;
}
section#event h2 {
    letter-spacing: 0;
	position: relative;
}
section#event h2::before {
	content: "";
	display: block;
	width: 12%;
	height: 100%;
	background: url("../img/event_bg01.png") left top / contain no-repeat;
	position: absolute;
	top: -2%;
	left: 0;
}
section#event h2 span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 1em .4em;
    background: url("../img/event_h2.png") center bottom / contain no-repeat;
}
section#event h2 p {
    padding: .4em 0 .5em;
    background: url("../img/event_h2_02.png") center center / contain no-repeat;
    color: #fff;
}
section#event .img01 {
    width: 20%;
	position: absolute;
	top: 14%;
	left: 3%;
}
section#event .img02 {
    width: 20%;
	position: absolute;
	top: 2%;
	right: 1%;
}
section#event .scroll {
    padding: 0 10%;
	position: relative;
}
section#event .scroll::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url("../img/event_map_bg.png") center bottom 30% / contain no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
section#event .scroll img {
	position: relative;
	z-index: 2;
}
section#event .col2 {
    width: calc(50% - 20px);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    position: relative;
	z-index: 10;
}
section#event .col2::after {
    content: "";
    display: block;
    width: 30%;
    height: 30%;
    background: url("../img/event01.png") right top / contain no-repeat;
    position: absolute;
    right: -10px;
    bottom: -14%;
}
section#event .col2:nth-child(2)::after {
    background-image: url("../img/event02_02.png");
    right: -50px;
    bottom: -10px;
}
section#event .ttl {
    position: relative;
	z-index: 3;
}
section#event .col2:nth-child(2) .ttl::after {
    content: "";
	display: block;
	width: 40%;
	height: 380%;
	background: url("../img/event02_01.png") right top / contain no-repeat;
	position: absolute;
	top: -110%;
	right: -11%;
	z-index: 2;
}
section#event .ttl .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    box-sizing: border-box;
    border-radius: 50%;
    border: 14px #fff solid;
    background: linear-gradient(-225deg, #fff000 0%, #f18e00 100%);
    position: absolute;
    top: 50%;
    left: -1.5em;
    transform: translateY(-50%);
    z-index: 2;
}
section#event .col2:nth-child(1) .ttl .item {
    padding-bottom: .5em;
}
section#event .col2:nth-child(2) .ttl .item {
    background: #601986;
    color: #f8b62d;
}
section#event .ttl h3 {
    padding: .3em 1em .3em 4.2em;
    background: #000;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
}
section#event .ttl h3 span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff000;
    color: #000;
    margin-right: .2em;
}
section#event .col2 .span {
    display: inline-block;
    padding: 2px 15px 10px;
    background: #601986;
    color: #fff;
	letter-spacing: 0.05em;
}
section#event .col2 .cont {
    padding: 12px 10px;
    border-radius: 10px;
    background: #faee00;
    color: #601986;
	position: relative;
}
section#event .col2 .cont.and {
    margin-bottom: 25px;
	position: relative;
	z-index: 2;
}
section#event .col2 .cont.and::after {
    content: "&";
	display: block;
	font-size: 2.2em;
	color: #601986;
	position: absolute;
	bottom: -50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

/*==================================================================================
注意事項
==================================================================================*/
section#note {
	padding: 5vw 0;
	background: #231815;
}
section#note .boad {
	padding: 30px 60px;
	border-radius: 20px;
	border: none;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 30px 0!important;
	background: #fff;
}
footer a {
	display: block;
	width: 200px;
}


/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: calc(40px - 6px);
	height: calc(40px - 6px);
	border: 3px #faee00 solid;
	border-radius: 50%;
	background: #601986;
	position: fixed;
	right: 30px;
	bottom: 50px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 3px #faee00 solid;
	border-right: 3px #faee00 solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}



.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 980px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding-top: 0!important;
	}
	header .main {
	    padding-top: 28vw;
	}
	header .main .logo {
	    width: 100%;
	    margin: 0 auto 5vw;
	}
	header .main img.img01 {
	    top: 9%;
	    left: 0;
	}
	header .main img.img02 {
	    top: 88%;
	    left: 0;
	}
	header .main img.img03 {
	    top: 10%;
	    left: 28%;
	}
	header .main img.img04 {
	    top: 2%;
	    right: 26%;
	}
	header .main img.img05 {
	    top: 5%;
	    right: 0;
	}
	header .main img.img06 {
	    top: 88%;
	    right: -2%;
	}
	
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.container {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	.max1200 {
		max-width: 680px;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
	.font_14 {
		font-size: 12px;
	}
	.font_16 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 18px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 24px;
	}
	.font_34 {
		font-size: 24px;
	}
	.font_46 {
		font-size: 32px;
	}
	.font_54 {
		font-size: 40px;
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main {
	    padding: 0;
	}
	section#main::before {
	    width: 10%;
	    top: 40%;
	    left: 5%;
	}
	section#main::after {
	    width: 10%;
	    top: 40%;
	    right: 5%;
	}
	section#main .row.just_center {
		max-width: 600px;
		justify-content: space-between;
		margin: 0 auto 60px;
	}
	.btn {
	    width: 280px;
	    height: 180px;
	    padding-top: 55px;
		margin: 0 auto;
	}
	.btn:nth-child(1) {
		margin: 0 auto 20px;
	}
	.btn p.font_24 {
	    font-size: 20px;
	}
	.btn p.font_20 {
	    font-size: 18px;
	}
    .mov {
        aspect-ratio: auto;
        margin-bottom: 60px;
    }
    .mov .img {
        width: 260px;
        position: relative;
        right: 0;
        margin: 0 -5px -5px auto;
    }
    .mov iframe {
        border: 2px #000 solid;
    }
	/*==================================================================================
	オリジナルアクリルスタンド
	==================================================================================*/
	section#present01::before {
		width: 18%;
		top: 10vw;
		left: 5%;
	}
	.boad {
	    padding: 20px 15px;
	    border: 4px #fccf00 solid;
	    border-radius: 340px 340px 10px 10px;
	}
	section#present01 .boad {
	    background-position: left 5vw top 40vw;
	} 
	section#present01 .boad .img {
	    width: 260px;
		position: relative;
	    top: 0;
		right: auto;
		left: 37%;
		margin-bottom: 10px;
	} 
	section#present01 .boad .img span {
		color: #000;
		right: 0;
	} 
	section#present01 .boad::after {
	    width: 20%;
	    height: 15%;
	    top: 38%;
	    right: -4%;
	} 
	h2 {
	    letter-spacing: 0.3em;
	}
	h2 span.p_num {
	    width: 20%;
	    margin: 0 auto 3%;
	}
	section#present01 h2 .ttl {
	    width: 100%;
	}
	section#present01 h2 .chusen500 {
	    width: 80%;
	}
	section#present01 .oubo span {
	    padding: 6px 10px 6px 20px;
	    border-radius: 5px;
	}
	section#present01 .oubo span::after {
	    width: 50px;
	    height: 50px;
	    left: -35px;
	}
	section#present01 .col2 {
	    width: 100%;
	    padding: 40px 20px 20px;
	    border-radius: 10px;
		margin-bottom: 30px;
	}
	section#present01 .col2:nth-child(2) {
		margin-bottom: 0;
	}
	section#present01 h3 {
	    top: -20px;
	}
	section#present01 h3 img {
	    width: 40px;
	    margin-right: 10px;
	}
	section#present01 .col2:nth-child(1) h3 span {
	    letter-spacing: 0.2em;
	}
	section#present01 ul li p {
	    padding-left: 25px;
	}
	section#present01 ul li p span.num {
	    width: 20px;
	    height: 20px;
	    font-size: 12px;
	    top: 0;
	}
	section#present01 ul li:last-child p span.num {
	    top: 5px;
	}
	/*==================================================================================
	オリジナルステッカー
	==================================================================================*/
	section#present02 {
	    padding: 40px 0 17vw;
	    background: url("../img/bg04.png") left 3% top 1% / 12% no-repeat, url("../img/bg05.png") right 5% top 1% / 25% no-repeat;
	}
	section#present02::after {
	    height: 40%;
	    bottom: -7vw;
	}
	section#present02 .boad::before {
	    width: 20%;
	    height: 12%;
	    top: 25%;
	    left: 1%;
	}
	section#present02 h2 .ttl {
	    width: 80%;
	    margin: 0 auto 10px;
	}
	section#present02 h2 .sticker span {
	    padding: 3px 15px;
	}
	section#present02 .img {
	    width: 50%;
		padding-bottom: 15px;
	    position: relative;
	    top: 0;
	    right: auto;
		left: 25%;
		margin-bottom: 20px;
		white-space: nowrap;
	} 
	section#present02 .senchaku {
	    width: 8em;
	    height: 8em;
	    top: -1%;
	    right: 5%;
	}
	section#present02 h3 {
		max-width: 100%;
	}
	section#present02 h3::after {
	    width: 70px;
		height: 70px;
		top: -110%;
		right: -2%;
	}
	section#present02 ul {
	    max-width: 100%;
	}
	section#present02 ul li {
	    width: 100%;
	    margin-bottom: 20px;
	    float: none;
	}
	section#present02 ul li:nth-child(even) {
	    margin-left: 0;
	}
	section#present02 ul li:nth-child(5) {
	    margin-top: 0;
	}
	section#present02 ul li:nth-child(7) {
	    float: none;
		margin-top: 0;
	}
	/*==================================================================================
	コラボイベント
	==================================================================================*/
	section#event {
	    padding: 20vw 0 16vw;
	}
	section#event::after {
	    height: 40%;
	}
	section#event h2::before {
		width: 8%;
		top: -30%;
	}
	section#event h2 p {
		padding: .4em 20px .5em;
		background: linear-gradient(to right, #b089bc 0%, #6a1684 100%);
		clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
	}
	section#event .img01 {
		position: relative;
	    width: 25%;
		top: 0;
		left: -1%;
		margin-bottom: 40px;
	}
	section#event .img02 {
	    width: 16%;
		top: -5.5%;
		right: 1%;
	}
	section#event .scroll {
		display: block;
	  	overflow-x: scroll;
	  	white-space: nowrap;
	  	-webkit-overflow-scrolling: touch;
		padding: 0 0 10px;
		margin: 20px 0;
	}
	section#event .scroll::-webkit-scrollbar {
	  height: 8px;
	}
	section#event .scroll::-webkit-scrollbar-track {
	  margin: 0 2px;
	  background: rgba(255,255,255,0.2);
	  border-radius: 5px;
	}
	section#event .scroll::-webkit-scrollbar-thumb {
	  border-radius: 5px;
	  background: rgba(0,0,0,0.2);
	}
	section#event .scroll::after {
		display: none;
	}
	section#event .scroll img {
		min-width: 600px;
	}
	section#event .col2 {
	    width: 100%;
		max-width: 460px;
	    padding: 20px 15px;
	    border-radius: 10px;
		margin: 0 auto 60px;
	}
	section#event .col2::after {
	    width: 25%;
	    height: 25%;
	    right: -15px;
	    bottom: -8%;
	}
	section#event .col2:nth-child(2)::after {
	    right: -15px;
	    bottom: -30px;
	}
	section#event .col2:nth-child(2) .ttl::after {
		width: 26%;
		height: 280%;
		right: -9%;
	}
	section#event .ttl .item {
	    width: 4.6em;
	    height: 4.6em;
	    border: 6px #fff solid;
	    left: -1.5em;
	}
	section#event .ttl h3 {
	    padding: .3em 1em .3em 3.6em;
	    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
	}
	section#event .ttl h3 span {
	    width: 1.4em;
	    height: 1.4em;
	}
	section#event .col2 .span {
	    padding: 2px 10px 8px;
	}
	section#event .col2 .cont {
	    padding: 10px 8px;
	    border-radius: 5px;
	}
	section#event .col2 .cont.and {
	    margin-bottom: 20px;
	}
	section#event .col2 .cont.and::after {
		font-size: 2em;
		bottom: -46%;
	}
	/*==================================================================================
	注意事項
	==================================================================================*/
	section#note .boad {
		padding: 30px 20px;
		border-radius: 10px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 20px 0!important;
	}
	footer a {
		width: 160px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(36px - 4px);
		height: calc(36px - 4px);
		border-width: 2px;
		right: 20px;
		bottom: 40px;
	}
	.btn_pagetop span {
		width: 6px;
		height: 6px;
		border-width: 2px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	p {font-size: 12px;}
	
	.container {
		width: calc(100% - 30px);
		padding: 0 15px;
	}
	/* フォント */
	.font_14 {
		font-size: 10px;
	}
	.font_16 {
		font-size: 12px;
	}
	.font_20 {
		font-size: 14px;
	}
	.font_24 {
		font-size: 16px;
	}
	.font_30 {
		font-size: 20px;
	}
	.font_34 {
		font-size: 20px;
	}
	.font_46 {
		font-size: 26px;
	}
	.font_54 {
		font-size: 30px;
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main::before {
	    width: 12%;
	    top: 20%;
	}
	section#main::after {
	    width: 12%;
	    top: 25%;
	}
	section#main .row.just_center {
		margin: 0 auto 30px;
	}
	.btn {
	    width: 240px;
	    height: 150px;
	    padding-top: 50px;
	}
	.btn:nth-child(1) {
		margin: 0 auto 10px;
	}
	.btn p.font_24 {
	    font-size: 18px;
	}
	.btn p.font_20 {
	    font-size: 16px;
	}
	h1.font_34 {
		font-size: 16px;
	}
    .mov {
        margin: 60px auto;
    }
    .mov .img {
        width: 200px;
    }
	/*==================================================================================
	オリジナルアクリルスタンド
	==================================================================================*/
	.boad {
	    padding: 20px 10px;
	} 
	section#present01 .boad {
	    background-position: left 5vw top 50vw;
	} 
	section#present01 .boad .img {
	    width: 200px;
		left: 31%;
	} 
	section#present01 .boad .img span {
		right: -14%;
	} 
	section#present01 .boad::after {
	    display: none;
	} 
	h2 span.p_num {
	    width: 30%;
	}
	section#present01 h2 .ttl {
	    width: 110%;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
	section#present01 .oubo span {
	    padding: 6px 6px 6px 15px;
	}
	section#present01 .oubo span::after {
	    width: 40px;
	    height: 40px;
	    left: -30px;
	}
	section#present01 .col2 {
	    padding: 30px 10px 20px;
	}
	section#present01 ul li p {
	    padding-left: 20px;
	}
	section#present01 ul li p span.num {
	    width: 16px;
	    height: 16px;
	    top: 0;
	}
	section#present01 ul li:last-child p span.num {
	    top: 0;
	}
	/*==================================================================================
	オリジナルステッカー
	==================================================================================*/
	section#present02::after {
	    height: 12%;
	}
	section#present02 .boad::before {
	    width: 20%;
	    height: 8%;
	    top: 0;
	    left: 4%;
	}
	section#present02 h2 .sticker.font_30 {
	    font-size: 16px;
	}
	section#present02 h2 .sticker span {
	    padding: 3px 10px;
	}
	section#present02 .img {
	    width: 60%;
		left: 20%;
	} 
	section#present02 .senchaku {
		top: -2%;
	    right: 3%;
	}
	section#present02 h3::after {
	    width: 60px;
		height: 60px;
		top: -110%;
		right: -2%;
	}
	section#present02 ul {
	    max-width: 100%;
	}
	section#present02 ul li {
	    width: 100%;
	    margin-bottom: 20px;
	    float: none;
	}
	section#present02 ul li:nth-child(even) {
	    margin-left: 0;
	}
	section#present02 ul li:nth-child(5) {
	    margin-top: 0;
	}
	section#present02 ul li:nth-child(7) {
	    float: none;
		margin-top: 0;
	}
	/*==================================================================================
	コラボイベント
	==================================================================================*/
	section#event .ttl h3.font_30 {
		padding: 0.5em 1em 0.5em 4em;
		font-size: 19px;
	}
	/*==================================================================================
	コラボイベント
	==================================================================================*/
	section#event {
        padding: 25vw 0 16vw;
    }
	section#event::after {
	    height: 12%;
	}
	section#event h2::before {
		top: -25%;
	}
	section#event h2 p.font_46 {
		padding: .4em 10px .5em;
		clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%, 6px 50%);
		font-size: 20px;
	}
	section#event .img01 {
	    width: 30%;
		left: 3%;
		margin-bottom: 30px;
	}
	section#event .img02 {
	    width: 18%;
		top: -4%;
	}
	/*==================================================================================
	注意事項
	==================================================================================*/
	section#note .boad {
		padding: 20px 10px;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer a {
		width: 140px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}


