@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@500&display=swap");
/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

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

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/*----------
	base
----------*/
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
	scroll-behavior: smooth;
}
html.is-locked {
	position: absolute;
	overflow: hidden;
}

body {
	font-size: 1.4rem;
	line-height: 1.8;
	font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	letter-spacing: 0;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (min-width: 768px), print {
	body {
		min-width: 1280px;
		font-size: 1.6rem;
	}
}
@media print {
	body {
		min-width: 1280px;
		zoom: 0.8;
	}
}

a {
	text-decoration: none;
	color: var(--color-prim);
}

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

sup {
	vertical-align: top;
	font-size: 0.7em;
}

sub {
	vertical-align: baseline;
	font-size: 0.7em;
}

input[type=text],
textarea,
select {
	font-family: inherit;
	font-size: 1.6rem;
}

/*----------
	main header
----------*/
@media print {
	header {
		display: none;
	}
}

/* header */
.l-header__inner {
	height: 72px;
	position: relative;
	z-index: 100;
	background-color: #fff;
}
.l-header__title {
	width: 258px;
	position: absolute;
	top: 50%;
	left: 20px;
	translate: 0 -50%;
}
@media (max-width: 767px) {
	.l-header__inner {
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	}
	.l-header__date {
		display: none;
	}
	.l-header__navtoggle {
		display: block;
		width: 72px;
		height: 72px;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
	}
	.l-header__navtoggle::before, .l-header__navtoggle::after {
		content: "";
		display: block;
		width: 32px;
		height: 2px;
		position: absolute;
		left: 50%;
		background-color: var(--color-ink);
		transition: translate 0.2s, rotate 0.2s;
	}
	.l-header__navtoggle::before {
		translate: -50% -8px;
	}
	.l-header__navtoggle::after {
		translate: -50% 8px;
	}
	.l-header__nav {
		width: 100%;
		height: calc(100vh - 72px);
		height: calc(100dvh - 72px);
		position: absolute;
		top: 72px;
		left: 0;
		background-color: rgba(0, 0, 0, 0.3);
		overflow: auto;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-header.is-spnav-active .l-header__navtoggle::before {
		translate: -50% -50%;
		rotate: 45deg;
	}
	.l-header.is-spnav-active .l-header__navtoggle::after {
		translate: -50% -50%;
		rotate: -45deg;
	}
	.l-header.is-spnav-active .l-header__nav {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
}
@media (min-width: 768px), print {
	.l-header__inner {
		height: 180px;
	}
	.l-header__inner::after {
		content: "";
		display: block;
		width: 100%;
		height: 110px;
		position: absolute;
		top: 0;
		left: 0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
		pointer-events: none;
	}
	.l-header__title {
		width: 468px;
		top: 27px;
		left: 32px;
		translate: 0;
	}
	.l-header__title > img {
		width: 100%;
	}
	.l-header__date {
		position: absolute;
		top: 14px;
		right: 32px;
		text-align: right;
		font-weight: 500;
		font-size: 1.3rem;
		line-height: 1.4;
	}
	.l-header__date > em {
		font-weight: bold;
		font-size: 1.7rem;
	}
	.l-header__navtoggle {
		display: none;
	}
	.l-header__nav {
		width: 100%;
		z-index: 1;
	}
}

/* ナビゲーション */
.l-mainnav {
	background-color: #fff;
	line-height: 1.4;
}
.l-mainnav__sub > li > a {
	display: block;
	padding-left: 1.3em;
	position: relative;
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--color-text);
}
.l-mainnav__sub > li > a::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0.2em;
	left: 0;
	background-color: var(--color-prim);
	-webkit-mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
	mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
}
.l-mainnav__link > li > a {
	display: grid;
	place-items: center;
	padding: 12px 28px;
	border-radius: 5px;
	position: relative;
	background-color: var(--color-ink);
	font-weight: 600;
	font-size: 1.4rem;
	color: #fff;
}
.l-mainnav__link > li > a::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: calc(50% - 0.5em);
	right: 8px;
	background-color: #fff;
	-webkit-mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
	mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
}
.l-mainnav__link > li.visitors > a {
	background-color: var(--color-prim);
}
.l-mainnav__link > li.exhibitors > a {
	background-color: var(--color-ink);
}
@media (max-width: 767px) {
	.l-mainnav {
		padding-bottom: 40px;
	}
	.l-mainnav__main > li {
		border-top: 1px solid var(--color-border);
	}
	.l-mainnav__main > li > a {
		display: block;
		padding: 15px 20px;
		color: var(--color-text);
	}
	.l-mainnav__sub {
		padding: 15px 20px;
		border-top: 1px solid var(--color-border);
	}
	.l-mainnav__sub > li + li {
		margin-top: 8px;
	}
	.l-mainnav__link {
		margin-top: 20px;
		padding-inline: 20px;
	}
	.l-mainnav__link > li {
		max-width: 335px;
		margin-inline: auto;
	}
	.l-mainnav__link > li + li {
		margin-top: 20px;
	}
}
@media (min-width: 768px), print {
	.l-mainnav__main {
		display: flex;
		justify-content: space-between;
		width: 1200px;
		height: 70px;
		position: absolute;
		bottom: 0;
		left: calc(50% - 600px);
	}
	.l-mainnav__main > li > a {
		display: block;
		padding: 22px;
		font-weight: bold;
		font-size: 1.6rem;
		color: var(--color-text);
	}
	.l-mainnav__sub {
		display: flex;
		justify-content: flex-end;
		gap: 16px;
		position: absolute;
		bottom: 90px;
		right: 32px;
	}
	.l-mainnav__sub > li > a {
		font-size: 1.2rem;
	}
	.l-mainnav__link {
		display: flex;
		justify-content: flex-end;
		gap: 10px;
		position: absolute;
		top: 32px;
		right: 350px;
	}
	.l-mainnav__link > li {
		flex: 0 0 176px;
	}
}
@media (hover: hover) {
	.l-mainnav__main > li > a, .l-mainnav__sub > li > a {
		cursor: pointer;
		transition: color 0.2s;
	}
	.l-mainnav__main > li > a:hover, .l-mainnav__sub > li > a:hover {
		color: var(--color-prim);
	}
	.l-mainnav__link > li > a {
		cursor: pointer;
		transition: opacity 0.2s;
	}
	.l-mainnav__link > li > a:hover {
		opacity: 0.6;
	}
}

