*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

/* ===============================================
# メディアクエリー
=============================================== */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.57;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.jp {
	font-family: "Noto Sans JP", sans-serif;
}

.en {
	font-family: "Encode Sans", sans-serif;
	font-weight: 700;
}

.l-inner {
	padding-left: 15px;
	padding-right: 15px;
}

.l-side {
	display: flex;
	height: 100%;
	justify-content: space-between;
	white-space: nowrap;
	width: 100%;
}

.l-side__left,
.l-side__right {
	background: #ffa800;
	overflow: hidden;
	width: 26%;
	z-index: 41;
}

.l-side__left .l-side__text {
	animation: marqueeLeft 30s linear infinite;
}

.l-side__right .l-side__text {
	animation: marqueeRight 30s linear infinite;
}

.l-side__text {
	color: #fff;
	font-family: "azo-sans-uber", sans-serif;
	font-size: 3.90625vw;
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	transform-origin: center;
}

.l-body {
	margin: 0 auto;
	white-space: normal;
	width: 100%;
}

.l-drawerMenu {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.7s ease;
	width: 100%;
	z-index: 39;
}

.l-drawerMenu.js-open {
	transform: translateX(0);
}

.l-drawerMenu__list {
	background: #FFA800;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 100px 20px 210px;
}

.l-drawerMenu__item {
	color: #fff;
	text-align: center;
	transition: all 0.8s ease 0s;
}

.l-drawerMenu__item a {
	font-size: 1.125rem;
	font-weight: 900;
	letter-spacing: 0em;
	line-height: 1;
}

.l-drawerMenu__item:nth-child(2),
.l-drawerMenu__item:last-child {
	margin-top: 50px;
}

.l-drawerMenu__item:nth-child(3) {
	margin-top: 30px;
}

.l-drawerMenu__item--sns {
	display: flex;
	gap: 24px;
	justify-content: center;
}

.l-drawerMenu__item--sns img {
	border-radius: 50px;
	display: inline-block;
}

/* 
------------------------------------------------------ */

.l-drawerBg {
	background: rgba(0, 0, 0, 0.7);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 38;
}

.l-drawerBg.js-open {
	display: block;
}

body.noScroll {
	overflow: hidden;
}

.l-header.js-open {
	box-shadow: none;
}

.l-header {
	background: #fff;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
	height: 60px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 40;
}

.header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 848px;
	padding: 0 40px;
}

.l-header__logo {
	transition-duration: 0.4s;
}

.l-header__logo:hover {
	transform: scale(1.1);
}

.l-header__logo a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.l-header__nav__items {
	display: flex;
}

.l-header__nav__item {
	align-items: center;
	display: flex;
	justify-content: center;
	transition-duration: 0.4s;
}

.l-header__nav__item:not(:first-child) {
	margin-left: 18px;
}

.l-header__nav__item:hover {
	transform: scale(1.1);
}

.l-header__nav__item__link {
	font-weight: 700;
}

.l-header__nav__btn__link {
	align-items: center;
	background: #2709E0;
	border: 1px solid #2709e0;
	border-radius: 0px 0px 20px 20px;
	color: #fff;
	display: flex;
	height: 60px;
	justify-content: center;
	margin-left: 30px;
	transition-duration: 0.4s;
	width: 200px;
}

.l-header__nav__btn__link:hover {
	transform: scale(1.1);
}

/* ===============================================
# drawerIcon
=============================================== */

.l-header__drawerIcon {
	display: none;
}

.l-header__drawerIcon__bar {
	background: #000;
	display: block;
	height: 1px;
	transition: all 0.3s ease 0s;
	width: 100%;
}

.l-header__drawerIcon.js-open .l-header__drawerIcon--bar1 {
	transform: translateY(7px) rotate(30deg);
}

.l-header__drawerIcon.js-open .l-header__drawerIcon--bar2 {
	display: none;
}

.l-header__drawerIcon.js-open .l-header__drawerIcon--bar3 {
	transform: translateY(-7px) rotate(-30deg);
}

.l-next {
	margin: 20px auto 0;
	max-width: 670px;
	width: 100%;
}

.l-ticket {
	margin-top: 50px;
	text-align: center;
}

