.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}


.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}


#loading {
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
}

/* index */
#calendar {
    align-items: center;
    width: 100%;
}

.fc-header-toolbar,
.fc-view-harness,
.fc-col-header, .fc-daygrid-body, .fc-scrollgrid-sync-table {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 0;
}

.fc-h-event {
    display: block;
    background-color: transparent;
    color: red;
    border: none;
}

.fc-event{
    cursor: pointer;
}

.list-group-item {
    margin-bottom: 1em;
}

.btn-form {
  color: black!important;
  background-color: #FFE699!important;
  border-color: #FFE699!important;
}

.btn-form:hover {
  color: #fff!important;
  background-color: #FFE699;
  border-color: #FFE699;
}

.btn-form:focus, .btn-form.focus {
  color: #fff;
  background-color: #FFE699;
  border-color: #FFE699;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(166, 150, 119, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(166, 150, 119, 0.5);
}

.btn-form.disabled, .btn-form:disabled {
  color: #fff;
  background-color: #FFE699;
  border-color: #FFE699;
}

.btn-form:not(:disabled):not(.disabled):active, .btn-form:not(:disabled):not(.disabled).active,
.show > .btn-form.dropdown-toggle {
  color: #fff;
  background-color: #FFE699;
  border-color: #FFE699;
}

.btn-form:not(:disabled):not(.disabled):active:focus, .btn-form:not(:disabled):not(.disabled).active:focus,
.show > .btn-form.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(166, 150, 119, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(166, 150, 119, 0.5);
}

.fc-toolbar-title:before {
  background-color: unset;
}

th.fc-day-sat .fc-col-header-cell-cushion {
  color : blue;
}

td.fc-day-sat .fc-daygrid-day-number {
  color : blue;
}

th.fc-day-sun .fc-col-header-cell-cushion {
  color : red;
}

td.fc-day-sun .fc-daygrid-day-number {
  color : red;
}

td.fc-day:has(.holiday) {
  background-color: #FDF0E7;
}

td.fc-day:has(.summer_holiday) {
  background-color: #FDF0E7;
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 0px;
}

div.fc-event-title {
	white-space: normal;
}

