@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]) {
  -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  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@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,
svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
  line-height: 1;
}

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

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

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

*:focus {
  outline: none;
}

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

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

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

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;
}

/**  common  **/
body {
  font-family: "Noto Sans", sans-serif;
  color: #4D4D4D;
}
body:has(header.open) {
  overflow: hidden;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 4.8rem;
  }
}

main a,
.footer-note a {
  text-decoration: underline;
  color: #FF775C;
}

.insta a {
  display: block;
  aspect-ratio: 90/64;
}

.tiktok a {
  display: block;
  aspect-ratio: 58/64;
}

header {
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF75AF;
}
header svg {
  fill: #FF75AF;
}
@media (min-width: 992px) {
  header {
    position: sticky;
    top: 0;
  }
}
header.open .menu-icon {
  justify-content: center;
  position: fixed;
  top: 2rem;
  right: 0.8rem;
  background-color: transparent;
}
header.open .menu-icon span:nth-child(1) {
  transform: rotate(-30deg);
}
header.open .menu-icon span:nth-child(2) {
  transform: rotate(30deg);
  bottom: 2px;
}
header.open .menu-wrapper {
  transform: translateX(0);
}
header .header-logo {
  display: block;
  padding: 1.2rem;
  width: 12rem;
  transition: all 0.4s;
}
body:has(.check-headerlogo.active) header .header-logo {
  width: 16rem;
}
header .menu-icon {
  background-color: inherit;
  border-radius: 8px;
  width: 5.6rem;
  height: 4rem;
  position: fixed;
  top: 2rem;
  right: 0.8rem;
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  transform: rotate(90deg);
}
header .menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  border-top: 2px solid #FF75AF;
  transition: opacity 0s, transform 0.4s;
}
@media (min-width: 992px) {
  header .menu-icon {
    display: none;
  }
}
header .menu-wrapper {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(254, 255, 220, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transform: translateX(100vw);
  transition: transform 0.6s;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  header .menu-wrapper {
    height: auto;
    width: initial;
    transform: initial;
    background-color: initial;
    position: relative;
  }
}
header .menu-wrapper li {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
header .menu-logo {
  width: 9.6rem;
  position: absolute;
  top: 3.2rem;
  left: 3.2rem;
}
@media (min-width: 992px) {
  header .menu-logo {
    display: none;
  }
}
@media (min-width: 992px) {
  header .menu-grand {
    display: flex;
    gap: 1.6rem;
  }
}
header .menu-grand a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .menu-grand span {
  font-family: "Holtwood One SC", serif;
}
@media (min-width: 992px) {
  header .menu-grand small {
    font-size: 1rem;
  }
}
header .menu-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 992px) {
  header .menu-sns {
    display: none;
  }
}
header .menu-sns a {
  height: 6.4rem;
}

:root {
  --branding-text-color: transparent;
  --fw-hero-unit-title-font-family: "Noto Sans", sans-serif;
  --fw-hero-unit-title-font-size: 2rem;
}
@media (min-width: 992px) {
  :root {
    --fw-hero-unit-title-font-size:2.4rem;
  }
}

.inner {
  width: 100%;
  max-width: 98rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.title {
  position: relative;
  color: #FF75AF;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.8px;
  width: calc(100% - 6.4rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .title {
    margin-bottom: 4rem;
  }
}
.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  height: 1px;
  background-color: #FF75AF;
}
.title span {
  font-family: "Holtwood One SC", serif;
  font-size: 2.4rem;
  margin-top: 0.8rem;
}
.title small {
  font-weight: 700;
  font-size: 1.6rem;
}

.carousel-wrapper,
.herounit-wrapper,
.storyblock-wrapper {
  max-width: 98rem;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.storyblock-container {
  aspect-ratio: 9/16;
  display: block;
}

.storyblock-wrapper {
  display: flex;
  flex-direction: column;
  margin: 4rem;
}
@media (min-width: 992px) {
  .storyblock-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.live {
  --fw-storyblock-border-radius: 0;
}
.live .live-highlighted {
  background-color: #FEFFDC;
}
.live .live-prev {
  background-color: #F3F3F3;
}
.live .live-prev .live-date::before {
  background-color: #F3F3F3;
}
.live .live-text {
  display: contents;
}
@media (min-width: 992px) {
  .live .live-text {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
}
.live .live-date {
  font-weight: 700;
  margin-bottom: 2.4rem;
  order: 1;
  background-color: #FFF34B;
  position: relative;
  padding: 0.4rem 1.6rem 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.live .live-date::before, .live .live-date::after {
  content: "";
  position: absolute;
}
.live .live-date::before {
  top: 0;
  left: 0;
  background-color: #FEFFDC;
  display: block;
  height: 0.9em;
  width: 1.1em;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
.live .live-date::after {
  width: 2.2em;
  height: 2px;
  background-color: #4D4D4D;
  transform: rotate(-40deg);
  transform-origin: bottom right;
  top: -0.4em;
  left: -0.7em;
  display: block;
}
.live .live-date span:first-child {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 900;
  letter-spacing: 1.14px;
  font-size: 1.9rem;
}
.live .live-date small {
  font-size: 1.3rem;
}
.live .live-date span:last-child {
  font-size: 1.7rem;
}
.live .live-title {
  order: 2;
  margin-bottom: 2.4rem;
  word-break: keep-all;
}
@media (min-width: 992px) {
  .live .live-title {
    font-size: 2.4rem;
  }
}
.live .live-title .live-time {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}
.live .live-title h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
}
.live .live-note {
  order: 4;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .live .live-note {
    word-break: keep-all;
  }
}
.live .live-note .double-br {
  display: block;
}
.live .live-note .double-br + br {
  display: block;
}
.live .live-stream {
  order: 3;
  margin-bottom: 3.2rem;
  max-height: 75vh;
  align-self: center;
  width: 100%;
}
@media (min-width: 992px) {
  .live .live-stream {
    width: 28rem;
    order: initial;
    align-self: flex-start;
    min-height: initial;
  }
}
.live .thumb {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.live .sold .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.live .sold .thumb::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.27);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.live .sold .thumb::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/ico-soldout.svg);
  background-size: contain;
  width: 6rem;
  height: 6rem;
  top: 0.8rem;
  right: 0.8rem;
}
@media (min-width: 992px) {
  .live .sold .thumb::after {
    width: 8rem;
    height: 8rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}
.live .live-highlighted-bo {
  display: none;
}
@media (min-width: 992px) {
  .live .live-highlighted-bo {
    display: block;
    margin-left: auto;
    margin-top: auto;
    order: 4;
    width: 13.2rem;
  }
}

.item-wrapper .thumb {
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.item-wrapper .thumb img:first-child {
  transition: all 0.5s;
}
.item-wrapper .thumb img:first-child:hover {
  transform: scale(1.04);
}
.item-wrapper .tips {
  background-color: #fff;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  grid-area: 1.6rem;
  padding: 0.8rem 1.6rem;
}
.item-wrapper .tips-title {
  color: #4D4D4D;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.item-wrapper .comment {
  color: #4D4D4D;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  height: 9em;
  overflow: hidden;
}
.item-wrapper .detail {
  color: #949494;
  font-size: 1.2rem;
}
.item-wrapper a {
  display: block;
  text-decoration: none;
}
.item-wrapper a:hover {
  opacity: 1;
}
.item-wrapper .tips_more {
  color: #949494;
  border: 1px solid currentColor;
  border-radius: 3em;
  padding: 0.6em 1em 0.5em;
  font-weight: 200;
  font-family: "Sofia Sans", sans-serif;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  transition: all 0.2s;
  text-align: center;
}
.item-wrapper .tips_more:hover {
  color: #FF75AF;
}

footer {
  position: relative;
  background-color: #4D4D4D;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  footer {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
footer .wrapper {
  width: calc(100% - 4rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.8em;
         column-gap: 0.8em;
    width: calc(100% - 8rem);
  }
}
@media (min-width: 992px) {
  footer .wrapper {
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 2.4em;
         column-gap: 2.4em;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .footer-hobo {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.6em;
  justify-content: center;
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo a {
  display: flex;
  gap: 0.8em;
  align-items: center;
}
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;
}
@media (min-width: 600px) {
  footer .footer-share,
  footer .footer-copy {
    grid-column: 1/3;
  }
}
@media (min-width: 992px) {
  footer .footer-share,
  footer .footer-copy {
    grid-column: initial;
  }
}
footer .footer-share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
    margin-bottom: initial;
  }
}
footer .footer-share img {
  width: 3.2rem;
}
@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: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40rem;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: currentColor;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.8em;
}
footer .footer-store,
footer .footer-copy {
  font-size: 0.96em;
  font-weight: 400;
}
footer .footer-store {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 2em;
       column-gap: 2em;
  margin-top: 3.2rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  footer .footer-store {
    grid-column: 1/3;
    margin-top: 2.4em;
  }
}
footer .footer-store li {
  margin-bottom: 0.4em;
}
footer .footer-copy {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-copy {
    grid-column: 1/3;
  }
}

/**  page  **/
@keyframes SlideIn {
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
html {
  scroll-padding-top: 1rem;
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 12rem;
  }
}

body {
  background-color: #FEFFDC;
}

header {
  background-color: #FEFFDC;
  justify-content: start;
  padding-left: 2rem;
  padding-top: 2rem;
}
@media (min-width: 992px) {
  header {
    justify-content: center;
  }
}

section {
  width: 98%;
  max-width: 98rem;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

/* page-live ・ sales 共通 */
.select-wrapper {
  font-weight: 700;
  position: relative;
  border-radius: 3em;
  border: 1px solid #4D4D4D;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.select-wrapper::after {
  position: absolute;
  font-family: "Hobonichi-Icons";
  content: "\e919";
  height: 100%;
  width: 1em;
  top: 0;
  right: 0;
  pointer-events: none;
  height: 100%;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select-wrapper:has(select:disabled)::after {
  opacity: 0.5;
}
.select-wrapper + div {
  display: flex;
  gap: 0 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.select-wrapper-title + .select-wrapper {
  margin-top: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: inherit;
  height: 4rem;
  padding-left: 1rem;
  padding-right: 3.2rem;
  color: currentColor;
  border: none;
  background-color: #fff;
}
select:disabled {
  background-color: #f5f5f5;
  opacity: 1;
}
select:disabled option {
  color: currentColor;
}

.regi {
  font-weight: 400;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.5em 3em;
  background-color: #FF75AF;
  border-radius: 10em;
  font-size: 1.8rem;
  transition: all 0.2s;
  text-align: center;
}
.regi:disabled, .regi.disabled {
  cursor: auto;
  opacity: 0.5;
  pointer-events: none;
}
@media (hover: hover) {
  .regi:not(:disabled):hover {
    transform: scale(1.02);
  }
}

.footer-note {
  width: 100%;
  max-width: 100%;
  background-color: #E5E5E5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.sticky-footer {
  position: sticky;
  z-index: 8;
  bottom: 0; /* Initially hidden */
  left: 0;
  width: 100%;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-around;
  align-items: center;
  transform: translateY(100%);
  animation: SlideIn forwards 0.5s;
}
@media (min-width: 992px) {
  .sticky-footer {
    flex-direction: row;
  }
}
.sticky-footer ul:not(:has(.no-items-message)) {
  list-style: initial;
  margin-left: 1em;
}
.sticky-footer button {
  white-space: nowrap;
}

.page-about {
  font-weight: 700;
}
.page-about main > section {
  width: 100%;
}
.page-about .content {
  margin-bottom: 6rem;
}
.page-about .content-about,
.page-about .content-point,
.page-about .content-member {
  max-width: 98rem;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.page-about .content-about {
  width: calc(100% - 6rem);
}
@media (min-width: 992px) {
  .page-about .content-about {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
}
.page-about .content-about .content-about-hero {
  transform: translateY(4rem);
  margin-bottom: 2rem;
  max-width: 42rem;
  position: relative;
}
.page-about .content-about dl {
  transform: translateY(4rem);
  font-weight: 900;
}
@media (min-width: 992px) {
  .page-about .content-about dl {
    flex-shrink: 0;
  }
}
.page-about .content-about dt {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.page-about .content-about dd {
  font-size: 1.5rem;
  line-height: 186%;
}
@media (min-width: 992px) {
  .page-about .content-about dd {
    font-size: 1.9rem;
    margin-top: 3.2rem;
  }
}
.page-about .content-about.active .content-about-hero {
  animation: SlideIn forwards ease 1s 0s;
}
.page-about .content-about.active dl {
  animation: SlideIn forwards ease 1s 0s;
  animation-delay: 0.2s;
}
.page-about .content-about.active .comment1 {
  animation: animComment 1 ease-out 3s 0.5s;
}
.page-about .content-about.active .comment2 {
  animation: animComment 1 ease-out 2.5s 1s;
}
.page-about .content-about.active .comment3 {
  animation-delay: 4s;
  animation: animComment 1 ease-out 2s 1.5s;
}
.page-about .content-about.active .heart {
  animation: animHeart 1 ease-out 2.5s 0s;
}
.page-about .content-about.active .heart1 {
  animation: animHeart 1 ease-out 2.5s 0.5s;
}
.page-about .content-about.active .heart2 {
  animation: animHeart 1 ease-out 2.5s 0.75s;
}
.page-about .content-about.active .heart3 {
  animation: animHeart 1 ease-out 2.5s 1s;
}
.page-about .content-about.active .heart4 {
  animation: animHeart 1 ease-out 2.5s 1.25s;
}
.page-about .content-about.active .heart5 {
  animation: animHeart 1 ease-out 2.5s 1.5s;
}
.page-about .content-about.active .fin {
  animation: fadeIn forwards ease 1s 3.5s;
}
.page-about .anim {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
}
.page-about .fin {
  transform: translateY(0);
}
.page-about .comment {
  width: 32%;
}
.page-about .comment1 {
  bottom: 58%;
  left: 7%;
}
.page-about .comment2 {
  bottom: 48%;
  left: 0%;
}
.page-about .comment3 {
  bottom: 37%;
  left: 6%;
}
.page-about .heart {
  width: 7.5%;
}
.page-about .heart:nth-child(odd) {
  right: 4%;
}
.page-about .heart:nth-child(even) {
  right: 0%;
}
.page-about .heart1 {
  bottom: 25%;
}
.page-about .heart2 {
  bottom: 19%;
}
.page-about .heart3 {
  bottom: 13%;
}
.page-about .heart4 {
  bottom: 7%;
}
.page-about .heart5 {
  bottom: 1%;
}
@keyframes animComment {
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes animHeart {
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.page-about .content-point {
  width: calc(100% - 4rem);
}
.page-about .content-point br {
  display: block;
}
@media (min-width: 992px) {
  .page-about .content-point ol {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
}
.page-about .content-point li {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  transform: translateY(4rem);
}
.page-about .content-point li:nth-child(2) {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .page-about .content-point li:nth-child(2) {
    flex-direction: column;
  }
}
.page-about .content-point li:nth-child(2) div::before {
  content: "POINT2";
}
.page-about .content-point li:nth-child(2) div::after {
  left: initial;
  right: -3rem;
}
.page-about .content-point li:nth-child(3) div::before {
  content: "POINT3";
}
@media (min-width: 992px) {
  .page-about .content-point li {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
}
.page-about .content-point div {
  position: relative;
  background-color: #fff;
  padding: 0.4rem 2rem 1.6rem;
}
.page-about .content-point div::before {
  content: "POINT1";
  position: relative;
  display: block;
  font-family: "Holtwood One SC", serif;
  color: #FFE706;
  top: -1.2rem;
  text-align: center;
  width: 100%;
}
.page-about .content-point div::after {
  content: "";
  position: absolute;
  display: block;
  width: 4rem;
  height: 100%;
  top: 0;
  left: -3rem;
  z-index: -1;
  background-color: #fff;
}
@media (min-width: 992px) {
  .page-about .content-point div::after {
    content: none;
  }
}
.page-about .content-point.active li {
  animation: SlideIn forwards ease 1s 0.5s;
}
.page-about .content-point.active li:nth-child(2) {
  animation-delay: 0.7s;
}
.page-about .content-point.active li:nth-child(3) {
  animation-delay: 0.9s;
}
.page-about .content-how dl {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
.page-about .content-how dt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}
.page-about .content-how dt::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/how-num1.svg");
}
.page-about .content-how dd {
  display: flex;
  align-items: center;
}
.page-about .content-how .thumb {
  margin-bottom: 2rem;
  position: relative;
}
.page-about .content-how .ico-arrow {
  position: absolute;
  right: -6rem;
  display: block;
}
.page-about .content-how li:nth-child(2) dt::before {
  background-image: url("../images/about/how-num2.svg");
}
.page-about .content-how li:nth-child(3) dt::before {
  background-image: url("../images/about/how-num3.svg");
}
.page-about .content-how .how-point {
  position: absolute;
  display: block;
  border: 4px solid #FF75AF;
  animation: howPoint infinite alternate linear 0.5s;
}
@keyframes howPoint {
  100% {
    transform: scale(1.05);
  }
}
.page-about .content-how .how-point-circle {
  width: 21%;
  aspect-ratio: 1/1;
  bottom: -1.2rem;
  right: -0.7rem;
  border-radius: 10em;
}
.page-about .content-how .how-point-square {
  width: calc(100% + 1rem);
  aspect-ratio: 3/1;
  top: 45%;
  left: -0.5rem;
  border-radius: 1.2rem;
}
.page-about .content-member {
  width: calc(100% - 4rem);
  font-weight: 700;
  margin-bottom: initial;
  margin-top: 8rem;
}
@media (min-width: 992px) {
  .page-about .content-member {
    margin-top: 12rem;
  }
}
.page-about .content-member ul {
  border: 2px solid #4D4D4D;
  border-radius: 2rem;
  position: relative;
  padding: 3.2rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .page-about .content-member ul {
    padding: 5.2rem 4rem;
  }
}
.page-about .content-member ul::before {
  content: "MEMBER";
  position: absolute;
  top: -1.6rem;
  text-align: center;
  left: calc((100% - 8em) / 2);
  width: 8em;
  font-family: "Holtwood One SC", serif;
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background-color: #FEFFDC;
}
@media (min-width: 992px) {
  .page-about .content-member ul::before {
    left: 4rem;
  }
}
.page-about .content-member li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .page-about .content-member li {
    flex-direction: row;
    align-items: start;
    gap: 4.8rem;
  }
}
.page-about .content-member .thumb {
  margin-bottom: 1.2rem;
  text-align: center;
}
.page-about .content-member .thumb img {
  width: 14rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .page-about .content-member .thumb img {
    width: 10rem;
    margin-bottom: 0.8rem;
  }
}
.page-about .content-member .thumb small {
  font-size: 1.7rem;
}
@media (min-width: 992px) {
  .page-about .content-member .thumb small {
    font-size: 1.2rem;
  }
}
.page-about .content-member .thumb span {
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .page-about .content-member .thumb span {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .page-about .content-member .text {
    max-width: 38rem;
  }
}
.page-about .content-member span {
  display: block;
}
.page-about .content-member p + p {
  margin-top: 1em;
}
.page-about .content-member p + span {
  margin-top: 1em;
}
.page-about .content-member .name {
  color: #FF75AF;
}
.page-about .footer-note {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 170%;
}
.page-about .footer-note > dl {
  width: calc(100% - 6rem);
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
}
@media (min-width: 992px) {
  .page-about .footer-note > dl {
    max-width: 76rem;
  }
}
.page-about .footer-note > dl > dt {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.page-about .footer-note > dl > dd {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .footer-note dt {
  font-weight: 900;
}
@media (min-width: 992px) {
  .page-about .footer-note .spec-wrapper {
    margin-top: 3.2rem;
    display: flex;
    justify-content: space-between;
  }
}
.page-about .footer-note .spec {
  margin-bottom: 4rem;
  line-height: 150%;
}
.page-about .footer-note .spec br {
  display: block;
}
.page-about .footer-note .spec img {
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .page-about .footer-note .spec img {
    margin-bottom: 2rem;
  }
}
.page-about .footer-note .spec dl {
  display: grid;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  grid-auto-flow: column;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 1fr 1fr;
}
.page-about .footer-note .spec dt {
  font-size: 1.7rem;
}
.page-about .footer-note .bo {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.page-about .footer-note .bo img {
  width: 18rem;
  margin-bottom: 2.4rem;
}

.page-archive .page-archive-grid {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.page-live .inner,
.page-sales .inner {
  padding-top: initial;
}
@media (min-width: 992px) {
  .page-live .inner,
  .page-sales .inner {
    padding-top: 6rem;
  }
}
.page-live .shopping-note,
.page-sales .shopping-note {
  width: calc(100% - 6.4rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .page-live .shopping-note,
  .page-sales .shopping-note {
    margin-bottom: 2.8rem;
  }
}
.page-live .shopping-note h1,
.page-sales .shopping-note h1 {
  font-weight: bold;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.page-live .shopping-note ul,
.page-sales .shopping-note ul {
  list-style: initial;
}
.page-live .shopping-wrapper ul,
.page-sales .shopping-wrapper ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
}
@media (min-width: 992px) {
  .page-live .shopping-wrapper ul,
  .page-sales .shopping-wrapper ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
}
.page-live .shopping-wrapper .thumb,
.page-sales .shopping-wrapper .thumb {
  margin-bottom: 0.4rem;
}
.page-live .shopping-wrapper a,
.page-sales .shopping-wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  border-radius: 3em;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}
.page-live .shopping-wrapper a:not(.regi),
.page-sales .shopping-wrapper a:not(.regi) {
  border: 1px solid #4D4D4D;
}
.page-live .shopping-wrapper .name,
.page-sales .shopping-wrapper .name {
  font-weight: 700;
}
.page-live .shopping-wrapper small,
.page-sales .shopping-wrapper small {
  font-size: 1.3rem;
}
.page-live .shopping-wrapper .stock:empty,
.page-sales .shopping-wrapper .stock:empty {
  display: none;
}
.page-live .shopping-wrapper .shipping,
.page-sales .shopping-wrapper .shipping {
  font-size: 1.4rem;
  color: #9a9a9a;
}
.page-live .shopping-wrapper .stockQ,
.page-sales .shopping-wrapper .stockQ {
  display: none;
}

.page-live .footer-note dl {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.page-live .footer-note dt {
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 2.4rem;
}
.page-live .footer-note li {
  margin-bottom: 2rem;
}

.page-sales {
  --swiper-navigation-size: 2.4rem;
  --swiper-navigation-color: #fff;
}
.page-sales .lookbook-wrapper {
  display: contents;
}
.page-sales .lookbook-wrapper .swiper-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .page-sales .lookbook-wrapper .swiper-main {
    position: relative;
    top: initial;
    z-index: initial;
  }
}
.page-sales .lookbook-wrapper .swiper-thumbnail {
  z-index: 1;
}
.page-sales .shopping-wrapper {
  background-color: #FEFFDC;
}
.page-sales .item {
  width: 100%;
}
.page-sales .item .inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-sales .item .inner {
    flex-direction: row-reverse;
    gap: 4rem;
  }
}
.page-sales .item-detail {
  display: contents;
}
@media (min-width: 992px) {
  .page-sales .item-detail {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .page-sales .item-photoblock {
    max-width: 46rem;
  }
}
.page-sales .item-name,
.page-sales .item-period,
.page-sales .item-note {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-sales .item-name .cat {
  background-color: #FF75AF;
  color: #FEFFDC;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 2rem;
}
.page-sales .item-name h2 {
  font-weight: bold;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  text-wrap: initial;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .page-sales .item-name {
    margin-top: 0;
  }
}
.page-sales .item-price {
  font-weight: bold;
}
.page-sales .item-price span {
  font-size: 2rem;
}
.page-sales .item-price small {
  font-weight: normal;
}
.page-sales .item-period dl {
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media (min-width: 992px) {
  .page-sales .item-period dl {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
.page-sales .item-period dt {
  font-size: 1.5rem;
  color: #FF75AF;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.page-sales .item-period dd {
  font-size: 1.7rem;
  color: #838383;
  margin-bottom: 1.6rem;
}
.page-sales .item-period small {
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 992px) {
  .page-sales .item-period small {
    font-size: 1.2rem;
  }
}
.page-sales .item-note {
  line-height: 1.7;
}
@media (min-width: 992px) {
  .page-sales .item-note {
    order: 1;
  }
}
.page-sales .item-note dt {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.page-sales .item-note dd {
  font-size: 1.5rem;
}
.page-sales .item-note small {
  display: block;
}
.page-sales .item-note dd + dt {
  margin-top: 1.6rem;
}
.page-sales .swiper-main {
  margin-bottom: 1.6rem;
}
.page-sales .swiper-main .swiper-slide {
  position: relative;
}
.page-sales .swiper-main .swiper-main-name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
}
.page-sales .swiper-thumbnail {
  margin-bottom: 1.6rem;
  margin-top: 1.6rem;
}
.page-sales .swiper-button-next::after,
.page-sales .swiper-button-prev::after {
  transform: scaleX(1.3);
  text-shadow: 0px 0px 4px rgba(77, 77, 77, 0.3);
}
.page-sales .name {
  text-align: left;
}
@media (min-width: 992px) {
  .page-sales .name {
    font-size: 1.2rem;
  }
}
.page-sales select {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
}
.page-sales ul.selectable-thumbnail {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
  gap: 1.6rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 992px) {
  .page-sales ul.selectable-thumbnail {
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    gap: 0 1.4rem;
  }
}
.page-sales ul.selectable-thumbnail button {
  width: 100%;
}
.page-sales .swiper-slide img {
  width: 100%;
}
.page-sales .shopping-apply {
  order: 1;
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}
@media (min-width: 992px) {
  .page-sales .shopping-apply {
    order: initial;
  }
}
.page-sales .shopping-apply span {
  margin-left: 1em;
  font-size: 1.4rem;
}
.page-sales .comment {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
}
@media (min-width: 992px) {
  .page-sales .comment .inner {
    margin-right: auto;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.page-sales .comment .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .page-sales .comment .partner {
    flex-direction: row;
    gap: 4rem;
    justify-content: start;
    align-items: start;
  }
}
.page-sales .comment .partner + .partner {
  margin-top: 2.4rem;
}
@media (min-width: 992px) {
  .page-sales .comment .partner + .partner {
    margin-top: 8rem;
  }
}
.page-sales .comment .partner img {
  width: 12rem;
  border-radius: 12rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .page-sales .comment .partner img {
    width: 18rem;
    border-radius: 18rem;
  }
}
.page-sales .comment dt {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  text-align: center;
}
@media (min-width: 992px) {
  .page-sales .comment dt {
    text-align: left;
  }
}
.page-sales .comment dd {
  font-size: 1.5rem;
  line-height: 1.7;
}
.page-sales .footer-note {
  line-height: 1.7;
}
.page-sales .footer-note dl {
  width: 80vw;
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}
.page-sales .footer-note dl + dl {
  margin-top: 3.2rem;
}
.page-sales .footer-note dt {
  font-weight: 700;
}
.page-sales .footer-note dt:not(.footer-note-ttl) {
  margin-top: 1.6rem;
}
.page-sales .footer-note .footer-note-ttl {
  font-size: 2.3rem;
  margin-bottom: 1.6rem;
}
.page-sales .footer-note ul {
  margin-left: 1em;
  text-indent: -1em;
}

.table-wrapper {
  overflow-y: auto;
}

.size-image {
  width: 100%;
  max-width: 30rem;
}

.size {
  min-width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 992px) {
  .size {
    min-width: initial;
  }
}
.size br {
  display: block;
}
@media (min-width: 992px) {
  .size br {
    display: none;
  }
}
.size tr:nth-child(2n+1) td {
  background-color: #f1f1f1;
}
.size th {
  background-color: #D0D0D0;
  font-weight: 400;
  line-height: 1.4;
}
.size th small {
  display: block;
}
.size th,
.size td {
  border: 1px solid currentColor;
  white-space: nowrap;
  font-size: 1.2rem;
  padding: 0.5em;
}
@media (min-width: 992px) {
  .size th,
  .size td {
    font-size: 1.5rem;
    padding: 0.8em 1em;
  }
}
@media (min-width: 992px) {
  .size thead th:not(:first-child) {
    min-width: 8em;
  }
}/*# sourceMappingURL=page.css.map */