@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
guide
----------------------------------------*/
@media screen and (min-width: 769px) {
  .c_unaccepted_lists {
    display: grid;
    gap: 0.4em;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
  .c_unaccepted_lists li + li {
    margin-top: 0;
  }
}

.c_method_lists {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .c_method_lists {
    gap: 60px 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_method_lists {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
.c_method_item_tip {
  background-color: var(--body_color);
  color: rgb(255, 255, 255);
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  padding: 15px 10px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_method_item_tip {
    font-size: 1.6rem;
    padding: 12px 10px;
  }
}
.c_method_item_tip::after {
  background-color: var(--body_color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  height: 16px;
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
  top: calc(100% - 1px);
  width: 20px;
}
@media screen and (max-width: 768px) {
  .c_method_item_tip::after {
    height: 12px;
    width: 16px;
  }
}
.c_method_item_ttl {
  font-size: 2.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_method_item_ttl {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.c_method_item_img {
  text-align: center;
}

.c_unaccepted_items_row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
}
@media screen and (max-width: 768px) {
  .c_unaccepted_items_row {
    gap: 40px;
  }
}
.c_unaccepted_items_col {
  width: 100%;
}
.c_unaccepted_items_col_50 {
  max-width: calc(50% - 10px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c_unaccepted_items_col_50 {
    max-width: 100%;
  }
}

.c_gallerys {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
@media screen and (max-width: 768px) {
  .c_gallerys {
    gap: 7px;
  }
}

.c_gallery {
  max-width: 188px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .c_gallery {
    max-width: 137px;
  }
}
@media screen and (max-width: 1080px) {
  .c_gallery {
    max-width: 109px;
  }
}
@media screen and (max-width: 768px) {
  .c_gallery {
    max-width: calc(33.3333333333% - 5px);
  }
}
.c_gallery img {
  width: 100%;
}