@charset "UTF-8";
/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/style.scss to edit this template
*/
/*
    Created on : 2023/12/04, 13:19:43
    Author     : nakai
*/
.calendar {
  user-select: none;
  display: none;
  grid-gap: 5px;
  margin: 0;
  background-color: #fff; }
  .calendar div.month, .calendar div.days, .calendar div.weekhead {
    display: grid;
    grid-gap: 5px; }
    .calendar div.month span, .calendar div.days span, .calendar div.weekhead span {
      height: 2em;
      display: grid;
      place-content: center;
      width: 100%; }
  .calendar div.month {
    font-size: 1.2em;
    font-weight: bold;
    background-color: #fff;
    grid-template-columns: 1fr 5fr 1fr; }
    .calendar div.month .month_title {
      display: grid;
      place-content: center; }
  .calendar div.weekhead {
    font-size: 1.2em;
    font-weight: bold; }
  .calendar div.days, .calendar div.weekhead {
    grid-template-columns: repeat(7, 1fr); }
  .calendar div.days span {
    background-color: #fff;
    color: #a8a8a8;
    border-radius: 3px; }
  .calendar div.days .select_day {
    font-weight: bold;
    cursor: pointer;
    color: #3c3c3c;
    background-color: #adf; }
  .calendar div.days .notselect {
    font-weight: normal;
    cursor: auto;
    color: #a8a8a8;
    background-color: #fff; }
  .calendar .last_month, .calendar .next_month {
    padding: 0;
    font-size: 1em;
    background-color: inherit;
    border: 1px solid #3c3c3c;
    border-radius: 3px;
    font-weight: bold;
    -webkit-text-stroke: 2px #3c3c3c;
    text-stroke: 2px #3c3c3c;
    line-height: 2;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529; }
    .calendar .last_month:hover, .calendar .next_month:hover {
      background-color: inherit; }

.select_date {
  min-height: 22em; }
  .select_date .show {
    display: grid;
    animation: appear .5s ease; }

@keyframes appear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes disappear {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*--------------------------------------
  モーダル表示上から_002
--------------------------------------*/
.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.modal_content {
  align-self: center;
  max-width: 768px;
  width: calc(100% - 1em);
  padding: 2em 1em 1em;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s; }

.modal_content p {
  padding-top: 0;
  font-weight: bold; }

.close_button {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  cursor: pointer; }

.modal_wrap .modal_open {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.modal_wrap .modal_open .modal_content {
  transform: translateY(20px); }

.open_button {
  color: #4f96f6;
  background-color: #eeeeee;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-top: 40px;
  margin-bottom: 1px;
  padding: 12px 2px;
  max-width: 300px;
  text-decoration: none; }

.open-button:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  /*下に動く*/ }

.open-button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  padding-left: 8px; }

.open-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s; }

.modal_title2 {
  font-size: 1.5em;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0; }

.modal_title2::before,
.modal_title2::after {
  content: "";
  position: absolute;
  bottom: 0; }

/* h2 プライマリカラー*/
.modal_title2:before {
  border-bottom: 4px solid #6bb6ff;
  width: 100%; }

/* h2 セカンダリカラー*/
.modal_title2:after {
  border-bottom: 4px solid #c8e4ff;
  width: 100%; }

/*# sourceMappingURL=calender.css.map */
