@charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
	--font-family-gothic: "Barlow Condensed", "Noto Sans JP", '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'Avenir','Helvetica Neue','Helvetica','Arial', sans-serif;
	
	--font-en: "Roboto Condensed", sans-serif;
	
	--color-main: #290008;
	--color-black: #555;
	--color-gray: #aaa;
	--color-border: #d8d8d8;
}

/* Base
------------------------------------------------- */
* {
	font-weight: 500;
	font-style: normal;
	font-family: var(--font-family-gothic);
	margin: 0;
	padding: 0;
	line-height: 1.75;
	letter-spacing: .1em;
	color: var(--color-main);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*font-feature-settings: 'palt';*/
}
html {
	font-size: 62.5%;
}
body {
	font-size: 16px;
	font-size: 1.6rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-display: swap;
	overflow-x: hidden;
}
@media screen and (max-width: 599px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}

/* =================================================
Layout
================================================= */
#l-container {
	overflow: hidden;
}

/* Header
------------------------------------------------- */
.l-header {
	width: 220px;
	padding-block: 20px 0;
	position: relative;
	border-right: 1px solid var(--color-border);
}
.l-header__logo {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.l-header__insta {
	width: 17px;
	aspect-ratio: 1;
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 0;
}
.l-header__insta a {
	width: 100%;
	height: 100%;
	display: block;
}
.l-header__insta a img {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.l-header {
		width: 190px;
	}
	.l-header__logo {
		font-size: 2rem;
	}
}
@media screen and (max-width: 767px) {
	.l-header {
		width: 100%;
		padding-block: 20px;
		padding-inline: 5%;
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}
	.l-header__logo {
		font-size: 2rem;
		text-align: left;
	}
	.l-header__insta {
		right: 5%;
	}
}


/* =================================================
Object
================================================= */

/* Index
------------------------------------------------- */
.l-wrapper {
	width: 100%;
	max-width: 1025px;
	height: 100vh;
	height: 100dvh;
	margin-inline: auto;
	border-left: 1px solid var(--color-border);
	overflow-y: auto;
}
@media screen and (max-width: 767px) {
	.l-wrapper {
		border-left: none;
	}
}

.p-cont {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-cont {
		flex-direction: column;
	}
}
.p-cont:after {
	width: 100%;
	height: 1px;
	content: "";
	position: absolute;
	bottom: 60px;
	left: 0;
	background: var(--color-border);
}
@media screen and (max-width: 767px) {
	.p-cont:after {
		display: none;
	}
}

.p-schedule {
	width: calc(100% - 220px);
	padding: 20px 20px 60px;
	border-right: 1px solid var(--color-border);
}

@media screen and (max-width: 1024px) {
	.p-schedule {
		width: calc(100% - 190px);
	}
}
@media screen and (max-width: 767px) {
	.p-schedule {
		width: 100%;
		padding: 30px 5% 60px;
		border-right: none;
	}
}

/* ---------- Header ----------*/
.p-schedule__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.p-schedule__header p {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.p-schedule__header p {
		font-size: 2rem;
	}
}

/* ---------- Body ----------*/
.p-schedule__body {
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.p-schedule__body {
		margin-top: 30px;
	}
}
.p-schedule__block {
	display: flex;
	align-items: flex-end;
}
.p-schedule__block + .p-schedule__block {
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.p-schedule__block + .p-schedule__block {
		margin-top: 24px;
	}
}
.p-schedule-block__day {
	font-size: 5rem;
	letter-spacing: 0;
	line-height: 1;
}
.p-schedule-block__day span {
	margin-inline-start: 8px;
	display: inline-block;
	color: var(--color-gray);
	font-size: 2rem;
	letter-spacing: 0;
	line-height: 1;
	vertical-align: 3px;
}
.p-schedule-block__time,
.p-schedule-block__place {
	color: var(--color-black);
	line-height: 1;
	transform: translateY(-4px);
}
.p-schedule-block__time {
	margin-inline-start: 24px;
	font-size: 1.8rem;
}
.p-schedule-block__time:before {
	width: 12px;
	aspect-ratio: 1;
	margin-inline-end: 8px;
	content: '';
	display: inline-block;
	background: url("../images/ico_clock.svg") no-repeat 0 0 / 100%;
}
.p-schedule-block__place {
	margin-inline-start: 30px;
}
.p-schedule-block__place:before {
	width: 12px;
	aspect-ratio: 2 / 3;
	margin-inline-end: 6px;
	content: '';
	display: inline-block;
	background: url("../images/ico_pin.svg") no-repeat 0 0 / 100%;
	vertical-align: -3px;
}
@media screen and (max-width: 767px) {
	.p-schedule__block {
		flex-wrap: wrap;
	}
	.p-schedule-block__day {
    font-size: 4rem;
    flex-shrink: 0;
	}
	.p-schedule-block__day span {
    font-size: 1.6rem;
	}
	.p-schedule-block__time {
    font-size: 1.6rem;
	}
	.p-schedule-block__place {
    width: 100%;
    margin-inline-start: 0;
    margin-block-start: 16px;
	}
}