@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

.device-sp {
  display: block;
}
@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br:not(.spbr) {
  display: none;
}
@media (min-width: 600px) {
  br:not(.spbr) {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 2;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.scroll_rock {
  overflow: hidden;
}
@media (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}

/**  common  **/
.hidden {
  visibility: hidden;
}

.purple {
  color: #84689D;
}

body {
  color: #434242;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

body:has(.menu-toggle:checked) {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  background-color: #434242;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 992px) {
  header {
    padding: 0 46px;
  }
}
header.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .menu-toggle {
  display: none;
}
header .menu-toggle:checked + .menu-icon span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(1) {
    top: 10px;
  }
}
header .menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle:checked + .menu-icon span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  bottom: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(3) {
    bottom: 10px;
  }
}
header .menu-toggle:checked + .menu-icon + .menu-wrapper {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
header .header-logo {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding-left: 18px;
}
@media (min-width: 992px) {
  header .header-logo {
    font-size: 1.5rem;
    padding-left: 0;
  }
}
header .header-logo img {
  height: 9px;
}
@media (min-width: 600px) {
  header .header-logo img {
    height: initial;
  }
}
header .header-index {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header-index img {
  max-width: 35px;
}
@media (min-width: 600px) {
  header .header-index img {
    max-width: 190px;
  }
}
header .menu-icon {
  width: 4em;
  height: 3.4em;
  position: relative;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
}
header .menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  border: 0.5px solid currentColor;
  -webkit-transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, transform 0.4s;
  transition: opacity 0s, transform 0.4s, -webkit-transform 0.4s;
}
header .menu-wrapper {
  z-index: 10;
  position: fixed;
  top: 70px;
  right: 0;
  width: 100vw;
  height: calc(100dvh - 70px);
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: auto;
}
header .menu-wrapper nav {
  width: 250px;
  margin: 40px auto 0;
}
@media (min-width: 600px) {
  header .menu-wrapper nav {
    margin: 85px auto 0;
  }
}
header .menu-wrapper p {
  font-size: 1.6rem;
  padding: 5px 0;
}
header .menu-wrapper p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (min-width: 600px) {
  header .menu-wrapper p {
    padding: 10px 0;
  }
}
header .menu-wrapper p.top {
  vertical-align: middle;
}
header .menu-wrapper p.top img {
  width: 122px;
}
header .menu-wrapper p.top span {
  vertical-align: middle;
}
header .menu-wrapper p.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
header .menu-wrapper hr {
  height: 1px;
  border: none;
  background-color: #ffffff;
  margin: 15px 0;
}

#instagram {
  background-color: #D6E0EC;
  text-align: center;
  padding: 30px 0;
}
#instagram a {
  font-size: 1.4rem;
  display: inline-block;
}
#instagram a span {
  font-size: 40px;
  display: block;
  padding-top: 10px;
}

