@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: #2ebcad;
	--bg-color: #FFFFFF;
	--red-color: #EE0000;
	--accent-color: #FFFF00;
  --serif-font: "Noto Serif JP", serif;
  --bellefair-font: "Bellefair", serif;
}
/*アキ*/
.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: 14px;}
.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: 14px;
}
@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;
	}
}

/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
終了処理
*************/

.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;
	}

}


/*************
追加
*************/
#kuroshitsuji {
  background-color: #000;
}

.contents-wrap {
  background-color: #000;
  background-image: repeating-linear-gradient(90deg, rgba(173, 199, 162, 0.05), rgba(173, 199, 162, 0.05) 8px, transparent 8px, transparent 15px);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.contents-wrap__inner {
  background-image: url(../img/black-paper.png);
}

.mv {
  padding-top: 16px;
}

.mv__wrap {
  position: relative;
}

.mv__title {
  width: 91.88vw;
  margin: 0 auto;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  transition: all 1s;
  z-index: 1;
}
@media(min-width:751px){
  .mv__title {
    width: 68.24%;
  }
}

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

.mv__image {
  margin-top: -28vw;
  transform: translateY(10px);
  opacity: 0;
  transition: all 1s 1s;
}
@media(min-width:751px){
  .mv__image {
    margin-top: -210px;
  }
}

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

.mv__characters {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
  bottom: 4.8vw;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: all 1s 1.3s;
  z-index: 1;
}
@media(min-width:1000px){
.mv__characters {
    bottom: 32px;
}
}

.mv__characters.is-inview {
  transform: translate(-50%, 0);
  opacity: 1;
}

.mv__chara {
  width: 21%;
}
@media(min-width:751px){

}

.mv__chara02 {

}

.mv__chara03 {

}

.mv__chara04 {

}

.mv__copy {
  font-size: 10px;
  font-weight: 400;
  color: #B9B9B9;
  margin-top: 6px;
  margin-right: 4px;
  text-align: right;
}
@media(min-width:751px){
  .mv__copy {
    margin-top: 8px;
    margin-right: 8px;
  }
}

.intro {
  margin-top: 16px;
}
@media(min-width:751px){
  .intro {
    margin-top: 12px;
  }
}

.intro__inner {
  width: 100%;
  padding: 0 15px;
  max-width: 375px;
  margin: 0 auto;
  box-sizing: border-box;
}

.intro__title {
  font-family: var(--serif-font);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 14px 0;
}

.intro__title span {
  font-size: 21px;
}

.intro__title::before,
.intro__title::after {
  content: "";
  position: absolute;
  width: 345px;
  height: 14px;
  background-image: url(../img/intro-title_deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.intro__title::before {
  top: 0;
}

.intro__title::after {
  bottom: 0;
}

.intro__lead {
  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-top: 24px;
}
@media(min-width:751px){
  .intro__lead {
    margin-top: 32px;
  }
}

.intro-item {
  margin-top: 32px;
}

.intro-item + .intro-item {
  margin-top: 50px;
}

.intro-item-title {

}

.intro-item-title__deco {
  width: 104px;
  margin: 0 auto;
}

.intro-item-title__text {
  font-family: var(--serif-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
  color: #E5D275;
  margin-top: 4px;
}

.intro-item__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intro-item__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  background: linear-gradient(90deg, #306F00, #105200);
  border: 1px solid #E5D275;
  position: relative;
  padding-right: 5px;
  box-sizing: border-box;
}

.intro-item__list li a::after {
  content: "";
  width: 16.8px;
  height: 9.9px;
  background-image: url(../img/anchor_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
}

.sec-title {
  background: linear-gradient(#284D1A, transparent);
  padding: 15px;
  position: relative;
}

.sec-title__inner {
  background-image: url(../img/sec-title_deco.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 15px;
}
@media(min-width:751px){
  .sec-title__inner {
    background-image: url(../img/sec-title_deco-pc.png);
  }
}

.sec-title__deco-t {
  width: 104px;
  margin: 0 auto;
}

.sec-title__text {
  font-family: var(--serif-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  color: #fff;
  margin-top: 2px;
}

.sec-title__deco-m {
  width: 120px;
  margin: 8px auto 0;
}

.sec-title__en {
  font-family: var(--bellefair-font);
  font-size: 20px;
  text-align: center;
  color: #E5D275;
  margin-top: 8px;
}

.sec-title__deco-b {
  width: 18px;
  margin: 16px auto 0;
}

.sec-title__chara {
  position: absolute;
}

.sec-lead {
  font-family: var(--serif-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.sec-schedule {
  margin-top: 24px;
}
@media(min-width:751px){
  .sec-schedule {
    margin-top: 26px;
  }
}

.sec-schedule__inner {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 375px;
}

.sec-schedule__contents {
  padding: 8px 14px;
  border: 1px solid #4D9D2E;
  background-color: rgba(28, 28, 28, 0.7);
}

.sec-schedule__title {
  font-family: var(--serif-font);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
  color: #4D9D2E;
  padding-bottom: 4px;
  border-bottom: 1px solid #4D9D2E;
}

.sec-schedule__text {
  font-family: var(--serif-font);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-top: 8px;
}

.sec-contents__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}
@media(min-width:751px){
  .sec-contents__inner {
    max-width: 508px;
  }
}

.sec-contents__inner-s {
  box-sizing: border-box;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}

.sec-contents__note {
  margin-top: 16px;
}

#kuroshitsuji ul.text_list.annotation {
  padding: 14px;
  border-radius: 0;
  border: none;
  background-color: rgba(28, 28, 28, 0.7);
  width: 100%;
  box-sizing: border-box;
}

#kuroshitsuji .spot__slide ul.text_list.annotation {
  background: none;
  margin-top: 4px;
}

#kuroshitsuji ul.text_list.annotation.p-none {
  padding: 0;
}

#kuroshitsuji ul.text_list.annotation li {
  font-size: 12px;
  color: #fff;
}

#kuroshitsuji .spot__slide ul.text_list.annotation li {
  color: #000;
}

#kuroshitsuji ul.text_list.annotation li.red {
  color: #FF0000;
  font-size: 13px;
}

#kuroshitsuji ul.text_list.annotation li a {
  font-weight: 700;
  color: #4D9D2E;
  text-decoration: underline;
}

#kuroshitsuji .caution_acc .acc_btn {
  background-color: #254817;
}

#kuroshitsuji .acc_btn span::before,
#kuroshitsuji  .acc_btn span::after {
  background-color: #254817;
}

