@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Outfit:wght@100..900&display=swap");
@font-face {
  font-family: "fa brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("font/fa-brands-400.woff2");
}
@font-face {
  font-family: "fa";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("font/fa-regular-400.woff2");
}
@font-face {
  font-family: "fa";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("font/fa-solid-900.woff2");
}
/* 
    default
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-size: min(10px, 1.0417vw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  height: 100%;
  color: #333;
}

@media screen and (max-width: 640px) {
  html {
    font-size: 1.6vw;
  }
}
body {
  position: relative;
  height: 100%;
  font-size: 1.6rem;
  background-color: #f2f2f2;
  z-index: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* 
    Common
 */
h2 {
  display: block;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12em;
  padding: 0.6em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 1em auto 2.4em;
  background-color: #fff;
  color: #111010;
  border-radius: 1.2em;
  text-align: center;
}

.hidden {
  display: none;
}

.icon::before {
  font-family: "fa", "fa brands";
  display: inline-block;
  width: 1em;
}

.i-x::before {
  content: "\e61b";
}

.i-instagram::before {
  content: "\f16d";
}

.i-line::before {
  content: "\f3c0";
}

.long {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}

.long .section:first-child {
  flex-grow: 1;
}

.section {
  position: relative;
  padding: 8rem 0;
  overflow-x: hidden;
}

.section:first-child {
  padding-top: calc(64px + 8rem);
}

.section:has(+ .separator) {
  padding-bottom: 16%;
}

.content {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0 16px;
  z-index: 10;
}

@media screen and (max-width: 960px) {
  .content {
    padding: 0 4%;
  }
}
.content-wide {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  z-index: 10;
}

@media screen and (max-width: 960px) {
  .content-wide {
    padding: 0;
  }
}
.content-full {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 10;
}

.caption {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 2.4rem auto;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}

.separator {
  position: relative;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 960 72"><path fill="%239e9369" d="M960,72H0V21c0,0,69.3-45.6,183.7,0C298.2,66.6,369,41.3,480,21c111-20.3,200.5,2.5,311,22.7 C901.5,63.9,960,21,960,21V72z" /></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8%;
  margin-top: -8%;
  transform-origin: bottom;
  overflow: hidden;
  transition-duration: 0.6s;
  transform: translateY(5%) scaleY(0);
  z-index: 50;
}

.separator.observe.in {
  animation-name: transform-separator;
  animation-fill-mode: both;
  animation-duration: 1.2s;
}

@keyframes transform-separator {
  0% {
    transform: translateY(5%) scaleY(0);
  }
  16% {
    transform: translateY(5%) scaleY(132%);
  }
  28% {
    transform: translateY(5%) scaleY(87%);
  }
  44% {
    transform: translateY(5%) scaleY(105%);
  }
  59% {
    transform: translateY(5%) scaleY(98%);
  }
  73% {
    transform: translateY(5%) scaleY(101%);
  }
  88% {
    transform: translateY(5%) scaleY(100%);
  }
  100% {
    transform: translateY(5%) scaleY(100%);
  }
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: 100%;
  bottom: auto;
}

.swiper-pagination-bullet-active {
  background-color: #333;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-horizontal {
  touch-action: auto;
}

/* 
    header
 */
header {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 16, 16, 0.8);
  z-index: 9999;
  padding: 0 8px;
  height: 64px;
}

header .header-icon {
  margin-right: 8px;
  width: 64px;
  height: 64px;
}

header .header-icon a {
  display: block;
  height: 100%;
  width: 100%;
}

header .header-icon img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

header h1 {
  position: relative;
  background-image: url(img/frozentabale_logo.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  height: 16px;
  flex-grow: 1;
}

header h1 span {
  display: none;
}

#toggle {
  display: none;
}

.header-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: calc(100vh - 64px);
  pointer-events: none;
  overflow: hidden;
}

