@charset "utf-8";
/* CSS Document */

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72C7CA;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

/* 2025 add */

.container {
  display: flex;
  flex-wrap: wrap; /* 折り返しを有効にする */
  max-width: 100%; /* 必要に応じて調整 */
  margin: 5px;
}

.item {
  max-width: 50%; /* PC表示時、2つ並べる */
  box-sizing: border-box; /* padding, borderをwidthに含める */
  padding: 5px 7px;
}

/* スマホ表示 */
@media (max-width: 767px) {
  .item {
    max-width: 100%; /* スマホ表示時、1つずつ */
  }
}