@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Oswald:wght@400;700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700;1,900&display=swap");
:root {
  --bs-body-font-family: /*"Zen Kaku Gothic New",*/ "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  --bs-body-font-size: clamp(0.813rem, 0.6rem + 0.5vw, 1.1rem);
  --bs-body-color: #4b2e21;
  --bs-body-font-weight: 500;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: 100% !important;
  }
}

.btn[aria-expanded=true] .collapse_toggle {
  transform: scaleY(-1);
  display: inline-block;
}

/****************************************
* リボン装飾
*****************************************/
/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  --r: 0.8em;
  padding-right: calc(var(--r) + 0.25em);
  line-height: 1.8;
  clip-path: polygon(-100vw 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, -100vw 100%);
  -o-border-image: conic-gradient(#b32229 0 0) 0;
     border-image: conic-gradient(#b32229 0 0) fill 0;
  width: -moz-fit-content;
  width: fit-content;
}

/****************************************
* CSSアニメーション
*****************************************/
/* フェードアップ */
.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードダウン */
.anim-box.fadedown.is-animated {
  animation: fadedown 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadedown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スライドイン右から */
.anim-box.slideinR.is-animated {
  animation: slideInR 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInR {
  0% {
    transform: translateX(120px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* スライドイン左から */
.anim-box.slideinL.is-animated {
  animation: slideInL 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInL {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ぽよぽよ */
.anim-box.poyopoyo {
  animation: poyopoyo 4.5s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  /*0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }*/
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(0.95);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(0.95);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/****************************************
* Splider CSS
*****************************************/
/* ページネーション */
.splide__pagination__page {
  background: #ffffff !important;
  border: 2px solid #209bd9 !important;
  border-radius: 50%;
  display: inline-block;
  height: 10px !important;
  margin: 4px !important;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 10px !important;
}
.splide__pagination__page.is-active {
  background: #209bd9 !important;
  transform: scale(1.4);
  z-index: 1;
}/*# sourceMappingURL=main.css.map */