@charset "UTF-8";
/*===== PC =====*/
@media screen and (min-width: 768px) {
  /*===============
    main
  ===============*/
  .cal-main {
    color: #000;
  }
  .cal-main__inner {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
  }
  .cal-sec {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }
  .btminformation {
    border: 1px solid #CCCCCC;
    padding: 46px;
  }
  .btminformation a {
    color: #aaaaaa;
  }
  /*===============
    head
  ===============*/
  .cal-head {
    background-color: #eeeeee;
    margin-bottom: 80px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .cal-head__heading {
    font-size: 30px;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
  }
  .cal-head__text {
    font-size: 12px;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    margin-top: 15px;
  }

  /*===============
    news
  ===============*/
  .cal-news {
    margin-bottom: 70px;
    padding: 20px 40px 30px;
    border: 1px solid #CDCDCD;
  }
  .cal-news__heading {
    font-size: 20px;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .cal-news__main {}
  .cal-news__list-item {
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    line-height: 1.5;
    padding-left: 1.2em;
    position: relative;
  }
  .cal-news__list-item::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }
  .cal-news__list-item + .cal-news__list-item {
    margin-top: 10px;
  }
  .cal-news__aside {
    width: 520px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
  }
  .cal-news__aside-link {
    display: block;
    border: solid 1px #3d9fd2;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    padding: 14px;
  }
  .cal-news__aside-link:hover {
    background-color: #3d9fd2;
    color: #ffffff;
  }

  /*===============
    input
  ===============*/
  .cal-input {
    background-color: #fff;
    padding: 20px 40px;
    margin-bottom: 70px;
  }
  .cal-input__heading {
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    line-height: 1.54;
    margin-bottom: 20px;
  }
  .cal-input__select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
  }
  .cal-input__select-prev, .cal-input__select-next {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.55;
    min-height: 30px;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease;
    user-select: none;
  }
  .cal-input__select-prev {
    padding-left: 36px;
  }
  .cal-input__select-next {
    padding-right: 36px;
  }
  .cal-input__select-prev:hover, .cal-input__select-next:hover {
    opacity: 0.7;
  }
  .cal-input__select-prev::before, .cal-input__select-next::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #E8E8E8;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
  }
  .cal-input__select-prev::before {
    left: 0;
    transform: scale(-1, 1);
  }
  .cal-input__select-next::before {
    right: 0;
  }
  .cal-input__select-prev.is-limited, .cal-input__select-next.is-limited {
    pointer-events: none;
  }
  .cal-input__select-prev.is-limited::before, .cal-input__select-next.is-limited::before {
    background-color: #0000006A;
  }
  .cal-input__select-box {
    display: flex;
    align-items: center;
    min-width: 257px;
    min-height: 50px;
    padding: 12px 20px 12px;
    border: 1px solid #3D9FD2;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  .cal-input__select-box:hover {
    opacity: 0.7;
  }
  .cal-input__select-date {
    min-width: 170px;
    font-size: 18px;
    text-align: center;
    padding-left: 32px;
    position: relative;
    user-select: none;
  }
  .cal-input__select-date::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/common/img/calendar/calendar_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-input__checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .cal-input__checkbox-title {
    font-size: 12px;
    line-height: 1.5;
    min-width: 105px;
    margin-right: 10px;
  }
  .cal-input__checkbox-list {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cal-input__checkbox-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    min-width: 105px;
    padding-left: 26px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease ;
  }
  .cal-input__checkbox-item:hover {
    opacity: 0.7;
  }
  .cal-input__checkbox-item::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #585858;
    background-color: #ffffff;
    background-image: url("/common/img/calendar/check_icon.svg");
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    box-sizing: border-box;
  }
  .cal-input__checkbox-item.is-checked::before {
    border-color: #3799cc;
    background-color: #3799cc;
  }
  .cal-input__summary {
    text-align: center;
  }
  a.cal-input__summary-link {
    display: inline-block;
    font-size: 12px;
    color: #3D9FD2;
    text-decoration: underline;
    transition: 0.3s all ease;
  }
  a.cal-input__summary-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  /*===============
    output
  ===============*/
  .cal-output {
    margin-bottom: 120px;
  }
  .cal-output:last-of-type {
    margin-bottom: 0;
  }
  .cal-output.is-hidden {
    display: none;
  }
  .cal-output__heading {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 74px;
    font-size: 22px;
    line-height: 1.54;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: #DDDDDD;
    box-sizing: border-box;
  }
  .cal-output__list {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .cal-output__item {
    width: 100%;
    border-top: 1px dashed #CDCDCD;
    padding: 10px 0;
  }
  .cal-output__item:last-of-type {
    border-bottom: 1px dashed #CDCDCD;
  }
  .cal-output__content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 10px 40px;
    box-sizing: border-box;
  }
  .cal-output__thumb {
    width: 150px;
    position: relative;
  }
  .cal-output__txtarea {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
  }
  .cal-output__title {
    font-size: 18px;
    line-height: 1.55;
  }
  .cal-output__time {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 6px;
  }
  .cal-output__note {
    margin-top: 15px;
  }
  .cal-output__note-special {
    display: inline-block;
    font-size: 10px;
    color: #585858;
    line-height: 1.5;
    padding: 2px 6px;
    background-color: #fff;
  }
  .cal-output__note-special + .cal-output__note-text {
    margin-top: 6px;
  }
  .cal-output__note-text {
    font-size: 12px;
    color: #585858;
    line-height: 1.5;
  }
  .cal-output__note-text a {
    color: #3D9FD2;
    text-decoration: underline;
    transition: 0.3s all ease;
  }
  .cal-output__note-text a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .cal-output__detail {
    min-width: 80px;
  }
  html[lang=en] .cal-output__detail {
    min-width: 90px;
  }
  a.cal-output__detail-link {
    font-size: 12px;
    line-height: 1.5;
    color: #000;
    padding-right: 20px;
    position: relative;
    transition: 0.3s all ease;
  }
  a.cal-output__detail-link:hover {
    opacity: 0.7;
  }
  a.cal-output__detail-link::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-output__item.is-closed .cal-output__content {
    background-color: #0000001A;
  }
  .cal-output__item.is-closed .cal-output__thumb::before {
    content: "休館日";
    display: grid;
    place-content: center;
    width: 84px;
    min-height: 36px;
    font-size: 18px;
    color: #585858;
    line-height: 1.55;
    background-color: #ffffffE6;
    border-radius: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  html[lang=en] .cal-output__item.is-closed .cal-output__thumb::before {
    content: "Closed";
  }
  .cal-output__item.is-closed .cal-output__note-special {
    background-color: #ffffff5A;
  }
  .cal-output__item.is-closed .cal-output__title, .cal-output__item.is-closed .cal-output__time {
    color: #585858;
  }
  .cal-output__more-list {
    width: 435px;
    margin: 0 auto;
  }
  .cal-output__list + .cal-output__more-list {
    margin-top: 70px;
  }
  .cal-output__more-item {
    margin-bottom: 20px;
  }
  .cal-output__more-item:last-of-type {
    margin-bottom: 0;
  }
  .cal-output__more-item a.cal-output__more-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #3D9FD2;
    line-height: 1.71;
    width: 435px;
    min-height: 64px;
    padding: 0 40px 0 30px;
    background-color: #fff;
    border: 1px solid #3D9FD2;
    position: relative;
    box-sizing: border-box;
  }
  .cal-output__more-item a.cal-output__more-link::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link {
    color: #3D9FD2;
    background-color: #fff;
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link::before {
    background-image: url("/common/img/icon_arrow_blue.svg");
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link:hover {
    color: #fff;
    background-color: #3D9FD2;
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link:hover::before {
    background-image: url("/common/img/icon_arrow_white.svg");
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link {
    color: #fff;
    background-color: #3D9FD2;
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link::before {
    background-image: url("/common/img/icon_arrow_white.svg");
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link:hover {
    color: #3D9FD2;
    background-color: #fff;
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link:hover::before {
    background-image: url("/common/img/icon_arrow_blue.svg");
  }
  /*===============
    cal-modal
  ===============*/
  html.is-modal {
    overflow: hidden;
  }
  html.is-modal body {
    overflow: hidden;
  }
  .cal-modal {
    display: none;
    width: 100%;
    height: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    top: 0;
    left: 0;
    z-index: 210;
  }
  .cal-modal-bg {
    width: 100%;
    height: 100%;
    background-color: #0000005A;
  }
  .cal-modal__content {
    width: 425px;
    max-height: 485px;
    height: 100%;
    padding: 40px 54px 35px;
    background: #fff;
    border: 1px solid #585858;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    overflow-y: auto;
  }
  .cal-modal__button {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 48px;
    background-color: #888888;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  .cal-modal__button:hover {
    opacity: 0.7;
  }
  .cal-modal__button span {
    color: #fff;
    padding-left: 20px;
    position: relative;
  }
  .cal-modal__button span::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/calendar/close_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  /*===============
    cal-calendar
  ===============*/
  .cal-calendar {
    margin-bottom: 15px;
  }
  .cal-calendar.fc-theme-standard .fc-scrollgrid {
    border: none;
    user-select: none;
  }
  .cal-calendar.fc-theme-standard td, .cal-calendar.fc-theme-standard th {
    border: none;
  }
  .cal-calendar .fc-daygrid-day-events {
    display: none;
  }
  .cal-calendar.fc .fc-scrollgrid-section-sticky > * {
    position: relative;
  }
  .cal-calendar.fc .fc-toolbar-chunk button {
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    padding: 0;
    border-radius: 50%;
    background-color: #E8E8E8;
    border: none;
    position: relative;
    transition: 0.3s all ease;
  }
  .cal-calendar.fc .fc-toolbar-chunk button:hover {
    opacity: 0.7;
  }
  .cal-calendar.fc .fc-toolbar-chunk button.fc-prev-button::before, .cal-calendar.fc .fc-toolbar-chunk button.fc-next-button::before {
    content: "";
    width: 10px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .cal-calendar.fc .fc-toolbar-chunk button.fc-prev-button::before {
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  .cal-calendar.fc .fc-button:disabled {
    opacity: 1;
  }
  .cal-calendar.fc .fc-button-primary:disabled {
    background-color: #0000006A;
    border-color: unset;
    pointer-events: none;
  }
  .cal-calendar.fc .fc-button-primary:not(:disabled).fc-button-active, .cal-calendar.fc .fc-button-primary:not(:disabled):active {
    background-color: #E8E8E8;
    border-color: unset;
  }
  .cal-calendar.fc .fc-button-primary:not(:disabled).fc-button-active:focus, .cal-calendar.fc .fc-button-primary:not(:disabled):active:focus {
    background-color: #E8E8E8;
    border-color: unset;
    outline: unset;
    box-shadow: unset;
  }
  .cal-calendar.fc .fc-button-primary:focus {
    background-color: #E8E8E8;
    border-color: unset;
    outline: unset;
    box-shadow: unset;
  }
  .cal-calendar.fc .fc-button-primary:hover {
    background-color: #E8E8E8;
    border-color: unset;
  }
  .cal-calendar.fc .fc-toolbar-chunk button .fc-icon {
    display: none;
  }
  .cal-calendar .fc-scrollgrid-sync-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cal-calendar .fc-scrollgrid-sync-table tr {
    display: flex;
  }
  .cal-calendar .fc-liquid-hack .fc-daygrid-day-frame {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cal-calendar.fc .fc-daygrid-day-top {
    justify-content: center;
    align-items: center;
  }
  .cal-calendar .fc-col-header-cell {
    pointer-events: none;
  }
  .cal-calendar .fc-col-header-cell.fc-day-sun {
    color: #D46B6B;
  }
  .cal-calendar .fc-scrollgrid-section-header {
    margin-bottom: 10px;
  }
  .cal-calendar .fc-scrollgrid-sync-inner {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  .cal-calendar.fc .fc-col-header-cell-cushion {
    font-size: 12px;
    font-weight: 400;
    padding: 0;
  }
  .cal-calendar .fc-day.fc-daygrid-day {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .cal-calendar .fc-day.fc-daygrid-day:hover {
    background-color: #F2F2F2;
  }
  .cal-calendar .fc-day.fc-daygrid-day.is-selected {
    background-color: #CBDFEA;
  }
  .cal-calendar .fc-day.fc-daygrid-day.is-selected .fc-daygrid-day-top .fc-daygrid-day-number {
    text-decoration: underline;
  }
  .cal-calendar .fc-day.fc-daygrid-day.fc-day-other.is-selected .fc-daygrid-day-number {
    color: #000;
  }
  .cal-calendar.fc .fc-toolbar {
    justify-content: space-between;
    /* gap: 50px; */
  }
  .cal-calendar.fc .fc-toolbar-title {
    font-size: 18px;
    font-weight: 400;
    user-select: none;
  }
  .cal-calendar.fc .fc-daygrid-day-number {
    font-size: 15px;
    line-height: 1;
    padding: 0;
  }
  .cal-calendar.fc .fc-daygrid-day.fc-day-today {
    background-color: #3799CC;
    color: #FFFFFF;
  }
  .cal-calendar.fc .fc-day-other .fc-daygrid-day-top {
    opacity: 1;
    color: #D9D9D9;
  }
  .cal-calendar.fc .fc-cell-shaded, .cal-calendar.fc .fc-day-disabled {
    background: none;
    pointer-events: none;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  /*===============
    main
  ===============*/
  .cal-main {
    color: #000;
  }
  .cal-main__inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .cal-sec {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }
  .btminformation {
    border: 0.267vw solid #CCCCCC;
    margin-right: 4vw;
    margin-left: 4vw;
    padding: 5.333vw;
  }
  .btminformation a {
    color: #aaaaaa;
  }
  /*===============
    head
  ===============*/
  .cal-head {
    background-color: #eeeeee;
    margin-bottom: 16vw;
    padding-top: 8vw;
    padding-bottom: 10.667vw;
  }
  .cal-head__heading {
    font-size: 8vw;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
  }
  .cal-head__text {
    font-size: 3.2vw;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    margin-top: 2.667vw;
  }


  /*===============
    news
  ===============*/
  .cal-news {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16vw;
    padding: 5.333vw 4vw 8vw;
    border: 1px solid #CDCDCD;
  }
  .cal-news__heading {
    font-size: 5.333vw;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5.333vw;
  }
  .cal-news__main {}
  .cal-news__list-item {
    font-size: 3.733vw;
    font-weight: normal;
    color: #000000;
    line-height: 1.71;
    padding-left: 1.2em;
    position: relative;
  }
  .cal-news__list-item::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }
  .cal-news__list-item + .cal-news__list-item {
    margin-top: 2.667vw;
  }
  .cal-news__aside {
    margin-top: 5.333vw;
  }
  .cal-news__aside-link {
    display: block;
    border: solid 1px #3d9fd2;
    background-color: #ffffff;
    font-size: 3.733vw;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    padding: 2.667vw;
  }
  .cal-news__aside-link:hover {
    background-color: #3d9fd2;
    color: #ffffff;
  }

  /*===============
    input
  ===============*/
  .cal-input {
    background-color: #fff;
    padding: 5.333vw 4vw;
    margin-bottom: 21.333vw;
  }
  .cal-input__heading {
    font-size: 5.867vw;
    font-weight: normal;
    text-align: center;
    line-height: 1.54;
    margin-bottom: 5.333vw;
  }
  .cal-input__select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.333vw;
    margin-bottom: 8vw;
  }
  html[lang=en] .cal-input__select {
    gap: 4.267vw;
  }
  html[lang=zh-cmn-Hans] .cal-input__select {
    gap: 4.267vw;
  }
  html[lang=zh-cmn-Hant] .cal-input__select {
    gap: 4.267vw;
  }
  .cal-input__select-prev, .cal-input__select-next {
    display: flex;
    align-items: center;
    font-size: 3.733vw;
    font-weight: normal;
    line-height: 1.71;
    min-height: 8vw;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease;
    user-select: none;
  }
  html[lang=en] .cal-input__select-prev, html[lang=en] .cal-input__select-next {
    font-size: 3.2vw;
    min-width: 14vw;
  }
  html[lang=zh-cmn-Hans] .cal-input__select-prev, html[lang=zh-cmn-Hans] .cal-input__select-next {
    font-size: 3.2vw;
    min-width: 14vw;
  }
  html[lang=zh-cmn-Hant] .cal-input__select-prev, html[lang=zh-cmn-Hant] .cal-input__select-next {
    font-size: 3.2vw;
    min-width: 14vw;
  }
  .cal-input__select-prev {
    padding-left: 10.133vw;
  }
  .cal-input__select-next {
    padding-right: 10.133vw;
  }
  .cal-input__select-prev:hover, .cal-input__select-next:hover {
    opacity: 0.7;
  }
  .cal-input__select-prev::before, .cal-input__select-next::before {
    content: "";
    width: 8vw;
    height: 8vw;
    border-radius: 50%;
    background-color: #E8E8E8;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: 2.667vw 2.667vw;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
  }
  .cal-input__select-prev::before {
    left: 0;
    transform: scale(-1, 1);
  }
  .cal-input__select-next::before {
    right: 0;
  }
  .cal-input__select-prev.is-limited, .cal-input__select-next.is-limited {
    pointer-events: none;
  }
  .cal-input__select-prev.is-limited::before, .cal-input__select-next.is-limited::before {
    background-color: #0000006A;
  }
  .cal-input__select-box {
    display: flex;
    align-items: center;
    width: 45.333vw;
    min-height: 14.933vw;
    padding: 4vw;
    border: 1px solid #3D9FD2;
    border-radius: 1.067vw;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  html[lang=en] .cal-input__select-box {
    width: 36vw;
    padding: 4vw 2vw;
  }
  html[lang=zh-cmn-Hans] .cal-input__select-box {
    width: 36vw;
    padding: 4vw 2vw;
  }
  html[lang=zh-cmn-Hant] .cal-input__select-box {
    width: 36vw;
    padding: 4vw 2vw;
  }
  .cal-input__select-box:hover {
    opacity: 0.7;
  }
  .cal-input__select-date {
    width: 27.733vw;
    font-size: 4.8vw;
    text-align: center;
    padding-left: 8.533vw;
    position: relative;
    user-select: none;
  }
  html[lang=en] .cal-input__select-date {
    width: auto;
    font-size: 3.733vw;
  }
  html[lang=zh-cmn-Hans] .cal-input__select-date {
    width: auto;
    font-size: 3.733vw;
  }
  html[lang=zh-cmn-Hant] .cal-input__select-date {
    width: auto;
    font-size: 3.733vw;
  }
  .cal-input__select-date::before {
    content: "";
    width: 4.8vw;
    height: 4.8vw;
    background-image: url("/common/img/calendar/calendar_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-input-order {
    display: flex;
    flex-direction: column;
  }
  .cal-input__checkbox {
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }
  .cal-input__checkbox-title {
    font-size: 3.733vw;
    line-height: 1.71;
    margin-bottom: 2.667vw;
  }
  .cal-input__checkbox-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5.333vw 2.667vw;
  }
  .cal-input__checkbox-item {
    display: flex;
    align-items: center;
    font-size: 3.2vw;
    min-width: 17.067vw;
    padding-left: 6.933vw;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease ;
  }
  .cal-input__checkbox-item:nth-of-type(1) {
    margin-right: 66.9vw;
  }
  .cal-input__checkbox-item:hover {
    opacity: 0.7;
  }
  .cal-input__checkbox-item::before {
    content: "";
    width: 5.333vw;
    height: 5.333vw;
    border-radius: 1.067vw;
    border: 0.267vw solid #585858;
    background-color: #ffffff;
    background-image: url("/common/img/calendar/check_icon.svg");
    background-size: 11.3px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    box-sizing: border-box;
  }
  .cal-input__checkbox-item.is-checked::before {
    border-color: #3799cc;
    background-color: #3799cc;
  }
  .cal-input__summary {
    text-align: center;
    order: 1;
    margin-bottom: 8vw;
  }
  a.cal-input__summary-link {
    display: inline-block;
    font-size: 3.2vw;
    color: #3D9FD2;
    text-decoration: underline;
    transition: 0.3s all ease;
  }
  a.cal-input__summary-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  /*===============
    output
  ===============*/
  .cal-output {
    padding: 0 4vw;
    margin-bottom: 21.333vw;
  }
  .cal-output:last-of-type {
    margin-bottom: 0;
  }
  .cal-output.is-hidden {
    display: none;
  }
  .cal-output__heading {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 14.4vw;
    font-size: 5.867vw;
    line-height: 1.54;
    text-align: center;
    padding: 2.667vw 0;
    margin-bottom: 10.667vw;
    background-color: #DDDDDD;
    box-sizing: border-box;
  }
  .cal-output__list {
    width: 100%;
    box-sizing: border-box;
  }
  .cal-output__item {
    width: 100%;
    border-top: 0.267vw dashed #CDCDCD;
    padding: 2.667vw 0;
  }
  .cal-output__item:last-of-type {
    border-bottom: 0.267vw dashed #CDCDCD;
  }
  .cal-output__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 4vw;
    padding: 2.667vw 0;
    box-sizing: border-box;
  }
  .cal-output__thumb {
    width: 25.6vw;
    position: relative;
  }
  .cal-output__txtarea {
    width: 62.4vw;
    display: flex;
    flex-direction: column;
    gap: 4vw;
    box-sizing: border-box;
  }
  .cal-output__title {
    font-size: 4.267vw;
    line-height: 1.625;
  }
  .cal-output__time {
    display: block;
    font-size: 3.2vw;
    line-height: 1.5;
    margin-top: 1.6vw;
  }
  .cal-output__note {
    margin-top: 5.333vw;
  }
  .cal-output__note-special {
    display: inline-block;
    font-size: 2.667vw;
    color: #585858;
    line-height: 1.5;
    padding: 0.533vw 1.6vw;
    background-color: #fff;
  }
  .cal-output__note-special + .cal-output__note-text {
    margin-top: 2.667vw;
  }
  .cal-output__note-text {
    font-size: 3.2vw;
    color: #585858;
    line-height: 1.5;
  }
  .cal-output__note-text a {
    color: #3D9FD2;
    text-decoration: underline;
    transition: 0.3s all ease;
  }
  .cal-output__note-text a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .cal-output__detail {
    text-align: right;
  }
  a.cal-output__detail-link {
    font-size: 2.667vw;
    line-height: 1.5;
    color: #000;
    padding-right: 3.733vw;
    position: relative;
    transition: 0.3s all ease;
  }
  a.cal-output__detail-link:hover {
    opacity: 0.7;
  }
  a.cal-output__detail-link::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-output__item.is-closed .cal-output__content {
    background-color: #0000001A;
  }
  .cal-output__item.is-closed .cal-output__thumb::before {
    content: "休館日";
    display: grid;
    place-content: center;
    width: 16.533vw;
    min-height: 7.467vw;
    font-size: 3.733vw;
    color: #585858;
    line-height: 1.71;
    background-color: #ffffffE6;
    border-radius: 6.4vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  html[lang=en] .cal-output__item.is-closed .cal-output__thumb::before {
    content: "Closed";
  }
  .cal-output__item.is-closed .cal-output__note-special {
    background-color: #ffffff5A;
  }
  .cal-output__item.is-closed .cal-output__title, .cal-output__item.is-closed .cal-output__time {
    color: #585858;
  }
  .cal-output__more-list {
    width: 100%;
    margin: 0 auto;
  }
  .cal-output__list + .cal-output__more-list {
    margin-top: 16vw;
  }
  .cal-output__more-item {
    margin-bottom: 5.333vw;
  }
  .cal-output__more-item:last-of-type {
    margin-bottom: 0;
  }
  .cal-output__more-item a.cal-output__more-link {
    display: flex;
    align-items: center;
    font-size: 3.733vw;
    color: #3D9FD2;
    line-height: 1.71;
    width: 100%;
    padding: 2.667vw 6.667vw 2.667vw 4vw;
    background-color: #fff;
    border: 0.267vw solid #3D9FD2;
    position: relative;
    box-sizing: border-box;
  }
  .cal-output__more-item a.cal-output__more-link::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/icon_arrow_blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link {
    color: #3D9FD2;
    background-color: #fff;
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link::before {
    background-image: url("/common/img/icon_arrow_blue.svg");
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link:hover {
    color: #fff;
    background-color: #3D9FD2;
  }
  .cal-output__more-item.cal-output__more-item--white a.cal-output__more-link:hover::before {
    background-image: url("/common/img/icon_arrow_white.svg");
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link {
    color: #fff;
    background-color: #3D9FD2;
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link::before {
    background-image: url("/common/img/icon_arrow_white.svg");
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link:hover {
    color: #3D9FD2;
    background-color: #fff;
  }
  .cal-output__more-item.cal-output__more-item--blue a.cal-output__more-link:hover::before {
    background-image: url("/common/img/icon_arrow_blue.svg");
  }
  /*===============
    cal-modal
  ===============*/
  html.is-modal {
    overflow: hidden;
  }
  html.is-modal body {
    overflow: hidden;
  }
  .cal-modal {
    display: none;
    width: 100%;
    height: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    top: 0;
    left: 0;
    z-index: 210;
  }
  .cal-modal-bg {
    width: 100%;
    height: 100%;
    background-color: #0000005A;
  }
  .cal-modal__content {
    width: 92vw;
    max-height: 118.667vw;
    height: 100%;
    padding: 5.333vw 4vw 4vw;
    background: #fff;
    border: 0.267vw solid #585858;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    overflow-y: auto;
  }
  .cal-modal__button {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 12.8vw;
    background-color: #888888;
    border-radius: 0.533vw;
    position: relative;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  .cal-modal__button:hover {
    opacity: 0.7;
  }
  .cal-modal__button span {
    color: #fff;
    padding-left: 5.333vw;
    position: relative;
  }
  .cal-modal__button span::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/calendar/close_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  /*===============
    cal-calendar
  ===============*/
  .cal-calendar {
    margin-bottom: 4vw;
  }
  .cal-calendar.fc-theme-standard .fc-scrollgrid {
    border: none;
    user-select: none;
  }
  .cal-calendar.fc-theme-standard td, .cal-calendar.fc-theme-standard th {
    border: none;
  }
  .cal-calendar .fc-daygrid-day-events {
    display: none;
  }
  .cal-calendar.fc .fc-scrollgrid-section-sticky > * {
    position: relative;
  }
  .cal-calendar.fc .fc-toolbar-chunk button {
    width: 10.667vw;
    height: auto;
    aspect-ratio: 1/1;
    padding: 0;
    border-radius: 50%;
    background-color: #E8E8E8;
    border: none;
    position: relative;
    transition: 0.3s all ease;
  }
  .cal-calendar.fc .fc-toolbar-chunk button:hover {
    opacity: 0.7;
  }
  .cal-calendar.fc .fc-toolbar-chunk button.fc-prev-button::before, .cal-calendar.fc .fc-toolbar-chunk button.fc-next-button::before {
    content: "";
    width: 2.667vw;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url("/common/img/icon_arrow_black.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .cal-calendar.fc .fc-toolbar-chunk button.fc-prev-button::before {
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  .cal-calendar.fc .fc-button:disabled {
    opacity: 1;
  }
  .cal-calendar.fc .fc-button-primary:disabled {
    background-color: #0000006A;
    border-color: unset;
    pointer-events: none;
  }
  .cal-calendar.fc .fc-button-primary:not(:disabled).fc-button-active, .cal-calendar.fc .fc-button-primary:not(:disabled):active {
    background-color: #E8E8E8;
    border-color: unset;
  }
  .cal-calendar.fc .fc-button-primary:not(:disabled).fc-button-active:focus, .cal-calendar.fc .fc-button-primary:not(:disabled):active:focus {
    background-color: #E8E8E8;
    border-color: unset;
    outline: unset;
    box-shadow: unset;
  }
  .cal-calendar.fc .fc-button-primary:focus {
    background-color: #E8E8E8;
    border-color: unset;
    outline: unset;
    box-shadow: unset;
  }
  .cal-calendar.fc .fc-button-primary:hover {
    background-color: #E8E8E8;
    border-color: unset;
  }
  .cal-calendar.fc .fc-toolbar-chunk button .fc-icon {
    display: none;
  }
  .cal-calendar .fc-scrollgrid-sync-table tbody {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }
  .cal-calendar .fc-scrollgrid-sync-table tr {
    display: flex;
  }
  .cal-calendar .fc-liquid-hack .fc-daygrid-day-frame {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cal-calendar.fc .fc-daygrid-day-top {
    justify-content: center;
    align-items: center;
  }
  .cal-calendar .fc-col-header-cell {
    pointer-events: none;
  }
  .cal-calendar .fc-col-header-cell.fc-day-sun {
    color: #D46B6B;
  }
  .cal-calendar .fc-scrollgrid-section-header {
    margin-bottom: 2.667vw;
  }
  .cal-calendar .fc-scrollgrid-sync-inner {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  .cal-calendar.fc .fc-col-header-cell-cushion {
    font-size: 3.2vw;
    line-height: 1;
    font-weight: 400;
    padding: 0;
  }
  .cal-calendar .fc-day.fc-daygrid-day {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    cursor: pointer;
    margin: 0 1.333vw;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .cal-calendar .fc-day.fc-daygrid-day:hover {
    background-color: #F2F2F2;
  }
  .cal-calendar .fc-day.fc-daygrid-day.is-selected {
    background-color: #CBDFEA;
  }
  .cal-calendar .fc-day.fc-daygrid-day.is-selected .fc-daygrid-day-top .fc-daygrid-day-number {
    text-decoration: underline;
  }
  .cal-calendar .fc-day.fc-daygrid-day.fc-day-other.is-selected .fc-daygrid-day-number {
    color: #000;
  }
  .cal-calendar.fc .fc-toolbar {
    justify-content: space-between;
  }
  .cal-calendar.fc .fc-toolbar-title {
    font-size: 4.8vw;
    line-height: 1;
    font-weight: 400;
    user-select: none;
  }
  .cal-calendar.fc .fc-daygrid-day-number {
    font-size: 4vw;
    line-height: 1;
    padding: 0;
  }
  .cal-calendar.fc .fc-daygrid-day.fc-day-today {
    background-color: #3799CC;
    color: #FFFFFF;
  }
  .cal-calendar.fc .fc-day-other .fc-daygrid-day-top {
    opacity: 1;
    color: #D9D9D9;
  }
  .cal-calendar.fc .fc-cell-shaded, .cal-calendar.fc .fc-day-disabled {
    background: none;
    pointer-events: none;
  }
}