@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width:751px) {

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #000000;
	--sub-text-color:#606060;
	--nj-primary-color: #2E6BA2;
	--star-primary-color: #01A5A7;
	--nj-accent-color: #C0111F;
	--star-accent-color: #E94F97;
	--red-color: #EE0000;
	--star-bg01-color: #EAE2BD;
	--bg-color: #FFFFFF;
	--bg02-color: rgb(0 0 0 / 0.8);
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--font-teko: Teko, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #000; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
}
#nj {
	--text-link: var(--nj-accent-color);
	--primary-color: var(--nj-primary-color);
	--accent-color: var(--nj-accent-color);
}
#s {
	--text-link: var(--star-accent-color);
	--primary-color: var(--star-primary-color);
	--accent-color: var(--star-accent-color);

}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.main__wrap{
	padding-top: 66px;
	background-color: #fff;
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-white{color: #FFF;}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 11px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}
.note__list li.fc-red{color: var(--red-color);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.credit{
	font-size: 10px;
	padding-top: 16px;
	padding-bottom: 40px;
	text-align: center;

}

.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}

/* PC用設定 */
@media screen and (min-width:751px) {
	:root {
    --scale-factor: 1.15; /* 1.15倍に */
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}
	.container {
		max-width: 540px;
	}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/* フェードアップ */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}


/* animationフェードダウン */
.js__fadeDown{
	opacity: 0; /* 最初は非表示 */
	transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
	animation-name:fadeInDown;
	animation-duration: 1.3s;
	animation-fill-mode: both;
	opacity: 1;
}

@keyframes fadeInDown {
	from {
			opacity:0;
			transform:translate3d(0, -8%, 0);
	}
	to {
			opacity:1;
			transform:none;
	}
}

/* ブラー*/
.js__blurAnime{opacity: 0; /* 最初は非表示 */}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		opacity: 0;
	}

	to {
		filter: blur(0);
		opacity: 1;
	}
}