#kuroshitsuji .caution_acc .acc_body {
  padding: 14px;
  border-radius: 0;
  border: none;
  background-color: rgba(28, 28, 28, 0.7);
}

#kuroshitsuji .caution_acc ul.text_list.annotation {
  padding: 0;
}

.talk {
  margin-top: 63px;
}
@media(min-width:751px){
  .talk {
    margin-top: 146px;
  }
}

.talk .sec-title__chara {
  top: 3px;
  right: -21px;
  width: 120px;
}
@media(min-width:751px){
  .talk .sec-title__chara {
    top: -16px;
    right: 0;
  }
}

.certification {
  margin-top: 46px;
}
@media(min-width:751px){
  .certification {
    margin-top: 96px;
  }
}

.certification .sec-title__chara {
  top: -6px;
  right: -36px;
  width: 120px;
}
@media(min-width:751px){
  .certification .sec-title__chara {
    top: -16px;
    right: 0;
  }
}

.certification-images {
  margin-top: 24px;
}

.certification-images__inner {
  padding: 0 14px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.certification-images__item {
  width: calc(50% - 17px / 2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.certification-images__item:nth-child(2) {
  flex-direction: column-reverse;
  margin-top: 30px;
}

.certification-images__img {
  width: 100%;
}

.certification-images__text {
  font-family: var(--serif-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.certification-images__item:nth-child(2) .certification-images__text {
  text-align: right;
}

.certification-images__note {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-top: 8px;
}

.novelty {
  margin-top: 40px;
}
@media(min-width:751px){
  .novelty {
    margin-top: 96px;
  }
}

.novelty-contents {

}

.novelty-contents__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}

.novelty-item {
  margin-top: 24px;
  border: 2px solid #4D9D2E;
  padding: 5px;
  background-color: rgba(28, 28, 28, 0.7);
}

.novelty-item + .novelty-item {
  margin-top: 16px;
}

.novelty-item__inner {
  border: 1px solid #4D9D2E;
  padding: 4px;
}

.novelty-item__contents {
  padding: 20px 9px 16px;
  position: relative;
}

.novelty-item__contents::before,
.novelty-item__contents::after {
  content: "";
  width: 100%;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
}

.novelty-item__contents::before {
  top: 0;
  background-image: url(../img/novelty_deco-t.png);
}

.novelty-item__contents::after {
  bottom: 0;
  background-image: url(../img/novelty_deco-b.png);
}

.novelty-item__title {
  text-align: center;
}

.novelty-item__title span {
  display: inline-block;
  font-family: var(--serif-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 0 26px;
  position: relative;
}

.novelty-item__title span::before,
.novelty-item__title span::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.novelty-item__title span::before {
  left: 0;
  background-image: url(../img/novelty-title_deco01.png);
}

.novelty-item__title span::after {
  right: 0;
  background-image: url(../img/novelty-title_deco02.png);
}

.novelty-item__schedule {
  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 4px 0;
  border-top: 1px solid #4D9D2E;
  border-bottom: 1px solid #4D9D2E;
  margin-top: 16px;
}

.novelty-item__sub {
  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: 16px;
}

.novelty-item__note {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #B9B9B9;
  margin-top: 4px;
}

.novelty-item__img01 {
  width: 288px;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

.novelty-item__images {
  margin-top: 6px;
}

.novelty-item__image02 {
  
}

.novelty-item__img02 {
  width: 225px;
}

.novelty-item__name {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.novelty-item__image03 {
  margin-top: -48px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
}

.novelty-item__img03 {
  width: 160px;
}

.novelty-item__image03 .novelty-item__name {
  text-align: right;
  flex: 1;
}

.exchange-box {
  border: 1px solid #4D9D2E;
  padding: 4px;
  background-color: rgba(28, 28, 28, 0.7);
  margin-top: 24px;
}

.exchange-box__inner {
  border: 1px solid #4D9D2E;
  padding: 10px;
}

.exchange-box__item + .exchange-box__item {
  margin-top: 16px;
}

.exchange-box__title {
  font-family: var(--serif-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #4D9D2E;
  padding: 2px 0;
}

.exchange-box__sub {
  font-family: var(--serif-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-top: 8px;
}

.exchange-box__link {
  font-family: var(--serif-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-top: 4px;
}

.exchange-box__link a {
  color: #4D9D2E;
  text-decoration: underline;
}

.exchange-box__note {
  font-family: var(--serif-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-top: 2px;
}

.exchange-howto {
  margin-top: 16px;
}

.step-slide__wrap {
  margin-top: 18px;
}

.step-slide__wrap * {
  box-sizing: border-box;
}

.step-slide__item {
  padding-right: 26px;
  position: relative;
}

.step-slide__item:not(:last-child)::before {
  content: "";
  width: 15px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  background-image: url(../img/step_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.step-slide__contents {
  padding: 0 8px 10px;
  min-height: 124px;
  border: 1px solid #4D9D2E;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.7);
}

.step-slide__step {
  text-align: center;
}

.step-slide__step span {
  display: inline-block;
  font-family: var(--bellefair-font);
  font-size: 12px;
  text-align: center;
  color: #fff;
  background-color: #4D9D2E;
  padding: 2px 22px 1px;
  border-radius: 12px;
  position: relative;
}

.step-slide__step span::before,
.step-slide__step span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.step-slide__step span::before {
  left: 8px;
  background-image: url(../img/step_deco01.png);
}

.step-slide__step span::after {
  right: 8px;
  background-image: url(../img/step_deco02.png);
}

.step-slide__text {
  margin-top: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.splide__pagination.step-slide-pagination {
  bottom: -15px;
}

.step-slide-pagination .splide__pagination__page {
  margin: 0 1.5px;
  opacity: 1;
  background: #B9B9B9;
}

.step-slide-pagination .splide__pagination__page.is-active {
  transform: none;
  background: #4D9D2E;
}

.stamp {
  margin-top: 30px;
}
@media(min-width:751px){
  .stamp {
    margin-top: 96px;
  }
}

.stamp .sec-title__chara {
  top: -16px;
  right: -20px;
  width: 120px;
}
@media(min-width:751px){
  .stamp .sec-title__chara {
    right: 0;
  }
}

.stamp .sec-contents {
  margin-top: 24px;
}

.spot-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}
@media(min-width:751px){
  .spot-wrap {
    max-width: none;
    padding: 0;
  }
}

.spot {
  background-color: #fff;
}

.spot__inner {
  padding: 16px 14px;
}

.spot__title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #3C6F33;
  border-radius: 4px;
  padding: 6px 0;
}


.spot-map__block{
	padding-bottom: 16px;
  margin-top: 8px;
}
.spot-map__box{
	position: relative;
	max-width: 317px;
	margin: 0 auto 16px;
}
.map-pin{
	width: 9.6vw;
	max-width: 36px;
	height: 9.6vw;
	max-height: 36px;
	background-color: var(--bg-color);
	border-radius: 50%;
	border: 3px solid #4D9D2E;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
  align-items: center;
	position: absolute;
	cursor: pointer;
	transition: all .5s;
}
.map-pin span{
	font-family: "Barlow", sans-serif;
  font-weight: 700;
	color: #4D9D2E;
	font-size: 25px;
	text-align: 1;
}
.map-pin.active{
	background-color: #4D9D2E;
}
.map-pin.active span{
	color: #fff;
}

/* 京都駅 */
.map-pin.pin01{
	top: 36%;
	left: 26%
}
/* 東寺 */
.map-pin.pin02 {
	top: 58%;
	left: 15%;
}
/* 伊藤久右衛門 */
.map-pin.pin03 {
	top: 6%;
	left: 69%;
}
/* 京都市青少年科学センター */
.map-pin.pin04 {
	top: 82%;
  left: 48%;
}
/* 新風館 */
.map-pin.pin05 {
	top: 1%;
	left: 55%;
}
/* アニメイト */
.map-pin.pin06 {
	top: 59%;
	left: 41%;
}

/* マップ スライドカセット*/
.spot__slide--box{
	height: 100%;
	background-color: #FAF6EA;
	border-radius: 16px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.spot-name{
	font-size: 18px;
	font-weight: bold;
	color: #4D9D2E;
	margin-bottom: 8px;
	text-align: center;
}
.spot-txt{
	font-size: 12px;
	margin-bottom: 8px;
}
.spot__box--top--flex{
  display: flex;
}
.spot__box--top--flex .flex-right{
  width: 50%;
}
.spot-info{
	font-size: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.spot-info>div{
	display: flex;
}
.spot-info dt{
	flex-shrink: 0;
}
.spot__slide--box .note__list li{
  font-size: 10px;
}
.spot__box--bottom{
	margin-top: 12px;
}

#kuroshitsuji .spot__slide ul.text_list.annotation li a {
  font-weight: 400;
}


/* splideカスタマイズ */
.splide__pagination.spot-slide-pagination {
	bottom: -1.5em;
	/* left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1; */
}
.splide__pagination__page.spot-slide-page.is-active {
	background: #4D9D2E;
	transform: scale(1);
	z-index: 1;
	opacity: 1;
}
.splide__pagination__page.spot-slide-page {
	background: #4D9D2E;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 5px;
	opacity: .4;
	padding: 0;
	position: relative;
	transition: transform .2s linear;
	width: 8px;
}
.splide__arrow.spot-slide-arrow:disabled {opacity: 0;}
.splide__arrow--next.spot-slide-next {right: 2px;}
.splide__arrow--prev.spot-slide-prev {left: 2px;}
.splide__arrow.spot-slide-arrow {background: rgba(255, 255, 255, 0.7)}
.splide__arrow.spot-slide-arrow svg {
	fill: #333333;
	height: 1.7em;
	width: 1.7em;
}

/* カセットの高さ可変させる場合 */
.splide__track--fade>.splide__list>.splide__slide {height: 0 !important;}
.splide__track--fade>.splide__list>.splide__slide.is-active {height: auto !important;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	#stamp .sec__head{width: 409px;}
#stamp .cont-inner{padding-top: 56px;}
#stamp .sec__lead{margin-bottom: 40px;}
.img-kv{
	max-width: 600px;
	margin: 0 auto 24px;
}
.complete__block{margin-bottom: 32px;}
.complete__head{margin-bottom: 24px;}
.complete__head span{
	padding: 0 24px;
	font-size: 20px;
}
.img-wallpaper{
	max-width: 400px;
	margin: 0 auto;
}
.spot {
	margin-bottom: 32px;
}
.spot .acc__body {
	margin-top: 24px;
}
.spot .acc__btn {
	padding: 8px 28px;
	font-size: 16px;
}
.spot__lead {
	font-size: 18px;
	margin: 0 auto 24px;
}
.spot__lead::before, .spot__lead::after {
	width: 40px;
	height: 42px;
}
.spot__lead::before {left: -50px;}
.spot__lead::after {right: -50px;}
.spot-map__block{
	display: flex;
	gap: 20px;
	padding-bottom: 0;
}
.spot-map__box{
	width: 350px;
}
.map-pin:hover{
	background-color: var(--primary-color);
	transform: scale(1.1);
}
.map-pin:hover span{
	color: #fff;
}
.spot__slide--block{
	width: calc(100% - 337px);
}
.spot__slide--box{
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.spot-txt {font-size: 14px;}
.spot-info {font-size: 14px;}
}

.benefits {
  margin-top: 20px;
  padding-bottom: 16px;
}
@media(min-width:751px){
  .benefits {
    margin-top: 96px;
  }
}

.benefits-contents {
  margin-top: 24px;
}


.benefits-contents__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}

.benefits-item {
  margin-bottom: 24px;
}

.benefits-item__title {
  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.benefits-item__img {
  width: 100%;
  max-width: 344px;
  margin: 8px auto 0;
}

.novelty-item__note {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #B9B9B9;
  margin-top: 4px;
}

.goods {
  margin-top: 32px;
}
@media(min-width:751px){
  .goods {
    margin-top: 96px;
  }
}

.goods .sec-title__chara {
  top: -22px;
  right: -43px;
  width: 120px;
}
@media(min-width:751px){
  .goods .sec-title__chara {
    top: -16px;
    right: 0;
  }
}

.goods-contents {
  margin-top: 24px;
}

.goods-contents__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 375px;
  padding: 0 15px;
  margin: 0 auto;
}

.comingsoon {
  border: 1px solid #4D9D2E;
  padding: 4px;
  margin-top: 24px;
  background-color: rgba(28, 28, 28, 0.7);
}

.comingsoon__inner {
  border: 1px solid #4D9D2E;
  padding: 14px 0 12px;
}

.comingsoon__text {
  font-family: var(--bellefair-font);
  font-size: 26px;
  text-align: center;
  color: #4D9D2E;
}

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

.copy p {
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: #B9B9B9;
}

@media(min-width:751px){
  .qr_wrap {
    border: 3px solid #E5D275;
    background: linear-gradient(#FFFCEF, #E5DDB9);
    padding: 24px 22px;
    border-radius: 0;
  }

  .qr_text_hd {
    font-family: var(--serif-font);
    font-size: 16px;
    padding: 9px 0 8px;
    border-radius: 0;
    background-color: #254817;
    margin-bottom: 16px;
  }

  .qr_text p {
    font-family: var(--serif-font);
    font-size: 14px;
    line-height: 1.5;
  }

  .qr_img {
    border-radius: 0;
    border: none;
  }

}