@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.833vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  line-height: 1;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}

.pc_n {
  display: none;
}
@media (max-width: 767px) {
  .pc_n {
    display: block;
  }
}

.sp_n {
  display: block;
}
@media (max-width: 767px) {
  .sp_n {
    display: none;
  }
}

img {
  width: 100%;
  object-fit: cover;
}

.title {
  color: #40220f;
  font-size: 4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
.btn a {
  width: 100%;
  height: 4.8rem;
  color: #40220f;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 199.99%; /* 3.3998rem */
  letter-spacing: 0.17rem;
  background: #dfb27a;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .btn a {
    width: 100%;
    font-size: 1.6rem;
  }
}

.wrap {
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.move-img {
  mask-size: 100% 100%;
}
.move-img img {
  transform: scale(1.5);
  transition: transform 1.3s cubic-bezier(0, 0, 0.2, 1);
}

.header {
  justify-content: center;
  align-items: center;
  margin-top: -8rem;
}

.header__list {
  display: flex;
  justify-content: center;
  gap: 8.9rem;
  height: 7.3rem;
  align-items: center;
}

.header__item a {
  color: #E83731;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.22rem;
}

.header-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #E8382F;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
}
.header-sp .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.header-sp .header__logo img {
  height: 4rem;
  width: auto;
}
.header-sp .header__nav {
  position: relative;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}
.hamburger .hamburger__line {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  background: #ffffff;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(0.7rem, -0.7rem);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #E8382F;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 1001;
}
.nav-menu.active {
  opacity: 1;
  visibility: visible;
}
.nav-menu .nav-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav-menu .nav-menu__item {
  margin: 5rem 0;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.4s ease;
}
.nav-menu.active .nav-menu__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-menu.active .nav-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-menu.active .nav-menu__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-menu.active .nav-menu__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-menu.active .nav-menu__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-menu.active .nav-menu__item:nth-child(5) {
  transition-delay: 0.5s;
}
.nav-menu .nav-menu__link {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.24rem;
  transition: color 0.3s ease;
}

.loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ce1a2a;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.loading .img {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 3.5s cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .loading .img {
    top: 6rem;
  }
}

body.--loading .loading .img {
  opacity: 1;
}

body.--loaded .loading {
  opacity: 0;
  visibility: hidden;
}

.fv {
  position: relative;
}
.fv .abs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.fv .img {
  opacity: 0;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.fv .img-back img {
  width: 100vw;
  height: 62.25vw;
}
.fv .img-product {
  bottom: 11.528150134%;
  width: 60.5833333333%;
  transition-delay: 1.5s;
}
.fv .img-txt {
  bottom: 21.8498659517%;
  width: 45.5833333333%;
  transition-delay: 3.5s;
}
.fv + .header.sp_n {
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 6rem;
  }
  .fv .img-back img {
    width: 37.5rem;
    height: 55.2rem;
  }
  .fv .img-product {
    bottom: 5.615942029%;
    width: 90.9066666667%;
  }
  .fv .img-txt {
    bottom: 11.0507246377%;
    width: 74.08%;
  }
}

body.--loaded .fv .img {
  opacity: 1;
}

