/* VARIABLES */
/* MIXINS */
/* FUNCTIONS */
/* ADJUSTMENT */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
  .mt0 {
    margin-top: 0vw !important;
  }
  .mb0 {
    margin-bottom: 0vw !important;
  }
  .mt5 {
    margin-top: 1.3333333333vw !important;
  }
  .mb5 {
    margin-bottom: 1.3333333333vw !important;
  }
  .mt10 {
    margin-top: 2.6666666667vw !important;
  }
  .mb10 {
    margin-bottom: 2.6666666667vw !important;
  }
  .mt15 {
    margin-top: 4vw !important;
  }
  .mb15 {
    margin-bottom: 4vw !important;
  }
  .mt20 {
    margin-top: 5.3333333333vw !important;
  }
  .mb20 {
    margin-bottom: 5.3333333333vw !important;
  }
  .mt25 {
    margin-top: 6.6666666667vw !important;
  }
  .mb25 {
    margin-bottom: 6.6666666667vw !important;
  }
  .mt30 {
    margin-top: 8vw !important;
  }
  .mb30 {
    margin-bottom: 8vw !important;
  }
  .mt35 {
    margin-top: 9.3333333333vw !important;
  }
  .mb35 {
    margin-bottom: 9.3333333333vw !important;
  }
  .mt40 {
    margin-top: 10.6666666667vw !important;
  }
  .mb40 {
    margin-bottom: 10.6666666667vw !important;
  }
  .mt45 {
    margin-top: 12vw !important;
  }
  .mb45 {
    margin-bottom: 12vw !important;
  }
  .mt50 {
    margin-top: 13.3333333333vw !important;
  }
  .mb50 {
    margin-bottom: 13.3333333333vw !important;
  }
}
/*---------------------------------------------------------------------

contact/css/columns.css

---------------------------------------------------------------------*/
.tag-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .tag-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    font-size: 13px;
    line-height: 1.9;
  }
}
.tag-list__item {
  padding: 15px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .tag-list__item {
    padding: 10px;
  }
}
.tag-list__item.selected {
  background: #cc0033;
  color: #fff;
}

.column-list__item {
  background: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .column-list__item {
    margin-bottom: 4vw;
  }
}
.column-list__item.unselected {
  display: none;
}
.column-list__link {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .column-list__link {
    flex-direction: column;
    padding: 5.3333333333vw;
  }
}
.column-list__link:hover {
  opacity: 0.7;
}
.column-list__img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .column-list__img {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.column-list__body {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .column-list__body {
    width: 100%;
  }
}
.column-list__title {
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .column-list__title {
    margin-bottom: 1.3333333333vw;
  }
}
.column-list__date {
  margin-top: 10px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .column-list__date {
    margin-top: 1.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.column-list.refreshed {
  opacity: 0;
  -webkit-animation: fade-in 0.5s forwards;
          animation: fade-in 0.5s forwards;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.article {
  line-height: 1.9;
}
.article__title {
  position: relative;
}
.article__title .heading--lv1 {
  display: inline-block;
  width: 100%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .article__title .heading--lv1 {
    padding: 20px 10px;
    font-size: 16px;
  }
}
.article .txt + .txt {
  margin-top: 15px;
}
.article .txt + .btn {
  margin-top: 10px;
}
.article .bullet-list,
.article .ordered-list {
  margin: 10px 0 20px;
}
.article .table {
  margin: 10px 0 20px;
}
.article .heading--lv4 {
  margin: 20px 0 10px;
  font-weight: bold;
}

.table-of-contents {
  max-width: 700px;
  margin: 30px auto;
  padding: 30px;
  padding-bottom: 50px;
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .table-of-contents {
    padding: 20px;
    padding-bottom: 40px;
  }
}
.table-of-contents__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  font-size: 20px;
}
.table-of-contents__item--1 {
  margin-top: 15px;
  margin-bottom: 10px;
}
.table-of-contents__item--2 {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding-left: 20px;
}
.table-of-contents__item--2::before {
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
  margin-right: 10px;
  background: #cc0033;
}
.table-of-contents__item--3 {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding-left: 40px;
}
.table-of-contents__item--3::before {
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
  margin-right: 10px;
  border: 1px solid #cc0033;
}
.table-of-contents li:nth-of-type(n + 8) {
  display: none;
}
.table-of-contents.is-open li:nth-of-type(n + 8) {
  display: flex;
}
.table-of-contents.is-open .table-of-contents__trigger::after {
  top: 10px;
  transform: rotate(-135deg);
}
.table-of-contents a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
}
.table-of-contents a:hover {
  color: #000;
  opacity: 0.6;
}
.table-of-contents__trigger {
  height: 40px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  cursor: pointer;
}
.table-of-contents__trigger::after {
  content: "";
  height: 8px;
  width: 8px;
  margin-left: 10px;
  position: absolute;
  top: 7px;
  border: 2px solid #000;
  border-top-width: 0;
  border-left-width: 0;
  transform: rotate(45deg);
}

.label__list {
  margin: 10px 0;
}

.related-columns {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .related-columns {
    padding: 20px;
  }
}

.heading--lv3 {
  position: relative;
  padding-left: 1.2em;
}
.heading--lv3::before {
  content: "";
  background: #cc0033;
  height: 0.7em;
  width: 0.7em;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.bullet-list__item {
  list-style-type: none;
  position: relative;
}
.bullet-list__item::before {
  content: "";
  background: #cc0033;
  height: 0.4em;
  width: 0.4em;
  position: absolute;
  top: 0.75em;
  left: -1em;
}
/*# sourceMappingURL=columns.css.map */