.header-nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-color: rgba(17, 16, 16, 0.4);
  opacity: 0;
  transition: 0.4s;
}

#toggle:checked + header .header-nav-toggle {
  opacity: 1;
  pointer-events: auto;
}

.header-nav-button {
  position: relative;
  margin: auto;
  width: 48px;
  height: 48px;
  transition: 0.4s;
}

.header-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.header-nav-icon span {
  position: relative;
  display: block;
  margin: auto;
  width: 20px;
  height: 4px;
  background-color: white;
  transition: 0.4s;
}

.header-nav-icon span::before, .header-nav-icon span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  transition: inherit;
}

.header-nav-icon span::before {
  margin-top: -8px;
}

.header-nav-icon span::after {
  margin-top: 8px;
}

.header-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  max-height: 100%;
  overflow: auto;
  transition: 0.6s;
  transform: translateY(-100%);
}

.header-menu ul {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background-color: rgba(158, 147, 105, 0.9333333333);
}

@media screen and (max-width: 640px) {
  .header-menu ul {
    flex-direction: column;
    font-size: 1.2em;
  }
}
.header-menu ul:last-child {
  background-color: rgba(17, 16, 16, 0.9333333333);
}

.header-menu li {
  position: relative;
}

@media screen and (max-width: 640px) {
  .header-menu li {
    width: 100%;
    text-align: center;
  }
}
.header-menu li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  color: #fff;
}

.header-menu li a:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #fff;
}

#toggle:checked + header .header-nav-icon span {
  transform: rotate(45deg);
}

#toggle:checked + header .header-nav-icon span::before {
  margin-top: 0;
  transform: rotate(90deg);
}

#toggle:checked + header .header-nav-icon span::after {
  margin-top: 0;
  opacity: 0;
}

#toggle:checked + header .header-menu {
  transform: translateY(0);
}

/* 
    bg
 */
.bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.snow {
  position: absolute;
  background-image: url(img/snow.webp);
  background-size: contain;
  width: 4.8rem;
  height: 4.8rem;
  animation: 64s linear 0s infinite normal both running snowdrop, 24s linear 0s infinite normal both running rotate360;
}

@keyframes snowdrop {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 
    main
 */
#main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #111010;
  max-height: 100%;
  padding-top: 64px;
  padding-bottom: max(8%, 64px);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
}

#main .content {
  display: flex;
  align-items: center;
}

.next-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 64px;
}

