@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-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]) {
  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  **/
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;
  appearance: none;
}

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

button {
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.5;
  }
}

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

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_rock {
  overflow: hidden;
}

a[target=_blank]:not([data-platform])::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-red: #C31C1F;
  --color-sky: #97D0E3;
  --color-beige: #FBECE2;
  --color-yellow: #FFF100;
  --color-pink: #FBDCEB;
  --base: #32323C;
  --link: var(--color-red);
  --bg: var(--color-beige);
  --section-gap: 5.6rem;
}

body {
  color: var(--base);
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  background-color: var(--bg);
}

.page {
  overflow-x: clip;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 6rem;
  padding-inline: 2.8rem 3.1rem;
  background-color: var(--color-white);
}
.header-logo {
  width: 2.15rem;
  height: 3rem;
  color: var(--color-red);
}

.cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 390/525;
}
.cover picture {
  width: 100%;
  height: 100%;
}
.cover picture img {
  width: 100%;
}
@media (min-width: 48rem) {
  .cover {
    aspect-ratio: unset;
    padding-block: 3.8rem 4.2rem;
  }
  .cover picture {
    width: min(78.0833333333%, 93.7rem);
    height: auto;
  }
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--section-gap);
  padding: 3.7rem min(7.6923076923vw, 3rem) 4rem;
  font-size: 1.6rem;
  background-color: var(--color-sky);
}
.intro .wrap {
  width: min(100%, 37rem);
}

.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-block-end: var(--section-gap);
  background-color: var(--color-beige);
}
.contents h2 {
  position: relative;
  width: 10.7rem;
  height: 3.2rem;
  margin-block: 3.4rem 3.2rem;
  padding-right: 1.6rem;
}
.contents h2 .char-bz-lil-s-fly {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 3rem;
  height: auto;
}
.contents .contents-list {
  width: min(84.6153846154vw, 84.8rem);
  display: grid;
  gap: 4.8rem 5.6603773585%;
  margin-block-end: 4.8rem;
}
.contents .contents-list p {
  margin-top: 0.8rem;
  line-height: 150%;
  white-space: pre-line;
}
.contents .contents-list li {
  height: fit-content;
}
.contents .contents-list li figure {
  position: relative;
  width: 100%;
  aspect-ratio: 400/210;
}
.contents .contents-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}
.contents .contents-list li a {
  display: block;
  transition: color 0.25s ease;
}
.contents .contents-list li a:hover {
  opacity: 1;
  color: var(--color-red);
}
.contents .contents-list li a:hover img {
  filter: brightness(1.05);
  border: 0.5rem solid var(--color-red);
}
.contents .contents-list li.is-hidden {
  display: none;
  opacity: 0;
}
.contents .contents-list li.is-visible {
  animation: fade-in 0.5s var(--display-delay) forwards ease;
}
@media (min-width: 32.5rem) {
  .contents .contents-list {
    grid-template-columns: repeat(2, min(50% - 2.8301886792%, 40rem));
  }
}

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-block-end: var(--section-gap);
  background-color: var(--color-beige);
}
.products-list {
  width: min(84.6153846154vw, 42rem);
  margin-bottom: 4.8rem;
  display: grid;
  gap: 4rem 4.7562425684%;
}
.products h2 {
  position: relative;
  width: 12.2rem;
  height: 3rem;
  margin-block: 3.4rem 3.2rem;
  padding-right: 1.6rem;
}
.products h2 .char-bz-lil-p-run {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 3.4rem;
  height: auto;
}
@media (min-width: 48rem) {
  .products-list {
    grid-template-columns: repeat(2, min(50% - 2.3781212842%, 40rem));
    width: min(84.6153846154vw, 84.1rem);
  }
}