.fc .fc-timegrid-slot {
  height: 2.5em;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link {
  box-shadow: initial;
}

a.fc-v-event {
  background-color: initial;
  border: none;
}

.fc-timegrid-col-misc {
  display: none;
}

.fc .fc-scrollgrid {
  margin-bottom: 0px;
}

.fc .fc-scrollgrid-section-body table, .fc .fc-scrollgrid-section-footer table {
  margin-bottom: 0px;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0px;
}

.fc .fc-toolbar.fc-footer-toolbar {
  width: 100%;
  margin-top: 0px;
}

.h-20 {
  height: 20% !important;
}

.h-30 {
  height: 30% !important;
}

.h-40 {
  height: 40% !important;
}

.marker_blue span {
  background: linear-gradient(transparent 50%, #bde4f7 50%);
  padding: 0 0.1em;
}

.marker_green span {
  background: linear-gradient(transparent 50%, #98fb98 50%);
  padding: 0 0.1em;
}

.marker_yellow span {
  background: linear-gradient(transparent 50%, #ffff00 50%);
  padding: 0 0.1em;
}

.border_left_div {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  border-left: 5px solid #3A160E;
}

.d-none {
    display: none;
    }

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.p-6 {
  padding: 4rem !important;
}

.pt-6,
.py-6 {
  padding-top: 4rem !important;
}

.pr-6,
.px-6 {
  padding-right: 4rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 4rem !important;
}

.pl-6,
.px-6 {
  padding-left: 4rem !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.abc-radio label::before {
    top: 6px;
}

.abc-radio label::after {
    top: 8px;
}

.abc-checkbox label::before {
    top: 5px;
}

.abc-checkbox label::after {
    top: -1px;
}

.text-muted {
  color: #6c757d !important;
}

small,
.small {
  font-size: 0.875em;
  font-weight: 300;
}

		.fc-toolbar-title {
			word-break: keep-all;
		}

		.coltitle {
			writing-mode: vertical-rl;
		}

		@media all and (max-width: 767px) {
			.coltitle {
				writing-mode: unset;
			}
			.br-desktop {
				display: none;
			}
		}

		.modal-content {
			background-color: #fefefe;		/* モーダルウィンドウの背景色 */
			margin: 5% auto;
			border: 1px solid #888888;
			width: 100%;						/* モーダルウィンドウの横幅 */
			max-width: 750px;				/* モーダルウィンドウの横幅 */
		}
		.modal-title {
			color: #800000; /* モーダルウィンドウの文字の色 */
			font-size: 18px; /* モーダルウィンドウの文字の大きさ */
			font-weight: bold;
			line-height: 200%;
			text-align: center;
		}
		.modal-dialog {
			margin: 1rem;
		}
		.close-button {
			color: #aaaaaa;
			float: right;
			font-size: 28px;
			font-weight: bold;
		}
		.close-button:hover,
		.close-button:focus {
			color: black;
			text-decoration: none;
			cursor: pointer;
		}

			button.link001 {
				position: relative;
				font-size: 1.6rem;
				line-height: 1.2em;
				display: inline-block;
				padding: 6px 30px;
				background-color: #A74E6E;
				color: #FFFFFF;
				border-radius: 5px;
			}
			button.link001::before {
				position: absolute;
				top: calc( 50% - 8px );
				right: 0.8em;
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: '\f105';
				color: #FFFFFF;
				transition: all 0.3s;		/*アニメーション速度*/
			}

			button.link001:hover {
				background-color: #DC6B88;
			}
			button.link001:hover::before {
				right: 0.5em;
			}

			@media all and (max-width: 767px) {
				button.link001 {
					padding: 6px 10px;
				}
				button.link001::before {
					content: unset;
				}
			}


			/*-------------------------------------------------------------------
				送信ボタン群
			---------------------------------------------------------------------*/
			.form-btn001 {
				padding: 30px 0;
				margin-bottom: 60px;
				
				display: flex;
				justify-content: center;
			}
			
			.form-btn001 {
				position: relative;
				width: 60%;
				padding: 15px 25px;
				background-color: #A74E6E;
				color: #FFFFFF;
				border: none;
				font-size: 1.6rem;
				transition: all .4s ease;
				
				font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
			}
			
			.form-btn001:hover {
				background-color: #DC6B88;
				cursor: pointer;
			}

.form-control {
	font-size: unset;
}
.form-control::placeholder{
  color: #cccccc;
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.sample2-4::before{
	left: 4px;
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	border: 6px solid transparent;
	border-left: 6px solid #7a0;
}
.sample2-4::after{
	left: 0;
	width: 8px;
	height: 6px;
	border-left: 4px solid #7a0;
}

/* reservation */
.reservation_box {
  background-color: #9D6F7F;
  border: 2px solid #BFA529;
  border-radius: 15px;
  -webkit-box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto 2rem auto;
  overflow: hidden;
}
.reservation_box div {
  background-color: #FFF;
  background-image: url("../../img/reservation/reservation3.svg");
  background-repeat: no-repeat;
  background-size: auto 70px;
  background-position: center 20px;
  padding-top: 80px;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .reservation_box div {
    min-height: 170px;
  }
}
.reservation_box h3 span {
  font-size: 60%;
  display: block;
  padding-top: 0.5rem;
}

.reservation2 {
  background-color: #5F8F73;
}
.reservation2 div {
  background-image: url("../../img/reservation/reservation2.svg");
}

.reservation3 {
  background-color: #4E8598;
}
.reservation3 div {
  background-image: url("../../img/reservation/reservation3.svg");
}

.reservation_arrow {
  background-image: url("../../img/reservation/reservation_arrow_s.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100%;
  max-width: 600px;
  -webkit-filter: drop-shadow(-3px 3px 5px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(-3px 3px 5px rgba(0, 0, 0, 0.25));
}
@media (min-width: 360px) {
  .reservation_arrow {
    width: 90%;
  }
}
@media (min-width: 480px) {
  .reservation_arrow {
    background-image: url("../../img/reservation/reservation_arrow.svg");
  }
}
.reservation_arrow a {
  font-family: "Noto Serif JP", serif;
  color: #091F4A;
  display: block;
  padding: 2rem 1rem 1.5rem 0;
}
@media (min-width: 480px) {
  .reservation_arrow a {
    padding: 2rem 2.5rem 1.5rem 1.5rem;
  }
}
.reservation_arrow a span {
  font-size: 14px;
  font-size: 0.875rem;
}
.reservation_arrow a:hover {
  color: #BFA529;
}