/* flipLeft */
.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
	animation-name: flipLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: left center;
	opacity: 0;
	transition-delay: 0.8s;
	animation-delay: 0.3s;
}
@keyframes flipLeftAnime{
	from {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}

/* スライド（左から右） */
.js__slide{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide.is-inview{
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_left_to_right {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	transition: all .8s;
}

.js__diagonal.is-inview {
	animation-name: anime_diagonal_wipe;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
	0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
/* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
	100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
}

.is-transition-delayed01{transition-delay: .4s;}
.is-transition-delayed02 {transition-delay: .6s;}
.is-transition-delayed03 {transition-delay: .8s;}
.is-animation-delayed {animation-delay: .4s;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__body {
	margin-top: 8px;
	color: var(--text-color);
	background: rgba(255, 255, 255, 0.70);
	padding: 14px;
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	padding: 6px 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn_text {
	font-weight: bold;
	color: var(--btn-text-color);
}
.acc__btn_plus {
	background-color: var(--btn-text-color);
	height: 16px;
	width: 16px;
	border-radius: 100%;
	position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
	content: "";
	background-color: var(--btn-base-color);
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn_plus::after {	transform: translate(-50%,-50%);}
.acc__btn_plus::before {transform: translate(-50%,-50%) rotate(90deg);}
.open .acc__btn_plus::before {transform: translate(-50%,-50%);}

/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		padding: 16px;
	}
	#nj .voice-btn__pc {
		background: linear-gradient(-90deg, #C0111F,#a20916);
		overflow: hidden;
		position: relative;
	}
	#nj .voice-btn__pc::after {
		content: "";
        left: -5%;
        top: -50%;
        z-index: 0;
        background: url(../img/nj-obj_emblem.png) center / contain no-repeat;
        position: absolute;
        width: 350px;
        height: 350px;
        opacity: .2;
        transform: rotate(-20deg);
        mix-blend-mode: darken;
	}
	#s .voice-btn__pc {
		background: url(../img/star-vt_pc_bg.png) left top / 20px 30px repeat;
		border: 4px solid #000;
		border-radius: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
		position: inherit;
		z-index: 1;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

/* サイズをかえる書き方 */
.SD01 {
	width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
大枠
------------------------------------------------------------ */
.main__wrap {
	overflow: hidden;
}
.main__inner {
	max-width: 750px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
	margin-left: auto;
	margin-right: auto;
	position: inherit;
	z-index: 1;
}
.main__wrap{
	position: relative;
}
.main_bg__inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
	z-index: 0;
}
.main_bg__nj,
.main_bg__star {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position: center;
	clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
}
.main_bg__nj{
	background-image: url('../img/nj-pc-bg.webp');
	z-index: -1;
}
.main_bg__star{
	background-image: url('../img/star-pc-bg.webp');
	z-index: -2;
	transition: clip-path .8s;

}
.main_bg__star.show {
	animation-name: bg_diagonal_wipe;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	z-index: -1;
}
@keyframes bg_diagonal_wipe {
	0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
	100% {
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
}
.main_bg__star.hide {
	animation-name: bg_diagonal_wipe2;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	z-index: -1;
}
@keyframes bg_diagonal_wipe2 {
	0% {
        clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
	100% {
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
}
.main_bg__star.on.show {
	clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	animation: none;
}

.nj__wrap {
	background: url(../img/nj-bg.webp) left top / 100% auto repeat-y;
}
.star__wrap {
	background: url(../img/star-bg.jpg) left top / 100% auto repeat-y;
}
/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__head {
	aspect-ratio: 75 / 91;
	width: 100%;
}
.mv__head img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* PC用設定 */
@media screen and (min-width:751px) {

}
/* ------------------------------------------------------------
date
------------------------------------------------------------ */
.date__date {
	display: flex;
	align-items: center;
	justify-content: center;
}
.date__inner {
	text-align: center;
	font-family: var(--font-teko);
	font-weight: 600;
	letter-spacing: 0.005em;
	line-height: 0.5;
	text-align: center;
	padding-bottom: 0.1em;
    padding-top: 0.3em;
}
.date01__wrap {
	background-color: #000;
	display: flex;
	padding: 7px;
	height: 45px;
}
.date01__ttl {
	background-color: #FFF;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 32px 5px 20px;
	position: relative;
	width: fit-content;
	line-height: 21px;
	clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}
.date01__date {
	flex: 1;
}
.date01__inner {
	font-size: 25px;
	color: #FFF;
}
.dd_L {
	font-size: 1.4em;
	line-height: 0.5;
}
.dd_M {
	font-size: 1.2em;
	line-height: 0.5;
}
.date02__wrap {
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	padding: 8px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 432px;
    margin: 0 auto;
	height: 45px;
}
.date02__ttl {
	background-color: #000;
	border-radius: 4px;
	color: #FFF;
	font-size: 12px;
	letter-spacing: 0.1em;
	font-weight: 700;
	line-height: 1.75;
	padding: 1px 8px;
}
.date02__inner {
	font-size: 25px;
	color: #000;
}
.date03__wrap {
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	align-items: center;
	max-width: 432px;
	margin: 0 auto;
}
#nj .date03__wrap {
	background-color: #000;
}
#s .date03__wrap {
	background-color: #fff;
	border: 2px solid #000;
}
.date03__ttl {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	align-self: stretch;
	font-weight: 700;
	padding: 2px;
}
#nj .date03__ttl {
	background-color: #FFF;
	color: #000;
}
#s .date03__ttl {
	background-color: #000;
	color: #FFF;
}
#nj .dt_01 {
	color: var(--nj-accent-color, #C0111F);
}
#s .dt_01 {
	color: var(--star-accent-color, #C0111F);
}
.dt_02 {
	font-size: 16px;
	line-height: 1.3;
}
.date03__date {
	align-self: stretch;
	height: 20px;
}
#nj .date03__inner {
	background-color: #000;
	color: #FFF;
}
#s .date03__inner {
	background-color: #FFF;
	color: #000;
}
.date03__inner {
	font-size: 19px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.date01__wrap {
		justify-content: center;
		gap: 16px;
	}
	.date01__date {
		flex: none;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__text {
	max-width: 430px;
	margin: 0 auto;
}
.intro__text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#nj .intro__text {
	aspect-ratio: 115 / 87;
	width: 100%;
}
#s .intro__text {
	aspect-ratio: 	345 / 221;
	width: 100%;
	margin-top: 16px;
}
.js__rotate {
	opacity: 0;
	transform: rotate(180deg) scale(2);
}
.js__rotate.is-inview {
	animation: rotateAnime .7s cubic-bezier(0.54, 0, 0.87, 1.21) 0s forwards;
}
@keyframes rotateAnime {
	0% {
		opacity: 0;
		transform: rotate(240deg) scale(2);
	}
	90% {
		opacity: 1;
		transform: rotate(-2deg) scale(.95);
	}
	95% {
		opacity: 1;
		transform: rotate(1deg) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
#nj_Menu
#star_Menu
------------------------------------------------------------ */
.menu__wrap {
	padding: 32px 0 40px;
}
.menu__box {
	padding: 15px;
	max-width: 400px;
	margin: 0 auto;
}
#nj .menu__box {
	background: url(../img/nj-contents.png) center top / contain no-repeat, linear-gradient(180deg, #1E6CB7 0%, #44AEE2 100%);
}
#s .menu__box {
	background: url(../img/star-bg03.svg) center top / 10px 10px repeat, var(--star-primary-color);
	border: 4px solid var(--text-color);
	padding: 11px;
}
.menu__head {
	font-weight: 900;
	text-align: center;
	font-size: 18px;
	color: var(--bg-color);
}
.menu__list{
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	margin-top: 10px;
}
#nj .menu__list li{
	aspect-ratio: 315 / 40;
	width: 100%;
}
#s .menu__list li{
	aspect-ratio: 315 / 44;
	width: 100%;
}
.menu__list li a{
	display: block;
	position: relative;
}
.anc__btn {
	overflow: hidden;
	border-radius: 4px 0 0 4px;
}
.anc__balloon {
	position: absolute;
    width: 23%;
    transform: rotate(8deg);
    top: -30%;
    right: 7%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{gap: 12px;}

	.menu__list li a{
		transition: all .3s;
		display: block;
	}
	.menu__list li a:hover{
		filter: drop-shadow(0 3px 0px rgba(0, 0, 0, 1));
		transform: translateY(-3px);

	}
}

