@charset "UTF-8";

#fs_Top .layout-2col {
  margin-bottom: 0;
}

/****************************************************************

	mv

****************************************************************/

.sec__mv {
  height: 560px;
  position: relative;
  overflow: hidden;
}

.mv-slide {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv-slide::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000033;
}

.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.mv-slide__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

picture.mv-slide__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 60px 0 40px;
}

.mv-text__top h1 {
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  margin-top: 0;
}

.mv-text__h1-sub {
  font-size: clamp(19px, 5vw, 24px);
  font-weight: bold;
}

.mv-text__h1 {
  font-size: 50px;
  font-size: clamp(30px, 8vw, 50px);
  display: block;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.mv-text__p {
  font-size: clamp(15px, 4vw, 24px);
  font-weight: bold;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.mv-text__bottom {
  position: relative;
  z-index: 0;
}

.mv-text__bottom::before {
  content: "";
  position: absolute;
  display: block;
  top: -50px;
  left: -160px;
  width: 670px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url(../img/mv_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mv-text__bottom .btn__main--black {
  margin-top: 30px;
}

.mv-text__bottom .btn__main--black span {
  width: 100%;
}

@media (max-width: 960px) {
  .sec__mv {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .sec__mv {
    height: auto;
    margin-bottom: 70px;
  }

  .mv-text__top {
    text-align: center;
  }

  .mv-text {
    padding: 40px 0 30px;
  }

  .mv-text__top h1 {
    margin-bottom: 15px;
  }

  .mv-text__bottom {
    margin-top: 100px;
  }

  .mv-text__bottom::before {
    left: -90px;
    width: 410px;
    top: -50px;
  }
}

/****************************************************************

	news

****************************************************************/

.sec__news {
  margin-top: 50px;
}

.news-list {
  list-style: none;
}

.news-list li a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}

.news-list li a span {
  font-weight: bold;
  margin-right: 10px;
}

.btn__news-all {
  display: block;
  margin: 20px 0 0 auto;
  text-align: right;
  width: fit-content;
  text-decoration: underline;
  padding-right: 20px;
  background: url(../img/icon_arrow_right.svg) no-repeat center right;
}

@media (max-width: 768px) {
  .sec__news {
    position: relative;
  }

  .sec__news::after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 55px;
    background-color: #000;
    transform: translateY(-100%);
    top: -35px;
    left: 50%;
  }
}

/****************************************************************

	Special Feature

****************************************************************/

.feature-main {
  margin-bottom: 40px;
}

.feature-main__item {
  display: flex;
  width: 100%;
  min-height: 220px;
  background-position: center;
  background-size: cover;
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  z-index: 0;
}

.feature-main__item:nth-of-type(n + 2) {
  margin-top: 10px;
}

.feature-main__item--for-beginner {
  background-image: url(../img/img_feature_for-beginner.jpg);
}

.feature-main__item--caring {
  background-image: url(../img/img_feature_caring.jpg);
}

.feature-main__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: -1;
  pointer-events: none;
}

.feature-main__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}

.feature-main__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  bottom: -14px;
}

.feature-main__p {
  font-size: 14px;
  color: #fff;
}

.feature-slide {
  max-width: min(calc(100vw - 440px), 800px);
}

.feature-slide__item {
  margin: 0 10px;
}

.feature-slide__item > a {
  aspect-ratio: 1;
  display: block;
  margin-bottom: 10px;
}

.feature-slide__item > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-slide .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 10px;
}

.feature-slide .slick-dots li button:before {
  font-size: 10px;
  color: #eee;
  opacity: 1;
}

.feature-slide .slick-dots li.slick-active button:before {
  color: #2c4f2f;
  opacity: 1;
}

@media (max-width: 960px) {
  .feature-slide {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-main__title {
    font-size: 20px;
  }

  .feature-slide__item {
    margin: 0 0 0 20px;
  }

  .feature-main__item::before {
    height: 100%;
  }

  .sp-slide__wrapper:has(.feature-slide) .slide-arrow__prev,
  .sp-slide__wrapper:has(.feature-slide) .slide-arrow__next {
    top: 27.5vw;
  }
}

/****************************************************************

	Ranking

****************************************************************/

.ranking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px 20px;
  list-style: none;
  counter-reset: ranking;
  padding-top: 15px;
}

.ranking__item {
  counter-increment: ranking;
  position: relative;
  padding-top: 10px;
}

.ranking__item::before {
  content: counter(ranking) "位";
  position: absolute;
  transform: translate(-50%, -100%);
  left: 50%;
  top: 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  white-space: nowrap;
}

.ranking__item:first-of-type:before {
  background-image: url(../img/icon_ranking_1.svg);
}

.ranking__item:nth-of-type(2):before {
  background-image: url(../img/icon_ranking_2.svg);
}

.ranking__item:nth-of-type(3):before {
  background-image: url(../img/icon_ranking_3.svg);
}