.l-ticket__img {
	margin-top: 7.75px;
	transition-duration: 0.4s;
}

.l-ticket__img:hover {
	transform: scale(1.2);
}

.l-ticket__money {
	margin-top: 21.55px;
}

.l-ticket__money__title,
.l-ticket__venue__title {
	align-items: center;
	background: #FF1DB2;
	border: 1px solid #FF1DB2;
	border-radius: 30px;
	color: #fff;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	letter-spacing: 0em;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	max-width: 120px;
}

.l-ticket__money__body {
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 15px;
}

.l-ticket__money__body span {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
}

.l-ticket__venue {
	margin-top: 30px;
}

.l-ticket__venue__body {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 15px;
}

.l-ticket__warning {
	margin-top: 40px;
}

.l-ticket__warning__title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
}

.l-ticket__warning__texts {
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	max-width: 440px;
}

.l-ticket__warning__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.8571428571;
	text-align: left;
}

.l-footer {
	background: #FF1DB2;
	color: #fff;
	margin-top: 80px;
	padding-bottom: 60px;
	padding-top: 60px;
	text-align: center;
}

.l-footer__logo {
	margin-left: auto;
	margin-right: auto;
	max-width: 249px;
}

.l-footer__domain {
	font-family: "Inter", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 16px;
}

.l-footer__sns {
	display: flex;
	gap: 28px;
	justify-content: center;
	margin-top: 38px;
}

.l-footer__sns__f,
.l-footer__sns__x {
	height: 60px;
	transition-duration: 0.4s;
	width: 60px;
}

.l-footer__sns__f:hover,
.l-footer__sns__x:hover {
	transform: scale(1.2);
}

.l-footer__sns__x img {
	border-radius: 50%;
}

.l-footer__contact {
	margin-top: 37px;
}

.l-footer__contact__title {
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1;
}

.l-footer__contact__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.625;
	margin-top: 20px;
}

.l-footer__contact__btn {
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.1);
	color: #FF1DB2;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 10px;
	padding: 10px 20px;
	transition-duration: 0.4s;
}

.l-footer__contact__btn:hover {
	transform: scale(1.03);
}

.l-footer__copyright {
	display: inline-block;
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	margin-top: 26px;
}

.l-ticketBtn {
	display: none;
}

.c-btn1 {
	background: #fff;
	border: 2px solid #111;
	border-radius: 60px;
	text-align: center;
}

.c-btn1__text {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.0048em;
	line-height: 1.7;
	padding: 8px 28px;
	text-align: center;
}

.c-btn__white {
	background: #fff;
	border: 2px solid currentColor;
	border-radius: 60px;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.0048em;
	line-height: 1.7;
	min-width: 150px;
	padding: 8px 28px;
}

.c-btn__black {
	background: #111;
	border: 2px solid currentColor;
	border-radius: 60px;
	color: #fff;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.0048em;
	line-height: 1.7;
	min-width: 150px;
	padding: 8px 28px;
	transition: color 0.3s, background 0.3s;
}

.c-btn__black:hover {
	background: #fff;
	color: #000;
}

.c-title {
	text-align: center;
}

.c-title__main {
	font-family: "azo-sans-uber", sans-serif;
	font-size: 1.75rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1;
}

.c-title__sub {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 10px;
}

.c-pageTop {
	bottom: 10px;
	opacity: 0;
	position: fixed;
	right: 10px;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: min(13.3333333333%, 50px);
}

.c-pageTop.is-show {
	opacity: 1;
	visibility: visible;
}

.c-fade-in {
	opacity: 0;
	transition: opacity 1s;
}

.c-fade-in.is-in-view {
	opacity: 1;
}

.c-fade-in__up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.c-fade-in__up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.c-fade-in__down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.c-fade-in__down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.p-header__logo a img {
	display: block;
}

.p-header__link {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.0048em;
	line-height: 1.7;
	transition: color 0.3s;
}

.p-header__link:hover {
	color: #FF1DB2;
}

.p-header__button {
	transition: background-color 0.3s, color 0.3s;
}

.p-header__button:hover {
	background: #FABE00;
}

.p-fv {
	margin-top: 100px;
}