/* ------------------------------------------------------------
section共通
------------------------------------------------------------ */

#nj .sec__wrap {
	padding-top: 16px;
}
#s .sec__wrap {
	padding-top: 48px;
}
.sec__head__wrap {
	margin: 0 -4.35% -8px;
	position: relative;
}
#nj .sec__head__wrap {
	padding-bottom: 32px;
}
#nj .bg_none.sec__head__wrap {
	padding-bottom: 0;
	margin-bottom: -32px;
}
.sec__head__bg {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}
.sec__head__bg img {
	position: relative;
    top: -32px;
	opacity: 0;
	transform: scale(.1);
	transition: all .1s ease-out .6s;
}
.bg_none .sec__head__bg img {
	top: -48px;
}
.is-inview .sec__head__bg img {
	opacity: 1;
	transform: scale(1);
}
#nj_novelty .sec__head__bg img {
    top: 32px;
}
#nj_present .sec__head__bg img {
    top: 32px;
}
.sec__head__emblem {
	position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 0;
}
.sec__head__emblem img {
	width: 200px;
	opacity: 0;
	transform: rotate(360deg);
	transition: all .7s ease-out;
}
.is-inview .sec__head__emblem img {
	opacity: .1;
	transform: rotate(0deg);
}
#nj .sec__head__text {
	position: relative;
	z-index: 2;
	margin-top: -148px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#nj .bg_none .sec__head__text {
	margin-top: 0;
    height: 220px;
}
#nj .sec__head__match img {
	opacity: 0;
	transform: translateX(-30%);
	z-index: 0;
	aspect-ratio: 375 / 59;
}
#nj .is-inview .sec__head__match img {
	animation: njMatchAnime .2s ease-in forwards;
}
.ttl__balloon {
	position: absolute;
	width: 30%;
	transform: rotate(-8deg) scale(0);
	left: 1%;
    top: -4%;
	z-index: 4;
	transform-origin: 50% 100%;
	transition-duration: .4s;
	transition-delay: .7s;
}
.is-inview .ttl__balloon {
	transform: rotate(-8deg) scale(1);
}
@keyframes njMatchAnime {
	0% {
		opacity: 0;
		transform: translateX(-30%) skewX(10deg);
	}
	85% {
		transform: translateX(0) skewX(0);
	}
	90% {
		transform: translateX(5%) skewX(-20deg);
	}
	95% {
		transform: translateX(-1%) skewX(10deg);
	}
	100% {
		opacity: 1;
		transform: translateX(0) skewX(0);
	}
}
.sec__head__red {
	aspect-ratio: 375 / 22;
}
.sec__head__red img{
	margin-top: -12px;
	opacity: 0;
	transform: translateX(-30%);
	z-index: 1;
}
.is-inview .sec__head__red img {
	animation: njMatchAnime .2s ease-in .2s forwards;

}
.bg_none .sec__head__red {
	margin-top: 24px;
}

