@charset "utf-8";

/* =イベント一覧
------------------------------------------------------------------------------ */

/* カレンダー表示 */

.scwe-calendar-block {
	margin: 4em auto;
}
.scwe-calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 1em 0;
}
.scwe-calendar-nav__title {
	font-weight: 600;
	font-size: 200%;
	line-height: 1;
	word-break: keep-all;
}
.js-scwe-calendar-nav {
	display: block;
	border-radius: 9999px;
	background-color: #ffb200;
	color: #fff;
	line-height: 1;
	word-break: keep-all;
	text-decoration: none;
	padding: 0.5em 1em;
	font-size: 80%;
	font-weight: normal;
	position: relative;
	transition: all 0.2s linear;
}
.js-scwe-calendar-nav:hover {
	text-decoration: none;
	opacity: 0.75;
}
.scwe-calendar-nav__prev {
	padding-left: 1.5em;
}
.scwe-calendar-nav__next {
	padding-right: 1.5em;
}
.scwe-calendar-nav__prev::after,
.scwe-calendar-nav__next::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 1px solid;
	border-right: 1px solid;
}
.scwe-calendar-nav__prev::after {
	left: 8px;
	transform: rotate(-135deg);
}
.scwe-calendar-nav__next::after {
	right: 8px;
	transform: rotate(45deg);
}

/* スマホ用 */

.scwe-calendar-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.scwe-calendar-wrap {
	min-width: 720px;
}

/* カレンダーテーブル */

