@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
index
----------------------------------------*/
.c_hero {
  background-color: var(--main_color_lt);
  padding-block: 60px 80px;
}
@media screen and (max-width: 768px) {
  .c_hero {
    padding-block: 30px 50px;
  }
}
.c_hero_head {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .c_hero_head {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
    padding-inline: var(--site_padding);
  }
}
.c_hero_ttl {
  font-family: var(--font_jp_serif);
  font-feature-settings: "palt";
  font-size: 3.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c_hero_ttl {
    font-size: 2.5rem;
  }
}
.c_hero_read {
  flex: 1;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .c_hero_read {
    font-size: 1.4rem;
  }
}
.c_hero_slider_img img {
  aspect-ratio: 120/48;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 8s ease-out;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c_hero_slider_img img {
    aspect-ratio: 78/48;
  }
}
.splide__slide.is-active .c_hero_slider_img img {
  transform: scale(1.15);
  transition-delay: 0s;
}
.c_hero_review {
  background-color: var(--main_color);
  border-radius: 50%;
  bottom: -45px;
  color: rgb(255, 255, 255);
  height: 183px;
  padding-top: 15px;
  position: absolute;
  right: 45px;
  text-align: center;
  white-space: nowrap;
  width: 183px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c_hero_review {
    bottom: -16px;
    height: 124px;
    padding-top: 12px;
    right: 20px;
    width: 124px;
  }
}
.c_hero_review_ttl {
  font-size: 1.48rem;
  font-weight: var(--font_weight_bold);
}
@media screen and (max-width: 768px) {
  .c_hero_review_ttl {
    font-size: 1rem;
  }
}
.c_hero_review_label {
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  color: var(--main_color);
  display: inline-block;
  font-size: 2.25rem;
  font-weight: var(--font_weight_bold);
  line-height: 1;
  padding: 3.5px 12px 2px;
}
@media screen and (max-width: 768px) {
  .c_hero_review_label {
    font-size: 1.5rem;
    padding: 2.5px 10px 1.5px;
  }
}
.c_hero_review_score {
  font-size: 2rem;
  font-weight: var(--font_weight_bold);
  line-height: 1;
  margin-top: -5px;
}
@media screen and (max-width: 768px) {
  .c_hero_review_score {
    font-size: 1.34rem;
    margin-top: -3px;
  }
}
.c_hero_review_num {
  font-family: var(--font_jp_serif);
  font-size: 5.16rem;
  font-weight: var(--font_weight_medium);
}
@media screen and (max-width: 768px) {
  .c_hero_review_num {
    font-size: 3.5rem;
  }
}
.c_hero_review_info {
  font-size: 1.47rem;
  margin-top: -13px;
}
@media screen and (max-width: 768px) {
  .c_hero_review_info {
    font-size: 1rem;
    margin-top: -11px;
  }
}
.c_hero_review_stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c_hero_review_stars {
    font-size: 1.1rem;
    gap: 1px;
  }
}
.c_hero_review_star {
  opacity: 0.45;
}
.c_hero_review_stars_1 .c_hero_review_star:nth-child(-n+1) {
  opacity: 1;
}
.c_hero_review_stars_2 .c_hero_review_star:nth-child(-n+2) {
  opacity: 1;
}
.c_hero_review_stars_3 .c_hero_review_star:nth-child(-n+3) {
  opacity: 1;
}
.c_hero_review_stars_4 .c_hero_review_star:nth-child(-n+4) {
  opacity: 1;
}
.c_hero_review_stars_5 .c_hero_review_star {
  opacity: 1;
}
.c_hero_foot {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_hero_foot {
    margin-top: 50px;
  }
}
.c_hero_tip {
  margin-bottom: 0;
}
.c_hero_tip_inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_hero_tip_inner {
    align-items: end;
    gap: 10px;
    font-size: 1.6rem;
  }
}
.c_hero_tip_inner::before, .c_hero_tip_inner::after {
  background: url(/library/images/shop/hero_tip_deco.svg) center/contain no-repeat;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 76px;
  width: 37px;
}
@media screen and (max-width: 768px) {
  .c_hero_tip_inner::before, .c_hero_tip_inner::after {
    height: 48px;
    width: 23px;
  }
}
.c_hero_tip_inner::after {
  margin-left: -20px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .c_hero_tip_inner::after {
    margin-left: -15px;
  }
}
@media screen and (max-width: 768px) {
  .c_hero_info {
    font-size: 1.4rem;
  }
}
.c_hero_bg {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.c_hero_ver2 {
  padding-block: 0;
  position: relative;
  z-index: 0;
}
.c_hero_ver2 .c_hero_container {
  padding-block: 185px 45px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c_hero_ver2 .c_hero_container {
    padding-block: 95px 25px;
  }
}
.c_hero_ver2 .c_hero_ttl {
  color: rgb(255, 255, 255);
  font-size: 5.8rem;
  font-weight: var(--font_weight_semibold);
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .c_hero_ver2 .c_hero_ttl {
    font-size: 2.8rem;
  }
}
.c_hero_ver2 .c_hero_ttl_lg {
  color: var(--main_color);
  font-size: 8.3rem;
}
@media screen and (max-width: 768px) {
  .c_hero_ver2 .c_hero_ttl_lg {
    font-size: 4rem;
  }
}
.c_hero_ver2 .c_hero_review {
  bottom: -60px;
}
@media screen and (max-width: 768px) {
  .c_hero_ver2 .c_hero_review {
    bottom: -35px;
  }
}

.c_check_lists {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .c_check_lists {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_check_lists {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}
.c_check_list {
  align-items: center;
  background: url(/library/images/common/icon/check_white.svg) left 20px center/18px no-repeat var(--main_color);
  border-radius: 100px;
  color: rgb(255, 255, 255);
  display: grid;
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  line-height: 1.4;
  padding: 13px 20px 12px 50px;
}
@media screen and (max-width: 768px) {
  .c_check_list {
    background-size: 17px;
    font-size: 1.6rem;
    padding: 12px 20px 11px 46px;
  }
}

.c_gallery {
  background-color: var(--gray_lt);
  margin-top: 40px;
  overflow: hidden;
  padding-block: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c_gallery {
    padding-block: 10px;
  }
}
.c_gallery_track {
  animation: marquee 40s linear infinite;
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
}
.sp_only .c_gallery_track {
  animation-direction: reverse;
}
.c_gallery_item {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c_gallery_item img {
    width: 120px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c_buyer {
  background-color: var(--gray_lt);
  display: grid;
  gap: 0 50px;
  grid-template-columns: 215px 1fr;
  grid-template-rows: max-content 1fr;
  margin-inline: auto;
  max-width: 1000px;
  padding: 40px;
}
@media screen and (max-width: 1080px) {
  .c_buyer {
    align-items: center;
    gap: 30px 50px;
    grid-template-columns: 1fr 215px;
  }
}
@media screen and (max-width: 768px) {
  .c_buyer {
    gap: 15px 20px;
    grid-template-columns: 1fr 125px;
    padding: 20px;
  }
}
.c_buyer_ttl {
  font-family: var(--font_jp_serif);
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (min-width: 1081px) {
  .c_buyer_ttl {
    grid-column-start: 2;
    grid-row-start: 1;
    margin-block: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c_buyer_ttl {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1081px) {
  .c_buyer_img {
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
.c_buyer_body {
  grid-column-start: 2;
}
@media screen and (max-width: 1080px) {
  .c_buyer_body {
    grid-column: span 2/span 2;
  }
}
.c_buyer_txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c_buyer_txt {
    font-size: 1.3rem;
  }
}
.c_buyer_name {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .c_buyer_name {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.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: center;
  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);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  margin-bottom: 10px;
  min-height: 80px;
  padding-left: 75px;
  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: 0;
  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);
}
@media screen and (max-width: 768px) {
  .c_flow_item_txt {
    font-size: 1.4rem;
  }
}
.c_flow_item_img {
  bottom: 0;
  height: 120px;
  margin-block: auto;
  position: absolute;
  right: 30px;
  top: 0;
  width: 120px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_img {
    bottom: auto;
    height: 100px;
    right: 20px;
    top: 10px;
    width: 100px;
  }
}

.c_feature_lists_wrap {
  margin-inline: auto;
  max-width: 800px;
}
.c_feature_lists {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c_feature_lists {
    gap: 20px;
  }
}
.c_feature_item {
  align-items: center;
  background-color: rgb(255, 255, 255);
  display: grid;
  gap: 50px;
  grid-template-columns: 100px 1fr;
  padding: 35px 60px;
}
@media screen and (max-width: 768px) {
  .c_feature_item {
    gap: 15px;
    grid-template-columns: 60px 1fr;
    padding: 20px 20px 20px 15px;
  }
}
.c_feature_item_ttl {
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .c_feature_item_ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .c_feature_item_txt {
    font-size: 1.4rem;
  }
}

.c_case_lists {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .c_case_lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  .c_case_lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_case_lists {
    gap: 14px;
    margin-top: 30px;
  }
}
.c_case_list {
  display: grid;
}
.c_case_item {
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--border_color);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c_case_item_img img {
  aspect-ratio: 280/170;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c_case_item_body {
  flex: 1;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_case_item_body {
    padding: 15px 0;
  }
}
.c_case_item_ttl {
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .c_case_item_ttl {
    font-feature-settings: "palt";
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}/*# sourceMappingURL=index.css.map */