#s .sec__head__match {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	opacity: 1;
	position: relative;
	z-index: 1;
}
#s .is-inview .sec__head__match {
	animation: starMatchAnime .7s ease forwards;
}
@keyframes starMatchAnime {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

.sec__head__title {
	margin-top: 4px;
	opacity: 0;
	transform: rotate(180deg) scale(2);
}
#s .sec__head__title {
	margin-top: -26px;
	position: relative;
	z-index: 3;
}
.is-inview .sec__head__title {
	animation: headRotateAnime .5s cubic-bezier(1, 0.08, 0.92, 1.39) .2s forwards;
}
@keyframes headRotateAnime {
	0% {
		opacity: 0;
		transform: rotate(15deg) scale(3);
	}
	90% {
		transform: scale(.95);
	}
	95% {
		transform: scale(1.02);
	}
	100% {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}
.sec__intro {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}
.sec__pic01 {
	position: relative;
}
.sec__head__deco {
	position: absolute;
	z-index: 2;
}
.sec__head__deco img {
	opacity: 0;
	transform: scale(0);
}
.is-inview .sec__head__deco img {
	animation: headDecoAnime .3s ease-in .4s forwards;
}
@keyframes headDecoAnime {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	90% {
		opacity: 1;
		transform: scale(1.3);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.box01 {
	background-color: rgba(255, 255, 255, 0.7);
	padding: 14px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {
	padding-top: 40px;
}
	#nj .sec__head__wrap,
	#s .sec__head__wrap {
	margin: 0 auto;
	max-width: 440px;
}

#nj .bg_none.sec__head__wrap {
	margin-bottom: -16px;
}
.bg_none .sec__head__bg img {
	top: -72px;
}
#s .sec__head__title {
	margin-top: -32px;
}
#s .sec__head__wrap {
	margin-bottom: 16px;
}
}

/* ------------------------------------------------------------
#nj_enjoy
#star_enjoy
------------------------------------------------------------ */
#nj_enjoy.sec__wrap {
	background: url(../img/nj-bg02.webp) center top / 100% repeat-y;
	padding: 32px 0;
}
#star_enjoy.sec__wrap {
	background: url(../img/star-bg02.svg) center top / 49.03px repeat #FFD64D;
	padding: 32px 0;
}
.sec__enjoy__head {
	font-weight: 900;
	text-align: center;
	color: var(--bg-color);
	background-color: var(--text-color);
	padding: 2px 0;
	font-size: 16px;
}
.enjoy__box {
	padding: 16px;
	background-color: var(--bg-color);
}
#s .enjoy__box {
	border: 4px solid var(--text-color);
	padding: 12px;
}
.enjoy__step {
	font-family: Teko;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding-top: 3px;
	height: 23px;
	letter-spacing: 0.05em;
}
#nj .enjoy__step {
	color: var(--bg-color);
	background-color: var(--nj-accent-color);
}
#s .enjoy__step {
	color: var(--star-accent-color);
	background-color: var(--text-color);
}
.enjoy__innerbox {
	margin-top: 10px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.enjoy__textbox {
	flex: 1;
}
.enjoy__text01 {
	font-weight: 700;
	font-size: 16px;
}
#nj .enjoy__text01 {color: var(--nj-primary-color);}
#s .enjoy__text01 {color: var(--star-primary-color);}
.enjoy__text02 {
	font-weight: 500;
}
.enjoy__btn {
	display: block;
	padding: 8px 0;
	width: 180px;
	border-radius: 40px;
	font-weight: 700;
	text-align: center;
	position: relative;
	margin: 10px auto 0;
	transition: all .3s;
}
.enjoy__btn__cs {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.7);
	top: -3px;
	left: -3px;
	bottom: -3px;
	right: -3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-family: var(--font-teko);
	font-size: 20px;
	z-index: 3;
}
#nj .enjoy__btn {
	border: 3px solid var(--nj-accent-color, #C0111F);
	color: var(--nj-accent-color, #C0111F);
	background-color: #FEEE01;
}
#s .enjoy__btn {
	border: 3px solid var(--text-color, #000);
	color: var(--text-color, #000);
	background-color: var(--star-accent-color);
}
.enjoy__btn::after {
	display: block;
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-top: 3px solid;
	border-right: 3px solid;
	transform: translateY(-50%) rotate(45deg);
	right: 13.5px;
	top: 50%;
}
#nj .enjoy__btn::after { border-color: var(--nj-accent-color);}
#s .enjoy__btn::after { border-color: var(--text-color, #000);}
.enjoy__pic {
	width: 80px;
}
.enjoy__acc_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	gap: 8px;
	margin-top: 16px;
	cursor: pointer;
}
#nj .enjoy__acc_btn {
	color: var(--bg-color);
}
#s .enjoy__acc_btn {
	color: var(--text-color);
}
.enjoy__acc_arrow {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 3px solid;
	border-right: 3px solid;
	transform: rotate(135deg);
	transition: all .5s;
}
#nj .enjoy__acc_arrow { border-color: var(--bg-color)}
#s .enjoy__acc_arrow { border-color: var(--text-color, #000);}