/*----------
	main footer
----------*/
@media print {
	footer {
		display: none;
	}
}

.l-footer {
	background-color: var(--color-bg);
}
.l-footer__inner {
	max-width: 1280px;
	margin-inline: auto;
	padding: 50px 20px 88px 20px;
	position: relative;
}
.l-footer__backhead {
	display: grid;
	place-items: center;
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	z-index: 99;
	background-color: #909090;
}
.l-footer__backhead::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	-webkit-mask: url("../images/icons/arrow-up.svg") no-repeat center/contain;
	mask: url("../images/icons/arrow-up.svg") no-repeat center/contain;
}
.l-footer__logo {
	max-width: 430px;
	margin-inline: auto;
}
.l-footer__logo > img {
	width: 100%;
}
.l-footer__nav li > a {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.4;
	color: var(--color-text);
}
.l-footer__nav li + li {
	margin-top: 12px;
}
.l-footer__link > li > a {
	display: grid;
	place-items: center;
	padding: 12px 28px;
	border-radius: 5px;
	position: relative;
	background-color: var(--color-ink);
	font-weight: 600;
	font-size: 1.4rem;
	color: #fff;
}
.l-footer__link > li > a::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: calc(50% - 0.5em);
	right: 8px;
	background-color: #fff;
	-webkit-mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
	mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
}
.l-footer__link > li.visitors > a {
	background-color: var(--color-prim);
}
.l-footer__link > li.exhibitors > a {
	background-color: var(--color-ink);
}
.l-footer__info > dt {
	position: relative;
	font-weight: 500;
}
.l-footer__info > dt::after {
	content: "";
	display: block;
	width: calc(100% - 3em);
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	background-color: var(--color-text);
}
.l-footer__info > dd {
	margin-top: 20px;
}
.l-footer__address {
	margin-top: 20px;
	font-size: 1.3rem;
	line-height: 1.4;
}
.l-footer__sns {
	margin-top: 24px;
	display: flex;
	justify-content: flex-start;
	gap: 20px;
}
.l-footer__sns > li {
	flex: 0 0 32px;
}
.l-footer__copyright {
	font-size: 1.2rem;
}
@media (max-width: 767px) {
	.l-footer__nav {
		margin-top: 40px;
	}
	.l-footer__sub {
		margin-top: 12px;
	}
	.l-footer__link {
		margin-top: 40px;
	}
	.l-footer__link > li {
		max-width: 335px;
		margin-inline: auto;
	}
	.l-footer__info {
		margin-top: 40px;
	}
	.l-footer__copyright {
		margin-top: 20px;
	}
}
@media (min-width: 768px), print {
	.l-footer__inner {
		display: grid;
		grid-template-columns: 43% 52%;
		gap: 40px 5%;
		padding: 80px 40px;
	}
	.l-footer__backhead {
		bottom: 40px;
		right: 40px;
		width: 60px;
		height: 60px;
	}
	.l-footer__backhead::after {
		width: 24px;
		height: 24px;
	}
	.l-footer__logo {
		margin-left: 0;
	}
	.l-footer__nav {
		grid-row: 1/3;
		grid-column: 2/3;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.l-footer__info {
		max-width: 430px;
	}
	.l-footer__copyright {
		grid-column: 1/3;
	}
}
@media (hover: hover) {
	.l-footer__backhead {
		cursor: pointer;
		transition: opacity 0.2s;
	}
	.l-footer__backhead:hover {
		opacity: 0.6;
	}
	.l-footer__main li > a, .l-footer__sub li > a {
		cursor: pointer;
		transition: color 0.2s;
	}
	.l-footer__main li > a:hover, .l-footer__sub li > a:hover {
		color: var(--color-prim);
	}
	.l-footer__link > li > a {
		cursor: pointer;
		transition: opacity 0.2s;
	}
	.l-footer__link > li > a:hover {
		opacity: 0.6;
	}
}

/*----------
	main content
----------*/
/* コンテンツ全体枠 */
.l-content {
	width: 100%;
	position: relative;
	overflow-x: hidden;
	padding-bottom: 100px;
}
@media (min-width: 768px), print {
	.l-content {
		padding-bottom: 160px;
	}
}

/* セクション枠 最大幅設定・中央配置 */
.l-section {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 20px;
}
@media (min-width: 768px), print {
	.l-section {
		padding-inline: 40px;
	}
}

.l-breadcrumb__inner {
	width: 100%;
	padding: 12px 0;
	overflow-x: auto;
	max-width: 1240px;
	margin-inline: auto;
}
.l-breadcrumb__list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	padding-inline: 20px;
	font-size: 1.2rem;
	line-height: 1.2;
}
.l-breadcrumb__list > li {
	display: block;
}
.l-breadcrumb__list > li > a {
	text-decoration: none;
	color: var(--color-text);
}
.l-breadcrumb__list > li + li {
	padding-left: 30px;
	position: relative;
}
.l-breadcrumb__list > li + li::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: calc(50% - 7px);
	left: 8px;
	background-color: var(--color-prim);
	-webkit-mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
	mask: url("../images/icons/arrow-right.svg") no-repeat center/contain;
}
@media (min-width: 768px), print {
	.l-breadcrumb__inner {
		padding: 24px 0;
		overflow: hidden;
	}
}
@media (hover: hover) {
	.l-breadcrumb__list > li > a {
		transition: color 0.2s;
	}
	.l-breadcrumb__list > li > a:hover {
		color: var(--color-prim);
	}
}

