@charset "UTF-8";

:root {
  --pc: 60px;
  --sp: 40px;
}

html,body {
  position: relative;
  font-family: YakuHanJP,"Noto Sans JP", sans-serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(14px, 2.1vw, 18px);
  color: #fff;
  width: 100%;
  line-height: 1.6;
}
body {
  background-color: #000;
  background-image: url(../img/bg.webp);
  background-repeat: repeat;
  background-size: 75%;
  background-position: center top;
}
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,.5)
}
.d-block-t {
  position: fixed;
  top: -8px;
  width: 100%;
  height: 10px;
  background-color: #000;
  z-index: 0;
  opacity: 0.1;
}
.d-block-b {
  position: fixed;
  bottom: -8px;
  width: 100%;
  height: 10px;
  background-color: #000;
  z-index: 0;
  opacity: 0.1;
}

p {
  margin: .5em 0;
  text-align: left;
  word-break: break-all;
}
.attention {
  color: #ff788c;
}
span.tax {
  font-size: 70%;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
img {
  width: 100%;
}
p a {
  text-decoration: underline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

header {
  width: 0;
  max-width: 440px;
  height: 10px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  transition: all .5s;
}
header.active {
  width: 100%;
  transform: translateX(0);
}
.hamburger {
  display: block;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: var(--pc);
  height: var(--pc);
  text-align: center;
  background: #000;
  cursor: pointer;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 35%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}
header.active .hamburger span:nth-child(1) {
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header.active .hamburger span:nth-child(2) {
  opacity: 0;
}
header.active .hamburger span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  height: 100dvh;
  padding: var(--pc);
  background-color: #000;
  background-image: url(../img/bg.webp);
  background-repeat: repeat;
  background-size: 200%;
  background-position-x: 30%;
  background-position-y: 200px;
  transform: translateX(calc(100% - var(--pc)));
  transition: all .5s;
  overflow: hidden;
}
header.active .menu {
  transform: translateX(0);
}
.menu ul {
  margin: 0;
  font-size: 1.1em;
}
.menu ul li{
  margin: 1em 2em 1em 0;
  max-width: 260px;
  transform:translateX(-100%);
}
.menu ul li a{
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 1em 0 1em 1em;
}
.menu ul li a::before{
  position: absolute;
  content: '';
  bottom: 0;
  right: -10%;
  width: 120%;
  height: 100%;
  background: #000;
  z-index: -1;
  transform: skewX(-20deg);
}
.open ul li {
  animation: menuOpen .5s linear forwards;
}
.close ul li {
  animation: menuClose .5s linear forwards;
}
.open ul li:nth-child(2){
  animation-delay: .1s;
}
.open ul li:nth-child(3){
  animation-delay: .2s;
}
.open ul li:nth-child(4){
  animation-delay: .3s;
}
.open ul li:nth-child(5){
  animation-delay: .4s;
}
@keyframes menuOpen {
  from {
    transform:translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes menuClose {
  from {
    transform:translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.move-t {
  width: var(--pc);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255,255,255,.2);
  overflow: hidden;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  font-size: 40px;
  text-wrap: nowrap;
  z-index: 1;
}
.move-t>div{
  position: absolute;
  padding: 10px 0;
}
.sns {
  position: absolute;
  left: 0;
  bottom: 0;
  width:var(--pc);
  background: #000;
  padding: 2em 0 1.5em;
  z-index: 2;
}
.sns>p {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  color: #fff;
  font-size: 90%;
  padding: 0;
}
.sns>div {
  background-color: #fff;
  margin: .5em;
  border-radius: 4px;
}
.sns>div a {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#t-icon a {
  color: #000;
  padding: 8px;
}
#f-icon {
  color:#0866ff;
}
#f-icon a:hover {
  color:#0866ff;
}
#l-icon {
  color:#00B900;
}
#l-icon a:hover {
  color: #00B900;
}

@media screen and (max-width: 600px) {
  header {
    max-width: unset;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .hamburger {
    width: var(--sp);
    height: var(--sp);
  }
  .menu {
    padding: var(--sp);
    transform: translateX(100%);
    max-width: unset;
  }
  .move-t {
    width: var(--sp);
    font-size: 30px;
  }
  .sns {
    width: var(--sp);
  }
  .sns>div a {
    padding: 3px;
  }
  #t-icon a {
    padding: 5px;
  }
}


main {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
  padding-right: var(--pc);
}
@media screen and (max-width: 600px) {
  main {
      padding-right: 0;
  }
}

.catch {
  font-size: min(4.3vw,1.8em);
  text-align: center;
  font-weight: 700;
  margin: 0;
}
.catch span{
  display: inline-block;
  background: #000;
  margin: .5em 0;
  padding: 0 .2em;
}


section {
  position: relative;
  margin: 3em auto;
  padding: 0;
  width: 100%;
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
}

h3 {
  position: relative;
  font-size: 1em;
  margin: 2rem 0 .5rem;
  color: #fff;
  overflow: hidden;
}
h3::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
}
h3 span {
  position: relative;
  padding: .4em 1em;
  display: inline-block;
}
h3 span::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: -20%;
  width: 120%;
  height: 100%;
  background: #000;
  z-index: -1;
  transform: skewX(20deg);
}
h4 {
  position: relative;
  bottom: -1px;
  margin: 0;
  background: #000;
  display: inline-block;
  padding: 0.6em 1em 0.4em 1em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}


