@charset "UTF-8";

/*************
FMT
*************/
.info_wrap,
.footer_container {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
}

img {
	display: block;
	width: 100%;
}

.content_wrap {
	-webkit-font-smoothing: antialiased;
	font-family: 'Noto Sans JP', serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--text-color);
	margin-top: 66px;
	background-color: var(--bg-color);
	width: 100%;
	position: relative;
	z-index: 0;
}

a:hover img {
	opacity: 1;
}

figure {
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
}

figcaption .caption {
	margin-left: auto;
	margin-right: 0;
	width: fit-content;
	font-size: 12px;
}

@media(min-width:751px) {
	.content_wrap {
		margin-top: 90px;
	}
}

:root {
	--text-color: #000000;
	--primary-color: #5A4424;
	--bg-color: #FFFFFF;
	--red-color: #EE0000;
	--accent-color: #FFFF00;
}

/*アキ*/
.mgt48 {
	margin-top: 48px !important;
}

.mgt32 {
	margin-top: 32px !important;
}

.mgt24 {
	margin-top: 24px !important;
}

.mgt16 {
	margin-top: 16px !important;
}

.mgt8 {
	margin-top: 8px !important;
}

.mgt4 {
	margin-top: 4px !important;
}

.mgt0 {
	margin-top: 0 !important;
}

/*テキストサイズ*/
.annotation {
	font-size: 12px;
}

.smallest {
	font-size: 12px;
}

.larger {
	font-size: 1.5em;
}

.smaller {
	font-size: 0.75em;
}

/* テキスト揃え */
.center {
	text-align: center;
}

.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.ib {
	display: inline-block;
}

/* テキストカラー */
.fcPrimary {
	color: var(--primary-color);
}

.fcRed {
	color: var(--red-color);
}

.fcWhite {
	color: #FFF
}

.fcYellow {
	color: #FF0;
}

/* テキスト汎用 */
.bold {
	font-weight: bold;
}

.text_link {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}

.marker {
	background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}

.relative_wrap {
	position: relative;
}

/* 箇条書き */
ul.text_list li,
p.text_list {
	text-indent: -1em;
	padding-left: 1em;
	text-align: left;
}

ul.text_list li+li {
	margin-top: 2px;
}

ul.text_list.annotation li {
	font-size: 12px;
}

@media(min-width:751px) {
	.red_box {
		font-size: 22px;
	}

	.pc_center {
		text-align: center;
	}

}

/* js-fadeUp */
.js-fadeUp {
	transform: translateY(10px);
	opacity: 0;
	transition: all 1s;
}

.js-fadeUp.is-inview {
	transform: translateY(0);
	opacity: 1;
}

/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
	display: block;
	max-width: 400px;
	margin: 32px auto 16px;
}

.comingSoon {
	pointer-events: none;
}

.qr_wrap {
	display: none;
}

