@charset "utf-8";

/*===========================================================
管理画面
===========================================================*/

.gjs-dashed .d-none {
  	display: block !important;
}

/*===========================================================
カバー
===========================================================*/

.cover-title {
    font-size: clamp(18px, calc(1.125rem + ((1vw - 3.75px) * 1.165)), 36px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.80555em;
    color: var(--primary);
	text-align: center;
}

.cover-text-box {
    max-width: 487px;
    width: 100%;
    margin: 20px auto 0;
}

.cover-text {
    font-size: clamp(12px, calc(0.75rem + ((1vw - 3.75px) * 0.3883)), 18px);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.94444em;
    color: var(--secondary);
}

.cover-scroll-link-box {
    margin: 1% 0 0 2%;
}

.cover-scroll-link {
	margin: 5px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: 46px;
    width: 100%;
    position: relative;
	transition: all .3s;
    z-index: 1;
}

.cover-scroll-link-text {
	margin: 10px 0 0 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 16px;
	letter-spacing: 0.2em;
	font-weight: 400;
	color: var(--primary);
}

.cover-scroll-link-border {
	margin: 0;
	height: 125px;
	width: 1px;
	background: var(--secondary);
	position: relative;
}

.cover-scroll-link-border::before {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 14%;
    right: 0px;
    left: -5px;
    margin: auto;
    background: var(--secondary);
    border-radius: 50%;
    transition: all .3s;
}

.cover-scroll-link:hover .cover-scroll-link-border::before {
    top: 50%;
}

/*===========================================================
top01
===========================================================*/

.top01-container::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--gradation-primary);
}

.top01-text-box .text01 br {
	display: none;
}

/*===========================================================
top02
===========================================================*/

.top02-block::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: var(--img-bg-color-primary);
}

/*===========================================================
top04
===========================================================*/

.top04-frame {
    background: linear-gradient(to bottom, rgba(238, 226, 223, 1) 80%, rgba(235, 191, 192, 1)112%);
}

.top04-btn-area {
	gap: 20px;
}

.top04-title-box {
	text-align: center;
}

/*===========================================================
top05
===========================================================*/

.top05-area::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--gradation-secondary);
}

.top05-btn-area {
	gap: 20px;
}

/*===========================================================
top06
===========================================================*/

.top-news-area section {
	display: grid;
	gap: 25px;
}

/*===========================================================
top07
===========================================================*/

.top07-text-box .text01 br {
	display: none;
}

/*===========================================================
カレンダー
===========================================================*/


.calendar-area {
	margin: 30px auto 0;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 28px 24px 40px;
    width: 100%;
    max-width: 558px; /* カレンダーの表示幅を固定 */
    box-sizing: border-box;
    overflow: hidden; /* スライダーからはみ出た部分を隠す */
}

.calendar-header {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
	display: flex;
	align-items: center;
    position: absolute;
    top: 0;
    right: 2%;
    margin: auto;
    z-index: 1;
    margin-bottom: 20px;
}

.calendar-header p {
    /* background-color: #007bff; */
    color: #E88C9B;
    border: none;
    padding: 10px 15px;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 16px;
    /* transition: background-color 0.3s ease; */
	transition: all .3s;
}

/* .calendar-header button:hover {
    background-color: #0056b3;
} */

.calendar-header p:hover#prevMonth {
    transform: translateX(-6px);
}

.calendar-header p:hover#nextMonth {
    transform: translateX(6px);
}

.calendar-header .month-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
}

.calendar-header .month-name .year {
    color: #555;
    font-size: 0.8em;
    margin-right: 5px;
}

.calendar-header .month-name .month-name-text {
    color: #007bff;
    font-size: 1.2em;
}

/* スライダー全体のラッパー */
.slider-wrapper {
    overflow: hidden; /* 内側のスライダーのはみ出しを隠す */
    /* border: 1px solid #ddd; 以前のmonth-calendarの枠線をここに移動 */
    /* border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fdfdfd; */
    position: relative;
}

