@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(14px, 2rem);
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.category .common__ttl span,
.ranking .common__ttl span {
  letter-spacing: 0;
}

.common__ttl .small {
  font-size: max(12px, 1.3rem);
  letter-spacing: 0;
  margin: 0;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section__wrapper {
  background: var(--bg-2);
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  font-size: max(24px, 4.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  position: absolute;
  left: 17rem;
  bottom: 10rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(18px, 3.6rem);
    left: 5%;
    bottom: 10%;
  }
}

.hero__ttl span {
  display: block;
  margin-left: 14rem;
}

@media (max-width: 767px) {
  .hero__ttl span {
    margin-left: 5rem;
  }
}

/*============================
	news
============================*/
.news {
  padding: 8rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  padding: 12rem 0 15.5rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 36.6rem;
  height: 32.6rem;
  top: 0;
  left: 0;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 117.2rem;
  height: 58.4rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .concept::before {
    width: 28rem;
    height: 24.9rem;
  }

  .concept::after {
    width: 80rem;
    height: 39.8rem;
  }
}

.concept__txt-wrapper {
  width: 46.5rem;
  margin: 6.5rem auto;
}

.concept__txt-wrapper:last-of-type {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 80%;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin-bottom: 1rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

/*============================
	shop
============================*/
.shop {
  background: var(--bg-1);
  padding: 7.5rem 0 7rem;
}

.shop__inner {
  width: max(500px, 80rem);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .shop__inner {
    width: 80%;
  }
}

.shop__btn {
  width: 100%;
  height: max(55px, 8rem);
  margin: 4rem auto 7.5rem;
}

@media (max-width: 767px) {
  .shop__btn {
    margin: 4rem auto;
  }
}

.shop__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(14px, 2rem);
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.shop__btn a::before {
  content: "";
  background: url("../img/shop_btn-icon.png") no-repeat center / contain;
  width: max(25px, 3.5rem);
  height: max(25px, 3.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3.5rem;
  pointer-events: none;
}

.shop__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 9rem;
}

@media (max-width: 767px) {
  .shop__list {
    grid-template-columns: 1fr;
  }
}

.shop__list a {
  background: url("../img/shop_link-bg-1.png") no-repeat center / cover;
  width: 100%;
  height: max(55px, 7.5rem);
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.shop__list li:nth-of-type(2) a {
  background: url("../img/shop_link-bg-2.png") no-repeat center / cover;
}

.shop__list a::before {
  content: "";
  width: calc(100% - max(6px, 0.8rem));
  height: calc(100% - max(6px, 0.8rem));
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.shop__list a::after {
  content: "";
  display: block;
  background: url("../img/shop_btn-arw.png") no-repeat center / contain;
  width: max(56.7px, 7.3rem);
  height: max(7px, 0.9rem);
  transform: translateY(-30%);
}

/*============================
	category
============================*/
.category {
  background-color: #fff9e6;
  padding: 13rem 0 8.5rem;
}

.category__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 10rem;
  margin: 5.5rem auto 0;
}

@media (max-width: 767px) {
  .category__list {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
  }
}

.category__img {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
}

.category__list h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  text-align: center;
}

.category__list h3 span {
  display: block;
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 1rem 0 1.5rem;
}

.category__btn {
  width: max-content;
  margin-left: auto;
}

.category__btn a {
  background: url("../img/category_btn-arw.png") no-repeat center bottom / contain;
  padding: 0 max(28px, 4rem) max(5px, 0.9rem) 0;
  position: relative;
}

.category__btn a::before {
  content: "";
  background-color: var(--brown);
  width: max(14px, 2.4rem);
  height: max(14px, 2.4rem);
  border-radius: 50%;
  filter: blur(1.2rem);
  position: absolute;
  transform: translate(40%, 40%);
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

/*============================
	ranking
============================*/
.ranking {
  padding: 11.5rem 0 24rem;
}

.ranking__inner {
  width: 110rem;
  display: flex;
  gap: 8rem 14rem;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .ranking__inner {
    width: 90%;
    flex-direction: column;
  }
}

.ranking__contents {
  width: 37.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ranking__contents {
    width: 100%;
  }
}

.ranking__txt-wrapper {
  width: 100%;
}

.ranking__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 600;
  text-align: center;
  margin: 2rem 0 1rem;
}

.ranking__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem 8rem;
}

@media (max-width: 767px) {
  .ranking__list {
    gap: 6rem 4rem;
  }
}

.ranking__list h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  text-align: center;
  margin-top: 1.2rem;
}

.ranking__img {
  display: block;
  width: 100%;
  position: relative;
}

.ranking__img span {
  display: block;
  width: max(60px, 9.2rem);
  position: absolute;
  top: calc(max(9px, 1.3rem) * -1);
  left: calc(max(9px, 1.3rem) * -1);
}

.ranking__list .ranking__img span {
  width: max(40px, 6.5rem);
  top: calc(max(6px, 0.9rem) * -1);
  left: calc(max(6px, 0.9rem) * -1);
}

.ranking__img::before {
  content: "";
  background: url("../img/ranking_deco.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	othres
============================*/
.othres {
  padding-bottom: 14rem;
  position: relative;
}

.othres::before {
  content: "";
  background: url("../img/othres_deco.png") no-repeat center / contain;
  width: 64.7rem;
  height: 90.9rem;
  position: absolute;
  top: 17rem;
  right: -44.5rem;
  pointer-events: none;
}

.othres__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 13rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .othres__list {
    width: 90%;
  }
}

.othres__list li {
  display: flex;
  gap: 4rem 5.5rem;
}

.othres__list li:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .othres__list li,
  .othres__list li:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.othres__txt-wrapper {
  padding: 8rem 8rem 0;
}

@media (max-width: 767px) {
  .othres__txt-wrapper {
    padding: 6rem 6rem 0;
  }
}

.othres__txt-wrapper h3 {
  font-size: max(21px, 3.6rem);
  font-weight: 500;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.othres__txt-wrapper h3::before {
  content: "";
  background: url("../img/ttl_obento.png") no-repeat center / contain;
  width: 73.6rem;
  height: 12.4rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.othres__list li:nth-of-type(2) .othres__txt-wrapper h3::before {
  background: url("../img/ttl_gift.png") no-repeat center / contain;
  width: 41.9rem;
}

.othres__txt-wrapper p {
  margin: 11rem 0 6rem;
}

@media (max-width: 767px) {
  .othres__txt-wrapper p {
    margin: 8rem 0 6rem;
  }
}

.othres__btn {
  width: max-content;
  font-weight: 500;
  margin: 0 auto;
}

.othres__btn a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.othres__btn a::before,
.othres__btn a::after {
  content: "";
  display: block;
}

.othres__btn a::before {
  background-color: var(--brown);
  width: max(24px, 4rem);
  height: max(24px, 4rem);
  border-radius: 50%;
  filter: blur(1.6rem);
  margin-right: -0.5rem;
  position: relative;
  z-index: -1;
}

.othres__btn a::after {
  background: url("../img/othres_btn-arw.png") no-repeat center / contain;
  width: max(56.7px, 7.3rem);
  height: max(7px, 0.9rem);
  margin-left: 4.5rem;
  transform: translateY(-30%);
}

.othres__img-wrapper {
  width: 48rem;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1.8rem;
  flex-shrink: 0;
}

.othres__list li:nth-of-type(even) .othres__img-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .othres__img-wrapper {
    width: 100%;
  }
}

.othres__img-wrapper p {
  font-size: max(10px, 1.2rem);
  font-weight: 500;
  color: #685a58;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.othres__img {
  width: 100%;
}
