@charset "UTF-8";
/*----------------------------------------------------
	modal
----------------------------------------------------*/
@keyframes modal-down {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 20px);
  }
}
@keyframes modal-up {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#modal__overlay {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
}
#modal__overlay .modal__window {
  overflow: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
#modal__overlay .modal__window::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
  width: 32px;
  height: 32px;
  padding: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  --_m:
  	conic-gradient(#0000 10%, #000),
  	linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
#modal__overlay .modal__window.-open::before {
  opacity: 0;
  transition: opacity 0.2s;
}
#modal__overlay .modal__content {
  box-sizing: border-box;
  position: relative;
  background: #fff;
  opacity: 0;
}
#modal__overlay .modal__content.-open {
  transform: translate(0, 100px);
  animation-name: modal-up;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
#modal__overlay .modal__content.-close {
  animation-name: modal-down;
  animation-duration: 0.3s;
  animation-delay: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@media print, screen and (min-width: 768px) {
  #modal__overlay .modal__window {
    padding: 40px;
  }
  #modal__overlay .modal__content {
    border-radius: 10px;
  }
  #modal__overlay .modal__inner {
    box-sizing: border-box;
    width: 700px;
  }
  #modal__overlay .modal__inner h2.modal__title {
    padding: 21px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: #24A524;
    border-radius: 10px 10px 0 0;
  }
  #modal__overlay .modal__inner .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #EBEBEB;
  }
  #modal__overlay .modal__inner .navigation .staff__number {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous {
    display: block;
    position: relative;
    width: 120px;
    height: 28px;
  }
  #modal__overlay .modal__inner .navigation .btn__previous::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: calc(50% - 14px);
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #000;
    background-image: url("../img/ic_arrow_previous.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 11px 10px;
    border-radius: 100vmax;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous::after {
    content: "前のスタッフ";
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    height: 28px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-align: right;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: #fff;
  }
  #modal__overlay .modal__inner .navigation .btn__previous a:hover::before {
    background-color: #006400;
  }
  #modal__overlay .modal__inner .navigation .btn__previous a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: calc(50% - 14px);
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #000;
    background-image: url("../img/ic_arrow_previous.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 11px 10px;
    border-radius: 100vmax;
  }
  #modal__overlay .modal__inner .navigation .btn__next {
    display: block;
    position: relative;
    width: 120px;
    height: 28px;
  }
  #modal__overlay .modal__inner .navigation .btn__next::before {
    content: "次のスタッフ";
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    height: 28px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__next::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 14px);
    right: 0;
    width: 28px;
    height: 28px;
    background-color: #000;
    background-image: url("../img/ic_arrow_next.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 11px 10px;
    border-radius: 100vmax;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__next a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: #fff;
  }
  #modal__overlay .modal__inner .navigation .btn__next a:hover::after {
    background-color: #006400;
  }
  #modal__overlay .modal__inner .navigation .btn__next a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 14px);
    right: 0;
    width: 28px;
    height: 28px;
    background-color: #000;
    background-image: url("../img/ic_arrow_next.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 11px 10px;
    border-radius: 100vmax;
    transition: all 0.2s;
  }
  #modal__overlay .modal__close {
    display: block;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    opacity: 1;
    transition: opacity 0.2s;
    cursor: pointer;
  }
  #modal__overlay .modal__close:hover {
    opacity: 0.7;
  }
  #modal__overlay .modal__close::before, #modal__overlay .modal__close::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #fff;
  }
  #modal__overlay .modal__close::before {
    transform: rotate(-45deg) translateY(0px);
  }
  #modal__overlay .modal__close::after {
    transform: rotate(45deg) translateY(0px);
  }
}
@media (max-height: 999px) {
  #modal__overlay .modal__window {
    padding: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  #modal__overlay .modal__window {
    padding: 15px 20px;
    align-items: flex-start;
  }
  #modal__overlay .modal__content {
    border-radius: 10px;
  }
  #modal__overlay .modal__inner {
    box-sizing: border-box;
    width: 350px;
  }
  #modal__overlay .modal__inner h2.modal__title {
    box-sizing: border-box;
    min-height: 54px;
    padding: 14px 55px 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    background: #24A524;
    border-radius: 10px 10px 0 0;
  }
  #modal__overlay .modal__inner .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #EBEBEB;
  }
  #modal__overlay .modal__inner .navigation .staff__number {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous {
    display: block;
    position: relative;
    width: 115px;
    height: 24px;
  }
  #modal__overlay .modal__inner .navigation .btn__previous::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: calc(50% - 12px);
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #000;
    background-image: url("../img/ic_arrow_previous.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 9px 8px;
    border-radius: 100vmax;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous::after {
    content: "前のスタッフ";
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    height: 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__previous a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-align: right;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: #fff;
  }
  #modal__overlay .modal__inner .navigation .btn__previous a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: calc(50% - 12px);
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #000;
    background-image: url("../img/ic_arrow_previous.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 9px 8px;
    border-radius: 100vmax;
  }
  #modal__overlay .modal__inner .navigation .btn__next {
    display: block;
    position: relative;
    width: 115px;
    height: 24px;
  }
  #modal__overlay .modal__inner .navigation .btn__next::before {
    content: "次のスタッフ";
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    height: 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__next::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background-color: #000;
    background-image: url("../img/ic_arrow_next.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 9px 8px;
    border-radius: 100vmax;
    opacity: 0.1;
  }
  #modal__overlay .modal__inner .navigation .btn__next a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: #fff;
  }
  #modal__overlay .modal__inner .navigation .btn__next a::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background-color: #000;
    background-image: url("../img/ic_arrow_next.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 9px 8px;
    border-radius: 100vmax;
    transition: all 0.2s;
  }
  #modal__overlay .modal__close {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    opacity: 1;
    transition: opacity 0.2s;
    cursor: pointer;
  }
  #modal__overlay .modal__close:hover {
    opacity: 0.7;
  }
  #modal__overlay .modal__close::before, #modal__overlay .modal__close::after {
    content: "";
    display: block;
    position: absolute;
    top: 27px;
    left: 17px;
    width: 20px;
    height: 1px;
    background-color: #fff;
  }
  #modal__overlay .modal__close::before {
    transform: rotate(-45deg) translateY(0px);
  }
  #modal__overlay .modal__close::after {
    transform: rotate(45deg) translateY(0px);
  }
}/*# sourceMappingURL=modal.css.map */