@charset "utf-8";

:root {
  /* カラー */
  --color-base: #333;
  --color-white: #fff;
  --color-accent: #da2f1e;
  --color-title-en: #b22517;
  /* フォント */
  --font-base: "Noto Sans JP", sans-serif;
}

body {
  position: relative;
  font-family: var(--font-base);
  color: var(--color-base);
  background: #f8f8f5;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  position: relative;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  transition: all 0.3s ease;
}

a:hover {
  color: inherit !important;
  opacity: 0.7;
  cursor: pointer;
  text-decoration: none !important;
}

.swiper-wrapper {
  display: flex;
}

.post.no-link {
  pointer-events: none;
}

.link_disable {
    pointer-events: none;
}