.next-section a {
  display: block;
  margin: auto;
  width: 48px;
  padding-top: 48px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="24px" viewBox="0 -960 960 960" width="24px"><path fill="%23fff" d="M480-200 240-440l56-56 184 183 184-183 56 56-240 240Zm0-240L240-680l56-56 184 183 184-183 56 56-240 240Z" /></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-separator {
  flex-grow: 1;
  width: 100%;
  position: relative;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 960 72"><path fill="%239e9369" d="M960,72H0V21c0,0,69.3-45.6,183.7,0C298.2,66.6,369,41.3,480,21c111-20.3,200.5,2.5,311,22.7 C901.5,63.9,960,21,960,21V72z" /></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: bottom;
  overflow: hidden;
  transition-duration: 0.6s;
  z-index: 50;
}

.main-separator.observe.in {
  animation-name: transform-separator;
  animation-fill-mode: both;
  animation-duration: 1.2s;
}

.main-frame {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(img/frame01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 97/150;
  margin: auto;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  font-size: min(10px, 1.0417vw);
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr 1fr 1fr 1fr;
  gap: 0 3.5%;
  padding: 3.5%;
}

.main-grid > li {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1em;
  margin: 1% auto;
  z-index: 0;
  /* &::before{
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 8px;
      background-color: #9e9369;
      opacity: 0;
      z-index: -1;
      transition: .4s;
  }
  &:hover::before{
      opacity: .5;
      transform: scale(1.05);
  } */
}

.main-grid > li a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s;
}

.main-grid > li a:hover {
  opacity: 0.7;
}

.main-grid > li img {
  display: block;
  width: 100%;
  transition: 0.6s;
}

.main-grid > li > img {
  border-radius: 8px;
}

.main-grid > li:nth-of-type(1) {
  counter-reset: num 0;
  grid-column: 1/4;
  font-size: 1.6em;
  margin: 3%;
}

.main-grid > li:nth-of-type(1) img {
  border-radius: 8px;
}

.main-grid > li:nth-of-type(12) {
  position: relative;
  grid-row: 4/6;
  grid-column-end: -1;
}

.main-grid > li:nth-of-type(12)::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  right: -10%;
  bottom: -5%;
  background-image: url(img/symbol.webp);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-grid > li:nth-of-type(n+2):nth-of-type(-n+11)::after {
  content: "";
  display: block;
  position: relative;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 7%;
  margin: 2%;
}

.main-grid > li:nth-of-type(2)::after {
  background-image: url(img/n01.webp);
}

.main-grid > li:nth-of-type(3)::after {
  background-image: url(img/n02.webp);
}

.main-grid > li:nth-of-type(4)::after {
  background-image: url(img/n03.webp);
}

.main-grid > li:nth-of-type(5)::after {
  background-image: url(img/n04.webp);
}

.main-grid > li:nth-of-type(6)::after {
  background-image: url(img/n05.webp);
}

.main-grid > li:nth-of-type(7)::after {
  background-image: url(img/n06.webp);
}

.main-grid > li:nth-of-type(8)::after {
  background-image: url(img/n07.webp);
}

.main-grid > li:nth-of-type(9)::after {
  background-image: url(img/n08.webp);
}

.main-grid > li:nth-of-type(10)::after {
  background-image: url(img/n09.webp);
}

.main-grid > li:nth-of-type(11)::after {
  background-image: url(img/n10.webp);
}

.panel {
  -webkit-tap-highlight-color: transparent;
}

.panel.off {
  opacity: 0.5;
}

.signage {
  overflow: hidden;
}

.grid-container {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 8px;
  flex-grow: 1;
  overflow: hidden;
}

.grid-image {
  position: relative;
  width: 60%;
  height: 100%;
}

.grid-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.grid-info {
  width: 40%;
  font-size: 1em;
  padding: 1em;
  flex-grow: 1;
  line-height: 1.2;
}

.grid-info span {
  display: inline-block;
}

.grid-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 0.8em;
}

.frame-border-top {
  border: 2px solid #333;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: none;
  padding-top: 16px;
}

.frame-border-middle {
  border-left: 2px solid #333;
  padding-top: 16px;
}

.frame-border-middle::before {
  position: relative;
  content: "";
  display: block;
}

.frame-border-bottom {
  border: 2px solid #333;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: none;
  padding-bottom: 16px;
}

/* 
    sale
 */
#sale {
  background-color: #9e9369;
}

.sale-pop {
  position: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px;
  display: none;
  z-index: 100;
}

@media screen and (max-width: 640px) {
  .sale-pop {
    padding: 3.2em;
  }
}
.sale-pop.open {
  display: flex;
}

.sale-pop-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  height: 100%;
  padding: 48px 0 0;
  background-color: #eaeae9;
  /* &::before{
      content: "";
      display: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 0;
      height: 0;
      margin: auto;
      border: 4em solid #ccc;
      border-left: 2em solid transparent;
      border-right: 2em solid transparent;
      animation: 2s linear 0s infinite normal both running rotate360;
      .loading &{
          display: block;
      }
  } */
}

.sale-pop iframe {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.4s;
  z-index: 1;
}

.sale-pop.loading iframe {
  opacity: 0;
  transition: 0;
}

.sale-pop-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 16, 16, 0.4);
}

.sale-pop-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
}

.sale-pop-button::before, .sale-pop-button::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #666;
}

.sale-pop-button::before {
  transform: rotate(45deg);
}