.enjoy__acc_btn.open .enjoy__acc_arrow {
	transform: translateY(2px) rotate(-45deg);
}
.enjoy__acc_arrow.close_arrow {
	transform: translateY(2px) rotate(-45deg);
}
#nj_enjoy .acc__body,
#star_enjoy .acc__body {
	background-color: #FFF;
}
.enjoy__box02 {
	background-color: #FFF;
	padding: 14px;
}
.enjoy__box02__head {
	color: var(--red-color);
	font-weight: 700;
	text-align: center;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#nj_enjoy {
	padding: 48px 0;
}
#star_enjoy {
	padding: 48px 0;
}
#nj .enjoy__btn:hover {
	border: 3px solid var(--nj-accent-color, #C0111F);
	color: #FEEE01;
	background-color: var(--nj-accent-color);
}
#s .enjoy__btn:hover {
	border: 3px solid var(--text-color, #000);
	color: var(--star-accent-color);
	background-color: #000;
}
#nj .enjoy__btn:hover::after { border-color:#FEEE01;}
#s .enjoy__btn:hover::after { border-color: var(--star-accent-color);}

	
}



/* ------------------------------------------------------------
#nj_quiz
#star_quiz
------------------------------------------------------------ */
.quiz__pic01 {
	width: 100%;
	margin-left: auto;
    margin-right: auto;
}
#nj_quiz .sec__head__title {
	aspect-ratio: 375 / 91;
	margin-top: -8px;
}
#nj_quiz .sec__head__wrap {
	aspect-ratio: 375 / 247.5;
}
#star_quiz .sec__head__deco1 {
	width: 7.2%;
    bottom: 30%;
    left: 1%;
    transform: rotate(85deg);
}
#star_quiz .sec__head__deco2 {
	width: 4.67%;
    bottom: 18%;
    right: 0.2%;
    transform: rotate(0deg);
}
#star_quiz .sec__head__deco3 {
	width: 7%;
    bottom: 3%;
    right: 4%;
    transform: rotate(65deg);
}
/* PC用設定 */
@media screen and (min-width:751px) {
.quiz__pic01 {
	width: 80%;
}
}
/* ------------------------------------------------------------
#nj_talk
#star_talk
------------------------------------------------------------ */
#nj_talk .sec__head__wrap {
	aspect-ratio: 375 / 218.5;
}
#nj_talk .sec__head__title {
	aspect-ratio: 375 / 62;
	margin-top: -8px;
}
#nj_talk .sec__head__wrap.bg_none {
	aspect-ratio: 375 / 220;
}
#star_talk .sec__head__deco1 {
	width: 7.5%;
    bottom: 43%;
    left: 0.2%;
    transform: rotate(102deg);
}
#star_talk .sec__head__deco2 {
	width: 5.867%;
    bottom: 22%;
    right: 0.2%;
    transform: rotate(0deg);

}
#star_talk .sec__head__deco3 {
	width: 8%;
    bottom: 3%;
    right: 3%;
    transform: rotate(65deg);

}
.talk_splide__slide {
	padding: 0 28px;
	position: relative;
	margin-top: 16px;
}
.talk_splide__pic {
	position: relative;
	border: 1px solid #000;
}
.talk_splide__wpn {
	position: absolute;
	left: -2%;
    top: -1%;
	width: 66px;
	height: 32px;
	transform: rotate(-10deg);
	color: var(--accent-color);
	font-weight: 900;
	padding-left: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 8px;
	padding-right: 16px;
	background: url(../img/star-pic_wpn.svg) center / contain no-repeat;
}
.talk_splide-arrow {
	position: absolute;
	background-color: var(--text-color);
	border-radius: 100%;
	border: none;
	display: block;
	width: 20px;
	height: 20px;
	top: 50%;
	cursor: pointer;
}
.talk_splide-arrow::before {
	display: block;
	content: "";
	width: 5px;
	height: 5px;
	border-top: 3px solid;
	border-right: 3px solid;
	transition: all .5s;
	border-color: var(--bg-color)}

