@layer base, components, pages;
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2em);
  }
}
@keyframes yurufuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5em);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(5vw, -5vw);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(0, 0);
  }
  86% {
    transform: translate(-100%, 0);
  }
  90% {
    transform: translate(-100%, calc(100% + 1em));
    opacity: 1;
  }
  95% {
    transform: translate(100%, calc(100% + 1em));
    opacity: 0;
  }
  98% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes hueRotate {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  33% {
    filter: hue-rotate(-30deg);
  }
  66% {
    filter: hue-rotate(30deg);
  }
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes onVisible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fuwafuwaBlob {
  0%, 100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  25% {
    transform: translate(0, 0.25vw) rotate(-1deg);
  }
  50% {
    transform: translate(-0.25vw, -0.25vw) rotate(0deg);
  }
  75% {
    transform: translate(0, -0.5vw) rotate(-1deg);
  }
}
@keyframes move1 {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  12% {
    opacity: 0;
  }
}
@keyframes blinking3 {
  0% {
    filter: brightness(1);
  }
  40% {
    filter: brightness(1.2);
  }
  50% {
    filter: brightness(1.5);
  }
  75% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}
a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
}
img:not(.hero img) {
  width: 100%;
  height: auto;
  max-width: 100%;
}

svg {
  width: auto;
  height: auto;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-direction: column;
}

.svgWrap {
  width: 100%;
  height: auto;
  position: relative;
  margin: auto;
}
.svgWrap:after {
  content: "";
  width: 100%;
  height: 0;
  padding-top: 100%;
  display: block;
}
.svgWrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (width >= 768px) {
  .term {
    text-align: justify;
  }
  .term.divide {
    column-count: 2;
    column-gap: calc(var(--pad) * 1.5);
  }
}
.term p span {
  opacity: 0.75;
  font-size: 0.75em;
  text-decoration: none !important;
  line-height: 1.5;
  display: inline-block;
}
.term p strong {
  display: inline-block;
}
.term p em {
  text-decoration: none !important;
  background-image: linear-gradient(180deg, transparent 80%, yellow 80%);
}
@media (width <= 768px) {
  .term p {
    display: block;
  }
}
.term ul {
  margin: 1em 0;
  font-size: var(--h4);
}
.term ul li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 0.5em;
}
.term ul li:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  background: currentColor;
  border-radius: 50%;
  margin: 0.6em 0.5em 0 0;
  flex-shrink: 0;
}
.term ol {
  counter-reset: count4;
  list-style-position: outside;
  padding-left: 2em;
  margin: 1em 0;
  font-size: var(--h4);
}
.term ol li:before {
  counter-increment: count4;
  content: counter(count4, decimal-leading-zero) ".";
  display: inline-block;
  width: 1.7em;
  margin-left: -1.7em;
  font-weight: var(--bold);
  font-size: 1.2em;
  opacity: 0.4;
  letter-spacing: -0.05em;
}
.term h2 + p, .term h3 + p, .term h4 + p, .term h5 + p, .term h6 + p {
  margin-top: 1em;
}

.marker {
  text-decoration: none !important;
  background-image: linear-gradient(180deg, transparent 80%, yellow 80%);
}

.loud {
  position: relative;
}
.loud:before, .loud:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: currentColor;
  margin: 0 0.5em;
  position: absolute;
  top: 0;
}
.loud:before {
  transform: rotate(45deg);
  left: calc(100% + 0.5em);
}
.loud:after {
  transform: rotate(-45deg);
  right: calc(100% + 0.5em);
}
@media (width <= 768px) {
  .loud {
    font-size: 0.8em;
  }
}

.speech {
  --borderWidth: 2px;
  position: relative;
  overflow: hidden;
}
.speech:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(0.5em + var(--borderWidth) * 2);
  background: currentColor;
  clip-path: polygon(0 0, calc(50% - 0.25em) 0, 50% 0.5em, calc(50% + 0.25em) 0, 100% 0, 100% var(--borderWidth), calc(50% + 0.25em + var(--borderWidth)) var(--borderWidth), 50% calc(0.5em + var(--borderWidth) * 2), calc(50% - 0.25em - var(--borderWidth)) var(--borderWidth), 0 var(--borderWidth));
  margin-top: 0.5em;
}

@media (width >= 768px) {
  .tb {
    writing-mode: vertical-rl;
    margin-right: -1em;
  }
}