.sale-pop-button::after {
  transform: rotate(-45deg);
}

.sale-slider {
  position: relative;
}

.sale-slider ul {
  align-items: stretch;
}

.sale-slider .swiper-button-next, .sale-slider .swiper-button-prev {
  -webkit-tap-highlight-color: transparent;
  right: auto;
  left: auto;
  width: 6%;
}

.sale-slider .swiper-button-next svg, .sale-slider .swiper-button-prev svg {
  width: 75%;
}

.sale-slider .swiper-button-next {
  left: calc(50% + 240px);
}

.sale-slider .swiper-button-prev {
  right: calc(50% + 240px);
}

@media screen and (max-width: 640px) {
  .sale-slider .swiper-button-next, .sale-slider .swiper-button-prev {
    width: 6%;
  }
  .sale-slider .swiper-button-next svg, .sale-slider .swiper-button-prev svg {
    width: 70%;
  }
  .sale-slider .swiper-button-next {
    left: 90%;
  }
  .sale-slider .swiper-button-prev {
    right: 90%;
  }
}
.sale-item {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 3%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .sale-item {
    max-width: 80%;
  }
}
.sale-item button {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
}

.sale-item span {
  display: inline-block;
}

.sale-item-number {
  position: relative;
  display: block;
  margin: 1em auto;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

.sale-item-container {
  background-color: #fff;
  border-radius: 1.6rem;
  flex-grow: 1;
  overflow: hidden;
}

.sale-item-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.sale-item-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sale-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  flex-grow: 1;
}

.sale-item-title {
  font-size: 1.2em;
  flex-grow: 1;
}

.sale-item-price {
  align-self: flex-end;
  justify-self: flex-end;
}

.sale-item-price span {
  font-size: 1.2em;
  margin-left: 1em;
}

.sale-item-price span::before {
  content: "¥";
  margin-right: 0.5em;
}

.sale-item-price span::after {
  content: "(税込)";
  font-size: 0.7em;
  margin-left: 0.5em;
}

/* 
    stock
 */
#stock {
  background-color: #eaeae9;
}

.dohiemon {
  font-size: min(10px, 1.0417vw);
  padding: 1.6em 0;
}

.dohiemon-container {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: stretch;
  background-color: #fff;
  border: 2px solid #9e9369;
  border-radius: 1.6em;
  overflow: hidden;
}

.dohiemon-image {
  position: relative;
  width: 50%;
}

.dohiemon-image img {
  display: block;
  position: absolute;
  margin: auto;
  width: 90%;
  max-height: none;
  top: 4%;
  left: 0;
  right: 0;
}

.dohiemon-image {
  /* @media screen and (max-width: 480px) {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      img{
          display: block;
      }
  } */
}

.dohiemon-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 30%;
  flex-grow: 1;
  padding: 3.2em 3.2em 3.2em 0;
  /* @media screen and (min-width: 481px) {
      padding-left: 0;
  } */
}

.dohiemon-info h3 {
  font-size: 2.8em;
  padding: 0.75em;
  margin-bottom: 1em;
  width: 100%;
  background-color: #9e9369;
  color: white;
  border-radius: 0.8em;
  text-align: center;
}

.dohiemon-app {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 2.4em auto;
  width: 100%;
}

.dohiemon-app-image {
  max-height: 18em;
  aspect-ratio: 1/1;
  border: 2px solid #d8d8d8;
  border-radius: 20%;
}

.dohiemon-app img {
  display: block;
}

.dohiemon-app-info {
  flex-grow: 1;
  padding: 1em;
  font-size: 2em;
  padding-right: 0;
}

.dohiemon-app-title {
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

.app-download {
  display: block;
  height: 8.2em;
  margin-top: 2.4em;
}

/* 
    schedule
 */
#schedule {
  background-color: #000;
  z-index: 5;
}

.schedule {
  padding: 3.2rem;
  text-align: center;
}