.talk_splide-prev{
	left: 0;
}
.talk_splide-next{
	right: 0;
}
.talk_splide-prev::before{
	transform: translateX(1px) rotate(-135deg);
}
.talk_splide-next::before{
	transform: translateX(-1px) rotate(45deg);

}
.talk_splide-pagination {
	gap: 8px;
	margin-top: 8px;
}
.talk_splide-page {
	display: block;
	background-color: #FFF;
	border: 1px solid #000;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	padding: 0;
}
.talk_splide-page.is-active {
	background-color: #000;
}
.talk__pic01 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.talk_splide__slide {
	padding: 0 38px;
}
.talk_splide-arrow {
	position: inherit;
	top: auto;
	left: auto;
	right: auto;
}
.talk_splide-arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	gap: 8px;
}
.talk_splide-pagination {
	margin-top: 0;
}
.talk__pic01 {
	width: 80%;
}
}


/* ------------------------------------------------------------
#nj_movie
#star_movie
------------------------------------------------------------ */
.movie__pic01 {
	width: 100%;
	margin-left: auto;
    margin-right: auto;
}
#nj_movie .sec__head__wrap {
	aspect-ratio: 375 / 245;
}
#nj_movie .sec__head__title {
	aspect-ratio: 375 / 89;
	margin-top: -8px;
}
#star_movie .sec__head__deco1 {
	width: 30px;
    bottom: 46%;
    left: 1%;
    transform: rotate(95deg);
}
#star_movie .sec__head__deco2 {
	width: 23px;
    bottom: 44%;
    right: 1%;
    transform: rotate(0deg);
}
#star_movie .sec__head__deco3 {
	width: 40px;
    bottom: -4%;
    right: 6%;
    transform: rotate(75deg);
}
/* PC用設定 */
@media screen and (min-width:751px) {
.movie__pic01 {
	width: 80%;
}
}
/* ------------------------------------------------------------
#nj_novelty
#star_novelty
------------------------------------------------------------ */
#nj_novelty .sec__head__wrap {
	aspect-ratio: 375 / 303;
}
#nj_novelty .sec__head__title {
	aspect-ratio: 125 / 49;
	margin-top: -8px;
}
#star_novelty .sec__head__deco1 {
	width: 27px;
    bottom: 56%;
    left: 0%;
    transform: rotate(105deg);
}
#star_novelty .sec__head__deco2 {
	width: 21px;
    bottom: 24%;
    right: 6%;
    transform: rotate(0deg);
}
#star_novelty .sec__head__deco3 {
	width: 40px;
    bottom: 9%;
    right: 11%;
    transform: rotate(80deg);
}
.box02 {
	padding: 14px;
}
#nj .box02 {background: rgba(46, 107, 162, 0.70);}
#s .box02 {background: rgba(193, 159, 88, 0.80);}
.box02__text01 {
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
}
.box02 dl {
	margin-top: 16px;
}
.box02 dt {
	position: relative;
	font-weight: 700;
	text-align: center;
	padding: 4px 0;
}
#nj .box02 dt {
	background-color: #FFF;
	color: var(--nj-primary-color);
}
#s .box02 dt {
	background-color: var(--star-primary-color);
	color: #FFF;
}
.box02__wpn {
	position: absolute;
	width: 64px;
	height: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #FFF;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}
#nj .box02__wpn {background: url(../img/nj-novelty_wpn.svg) center / contain no-repeat;}
#s .box02__wpn {background: url(../img/star-novelty_wpn.svg) center / contain no-repeat;}
.box02__wpn_text01 {
	font-weight: bold;
	font-size: 11px;
	line-height: 1;
	text-align: center;
}
.box02__wpn_text01 span {
	font-size: 16px;
	line-height: 1;
}
.box02 dd {
	margin-top: 8px;
	color: #FFF;
	text-align: center;
	font-weight: 500;
}

.box03 {
	border-style: solid;
	border-width: 2px;
	padding: 16px;
	background-color: #FFF;
}
#nj .box03 {border-color: var(--nj-primary-color);}
#s .box03 {border-color: #000;}
.box03__list01 + .box03__list01 {
	margin-top: 16px;
}
.box03__list01>dt {
	font-weight: bold;
	text-align: center;
	padding: 2px 0;
	color: #FFF;
	background-color: var(--primary-color);
}
.box03__list01>dd {
	margin-top: 8px;
}
.box03__text01 {
	font-weight: 500;
}
.box03__text02 {
	font-weight: bold;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	color: var(--primary-color);
}

.box03__list02 {
	margin-top: 12px;
}
.box03__list02>dt {
	color: var(--accent-color);
	border-bottom: 1px solid var(--primary-color);
	text-align: center;
	font-family: var(--font-teko);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	height: 25px;
}
.box03__list02>dd + dt {
	margin-top: 16px;
}
.box03__list02>dd {
	margin-top: 8px;
	font-weight: 500;
}
.button01 {
	display: flex;
	flex-direction: row;
	gap: 8px;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--accent-color);
	border-radius: 40px;
	padding: 8px 0;
	max-width: 180px;
	margin: 16px auto 0;
	color: var(--accent-color);
	text-align: center;
	font-weight: bold;
	transition: all .3s;
	background-color: #FFF;
}
.button01__icon {
	width: 13px;
	height: 16px;
	transition: all .3s;
}
#nj .button01__icon {background: url(../img/nj-pdf_icon.svg) center / contain no-repeat;}
#s .button01__icon {background: url(../img/star-pdf_icon.svg) center / contain no-repeat;}
.novelty__pic01 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.novelty__pic01 img {
	position: relative;
	z-index: 2;
}
#nj .novelty__pic01 img {
	filter: drop-shadow(0 10px 0 rgba(46, 107, 162, 0.5));
}
#s .novelty__pic01 img {
	filter: drop-shadow(0 10px 0 rgba(193, 159, 88, 0.5));
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.button01:hover {
		background-color: var(--accent-color);
		color: #FFF;
	}
	#nj .button01:hover .button01__icon,
	#s .button01:hover .button01__icon {
		background: url(../img/pdf_icon.svg) center / contain no-repeat;
	}
