@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
item
----------------------------------------*/
.c_item {
  padding-top: 104px;
}
@media screen and (max-width: 768px) {
  .c_item {
    padding-top: 50px;
  }
}
.c_item_lists {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1080px) {
  .c_item_lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_item_lists {
    gap: 14px;
  }
}
.c_item_list {
  display: grid;
}
.c_item_box {
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  cursor: pointer;
  padding: 20px;
}
@media (any-hover: hover) {
  .c_item_box {
    position: relative;
    transition: border-color 0.3s;
    z-index: 0;
  }
  .c_item_box::before {
    background-color: rgba(255, 255, 255, 0.3);
    border: 7px solid var(--main_color);
    content: "";
    height: calc(100% + 2px);
    left: -1px;
    opacity: 0;
    position: absolute;
    top: -1px;
    transition: opacity 0.3s;
    width: calc(100% + 2px);
    z-index: 1;
  }
  .c_item_box:hover {
    border-color: rgb(255, 255, 255);
  }
  .c_item_box:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .c_item_box {
    padding: 10px 10px 12px;
  }
}
.c_item_box_img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_item_box_img {
    margin-inline: auto;
    width: 85px;
  }
}
.c_item_box_ttl {
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_item_box_ttl {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.c_item_box_ttl_inner {
  display: inline-block;
  padding-inline: 20px;
  position: relative;
}
.c_item_box_ttl_inner::before, .c_item_box_ttl_inner::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  background-color: currentColor;
  transform-origin: calc(100% - 1px) 50%;
}
.c_item_box_ttl_inner::before {
  transform: rotate(45deg);
}
.c_item_box_ttl_inner::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c_item_box_ttl_inner {
    padding-inline: 7px 14px;
    position: relative;
  }
  .c_item_box_ttl_inner::before, .c_item_box_ttl_inner::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 8px;
    height: 1px;
    background-color: currentColor;
    transform-origin: calc(100% - 0.5px) 50%;
  }
  .c_item_box_ttl_inner::before {
    transform: rotate(45deg);
  }
  .c_item_box_ttl_inner::after {
    transform: rotate(-45deg);
  }
}
.c_item_box_txt {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .c_item_box_txt {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.c_other_item {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .c_other_item {
    padding-top: 50px;
  }
}
.c_other_item_lists {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, 1fr);
}
.c_other_item_lists_5 {
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1280px) {
  .c_other_item_lists {
    grid-template-columns: repeat(5, 1fr);
  }
  .c_other_item_lists_5 {
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  .c_other_item_lists {
    grid-template-columns: repeat(4, 1fr);
  }
  .c_other_item_lists_5 {
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_other_item_lists {
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c_other_item_list {
  display: grid;
}
.c_other_item_box {
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  cursor: pointer;
  padding: 12px;
}
@media (any-hover: hover) {
  .c_other_item_box {
    position: relative;
    transition: border-color 0.3s;
    z-index: 0;
  }
  .c_other_item_box::before {
    background-color: rgba(255, 255, 255, 0.3);
    border: 7px solid var(--main_color);
    content: "";
    height: calc(100% + 2px);
    left: -1px;
    opacity: 0;
    position: absolute;
    top: -1px;
    transition: opacity 0.3s;
    width: calc(100% + 2px);
    z-index: 1;
  }
  .c_other_item_box:hover {
    border-color: rgb(255, 255, 255);
  }
  .c_other_item_box:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .c_other_item_box {
    padding: 6px 8px 10px;
  }
}
.c_other_item_box_img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_other_item_box_img {
    margin-inline: auto;
    width: 75px;
  }
}
.c_other_item_box_ttl {
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  margin-top: 15px;
  text-align: center;
}
.c_other_item_lists_5 .c_other_item_box_ttl {
  font-size: 1.8rem;
  margin-block: 20px 10px;
}
@media screen and (max-width: 768px) {
  .c_other_item_box_ttl {
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .c_other_item_lists_5 .c_other_item_box_ttl {
    font-size: 1.2rem;
    margin-block: 8px 0;
  }
}
.c_other_item_box_ttl_inner {
  display: inline-block;
  padding-inline: 20px;
  position: relative;
}
.c_other_item_box_ttl_inner::before, .c_other_item_box_ttl_inner::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  background-color: currentColor;
  transform-origin: calc(100% - 1px) 50%;
}
.c_other_item_box_ttl_inner::before {
  transform: rotate(45deg);
}
.c_other_item_box_ttl_inner::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c_other_item_box_ttl_inner {
    padding-inline: 6px 12px;
    position: relative;
  }
  .c_other_item_box_ttl_inner::before, .c_other_item_box_ttl_inner::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 7px;
    height: 1px;
    background-color: currentColor;
    transform-origin: calc(100% - 0.5px) 50%;
  }
  .c_other_item_box_ttl_inner::before {
    transform: rotate(45deg);
  }
  .c_other_item_box_ttl_inner::after {
    transform: rotate(-45deg);
  }
}