@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
index
----------------------------------------*/
.c_gnav_guide {
  background-color: var(--gray_lt);
}
.c_gnav_guide_toggle {
  background-image: linear-gradient(0deg, rgb(111, 111, 111), rgb(11, 11, 11));
  color: rgb(255, 255, 255);
  display: grid;
  font-weight: var(--font_weight_bold);
  height: 48px;
  letter-spacing: 0.025em;
  place-content: center;
  width: 100%;
}
.c_gnav_guide_toggle_inner {
  align-items: center;
  display: flex;
  gap: 10px;
}
.c_gnav_guide_toggle_arrow {
  border-radius: 50%;
  border: 1px solid var(--main_color);
  display: block;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: transform 0.3s;
  width: 16px;
}
.c_gnav_guide_toggle.is_active .c_gnav_guide_toggle_arrow {
  transform: rotate(-180deg);
}
.c_gnav_guide_toggle_arrow::after {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  bottom: 5.5px;
  content: "";
  height: 5px;
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  width: 5px;
  z-index: 1;
}
.c_gnav_guide_body {
  padding-block: 30px 50px;
}
.c_gnav_guide_btn {
  font-size: 2rem;
  height: 70px;
  max-width: 100% !important;
  position: relative;
}
.c_gnav_guide_btn::before, .c_gnav_guide_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0.8em;
  width: 0.5em;
  height: 2px;
  background-color: currentColor;
  transform-origin: calc(100% - 1px) 50%;
}
.c_gnav_guide_btn::before {
  transform: rotate(45deg);
}
.c_gnav_guide_btn::after {
  transform: rotate(-45deg);
}
.c_gnav_guide_link {
  flex: 1 1 calc(50% - 5px);
}
.c_gnav_guide_link a {
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  display: flex;
  flex-direction: column;
  padding: 12px 0 20px;
  position: relative;
  z-index: 0;
}
.c_gnav_guide_link a figure {
  margin-inline: auto;
  width: 50px;
}
.c_gnav_guide_link a p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  text-align: center;
  margin-top: 10px;
}
.c_gnav_guide_link a p::after {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 8px;
  transform: rotate(-45deg);
  width: 8px;
  z-index: 1;
  margin-left: 5px;
}
.c_gnav_guide_link a::after {
  content: none;
}