footer {
  position: relative;
  background-color: #6f6f6f;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
footer a {
  color: #ffffff !important;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
footer .wrapper {
  margin-right: auto;
  margin-left: auto;
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo span {
  display: inline-block;
  width: 1.6em;
  text-align: center;
}
footer .footer-hobo span:before {
  font-size: 1.6em;
}
footer .footer-hobo span.hb-hobo::before {
  font-size: 1.2em;
}
footer .footer-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
    margin-bottom: initial;
  }
}
footer .footer-share img {
  width: 3.2em;
}
@media (min-width: 992px) {
  footer .footer-share img {
    width: 2.8em;
  }
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 28rem;
  margin-top: 3em !important;
  padding-top: 1em;
  padding-bottom: 0.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  border-top: 1px dashed;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.2em;
}
footer .footer-sns li:first-of-type {
  font-size: 1.2rem;
  padding-bottom: 0.2em;
}
footer .footer-store,
footer .footer-copy {
  font-size: 0.96em;
}
footer .footer-store li {
  margin-bottom: 0.4em;
}

.footer-columns-2 .wrapper {
  width: calc(100% - 8rem);
  max-width: 88rem;
}
@media (min-width: 600px) {
  .footer-columns-2 .wrapper {
    display: grid;
    grid-template-columns: minmax(24rem, 1fr) 1fr;
    gap: min(8vw, 12rem);
  }
}
.footer-columns-2 .footer-hobo,
.footer-columns-2 .footer-sns,
.footer-columns-2 .footer-store,
.footer-columns-2 .footer-copy {
  color: #ffffff;
  font-size: 1.4rem;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.footer-columns-2 .footer-store {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 36px;
}
@media (min-width: 600px) {
  .footer-columns-2 .footer-store {
    margin-top: 1.6em;
  }
}
.footer-columns-2 .footer-copy {
  font-size: 1.2rem;
  margin: 0;
}

footer + footer {
  border-top: 4px solid #ffffff;
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
body.active {
  opacity: 1;
}

section {
  overflow: hidden;
}

#top {
  position: relative;
}
@media (min-width: 992px) {
  #top {
    height: 100vh;
  }
}
@media (orientation: portrait) {
  #top {
    height: auto;
  }
}
#top h1 {
  z-index: 2;
  position: relative;
  padding: 7.44vw 0;
}
@media (min-width: 600px) {
  #top h1 {
    position: absolute;
    width: 35.902%;
    top: 50%;
    right: 7.049%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0;
  }
  #top h1 img {
    width: 100%;
  }
}
#top h1 img {
  width: min(46.511vw, 200px);
  margin: 0 auto;
}
@media (min-width: 600px) {
  #top h1 img {
    width: 20.833vw;
  }
}
@media (min-width: 992px) {
  #top .swiper .swiper-slide img {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (orientation: portrait) {
  #top .swiper .swiper-slide img {
    height: auto;
  }
}

#news {
  background-color: #FBFBFB;
}
#news .news-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 15px;
}
#news .news-container .news_area {
  padding: 23px 0;
  line-height: 1.44;
  margin-top: 24px;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  border-top: 1px solid #434242;
  border-bottom: 1px solid #434242;
}
@media (min-width: 600px) {
  #news .news-container .news_area {
    margin-top: 30px;
    font-size: 1.5rem;
  }
}
#news .news-container .news_area li:nth-of-type(n + 2) {
  margin-top: 0.5em;
}
#news .news-container .news_area li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#news .news-container .news_area li dl dt {
  width: 80px;
}
@media (min-width: 600px) {
  #news .news-container .news_area li dl dt {
    width: 100px;
  }
}
@media (max-width: 600px) {
  #news .news-container .news_area li dl dd {
    width: calc(100% - 80px);
  }
}
@media (max-width: 600px) {
  #news .news-container h2 img {
    height: 12px;
  }
}

#topics {
  background-color: #FBFBFB;
}
#topics .topics-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 15px;
}
#topics .topics-container h2 {
  padding-bottom: 23px;
}
@media (min-width: 600px) {
  #topics .topics-container h2 {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  #topics .topics-container h2 img {
    height: 12px;
  }
}
#topics .swiper .swiper-wrapper .swiper-slide {
  max-width: 490px;
  width: 36vw;
}
#topics .swiper .swiper-wrapper .swiper-slide img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#topics .swiper .swiper-button-next:after, #topics .swiper .swiper-button-prev:after {
  color: #ffffff;
  -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
  font-size: 20px;
}
@media (min-width: 600px) {
  #topics .swiper .swiper-button-next:after, #topics .swiper .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (min-width: 600px) {
  #topics .swiper .swiper-button-next {
    right: 15px;
  }
}
@media (min-width: 600px) {
  #topics .swiper .swiper-button-prev {
    left: 15px;
  }
}