.p-fv__title {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: -16px;
	padding: 0 40px;
	position: relative;
	z-index: 20;
}

.p-fv__img {
	height: 477px;
	max-width: 848px;
}

/* ===============================================
# swiper
=============================================== */

.p-fv__container {
	height: auto;
	margin: auto;
	max-width: 848px;
	width: 100%;
}

.swiper-container {
	padding-bottom: 30px;
	position: relative;
}

.swiper {
	position: relative;
}

.swiper-wrapper {
	position: relative;
}

.p-swiper__slide {
	height: auto;
	padding-top: 54.6875%;
	position: relative;
	width: 100%;
}

.p-swiper__slide a {
	overflow: hidden;
}

.p-swiper__slide img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: 0.8s;
	width: 100%;
}

.p-swiper__slide img:hover {
	transform: scale(1.1);
}

.swiper-pagination-bullet {
	background: #D9D9D9;
	border-radius: 50%;
	height: 10px;
	opacity: 1;
	width: 10px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #2709E0;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.p-fv2 {
	margin-top: 60px;
	padding-top: 40px;
}

.p-fv2__img {
	text-align: center;
	width: 100%;
}

.p-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	width: 848px;
}

.p-overview {
	margin-top: 40px;
}

.p-overview__title {
	text-align: center;
}

.p-overview__title__text {
	font-size: 1.375rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.p-overview__title__img {
	margin-left: auto;
	margin-right: auto;
	margin-top: 14px;
}

.p-overview__explanatory {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 2;
	margin-top: 30px;
	text-align: center;
}

.p-speakers {
	margin-top: 50px;
}

.p-speakers__tile .c-title__sub {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
}

.p-speakers__contents {
	display: flex;
	flex-wrap: wrap;
	gap: 27px 50px;
	justify-content: center;
	margin-top: 19px;
}

.p-speakers__content {
	max-width: 310px;
	text-align: center;
	width: 100%;
}

.p-speakers__content__name {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 17px;
}

.p-speakers__content__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.5714285714;
	margin-top: 15px;
}

.p-speakers2 {
	margin-top: 62px;
}

.p-speakers2__who {
	display: flex;
	gap: 26px;
	justify-content: center;
	margin-top: 24px;
}

.p-speakers2__who__img {
	height: 200px;
	width: 200px;
}

.p-speakers2__body {
	flex: 1;
	max-width: 439px;
}

.p-speakers2__body__name {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 11px;
}

.p-speakers2__body__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.5714285714;
	margin-top: 19px;
}

.p-speakers2__imgs {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 78px;
	max-width: 670px;
}

.p-speakers2__img {
	box-sizing: border-box; /* paddingを含めた幅にする */
	padding: 10px; /* 画像の余白を調整 */
	width: calc(50% - 15px); /* 画像と感覚の合計が50%になるように調整 */
}

.p-speakers2__img img {
	-o-object-fit: contain;
	height: auto; /* 画像の高さを調整 */
	max-height: 100%; /* コンテナーの高さを超えないように */
	max-width: 100%; /* コンテナーの幅を超えないように */
	object-fit: contain; /* アスペクト比を保持する */
	width: auto; /* 画像の幅を調整 */
}

.p-timeTable {
	margin-top: 50px;
}

