﻿/*----------------------------------------------------------------------------------------------------

  preparation
  
----------------------------------------------------------------------------------------------------*/

.category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: var(--block-space-max);
}

.category-list .p-btn .arrow {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-left: 1em;
}

section {
  padding-top: 120px;
  margin-top: -120px;
}

.column {
  margin-top: 40px;
}

.column-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: .5em 0;
  font-weight: 500;
  text-decoration: none;
  line-height: var(--line-height-s);
}
.column-box:hover {
  text-decoration: none;
}

@media (max-width:640px) {
  .two-column .column-box {
    width: 100%;
    margin-right: 0;
  }
}

.column-box .name {
  display: inline-block;
  width: calc(100% - 3em);
}

.column-box .arrow {
  display: inline-block;
  position: absolute;
  right: .5em;
  width: 1.5em;
  height: 1.5em;
  transition: .2s ease-in-out;
}

.column-box:hover .arrow {
  right: 0;
}