.italic {
  display: block;
  letter-spacing: -0.03em;
  line-height: var(--lineH);
  font-size: var(--fontSize);
  --lineH: .8;
}
.italic:not(.ticker em):not(.iconNav em):not(.ear) {
  color: var(--theme);
}
@media (width >= 768px) {
  .italic {
    --fontSize: 2em;
  }
}
@media (width <= 768px) {
  .italic {
    --fontSize: 1.5em;
  }
}

figure[data-imgmodal] {
  --maskSize: contain;
  --maskRepeat: no-repeat;
  --maskPosition: 0;
  --width: 3em;
  --ratio: 1/1;
  --maskImage: url("../images/iconZoom3.svg");
  --align: text-bottom;
  --bg: var(--body);
  --top: 0;
  --bottom: auto;
  --left: auto;
  --right: 0;
  cursor: zoom-in;
  position: relative;
}
figure[data-imgmodal]:after {
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: var(--align);
  mask-repeat: var(--maskRepeat);
  mask-position: var(--maskPosition);
  mask-size: var(--maskSize);
  -webkit-mask-repeat: var(--maskRepeat);
  -webkit-mask-position: var(--maskPosition);
  -webkit-mask-size: var(--maskSize);
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  background: var(--bg);
  flex-shrink: 0;
  position: absolute;
  top: var(--top);
  bottom: var(--bottom);
  left: var(--left);
  right: var(--right);
  cursor: pointer;
}

picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.roundFig {
  overflow: hidden;
  border-radius: 40% 0 40% 0;
}

.skew {
  transform: skewY(-10deg) scaleX(0.975);
  transform-origin: bottom left;
}

blockquote {
  display: block;
  width: 100%;
  background: var(--ice);
  padding: 1.5em;
  font-style: normal;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.brackets {
  line-height: 1.5;
  display: flex;
}
.brackets:before, .brackets:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1.5em;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.brackets:before {
  border-left: 2px solid;
  margin-right: 0.5em;
}
.brackets:after {
  border-right: 2px solid;
  margin-left: 0.5em;
}

.num {
  --small: .5em;
  --lineH: .75;
  font-weight: var(--regular);
}
.num small {
  font-size: var(--small);
  letter-spacing: 0;
  display: block;
}
.num i {
  font-size: 1em;
  display: block;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.3em;
}

.tag {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: var(--semi);
  border-radius: 5px;
  line-height: 1;
  --tagPad: .5em .75em;
}
.tag:not(:has(a)):not(:has(i)) {
  display: block;
  padding: var(--tagPad);
}
.tag a, .tag i {
  display: block;
  padding: var(--tagPad);
}
.tag.bk {
  background: var(--typo);
  border: 1px solid;
  color: white;
}
.tag.border {
  border: 1px solid;
}
@media (width >= 768px) {
  .tag.border a:hover {
    background: var(--typo);
    color: white;
  }
}
.tag + .tag {
  margin-left: 0.3em;
}
.tag a {
  transition: var(--tr04);
}

.pagesCap {
  align-items: flex-start;
  justify-content: flex-start;
}
@media (width >= 768px) {
  .pagesCap {
    --capSize: var(--h1);
    --gap: calc(var(--pad) * .5);
    --h2Dir: row;
    --iconSize: 3em;
  }
}
@media (width <= 768px) {
  .pagesCap {
    --capSize: var(--h1);
    --gap: calc(var(--pad) * .5);
    --h2Dir: row;
    --iconSize: 2em;
  }
  .pagesCap em.italic {
    --fontSize: 3em;
  }
}
.pagesCap h1, .pagesCap strong {
  font-size: var(--capSize);
  line-height: 1.5;
  word-break: break-word;
}
.pagesCap h1 em, .pagesCap strong em {
  color: var(--theme);
  margin-bottom: var(--pad);
  font-size: 2em;
  display: block;
}
.pagesCap h1 span, .pagesCap strong span {
  font-weight: var(--bold);
}
@media (width >= 768px) {
  .pagesCap h1 span i, .pagesCap strong span i {
    display: block;
  }
}
.pagesCap h1:has(svg), .pagesCap strong:has(svg) {
  display: flex;
  align-items: center;
  flex-direction: var(--h2Dir);
  gap: 0.5em;
}
.pagesCap h1:has(svg) svg, .pagesCap strong:has(svg) svg {
  width: var(--iconSize);
}
.pagesCap .term {
  margin-top: var(--pad);
}
.pagesCap .inner, .pagesCap.inner {
  align-items: center;
}

.sectCap {
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.5;
}
@media (width >= 768px) {
  .sectCap.tb {
    width: 15em;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: flex-start;
  }
}
.dataTables {
  width: 100%;
}
.dataTables dt {
  font-weight: var(--bold);
}
.dataTables dd ul li:not(:first-of-type) {
  margin-top: 0.5em;
}
.dataTables dd ul li:blank {
  margin-top: 1.5em;
}

.tableScroll {
  overflow: auto;
  white-space: nowrap;
}
.tableScroll tr th,
.tableScroll tr td {
  min-width: 6em;
}

@media (width >= 768px) {
  .tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable {
    table-layout: fixed;
  }
}
.tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable tr th, .tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable tr td {
  font-size: 1em !important;
}
@media (width >= 768px) {
  .tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable tr th, .tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable tr td {
    padding: 1em !important;
  }
}
.tableWrap .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable tr td[data-col-index="0"] {
  color: white;
  position: relative;
  background: rgba(0, 0, 0, 0.7);
}
.tableWrap .wpdt-c.wpDataTableContainerSimpleTable {
  margin-bottom: 0;
}

.coTable dl {
  display: flex;
}
@media (width >= 768px) {
  .coTable dl {
    --dtW: 7em;
  }
}
@media (width <= 768px) {
  .coTable dl {
    --dtW: 7em;
  }
}
.coTable dl dt {
  padding: 1em 0;
  text-transform: uppercase;
  width: var(--dtW);
  letter-spacing: 0;
  position: relative;
  opacity: 0.75;
}
.coTable dl dd {
  padding: 1em;
  flex: 1;
  position: relative;
}
.coTable dl dd:after {
  opacity: 0.2;
}
.coTable dl dt:after, .coTable dl dd:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: currentColor;
}

