@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: "Zen Kaku Gothic New",'Noto Sans JP', serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	color: var(--text-color);
	margin-top: 66px;
	width: 100%;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
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: #060A7C;
	--red-color: #f40000;
	--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;
	font-weight: 400;
}
.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;}
.fcLightorange {color: #FFB000;}
.fcOrange {color: #FF7030;}
.fcLightBlue {color: #00A0FF;}

/* テキスト汎用 */
.bold {font-weight: 900;}
.text_link{
	color: #FF7030;
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}
.marker {
	background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}
.zen-maru {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	font-style: normal;
}
.oswald {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
  }
.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;
}

@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;
}
.VoiStock_btn.comingSoon {
	pointer-events: none;
}
.qr_wrap {
	display: none;
}
@media(min-width:751px){
	.qr_wrap {
		padding: 16px;
		margin: 32px auto 16px;
		border: 2px solid var(--primary-color);
		display: flex;
		gap: 16px;
		border-radius: 16px;
		max-width: 480px;
		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 {
		text-align: left;
	}
	.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 {
	padding: 10px;
	border-radius: 8px;
	margin-top: 16px;
	border: 2px solid var(--primary-color);
}
.caution_head {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 4px;
}
.text_list + .caution_head {
	margin-top: 8px;
}
@media(min-width:751px){
	.caution_acc .acc_body {
		padding: 20px;
		border-radius: 16px;
	}
}

body {position: relative;}
body::before {
	content: '';
	position: fixed;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.Container {
	padding: 48px 3vw;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.inner {margin-top: 32px;}
.block {margin-top: 24px;}
/*************
mainVisual
*************/
#mainVisual .period {
    border: #00A0FF 2px solid;
    margin: 0 3vw;
    border-radius: 10px;
    background-color: #fff;
}
#mainVisual .heading {
    background-color: #00A0FF;
    color: #fff;
    padding-bottom: 2px;
    font-size: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
#mainVisual .text {
    font-size: 20px;
}
#mainVisual .mainVisual__h1 {
    max-width: 1166px;
    margin: 0 auto;
}
@media(min-width:751px){
	#mainVisual {
    padding: 0 4vw;
}
#mainVisual .period {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}
}
/*************
〇〇〇〇
*************/
#intro .sub_txt {
    font-size: 18px;
}
#intro .main_txt {
    font-size: 22px;
    margin-top: 8px;
    display: inline-block;
    padding: 0px 10px;
}
#intro .main_txt::before {
    content: '';
    position: absolute;
    background-image: url(../img/item_flag.png);
    background-size: cover;
    width: 52px;
    height: 52px;
    left: -30px;
    bottom: 8px;
}
.dot_item {
    position: absolute;
    right: 0;
    width: 42px;
    top: -24px;
}
.X_sns {
    background-color: #fff;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    padding: 8px;
}
.X_sns .inner_box {
    background-color: #fff;
    border: 3px solid #EDEDED;
    padding: 24px 10px;
}
.X_sns .heading {
    font-size: 18px;
    color: #FF7030;
}
.X_sns_btn {
    display: flex;
    background-color: #000;
    color: #FFF;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    padding: 8px 30px;
    border-radius: 4px;
    transition: all .3s;
    width: fit-content;
    margin: 8px auto;
    font-size: 16px;
    gap: 8px;
}
.X_sns_btn img {
    width: 28px;
    height: 28px;
}
@media(min-width:751px){
	.Container {
    padding: 80px 4vw;
}
	#intro .sub_txt {
    font-size: 22px;
}
#intro .main_txt {
    font-size: 32px;
    margin-top: 14px;
}
#intro .main_txt::before {
    left: -44px;
    bottom: 0px;
}
}
/*************
anker
*************/
#anker {
    background-color: #fff;
}
#anker .heading {
    border-bottom: 2px solid;
    position: relative;
    z-index: 2;
}
.chara {
    position: absolute;
    top: -40px;
    width: 110px;
}
.chara__left {left: -20px;}
.chara__right {right: -20px;}
#anker .flex {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-content: center;
}
#anker .Contents02 {
    margin-top: 64px;
}
#anker .chara__right {
    top: -70px;
}
.dot_item02 {
    position: absolute;
    right: -60px;
    bottom: 10px;
    width: 140px;
    opacity: .5;
}
.Contents02 .dot_item02 {
    position: absolute;
    left: -60px;
    bottom: -30px;
}