/*----------
	タイムテーブル
----------*/
.timetable {
	/* カラー */
}
.timetable__date {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}
.timetable__date > li {
	flex: 1 0 auto;
}
.timetable__date button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 10px;
	border: 3px solid var(--color-border);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	text-align: center;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.2;
	color: var(--color-text-caption);
}
.timetable__date button::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-prim);
}
.timetable__date button.is-active {
	border-color: var(--color-prim);
	color: var(--color-prim);
}
.timetable__date button.is-active::before {
	opacity: 0.05;
}
@media (min-width: 768px), print {
	.timetable__date {
		gap: 40px;
	}
	.timetable__date button {
		font-size: 1.8rem;
	}
}
@media (hover: hover) {
	.timetable__date button {
		cursor: pointer;
		transition: border-color 0.2s, color 0.2s;
	}
	.timetable__date button:hover {
		border-color: var(--color-prim);
		color: var(--color-prim);
	}
}
.timetable__schedules {
	margin-top: 40px;
	position: relative;
}
.timetable__schedules__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	opacity: 0;
	visibility: hidden;
	height: 0;
	position: absolute;
	top: 0;
	pointer-events: none;
	transition: opacity 0.4s, visibility 0.4s;
}
.timetable__schedules__item.is-active {
	position: static;
	opacity: 1;
	visibility: visible;
	height: auto;
	pointer-events: all;
}
@media (min-width: 768px), print {
	.timetable__schedules {
		margin-top: 50px;
	}
	.timetable__schedules__item {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px 24px;
	}
}
.timetable__hall__title {
	border-radius: 10px 10px 0 0;
	padding: 12px 8px;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #fff;
	background-color: var(--color-prim);
}
.timetable__items > li {
	margin-top: 12px;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.timetable__items > li::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.05;
	background-color: var(--color-prim);
}
.timetable__items > li > a,
.timetable__items > li > span {
	display: block;
	padding: 30px 20px 20px;
	border-radius: 5px;
	border: 1px solid var(--color-prim);
	position: relative;
	line-height: 1.4;
	color: var(--color-text);
}
.timetable__items > li > a::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: var(--color-prim);
	-webkit-mask: url("../images/icons/search.svg") no-repeat center/contain;
	mask: url("../images/icons/search.svg") no-repeat center/contain;
}
@media (hover: hover) {
	.timetable__items > li > a {
		transition: opacity 0.2s;
	}
	.timetable__items > li > a::after {
		transition: scale 0.2s;
	}
	.timetable__items > li > a:hover {
		opacity: 0.7;
	}
	.timetable__items > li > a:hover::after {
		scale: 1.2;
	}
}
.timetable__tag {
	position: absolute;
	top: 0;
	right: 0;
}
.timetable__time > span {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 50px;
	background-color: var(--color-prim);
	font-weight: 500;
	font-size: 1.4rem;
	color: #fff;
}
.timetable__title {
	margin-top: 16px;
	font-weight: bold;
	font-size: 1.6rem;
	color: var(--color-text);
}
.timetable__speaker {
	margin-top: 8px;
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--color-prim);
}
.timetable__caption {
	margin-top: 8px;
	font-size: 1.2rem;
	color: var(--color-text-caption);
}
.timetable__hall.color1 .timetable__hall__title {
	background-color: var(--color1);
}
.timetable__hall.color1 .timetable__items > li::before {
	background-color: var(--color1);
}
.timetable__hall.color1 .timetable__items > li > a,
.timetable__hall.color1 .timetable__items > li > span {
	border: 1px solid var(--color1);
}
.timetable__hall.color1 .timetable__items > li > a::after {
	background-color: var(--color1);
}
.timetable__hall.color1 .timetable__tag > span {
	background-color: var(--color1);
}
.timetable__hall.color1 .timetable__time > span {
	background-color: var(--color1);
}
.timetable__hall.color1 .timetable__speaker {
	color: var(--color1);
}
.timetable__hall.color2 .timetable__hall__title {
	background-color: var(--color2);
}
.timetable__hall.color2 .timetable__items > li::before {
	background-color: var(--color2);
}
.timetable__hall.color2 .timetable__items > li > a,
.timetable__hall.color2 .timetable__items > li > span {
	border: 1px solid var(--color2);
}
.timetable__hall.color2 .timetable__items > li > a::after {
	background-color: var(--color2);
}
.timetable__hall.color2 .timetable__tag > span {
	background-color: var(--color2);
}
.timetable__hall.color2 .timetable__time > span {
	background-color: var(--color2);
}
.timetable__hall.color2 .timetable__speaker {
	color: var(--color2);
}
.timetable__hall.color3 .timetable__hall__title {
	background-color: var(--color3);
}
.timetable__hall.color3 .timetable__items > li::before {
	background-color: var(--color3);
}
.timetable__hall.color3 .timetable__items > li > a,
.timetable__hall.color3 .timetable__items > li > span {
	border: 1px solid var(--color3);
}
.timetable__hall.color3 .timetable__items > li > a::after {
	background-color: var(--color3);
}
.timetable__hall.color3 .timetable__tag > span {
	background-color: var(--color3);
}
.timetable__hall.color3 .timetable__time > span {
	background-color: var(--color3);
}
.timetable__hall.color3 .timetable__speaker {
	color: var(--color3);
}
.timetable__hall.color4 .timetable__hall__title {
	background-color: var(--color4);
}
.timetable__hall.color4 .timetable__items > li::before {
	background-color: var(--color4);
}
.timetable__hall.color4 .timetable__items > li > a,
.timetable__hall.color4 .timetable__items > li > span {
	border: 1px solid var(--color4);
}
.timetable__hall.color4 .timetable__items > li > a::after {
	background-color: var(--color4);
}
.timetable__hall.color4 .timetable__tag > span {
	background-color: var(--color4);
}
.timetable__hall.color4 .timetable__time > span {
	background-color: var(--color4);
}
.timetable__hall.color4 .timetable__speaker {
	color: var(--color4);
}
.timetable__hall.color5 .timetable__hall__title {
	background-color: var(--color5);
}
.timetable__hall.color5 .timetable__items > li::before {
	background-color: var(--color5);
}
.timetable__hall.color5 .timetable__items > li > a,
.timetable__hall.color5 .timetable__items > li > span {
	border: 1px solid var(--color5);
}
.timetable__hall.color5 .timetable__items > li > a::after {
	background-color: var(--color5);
}
.timetable__hall.color5 .timetable__tag > span {
	background-color: var(--color5);
}
.timetable__hall.color5 .timetable__time > span {
	background-color: var(--color5);
}
.timetable__hall.color5 .timetable__speaker {
	color: var(--color5);
}
.timetable__hall.color6 .timetable__hall__title {
	background-color: var(--color6);
}
.timetable__hall.color6 .timetable__items > li::before {
	background-color: var(--color6);
}
.timetable__hall.color6 .timetable__items > li > a,
.timetable__hall.color6 .timetable__items > li > span {
	border: 1px solid var(--color6);
}
.timetable__hall.color6 .timetable__items > li > a::after {
	background-color: var(--color6);
}
.timetable__hall.color6 .timetable__tag > span {
	background-color: var(--color6);
}
.timetable__hall.color6 .timetable__time > span {
	background-color: var(--color6);
}
.timetable__hall.color6 .timetable__speaker {
	color: var(--color6);
}