.tagCloud {
  line-height: 1;
  justify-content: flex-start;
  gap: 0.5em;
}
@media (768px <= width <= 1440px) {
  .tagCloud li {
    margin: 0 0.75em 0.75em 0;
  }
  .tagCloud li a:not(.tag) {
    padding: 0.5em 0.75em;
  }
}
@media (width <= 768px) {
  .tagCloud li {
    margin: 0 0.5em 0.5em 0;
  }
}
.tagCloud li:has(a) a:not(.tag) {
  border: 1px solid;
  padding: 0.75em 1.5em;
  transition: 0.2s all ease-in-out;
  display: inline-block;
  border-radius: 3em;
}
@media (width <= 768px) {
  .tagCloud li:has(a) a:not(.tag) {
    padding: 0.5em 0.75em;
  }
}
@media (width >= 768px) {
  .tagCloud li:has(a) a:not(.tag):hover {
    background: var(--typo);
    color: white;
  }
}
.tagCloud li:has(a).current a {
  border-color: var(--gray);
  background: var(--gray);
  color: rgba(255, 255, 255, 0.3);
}
.tagCloud li:not(:has(a)) {
  border: 1px solid;
  padding: 0.75em 1.5em;
  display: inline-block;
  border-radius: 3em;
}
@media (width <= 768px) {
  .tagCloud li:not(:has(a)) {
    padding: 0.5em 0.75em;
  }
}
.tagCloud.wh li {
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.1);
}
.tagCloud.wh li:has(a) a {
  border: 1px solid;
  color: white;
}
.tagCloud.wh li:has(a) a:hover {
  background: white;
  color: var(--typo);
}
.tagCloud.wh li:not(:has(a)) {
  border: 1px solid;
  color: white;
}

.hashTags li {
  margin-right: 1.5em;
  display: flex;
  align-items: center;
}
.hashTags li:before {
  content: "#";
  display: inline-block;
  margin-right: 0.25em;
}
.hashTags li:has(a) a {
  color: currentColor;
  position: relative;
}
.hashTags li:has(a) a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--typo);
  position: absolute;
  left: 0;
  transition: 0.2s all ease-in-out;
  bottom: 0;
}
@media (width >= 768px) {
  .hashTags li:has(a) a:hover:after {
    width: 100%;
  }
}

.slashList li {
  display: flex;
  align-items: center;
}
.slashList li:not(:last-of-type):after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  transform: rotate(-60deg);
  background: currentColor;
  margin: 0 0.5em;
}
.slashList.smallText li:not(:last-of-type):after {
  margin: 0 0.25em;
}