.section01 {
  padding-top: 7.3rem;
  padding-bottom: 7.4rem;
  background: url(../img/bg01.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .section01 {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.section01__logo {
  margin-left: auto;
  margin-right: auto;
  width: 23.8rem;
}
@media (max-width: 767px) {
  .section01__logo {
    width: 20rem;
  }
}

.section01__title {
  color: #40220f;
  font-size: 4.5rem;
  font-weight: 600;
  margin-top: 4rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section01__title {
    font-size: 2.4rem;
    margin-top: 4.4rem;
  }
}

.section01__text {
  color: #40220f;
  text-align: center;
  font-size: 3.4rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 3.7rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section01__text {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 2.4rem;
  }
}

.story {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fef7ec;
  text-align: center;
}
@media (max-width: 767px) {
  .story {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.story__text {
  color: #40220f;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .story__text {
    color: #40220f;
    font-size: 1.8rem;
    line-height: 180%; /* 3.24rem */
  }
}

.story__about {
  color: #40220f;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .story__about {
    color: #40220f;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 160%; /* 2.24rem */
  }
}

.movie {
  background: url(../img/bg02.jpg) no-repeat center center/cover;
  text-align: center;
  padding-top: 8.7rem;
  padding-bottom: 8.7rem;
}
@media (max-width: 767px) {
  .movie {
    padding: 5rem 0rem;
  }
}

.movie__image {
  margin-top: 0.9rem;
}
.movie__image iframe {
  width: 100%;
  height: 44.4rem;
}
@media (max-width: 767px) {
  .movie__image iframe {
    height: 18.4rem;
  }
}

.movie__inner {
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .movie__inner {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.sand {
  padding-top: 8rem;
  padding-bottom: 9.3rem;
  background-color: #fef7ec;
}
@media (max-width: 767px) {
  .sand {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.sand__inner {
  max-width: 83.8rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .sand__inner {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.sand__title {
  color: #40220f;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.14rem;
  margin-top: 2.9rem;
}
@media (max-width: 767px) {
  .sand__title {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 1.5rem;
  }
}

.sand__text {
  color: #40220f;
  font-family: YuMincho;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.9rem; /* 145% */
  letter-spacing: 0.14rem;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .sand__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.sand__slider {
  margin-top: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sand__slider {
    flex-direction: column;
    margin-top: 5rem;
    gap: 1rem;
    align-items: flex-start;
  }
}

.sand__slider-inner {
  width: 48.6rem;
}
@media (max-width: 767px) {
  .sand__slider-inner {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .sand__info {
    width: 100%;
  }
}

.sand__price-item {
  color: #40220f;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.4rem; /* 170% */
}
@media (max-width: 767px) {
  .sand__price-item {
    font-size: 1.6rem;
  }
}
.sand__price-item span {
  font-size: 3.1rem;
  display: inline-block;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .sand__price-item span {
    font-size: 2.4rem;
  }
}
.sand__price-item span:nth-of-type(1) {
  margin-right: 0.5rem;
}
.sand__price-item span:nth-of-type(2) {
  width: 9.8rem;
  margin-left: 0.6rem;
  margin-right: 0.6rem;
  text-align: right;
}
@media (max-width: 767px) {
  .sand__price-item span:nth-of-type(2) {
    width: 6.8rem;
  }
}

.sand__btn {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .sand__btn {
    margin-top: 2.5rem;
  }
}

.sand__slider-inner {
  background-color: #fff;
  padding: 1.8rem 2.1rem;
}
@media (max-width: 767px) {
  .sand__slider-inner {
    padding: 1.3rem 1.1rem;
  }
}

.swiper-button-disabled {
  display: none !important;
}

.swiper-button-next01,
.swiper-button-prev01 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  z-index: 3;
  height: 2.2rem;
}
.swiper-button-next01 img,
.swiper-button-prev01 img {
  width: 1.1rem;
  height: 2.2rem;
}

.swiper-button-next01 {
  right: 1.7rem;
}

.swiper-button-prev01 {
  left: 1.7rem;
  transform: rotate(180deg);
}

.swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
}

.swiper-pagination {
  bottom: 1.7rem !important;
}
@media (max-width: 767px) {
  .swiper-pagination {
    bottom: 0.7rem !important;
  }
}

.swiper-pagination-bullet-active {
  background: #40220f;
}

.sand__price-text {
  position: absolute;
  bottom: 2.9rem;
  right: 2.9rem;
  z-index: 3;
  color: #40220f;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 149.993%; /* 2.6999rem */
}

.secret {
  position: relative;
}
@media (max-width: 767px) {
  .secret {
    padding-top: 5rem;
    background-color: #d3e7ff;
  }
}

.secret__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7.25vw;
  z-index: 2;
  color: #e8382f;
  font-size: 3.333vw;
  font-weight: 600;
  line-height: 2.083vw; /* 62.5% */
}
@media (max-width: 767px) {
  .secret__title {
    position: static;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 100%; /* 2.8rem */
    text-align: center;
    transform: none;
  }
}

.secret__img {
  width: 16.917vw;
  top: 12.167vw;
  left: 12.167vw;
  z-index: 2;
  position: absolute;
}
@media (max-width: 767px) {
  .secret__img {
    position: static;
    width: 13.803rem;
    margin-top: 3.1rem;
    margin-left: 8.1rem;
    z-index: 3;
  }
}

.secret__name {
  color: #e8382f;
  font-size: 1.167vw;
  font-weight: 600;
  letter-spacing: -0.117vw;
  position: absolute;
  top: 16vw;
  left: 14.167vw;
}
@media (max-width: 767px) {
  .secret__name {
    position: relative;
    color: #e8382f;
    font-size: 1rem;
    letter-spacing: -0.0952rem;
    margin-left: 9.73rem;
    margin-top: 0.5rem;
    top: auto;
    left: auto;
  }
}

.secret__content {
  position: absolute;
  top: 19.083vw;
  left: 12.167vw;
}
@media (max-width: 767px) {
  .secret__content {
    position: relative;
    margin-top: 0.82rem;
    margin-left: 8.1rem;
    z-index: 3;
    top: auto;
    left: auto;
  }
}

.secret__subtitle {
  color: #40220f;
  font-size: 1.667vw;
  font-weight: 600;
  line-height: 2.083vw; /* 125% */
}
@media (max-width: 767px) {
  .secret__subtitle {
    color: #40220f;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%; /* 2.1rem */
  }
}

.secret__text {
  color: #40220f;
  font-size: 1.083vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5vw; /* 138.462% */
  margin-top: 0.5vw;
}
@media (max-width: 767px) {
  .secret__text {
    font-size: 1.2rem;
    line-height: 150%; /* 1.8rem */
  }
}

.secret__img02 {
  position: absolute;
  top: 12.167vw;
  right: 23.833vw;
  z-index: 2;
  width: 10.583vw;
}
@media (max-width: 767px) {
  .secret__img02 {
    position: relative;
    width: 17.2rem;
    margin-top: -3rem;
    margin-left: 17.2rem;
    z-index: 2;
    top: auto;
    right: auto;
  }
}

.secret__text02 {
  color: #40220f;
  font-size: 1.667vw;
  font-weight: 600;
  line-height: 2.083vw; /* 125% */
}
@media (max-width: 767px) {
  .secret__text02 {
    color: #40220f;
    font-size: 1.3339rem;
    line-height: normal;
    letter-spacing: -0.1334rem;
    margin-top: 1.17rem;
  }
}

.secret__content02 {
  position: absolute;
  top: 19.083vw;
  right: 13.833vw;
}
@media (max-width: 767px) {
  .secret__content02 {
    position: static;
    margin-left: 19.1rem;
    padding-bottom: 3rem;
  }
}

.secret__name02 {
  color: #e8382f;
  font-size: 1.167vw;
  font-weight: 600;
  letter-spacing: -0.14rem;
  top: 15.833vw;
  position: absolute;
  right: 28.5vw;
  z-index: 2;
}
@media (max-width: 767px) {
  .secret__name02 {
    color: #e8382f;
    font-size: 1.3339rem;
    margin-top: 2vw;
    letter-spacing: -0.1334rem;
    position: relative;
    margin-left: 19.1rem;
    right: auto;
    top: auto;
    z-index: 2;
    margin-top: 1rem;
  }
}

.secret__detail {
  background-color: #b7cbe3;
  margin-top: -28rem;
  z-index: 2;
  position: relative;
  padding-bottom: 5.4rem;
}
@media (max-width: 767px) {
  .secret__detail {
    margin-top: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.secret__detail-inner {
  max-width: 114.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.secret__detail-item {
  display: flex;
  gap: 1.7rem;
}
@media (max-width: 767px) {
  .secret__detail-item {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.secret__detail-img {
  width: 57rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .secret__detail-img {
    width: 100%;
  }
}

.secret__detail-content {
  margin-top: 0.9rem;
}

.secret__detail-title {
  color: #e8382f;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .secret__detail-title {
    font-size: 2.4rem;
  }
}

.secret__detail-text {
  color: #40220f;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .secret__detail-text {
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 1.8;
  }
}

.secret__detail-item02 {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .secret__detail-item02 {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 5rem;
  }
}

@media (max-width: 767px) {
  .secret__detail-content02 {
    order: 1;
  }
}

.secret__detail-title02 {
  color: #e8382f;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .secret__detail-title02 {
    font-size: 2.4rem;
  }
}

.secret__detail-text02 {
  color: #40220f;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .secret__detail-text02 {
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 180%; /* 2.88rem */
  }
}

.secret__detail-img02 {
  width: 66.4rem;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .secret__detail-img02 {
    width: 100%;
  }
}
.secret__detail-img02::after {
  content: "";
  position: absolute;
  background: url(../img/logo02.png) no-repeat center center/cover;
  width: 12.3rem;
  height: 11.6rem;
  top: -3.5rem;
  right: 1.7rem;
}
@media (max-width: 767px) {
  .secret__detail-img02::after {
    width: 8.398rem;
    height: 7.9rem;
    top: -3.5rem;
    right: -1.3rem;
  }
}

.secret__detail-item03 {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .secret__detail-item03 {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 5rem;
  }
}

.secret__detail-img03 {
  width: 57.1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .secret__detail-img03 {
    width: 100%;
  }
}

.secret__detail-content03 {
  margin-top: 6.8rem;
}
@media (max-width: 767px) {
  .secret__detail-content03 {
    margin-top: 0;
  }
}

.secret__detail-text03 {
  color: #40220f;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .secret__detail-text03 {
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 1.8;
  }
}

.secret .secret__detail-item .move-img {
  mask-image: url(../img/image03@2x.png);
}
.secret .secret__detail-item .move-img img {
  object-position: 50px;
}
.secret .secret__detail-item02 .move-img {
  mask-image: url(../img/image04@2x.png);
}
.secret .secret__detail-item02 .move-img img {
  object-position: 100px;
}
@media (max-width: 767px) {
  .secret .secret__detail-item02 .move-img img {
    object-position: 50px;
  }
}
.secret .secret__detail-item03 .move-img {
  mask-image: url(../img/image05@2x.png);
}
.pie {
  background-color: #bfe1df;
}
.pie .secret__detail-item02 {
  align-items: flex-start;
}
.pie .secret__detail-img02::after {
  background: url(../img/logo03.png) no-repeat center center/cover;
}

.pie .secret__detail-item02 .move-img {
  mask-image: url(../img/image07@2x.png);
}
.pie .secret__detail-item03 .move-img {
  mask-image: url(../img/image08.png);
}
.pie .secret__detail-item03 .move-img img {
  object-position: 50px;
}

.secret__detail02 {
  margin-top: 0;
  padding-top: 12rem;
  background-color: #bfe1df;
}
@media (max-width: 767px) {
  .secret__detail02 {
    padding-top: 10rem;
    padding-bottom: 0;
  }
}

.secret02__detail-title {
  color: #e8382f;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem; /* 62.5% */
  text-align: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .secret02__detail-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .secret__img01_sp {
    margin-top: -9rem;
  }
}

.store {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff;
}

.store__inner {
  max-width: 67.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .store__inner {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.store__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4.1rem;
}
@media (max-width: 767px) {
  .store__content {
    flex-direction: column;
    margin-top: 3rem;
    align-items: flex-start;
    gap: 1.56rem;
  }
}

.store__img {
  width: 40.9rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .store__img {
    width: 100%;
  }
}

.store__title {
  color: #3c302b;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 149.993%; /* 4.7998rem */
  letter-spacing: 0.32rem;
}
@media (max-width: 767px) {
  .store__title {
    font-size: 2.4rem;
  }
}

.store__name {
  color: #3c302b;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 149.993%; /* 2.8499rem */
  letter-spacing: 0.19rem;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .store__name {
    font-size: 1.5rem;
    margin-top: 0.2rem;
  }
}

.store__btn {
  margin-top: 7.5rem;
}
@media (max-width: 767px) {
  .store__btn {
    width: 100%;
    margin-top: 2.5rem;
  }
  .store__btn a {
    width: 100%;
  }
}

.store__head {
  text-align: center;
  color: #e83731;
}

@media (max-width: 767px) {
  .store__info {
    width: 100%;
  }
}

.news {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4f3;
}
@media (max-width: 767px) {
  .news {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .news__inner {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.news__head {
  color: #e83731;
  text-align: center;
}

.news__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .news__content {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.news__item {
  padding-bottom: 2.6rem;
  border-bottom: 1px solid #ded9d1;
  gap: 5.9rem;
}
@media (max-width: 767px) {
  .news__item {
    padding-bottom: 2rem;
  }
}
.news__item:nth-of-type(n + 2) {
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .news__item:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
}
.news__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.news__date {
  color: #3c302b;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 149.993%; /* 2.2499rem */
  letter-spacing: 0.15rem;
}
@media (max-width: 767px) {
  .news__date {
    width: auto;
    font-size: 1.4rem;
  }
}

.news__text {
  color: #3c302b;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 149.993%; /* 2.2499rem */
  letter-spacing: 0.15rem;
  width: 100%;
}
@media (max-width: 767px) {
  .news__text {
    font-size: 1.4rem;
  }
}

.news__list {
  margin-top: 2rem;
  width: 73.2rem;
  background-color: #fff;
  padding: 5rem 5.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .news__list {
    width: 100%;
    padding: 2rem;
  }
}

.footer {
  background-color: #d82734;
  padding-top: 4.2rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 2.3rem;
  }
}

@media (max-width: 767px) {
  .footer__inner {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 8.9rem;
}
@media (max-width: 767px) {
  .footer__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__item a {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.22rem;
}
@media (max-width: 767px) {
  .footer__item a {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14rem;
  text-align: center;
  padding-top: 4.4rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding-top: 5.1rem;
  }
}/*# sourceMappingURL=style.css.map */