@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/* mediaquery */
/* color */
.bg-main {
  background: #fff;
}

.bg-01 {
  background: #D5B3D1;
}

.bg-02 {
  background: #83C7E0;
}

.bg-03 {
  background: #FDD000;
}

.bg-04 {
  background: #F39800;
}

.bg-05 {
  background: #C2DB81;
}

.bg-06 {
  background: #EB6EA5;
}

.bg-07 {
  background: #FBE9F1;
}

/* font */
/* vw */
/* clampVw */
/*line-height*/
/* 無限スクロールアニメーション */
.scroll-container {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.scroll-track .img {
  flex-shrink: 0;
  width: 80px;
  margin-right: 24px;
}
.scroll-track .img img {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-left .scroll-track {
  animation: scroll-left 5s linear infinite;
}

.scroll-right .scroll-track {
  animation: scroll-right 5s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
  }
}
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

i {
  margin: auto 20px;
}

.wf-loading {
  opacity: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  html {
    font-size: clamp(11px, 1vw, 16px);
  }
}

:target {
  scroll-margin-top: 50px;
}

body {
  background: transparent;
  background-size: cover;
  background-position: center center;
  color: #535151;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-justify: inter-ideograph;
  position: relative;
}

a,
a:hover,
a:visited {
  color: #535151;
  text-decoration: none;
}

.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

video {
  display: block;
}

.btn {
  width: 100%;
  margin: 2rem auto;
  padding: 0.8rem 2.4rem 0.8rem 3.2rem;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: solid 1px #535151;
  border-radius: 100vh;
}
.btn:after {
  margin-left: 0.5em;
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  display: inline-block;
}
.btn:hover {
  background: #FBE9F1;
}

.read {
  width: 80%;
  margin: 2rem auto;
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: solid 1px #535151;
  border-radius: 100vh;
}
.read:before {
  margin-right: 0.4em;
  font-family: "Material Symbols Outlined";
  content: "\f53b";
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  display: inline-block;
}
.read:hover {
  background: #FBE9F1;
}

.buy {
  width: 80%;
  margin: 2rem auto;
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: solid 1px #535151;
  border-radius: 100vh;
}
.buy:before {
  margin-right: 0.5em;
  font-family: "Material Symbols Outlined";
  content: "\e8cc";
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  display: inline-block;
}
.buy:hover {
  background: #FBE9F1;
}

.credit {
  line-height: 1;
}
.credit .name {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.credit .price {
  font-size: 1.4rem;
  font-weight: 500;
}
.credit .price span {
  margin-left: 0.4rem;
  font-size: 1.2rem;
}
.credit .size {
  font-size: 1.1rem;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* 初期状態 */
#load figure {
  width: 12rem;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}

.background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-color 0.6s ease;
}

/* ---------- modal ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1200;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

/* モーダルの外枠 */
.modal-inner {
  position: relative;
  width: 80%;
  max-width: 500px;
  margin: 5% auto;
}

.modal-content {
  background-color: #fff;
  padding: 3.2rem 1.6rem;
  border: solid 1px;
  border-radius: 0.8rem;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .modal-content h2 {
    font-size: 1.6rem;
  }
}

.modal-content p {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .modal-content p {
    font-size: 1.2rem;
  }
}

.close {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  cursor: pointer;
  border: solid 1px;
  border-radius: 100vh;
  background: #F4B4D0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1rem;
  right: -1rem;
}

#openModal {
  margin: 1.6rem auto;
  padding: 0.8rem 3.2rem 0.8rem 0.8rem;
  color: #fff;
  background: #E4604C;
  display: block;
  position: relative;
}
#openModal:after {
  margin-left: 0.5em;
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/*-------------------------------
header_area
--------------------------------- */
header {
  width: 100%;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}
header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
header.show {
  transform: translateY(0);
  opacity: 1;
}
header h1.logo_ribon {
  width: 11rem;
}
header h1.logo_ribon img {
  width: 100%;
}
header div.logo_70th {
  width: 4rem;
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
header div.logo_70th img {
  width: 100%;
}

/*---------------------------------------------------------------
navi
-------------------------------------------------------------- */
#toggle {
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#toggle-box {
  margin-top: 0;
  position: relative;
  width: 3.2rem;
  height: 2rem;
  cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 0.2rem;
  left: 0;
  display: block;
  background: #535151;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  top: 100%;
  transform: translatey(-50%);
}