.ranking__item:nth-of-type(n + 4):before {
  background-image: url(../img/icon_ranking.svg);
}

.ranking__img {
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 10px;
}

.ranking__price {
  font-weight: bold;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .ranking {
    display: flex;
    gap: unset;
  }

  .sp-slide__wrapper:has(.ranking) .slide-arrow__prev,
  .sp-slide__wrapper:has(.ranking) .slide-arrow__next {
    top: calc(27.5vw - -25px);
  }
}

/****************************************************************

	Category

****************************************************************/

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}

.category-list__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-list__item img {
  width: 100%;
}

.category-list__item h3 {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 5px;
  font-weight: bold;
}

.category-list__item h3 span {
  font-size: 14px;
  display: block;
}

.category-list__item .btn__main {
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-list__item img {
    height: 180px;
    object-fit: cover;
  }
}

/****************************************************************

	Learn

****************************************************************/

.sec__learn {
  background-color: #ebf3f3;
  padding: 60px 0;
}

.learn-sub-title__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.learn-sub-title__overview {
  display: flex;
  gap: 15px 50px;
  align-items: center;
  margin: 20px 0;
}

.learn-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.learn-main iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.learn-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  margin-top: 40px;
}

.learn-sub__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.learn-sub__item h4 {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .learn-sub-title__title,
  .learn-sub__item h4 {
    text-align: left;
    position: relative;
    width: fit-content;
    z-index: 1;
    font-size: 18px;
  }

  .learn-sub-title__title::before,
  .learn-sub__item h4::before {
    position: absolute;
    content: "";
    display: block;
    width: calc(100% + 20px);
    height: 100%;
    background-color: #ebf3f3;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .learn-sub-title__title::after,
  .learn-sub__item h4::after {
    position: absolute;
    content: "";
    display: block;
    width: calc(100vw - 20px);
    height: 1px;
    background-color: #333;
    top: 50%;
    left: 0;
    z-index: -2;
  }

  .learn-sub-title__overview {
    align-items: flex-start;
    flex-direction: column;
    margin: 15px 0;
  }

  .learn-sub-title__overview img {
    width: 100px;
  }

  .learn-main {
    grid-template-columns: repeat(1, 1fr);
  }

  .learn-sub {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .learn-sub__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}

/****************************************************************

	Enjoy

****************************************************************/

.enjoy__banner {
  display: block;
  max-width: 656px;
  width: 100%;
  margin: auto;
}

/****************************************************************

	New Arrival

****************************************************************/

.new-arrival {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.new-arrival__item {
  max-width: 210px;
  list-style: none;
}

.new-arrival__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 10px;
}

.new-arrival__price {
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .new-arrival {
    justify-content: unset;
    gap: unset;
  }

  .new-arrival__item {
    max-width: 300px;
  }

  .sec__new .slide-arrow__prev,
  .sec__new .slide-arrow__next {
    top: 27.5vw;
  }
}

/****************************************************************

	sec__banner

****************************************************************/

.sec__banner--area {
  display: flex;
  justify-content: center;
  gap: 10px 20px;
}

.sec__banner--area a {
  display: block;
  max-width: 340px;
}

@media (max-width: 768px) {
  .sec__banner--area {
    flex-direction: column;
  }

  .sec__banner--area a {
    max-width: 100%;
  }
}

/****************************************************************

	sec__guide

****************************************************************/

.sec__guide {
  background-color: #faf8f2;
  padding: 60px 0;
}

#fs_Top .sec__guide {
  margin: 0 auto 60px;
}

.guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}

.guide__item {
  background-color: #fff;
  padding: 20px;
}

.guide__icon {
  margin: auto;
}

.guide__title {
  font-weight: bold;
  text-align: center;
  margin: 10px 0 15px;
}

.guide__contents {
  font-size: 15px;
}

.guide__contents a {
  text-decoration: underline;
}

.guide__contents ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.guide__contents ul li {
  list-style: disc;
}

.guide__pay-img {
  margin: 10px 0;
}

.guide__table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-spacing: 0;
  margin-top: 10px;
}

.guide__table th,
.guide__table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.guide__table th {
  white-space: nowrap;
  background-color: #555555;
  color: #fff;
  vertical-align: top;
  font-weight: normal;
}

.sec__guide .btn__wrap {
  margin: 30px auto;
}

.guide__under-banner {
  max-width: 800px;
  margin: 30px auto 0;
}

.item--mark_wrap {
  padding-top: 10px;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .guide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #fs_Top .sec__guide {
    margin: 0 auto 50px;
  }

  .guide {
    display: flex;
    gap: unset;
  }

  .guide__item {
    width: calc(100vw - 40px);
  }
}

/****************************************************************

	Column

****************************************************************/

.top-column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}

.top-column-list__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-column-list__item img {
  width: 130px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
}

.top-column-list__day {
  display: block;
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .top-column-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .top-column-list__item img {
    width: 80px;
  }
}