#item {
  padding: 40px 0;
}
#item h2 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px 23px;
}
@media (min-width: 600px) {
  #item h2 {
    padding: 0 15px 40px;
  }
}
@media (max-width: 600px) {
  #item h2 img {
    height: 12px;
  }
}
#item .lineup__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
@media (min-width: 600px) {
  #item .lineup__items {
    gap: 30px 0;
  }
}
#item .lineup__items .lineup__item {
  width: 50%;
  position: relative;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item {
    width: 25%;
  }
}
#item .lineup__items .lineup__item figure img {
  width: 100%;
  height: 62.5581395349vw;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item figure img {
    height: 31.25vw;
  }
}
#item .lineup__items .lineup__item a:hover {
  opacity: 1;
}
#item .lineup__items .lineup__item .lineup__info {
  padding-top: 0.8em;
  padding-left: 1em;
}
#item .lineup__items .lineup__item .lineup__info .lineup__name {
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  line-height: 1.44;
}
@media (max-width: 600px) {
  #item .lineup__items .lineup__item .lineup__info .lineup__name {
    font-size: 1.2rem;
    white-space: normal;
  }
}
#item .lineup__items .lineup__item .lineup__info .lineup__name br {
  display: block;
}
#item .lineup__items .lineup__item .lineup__info .lineup__price {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  padding-top: 1em;
}
@media (max-width: 600px) {
  #item .lineup__items .lineup__item .lineup__info .lineup__price {
    font-size: 1.1rem;
    padding-top: 0.5em;
  }
}
#item .lineup__items .lineup__item.new::after {
  content: "";
  background: url("../images/icon-new.svg") no-repeat;
  background-size: contain;
  width: 11.6279069767vw;
  height: 11.6279069767vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item.new::after {
    width: 4.8611111111vw;
    height: 4.8611111111vw;
  }
}
#item .lineup__items .lineup__item.sold::after {
  content: "";
  background: url("../images/icon-sold.svg") no-repeat;
  background-size: contain;
  width: 11.6279069767vw;
  height: 11.6279069767vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item.sold::after {
    width: 4.8611111111vw;
    height: 4.8611111111vw;
  }
}
#item .lineup__items .lineup__item.restock-off::after {
  content: "";
  background: url("../images/icon-restock-off.svg") no-repeat;
  background-size: contain;
  width: 11.6279069767vw;
  height: 11.6279069767vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item.restock-off::after {
    width: 4.8611111111vw;
    height: 4.8611111111vw;
  }
}
#item .lineup__items .lineup__item.restock-on::after {
  content: "";
  background: url("../images/icon-restock-on.svg") no-repeat;
  background-size: contain;
  width: 11.6279069767vw;
  height: 11.6279069767vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 600px) {
  #item .lineup__items .lineup__item.restock-on::after {
    width: 4.8611111111vw;
    height: 4.8611111111vw;
  }
}
#item .lineup__items .lineup__item.release figure {
  position: relative;
}
#item .lineup__items .lineup__item.release figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}
#item .lineup__items .lineup__item.release a {
  pointer-events: none;
  position: relative;
  display: block;
}
#item .lineup__items .lineup__item.release a > p {
  color: #ffffff;
  position: absolute;
  top: 13.5vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.44;
  text-align: center;
}
#item .lineup__items .lineup__item.release a > p span {
  font-size: 3.2rem;
}
@media (max-width: 600px) {
  #item .lineup__items .lineup__item.release a > p {
    top: 23.5vw;
    font-size: 1.5rem;
  }
  #item .lineup__items .lineup__item.release a > p span {
    font-size: 2rem;
  }
}

#about {
  background-color: #FBFBFB;
}
#about .about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 15px;
}
@media (min-width: 600px) {
  #about .about-container {
    padding: 100px 15px;
  }
}
#about .about-container h2 {
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  #about .about-container h2 {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  #about .about-container h2 img {
    height: 12px;
  }
}
#about .about-container ul {
  font-size: 1.4rem;
  line-height: 20px;
  font-family: "Yu Gothic Pr6N M", sans-serif;
}
@media (min-width: 600px) {
  #about .about-container ul {
    max-width: 972px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#about .about-container ul li h3 {
  padding: 20px 0;
}
@media (min-width: 600px) {
  #about .about-container ul li h3 {
    padding: 0 0 40px;
  }
}
#about .about-container ul li h3 img {
  height: 20px;
}
@media (min-width: 600px) {
  #about .about-container ul li h3 img {
    height: 26px;
  }
}
@media (min-width: 600px) {
  #about .about-container ul li.image {
    max-width: 500px;
    width: 50%;
  }
}/*# sourceMappingURL=index.css.map */