#toggle-box > p {
  color: #535151;
  font-size: 1rem;
  margin-top: 0.8rem;
  text-align: center;
}

#toggle {
  z-index: 999;
}

#nav-content {
  width: 100%;
  height: 100vh;
  padding: 8rem 3.2rem;
  background: #fff;
  color: #535151;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  #nav-content {
    max-width: 40rem;
    border-left: dotted 1px #535151;
  }
}
#nav-content nav {
  width: 100%;
  margin: auto;
  display: block;
}
#nav-content nav ul.nav_large {
  list-style: none;
  border-bottom: dotted 1px;
}
#nav-content nav ul.nav_large > li {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-top: dotted 1px;
}
#nav-content nav ul.nav_large > li > a {
  padding-left: 3em;
  display: block;
  color: #535151;
  text-decoration: none;
  position: relative;
}
#nav-content nav ul.nav_large > li > a::before {
  width: 2em;
  height: 2em;
  content: "\e5c8";
  font-family: "Material Symbols Outlined";
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background: #D5B3D1;
  border: dotted 1px;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: 0;
}
#nav-content nav ul.nav_large > li > a .en {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
}
#nav-content nav ul.nav_large > li > a .jp {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 100%;
}
#nav-content nav ul.nav_small {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#nav-content nav ul.nav_small > li {
  width: 50%;
  margin-top: 2.4rem;
  position: relative;
}
#nav-content nav ul.nav_small > li > a {
  display: block;
  color: #535151;
  text-decoration: none;
  text-align: center;
}
#nav-content nav ul.nav_small > li > a p {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
}
#nav-content nav ul.nav_small li.work_01 figure {
  background-color: #D5B3D1;
}
#nav-content nav ul.nav_small li.work_02 figure {
  background-color: #83C7E0;
}
#nav-content nav ul.nav_small li.work_03 figure {
  background-color: #FDD000;
}
#nav-content nav ul.nav_small li.work_04 figure {
  background-color: #F39800;
}
#nav-content nav ul.nav_small li.work_05 figure {
  background-color: #C2DB81;
}
#nav-content nav ul.nav_small li.work_06 figure {
  background-color: #EB6EA5;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #535151;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #toggle-box > p {
  display: none;
}

.is-open #nav-content {
  z-index: 99;
  transform: translateX(0);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

.sp_none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_none {
    display: block;
  }
}