.present__cs p {
	font-size: 50px;
}
.novelty__pic01 {
	width: 80%;
}
}


/* ------------------------------------------------------------
#nj_present
#star_present
------------------------------------------------------------ */
#nj_present .sec__head__wrap {
	aspect-ratio: 375 / 329.5;
}
#nj_present .sec__head__title {
	aspect-ratio: 125 / 58;
	margin-top: -8px;
}
#star_present .sec__head__deco1 {
	width: 30px;
    bottom: 19%;
    left: 1%;
    transform: rotate(125deg);
}
#star_present .sec__head__deco2 {
	width: 21px;
    bottom: 21%;
    right: 4%;
    transform: rotate(0deg);
}
#star_present .sec__head__deco3 {
	width: 40px;
    bottom: 7%;
    right: 9%;
    transform: rotate(75deg);
}
.present__pic__wpn {
	position: absolute;
	left: -2%;
    top: -1%;
	width: 106px;
	height: 37px;
	transform: rotate(-10deg);
	color: #FFF;
	font-weight: 900;
	padding-left: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 8px;
	padding-right: 16px;
}
#nj .present__pic__wpn{background: url(../img/nj-present_wpn.svg) center / contain no-repeat;}
#s .present__pic__wpn{background: url(../img/star-present_wpn.svg) center / contain no-repeat;}
.present__pic__wpn span {
	font-size: 24px;
}
.sec__text01 {
	font-weight: 500;
	text-align: center;
}
.present__pic01 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
/* .present__cs {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	background-color: rgba(255, 255, 255, 0.3);
	width: 100%;
	aspect-ratio: 345 / 245;
}
.present__cs p {
	font-family: var(--font-teko);
	font-size: 32px;
	color: #000;
} */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}


/* ------------------------------------------------------------
#nj_link
#star_link
------------------------------------------------------------ */
#nj_link.sec__wrap,
#star_link.sec__wrap {
	padding-top: 40px;
}
.link__wrap {
	max-width: 240px;
	margin: 0 auto;
}
.link__wrap li a {
	display: block;
}
.link__wrap li + li {
	margin-top: 16px;
}
.link__wrap a {
	transition: all .3s;
}
.link__jump {
	display: flex;
	gap: 8px;
	background-color: #000;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-weight: bold;
}
.link__jump__arrow {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 3px solid;
	border-right: 3px solid;
	transform: rotate(135deg);
	transition: all .5s;
	border-color: var(--bg-color)}

/* PC用設定 */
@media screen and (min-width:751px) {
	.link__wrap a:hover {
	box-shadow: 0 3px 0px rgba(0, 0, 0, 1);
	transform: translateY(-3px);
}

}


/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}


