@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
index
----------------------------------------*/
.c_hero_img {
  width: 100%;
}

@media screen and (min-width: 1081px) {
  .c_purchase {
    padding-bottom: 0;
    position: relative;
    z-index: 0;
  }
  .c_purchase::after {
    background-color: var(--gray_lt);
    bottom: -1px;
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
}

.c_experience {
  background-color: var(--gray_lt);
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_experience {
    margin-bottom: 50px;
  }
}
.c_experience::after {
  background-color: var(--gray_lt);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  height: 100px;
  left: 0;
  margin-inline: auto;
  max-width: 1200px;
  position: absolute;
  right: 0;
  top: calc(100% - 1px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c_experience::after {
    height: 50px;
  }
}
.c_experience_media {
  display: grid;
  gap: 0 40px;
  grid-template-columns: 250px auto;
  grid-template-rows: max-content 1fr;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c_experience_media {
    gap: 0 15px;
    grid-template-columns: 160px 1fr;
    justify-content: start;
  }
}
@media screen and (min-width: 769px) {
  .c_experience_media_ttl {
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
@media screen and (max-width: 768px) {
  .c_experience_media_ttl {
    grid-column: span 2/span 2;
  }
}
@media screen and (min-width: 769px) {
  .c_experience_media_img {
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
@media screen and (max-width: 768px) {
  .c_experience_media_img {
    grid-row-start: 2;
  }
}
.c_experience_media_txt {
  grid-column-start: 2;
}
@media screen and (max-width: 768px) {
  .c_experience_media_txt {
    font-size: 1.4rem;
  }
}

.c_shop {
  display: grid;
  gap: 0 50px;
  grid-template-columns: 550px 1fr;
  grid-template-rows: auto 1fr;
}
.c_shop + .c_shop {
  border-top: 1px solid var(--border_color);
  margin-top: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .c_shop + .c_shop {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .c_shop {
    gap: 0 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_shop {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 769px) {
  .c_shop_txt_01 {
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 769px) {
  .c_shop_mv {
    grid-row: span 5/span 5;
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
.c_shop_mv img {
  width: 100%;
}
.c_shop_img {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 769px) {
  .c_shop_img {
    grid-column-start: 1;
    grid-row-start: 4;
  }
}
@media screen and (max-width: 1080px) {
  .c_shop_img {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c_shop_img {
    gap: 10px;
  }
}
.c_shop_img img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c_shop_txt_02 {
    grid-column-start: 1;
    grid-row-start: 3;
  }
}
@media screen and (min-width: 769px) {
  .c_shop_btn {
    grid-row-start: 5;
  }
}
.c_online {
  background-color: var(--gray_lt);
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_online {
    margin-bottom: 50px;
  }
}
.c_online::after {
  background-color: var(--gray_lt);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  height: 100px;
  left: 0;
  margin-inline: auto;
  max-width: 1200px;
  position: absolute;
  right: 0;
  top: calc(100% - 1px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c_online::after {
    height: 50px;
  }
}

.c_store_lists {
  display: grid;
  gap: 20px 15px;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1280px) {
  .c_store_lists {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  .c_store_lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c_store_lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c_store_list {
  display: grid;
}
.c_store_item {
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--border_color);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c_store_item_img img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.c_store_item_body {
  display: grid;
  flex: 1;
  grid-template-rows: max-content max-content auto;
  padding: 20px 15px;
}
@media screen and (max-width: 768px) {
  .c_store_item_body {
    grid-template-rows: 1fr max-content auto;
    padding: 15px 12px;
  }
}
.c_store_item_ttl {
  font-feature-settings: "palt";
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_store_item_ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c_store_item_txt {
    font-size: 1.3rem;
  }
}
.c_store_item_btn {
  align-self: end;
}
.c_store_item_btn .m_btn {
  max-width: 100%;
  min-height: 50px;
}
@media screen and (max-width: 768px) {
  .c_store_item_btn .m_btn {
    font-size: 1.2rem;
    min-height: 30px;
  }
}