@media(min-width:751px){
	#anker .flex {
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
}
#anker li {
	width: calc(50% - 10px);
}
#anker .heading img {
    width: 500px;
    margin: 0 auto;
}
.chara {
        width: 178px;
        top: -80px;
    }
#anker .Contents02 {
    margin-top: 90px;
}
#anker .chara__right {
    top: -90px;
}
.dot_item02 {
    right: -100px;
    bottom: 0px;
    width: 180px;
}
}
/*************
con01
*************/
.con01 {
    background-color: #EBFCFF;
}
.Contents___box {
    background-color: #fff;
    padding: 32px 16px;
    border: 3px #64C8D2 solid;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(103, 217, 178, 0.3);
	position: relative;
}
.dotwrap {display: block;}
.dotwrap::before {
    content: '';
    position: absolute;
    background-image: url(../img/item02.png);
    background-size: cover;
    width: 130px;
    height: 130px;
    bottom: -20px;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
.left__dot::before {
    left: -64px;
}
.right__dot::before {
    right: -64px;
}
#voice,
#novelty,
#voicerally,
#goods,
#promotion {
    padding-top: 90px;
}

.makeine__h2 {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -100px;
}
.con01 .Container {
    padding-top: 10px;
}
#voice .period,
#novelty .period,
#voicerally  .period {
    text-align: center;
    color: #fff;
    padding: 2px 0;
    clip-path: polygon(0 0, 100% 0, 97% 50%, 100% 100%, 0 100%, 3% 50%);
}
#voice .period,
#novelty .period {
	background-color: #64C8D2;
}
.coming {
    font-size: 40px;
    margin-bottom: 6px;
}
.con01 .lead,
.con02 .lead {
    font-size: 18px;
    line-height: 1.8;
}
@media(min-width:751px){
	.Contents___box  {
    padding: 64px;
	margin-top: 130px;
}
.makeine__h2 {
        margin-left: auto;
        margin-right: auto;
        margin-top: -160px;
        width: 586px;
    }
.con01 .lead,
.con02 .lead {
    font-size: 21px;
}
#voice .period, #novelty .period, #voicerally .period {
    padding: 4px 0;
    clip-path: polygon(0 0, 100% 0, 98% 50%, 100% 100%, 0 100%, 2% 50%);
    font-size: 20px;
}
.coming {
    font-size: 60px;
    margin-bottom: 10px;
}
.con01 .chara {
        top: -40px;
    }
.dotwrap::before {
    width: 180px;
    height: 180px;
    bottom: -50px;
}
}

/*************
con02
*************/
.con02  {
    background-color: #FFFDEA;
}
.con02 .Container {
    padding-top: 10px;
}
.con02 .Contents___box {
    border: 3px #FFB000 solid;
    box-shadow: 0px 0px 10px 0px rgba(217, 169, 103, 0.3);
}
.con02 .promotion__box {
    border: 3px #93C310 solid;
    box-shadow: 0px 0px 10px 0px rgba(173, 217, 103, 0.3);
}
#voicerally .period {
	background-color: #FFB000;
}
#goods .heading {
    font-size: 18px;
    background-color: #060A7C;
    border-radius: 20px;
    color: #fff;
    padding-bottom: 2px;
    margin-bottom: 6px;
}
#goods .list {
	margin-top: 16px;
}
.list .main__txt {font-size: 22px;}
#goods .list .period {font-size: 18px;}
.btn__goods__wrap {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}

.goods__comingSoon {
	pointer-events: none;
}


@media(min-width:751px){
	#goods .heading {
    font-size: 21px;
    padding: 2px 2px 4px;
}
}


/*************
promotion
*************/
#promotion .lead {
    font-size: 24px;
}
/* スライド共通 */
.deco_slick_item {
  padding: 10px;
  width: calc(100vw - 90px); /* 左右40pxの余白でチラ見せ */
  max-width: 400px;
}

.deco_slick_inner {
  overflow: hidden;
}

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

