@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
index
----------------------------------------*/
.c_hero {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 400px;
  padding-block: 90px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c_hero {
    min-height: 180px;
    padding-block: 35px;
  }
}
.c_hero_subttl {
  color: rgb(255, 255, 255);
  font-family: var(--font_jp_serif);
  font-size: 3.2rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_hero_subttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.c_hero_subttl_dot {
  position: relative;
}
.c_hero_subttl_dot::before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  height: 0.25em;
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
  top: -0.25em;
  width: 0.25em;
}
.c_hero_ttl {
  color: rgb(255, 255, 255);
  font-family: var(--font_jp_serif);
  font-size: 5.2rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .c_hero_ttl {
    font-size: 2.6rem;
  }
}
.c_hero_bg {
  height: 100%;
  left: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.c_needs {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .c_needs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_needs {
    grid-template-columns: 1fr;
  }
}

.c_need_img img {
  width: 100%;
}
.c_need_ttl {
  background-color: var(--main_color);
  color: rgb(255, 255, 255);
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .c_need_ttl {
    font-size: 2rem;
  }
}

.c_flow_lists_wrap {
  margin-inline: auto;
  max-width: 800px;
}
.c_flow_lists {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c_flow_lists {
    gap: 20px;
  }
}
.c_flow_list {
  counter-increment: flowNum;
}
.c_flow_list:not(:last-child)::after {
  background-color: var(--body_color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: block;
  height: 20px;
  margin: -1px auto 0;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .c_flow_list:not(:last-child)::after {
    height: 10px;
    width: 20px;
  }
}
.c_flow_item {
  align-items: start;
  background-color: var(--gray_lt);
  border: 1px solid var(--border_color);
  display: grid;
  gap: 30px;
  grid-template-columns: 205px 1fr;
  padding: 30px 170px 30px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_flow_item {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c_flow_item_head {
    padding-right: 110px;
  }
}
.c_flow_item_ttl {
  align-items: center;
  display: flex;
  font-feature-settings: "palt";
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  margin-bottom: 10px;
  min-height: 80px;
  padding-left: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_flow_item_ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
    min-height: 50px;
    padding-left: 50px;
  }
}
.c_flow_item_ttl::before, .c_flow_item_ttl::after {
  color: rgb(201, 201, 201);
  display: block;
  font-family: var(--font_jp_serif);
  font-weight: var(--font_weight_bold);
  left: -5px;
  letter-spacing: 0.025em;
  line-height: 1;
  position: absolute;
  text-align: center;
  white-space: nowrap;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_ttl::before, .c_flow_item_ttl::after {
    width: 45px;
  }
}
.c_flow_item_ttl::before {
  content: "Step";
  font-size: 2.4rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .c_flow_item_ttl::before {
    font-size: 1.5rem;
  }
}
.c_flow_item_ttl::after {
  content: counter(flowNum, decimal-leading-zero);
  font-size: 5rem;
  top: 25px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_ttl::after {
    font-size: 3rem;
    top: 15px;
  }
}
.c_flow_item_label {
  border-radius: 50px;
  color: rgb(255, 255, 255);
  height: 30px;
  letter-spacing: 0.025em;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_flow_item_label {
    font-size: 1.2rem;
    height: 19px;
    line-height: 19px;
    width: 145px;
  }
}
.c_flow_item_label_main {
  background-color: var(--main_color);
}
.c_flow_item_label_black {
  background-color: var(--body_color);
}
.c_flow_item_body {
  align-self: center;
}
.c_flow_item_body > * + * {
  margin-top: 1em;
}
.c_flow_item_img {
  height: 135px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 135px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_img {
    bottom: auto;
    height: 100px;
    right: 20px;
    top: 5px;
    width: 100px;
  }
}