.fillList {
  gap: 0.5em;
}
.fillList li {
  --verPad: 1em;
  --holPad: 1.5em;
}
.fillList li:has(a) a {
  display: flex;
  align-items: center;
  padding: var(--verPad) var(--holPad);
  border-radius: 0.2em;
  overflow: hidden;
  position: relative;
}
.fillList li:has(a) a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--gray);
}
.fillList li:not(:has(a)) {
  display: flex;
  align-items: center;
  padding: var(--verPad) var(--holPad);
  border-radius: 0.2em;
  overflow: hidden;
  position: relative;
}
.fillList li:not(:has(a)):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--gray);
}
.fillList li a {
  transition: 0.2s all ease-in-out;
}
@media (width >= 768px) {
  .fillList li a:hover {
    color: white;
    background: var(--typo);
  }
}
.fillList.wh li:has(a) a {
  background: white;
  color: var(--typo);
}
@media (width >= 768px) {
  .fillList.wh li:has(a) a:hover {
    background: var(--typo);
    color: white;
  }
}
.fillList.wh li:not(:has(a)) {
  background: white;
  color: var(--typo);
}
.fillList.bk li:has(a) a {
  background: var(--typo);
  color: white;
}
@media (width >= 768px) {
  .fillList.bk li:has(a) a:hover {
    background: white;
    color: var(--typo);
  }
}
.fillList.bk li:not(:has(a)) {
  background: var(--typo);
  color: white;
}

.borderList {
  --padding: 1em 1.5em;
  gap: 0.5em;
}
.borderList li:has(a) a {
  display: flex;
  align-items: center;
  padding: var(--padding);
  border-radius: 0.2em;
  border: 2px solid;
  transition: 0.2s all ease-in-out;
}
.borderList li:not(:has(a)) {
  display: flex;
  align-items: center;
  padding: var(--padding);
  border-radius: 0.2em;
  border: 2px solid;
}

.fillBox {
  --padding: 1em 1.5em;
  gap: 0.5em;
}
.fillBox li {
  line-height: 1.5;
}
@media (768px <= width <= 1440px) {
  .fillBox li {
    margin: 0 0.75em 0.75em 0;
  }
  .fillBox li a:not(.tag) {
    padding: 0.5em 0.75em;
  }
}
@media (width <= 768px) {
  .fillBox li {
    margin: 0 0.5em 0.5em 0;
  }
}
.fillBox li:has(a) a:not(.tag) {
  padding: var(--padding);
  transition: 0.2s all ease-in-out;
  display: inline-block;
  border-radius: var(--rad1);
}
@media (width >= 768px) {
  .fillBox li:has(a) a:not(.tag):hover {
    background: var(--typo);
    color: white;
  }
}
.fillBox li:has(a).current a {
  border-color: var(--gray);
  background: var(--gray);
  color: rgba(255, 255, 255, 0.3);
}
.fillBox li:not(:has(a)) {
  padding: var(--padding);
  display: inline-block;
  border-radius: var(--rad1);
}
.fillBox.wh li:has(a) a {
  background: white;
  color: var(--typo);
}
@media (width >= 768px) {
  .fillBox.wh li:has(a) a:hover {
    background: var(--typo);
    color: white;
  }
}
.fillBox.wh li:not(:has(a)) {
  background: white;
  color: var(--typo);
}
.fillBox.bk li:has(a) a {
  background: var(--typo);
  color: white;
}
@media (width >= 768px) {
  .fillBox.bk li:has(a) a:hover {
    background: white;
    color: var(--typo);
  }
}
.fillBox.bk li:not(:has(a)) {
  background: var(--typo);
  color: white;
}

.normalList {
  line-height: 1.5;
}
.normalList li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
.normalList li:before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: currentColor;
  margin-top: 0.75em;
  flex-shrink: 0;
  opacity: 0.5;
}

.numList {
  counter-reset: count3;
  list-style-position: outside;
  padding-left: 2em;
  gap: 0.5em;
}
.numList li:before {
  counter-increment: count3;
  content: counter(count3, decimal) ".";
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  font-weight: var(--bold);
}
.numList.zero li:before {
  content: counter(count3, decimal-leading-zero) ".";
  width: 2em;
  margin-left: -2em;
}