/* ------------------------------------------------------------
howto
------------------------------------------------------------ */
.icon_phone {
	width: 46px;
	display: block;
	margin: 16px auto;
}
/* splide */
.howto_splide {
  position: relative;  /* ここで基準にする */
}
/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
	position: absolute;
	top: 50%;    /* 縦中央 */
	transform: translateY(-50%);  /* 上下補正 */
	background: none;
	border: none;
	padding: 0;
	width: auto;
	height: auto;
	z-index: 10;   /* スライドの上に表示 */
	cursor: pointer;
}
/* 左右の位置 */
.howto_splide .splide__arrow--prev {left: -3px;  /* 左端 */}
.howto_splide .splide__arrow--next {right: -3px;  /* 右端 */}
/* 画像だけ表示 */
.howto_splide .splide__arrow img {
	display: block;
	width: 29px;   /* お好みで調整 */
	height: auto;
}
/* ページネーションリセット */
.howto_splide .splide__pagination {
	all: unset;
	display: flex !important; /* 強制表示 */
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 4px;
}
.howto_splide .splide__pagination__page {
	all: unset;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #F5F5F5;
}
.howto_splide .splide__pagination__page.is-active {
	background: var(--primary-color);
}

/* スライド自体をフレックスコンテナに */
.howto_splide .slide__box {
	display: flex;             /* フレックス化 */
	flex-direction: column;    /* 上下方向 */
	justify-content: center;   /* 縦中央 */
	align-items: center;       /* 横中央 */
	text-align: center;        /* テキスト中央寄せ */
	background-color: #F5F5F5;
	border-radius: 8px;
	padding: 16px 8px;
}
.howto_splide .splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 93%;
    margin: 0 auto;
}
.howto_splide .slide__box--inner p{
	font-weight: bold;
	font-size: 15px;
}
.img-btn_VT01{
	width: 172px;
	margin: 0 auto 8px;
}
.plate-bk{
	background-color: #000;
	color: #fff;
	border-radius: 40px;
	padding: 3px 12px;
	line-height: 1.2;
	margin-bottom: 2px;
	margin-top: 2px;
}
.aori-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4px;
}
.aori-txt::before, .aori-txt::after {
	width: 2px;
	height: 24px;
	background-color: #000;
	content: '';
}
.aori-txt::before {
	transform: rotate(-35deg);
	margin-right: 20px;
}
.aori-txt::after {
	transform: rotate(35deg);
	margin-left: 20px;
}
.slide__box--inner.flex{
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.flex-left{
width: 80%;
flex-shrink: 0;
}
.slide__box--inner .icon{
	width: 36px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.flex-left{
		width: auto;
		}
}



/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 16px;
	top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
	position: fixed;
	bottom: 20px;
	right: 10px;
	transition: .3s;
	width: 56px;
	z-index: 99;
	opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
	position: absolute;
	top: -70px;
	bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.7);
	color: #000;
	font-weight: 400;
	text-align: center;
	padding: 6px;
	font-family: var(--font-teko);
	line-height: 24px;
	font-size: 30px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#nj .cs.event-end-block{
transform: translate(-50%, -50%) skewX(-10deg);
    width: 90%;
    height: 77%;
}
#s .cs.event-end-block {
	border-radius: 11px;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform: translate(-50%, -50%);
}
#nj .cs.event-end-block {
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;

}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}




/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */


.mgbS{margin-bottom: 8px;}/* PC:8px */
.mgbM{margin-bottom: 16px;}/* PC:24px */
.mgbL{margin-bottom: 24px;}/* PC:32px */
.mgbLL{margin-bottom: 32px;}/* PC:40px */

.mgtSS{margin-top: 4px;}/* PC:4px */
.mgtS{margin-top: 8px;}/* PC:8px */
.mgtM{margin-top: 16px;}/* PC:24px */
.mgtL{margin-top: 24px;}/* PC:32px */
.mgtLL{margin-top: 32px;}/* PC:40px */

.pdtS{padding-top: 8px;}/* PC:8px */
.pdtM{padding-top: 16px;}/* PC:24px */
.pdtL{padding-top: 24px;}/* PC:32px */

.pdbS{padding-bottom: 8px;}/* PC:8px */
.pdbM{padding-bottom: 16px;}/* PC:24px */
.pdbL{padding-bottom: 24px;}/* PC:32px */

/* PC用設定 */
@media screen and (min-width:751px) {
	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

	.mgtM{margin-top: 24px;}
	.mgtL{margin-top: 32px;}
	.mgtLL{margin-top: 40px;}

	.pdtM{padding-top: 24px;}
	.pdtL{padding-top: 32px;}

	.pdbM{padding-bottom: 24px;}
	.pdbL{padding-bottom: 32px;}
}
