﻿@charset "utf-8";
/*--------------------------------------------------------------------------------
  .exh
--------------------------------------------------------------------------------*/
.exh-sec:not(:last-of-type),
.exh-sec.js_acod.is-active:not(:last-of-type),
.exh-article:not(:last-of-type) {
  padding-bottom: var(--space-l);
}
.exh-sec.js_acod { padding-bottom: 0; }

/*--------------------------------------------------------------------------------
  .exh-acod
--------------------------------------------------------------------------------*/
.exh-acod {
  display: flex;
  column-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  transition: var(--hover-trans);
}
.exh-acod:after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  line-height: 1;
  color: currentColor;
  vertical-align: middle;
  background: currentColor;
  mask: var(--icon-down) no-repeat center center;
  mask-size: contain;
}
.exh-acod.is-active:after {
  mask-image: var(--icon-up);
}
@media (hover: hover) {
  .exh-acod:hover {
    background-color: var(--color-primary-lighter);
  }
}

/*--------------------------------------------------------------------------------
  .exh-box
--------------------------------------------------------------------------------*/
.exh-box {
  --box-pd: max(1.5rem, var(--box-space-m));
  text-align: center;
}
.exh-box_txt {
  padding-bottom: 1.5rem;
}
.exh-box_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