.footer {
  padding-block: 5.7rem 5rem;
  color: var(--color-beige);
  background-color: var(--color-red);
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  width: min(78.4615384615vw, 70.5rem);
  margin-inline: auto;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
.footer-share {
  display: grid;
  grid-template-columns: min(12.3076923077vw, 5.2rem) auto;
  gap: 0 10.2564102564vw;
  height: fit-content;
}
.footer-share svg {
  display: block;
}
.footer-share h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.footer-share h2 svg {
  width: min(9.4871794872vw, 4.1rem);
  aspect-ratio: 37/9;
}
.footer-share ul {
  display: flex;
  gap: 0 min(10.2564102564vw, 4.3rem);
}
.footer-share .share-icon-x {
  width: min(9.4871794872vw, 4rem);
  aspect-ratio: 37/38;
}
.footer-share .share-icon-facebook {
  width: min(9.7435897436vw, 4.2rem);
  aspect-ratio: 38/38;
}
.footer-share .share-icon-line {
  width: min(10.7692307692vw, 4.6rem);
  aspect-ratio: 42/40;
}
.footer-hobo {
  display: grid;
  gap: 2.5rem;
  font-size: "Koburina Gothic W6 JIS2004";
  font-size: 1.4rem;
  line-height: 100%;
}
.footer-store {
  display: grid;
  gap: 1rem 0;
  font-size: 1.3rem;
  line-height: 230.769%;
}
.footer-store a {
  text-decoration: underline;
}
.footer small {
  font-size: 1.3rem;
  line-height: 230.769%;
}
@media (min-width: 48rem) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-group {
    gap: 3.6rem 0;
  }
  .footer-share {
    gap: 0 3rem;
  }
  .footer-hobo {
    gap: 2.5rem;
    font-size: 1.7rem;
    line-height: 187.5%;
  }
  .footer-store,
  .footer small {
    font-size: 1.5rem;
    line-height: 214.286%;
  }
}

.a-pop {
  animation: pop 0.5s ease;
}

.a-wave {
  animation: wave 1s linear infinite;
}

.a-float {
  animation: float 2s linear infinite;
}