.statute {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (width >= 768px) {
  .statute {
    --fontSize: 1.4em;
  }
}
@media (width <= 768px) {
  .statute {
    --fontSize: 1.1em;
  }
}
.statute dt {
  display: flex;
  font-weight: var(--bold);
  align-items: baseline;
  font-size: var(--fontSize);
}
.statute dt em {
  display: flex;
  margin-right: 0.25em;
  font-size: 1.2em;
  font-weight: var(--bold);
}
.statute dt em:after {
  content: ".";
}
.statute dd {
  padding-left: calc(var(--pad) * 0.5);
}

.borderBox dl {
  padding: var(--pad);
  border: 2px solid;
  border-radius: var(--rad1);
}

.shadowBox dl {
  padding: 1.5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1) inset;
}

.notes li,
.notes span {
  font-size: 0.9em;
  display: flex;
}
.notes li:not(:first-of-type),
.notes span:not(:first-of-type) {
  margin-top: 0.5em;
}
.notes li:before,
.notes span:before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  margin: 1em 0.5em 0 0;
  opacity: 0.5;
}
.notes.fill, .notes.border {
  padding: 3em;
}
.notes.fill {
  background: var(--ice);
}
.notes.border {
  border: 1px solid;
}

.stamp {
  letter-spacing: 0;
  font-size: var(--size);
  font-weight: var(--bold);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
@media (width >= 768px) {
  .stamp {
    width: 3em;
    --size: 2em;
  }
}
@media (width <= 768px) {
  .stamp {
    --size: 2.5em;
    margin-right: 1rem;
    line-height: 1;
  }
}
.stamp i {
  width: 100%;
  font-size: 0.6em;
  display: block;
  line-height: 1;
}
.stamp span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.stamp span:first-of-type:after {
  content: "";
  display: block;
  width: 0.75em;
  height: 2px;
  transform: rotate(-60deg);
  background: currentColor;
  margin: 0.15em -0.15em 0;
}
.stamp small {
  font-size: 0.45em;
  display: block;
  width: 100%;
  line-height: 1.5;
  text-align: center;
}
.stamp small:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  opacity: 0.2;
  margin: 0.5em 0 0.5em;
}
.stamp u {
  text-decoration: none;
  writing-mode: vertical-rl;
  font-size: 0.35em;
}

.schedule {
  display: flex;
  align-items: center;
}
.schedule hr {
  height: 2px;
  width: 1.25em;
  margin: 0 0.5em 0.5em;
  background: currentColor;
  border: none;
}
.schedule dl {
  display: flex;
  flex-direction: column;
}
.schedule dl dt.stamp {
  width: inherit;
  position: relative;
}
.schedule dl dd {
  line-height: 1;
  border: 1px solid;
  padding: 0.15em 0 0.25em;
  margin-top: 0.25em;
  text-align: center;
}

.postPager {
  margin-top: var(--pad);
  position: relative;
  width: 100%;
}
@media (width <= 768px) {
  .postPager {
    gap: 1em;
  }
}
.postPager .pager {
  position: relative;
}
@media (width >= 768px) {
  .postPager .pager {
    flex: 1;
  }
}
@media (width <= 768px) {
  .postPager .pager {
    width: 100%;
  }
}
.postPager .pager a, .postPager .pager .noPost {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: calc(var(--pad) * 0.5);
  position: relative;
  gap: 0;
  transition: var(--tr04);
}
.postPager .pager a time, .postPager .pager .noPost time {
  letter-spacing: 0;
  opacity: 0.5;
  font-weight: var(--bold);
}
.postPager .pager a p, .postPager .pager .noPost p {
  display: block;
  line-height: 1.5;
}
@media (width >= 768px) {
  .postPager .pager a:hover {
    background: var(--sub);
    color: white;
  }
}
@media (width <= 768px) {
  .postPager .pager a {
    padding: var(--pad);
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
    border-radius: var(--rad1);
  }
}
@media (width >= 768px) {
  .postPager .pager.archiveLink {
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.2), 1px 0 0 rgba(0, 0, 0, 0.2);
  }
}
@media (width <= 768px) {
  .postPager .pager.archiveLink {
    order: 3;
  }
}
.postPager .pager.archiveLink a {
  font-size: 0.9em;
  line-height: 1;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .postPager .pager.archiveLink a {
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  }
}
.postPager .pager.nextLink, .postPager .pager.prevLink {
  --arrow: .75em;
  --arrowX: 1em;
  --wid: calc(var(--arrow) * 1.5);
  --paddingPort: calc(var(--arrow) * 1);
  --paddingLand: calc(var(--arrow) * 2);
  --arrowPsos: var(--arrow);
  --display: inline-block;
  --borderWid: 2px;
}
.postPager .pager.nextLink a, .postPager .pager.prevLink a {
  align-items: center;
}
.postPager .pager.nextLink a:before, .postPager .pager.nextLink a:after, .postPager .pager.prevLink a:before, .postPager .pager.prevLink a:after {
  display: var(--display);
  vertical-align: middle;
  width: var(--arrow);
  height: var(--arrow);
  z-index: 0;
  border-top: var(--borderWid) solid;
  border-right: var(--borderWid) solid;
  flex-shrink: 0;
  position: absolute;
  top: calc(50% - var(--arrow) * 0.5);
  transform-origin: center;
}
.postPager .pager.nextLink a:after {
  content: "";
  right: var(--arrowX);
  transform: rotate(45deg);
}
.postPager .pager.prevLink a:before {
  content: "";
  left: var(--arrowX);
  transform: rotate(-135deg);
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 1em;
  --swiper-navigation-color: black;
  --swiper-theme-color: black;
  border: none;
  width: var(--swiper-navigation-size);
  padding: var(--swiper-navigation-size);
  border-radius: 50%;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
  margin: 0;
  background: white;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1em;
}