.c_hero {
  background-color: rgb(206, 189, 168);
}
.c_hero_img {
  width: 100%;
}
.c_hero_btn_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .c_hero_btn_lists {
    gap: 25px;
    padding-block: 25px;
  }
}
.c_hero_btn {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.c_free {
  display: grid;
  overflow: hidden;
  padding-block: 60px 0;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .c_free {
    padding-top: 50px;
  }
}
.c_free_circle {
  height: 700px;
  padding-top: 90px;
  position: relative;
  width: 700px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c_free_circle {
    height: 497px;
    padding-top: 60px;
    width: 479px;
  }
}
.c_free_circle::after {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  content: "";
  height: inherit;
  inset: 0;
  margin: auto;
  position: absolute;
  width: inherit;
  z-index: -1;
}
.c_free_ttl {
  font-family: var(--font_jp_serif);
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: 1.32;
  text-align: center;
}
.c_free_ttl_sm {
  display: block;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c_free_ttl_sm {
    font-size: 2.2rem;
  }
}
.c_free_ttl_lg {
  color: rgb(190, 5, 5);
  display: block;
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c_free_ttl_lg {
    font-size: 2.8rem;
  }
}
.c_free_lists {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 158px);
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c_free_lists {
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 112px));
    margin-top: 20px;
  }
}
.c_free_item {
  border: 1px solid;
  padding-block: 5px 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_free_item {
    padding-block: 5px 15px;
  }
}
.c_free_item::before, .c_free_item::after {
  border-style: solid;
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  translate: -50% 100%;
}
.c_free_item::before {
  border-width: 20px 14px 0 14px;
  border-color: var(--body_color) transparent transparent;
}
@media screen and (max-width: 768px) {
  .c_free_item::before {
    border-width: 15px 10px 0 10px;
  }
}
.c_free_item::after {
  border-width: 18.3px 12.8px 0 12.8px;
  border-color: rgb(255, 255, 255) transparent transparent;
}
@media screen and (max-width: 768px) {
  .c_free_item::after {
    border-width: 13.2px 8.8px 0 8.8px;
  }
}
.c_free_item_img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_free_item_img img {
    width: 70px;
  }
}
.c_free_item_ttl {
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .c_free_item_ttl {
    font-size: 1.2rem;
    margin-top: -5px;
  }
}
.c_free_txt_en {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_free_txt_en {
    margin-top: 30px;
  }
  .c_free_txt_en img {
    width: 211px;
  }
}
.c_free_txt {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_free_txt {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.c_free_label {
  background-color: rgb(241, 236, 229);
  color: rgb(190, 5, 5);
  display: inline-block;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  padding: 2px 10px;
}

.c_flow {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .c_flow {
    padding-top: 50px;
  }
}
.c_flow_lists {
  display: grid;
  gap: 30px;
  margin-inline: auto;
  max-width: 940px;
}
@media screen and (max-width: 768px) {
  .c_flow_lists {
    gap: 20px;
  }
}
.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);
  padding: 0 40px 40px;
}
@media screen and (max-width: 768px) {
  .c_flow_item {
    padding: 0 20px 20px;
  }
}
.c_flow_item_head {
  align-items: center;
  display: flex;
  min-height: 120px;
  padding: 15px 0 15px 110px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_flow_item_head {
    min-height: 70px;
    padding: 10px 0 10px 75px;
  }
}
.c_flow_item_num {
  background-color: var(--main_color);
  color: rgb(255, 255, 255);
  font-family: var(--font_jp_serif);
  font-size: 5rem;
  font-weight: var(--font_weight_bold);
  height: 120px;
  left: 0;
  letter-spacing: 0.025em;
  line-height: 1.05;
  padding-top: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  white-space: nowrap;
  width: 90px;
}
@media screen and (max-width: 768px) {
  .c_flow_item_num {
    font-size: 3rem;
    height: 70px;
    padding-top: 10px;
    width: 60px;
  }
}
.c_flow_item_num::before {
  content: "Step";
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c_flow_item_num::before {
    font-size: 1.5rem;
  }
}
.c_flow_item_ttl {
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .c_flow_item_ttl {
    font-size: 1.8rem;
  }
}
.c_flow_item_body {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: 342px 1fr;
  margin-top: 15px;
}
@media screen and (max-width: 1080px) {
  .c_flow_item_body {
    grid-template-columns: 242px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c_flow_item_body {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .c_flow_item_body .m_btn {
    margin-inline: 0;
  }
}
.c_flow_item_img {
  text-align: center;
}

.c_reasons {
  background-color: var(--green);
  position: relative;
  padding-bottom: 80px;
}
.c_reasons::after {
  background-color: var(--green);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: block;
  height: 90px;
  left: 0;
  margin-inline: auto;
  max-width: 1200px;
  position: absolute;
  right: 0;
  top: calc(100% - 1px);
  width: calc(100% - 40px);
}
@media screen and (max-width: 768px) {
  .c_reasons::after {
    height: 42px;
    max-width: 216px;
    width: calc(100% - 20px);
  }
}
.c_reasons .m_ttl_h2 {
  color: rgb(255, 255, 255);
}
.c_reasons_contents {
  display: grid;
  gap: 90px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .c_reasons_contents {
    gap: 45px;
    margin-top: 50px;
  }
}
.c_reasons_content {
  background-color: rgb(243, 239, 239);
  counter-increment: reasonNum;
  display: grid;
  padding-block: 80px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_reasons_content {
    padding-block: 45px 40px;
  }
}
.c_reasons_content::before, .c_reasons_content::after {
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
}
.c_reasons_content::before {
  background-color: rgb(243, 239, 239);
  border-radius: 50%;
  color: var(--green);
  content: counter(reasonNum, decimal-leading-zero);
  font-family: var(--font_jp_serif);
  font-size: 4.8rem;
  font-weight: var(--font_weight_medium);
  height: 100px;
  letter-spacing: 0.025em;
  line-height: 1;
  padding-top: 15px;
  text-align: center;
  top: -40px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .c_reasons_content::before {
    font-size: 2.8rem;
    height: 62px;
    padding-top: 13px;
    top: -25px;
    width: 62px;
  }
}
.c_reasons_content::after {
  background-color: var(--green);
  border-radius: 2px;
  content: "";
  height: 2px;
  top: 35px;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .c_reasons_content::after {
    height: 1px;
    top: 25px;
    width: 32px;
  }
}
.c_reasons_ttl {
  font-family: var(--font_jp_serif);
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: 1.42;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_reasons_ttl {
    margin-bottom: 20px;
  }
}
.c_reasons_ttl_sm {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c_reasons_ttl_sm {
    font-size: 1.6rem;
  }
}
.c_reasons_ttl_lg {
  color: var(--green);
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c_reasons_ttl_lg {
    font-size: 2.4rem;
  }
}
.c_reasons_media {
  align-items: center;
  display: flex;
  gap: 40px;
  padding-inline: 60px;
}
@media screen and (max-width: 1080px) {
  .c_reasons_media {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c_reasons_media {
    gap: 20px;
    padding-inline: 20px;
  }
}
.c_reasons_media_img {
  text-align: center;
}
.c_reasons_media_body {
  flex: 1;
}
.c_reasons_media_body .m_ttl_h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_reasons_media_body .m_ttl_h3 {
    margin-bottom: 15px;
  }
}
.c_reasons_slider {
  overflow: hidden;
}
.c_reasons_point {
  background-image: linear-gradient(0deg, rgb(241, 236, 229), rgb(255, 255, 255));
  padding-block: 140px 60px;
}
@media screen and (max-width: 768px) {
  .c_reasons_point {
    padding-block: 60px 50px;
  }
}
.c_reasons_point_ttl_01, .c_reasons_point_ttl_02 {
  font-size: 2.8rem;
}
.c_reasons_point_ttl_01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c_reasons_point_ttl_01 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.c_reasons_point_ttl_02 {
  padding-left: 0.4em;
}
@media screen and (max-width: 768px) {
  .c_reasons_point_ttl_02 {
    font-size: 1.8rem;
  }
}
.c_reasons_medals {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .c_reasons_medals {
    align-items: center;
    flex-direction: column;
    gap: 25px;
  }
  .c_reasons_medals img {
    max-width: 310px;
  }
}
.c_reasons_circle {
  position: relative;
  z-index: 0;
}
.c_reasons_circle::before, .c_reasons_circle::after {
  background: center/cover no-repeat;
  bottom: 0;
  content: "";
  height: 177px;
  margin-block: auto;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 294px;
}
@media screen and (max-width: 1080px) {
  .c_reasons_circle::before, .c_reasons_circle::after {
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .c_reasons_circle::before, .c_reasons_circle::after {
    height: 132px;
    width: 220px;
  }
}
.c_reasons_circle::before {
  background-image: url(/library/images/takuhai-kaitori/reasons_point_left.jpg);
  right: calc(100% - 40px);
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .c_reasons_circle::before {
    right: calc(50% - 20px);
    top: -80px;
  }
}
.c_reasons_circle::after {
  background-image: url(/library/images/takuhai-kaitori/reasons_point_right.jpg);
  left: calc(100% - 40px);
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .c_reasons_circle::after {
    left: calc(50% - 20px);
    top: -140px;
  }
}
.c_reasons_circle_wrap {
  display: grid;
  overflow: hidden;
  padding-top: 30px;
  place-content: center;
}
@media screen and (max-width: 1080px) {
  .c_reasons_circle_wrap {
    padding-top: 160px;
  }
}
.c_reasons_circle_inner {
  height: 590px;
  padding-top: 140px;
  position: relative;
  width: 610px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c_reasons_circle_inner {
    height: 346px;
    padding-top: 75px;
    width: 358px;
  }
}
.c_reasons_circle_inner::after {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  content: "";
  height: inherit;
  inset: 0;
  margin: auto;
  position: absolute;
  width: inherit;
  z-index: -1;
}
.c_reasons_guarantee {
  background-color: var(--green);
  padding-block: 80px 60px;
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee {
    padding-block: 50px;
  }
}
.c_reasons_guarantee_box {
  padding-block: 45px;
  position: relative;
  z-index: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
.c_reasons_guarantee_box:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1080px) {
  .c_reasons_guarantee_box {
    padding-inline: 180px 40px;
  }
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_box {
    margin-bottom: 60px;
    padding-block: 30px;
    padding-inline: 105px 20px;
  }
}
.c_reasons_guarantee_box::before, .c_reasons_guarantee_box::after {
  background: center/contain no-repeat;
  bottom: 0;
  content: "";
  margin-block: auto;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 1;
}
.c_reasons_guarantee_box::before {
  background-image: url(/library/images/takuhai-kaitori/reasons_guarantee_icon.png);
  height: 120px;
  left: 60px;
  width: 120px;
}
@media screen and (max-width: 1080px) {
  .c_reasons_guarantee_box::before {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_box::before {
    height: 64px;
    left: 20px;
    width: 64px;
  }
}
.c_reasons_guarantee_box::after {
  background-image: url(/library/images/takuhai-kaitori/reasons_guarantee_en.png);
  height: 164px;
  right: -90px;
  width: 316px;
}
@media screen and (max-width: 1280px) {
  .c_reasons_guarantee_box::after {
    bottom: -20px;
    height: 140px;
    right: -20px;
    top: auto;
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_box::after {
    bottom: -50px;
    height: 82px;
    right: 0;
    top: auto;
    width: 158px;
  }
}
.c_reasons_guarantee_ttl {
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .c_reasons_guarantee_ttl {
    text-align: left;
  }
}
.c_reasons_guarantee_ttl_lg {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_ttl_lg {
    font-size: 2rem;
  }
}
.c_reasons_guarantee_ttl_num {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_ttl_num {
    font-size: 3.2rem;
  }
}
.c_reasons_guarantee_ttl_sm {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c_reasons_guarantee_ttl_sm {
    font-size: 2rem;
  }
}

.pickupbrand .splide__list {
  grid-template-columns: repeat(6, 1fr) !important;
}

@media screen and (max-width: 768px) {
  .m_purchase_price.total .m_purchase_price_num {
    font-size: 4.5rem;
  }
  .m_purchase_price.total .m_purchase_price_en {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=index.css.map */