/* tokuten */
.tokuten-img {
  display: block;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

.tokuten-text {
  background: #fff;
  border: 2px solid #000;
  color: #000;
  padding: 1em .5em;
  text-align: center;
}
.tokuten-sub {
  margin: 0;
  text-align: right;
  font-size: 80%;
}

/* concept */
.illust-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.concept-text {
  position: absolute;
  bottom: 1em;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .7);
  width: 94%;
  margin: 0 auto;
  padding: 0 .5rem;
  font-size: 90%;
  border: 1px solid #000;
}
#thumbnail {
  padding: .4em;
  background: #000;
}
.thumbnail-item {
  cursor: pointer;
  margin: .2em;
  transition: all .5s;
}
#thumbnail .slick-track {
  transform: unset !important;
  margin: 0;
}

.thumbnail-item:not(.slick-current) {
  filter: grayscale(1);
}
#slider {
  background-color: #fff;
}
.slide-item {
  position: relative;
}
.slide-item::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  background: #ccc;
  z-index: -1;
  transform: rotate(20deg) translateX(100%);
  transform-origin: left bottom;
  transition: all .5s;
}
.slide-item.is-active::before {
  transform: rotate(20deg);
}

.name {
  position: absolute;
  top: 2rem;
  left: 0;
  font-size: min(7vw,40px);
  z-index: -1;
  transform: translateX(-120%);
  transition: all .5s;
}
.name-e,.name-j {
  position: relative;
  background: #000;
  color: #fff;
  padding: .5rem 1rem .5rem 1.5rem;
  line-height: 1;
}
.name-j {
  font-size: 50%;
  display: inline-block;
  vertical-align: top;
  margin-top: .5rem;
}
.name-e::before,.name-j::before {
  content: '';
  position: absolute;
  top: 0;
  right: -4vh;
  width: 4vh;
  height: 100%;
  background: #000000;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.name-j::before {
  right: -2.5vh;
  width: 2.5vh;
}
.name-e::after,.name-j::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(1);
  transform-origin: right;
}
.character-img {
  opacity: 0;
  transition: all 1s;
}

.is-active .name {
  transform: translateX(0);
}
.is-active .character-img {
  opacity: 1;
}
.is-active .name-e::after,.is-active .name-j::after {
  animation: nameanime 1s ease 0.3s alternate forwards;
}
@keyframes nameanime {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: .5em 0;
}
.goods-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
  padding: 0;
  line-height: 1.2;
  position: relative;
  background-color: #fff;
  border: 1px solid #000;
  text-decoration: none;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
  overflow: hidden;
}
.goods-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  transition: all .4s;
}
.goods-text {
  text-align: left;
  font-size: 80%;
  padding: 0 .5rem;
  color: #000;
}
.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
.goods-price>div {
  position: relative;
  display: inline-block;
  padding: 0 .4em 0 0;
}
.goods-price>div::before {
  position: absolute;
  content: '';
  bottom: 0;
  right: -10%;
  width: 120%;
  height: 100%;
  background: #000;
  z-index: -1;
  transform: skewX(-20deg);
}
.goods-item:hover {
  color: #000;
}
a.all span {
  font-size: 80%;
}
a.all::before {
  position: absolute;
  content: '';
  display: block;
  right: .8em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border-bottom: none;
  border-left: none;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.all:hover {
  border: 3px solid #fff;
}
a.all:hover::before {
  border-color: #fff;
}
@media screen and (min-width: 1025px) {
  a.goods-item:hover .goods-img img{
    transform: scale(1.2);
  }
}
@media screen and (max-width: 600px) {
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
    gap: .5em;
  }
}