@keyframes pop {
  0% {
    transform: scale(0.3);
  }
  70% {
    transform: scale(1.1);
  }
  85% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wave {
  0% {
    transform: rotate(10deg);
  }
  49.9% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  99.99% {
    transform: rotate(-5deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0.25rem);
  }
  50% {
    transform: translateY(-0.25rem);
  }
  100% {
    transform: translateY(0.25rem);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cover picture {
  position: relative;
  z-index: 2;
  visibility: hidden;
}
.cover picture.in-view {
  animation: slide-down 1s ease-out forwards;
}

[data-appear-by=slide-down] {
  visibility: hidden;
}
[data-appear-by=slide-down].in-view {
  animation: slide-down 1s ease-out forwards;
}

.intro[data-watch=once] {
  transition: background-color 0.5s ease-out;
  background-color: var(--color-yellow);
}
.intro[data-watch=once] .marquee {
  background-color: var(--color-white);
  transition: background-color 0.25s ease;
}
.intro[data-watch=once].in-view {
  background-color: var(--color-sky);
}
.intro[data-watch=once].in-view .marquee {
  background-color: transparent;
}

.contents[data-watch=once] {
  transition: background-color 0.5s ease-out;
  background-color: var(--color-yellow);
}
.contents[data-watch=once].in-view {
  background-color: var(--color-beige);
}

.products[data-watch=once] {
  transition: background-color 0.5s ease-out;
  background-color: var(--color-yellow);
}
.products[data-watch=once].in-view {
  background-color: var(--color-beige);
}

@keyframes slide-down {
  0% {
    visibility: hidden;
    transform: translateY(-10rem);
  }
  20% {
    visibility: visible;
  }
  100% {
    visibility: visible;
    transform: translateY(0rem);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10rem);
  }
  30% {
    opacity: 1;
    visibility: visible;
  }
  70% {
    transform: translateY(5rem);
  }
  85% {
    transform: translateY(-2rem);
  }
  100% {
    visibility: visible;
    transform: translateY(0rem);
  }
}
.nav-button {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 1.8rem;
  color: var(--color-red);
  transition: all 0.25s ease;
}
.nav-button:hover {
  opacity: 1;
  color: var(--color-sky);
}
.nav-button span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: all 0.25s ease;
}
.nav-button span:first-of-type {
  top: 0;
}
.nav-button span:nth-of-type(2) {
  top: calc(50% - 1px);
  opacity: 1;
}
.nav-button span:last-of-type {
  top: calc(100% - 2px);
}
.nav-button[aria-expanded=true] span:first-of-type {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.nav-button[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.nav-button[aria-expanded=true] span:last-of-type {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.nav-content {
  position: absolute;
  top: 6rem;
  right: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.5s ease;
  display: grid;
  gap: 3.2rem 0;
  width: min(100%, 37.5rem);
  padding: 4rem min(5.1282051282vw, 2rem) 4rem min(12.8205128205vw, 5rem);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 100%;
  background-color: rgba(195, 28, 31, 0.9);
}
.nav-content[aria-hidden=false] {
  visibility: visible;
  transform: translateX(0%);
}
.nav-content a {
  display: grid;
  grid-template-columns: 2.9rem auto;
  gap: 0 1.2rem;
  align-items: center;
  transition: all 0.25s ease;
}
.nav-content a:hover {
  opacity: 1;
  color: var(--color-yellow);
}
.nav-content svg {
  display: block;
  margin-inline: auto;
}
.nav-icon-cart {
  width: 2.9rem;
  aspect-ratio: 29/24;
}
.nav-icon-account {
  width: 2rem;
  aspect-ratio: 20/25;
}
.nav-icon-help {
  width: 2.4rem;
  aspect-ratio: 24/24;
}
.nav-icon-store {
  width: 2.1rem;
  aspect-ratio: 21/32;
}
.nav-icon-content-top {
  width: 2.4rem;
  aspect-ratio: 24/24;
}
.nav-icon-inquiry {
  width: 2.5rem;
  aspect-ratio: 25/18;
}

:root {
  --stripy-size: 4.2rem;
  --stripy-yellow: #FFF100;
  --stripy-pink: #FBDCEB;
}

@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: calc(var(--stripy-size) * 2) var(--stripy-size);
  }
}
.stripy {
  background-size: var(--stripy-size) var(--stripy-size);
  background-image: linear-gradient(-45deg, var(--stripy-yellow) 30%, var(--stripy-pink) 30%, var(--stripy-pink) 50%, var(--stripy-yellow) 50%, var(--stripy-yellow) 80%, var(--stripy-pink) 80%, var(--stripy-pink));
  animation: barberpole 7s linear infinite;
}

.info {
  position: relative;
  width: min(100%, 54rem);
  margin-block-end: 2.4rem;
}
.info .marquee {
  overflow: hidden;
  padding-block: 0.5rem 0.6rem;
  color: var(--color-red);
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  line-height: 150%;
  border: 2px solid var(--color-red);
}
.info ul {
  width: fit-content;
  white-space: nowrap;
  display: flex;
  gap: 0 3rem;
  list-style: disc;
  animation: info-banner var(--marquee-speed) linear infinite;
}
.info ul a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.info .char-bz-lil-s-wave {
  position: absolute;
  top: -1.8rem;
  left: -0.9rem;
  width: 4.6rem;
  height: 4.6rem;
}
@media (min-width: 48rem) {
  .info .char-bz-lil-s-wave {
    left: -1.1rem;
  }
}

@keyframes info-banner {
  from {
    transform: translateX(calc(100% + min(84.6153846154vw - 100%, 54rem - 100%)));
  }
  to {
    transform: translateX(-100%);
  }
}
.yodogawa {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  line-height: 187.5%;
  font-feature-settings: "halt" on;
}
.yodogawa p + p {
  margin-top: 1.5em;
}
@media (min-width: 48rem) {
  .yodogawa {
    font-feature-settings: unset;
  }
  .yodogawa p {
    white-space: pre-line;
  }
}

.about-project-b {
  margin-top: 3.2rem;
}
.about-project-b button {
  display: flex;
  align-items: end;
  color: var(--color-red);
  line-height: 100%;
  transition: all 0.15s ease;
}
.about-project-b button:hover {
  opacity: 1;
  color: var(--color-white);
}
.about-project-b button:hover .icon-arrow {
  filter: brightness(10);
}
.about-project-b button .logo {
  width: 9rem;
  height: 4.1rem;
  margin-inline: 1rem 0.6rem;
}
.about-project-b button .icon-arrow {
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.15s ease;
}
.about-project-b button[aria-expanded=true] .icon-arrow {
  transform: rotate(180deg);
}
.about-project-b div {
  interpolate-size: allow-keywords;
  overflow: hidden;
  height: 0;
  padding-top: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.about-project-b div[aria-hidden=false] {
  height: auto;
  padding-top: 2rem;
}
.about-project-b div[aria-hidden=false] figure [class*=char-] {
  animation: slide-down 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.about-project-b div[aria-hidden=false] figure [class*=char-]:nth-of-type(2) {
  animation-delay: 0.25s;
}
.about-project-b div[aria-hidden=false] figure [class*=char-]:last-of-type {
  animation-delay: 0.5s;
}
.about-project-b p {
  line-height: 187.5%;
}
.about-project-b h3 {
  display: flex;
  align-items: end;
  margin-block: 3.2rem 2rem;
  color: var(--color-red);
  font-size: 1.6rem;
  line-height: 100%;
}
.about-project-b h3 svg {
  width: 5.8rem;
  height: 4.1rem;
  margin-right: 0.28rem;
}
.about-project-b figure {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(100%, 28.3rem);
  aspect-ratio: 283/149;
  margin-block: 3.2rem 1.6rem;
}
.about-project-b figure figcaption {
  align-self: flex-end;
  display: flex;
  align-items: end;
  padding-bottom: min(2.5641025641vw, 1.2rem);
  line-height: 100%;
}
.about-project-b figure svg {
  width: 3.55rem;
  height: 2.5rem;
  margin-inline: 0.5em 0.15em;
}
.about-project-b figure [class*=char-] {
  height: auto;
  visibility: hidden;
}
.about-project-b figure .char-p {
  width: 34.2756183746%;
}
.about-project-b figure .char-y {
  width: 33.2155477032%;
}
.about-project-b figure .char-s {
  width: 32.5088339223%;
}
.about-project-b figure .char-p,
.about-project-b figure .char-s {
  align-self: flex-end;
}
.about-project-b figure .char-y {
  align-self: flex-start;
}
.about-project-b small {
  display: block;
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
@media (min-width: 48rem) {
  .about-project-b p {
    white-space: pre-line;
  }
}

.button-look {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-red);
}
.button-look span {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
}
.button-look:disabled {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.product {
  text-align: center;
}
.product a {
  position: relative;
  display: block;
}
.product a:hover {
  opacity: 1;
}
.product a:hover figure {
  padding: 0.5rem;
  background-color: var(--color-red);
}
.product figure {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.6rem;
  transition: all 0.25s ease;
}
.product figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product .product-status {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: min(23.0769230769vw, 9rem);
  height: min(23.0769230769vw, 9rem);
  font-size: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.product .product-status.is-restock {
  background-image: url("../img/cart/status_restock.svg");
}
.product .product-status.is-soldout {
  background-image: url("../img/cart/status_soldout.svg");
}
.product .product-status.is-new {
  background-image: url("../img/cart/status_new.svg");
}
.product ul {
  container: type-list/inline-size;
  display: grid;
  grid-template-columns: repeat(5, 18.1818181818%);
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.product ul svg {
  width: 100%;
  aspect-ratio: 1;
}
.product ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product ul span {
  font-size: min(3.0769230769vw, 1.2rem);
  line-height: 250%;
  white-space: nowrap;
}
@container type-list (width >= 400px) {
  .product ul span {
    font-size: 1.4rem;
  }
}
.product-name, .product-link {
  font-family: "Koburina Gothic W6 JIS2004";
  line-height: 187.5%;
}
.product-price {
  line-height: 187.5%;
}
.product-price small {
  font-size: 0.75em;
}
.product-price, .product-link {
  margin-top: 0.8rem;
}
.product-link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 0.8rem 6.3rem 0.7rem;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 2.4rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.product-link:hover {
  color: var(--color-red);
  background-color: var(--color-white);
  border-color: var(--color-red);
}