@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/*************
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;
}

/*アキ*/
.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: 5px;
}

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

.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 #fff;
		background-color: #F9ED95;
		display: flex;
		gap: 30px;
		border-radius: 16px;
		max-width: 100%;
		align-items: start;
	}

	.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;
		font-weight: 900;
		line-height: 1.2;
		color: #FFF;
		background-color: #FF924A;
		padding: 4px 12px;
		text-align: center;
		clip-path: polygon(97% 0%, 100% 50%, 97% 100%, 0 100%, 0 0);
	}

	.qr_text p {
		font-weight: 700;
		color: #582A0D;
		text-align: left;
	}

	.qr_img {
		width: 100px;
		position: relative;
		padding: 4px;
		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: var(--primary-color);
	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: #fff;
	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: #fff;
	color: var(--primary-color);
}

.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_acc .acc_body a {
	font-weight: 700!important;
	color: #F9ED95!important;
	text-decoration: underline;
}

.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 0;
		border-radius: 16px;
	}
}

/*************
〇〇〇〇
*************/
@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;
	}

}

/*************
コンテンツ
*************/
:root {
	--primary-color: #713E1E;
	--text-color: #E85900;
}

.content_wrap {
	font-family: "Zen Maru Gothic", sans-serif;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.contetns_wrap1 {
	padding-block: 0 50px;
	background: linear-gradient(45deg, #FFF5CE, #F0CBB0, #FFF5CE, #F0CBB0) fixed center / 700% 700%;
    animation: bg-animate 6s ease infinite;
	overflow: hidden;
}
@keyframes bg-animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.contetns_wrap2 {
	background-image: repeating-linear-gradient(135deg, #c9deeb, #c9deeb 10px, #dbe7f0 10px, #dbe7f0 20px);
	padding-block: 40px;
	overflow: hidden;
}

#mainVisual h1 {
	margin-block-end: 20px;
}

.scroll_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: fit-content;
	margin-inline: auto;
	margin-block-end: 30px;
	z-index: 1;
}

.scroll_wrap::before,
.scroll_wrap::after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.scroll_wrap::before {
	top: 80px;
	left: -110px;
	background-image: url(../img/deco01.png);
	width: 26px;
	height: 52px;
}

.scroll_wrap::after {
	bottom: -10px;
	right: -160px;
	background-image: url(../img/deco02.png);
	width: 82px;
	height: 67px;
}

.scroll_wrap .arrow_scroll {
	width: 50px;
	height: auto;
	margin-inline: auto;
}

.scroll_wrap .ill_01 {
	width: 102px;
	height: auto;
	margin-inline: auto;
}

.caption {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.8;
	text-align: center;
	letter-spacing: 0.025em;
	margin-block-end: 20px;
}

.contents_list {
	position: relative;
	z-index: 1;
}

.contents_list::before,
.contents_list::after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.contents_list::before {
	top: 10px;
	left: -20px;
	background-image: url(../img/deco02.png);
	width: 82px;
	height: 67px;
	scale: -1;
}

.contents_list::after {
	top: -10px;
	right: -45px;
	background-image: url(../img/il_record.png);
	width: 120px;
	height: 120px;
	animation: 30s spin linear infinite;
}

.sbttl01 {
	width: 168px;
	margin-inline: auto;
}

.anchor_list {
	display: grid;
	gap: 10px;
	width: 310px;
	margin-inline: auto;
}

.contents1,
.contents2,
.contents3 {
	position: relative;
	z-index: 1;
}

.contents1::before {
	content: "";
	display: block;
	position: absolute;
	top: -50px;
	left: 70px;
	width: 50px;
	height: 38px;
	background-image: url(../img/deco03.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.contents1 .contents_block::before,
.contents1 .contents_block::after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.contents1 .contents_block::before {
	bottom: -100px;
	left: -50px;
	background-image: url(../img/il_record.png);
	width: 120px;
	height: 120px;
	animation: 30s spin linear infinite;
}

@keyframes spin {
	0% {
		rotate: 0eg;
	}

	100% {
		rotate: 360deg;
	}
}

.contents1 .contents_block::after {
	bottom: -90px;
	right: 40px;
	background-image: url(../img/deco02.png);
	width: 82px;
	height: 67px;
}

.contents3::before,
.contents3::after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.contents3::before {
	top: -50px;
	left: -30px;
	background-image: url(../img/deco02.png);
	width: 82px;
	height: 67px;
	scale: -1;
}

.contents3::after {
	top: -45px;
	right: 75px;
	background-image: url(../img/deco01.png);
	width: 26px;
	height: 52px;
}

hgroup {
	position: relative;
	margin-block: 80px 20px;
	padding-inline-start: 4%;
}

hgroup::before {
	content: "";
	position: absolute;
	top: 0;
	right: 4%;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

hgroup.num01::before {
	background-image: url(../img/num_cts01.png);
	width: 50px;
	height: 36px;
}

hgroup.num02::before {
	background-image: url(../img/num_cts02.png);
	width: 52px;
	height: 36px;
}

hgroup.num03::before {
	background-image: url(../img/num_cts03.png);
	width: 55px;
	height: 36px;
}

hgroup span {
	position: relative;
	display: block;
	background-color: #fff;
	border-radius: 100vmax;
	width: fit-content;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color);
	margin-block-end: 10px;
	padding-inline: 15px;
	padding-block: 5px;
}

hgroup span::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 26%;
	translate: -50% 0;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../img/baloon_line.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

hgroup h2 {
	font-size: 30px;
	font-weight: 900;
	color: var(--text-color);
	line-height: 1;
	margin-block-start: 20px;
}

hgroup h2 small {
	font-size: 20px;
}

.line {
	display: grid;
	grid-template-columns: 1fr 15.32%;
	gap: 10px;
	margin-block-end: 20px;
	padding-right: 8%;
}

.line span {
	position: relative;
	top: 50%;
	translate: 0 -50%;
	display: block;
	background-color: #713E1E;
	border-radius: 100vmax;
	width: 100%;
	height: 2px;
}

.contents_block {
	position: relative;
	background-color: #88593C;
	background-image:
		linear-gradient(to right, #8e6c4f 1px, transparent 1px),
		linear-gradient(to bottom, #8e6c4f 1px, transparent 1px);
	background-size: 15px 15px;
	width: 92%;
	margin-inline: auto;
	padding-inline: 15px;
	padding-block: 15px 30px;
	box-sizing: border-box;
}

/* .contents1 .contents_block {
	padding-block-end: 30px;
} */

.date {
	background-color: #582A0D;
	font-size: 24px;
	font-weight: 900;
	color: #FFF;
	text-align: center;
	padding-block-end: 2px;
}

.date small {
	font-size: 16px;
}

.contents1_note {
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	padding-block: 10px 15px;
}

.contents1 figure figcaption {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	margin-block-start: 10px;
	margin-block-end: 15px;
}

.schedule_list dd ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 22px;
	font-weight: 700;
	color: #FFF;
	padding-left: 30px;
}

.schedule_list dd ul li:not(:last-child) {
	border-bottom: solid 1px #fff;
	margin-block-end: 10px;
	padding-block-end: 5px;
}

.schedule_list dd ul li .num {
	font-size: 30px;
	color: #C7906D;
	margin-right: 20px;
}

.schedule_list dd ul li figure {
	display: grid;
	grid-template-columns: 115px 1fr;
	align-items: center;
	gap: 20px;
	font-size: 18px;
	margin-block: 10px 15px;
}

.schedule_list dd ul li figure figcaption {
	text-align: left;
}

.schedule_list dd ul li figure figcaption small {
	display: block;
	font-size: 13px;
	color: #F9ED95;
}

.schedule_list dd ul li div .separator {
	font-size: 18px;
}

.schedule_list dd ul li div small {
	font-size: 14px;
}

.contents_caption {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin-block: 15px;
}

.contents_caption span {
	color: #F89E30;
}

.contents_attention {
	background-color: #fff;
	border: 1px solid #E81818;
	font-size: 12px;
	font-weight: 500;
	color: #E81818;
	text-align: center;
	padding-inline: 10px;
	padding-block: 5px;
}

.contents2_gr1 {
	text-align: center;
}

.contents2_gr1 h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 17px;
	font-weight: 700;
	color: #F9ED95;
	margin-block: 35px 20px;
}

.contents2_gr1 h3::before,
.contents2_gr1 h3::after {
	content: "";
	position: relative;
	top: 1px;
	background-color: #F9ED95;
	border-radius: 100vmax;
	width: 2px;
	height: 22px;
}

.contents2_gr1 h3::before {
	rotate: -50deg;
}

.contents2_gr1 h3::after {
	rotate: 50deg;
}

.contents2_gr1 img {
	display: block;
	width: 80px;
	margin-inline: auto;
}

.contents2_gr1 p {
	font-size: 11px;
	color: #fff;
	margin-block-start: 10px;
}

.contents2 .btn_voice {
	margin-block-start: 30px;
}

.contents2 .annotation_space {
	padding-block: 30px 10px;
}

.contents2 .annotation {
	color: #fff;
}

.btn_note {
	/* border-bottom: solid 1px #fff; */
	font-size: 11px;
	color: #fff;
	text-indent: -1em;
	padding-left: 1em;
	margin-block-end: 10px;
	padding-block-end: 10px;
}

.ttl_attention {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-block-end: 10px;
}

.ttl_attention::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
}

.square_acc .acc_btn {
	background-color: #582A0D;
	border-radius: 0;
	width: 100%;
	color: #fff;
	box-sizing: border-box;
}

.square_acc .acc_btn span {
	background-color: #fff;
}

.square_acc .acc_btn span::before,
.square_acc .acc_btn span::after {
	background-color: #582A0D;
}

.square_acc .acc_body {
	background-color: #fff;
	border-radius: 0;
	font-size: 15px;
	font-weight: 700;
	color: #582A0D;
	margin-top: 0;
	padding: 15px;
}

.step_num {
	display: flex;
	background-color: #582A0D;
	border-radius: 100vmax;
	width: fit-content;
	color: #fff;
	margin-block-end: 2px;
	padding-block: 1px 3px;
	padding-inline: 10px;
}

.step_text span {
	color: #F5940E;
}

.step_text:not(:last-child) {
	border-bottom: solid 2px #582A0D;
	margin-block-end: 10px;
	padding-block-end: 10px;
}

/* .contents2 .step_text:first-of-type {
	white-space: pre;	
} */

.contents3 {
	color: #fff;
}

.contents3_note {
	font-size: 12px;
}

.contents3_item {
	border-top: solid 1px #fff;
	margin-block-start: 25px;
	padding-block-start: 35px;
}

.contents3_item dt {
	position: relative;
	font-size: 22px;
	color: #F9ED95;
	font-weight: 700;
	text-align: center;
	margin-block-end: 5px;
	padding-block-start: 30px;
}

.contents3_item dt span {
	content: "";
	display: block;
	position: absolute;
	top: -20px;
	left: 0;
	background-color: #F9ED95;
	border-radius: 100vmax;
	font-size: 14px;
	color: var(--primary-color);
	padding: 5px 10px;
	z-index: 1;
}

.contents3_item dt span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -10px;
	right: 10px;
	background-color: #F9ED95;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	width: 13px;
	height: 16px;
	rotate: -30deg;
}

.contents3_item_date {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-block-end: 30px;
}

.contents3_item_img {
	position: relative;
}

.contents3_item_img img {
	display: block;
	width: 58.84%;
	margin-inline: auto;
}

.contents3_item_img .cooming {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #C7906D;
	text-align: center;
}

.contents3_wappen {
	display: block;
	position: absolute;
	top: -10px;
	right: 15px;
	width: 85px;
	height: auto;
}

.contents3_wappen img {
	width: 100%;
}

.contents3_item_note {
	font-size: 12px;
	text-align: center;
	margin-block-start: 5px;
}

.contents3 .caution_acc .acc_btn {
	text-align: center;
	margin-block-start: 50px;
}

.present_note {
	margin-block: 30px;
}

.external_link {
	font-size: 12px;
	text-align: center;
}

.sec--program__marquee {
	background-color: #fff;
	border-block: 1px solid #fff;
	padding-block: 8px 6px;
	display: flex;
	gap: 12px;
	overflow: hidden;
	margin-bottom: 32px;
}

.sec--program__marquee__list {
	display: flex;
	gap: 12px;
	animation: marquee 20s linear infinite;

	img {
		width: 70px;
		max-width: none;
	}
}

@keyframes marquee {
	0% {
		translate: 0;
	}

	100% {
		translate: -100%;
	}
}

.program_info {
	width: 86.4%;
	margin-inline: auto;
}

.program_info dl:not(:first-child) {
	margin-block-start: 20px;
}

.program_info dl dt {
	background-color: #3D98D0;
	border-radius: 100vmax;
	font-size: 18px;
	font-weight: 700;
	color: #FFF;
	text-align: center;
	padding-inline: 10px;
	padding-block: 5px;
}

.program_info dl dd {
	font-size: 18px;
	font-weight: 700;
	color: #143058;
	text-align: center;
	padding-block-start: 10px;
}

.official_link {
	margin-block-start: 20px;
}

.official_note {
	font-size: 12px;
	color: #143058;
	text-align: center;
}

.official_note li {
	margin-block-start: 5px;
}

.official_note li a {
	font-weight: 700;
	text-decoration: underline;
}

.back_to_top.show {
	display: block;
	pointer-events: auto;
	opacity: 1;
}

.back_to_top {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 5px;
	bottom: 8px;
	width: 56px;
	z-index: 1000;
	transition: all 0.5s;
}

/* animate */
.js-animate {
	opacity: 0;
	transition: .8s ease .1s;
}
.js-animate--active {
	opacity: 1;
}

@media(min-width:751px) {
	.contetns_wrap1 {
		padding-block: 0 50px;
	}

	#mainVisual h1 {
		width: 1100px;
		margin-inline: auto;
		margin-block: 0 20px
	}

	.caption {
		font-size: 16px;
		margin-block-end: 30px
	}

	.contents_list::before {
		top: 5px;
		left: 100px;
	}

	.contents_list::after {
		top: 0px;
		right: -35px;
	}

	.contents1 .contents_block::before {
		bottom: -150px;
	}

	.contents1 .contents_block::after {
		bottom: -105px;
		right: 150px;
	}

	.contents3::before,
	.contents3::after {
		content: none;
	}

	.anchor_list {
		grid-template-columns: repeat(2, 1fr);
		width: 630px;
	}

	hgroup span {
		left: 50%;
		translate: -50% 0;
		font-size: 22px;
	}

	hgroup h2 {
		font-size: 38px;
		text-align: center;
	}

	hgroup h2 small {
		font-size: 24px;
	}

	.contents_list {
		width: 704px;
		margin-inline: auto;
	}

	.contents1,
	.contents2,
	.contents3 {
		width: 704px;
		margin-inline: auto;
	}

	.contents1::before {
		content: none;
	}

	.contents_block {
		width: 100%;
		padding-block: 20px;
		padding-inline: 50px;
	}

	.line {
		display: grid;
		grid-template-columns: 1fr 8.96%;
		gap: 10px;
		padding-right: 0;
	}

	.contents_caption {
		margin-block: 20px;
	}

	.schedule_list dd ul {
		width: 440px;
		margin-inline: auto;
	}

	.schedule_list dd ul li {
		padding-left: 40px;
	}

	.schedule_list dd ul li figure {
		grid-template-columns: 130px 1fr;
		padding-left: 50px;
	}

	.date {
		font-size: 28px;
	}

	.date small {
		font-size: 18px;
	}

	.contents2 .annotation_space {
		padding-block: 40px 20px;
	}

	.contents3_item:first-of-type .contents3_item_img {
		width: 204px;
		margin-inline: auto;
	}

	.contents3_item dt {
		width: fit-content;
		margin-inline: auto;
	}

	.contents3_item dt span {
		top: -10px;
		left: -60px;
	}

	.contents3_wappen {
		right: -50px;
	}

	.contents3_item_img img {
		width: 100%;
	}

	.sec--program__marquee {
		margin-bottom: 42px;
	}

	.program_info {
		width: 600px;
	}

	.program_info dl:not(:first-child) {
		margin-block-start: 25px;
	}

	.official_link {
		width: 400px;
		margin-block-start: 40px;
		margin-inline: auto;
	}

	.official_note li {
		margin-block-start: 10px;
	}
}


/*260527追加*/
.schedule_list .acc_btn {
    padding: 4px 40px 6px 20px;
	margin-bottom: 20px;
    border-radius: 30px;
    background-color: #fff;
    color: var(--primary-color);
}
.schedule_list .acc_btn span {
    position: absolute;
    background-color: var(--primary-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.sec--talk-schedule__list__items__col {
    grid-area: 2 / 1 / 3 / 3;
    display: grid;
}
@media (min-width: 751px) {
    .sec--talk-schedule__list__items__col {
        grid-template-columns: repeat(2, 130px);
        gap: 16px;
        justify-content: center;
    }
	.schedule_list .sec--talk-schedule__list__items__col figure {
		display: block!important;
	}
}