/* モーダル */
.timetable-modal {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
	background-color: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.4s, visibility 0.4s;
}
.timetable-modal__inner {
	width: calc(100vw - 40px);
	max-height: calc(100dvh - 136px);
	height: 100%;
	position: absolute;
	top: 38px;
	left: 50%;
	translate: -50% 0;
	background-color: #fff;
}
.timetable-modal__inner > iframe {
	display: block;
	width: 100%;
	height: 100%;
}
.timetable-modal__close {
	display: grid;
	place-items: center;
	width: 200px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 5px;
	position: absolute;
	bottom: 38px;
	left: calc(50% - 100px);
	font-weight: 600;
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}
.timetable-modal.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
@media (min-width: 768px), print {
	.timetable-modal__inner {
		max-width: 800px;
		max-height: calc(100dvh - 300px);
		top: 100px;
	}
	.timetable-modal__close {
		bottom: 100px;
	}
}

/* 詳細 */
.timetable-detail-body {
	min-width: auto;
}

.timetable-detail {
	max-width: 800px;
	margin-inline: auto;
	padding: 20px;
	background-color: #fff;
}
.timetable-detail > *:first-child {
	margin-top: 0 !important;
}
.timetable-detail > *:last-child {
	margin-bottom: 0 !important;
}
@media (min-width: 768px), print {
	.timetable-detail {
		padding: 30px 50px;
	}
}