.p-timeTable__container {
	color: #2709E0;
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.p-timeTable__time {
	border-right: 1px solid #2709E0;
	padding-right: 13px;
}

.p-timeTable__time li {
	font-family: "Encode Sans", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1;
}

.p-timeTable__time li:not(:first-child) {
	margin-top: 130px;
}

.p-timeTable__day {
	color: #2709E0;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 20px;
	text-align: center;
}

.p-timeTable__contents {
	margin-left: 22px;
	margin-top: 12px;
}

.p-timeTable__content {
	border: 1px solid #2709E0;
	border-radius: 13px;
	min-height: 200px;
	transition-duration: 0.4s;
	width: 600px;
}

.p-timeTable__content:not(:first-child) {
	margin-top: 85px;
}

/* .p-timeTable__content:nth-child(2) {
	margin-top: 58px;
} */

.p-timeTable__content:hover {
	transform: scale(1.05);
}

.p-timeTable__content__btn {
	display: inline-block;
	height: 100%;
	width: 100%;
}

.p-timeTable__content__headInner {
	padding: 16px 20px 20px 20px;
}

.p-timeTable__content__time {
	font-family: "Encode Sans", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1;
}

.p-timeTable__content__title {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1.2;
	margin-top: 16px;
	min-height: 51px;
}

.p-timeTable__content__title span {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1.5;
}

.p-timeTable__content__speakers {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.p-timeTable__content__speakers__head {
	border: 1px solid #2709E0;
	border-radius: 30px;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.1666666667;
	padding: 2px 11px 3px 11px;
}

.p-timeTable__content__speakers__name {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
}

.p-timeTable__content__detail {
	align-items: center;
	background: #2709E0;
	border-radius: 0 0 13px 13px;
	color: #fff;
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	height: 40px;
	justify-content: center;
	letter-spacing: 0em;
	line-height: 1.5555555556;
	text-align: center;
}

.p-howTo {
	margin-top: 50px;
	text-align: center;
}

.p-howTo__wrapper {
	margin-top: 30px;
}

.p-howTo__item:not(:first-child) {
	margin-top: 30px;
}

.p-howTo__item__step {
	color: #00CE5F;
	font-family: "Encode Sans", sans-serif;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1;
}

.p-howTo__item__title {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0em;
	line-height: 1;
	margin-top: 15px;
}

.p-howTo__item__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.75;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	max-width: 670px;
	text-align: left;
}

.p-howTo__item__annotation {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.75;
	margin-left: auto;
	margin-right: auto;
	margin-top: 29px;
	max-width: 670px;
	text-align: left;
}

.p-howTo__next {
	margin-top: 23px;
}

.p-howTo__warning {
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	max-width: 561px;
	text-align: left;
}

.p-howTo__warning__title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
	text-align: center;
}

.p-howTo__warning__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.8571428571;
	list-style-position: inside;
	margin-top: 20px;
}

.p-howTo__warning__text li {
	padding-left: 1em;
	text-indent: -1em;
}

.p-sessionDetails {
	margin-top: 40px;
	text-align: center;
}

.p-sessionDetails__title {
	font-size: 1.75rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.4285714286;
}

.p-sessionDetails__title span {
	font-size: 1.375rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.4545454545;
}

.p-sessionDetails__day {
	color: #2709E0;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 20px;
}

.p-sessionDetails__body {
	-moz-text-align-last: left;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 2;
	margin-left: auto;
	margin-right: auto;
	margin-top: 41px;
	max-width: 670px;
	text-align-last: left;
}

.p-sessionDetails__imgs {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	max-width: 670px;
}

.p-sessionDetails__imgs__col {
	display: flex;
	gap: 20px;
}

.u-inlineBlock {
	display: inline-block;
	font-weight: inherit;
}

.u-flex-directionColumn {
	flex-direction: column;
}

.p-job{
	font-size: 16px;
}

@media screen and (min-width: 1200px) {

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1260px;
	padding-left: 30px;
	padding-right: 30px;
}

.c-pageTop {
	bottom: 30px;
	right: 16px;
	width: auto;
}

.c-pageTop img {
	width: 76px;
}

.p-header__logo a img {
	height: 35px;
	width: 135px;
}

.p-header__nav {
	align-items: center;
	display: flex;
	gap: 40px;
}

.p-header__open {
	display: none;
}

.u-is--sp {
	display: none;
}

}

@media screen and (max-width: 1199px) {

.u-is--pc {
	display: none;
}

.u-is--sp {
	display: none;
}

}