.schedule-container {
  position: relative;
  margin: auto;
  border-radius: 3.2rem;
  overflow: hidden;
}

.schedule img {
  display: block;
  margin: auto;
}

/* 
    news
 */
#news {
  background-color: #9e9369;
  z-index: 5;
}

.news {
  padding: 3.2rem 0;
}

.news .news-list {
  margin: auto;
  font-size: 1.8rem;
  color: #fff;
}

.news .news-list dt {
  margin-bottom: 1em;
}

.news .news-list dd::after {
  content: "";
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin: 1em auto;
}

.news .news-list dd + dt {
  margin-top: 2em;
}

.news .news-list span {
  display: inline-block;
}

.line-friend {
  position: relative;
  max-width: 640px;
  margin: auto;
  margin-top: 12%;
}

.line-friend img {
  display: block;
}

.line-friend-button {
  display: block;
  position: absolute;
  bottom: 8%;
  right: 0;
  left: 42%;
  margin: auto;
  width: 27%;
  transition: 0.6s;
}

.line-friend-button:hover {
  opacity: 0.5;
}

/* 
    pr
 */
#pr {
  background-color: #eaeae9;
}

.pr-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 2.4rem;
}

.pr-list li {
  width: 50%;
  flex-basis: 34%;
  flex-grow: 1;
}

.pr-list a {
  display: block;
  text-decoration: none;
  color: #333;
  transition: 0.6s;
}

.pr-list a:hover {
  opacity: 0.6;
}

.pr-list a:hover img {
  transform: scale(1.1);
}

.pr-info {
  margin: 0.5em;
}

.pr-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.4rem;
  margin: 1em 0;
  height: 2.4rem;
}

.pr-date::before {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #9e9369;
  border-radius: 0.4em;
  height: 100%;
  min-width: 4.8em;
  margin-right: 1em;
}

.pr-ad::before {
  content: "AD";
}

.pr-event::before {
  content: "EVENT";
}

.pr-shop::before {
  content: "SHOP";
}

.pr .pr-image {
  aspect-ratio: 16/9;
  background-color: #ddd;
  border-radius: 16px;
  overflow: hidden;
}

.pr .pr-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}

/* 
    how
 */
#how {
  background-color: #000;
  z-index: 5;
}

.how-list {
  width: 68%;
  margin: 0 auto 32px;
  counter-reset: step;
}

.how-list li {
  position: relative;
  background-color: #eaeae9;
  border-radius: 0.8em;
}

.how-list li + li {
  margin-top: 3.6em;
}

.how-list li img {
  display: block;
}

.how-list-step {
  position: absolute;
  display: flex;
  flex-flow: column;
  background-color: #9e9369;
  width: 8rem;
  height: 8rem;
  left: -4rem;
  top: -4rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
}

.how-list-step::after {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-size: 2.8rem;
}

/* 
    Coming Soon
 */
#coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111010;
  flex-grow: 1;
}

#coming .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coming-container {
  max-width: 320px;
  margin: auto;
}

.coming .caption {
  font-size: 4.8rem;
}

/* 
    contact
 */
.contact-header {
  display: block;
  width: 90vw;
  max-width: 640px;
  margin: auto;
  border: 1px solid rgb(218, 220, 224);
  border-radius: 8px;
}

/* 
    link
 */
#link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111010;
}

.link-image {
  display: block;
  max-width: 480px;
  width: 33.3333vw;
  margin: auto;
}

.link-list {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 4em auto;
  font-size: 2.4rem;
}

.link-list li + li {
  margin-top: 1em;
}

.link-list a {
  display: block;
  line-height: 1;
  padding: 0.5em;
  color: #000;
  background-color: #fff;
  border-radius: 2em;
  max-width: 80%;
  margin: auto;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: 0.4s;
}

.link-list a:hover {
  opacity: 0.5;
}

/* 
    policy
 */