/*-------------------------------
main_area
--------------------------------- */
.main_area {
  width: 100%;
  background: url("../images/bg_pink.png") #fff fixed;
  background-size: 16rem;
  /* ---------- mv ---------- */
  /* ---------- outline ---------- */
}
.main_area ul.mv {
  width: 100%;
  margin: 7.2rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.main_area ul.mv li {
  width: 50%;
  padding-top: 40%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main_area ul.mv li {
    width: 33.33%;
    height: 36vh;
    padding-top: 0;
  }
}
.main_area ul.mv li img {
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .main_area ul.mv li img {
    max-width: 600px;
  }
}
.main_area ul.mv li.work_01 {
  background-color: #D5B3D1;
}
.main_area ul.mv li.work_02 {
  background-color: #83C7E0;
}
.main_area ul.mv li.work_03 {
  background-color: #FDD000;
}
.main_area ul.mv li.work_04 {
  background-color: #F39800;
}
.main_area ul.mv li.work_05 {
  background-color: #C2DB81;
}
.main_area ul.mv li.work_06 {
  background-color: #EB6EA5;
}
.main_area .outline_area {
  width: 100%;
  max-width: 92rem;
  margin: 0 auto;
  padding: 6.4rem 2.4rem;
  /* 発売日 */
  /* リード */
  /* 注意事項 */
  /* バナー・外部リンク */
}
.main_area .outline_area .date_title {
  max-width: 40rem;
  height: 6rem;
  margin: 0 auto 1.6rem;
  padding: 0.8rem;
  background: #F4B4D0;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  background: #F4B4D0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .main_area .outline_area .date_title {
    height: 4rem;
  }
}
.main_area .outline_area .date_title:before, .main_area .outline_area .date_title:after {
  width: 0;
  height: 0;
  position: absolute;
  content: "";
  z-index: 1;
}
.main_area .outline_area .date_title:before {
  top: 0;
  left: 0;
  border-width: 3rem 0 3rem 1.5rem;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .main_area .outline_area .date_title:before {
    border-width: 2rem 0 2rem 1rem;
  }
}
.main_area .outline_area .date_title:after {
  top: 0;
  right: 0;
  border-width: 3rem 1.5rem 3rem 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .main_area .outline_area .date_title:after {
    border-width: 2rem 1rem 2rem 0;
  }
}
.main_area .outline_area .date {
  margin-bottom: 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.main_area .outline_area .date span {
  font-size: 1.8rem;
}
.main_area .outline_area .lead {
  margin-bottom: 4.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.main_area .outline_area .notice {
  margin: 0 auto 4.8rem;
  max-width: 60rem;
}
.main_area .outline_area .notice .wrap {
  margin-bottom: 0.8rem;
  padding: 1.6rem;
  background: #D5B3D1;
  border-radius: 0.8rem;
  border: dotted 1px #535151;
  font-size: 1.4rem;
}
.main_area .outline_area .notice .wrap .accordion-toggle {
  width: 100%;
  all: unset;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .main_area .outline_area .notice .wrap .accordion-toggle {
    font-size: 1.6rem;
  }
}
.main_area .outline_area .notice .wrap .accordion-toggle::before {
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  content: "\e5db";
  font-family: "Material Symbols Outlined";
  font-size: 1.6rem;
  font-weight: 300;
  background: #F4B4D0;
  line-height: 1;
  border: solid 1px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.main_area .outline_area .notice .wrap .accordion-toggle.active::before {
  content: "\e5d8";
}
.main_area .outline_area .notice .wrap .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1.2rem;
}
.main_area .outline_area .notice .wrap .accordion-content.open {
  max-height: 100rem;
  padding: 1.6rem 0.8rem;
}
.main_area .outline_area .notice .wrap p span.red {
  color: #E4604C;
  font-weight: 600;
}
.main_area .outline_area .notice .wrap p span.title {
  color: #535151;
  font-weight: 600;
  border-bottom: solid 1px;
}
.main_area .outline_area .notice .wrap p span.large {
  font-size: 1.5rem;
}
.main_area .outline_area .notice .wrap .note {
  font-size: 1.1rem;
}
.main_area .outline_area .ribon {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 3.2rem;
  padding: 4rem 3.2rem;
  background: #FBE9F1;
  border-radius: 0.8rem;
}
.main_area .outline_area .ribon figure {
  width: 16rem;
  margin: 0 auto 1.6rem;
}
.main_area .outline_area .ribon p {
  margin: 0 auto 1.6rem;
  font-size: 1.1rem;
}
.main_area .outline_area .ribon .bnr {
  width: 100%;
}
.main_area .outline_area .ribon .bnr a {
  width: 100%;
  text-align: center;
  display: block;
}
.main_area .outline_area .ribon .bnr a img {
  max-width: 16rem;
  height: auto;
  margin: auto;
}
.main_area .outline_area .ribon .bnr a p {
  margin: 0.8rem auto 0;
  font-size: 1rem;
}
.main_area .outline_area .rimacomi {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 4.2rem;
  padding: 4rem 3.2rem;
  background: #FBE9F1;
  border-radius: 0.8rem;
}
.main_area .outline_area .rimacomi h2 {
  margin-bottom: 1.6rem;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.main_area .outline_area .rimacomi h2 span {
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: #F4B4D0;
  display: inline-block;
}
.main_area .outline_area .rimacomi p {
  margin: 0 auto 1.6rem;
  font-size: 1.1rem;
}
.main_area .outline_area .rimacomi .bnr {
  width: 100%;
}
.main_area .outline_area .rimacomi .bnr a {
  width: 100%;
  text-align: center;
  display: block;
}
.main_area .outline_area .rimacomi .bnr a img {
  max-width: 16rem;
  height: auto;
  margin: auto;
}
.main_area .outline_area .rimacomi .bnr a p {
  margin: 0.8rem auto 0;
  font-size: 1rem;
}
.main_area .outline_area .link h2 {
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  text-align: center;
}
.main_area .outline_area .link .icon {
  margin: 0 auto 1.6rem;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.main_area .outline_area .link .icon li {
  margin: 0 1.6rem;
  padding: 0;
}
.main_area .outline_area .link .icon li i {
  margin: 0;
  font-size: 2.4rem;
}
.main_area .outline_area .link .bnr {
  border: solid 5px red;
  width: 100%;
  max-width: 10rem;
  margin: 0 auto;
  font-size: 1.4rem;
  text-align: center;
}
.main_area .outline_area .link .bnr img {
  margin-bottom: 0.8rem;
}

/* --------------------------------------------
 自動横スクロール
-------------------------------------------- */
/* ---------- りぼんちゃん ---------- */
.scroll_ribonchan {
  padding: 1.6rem;
  background: #fff;
  border-top: dotted 1px #535151;
  border-bottom: dotted 1px #535151;
}
.scroll_ribonchan .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.scroll_ribonchan .scroll-track .img {
  width: 5.6rem;
  height: auto;
  margin: 0 1.6rem;
  flex-shrink: 0;
  display: block;
}

/* ---------- りぼんロゴ ---------- */
.scroll_logo_ribon {
  padding: 1.6rem;
  background: #fff;
  border-top: dotted 1px #535151;
  border-bottom: dotted 1px #535151;
}
.scroll_logo_ribon .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.scroll_logo_ribon .scroll-track .img {
  flex-shrink: 0;
  width: 9.6rem;
  margin: 0 0.8rem;
  height: auto;
  display: block;
}

/* ---------- メインビジュアル ---------- */
.scroll_mv {
  padding: 0;
  background: #fff;
}
.scroll_mv .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-right 40s linear infinite;
}
.scroll_mv .scroll-track li {
  flex-shrink: 0;
  width: 20rem;
  margin: 0;
  height: auto;
  display: block;
}
.scroll_mv .scroll-track li.work_01 {
  background-color: #D5B3D1;
}
.scroll_mv .scroll-track li.work_02 {
  background-color: #83C7E0;
}
.scroll_mv .scroll-track li.work_03 {
  background-color: #FDD000;
}
.scroll_mv .scroll-track li.work_04 {
  background-color: #F39800;
}
.scroll_mv .scroll-track li.work_05 {
  background-color: #C2DB81;
}
.scroll_mv .scroll-track li.work_06 {
  background-color: #EB6EA5;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
}

/*-------------------------------
item_area
--------------------------------- */
.item_area {
  width: 100%;
  margin: 0 auto;
}
.item_area ul.category {
  list-style: none;
  margin: 0;
  padding: 0;
  /* ---------- 限定アイテム ---------- */
}
.item_area ul.category > li {
  margin: auto;
  padding: 5.6rem 2.4rem 0;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  flex-wrap: wrap;
  /* ---------- 横スクロール ---------- */
  /* ---------- タイトル ---------- */
  /* ---------- イメージ ---------- */
  /* ---------- メイン ---------- */
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li {
    max-width: 128rem;
    min-height: 120vh;
    padding: 11.2rem 2.4rem 11.2rem 0;
    flex-wrap: nowrap;
  }
}
.item_area ul.category > li .scroll_title {
  width: 100vw;
  font-size: 16rem;
  line-height: 1;
  background: transparent;
  color: #fff;
  padding: 0;
  opacity: 0.3;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.item_area ul.category > li .scroll_title .scroll-track2 {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}
.item_area ul.category > li .scroll_title .scroll-track2 .img {
  padding: 1.6rem;
  text-shadow: 1px 0 rgba(83, 81, 81, 0.3), -1px 0 rgba(83, 81, 81, 0.3), 0 1px rgba(83, 81, 81, 0.3), 0 -1px rgba(83, 81, 81, 0.3);
  font-family: inter-variable, sans-serif;
  font-variation-settings: "wght" 700, "slnt" 0;
}
.item_area ul.category > li .title {
  order: 1;
  flex-basis: auto;
  width: 9rem;
  align-self: flex-start;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .title {
    width: 12.5%;
    padding-bottom: 8rem;
    position: sticky;
    top: 5rem;
    align-self: flex-start;
    z-index: 1;
    order: 1;
  }
}
.item_area ul.category > li .title h2 {
  margin: 0 auto;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.item_area ul.category > li .title h2 > p {
  display: inline-block;
  position: relative;
  padding: 1.4rem 0.8rem 1.8rem 0.1rem;
  border: none;
  margin: 0;
  letter-spacing: 0.3em;
  font-size: 1.6rem;
  margin-left: 0.4rem;
}
.item_area ul.category > li .title h2 > p:after {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  border: 1px solid #535151;
  pointer-events: none;
  z-index: 1;
}
.item_area ul.category > li .title h2 .title_2 {
  background-color: #fff;
}
.item_area ul.category > li .image {
  width: 18rem;
  order: 2;
  flex-basis: auto;
  align-self: flex-end;
  z-index: 1;
  text-align: center;
  transform: translate(-0.8rem, 0);
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .image {
    padding: 0 1rem;
    width: 30.5555555556%;
    position: sticky;
    bottom: 0;
    align-self: flex-end;
    z-index: 1;
    order: 3;
  }
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .image img {
    max-width: 700px;
  }
}
.item_area ul.category > li .main {
  order: 3;
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0 5.6rem;
  /* アイテム一覧 */
  /* スペシャルアイテム */
  /* あらすじ */
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .main {
    order: 2;
    flex: 0 0 auto;
    width: 57.6388888889%;
    z-index: 100;
    margin-top: 6rem;
    padding: 0 3rem;
  }
}
.item_area ul.category > li .main .item_list_wrap_outer {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .main .item_list_wrap_outer {
    width: 100%;
    margin: 0;
  }
}
.item_area ul.category > li .main .item_list_wrap_outer .scroll-btn {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .main .item_list_wrap_outer .scroll-btn {
    display: block !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    color: #535151;
    border: solid 1px #535151;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
  }
  .item_area ul.category > li .main .item_list_wrap_outer .scroll-btn.prev {
    left: -2.5rem;
  }
  .item_area ul.category > li .main .item_list_wrap_outer .scroll-btn.next {
    right: -2.5rem;
  }
}
.item_area ul.category > li .main .item_list_wrap_outer .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 2rem;
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list_wrap {
  padding: 3.2rem 2.4rem 4rem 2.4rem;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .main .item_list_wrap_outer .item_list_wrap {
    margin-top: 0;
    overflow-x: auto;
    position: relative;
    border-radius: 0.8rem;
  }
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: min-content;
  gap: 1.6rem 0.8rem;
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list li {
  width: 12rem;
  line-height: 1;
  scroll-snap-align: start;
  list-style: none;
  border-radius: 0.8rem;
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list li figure {
  width: 12rem;
  height: 14rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list li figure img {
  border-radius: 0.8rem;
  width: 110%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .item_area ul.category > li .main .item_list_wrap_outer .item_list li figure img {
    border-radius: 0;
  }
}
.item_area ul.category > li .main .item_list_wrap_outer .item_list li .credit {
  padding: 0;
  text-align: center;
}
.item_area ul.category > li .main .item_special {
  width: 100%;
  margin: 3.2rem auto 0;
  padding: 3.2rem;
  text-align: center;
  font-size: 1.2rem;
  position: relative;
  border: dotted 1px;
  border-radius: 0.8rem;
}
.item_area ul.category > li .main .item_special h3 {
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  border: solid 1px;
  border-radius: 100vh;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -2rem;
  left: -1rem;
  z-index: 99;
  transform: rotate(-10deg);
}
.item_area ul.category > li .main .item_special figure {
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}
.item_area ul.category > li .main .item_special figure img {
  width: auto;
  height: 130%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.item_area ul.category > li .main .item_special figure,
.item_area ul.category > li .main .item_special ul li {
  margin-bottom: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
}
.item_area ul.category > li .main .item_special figure img,
.item_area ul.category > li .main .item_special ul li img {
  border-radius: 0.8rem;
}
.item_area ul.category > li .main .item_special .credit {
  margin-bottom: 2.4rem;
}
.item_area ul.category > li .main .item_special .credit .btn {
  width: 80%;
}
.item_area ul.category > li .main .item_special .detail {
  width: 100%;
  margin: 1.6rem auto 0;
  text-align: left;
}
.item_area ul.category > li .main .item_special .detail .slick-dotted.slick-slider {
  margin-bottom: 0.8rem;
}
.item_area ul.category > li .main .item_special .detail ul {
  margin-bottom: 0.8rem;
}
.item_area ul.category > li .main .item_special .detail ul li {
  margin: 0 0.4rem;
}
.item_area ul.category > li .main .item_special .detail .slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.item_area ul.category > li .main .item_special .detail .slick-dots li {
  margin: 0;
  border: none;
  background: none;
}
.item_area ul.category > li .main .item_special .detail p {
  font-size: 1.1rem;
}
.item_area ul.category > li .main .story {
  width: 100%;
  margin: 5.6rem auto 0;
}
.item_area ul.category > li .main .story .wrap {
  width: 100%;
  padding: 3.2rem 3.2rem 1.6rem;
  border: dotted 1px;
  border-radius: 0.8rem;
  position: relative;
}
.item_area ul.category > li .main .story .wrap .wave-title {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  text-align: center;
  width: 16rem;
  margin: 0 auto;
  padding: 0;
}
.item_area ul.category > li .main .story .wrap .wave-title svg {
  display: block;
}
.item_area ul.category > li .main .story .wrap .wave-title h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  line-height: 1;
}
.item_area ul.category > li .main .story .wrap p {
  font-size: 1.2rem;
}
.item_area ul.category > li .main .story .wrap .btn {
  margin-top: 1.6rem;
  padding: 0.8rem 3.2rem 0.8rem 4rem;
}
.item_area ul.category > li .main small {
  margin: 1.6rem 0 0;
  font-size: 1.1rem;
  text-align: center;
  display: block;
}
.item_area ul.category .work_07 {
  padding: 5.6rem 2.4rem;
}
@media screen and (min-width: 768px) {
  .item_area ul.category .work_07 {
    padding: 11.2rem 6.4rem;
    min-height: 0;
  }
}
.item_area ul.category .work_07 .buy {
  background: #FBE9F1;
}
.item_area ul.category .work_07 .container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0;
}
.item_area ul.category .work_07 .container h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-bottom: 4.2rem;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #535151, -1px 1px 0 #535151, 1px -1px 0 #535151, -1px -1px 0 #535151;
}
.item_area ul.category .work_07 .container > p {
  margin-bottom: 4.2rem;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .item_area ul.category .work_07 .container > ul {
    display: flex;
    justify-content: space-between;
  }
}
.item_area ul.category .work_07 .container > ul > li {
  margin-bottom: 3.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .item_area ul.category .work_07 .container > ul > li {
    width: 47%;
    margin-bottom: 0;
  }
}
.item_area ul.category .work_07 .container > ul > li figure {
  margin-bottom: 1.6rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
}
.item_area ul.category .work_07 .container > ul > li figure img {
  vertical-align: bottom;
  border-radius: 0.8rem;
}
.item_area ul.category .work_01 .title_1 {
  background-color: #FFEC51;
}
.item_area ul.category .work_01 .buy,
.item_area ul.category .work_01 .scroll-btn {
  background: #CB97C6;
}
.item_area ul.category .work_01 .item_special h3 {
  background: #CB97C6;
}
.item_area ul.category .work_01 .story svg {
  fill: #CB97C6;
}
.item_area ul.category .work_02 .title_1 {
  background-color: #E4604C;
  color: #fff;
}
.item_area ul.category .work_02 .buy,
.item_area ul.category .work_02 .scroll-btn,
.item_area ul.category .work_02 .item_special h3 {
  background: #54B8DD;
}
.item_area ul.category .work_02 .story svg {
  fill: #54B8DD;
}
.item_area ul.category .work_03 .title_1 {
  background-color: #D84065;
  color: #fff;
}
.item_area ul.category .work_03 .buy,
.item_area ul.category .work_03 .scroll-btn {
  background: #FFB200;
}
.item_area ul.category .work_03 .item_special h3 {
  background: #FFB200;
}
.item_area ul.category .work_03 .story svg {
  fill: #FFB200;
}
.item_area ul.category .work_04 .title_1 {
  background-color: #AEDDF0;
}
.item_area ul.category .work_04 .buy,
.item_area ul.category .work_04 .scroll-btn {
  background: #F37A01;
}
.item_area ul.category .work_04 .item_special h3 {
  background: #F37A01;
}
.item_area ul.category .work_04 .story svg {
  fill: #F37A01;
}
.item_area ul.category .work_05 .title_1 {
  background-color: #F6BFD7;
}
.item_area ul.category .work_05 .buy,
.item_area ul.category .work_05 .scroll-btn {
  background: #ADCD5C;
}
.item_area ul.category .work_05 .item_special h3 {
  background: #ADCD5C;
}
.item_area ul.category .work_05 .story svg {
  fill: #ADCD5C;
}
.item_area ul.category .work_06 .title_1 {
  background-color: #FFDD46;
}
.item_area ul.category .work_06 .buy,
.item_area ul.category .work_06 .scroll-btn {
  background: #E54C8F;
}
.item_area ul.category .work_06 .item_special h3 {
  background: #E54C8F;
}
.item_area ul.category .work_06 .story svg {
  fill: #E54C8F;
}

/*-------------------------------
shopnews_area
--------------------------------- */
.shopnews_area {
  padding: 5.6rem 2.4rem;
  background: #F4B4D0;
  background-size: 16rem;
}
@media screen and (min-width: 768px) {
  .shopnews_area {
    padding: 15rem 3.2rem;
  }
}
.shopnews_area .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .shopnews_area .container {
    text-align: center;
  }
}
.shopnews_area .container h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-bottom: 4.2rem;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #535151, -1px 1px 0 #535151, 1px -1px 0 #535151, -1px -1px 0 #535151;
}
.shopnews_area .container h3 {
  margin-bottom: 0.8rem;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.shopnews_area .container p {
  margin-bottom: 3.2rem;
  font-size: 1.2rem;
}

/*-------------------------------
information_area
--------------------------------- */
.information_area {
  padding: 5.6rem 3.2rem;
  background: url("../images/bg_pink.png") #fff fixed;
  background-size: 16rem;
}
@media screen and (min-width: 768px) {
  .information_area {
    padding: 15rem 3.2rem;
  }
}
.information_area .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}
.information_area .container h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 4.2rem;
  text-align: center;
}
.information_area .container ul.info_box > li {
  margin-bottom: 4rem;
}
.information_area .container ul.info_box > li h3 {
  margin-bottom: 2.4rem;
  padding: 1.2rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  background: #F4B4D0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .information_area .container ul.info_box > li h3 {
    line-height: 1;
  }
}
.information_area .container ul.info_box > li ul.info_list {
  line-height: 1.6;
}
.information_area .container ul.info_box > li ul.info_list > li {
  margin-bottom: 1.6rem;
  padding-left: 1em;
  font-size: 1.2rem;
  text-indent: -1em;
}
.information_area .container ul.info_box > li:last-child {
  margin-bottom: 0;
}

/*-----------------------------
 footer
------------------------------------ */
footer {
  width: 100%;
  margin: 0 auto;
  padding: 5.6rem 3.2rem;
  text-align: center;
  background: #fff;
}
footer .f_logo {
  margin: 0 auto 3.2rem;
}
@media screen and (min-width: 768px) {
  footer .f_logo {
    display: flex;
    justify-content: center;
  }
}
footer .f_logo a,
footer .f_logo li {
  width: 12rem;
  margin: 0 auto;
  padding: 0;
  display: block;
  background: none;
  border: none;
}
footer .f_logo a img,
footer .f_logo li img {
  vertical-align: bottom;
}
footer .f_icon {
  margin: 0 auto 3.2rem;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer .f_icon li {
  margin: 0 1.6rem;
  padding: 0;
}
footer .f_icon li i {
  margin: 0;
  font-size: 2.4rem;
}
footer .bnr {
  width: 100%;
  margin: 0 auto 2.4rem;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .bnr {
    width: 38rem;
    display: flex;
    justify-content: center;
  }
}
footer .bnr a {
  width: 60%;
  margin: 0 auto 1.6rem;
  display: block;
}
@media screen and (min-width: 768px) {
  footer .bnr a {
    width: 16rem;
    margin: 0 auto;
  }
}
footer small {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  display: block;
}
footer small .nowrap {
  white-space: nowrap;
}

.ftr_ribon {
  background: #FBE9F1;
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.from-left {
  opacity: 0;
  transform: translateX(0);
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-name: fadeInFromLeft;
}

.from-right {
  opacity: 0;
  transform: translateX(0);
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-name: fadeInFromRight;
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.bounce-img {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes moveBg {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}/*# sourceMappingURL=style.css.map */