.scwe-calendar {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.scwe-calendar__head,
.scwe-calendar__cell {
	border: 1px solid var(--scwe-table-border, #cccccc);
	vertical-align: top;
}

.scwe-calendar__head {
	padding: 0.75em 0.5em;
	text-align: center;
	background: var(--scwe-table-head-bg, #f7f7f7);
}
.scwe-calendar__cell {
	height: 120px;
	padding: 0.5em;
	background: #fff;
}

.scwe-calendar__cell.is-empty {
	background: #fff;
}

.scwe-calendar__cell.is-today {
	background: var(--scwe-today-bg, #fffbe8);
}

.scwe-calendar__daynum {
	font-weight: 600;
	margin-bottom: 0.25em;
}

.scwe-calendar__events {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.scwe-cal-event {
	display: flex;
	border-radius: 4px;
	overflow: hidden;
	padding: 0.2em;
	position: relative;
	overflow: visible;
}

.scwe-cal-event__link {
	display: block;
	font-size: 80%;
	line-height: 1.25;
	text-decoration: none;
	padding: 0.2em;
	background: transparent;
	color: inherit;
	border-radius: 0;
	width: 100%;
}
.scwe-cal-event__link:hover {
	text-decoration: none;
	opacity: 0.75;
}
.scwe-cal-event--continuation {
	height: 0.5rem;
	border-radius: 999px;
}

/* =残数 */

.scwe-cal-event .scwe-remaining-seats {
		position: absolute;
		top: -4px;
		right: -4px;
		z-index: 2;
}
.scwe-cal-event .scwe-remaining-seats .scwe-remaining-seats__label {
		display: none;
}
.scwe-cal-event .scwe-remaining-seats strong {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	background-color: #f00;
	color: #fff;
	border-radius: 50%;
	height: 16px;
	width: 16px;
}
/* .scwe-cal-event .scwe-remaining-seats strong::before {
		content: '(';
}
.scwe-cal-event .scwe-remaining-seats strong::after {
		content: ')';
} */

/* デザイン設定 */
.scwe-cal-event--event_color_a {
	background: var(--scwe-event-color-a, #4f8cff);
	color: var(--scwe-event-text-color-a, #fff);
}

.scwe-cal-event--event_color_b {
	background: var(--scwe-event-color-b, #ff6b6b);
	color: var(--scwe-event-text-color-b, #fff);
}

.scwe-cal-event--event_color_c {
	background: var(--scwe-event-color-c, #4ecdc4);
	color: var(--scwe-event-text-color-c, #fff);
}

.scwe-cal-event--event_color_d {
	background: var(--scwe-event-color-d, #f7b731);
	color: var(--scwe-event-text-color-d, #000);
}

.scwe-cal-event--event_color_e {
	background: var(--scwe-event-color-e, #a55eea);
	color: var(--scwe-event-text-color-e, #fff);
}

/* �e�L�X�g�F */

.scwe-cal-event--event_color_a .scwe-cal-event__link,
.scwe-cal-event--event_color_b .scwe-cal-event__link,
.scwe-cal-event--event_color_c .scwe-cal-event__link,
.scwe-cal-event--event_color_d .scwe-cal-event__link,
.scwe-cal-event--event_color_e .scwe-cal-event__link {
	color: inherit;
}
.scwe-calendar-note {
	color: #f00;
	font-size: 100%;
	margin: 1em auto;
	text-align: center;
	line-height: 1;
}
.sp-only {
	display: none;
}

.scwe-calendar__cell.is-holiday {
	background: var(--scwe-holiday-bg, #fff1f1);
}
.scwe-calendar__cell.is-today.is-holiday {
	background: var(--scwe-holiday-bg, #fff1f1);
}
.scwe-calendar__cell.is-closed-day.is-holiday {
	background: var(--scwe-holiday-bg, #fff1f1);
}


.scwe-calendar__cell.is-closed-day {
	background: var(--scwe-closed-day-bg, #f7f7f7);
}
.scwe-calendar__cell.is-today.is-closed-day {
	background: var(--scwe-closed-day-bg, #f7f7f7);
}

.scwe-calendar__holiday-label {
	margin-bottom: 0.5rem;
	font-size: 80%;
	line-height: 1;
	color: var(--scwe-holiday-text-color, #ff0000);
}


/* 日曜日・祝日 */
.scwe-calendar__head.is-sun,
.scwe-calendar__cell.is-sun .scwe-calendar__daynum,
.scwe-calendar__cell.is-holiday .scwe-calendar__daynum,
.scwe-calendar__holiday-label {
    color: #d00;
}

/* 土曜日 */
.scwe-calendar__head.is-sat,
.scwe-calendar__cell.is-sat .scwe-calendar__daynum {
    color: #06c;
}



@media screen and (max-width: 768px) {


}


/* =イベント表示
------------------------------------------------------------------------------ */

.scwe-event-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 2rem 0;
}

.scwe-event-list--empty {

}

.scwe-event-list__item {
	padding: 2em;
	border: 1px solid #e5e5e5;
	font-size: 90%;
	line-height: 1.5;
}

.scwe-event-list__itemWrap {
	display: flex;
	gap: 2em;
}

.scwe-event-list__badge {
	width: 12px;
	min-width: 12px;
	border-radius: 999px;
	align-self: flex-start;
	margin-top: 0.4rem;
}

.scwe-event-list__body {

}

.scwe-event-list .scwe-remaining-seats {
	margin: 0 0 0.5rem;
	color: #f00;
}
.scwe-event-list .scwe-remaining-seats strong {
	font-size: 100%;
}

.scwe-event-list__date {
	margin: 0 0 0.5rem;
}

.scwe-event-list__title {
	margin: 0 0 0.5rem;
}

.scwe-event-list__title a {
	text-decoration: none;
	color: inherit;
}

.scwe-event-list__thumb {
	width: 24%;
}

.scwe-event-list__thumb img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
}

.scwe-event-list__excerpt {
}

.scwe-event-list__more {
	margin-top: 1em;
	text-align: right;
}
.scwe-event-list__more a {
	text-decoration: none;
}

@media screen and (max-width: 768px) {

.scwe-event-list__itemWrap {
	flex-direction: column;
}
.scwe-event-list__thumb {
	width: auto;
}

}




/* =一覧表示
------------------------------------------------------------------------------ */

/* ローディング */
.scwe-calendar-block.is-loading {
	opacity: 0.6;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* 複数月表示 */
.scwe-calendar-multi {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media screen and (max-width: 768px) {

.sp-only {
	display: block;
}
.scwe-calendar__cell {
	height: 100px;
}

}




/* =イベント詳細
------------------------------------------------------------------------------ */

.scwe-application-form-wrap {
		padding: 4em 0;
}

.scwe-application-form-title {
	text-align: center;
	margin: 0 auto 2em;
}

/* =イベント名 */

.scwe-application-event {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	background-color: #ffe;
	padding: 2em;
	margin: 2em 0 4em;
}

.scwe-application-event dl {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.scwe-application-event dl dt {
	width: 8em;
}
.scwe-application-event dl dd {

}
.scwe-application-event strong {
	font-weight: 600;
	font-size: 120%;
}
.scwe-application-event p {
		margin-bottom: 0;
}

/* =残数 */

.scwe-application-event .scwe-remaining-seats {
	color: #f00;
}
.scwe-application-event .scwe-remaining-seats strong {
	font-weight: 600;
	font-size: 200%;
	line-height: 1;
	white-space: nowrap;
}

/* =入力フィールド */
.scwe-form-field {
	margin: 0 0 2em;
	display: flex;
	gap: 2em;
}

.scwe-form-field label {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	flex-shrink: 0;
	width: 20%;
	font-weight: 500;
}

/* =必須 */
.required {
	color: #f00;
	font-size: 80%;
	font-weight: 400;
}


/* =送信ボタンラップ */
.scwe-form-submit {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin: 4em auto 0;
}
.scwe-form-submit button {
	word-break: keep-all;
}

/* =送信完了 */

.scwe-application-complete {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	background-color: #efe;
	padding: 2em;
	margin: 2em 0;
}
.scwe-application-complete h3,
.scwe-application-complete p {
	margin: 0;
}

/* =受付終了 */
.scwe-application-unavailable {
	background-color: #fee;
	color: #f00;
	padding: 2em;
	margin: 2em 0;
}

/* =キャンセルページ */
.scwe-application-cancel-wrap {
	margin: 4em auto;
}



@media screen and (max-width: 768px) {

.scwe-form-field {
	flex-direction: column;
	gap: 0.5em;
}
.scwe-form-field label {
	width: auto;
}



}

/* =フォーム
------------------------------------------------------------------------------ */

/* =基本 */

.scwe-application-form input[type="button"],
.scwe-application-form input[type="text"],
.scwe-application-form input[type="email"],
.scwe-application-form input[type="number"],
.scwe-application-form input[type="submit"],
.scwe-application-form button[type="submit"],
.scwe-application-form input[type="image"],
.scwe-application-form textarea,
.scwe-application-form select {
	appearance: none;
	border-radius: 0;
	font-size: 100%;
}

/* =テキスト */

.scwe-application-form input[type="text"],
.scwe-application-form input[type="email"],
.scwe-application-form input[type="tel"],
.scwe-application-form textarea {
	width: 100%;
	padding: 1em;
	background-color: #fff;
	border: 1px solid #666;
}

.scwe-application-form input[type="text"]:focus,
.scwe-application-form input[type="email"]:focus,
.scwe-application-form input[type="tel"]:focus,
.scwe-application-form textarea:focus,
.scwe-application-form select:focus {
	background-color: #fffde5;
}

.scwe-application-form input[type="submit"],
.scwe-application-form button[type="submit"] {
	display: block;
	min-width: 24%;
	max-width: 48%;
	padding: 1.5em;
	margin: 0;
	background-color: #ff5500;
	border: 1px solid #ff5500;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	transition: background-color 0.1s linear,
				color 0.1s linear;
}

.scwe-application-form input[type="submit"]:hover,
.scwe-application-form input[type="submit"]:active,
.scwe-application-form button[type="submit"]:hover,
.scwe-application-form button[type="submit"]:active {
	background-color:#fff;
	color: #ff5500;
}
.scwe-application-form input[type="submit"]:disabled,
.scwe-application-form button[type="submit"]:disabled {
	background-color: transparent;
	border-color: #ccc);
	color: #ccc;
	cursor: default;
}