/* campaign */
.schedule {
  background: rgba(0, 0, 0, .5);
  padding: 1em;
}
.schedule-text {
  border: none;
  padding: 0;
  margin: 0 0 .5em;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
}
.schedule-text::before,.schedule-text::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #fff;
  display: block;
}
.schedule-text::before {
  margin-right: .4em;
}
.schedule-text:after {
  margin-left: .4em;
}
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1em;
}
.schedule-list {
  overflow: hidden;
  text-decoration: none;
}
.schedule-number {
  position: relative;
  display: flex;
  align-items: center;
}
.schedule-number span {
  padding: 2px .5em;
  font-size: 100%;
  line-height: 1;
  display: inline-block;
  margin-left: .5em;
  font-size: 80%;
}
.schedule-number span.now {
  background: #b4192f;
}
.schedule-number span.fin {
  background: #fff900;
  color: #000;
}
.schedule-img {
  padding-bottom: 50%;
  background: #fff;
  border: 2px solid #b4192f;
  border-bottom: none;
}
.schedule-link {
  position: relative;
  display: block;
  background-color: #b4192f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 80%;
}
a.schedule-list .schedule-link::before{
  position: absolute;
  content: '';
  display: block;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-bottom: none;
  border-left: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.coming .schedule-link {
  background-color: #666;
}
.coming .schedule-img {
  border: none;
}
.fin .schedule-link {
  background-color: #000;
}
.fin .schedule-img {
  border-color: #000;
}

.schedule .schedule-list:nth-child(1) .schedule-img {
  background: url(../img/logo01.webp), url(../img/02-dm.webp), #fff;
  background-size: 50%, 200%, 100%;
  background-position: 95% 50%, 70% 30%, center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(2) .schedule-img {
  background: url(../img/logo02.webp), url(../img/02-gx.webp), #fff;
  background-size: 55%, 180%, 100%;
  background-position: 100% 50%, 105% 16%, center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(3) .schedule-img {
  background: url(../img/logo03.webp), url(../img/01-5ds-jfheauf.webp?1216), #fff;
  background-size: 55%, 200%, 100%;
  background-position: 95% 50%, 68% 26%, center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(4) .schedule-img {
  background: url(../img/logo04.webp), url(../img/01-z-heaoufaf.webp), #fff;
  background-size: 52%, 130%, 100%;
  background-position: 97% 50%, 120% 22%, center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(5) .schedule-img {
  background: url(../img/logo05.webp) ,#aaa;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(6) .schedule-img {
  background: url(../img/logo06.webp) ,#aaa;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(7) .schedule-img {
  background: url(../img/logo07.webp) ,#aaa;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.schedule .schedule-list:nth-child(8) .schedule-img {
  background: url(../img/logo08.webp) ,#aaa;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .schedule-wrap {
    grid-template-columns: 1fr 1fr;
    gap: .5em;
  }
}

.table-base {
  border-collapse: collapse;
  margin: 0 0 1em;
  border: 2px solid #000;
  max-width: 540px;
  width: 100%;
}
.table-base th, .table-base td {
  border: 1px solid #000;
  padding: 0.5em 1em;
}
.table-base th {
  position: relative;
  background: rgba(0, 0, 0, .5);
  font-weight: 500;
  white-space: nowrap;
  border-right: none;
  text-align: center;
}
.table-base td {
  position: relative;
  background: rgba(0, 0, 0, .2);
  font-weight: 500;
  border-left: none;
  overflow: hidden;
}
.table-base td::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  left: -5px;
  width: 10px;
  height: 10px;
  background: #b4192f;
  transform: rotateZ(45deg);
}
ul.list-box {
  list-style: none;
  text-align: justify;
  word-break: break-all;
  padding: 0;
}
.list-box li {
  position: relative;
  margin: 0 0 0.5em;
  padding-left: 1em;
  line-height: 1.5;
}
.list-box li:before {
  display: block;
  content: '';
  height: 8px;
  width: 8px;
  position: absolute;
  left: 0;
  top: .5em;
  background: #fff;
}
.banner-wrap {
  max-width: 500px;
  text-align: center;
  font-size: 80%;
}
.banner-img {
  max-width: 500px;
}

/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 2.5em 0 2em;
  font-size: 12px;
  background: rgba(0,0,0,.5);
  margin: 4em 0 0;
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}
footer p.socialshare {
  font-size: 1rem;
  margin: 0;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}
.cospa_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 160px;
  margin: 0 auto;
}
.cospa_logo a{
  background: #fff;
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}


#modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all .5s;
}
#modal-contents {
  position: relative;
  background: rgba(255,255,255,.9);
  color: #000;
  padding: 1em;
  border-radius: 10px;
  cursor: auto;
  text-align: center;
  font-size: min(4vw,24px);
  border: 3px solid #fff;
}
#modal-contents span{
  position: absolute;
  top: -1em;
  right: -.5em;
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  cursor: pointer;
  background: #000;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
}
#modal.close {
  opacity: 0;
  visibility: hidden;
}
.banner-img.fin {
  position: relative;
  line-height: 0;
}
.banner-img.fin::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: pre;
  content: 'こちらのキャンペーンは\A終了しました';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  line-height: 1.4;
  font-size: 1.2em;
  letter-spacing: -1px;
}