/*----------
	default margin
----------*/
.l-breadcrumb {
	margin-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-breadcrumb {
		margin-bottom: 60px;
	}
}

.l-section > [class^=c-],
.timetable-detail > [class^=c-] {
	margin-top: 30px;
}
@media (min-width: 768px), print {
	.l-section > [class^=c-],
	.timetable-detail > [class^=c-] {
		margin-top: 40px;
	}
}
.l-section > .c-heading-lv2,
.timetable-detail > .c-heading-lv2 {
	margin-top: 80px;
	margin-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-section > .c-heading-lv2,
	.timetable-detail > .c-heading-lv2 {
		margin-top: 80px;
		margin-bottom: 50px;
	}
}
.l-section > .c-heading-lv3,
.timetable-detail > .c-heading-lv3 {
	margin-top: 60px;
	margin-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-section > .c-heading-lv3,
	.timetable-detail > .c-heading-lv3 {
		margin-top: 80px;
		margin-bottom: 50px;
	}
}
.l-section > .c-heading-lv4,
.timetable-detail > .c-heading-lv4 {
	margin-top: 30px;
	margin-bottom: 10px;
}
.l-section > [class^=c-heading] + [class^=c-heading],
.timetable-detail > [class^=c-heading] + [class^=c-heading] {
	margin-top: 0;
}
.l-section > [class^=c-heading] + [class^=c-],
.timetable-detail > [class^=c-heading] + [class^=c-] {
	margin-top: 0;
}
.l-section > .c-feature-subtitle,
.timetable-detail > .c-feature-subtitle {
	margin-bottom: 40px;
}
.l-section > .c-feature-subtitle:not(:first-child),
.timetable-detail > .c-feature-subtitle:not(:first-child) {
	margin-top: 80px;
}
@media (min-width: 768px), print {
	.l-section > .c-feature-subtitle,
	.timetable-detail > .c-feature-subtitle {
		margin-bottom: 60px;
	}
	.l-section > .c-feature-subtitle:not(:first-child),
	.timetable-detail > .c-feature-subtitle:not(:first-child) {
		margin-top: 80px;
	}
}
.l-section > .c-qa + .c-qa,
.timetable-detail > .c-qa + .c-qa {
	margin-top: 0;
}
.l-section .c-inquirylink,
.timetable-detail .c-inquirylink {
	margin-top: 80px;
}
@media (min-width: 768px), print {
	.l-section .c-inquirylink,
	.timetable-detail .c-inquirylink {
		margin-top: 120px;
	}
}

.timetable-detail > [class^=c-] {
	margin-top: 30px;
}
.timetable-detail > .c-separator {
	margin-block: 30px;
}
@media (min-width: 768px), print {
	.timetable-detail > .c-separator {
		margin-block: 40px;
	}
}
/*# sourceMappingURL=common.css.map */