.swiper-button-next {
  right: auto;
  left: calc(100% - var(--swiper-navigation-size) * 0.75);
}

.swiper-button-prev {
  left: auto;
  right: calc(100% - var(--swiper-navigation-size) * 0.75);
}

input[type=text],
input[type=password],
textarea,
select {
  padding: 5px 10px;
  border: 2px solid;
  border-radius: 0;
  vertical-align: top;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  outline: none;
  line-height: 2;
  max-width: 100%;
}

input[type=text]:focus,
select:focus,
textarea:focus {
  border: 2px solid;
}

input[type=submit],
input[type=reset] {
  transition: all 0.4s ease-in-out;
  padding: 0;
  -webkit-appearance: none;
}

button {
  -webkit-appearance: none;
}

.btn {
  --arrow: .75em;
  --wid: calc(var(--arrow) * 1.5);
  --paddingPort: calc(var(--arrow) * 1);
  --paddingLand: calc(var(--arrow) * 2.5);
  --right: calc(var(--paddingLand) * .25);
  --arrowPsos: var(--arrow);
  --display: inline-block;
  --borderWid: 2px;
  --borderRad: var(--rad5);
  --fill: white;
  --fillHover: var(--sub);
  --color: var(--body);
  margin: 0;
  text-align: center;
  line-height: 1.5;
  position: relative;
  display: var(--display);
  z-index: 1;
  cursor: pointer;
  padding: var(--paddingPort) var(--paddingLand);
  transition: var(--tr04);
  border-radius: var(--borderRad);
  gap: var(--padding);
  background: var(--fill);
  color: var(--color);
  font-weight: var(--bold);
}
.btn:after {
  margin-left: var(--arrowPsos);
  flex-shrink: 0;
}
.btn[target=_blank]:after {
  color: currentColor;
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: initial;
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: auto 100%;
  background: currentColor;
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  --width: .75em;
  --ratio: 1/1;
  --maskImage: url("../images/iconExternal.svg");
}
.btn.download:after {
  color: currentColor;
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: initial;
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: auto 100%;
  background: currentColor;
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  --width: .75em;
  --ratio: 1/1;
  --maskImage: url("../images/iconDL.svg");
}
.btn[data-modal]:after {
  color: currentColor;
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: initial;
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: auto 100%;
  background: currentColor;
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  --width: .75em;
  --ratio: 1/1;
  --maskImage: url("../images/iconPopup.svg");
}
.btn:not([target=_blank]):not(.download):not([data-modal]):not(.haco):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: var(--arrow);
  height: var(--arrow);
  z-index: 0;
  border-top: var(--borderWid) solid;
  border-right: var(--borderWid) solid;
  transform: rotate(45deg);
}
@media (width >= 768px) {
  .btn:hover {
    --fill: var(--fillHover);
    --color: white;
  }
}