@media(min-width:751px) {
	.qr_wrap {
		padding: 16px;
		margin: 16px auto 16px;
		border: 2px solid var(--primary-color);
		display: flex;
		gap: 16px;
		border-radius: 16px;
		max-width: 560px;
		align-items: center;
	}

	.qr_text {
		flex: 1;
	}

	.qr_text_wrap {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.qr_text_hd {
		/* font-weight: bold;
		margin-bottom: 6px;
		font-size: 20px;
		color: #FFF;
		background-color: var(--primary-color);
		padding: 4px 12px;
		border-radius: 40px;
		text-align: center; */
	}

	.qr_text p {
		font-size: 13px;
		text-align: center;
	}

	.qr_img {
		width: 100px;
		position: relative;
		padding: 4px;
		border: 2px solid var(--primary-color);
		border-radius: 8px;
		background-color: #FFF;
	}

	.qr_img .comingSoon {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		color: var(--text-color);
		font-size: 20px;
		line-height: 1.2;
		text-align: center;
	}
}

/* アコーディオン */
.acc_body {
	display: none;
}

.acc_btn {
	font-weight: bold;
	width: fit-content;
	margin: 32px auto 0;
	color: var(--text-color);
	position: relative;
	padding-right: 28px;
	cursor: pointer;
	transition: all 0.3s;
}

.acc_btn span {
	position: absolute;
	background-color: #FFF;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.acc_btn span::before,
.acc_btn span::after {
	content: "";
	background-color: var(--primary-color);
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}

.acc_btn span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.acc_btn.open span::before {
	transform: translate(-50%, -50%);
}

/* ご注意事項アコーディオン */
.caution_acc .acc_btn {
	padding: 4px 40px 6px 20px;
	border-radius: 30px;
	background-color: var(--primary-color);
	color: #FFF;
}

.caution_acc .acc_btn span {
	right: 10px;
}

.caution_acc .acc_body {
	margin-top: 16px;
}

.caution_head {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 4px;
}

.text_list+.caution_head {
	margin-top: 8px;
}

/*************
共通Style
*************/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.content_section {
	padding: 15px;
}

.bg_01 {
	background: url(../img/bg_pattern_01.png) repeat center center;
	background-size: 64px 74px;
	background-attachment: fixed;
}

.bg_02 {
	background: url(../img/bg_pattern_02.png) repeat center center;
	background-size: 64px 74px;
	background-attachment: fixed;
}

.bg_03 {
	background: url(../img/bg_pattern_03.png) repeat center center;
	background-size: 29px 16px;
	background-attachment: fixed;
}

.content_wrapper {
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
	background-color: #FFF;
	border: solid 2px #f6ecb1;
	background-image: url(../img/bg_aki_01.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}

.content_inner {
	padding: 0 8px 16px;
}

.img_header {
	margin-top: -24px;
}

.sub_heading {
	font-family: 'Noto Serif JP', serif;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.sub_heading strong {
	font-size: 18px;
	font-weight: bold;
	color: #A70D0C;
}

.benefit_info_block {
	margin: 16px auto 0;
	padding: 16px;
	border: solid 1px #AAAAAA;
}

.benefit_info_list+.benefit_info_list {
	margin-top: 8px;
}

.benefit_info_list dt {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: bold;
	color: #A70D0C;
}

.benefit_info_list dd {
	font-size: 15px;
}

.benefit_info_list dd small {
	font-size: 13px;
}

.benefit_info_block .annotation {
	margin: 8px 0 0;
}

.step_heading {
	margin: 0 auto 8px;
	width: 140px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 4px 20px 6px;
	border-radius: 30px;
	background-color: var(--primary-color);
	color: #FFF;
}

.info_block {
	margin: 16px auto;
}

.info_list {
	margin: 8px 0 0;
}

.info_list dt {
	padding: 4px;
	color: #FFF;
	background-color: var(--primary-color);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.info_list dd {
	margin: 4px 0 0;
	font-size: 14px;
}

.info_list .smallest {
	font-size: 12px;
}

.btm_txt {
	text-align: left !important;
}

@media(min-width:751px) {
	.content_section {
		padding: 32px;
	}

	.content_inner {
		padding: 0 32px 32px;
	}

	.img_header {
		max-width: 520px;
		margin: -40px auto 0;
	}

	.sub_heading {
		font-size: 20px;
	}

	.sub_heading strong {
		font-size: 28px;
	}

	.btm_txt {
		text-align: center !important;
	}

	a {
		-webkit-transition: all .2s;
		transition: all .2s;
	}

	a:hover {
		opacity: .7;
	}
}

/*************
mainVisual
*************/
#mainVisual {
	position: relative;
}

.nikke_ttl_img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -38vw;
	margin: auto;
}

@media(min-width:751px) {
	.nikke_ttl_img {
		max-width: 720px;
		bottom: -242px;
	}
}

@media(min-width:1024px) {
	.nikke_ttl_img {
		max-width: 720px;
		bottom: -64px;
	}
}


/*************
intro
*************/
.intro {
	background: url(../img/bg_intro.jpg) no-repeat center center;
	background-size: cover;
	padding: 38vw 0 0;
}

.intro_wrapper {
	width: 94.67%;
	max-width: 720px;
	margin-inline: auto;
}

.intro_txt {
	padding: 8px 0 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
}

.content_anker_block {
	padding: 24px 0 32px;
}

.content_anker_heading {
	margin: 0 auto;
	width: 144px;
}

.contents_anker_btn_wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media(min-width:751px) {
	.intro {
		background: url(../img/bg_intro_wide.jpg) no-repeat center center;
		background-size: cover;
		padding: 232px 0 0;
	}

	.intro_wrapper {
		max-width: 760px;
	}

	.intro_txt {
		padding: 8px 0 8px;
		font-size: 18px;
		line-height: 2;
	}

	.content_anker_heading {
		width: 196px;
	}

	.contents_anker_btn_wrap {
		margin: 16px 0 32px;
		display: flex;
		flex-direction: row;
		gap: 8px;
		flex-wrap: wrap;
	}

	.contents_anker_btn_wrap li {
		width: calc(50% - 8px);
	}
}

@media(min-width:1024px) {
	.intro {
		background: url(../img/bg_intro_wide.jpg) no-repeat center center;
		background-size: cover;
		padding: 64px 0 0;
	}
}

/*************
content_01
*************/

.voice_character_img {
	margin: 16px auto 0;
}

.voice_btn_wrap {
	margin: 16px auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

@media(min-width:751px) {
	/* .voice_character_img {}

	.voice_btn_wrap {
		margin: 32px auto;
		display: flex;
		flex-direction: row;
		gap: 16px;
	} */
}

/*************
content_02
*************/
.nikke_card_img {
	margin: 16px auto 8px;
}

.hrline {
	margin: 24px 0;
}

.nikke_wallpaper_img {
	margin: 16px auto 8px;
}

.nikke_wallpaper_btn {
	display: block;
	margin: 16px auto;
}

@media(min-width:751px) {
	.nikke_card_img {
		max-width: 480px;
	}

	.hrline {
		margin: 40px 0;
	}

	.nikke_wallpaper_img {
		max-width: 480px;
	}

	.nikke_wallpaper_btn {
		max-width: 320px;
	}
}

/*************
content_03
*************/
.nikke_photo_spot_img {
	margin: 0 auto 8px;
}

@media(min-width:751px) {
	.nikke_photo_spot_img {
		max-width: 480px;
	}
}

/*************
content_04
*************/
.nikke_tapestry_img {
	margin: 16px auto 8px;
}

.nikke_X {
	margin: 8px auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.campaign_info_heading {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: var(--primary-color);
	;
}

.campaign_info_subheading {
	margin: 16px auto 0;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.campaign_info_txt {
	margin: 8px auto 0;
	font-size: 14px;
}

@media(min-width:751px) {
	.nikke_tapestry_img {
		max-width: 480px;
	}

	.nikke_X {
		flex-direction: row;
	}
}

/*************
content_05
*************/
/* .nikke_game_img {
	display: block;
	margin: 16px auto 8px;
} */
.game_dl_wrap {
	margin: 16px auto 8px;
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.game_dl_info_wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.game_dl_btn_wrap {
	display: flex;
	align-items: center;
	gap: 4px;
}

.img_dl_btn {
	/* width: calc(100% / 2); */
	/* width: calc((100% - 8px) / 2); */
}

@media(min-width:751px) {
	.img_dl_btn {
		/* width: calc(100% / 3); */
		/* width: calc((100% - 8px) / 3); */
	}
	.game_dl_wrap {
		margin: 16px auto 8px;
		display: flex;
		align-items: flex-end;
		gap: 16px;
		max-width: 520px;
	}
}

/*************
content_06
*************/
#content_06 {
	text-align: center;
	color: #FFF;
}

#content_06 {
	padding: 15px 15px 96px;
}

.related_heading {
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	position: relative;
	padding: 0 80px;
	color: #F7EFBF;
}

.related_heading::before,
.related_heading::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 64px;
	height: 1px;
	background-color: #F7EFBF;
}

.related_heading::before {
	left: 0;
}

.related_heading::after {
	right: 0;
}

.related_banner {
	display: block;
	margin: 16px auto 0;
}

.nikke_character_img {
	margin: -96px auto 0;
	width: 90%;
}


@media(min-width:751px) {
	#content_06 {
		padding: 15px 15px 248px;
	}

	#content_06 .content_inner {
		padding: 32px;
		max-width: 560px;
		margin-inline: auto;
	}

	.related_heading {
		font-size: 24px;
	}

	.related_banner {
		margin: 32px auto 0;
	}

	.nikke_character_img {
		margin: -296px auto 0;
		max-width: 960px;
	}
}


/*************
アニメーション
*************/



/*************
終了処理
*************/

.red_box {
	font-weight: bold;
	border: 2px solid var(--red-color);
	color: var(--red-color);
	font-size: 18px;
	text-align: center;
	padding: 8px;
	margin: 16px auto 0;
	max-width: 800px;
	width: calc(100% - 40px);
	background-color: #FFF;
}

.VoiStock_btn.sign-off-btn {
	pointer-events: none;
	position: relative;
}

.sign-off {
	background-color: rgba(255, 255, 255, 0.8);
	color: #EE0000;
	border: #EE0000 2px solid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	padding: 16px 0;
}

@media(min-width:751px) {

	/* 終了処理 QR枠用 */
	.sign-off-pc {
		background-color: rgba(255, 255, 255, 0.9);
		color: #EE0000;
		border: #EE0000 2px solid;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 85%;
		height: 85%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		font-size: 18px;
		text-align: center;
	}
}

/*************
footer
*************/
/*その他の推し旅プラン*/
.info_wrap {
	margin: 0 auto;
	padding: 8px 40px 20px;
	position: relative;
	background-color: #FFF;
}

.oshitabi_btn {
	display: block;
	border: 4px solid #000;
	background-color: #FFF;
	max-width: 740px;
	margin: 32px auto 0;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	border-radius: 10px;
	position: relative;
	padding: 10px 30px 10px 5px;
	font-size: 18px;
	transition: all 0.3s;
}

.oshitabi_btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	height: 12px;
	width: 12px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}

.oshitabi_btn:hover {
	background-color: var(--primary-color);
	color: #FFF;
	border: 4px solid var(--primary-color);
}

.oshitabi_btn:hover::after {
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;

}

.credit {
	text-align: center;
	margin-top: 16px;
	font-size: 12px;
}

.footer_container {
	position: relative;
	z-index: 100;
	background-color: #FFF;
	padding-top: 1px;
}

@media(min-width:751px) {
	.info_wrap {
		margin: 0 auto;
		padding: 8px 20px 100px;
	}

	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
	}
}

/*************
メディアクエリ
*************/
@media(min-width:751px) {
	.sp {
		display: none;
	}
}

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

}