/* カスタム矢印 */
.slide-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background-color: #93C310;
  z-index: 2;
  top: calc(50% - 20px);
  transition: all .5s;
  cursor: pointer;
}
.slide-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  position: absolute;
  top: 50%;
}
.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }
.prev-arrow:before {
  transform: translate(-50%,-50%) rotate(-135deg);
  right: 9px;
}
.next-arrow:before {
  transform: translate(-50%,-50%) rotate(45deg);
  right: 11px;
}
.slide-arrow.slick-disabled {
  opacity: 0;
}
.slide___wrap {
	margin-left: -16px;
	margin-right: -16px;
}

/* PCではスライダー解除＆2カラム表示 */
@media (min-width: 751px) {
  .deco_slick {
    display: flex;
    gap: 20px;
  }
  .deco_slick_item {
    width: calc(50% - 10px);
    max-width: none;
  }
}


/*************
makeinfo
*************/
#makeinfo {
	background-color: #E8F7FF;
	background-image: none;
	padding-left: 0;
	padding-right: 0;
}
#makeinfo .section_wrap {
	background:none;
	padding-top: 0;
	padding-bottom: 0;
}
#story {background:
	url(../img/info_bg1.png) left 15% / 60px no-repeat,
	url(../img/info_bg2.png) right top / 80px no-repeat,
	url(../img/info_bg3.png) right 60% / 60px no-repeat,
	url(../img/info_chara.jpg) 10% 160px / 24% no-repeat,
	url(../img/info_bg4.png) left 105% / 80px no-repeat #FFF;
}
.makeinfo_logo {
	max-width: 240px;
	margin: 0 auto;
}
.story_text {
	font-size: 14px;
	text-align: center;
	margin-top: 32px;
	padding-left: 30%;
}
.story_text p {
    line-height: 1.9;
    text-align: left;
    font-size: 13px;
}
.btn_wrap {
	margin-top: 32px;
}
.story_btn {
	background-color: #3666C3;
	color: #FFF;
	font-weight: bold;
	border: 2px solid #FFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	max-width: 325px;
	margin: 0 auto;
	text-align: center;
	padding: 8px 16px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}
.story_btn:hover {
	background-color: #FFF;
	color: #3666C3;
	border: 2px solid #3666C3;

}
.whiteBox {
    background-color: #FFF;
    border-radius: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    padding: 32px 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media(min-width:600px){
	.btn_wrap {
		padding-left: 30%;
	}
}
@media(min-width:751px){
.makeinfo_logo {
	max-width: 360px;
	margin: 0 auto;
}
	.story_text {
		font-size: 16px;
	}
	.btn_wrap {
		padding-left: 30%;
	}
	#story {background:
		url(../img/info_bg1.png) left 15% / 80px no-repeat,
		url(../img/info_bg2.png) right top / 100px no-repeat,
		url(../img/info_bg3.png) right 70% / 80px no-repeat,
		url(../img/info_bg4.png) left 100% / 100px no-repeat,
		url(../img/info_chara.jpg) 10% 160px / 24% no-repeat #FFF;
	}
}

/*************
過去のコラボ
*************/
.pastEvents .chara {
    top: -80px;
}
.pastEvents {
    border: 1px solid #00a0ff;
    border-radius: 16px;
    padding: 15px;
    background-color: #FFF;
    margin: 0 auto 32px;
    max-width: 540px;
}
.pastEvents_head {
	font-size: 18px;
	font-weight: bold;
	color: #00a0ff;
	text-align: center;
}
.pastEvents_body {
    text-align: center;
    margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 14px;
}
.pastEvents_link {
	color: #FF7030;
	display: inline-block;
	padding-left: 16px;
	position: relative;
	font-weight: bold;
	font-size: 18px;
	text-decoration: underline;
}

.pastEvents_link::before {
	content: "";
	height: 0;
	width: 0;
	border-left: 10px solid #FF7030;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}

@media(min-width:751px){
	.pastEvents .chara {
    top: -120px;
    right: -90px;
}
}

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

.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: 24px 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: #060A7C;
	color: #FFF;
	border: 4px solid #060A7C;
}
.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: 60px 20px 100px;
    }
	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
	}
}

/*************
ふわふわ
*************/
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
/*************
ボタンエフェクト
*************/
@media(min-width:751px){
	.btn__large {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn__large:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
}


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

}
	