/* スライダー本体（コンテンツを横に並べる） */
.month-calendar-slider {
    display: flex;
    transition: transform 0.3s ease-in-out; /* スライドのアニメーション */
}

/* 各月のコンテンツ */
.month-content {
    flex: 0 0 100%; /* 各コンテンツが親要素の幅を100%占めるようにする */
    box-sizing: border-box;
	/* 以前のmonth-calendarのpaddingをここに移動 */
    /* padding: 15px;  */
    min-height: 250px; /* 必要に応じて調整 */
}

.month-content-title-box {
    text-align: center;
}

/* ここから下は、ユーザーがTableタグでカレンダーを作成する場合の例です。
   ご自身のCSSと合わせて調整してください。 */
.month-content .month-content-title {
	display: inline-flex;
    text-align: center;
    font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.1em;
    margin-top: 0;
    margin-bottom: 40px;
    color: #E88C9B;
}

.month-content .month-content-title span {
	font-size: 25px;
}

.month-content .calendar-table {
    width: 94%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.week-row {
	display: flex;
	align-items: center;
    padding: 0 0 20px;
	border-bottom: 1px solid var(--primary);
}

.month-content .calendar-th {
    text-align: center;
	width: 14.28571428%;
}

.calendar-row {
	display: flex;
	align-items: center;
    padding: 25px 0 0;
}

.calendar-row:first-child {
	padding: 13px 0 0;
}

.month-content .calendar-td {
    text-align: center;
	width: 14.28571428%;
    /* border: 1px solid #eee; */
}

.month-content .calendar-th {
    /* background-color: #f0f0f0; */
    font-size: 15px;
    font-weight: bold;
    color: #E86C81;
}

.month-content .calendar-td {
    /* background-color: #fff; */
    color: #6E4E4F;
}

.closed {
    display: inline-block;
    width: 31px;
    height: 31px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
}

/* .month-content td.inactive {
    color: #bbb;
    background-color: #f7f7f7;
} */

/* .month-content td.today {
    background-color: #ffda00;
    font-weight: bold;
    color: #333;
} */

/* 週末の色 */
/* 日曜日 */
/* .month-content th:nth-child(1), .month-content td:nth-child(1) { 
    color: #d9534f;
} */
/* 土曜日 */
/* .month-content th:nth-child(7), .month-content td:nth-child(7) { 
    color: #5bc0de;
} */

.regular-holiday-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.regular-holiday-radius {
    margin: 0 5px 0 0;
    width: 23px;
    height: 23px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.regular-holiday-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {


/*===========================================================

===========================================================*/



} /* min-width: 544px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 768px) {


	/*===========================================================
	カバー
	===========================================================*/

	.cover-title {
		text-align: left;
	}

	.cover-text-box {
		margin: 50px 0 0 auto;
	}

    .cover-text {
        font-size: clamp(12px, calc(0.75rem + ((1vw - 7.68px) * 0.5208)), 18px);
    }

	.cover-scroll-link {
		margin: 5px 0 0 5%;
	}

	.cover-scroll-link-border {
		height: 196px;
	}

	/*===========================================================
	top01
	===========================================================*/

	.top01-text-box .text01 br {
		display: block;
	} 

	/*===========================================================
	top07
	===========================================================*/

	.top07-text-box .text01 br {
		display: block;
	}


	/*===========================================================
	カレンダー
	===========================================================*/

	.calendar-area {
		margin: 40px 0 0;
	}

} /* min-width: 768px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {


/*===========================================================

===========================================================*/

.top04-title-box {
	text-align: left;
}

	/*===========================================================
	カレンダー
	===========================================================*/

	.calendar-area {
		margin: 50px 0 0;
	}

} /* min-width: 1024px ここまで */


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


/*===========================================================

===========================================================*/



} /* min-width: 1200px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1440px) {


/*===========================================================

===========================================================*/



} /* min-width: 1440px ここまで */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1620px) {




} /* min-width: 1520px ここまで */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */