@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
index
----------------------------------------*/
.c_hero {
  min-height: 400px;
  padding-block: 180px 90px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c_hero {
    min-height: 180px;
    padding-block: 80px 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_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_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: 195px 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: 120px;
  }
}
.c_flow_item_ttl {
  align-items: center;
  display: flex;
  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: 120px;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 120px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_img {
    bottom: auto;
    height: 100px;
    right: 20px;
    top: 10px;
    width: 100px;
  }
}

.c_point_lists {
  display: grid;
  gap: 60px 40px;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 1280px) {
  .c_point_lists {
    gap: 40px 30px;
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 768px) {
  .c_point_lists {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}
.c_point_item {
  display: grid;
  gap: 15px;
  grid-template-columns: 100px 1fr;
}
@media screen and (max-width: 768px) {
  .c_point_item {
    grid-template-columns: 75px 1fr;
  }
}
.c_point_item_num {
  background-color: var(--main_color);
  color: rgb(255, 255, 255);
  display: block;
  font-family: var(--font_en);
  font-size: 3.6rem;
  font-weight: var(--font_weight_medium);
  height: 100px;
  line-height: 1.2;
  padding-top: 14px;
  text-align: center;
  white-space: nowrap;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .c_point_item_num {
    height: 75px;
    font-size: 2.4rem;
    width: 75px;
  }
}
.c_point_item_num::before {
  content: "Point";
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c_point_item_num::before {
    font-size: 1.6rem;
  }
}
.c_point_item_body {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c_point_item_txt {
  font-feature-settings: "palt";
  line-height: var(--line_height_headline);
  letter-spacing: 0.025em;
}
.c_point_item_ttl {
  font-feature-settings: "palt";
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.05em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .c_point_item_ttl {
    font-size: 1.8rem;
  }
}