@charset "UTF-8";
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lineFadeIn {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.text-fade,
.text-fade-sp {
  opacity: 0;
  transform: translateY(20px);
}
.text-fade.is-visible,
.text-fade-sp.is-visible {
  animation: textFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* TOPページパーツ */
h2::after {
  content: none;
}

.title-img {
  width: 340px;
  margin-bottom: 10px;
}

.more {
  width: 160px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #DD1057;
  padding: 12px 20px;
  border-radius: 50px;
}

.more:hover {
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

@media screen and (max-width: 768px) {
  .title-img {
    width: 260px;
  }
  .more {
    margin: 0 auto;
    width: 196px;
  }
}
/* main */
main {
  width: 100%;
}

/* fv */
.fv {
  position: relative;
  top: -82px;
  margin-bottom: -82px;
  z-index: -1;
  opacity: 0;
  animation: fadeIn 4s ease-out forwards;
}
.fv figure img {
  width: 100%;
}
@media screen and (max-width: 1120px) {
  .fv {
    top: 64px;
    margin-bottom: 64px;
  }
}

.fadein {
  opacity: 0;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* PCスマホ出し分け */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
/* 改行調整 */
@media screen and (min-width: 1081px) {
  .pc-only-1080 {
    display: block;
  }
  .sp-only-1080 {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .pc-only-1080 {
    display: none;
  }
  .sp-only-1080 {
    display: block;
  }
}
@media screen and (min-width: 441px) {
  .pc-only-440 {
    display: block;
  }
}
@media screen and (max-width: 440px) {
  .pc-only-440 {
    display: none;
  }
}
@media screen and (min-width: 441px) {
  .sp-only-440 {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .sp-only-440 {
    display: block;
  }
}
/* concept */
.concept-top {
  padding-top: 60px;
}

.concept__message {
  margin-bottom: 32px;
  line-height: 2.4;
}

.concept-image-pc {
  width: 75%;
  display: block;
  margin: 0 auto;
}

.award {
  text-align: center;
}

.award p {
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  position: relative;
}

.award p::before {
  content: "";
  width: calc(100% + 48px);
  height: 1px;
  background-color: #12B8D7;
  position: absolute;
  top: -12px;
  left: -24px;
}

.award p::after {
  content: "";
  width: calc(100% + 48px);
  height: 1px;
  background-color: #12B8D7;
  position: absolute;
  bottom: -12px;
  left: -24px;
}

@media screen and (max-width: 768px) {
  .concept-top {
    margin-top: -80px;
  }
  .concept-image-sp {
    width: 50%;
    display: block;
    margin-left: auto;
  }
}
@media screen and (max-width: 440px) {
  .concept-top {
    margin-top: -80px;
  }
}
/* product */
.product-top .section-title__box {
  text-align: center;
}

.product__list {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.product__item {
  width: calc((100% - 40px) / 2);
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #12B8D7;
  position: relative;
}

.product__item::after {
  content: ">";
  color: #12B8D7;
  position: absolute;
  right: 0;
  bottom: 50%;
}

.product__item a {
  display: flex;
  gap: 20px;
  transition: opacity 0.5s;
}

.product__item a:hover {
  opacity: 0.5;
}

.product__image {
  width: 40%;
}

.product__item-ruby {
  margin-top: 12px;
  color: #12B8D7;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .product__list {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .product__item {
    width: 100%;
    padding-right: 16px;
    padding-bottom: 16px;
  }
  .product__item::after {
    content: ">";
    color: #12B8D7;
    position: absolute;
    right: 0;
    bottom: 50%;
  }
  .product__item a {
    align-items: center;
    gap: 16px;
  }
}
/* shop */
.shop-top .two-column {
  padding: 60px 0;
}

.shop__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background-color: rgba(236, 236, 236, 0.35);
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto;
  transition: opacity 0.5s;
}

.shop__item:hover {
  opacity: 0.5;
  cursor: pointer;
}

.shop__item-name {
  font-weight: 700;
}

.shop__item-text {
  font-size: 1.4rem;
  text-align: center;
}

.shop__item-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 212px;
}

.shop__item-image {
  width: 80%;
  max-height: 240px;
}

.shop__item-text {
  height: 45px;
}

@media screen and (max-width: 768px) {
  .shop-top {
    padding-bottom: 60px;
  }
  .shop-top .two-column {
    padding: 40px 0;
    flex-direction: column;
  }
  .shop-top h2 {
    text-align: center;
  }
  .shop__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background-color: rgba(236, 236, 236, 0.35);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto;
    transition: opacity 0.5s;
  }
  .shop__item:hover {
    opacity: 0.5;
    cursor: pointer;
  }
  .shop__item-name {
    font-weight: 700;
  }
  .shop__item-text {
    font-size: 1.4rem;
    text-align: center;
  }
  .shop__item-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
  }
  .shop__item-image {
    width: 80%;
    max-height: 160px;
  }
  .shop__item-text {
    height: 45px;
  }
}/*# sourceMappingURL=top.css.map */