/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	overflow: hidden;
}
/* -----------------------------------------------
= page-title
----------------------------------------------- */
.page-title {
	position: relative;
}
.page-title .set {
	position: absolute;
	left: 13px;
	bottom: 5px;
	color: #fff;
}
.page-title .category {
	font-family: var(--en);
	font-size: calc(1.2rem / 1.6);
	line-height: 1.2;
	letter-spacing: .04em;
}
.page-title h1 {
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-title {
	max-width: 1500px;
	margin-inline: auto;
}
.page-title .set {
	left: 100px;
	bottom: 30px;
}
.page-title .category {
	margin-bottom: 10px;
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .04em;
}
.page-title h1 {
	font-size: calc(2.4rem / 1.6);
	letter-spacing: .08em;
}
.page-title img {
	max-height: calc(100vh - 60px);
	height: 600px;
	object-fit: cover;
	object-position: 50% 100%;
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.intro {
	margin: 30px 13px 40px;
}
.intro h2 {
	margin-bottom: 10px;
	font-family: var(--zen);
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .08em;
}
.intro p {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(22 / 14);
}
@media print, screen and (min-width: 768px) {/* PC */
.intro {
	max-width: 1300px;
	margin: 90px auto 120px;
	padding-inline: 30px;
}
.intro h2 {
	margin-bottom: 20px;
	font-size: calc(2.8rem / 1.6);
}
.intro p {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(36 / 18);
}
}/* @media */
/* -----------------------------------------------
= tab-list
----------------------------------------------- */
.tab-list {
	max-width: 310px;
	margin: 0 auto 55px;
}
.tab-list li + li {
	margin-top: 22px;
}
.tab-list li button {
	position: relative;
	width: 100%;
	padding: 14px 0;
	background: #f2f2ee;
	border: 1px solid transparent;
	font-size: calc(2rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .25em;
}
.tab-list li button::before,
.tab-list li button::after {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: 1;
	width: 20px;
	height: 20px;
}
.tab-list li button::before {
	background: #fff;
	clip-path: polygon(0 0,100% 0,0 100%);
}
.tab-list li button::after {
	background: #f25f69;
	clip-path: polygon(100% 0,100% 100%,0 100%);
}
.tab-list li button[aria-selected="true"] {
	color: #fff;
	background: var(--red);
	pointer-events: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.tab-list {
	max-width: 960px;
	margin: 0 auto 140px;
	padding-inline: 30px;
}
.tab-list ul {
	display: flex;
	gap: 0 100px;
}
.tab-list li {
	width: 100%;
}
.tab-list li + li {
	margin-top: 0;
}
.tab-list li button {
	padding: 16px 0;
	font-size: calc(2.6rem / 1.6);
}
.tab-list li button::before,
.tab-list li button::after {
	width: 28px;
	height: 28px;
}
}/* @media */
@media (hover:hover) {
.tab-list li button {
	transition: .3s;
}
.tab-list li button:hover {
	color: #fff;
	background: var(--red);
}
}/* @media */
/* -----------------------------------------------
= tab-panel
----------------------------------------------- */
.tab-panel {
	display: none;
	margin: 0 13px 45px;
}
.tab-panel.is-active {
	display: block;
}
.tab-panel .item + .item {
	margin-top: 20px;
}
@media print, screen and (min-width: 768px) {/* PC */
.tab-panel {
	max-width: 960px;
	margin: 0 auto 140px;
	padding-inline: 30px;
}
.tab-panel .item + .item {
	margin-top: 40px;
}
}/* @media */
/* -----------------------------------------------
= btn-more
----------------------------------------------- */
.btn-more {
	position: relative;
	width: 100%;
	padding-block: 12px 19px;
	color: #fff;
	background: linear-gradient(90deg,#e93c2d,#ff7d51);
}
.btn-more::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 22px;
	height: 22px;
	background: url(../../img/events/icon-accordion-plus.svg) no-repeat 50% / cover;
}
.btn-more[aria-expanded="true"]::after {
	background: url(../../img/events/icon-accordion-minus.svg) no-repeat 50% / cover;
}
.btn-more .format {
	display: inline-block;
	margin: 0 0 4px 20px;
	padding: 3px 20px 2px;
	color: #fff;
	background: #ff9b28;
	border-radius: 4px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .25em;
}
.btn-more .title {
	display: block;
	position: relative;
	z-index: 1;
	padding-inline: 20px;
	font-size: calc(2.5rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
}
.btn-more .title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	z-index: -1;
	width: 100%;
	height: 1px;
	border-bottom: 0.5px solid #ff9b28;
}
.btn-more[aria-expanded="true"]::after {
	background: url(../../img/events/icon-accordion-minus.svg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.btn-more {
	padding-block: 20px;
}
.btn-more::after {
	top: calc(50% - 18px);
	right: 38px;
	width: 36px;
	height: 36px;
}
.btn-more .format {
	margin: 0 0 4px 45px;
	padding: 3px 35px 2px;
	border-radius: 8px;
	font-size: calc(1.6rem / 1.6);
}
.btn-more .title {
	padding-inline: 45px;
	font-size: calc(2.6rem / 1.6);
}
.btn-more .title::after {
	bottom: 8px;
	width: calc(790 / 960 * 100%);
	border-bottom: 1px solid #ff9b28;
}
}/* @media */
@media (hover:hover) {
.btn-more {
	transition: opacity .3s;
}
.btn-more:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= detail-more
----------------------------------------------- */
.detail-more {
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease;
}
.detail-more .inner {
	padding: 34px 10px 40px;
	background: #f2f2ee;
	font-size: calc(1.3rem / 1.6);
}
.detail-more .recommend,
.detail-more .program,
.detail-more .outline {
	margin-bottom: 35px;
}
.detail-more .voice {
	margin-bottom: 40px;
}
.detail-more h3 {
	margin-bottom: 15px;
	padding: 2px 10px 2px 32px;
	color: var(--red);
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 6px 4px;
	background-size: 17px auto;
	border: 0.5px solid #f25f69;
	border-radius: 4px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.detail-more .recommend h3 {
	background-image: url(../../img/events/icon-title-recommend.svg);
}
.detail-more .program h3 {
	background-image: url(../../img/events/icon-title-program.svg);
}
.detail-more .outline h3 {
	background-image: url(../../img/events/icon-title-outline.svg);
}
.detail-more .voice h3 {
	background-image: url(../../img/events/icon-title-voice.svg);
}
.detail-more li {
	position: relative;
	padding-left: 16px;
}
.detail-more li::before {
	content: "";
	position: absolute;
	top: .3em;
	left: 0;
	width: 10px;
	height: 10px;
	background: #ff9b28;
	border-radius: 50%;
}
.detail-more .program p {
	margin-bottom: 15px;
	font-weight: 700;
}
.detail-more .program .set + .set {
	margin-top: 12px;
}
.detail-more .program .set p {
	margin-bottom: 3px;
}
.detail-more .program h4 {
	margin-bottom: 10px;
	font-size: calc(1rem / 1.6);
}
.detail-more .program h4 span {
	margin-right: 1em;
	color: var(--red);
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.detail-more .outline h4 {
	color: var(--red);
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.detail-more .outline p {
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.detail-more .outline .em {
	margin-bottom: 15px;
	font-size: calc(2.2rem / 1.6);
}
.detail-more .voice .set {
	display: flex;
	align-items: start;
	gap: 0 14px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	background: url(../../img/events/voice-bg-dot.svg) repeat-x 0 100% / auto 1px;
}
.detail-more .voice .set img {
	width: 50px;
}
.detail-more .voice .set p {
	flex: 1;
	line-height: calc(20 / 13);
	letter-spacing: .04em;
}
.detail-more .voice .set p span {
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
.detail-more .voice .set p span::before {
	content: "●";
	color: #ff414d;
}
.detail-more .entry p {
	margin-bottom: 15px;
	text-align: center;
}
.detail-more .entry a {
	display: block;
	padding: 3px;
	color: #fff;
	background: #ff414d;
	font-size: calc(2.3rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .30em;
}
@media print, screen and (min-width: 768px) {/* PC */
.detail-more .inner {
	padding: 68px 30px 75px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.detail-more .recommend,
.detail-more .program,
.detail-more .voice,
.detail-more .entry,
.detail-more .outline {
	max-width: 760px;
	margin-inline: auto;
}
.detail-more .recommend,
.detail-more .program,
.detail-more .outline {
	margin-bottom: 80px;
}
.detail-more .voice {
	margin-bottom: 75px;
}
.detail-more h3 {
	margin-bottom: 20px;
	padding: 8px 10px 8px 64px;
	background-position: 12px 8px;
	background-size: 34px auto;
	border: 1px solid #f25f69;
	border-radius: 8px;
	font-size: calc(2rem / 1.6);
}
.detail-more li {
	padding-left: 18px;
}
.detail-more li::before {
	top: .35em;
	width: 16px;
	height: 16px;
}
.detail-more .program p {
	margin-bottom: 25px;
}
.detail-more .program h4 {
	font-size: calc(1.4rem / 1.6);
}
.detail-more .program h4 span {
	font-size: calc(2rem / 1.6);
}
.detail-more .outline h4 {
	font-size: calc(1.8rem / 1.6);
	line-height: 1.3;
}
.detail-more .outline p {
	font-size: calc(1.8rem / 1.6);
}
.detail-more .outline .em {
	font-size: calc(3.2rem / 1.6);
}
.detail-more .voice .set {
	gap: 0 25px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	background-size: auto 2px;
}
.detail-more .voice .set img {
	width: 100px;
}
.detail-more .voice .set p {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(28 / 16);
}
.detail-more .voice .set p span {
	font-size: calc(1.6rem / 1.6);
	line-height: 2;
}
.detail-more .entry p {
	margin-bottom: 35px;
	font-size: calc(1.6rem / 1.6);
}
.detail-more .entry a {
	padding: 2px;
	font-size: calc(3.2rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.detail-more .entry a {
	transition: opacity .3s;
}
.detail-more .entry a:hover {
	opacity: .8;
}
}/* @media */
