@charset "UTF-8";

:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --sree: "Sree Krushnadevaraya", serif;
  --zenantique: "Zen Antique", serif;
}

.wf-loading {
  opacity: 0;
}

html,
body {
  word-break: auto-phrase;
}

a {
  transition: all .3s ease;
}

.pc-only {
  display: block;
}

@media (max-width:767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width:767px) {
  .sp-only {
    display: block;
  }
}

#js-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s ease;
}

#js-popup.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .6);
  z-index: 0;
}

.popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  opacity: 0;
  z-index: 1;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  width: 80%;
  transition: opacity .4s ease, transform .4s ease;
}

.popup-inner.js-show {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -30px;
  background: 0 0;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  z-index: 2;
}

.popup-close__text {
  position: relative;
  z-index: 1;
}

.popup-close__text:after {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.popup-inner__img img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.top-attention-area__img {
  margin: 0 auto;
  max-width: 80%;
}

@media (min-width:768px) {
  .top-attention-area__img {
    max-width: 100%;
  }
}