.definition {
  font-size: 1.8rem;
}

.definition dl {
  counter-reset: num 0;
  margin-top: 1em;
}

.definition dl dt {
  counter-increment: num;
  font-size: 1.2em;
  margin-top: 2em;
}

.definition dl dt::before {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  content: counter(num) ".";
  margin-right: 0.5em;
}

.definition dl dd {
  margin: 1em 0 1em 1em;
}

.definition dl ul {
  margin: 1em 0;
}

.definition dl ul li {
  list-style-type: disc;
  margin-left: 2em;
}

.definition > dl > dt {
  margin-top: 4em;
}

/* 
    faq
 */
.faq dl dl dt {
  font-size: 1em;
}

.faq dl dl dt::before {
  content: "Q.";
}

.faq dl dl dd {
  margin: 0 0 1em;
}

.faq dl dl dd::before {
  content: "A.";
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  margin-right: 0.5em;
}

/* 
    Access
 */
#access {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #9e9369;
  color: #fff;
  padding-bottom: 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  z-index: 5;
}

/* 
    Footer
 */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #9e9369;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  z-index: 5;
}

#footer {
  padding: 0;
}

.padding {
  padding-top: 4.8rem;
}

.copyright {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  padding: 1em 0;
}

.map {
  max-width: 640px;
  width: 100%;
  margin: auto;
  padding: 0 1.6rem;
}

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

.address {
  margin: 1em auto;
}

.menu a {
  color: #fff;
  text-decoration: none;
  transition: 0.6s;
}

.menu a:hover {
  opacity: 0.5;
}

.menu-list {
  padding: 2em 0;
}

.menu-list li + li {
  margin-top: 1em;
}

.menu-sns {
  display: flex;
  justify-content: center;
  margin: 2.4rem auto;
  gap: 2.4rem;
  font-size: 2.4rem;
}

.menu-sns li a {
  display: block;
  background-color: #000;
  padding: 0.5em;
  border-radius: 1em;
}

.menu-sns li img {
  display: block;
  width: 1em;
  height: 1em;
}

.product {
  background-color: #eaeae9;
  color: #333;
}

.product-content {
  display: flex;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
  margin: auto;
  padding: 0 48px 48px;
}

@media screen and (max-width: 540px) {
  .product-content {
    padding: 0 2.4em 48px;
    font-size: 1.4em;
  }
}
.product img:first-child {
  display: block;
  align-self: center;
  max-height: none;
  margin-bottom: 2em;
}

.product h1 {
  font-size: 1.4em;
  margin-bottom: 1em;
  color: #000;
}

.product p.margin {
  margin-top: 1em;
}

.product-price {
  align-self: flex-end;
  margin-bottom: 2em;
  color: #000;
}

.product-price span {
  font-size: 1.6em;
  margin-left: 1em;
}

.product-price span::before {
  content: "¥";
  margin-right: 0.5em;
}

.product-price span::after {
  content: "(税込)";
  font-size: 0.7em;
  margin-left: 0.5em;
}

.product-list {
  margin-top: 1em;
}

.product-list li {
  display: flex;
}

.product-list li::before {
  content: "・";
}

.product-list li + li {
  margin-top: 1em;
}

.product-annotation {
  margin-top: 1em;
}

.product-annotation li {
  display: flex;
  font-size: 0.8em;
}

.product-annotation li::before {
  content: "※";
}

.product-how {
  margin-top: 1.5em;
  border: 1px solid #999;
  background-color: #f2f2f2;
  padding: 1em;
  font-size: 0.8em;
  width: 100%;
  color: #555;
}

.product-how-heading {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 1em;
}

.product-ingredients {
  margin-top: 1.5em;
  font-size: 0.8em;
  color: #555;
}

.product dl dt {
  font-size: 1.2em;
  margin-bottom: 1em;
  font-weight: bold;
}

.product dl dd + dt {
  margin-top: 1em;
}