@keyframes shakeLR {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(10px);
  }
  20% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(0px);
  }
}
@keyframes shakeUD {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(10px);
  }
  20% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes denied {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
:root {
  --footerH: 0;
  --descY: 0;
  --descX: 0;
  --descW: 0;
}

body {
  overflow: visible;
}

body.no-scroll {
  overflow: hidden;
}

header .header__logoPic {
  display: none;
}
header nav#menu-header {
  display: none;
}
header #modal_desc {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header #modal_desc .ico_wrap {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
header #modal_desc .ico_wrap .notice {
  display: none;
  padding-right: 1em;
  border-bottom: 1.5px solid #a60066;
  color: #a60066;
  font-size: 0.8em;
  transform-origin: top right;
  transform: scale(0, 1);
}
header #modal_desc .ico_wrap .notice.is-show {
  display: block;
  animation: slideInR 3s forwards;
}
@keyframes slideInR {
  0% {
    transform: scale(0, 1);
  }
  20% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
header #modal_desc .ico_wrap.open {
  position: fixed;
  right: 20px;
}
@media screen and (max-width: 414px) {
  header #modal_desc .ico_wrap.open {
    right: 10px;
  }
}
header #modal_desc .ico_wrap img {
  width: 50px;
}
@media screen and (max-width: 414px) {
  header #modal_desc .ico_wrap img {
    width: 40px;
  }
}
header #modal_desc .ico_wrap:hover {
  opacity: 0.6;
}
header #modal_desc .modalWrap {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  z-index: 100;
}
header #modal_desc .modalWrap .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
}
header #modal_desc .modalWrap .modal::after {
  position: absolute;
  top: -18px;
  right: -18px;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 600;
  content: "\f00d";
  font-size: 18px;
  width: 18px;
  height: 18px;
  padding: 9px;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
header #modal_desc .modalWrap .modal .page_desc {
  position: relative;
  display: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 90vw;
  max-width: 700px;
  max-height: 80%;
  padding: 40px 30px 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  overflow: scroll;
}
@media screen and (max-width: 414px) {
  header #modal_desc .modalWrap .modal .page_desc {
    padding: 20px 10px 10px;
  }
}
header #modal_desc .modalWrap .modal .page_desc .contentWrap {
  overflow-y: scroll;
}
header #modal_desc .modalWrap .modal .page_desc .contentWrap::after {
  position: sticky;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: var(--descW);
  height: 5em;
  background: linear-gradient(transparent 30%, rgba(255, 255, 255, 0.9) 100%);
  margin-left: -30px;
  transform: translateY(20px);
}
header #modal_desc .modalWrap .modal .page_desc .contentWrap h3 {
  margin-top: 0;
  font-size: 1.2em;
}
header #modal_desc .modalWrap .modal .page_desc .contentWrap .notice {
  font-size: 0.8em;
}
header #modal_desc .modalWrap .modal .page_desc .contentWrap strong {
  font-weight: 800;
  font-size: 1.05em;
}
header #modal_desc.is-modal .ico_wrap .ico-desc {
  display: none;
}
header #modal_desc.is-modal .modalWrap {
  display: block;
}
header #modal_desc.is-modal .modalWrap .modal {
  display: flex;
}
header #modal_desc.is-modal .modalWrap .modal .page_desc {
  display: block;
}
header #modal_desc.is-modal .modalWrap .modal .page_desc .ico_wrap.close {
  position: absolute;
  top: -30px;
  right: -30px;
}
header #modal_desc.is-modal .modalWrap .modal .page_desc .ico-close {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #a60066;
  font-size: 30px;
  width: 45px;
  height: 45px;
  line-height: 1;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media screen and (max-width: 414px) {
  header #modal_desc.is-modal .modalWrap .modal .page_desc .ico-close {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
}
header #modal_desc.is-modal .modalWrap .modal .page_desc a {
  text-decoration: underline;
}

.header__logoSvg {
  width: 15%;
  max-width: 200px;
  margin: 20px;
}
@media screen and (max-width: 414px) {
  .header__logoSvg {
    width: 20%;
    margin: 10px auto;
  }
}

.header__scroll {
  display: none;
}

.entry-content .breadcrumbs {
  padding: 0 20px 20px;
  margin-top: 50px;
}
@media screen and (max-width: 414px) {
  .entry-content .breadcrumbs {
    padding: 10px;
  }
}
.entry-content .h2_wrap {
  text-align: center;
}
.entry-content .h2_wrap h2 {
  display: inline-block;
  text-align: center;
  color: #a60066;
  background-image: linear-gradient(to right, #a60066, #a60066);
  background-size: 60% 1px;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: 2em;
}

body.single #page-top {
  bottom: var(--footerH);
  margin-bottom: 10px;
  z-index: 100;
}

.container {
  max-width: 700px;
  margin: auto;
}
.container h3 {
  color: #a60066;
}
.container .content_wrap {
  background-color: #f0f0f0;
  padding: 20px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.container .description {
  margin-top: 50px;
}

#lastMsg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(85, 58, 66, 0.9);
  color: #fff;
  transform: scale(0);
  text-align: center;
  z-index: 999;
}
#lastMsg.show {
  transform: scale(1);
  transition: 1s;
}
#lastMsg .msgs_wrap {
  margin-top: 40vh;
}
#lastMsg a {
  color: #fff;
  text-decoration: underline;
}
#lastMsg a,
#lastMsg #modal_close {
  font-size: 1.2em;
  cursor: pointer;
}
#lastMsg a {
  line-height: 3;
}
#lastMsg a i {
  margin-right: 0.5em;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  z-index: 999;
}
#loader.is-load {
  animation: loaderOut 2s forwards;
}
@keyframes loaderOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
#loader .circle-border {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  padding: 3px;
  margin: auto;
  border-radius: 50%;
  background: #a60066;
  background: linear-gradient(0deg, rgba(100, 6, 69, 0.1) 33%, #a60066 100%);
  animation: spin 0.8s linear 0s infinite;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
#loader .circle-border .circle-core {
  width: 100%;
  height: 100%;
  background-color: #eee;
  border-radius: 50%;
}/*# sourceMappingURL=single.css.map */