a {
  --maskSize: contain;
  --maskRepeat: no-repeat;
  --maskPosition: 0;
  --marginLeft: .25em;
}
a:not(.btn)[target=_blank]:not([href^="mailto:"]):not(.btn), a:not(.btn)[href*=".pdf"]:not([href^="mailto:"]):not(.btn), a:not(.btn)[href*=".xls"]:not([href^="mailto:"]):not(.btn) {
  transition: var(--tr04);
  text-decoration: underline;
}
a:not(.btn)[target=_blank]:not([href^="mailto:"]):not(.btn):after, a:not(.btn)[href*=".pdf"]:not([href^="mailto:"]):not(.btn):after, a:not(.btn)[href*=".xls"]:not([href^="mailto:"]):not(.btn):after {
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: var(--align);
  mask-repeat: var(--maskRepeat);
  mask-position: var(--maskPosition);
  mask-size: var(--maskSize);
  -webkit-mask-repeat: var(--maskRepeat);
  -webkit-mask-position: var(--maskPosition);
  -webkit-mask-size: var(--maskSize);
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  background: var(--bg);
  margin-left: var(--marginLeft);
  flex-shrink: 0;
}
a:not(.btn).map, a:not(.btn).mail, a:not(.btn).tel, a:not(.btn)[href^="tel:"], a:not(.btn)[href^="mailto:"] {
  display: inline-block;
  position: relative;
  transition: var(--tr04);
}
a:not(.btn).map:before, a:not(.btn).mail:before, a:not(.btn).tel:before, a:not(.btn)[href^="tel:"]:before, a:not(.btn)[href^="mailto:"]:before {
  content: "";
  width: var(--width);
  display: inline-block;
  vertical-align: var(--align);
  mask-repeat: var(--maskRepeat);
  mask-position: var(--maskPosition);
  mask-size: var(--maskSize);
  -webkit-mask-repeat: var(--maskRepeat);
  -webkit-mask-position: var(--maskPosition);
  -webkit-mask-size: var(--maskSize);
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  background: var(--bg);
  margin-right: var(--marginLeft);
  flex-shrink: 0;
}
a:not(.btn)[target=_blank] {
  --width: .8em;
  --ratio: 1/1;
  --maskImage: url("../images/iconExternal.svg");
  --align: inherit;
}
a:not(.btn)[target=_blank]:after {
  --bg: currentColor;
}
a:not(.btn)[href*=".pdf"] {
  --width: 1.3em;
  --ratio: 1/1;
  --maskImage: url("../images/iconPdf.svg");
  --align: text-bottom;
}
a:not(.btn)[href*=".pdf"]:after {
  --bg: red;
}
a:not(.btn)[href*=".xls"] {
  --width: 1.3em;
  --ratio: 1/1;
  --maskImage: url("../images/iconXls.svg");
  --align: text-bottom;
}
a:not(.btn)[href*=".xls"]:after {
  --bg: #016e38;
}
a:not(.btn).mail, a:not(.btn)[href^="mailto:"] {
  --width: 1.1em;
  --ratio: 1000/714;
  --maskImage: url("../images/iconMail.svg");
  --align: inherit;
}
a:not(.btn).mail:before, a:not(.btn)[href^="mailto:"]:before {
  --bg: currentColor;
  margin: 0;
}
a:not(.btn).tel, a:not(.btn)[href^="tel:"] {
  --width: 1em;
  --ratio: 457/500;
  --maskImage: url("../images/iconCall.svg");
  --align: text-bottom;
}
a:not(.btn).tel:before, a:not(.btn)[href^="tel:"]:before {
  --bg: currentColor;
}
a:not(.btn).map {
  --width: 1.1em;
  --ratio: 371/500;
  --maskImage: url("../images/iconPin.svg");
  --align: text-bottom;
}
a:not(.btn).map:before {
  --bg: currentColor;
}
a.tel, a.map, a.mail, a.line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  transition: var(--tr04);
}
a.tel:before, a.map:before, a.mail:before, a.line:before {
  --bg: currentColor;
  content: "";
  width: 1.1em;
  display: block;
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: auto 100%;
  background: currentColor;
  aspect-ratio: var(--ratio);
  mask-image: var(--maskImage);
  -webkit-mask-image: var(--maskImage);
  background: var(--bg);
}
a.tel:after, a.map:after, a.mail:after, a.line:after {
  content: none !important;
}
a.tel:before {
  --ratio: 23/25;
  --maskImage: url("../images/iconCall.svg");
}
a.map:before {
  --ratio: 371/500;
  --maskImage: url("../images/iconPin.svg");
}
a.mail:before {
  --ratio: 56/40;
  --maskImage: url("../images/iconMail.svg");
}
a.line:before {
  --bg: #06C755;
  --ratio: 44/42;
  --maskImage: url("../images/iconLine.svg");
}

