@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* 配置(フレックス) */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: underline;
  color: orange;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* レイアウト */
.l-collection {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-collection {
    width: 100%;
  }
}

.l-collection__inner {
  padding: 0 2rem;
  margin: 0 auto;
}

.l-contents__inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  padding: 0 4rem;
  margin-top: 2rem;
}

/* コンポーネント */
.c-collection-title {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  padding: 1rem 0;
}

.c-animation__unity {
  margin-bottom: 1rem;
}

.c-animetion__type {
  font-size: 2rem;
}

.c-animation__contents {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  padding-top: 0.5rem;
  padding-left: 1.8rem;
}
.c-animation__contents .c-animation__content {
  font-size: 1.6rem;
}

.c-animation__content {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
.c-animation__content .price {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  opacity: 0.7;
  white-space: nowrap;
  transition: all 0.3s ease;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
.c-animation__content .price::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: currentColor;
}
.c-animation__content:hover .price {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.6rem;
}

.price--10k .price {
  color: #999;
}

.price--20k .price {
  color: orange;
}

.price--30k .price {
  color: red;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  background: blue;
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animation-collection {
  display: flex;
  width: 100%;
  max-width: 128rem;
  margin: 4rem auto;
}
@media screen and (max-width: 767px) {
  .animation-collection {
    flex-direction: column;
    row-gap: 4rem;
    margin: 3rem auto;
  }
}

.collection__title--css {
  background-color: orange;
}

.collection__title--js {
  background-color: green;
}

.content--js a {
  color: green;
}/*# sourceMappingURL=style.css.map */