@media screen and (max-width: 999px) {

.l-side__left,
.l-side__right {
	display: none;
}

.l-header {
	height: 48px;
}

.header__inner {
	padding: 0 20px;
}

.l-header__logo {
	height: 16.47px;
	width: 227px;
}

.l-header__nav {
	display: none;
}

.l-header__drawerIcon {
	display: flex;
	flex-flow: column;
	height: 34px;
	justify-content: space-between;
	padding: 10px 20px;
	width: 65px;
}

.l-next {
	max-width: 89%;
	text-align: center;
}

.l-ticket__img {
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	max-width: 325px;
}

.l-ticket__money {
	margin-top: 19.73px;
}

.l-ticket__warning__texts {
	max-width: 334px;
}

.l-footer {
	margin-top: 50px;
	padding-top: 50px;
}

.l-footer__domain {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 10px;
}

.l-footer__sns {
	gap: 24px;
	margin-top: 20px;
}

.l-footer__contact {
	margin-top: 30px;
}

.l-footer__contact__title {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1;
}

.l-footer__contact__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.l-footer__copyright {
	margin-top: 20px;
}

.l-ticketBtn {
	align-items: center;
	background: #2709E0;
	border-radius: 20px 20px 0 0;
	bottom: 0;
	color: #fff;
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	height: 60px;
	justify-content: center;
	left: 0;
	letter-spacing: 0em;
	line-height: 1;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.p-fv__title {
	margin-bottom: -6px;
}

.p-inner {
	padding-left: 20px;
	padding-right: 20px;
}

.p-overview {
	margin-left: 3px;
	margin-right: 3px;
}

.p-overview__title__text {
	font-size: 1.125rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.3333333333;
}

.p-overview__title__img {
	margin-top: 11px;
	max-width: 335px;
	width: 100%;
}

.p-overview__explanatory {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1.7857142857;
	margin-top: 20px;
}

.p-speakers__contents {
	gap: 30px;
}

.p-speakers2 {
	margin-top: 50px;
}

.p-speakers2__who {
	align-items: center;
	flex-direction: column;
	gap: 17px;
	margin-top: 19px;
}

.p-speakers2__body__name {
	margin-top: 0;
	text-align: center;
}

.p-job{
	text-align: center;
}

.p-speakers2__body__text {
	-moz-text-align-last: left;
	text-align-last: left;
}

.p-speakers2__imgs {
	margin-top: 74px;
	max-width: 439px;
}

.p-speakers2__img {
	width: 100%;
}

.p-timeTable__container {
	padding-left: 5px;
	padding-right: 5px;
}

.p-timeTable__time {
	padding-right: 11px;
}

.p-timeTable__time li {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1;
}

.p-timeTable__content {
	max-width: 600px;
	width: 100%;
}

.p-timeTable__content__headInner {
	padding: 12px 9px 20px 9px;
}

.p-timeTable__content__time {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1;
}

.p-timeTable__content__title {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1.4444444444;
	margin-top: 8px;
	min-height: 78px;
}

.p-timeTable__content__title span {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
}

.p-timeTable__content__speakers {
	gap: 8px;
	margin-top: 13px;
}

.p-timeTable__content__speakers__head {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1;
}

.p-timeTable__content__speakers__name {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1;
}

.p-howTo__item:not(:first-child) {
	margin-top: 20px;
}

.p-howTo__item__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.7142857143;
}

.p-howTo__item__annotation {
	margin-top: 20px;
}

.p-howTo__next {
	margin-top: 13px;
}

.p-howTo__warning {
	margin-top: 30px;
}

.p-howTo__warning__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.7142857143;
}

.p-sessionDetails__imgs__col {
	flex-direction: column;
}

.u-is--pcTab {
	display: none;
}

.u-is--sp {
	display: block;
}

}

@media screen and (max-width: 999px) and (max-width: 450px) {

.p-timeTable__content__title span {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 230px;
}

}

@keyframes marqueeLeft {

0% {
	transform: translateY(8000%) translateX(17%) rotate(-90deg);
}

/* 上から下に移動 */

100% {
	transform: translateY(5000px) translateX(17%) rotate(-90deg);
}

/* 最下部まで移動 */

}

@keyframes marqueeRight {

0% {
	transform: translateY(-1300px) translateX(-17%) rotate(90deg);
}

/* 上から下に移動 */

100% {
	transform: translateY(0) translateX(-17%) rotate(90deg);
}

/* 最下部まで移動 */

}

/* 2025-winter時に追加 */
.p-produced{
	padding-top: 20px;
}

.p-produced__logo img{
	width: 160px;
	padding-top: 10px;
}

@media screen and (max-width: 999px) {
	.p-produced__logo img{
		width: 140px;
	}

}