.arrow {
  --gap: 1em;
  --borderWid: 1px;
  --arrowWid: .65em;
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 0.5);
  position: relative;
  line-height: 2;
  height: 2em;
}
.arrow:before {
  content: "";
  display: block;
  width: var(--arrowWid);
  height: var(--arrowWid);
  border-top: var(--borderWid) solid;
  border-left: var(--borderWid) solid;
  transform: rotate(135deg) translate(0, -50%);
  transform-origin: center top;
  position: absolute;
  top: 50%;
  right: 0;
}

.btnArea {
  text-align: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}
.btnArea .btn {
  margin: 0;
}
.btnArea .btn input {
  font-size: 1rem;
  width: 100%;
  background: var(--typo);
  border-color: var(--typo);
}

.wp-pagenavi {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 3rem 0 0;
  position: relative;
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  padding: 0;
  border-radius: var(--rad0);
}
.wp-pagenavi a {
  text-decoration: none;
  border: 1px solid;
  background: none;
  color: var(--typo);
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  transition: 0.4s all ease-in-out;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  border: none;
}
.wp-pagenavi a.last, .wp-pagenavi a.first {
  width: auto;
  border: none;
  padding: 0 0.5em;
}
.wp-pagenavi a:hover {
  background: var(--typo);
  color: white;
}
.wp-pagenavi span {
  line-height: 1.5;
}
.wp-pagenavi span.pages {
  letter-spacing: 0;
}
.wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid;
  background: var(--typo);
  color: white;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
}
.wp-pagenavi span.extend {
  line-height: 2rem;
  margin: 0 0.5rem;
  text-decoration: none;
}

.notFoundPage {
  padding: calc(var(--pad) * 3) 0;
}
.notFoundPage #noItems {
  min-height: 75vh;
  justify-content: center;
  align-items: center;
}
.notFoundPage #noItems em {
  margin: 0 0 calc(var(--pad) * 1);
}
@media (width >= 768px) {
  .notFoundPage #noItems em {
    font-size: 7vw;
  }
}
@media (width <= 768px) {
  .notFoundPage #noItems em {
    font-size: 2em;
    line-height: 1.5;
  }
}
.notFoundPage #noItems strong {
  text-align: center;
  font-size: 1.5rem;
}
.notFoundPage #noItems .term {
  margin: 0;
  padding: calc(var(--pad) * 1) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notFoundPage #noItems .term .info-404 {
  display: block;
}
.notFoundPage #noItems .btn {
  margin: 3rem auto 0;
  text-align: center;
}

.singleNav {
  padding: 2em;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.singleNav .btn {
  margin: 0;
  padding: 0;
  width: 32%;
}
.singleNav .btn.next a, .singleNav .btn.next b {
  padding: 0 2em 0 1em;
}
.singleNav .btn.next a:before, .singleNav .btn.next b:before {
  rotate: 45deg;
}
.singleNav .btn.prev a, .singleNav .btn.prev b {
  padding: 0 1em 0 2em;
}
.singleNav .btn.prev a:before, .singleNav .btn.prev b:before {
  right: auto;
  left: 1em;
  rotate: 225deg;
}
.singleNav .backAcv {
  margin: 0;
}

@layer base {
  .view {
    opacity: 0;
  }
  .view:not(.pop):not(.expo) {
    transform: translate(0, 1rem);
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  }
  .view:not(.pop):not(.expo) img {
    transition: filter 0.5s ease-in-out 0.1s;
    filter: brightness(10) saturate(0) blur(1em);
  }
  .view.pop {
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(1, 0.17, 0, 0.97), 0.4s opacity cubic-bezier(1, 0.17, 0, 0.97);
  }
  .view.expo {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(1, 0.17, 0, 0.97), 0.4s opacity cubic-bezier(1, 0.17, 0, 0.97);
  }
  .view.inView {
    opacity: 1;
  }
  .view.inView:not(.pop):not(.expo) {
    transform: translate(0, 0);
  }
  .view.inView:not(.pop):not(.expo) img {
    filter: brightness(1) saturate(1) blur(0);
  }
  .view.inView.pop, .view.inView.expo {
    transform: scale(1);
  }
}

/*# sourceMappingURL=common.css.map */
