@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@600;700&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --darkred: #a00000;
  --red: #e60014;
  --orange: #fabe00;
  --white: #fff;
  --gray: #5a5a5a;
  --black: #000;
}

html,body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--white);
  font-weight: 600;
  width: 100%;
  height: 100%;
  background: none;
  line-height: 1.6;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  background: #0a0b16;
  width: 100%;
  height: 100%;
  z-index: -1;
}

p {
  margin: .5em 0;
  text-align: justify;
  word-break: break-all;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

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

header {
  position: fixed;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, var(--darkred), var(--orange));
  z-index: 1;
  transition: all 0.6s;
}

#mein-contents {
  position: relative;
  width: 70%;
  right: 0;
  margin: 0 0 0 auto;
}
main {
  position: relative;
  margin: 0;
  padding: 100vh 0 0;
}

#top-kv {
  position: fixed;
  width: 70%;
  height: 100vh;
  top: 0;
  right: 0;
  background: url(../img/kv02.webp) no-repeat;
  background-size: 140%;
  background-position: 30% 35%;
  transition:  all .5s;
}
#top-kv.scroll {
  filter: brightness(.7) blur(2px);
}

.mainSec {
  background: rgba(255, 255, 255, .3);
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 50px), calc(100% - 50px) 100%, 50px 100%, 0% calc(100% - 50px), 0% 50px);
  max-width: 1200px;
  width: 96%;
  padding: 1px;
  margin: 0 auto 4em;
}
.mainSec-inner{
  position: relative;
  margin: 0 auto;
  border: none;
  padding: 50px;
  width: 100%;
  background: url(../img/contents-bg.png) repeat, rgba(0, 0, 0, .7);
  background-size: 99px;
  background-position: center top;
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 50px), calc(100% - 50px) 100%, 50px 100%, 0% calc(100% - 50px), 0% 50px);
}
@media screen and (max-width: 500px) {
  .mainSec {
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0% calc(100% - 20px), 0% 20px);
  }
  .mainSec-inner{
    padding: 3rem 20px;
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0% calc(100% - 20px), 0% 20px);
  }
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
  position: fixed;
  z-index : 999;
  right : 0;
  top   : 0;
  width : 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  transform: translate3d(0,0,30px);
  background: var(--black);
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 0;
  right: 0;
  background: var(--white);
  -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: 30%;
}
.hamburger span:nth-child(2) {
  top: 48%;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 65%;
}

/* navi_open */
.hamburger.active span:nth-child(1) {
  top : 48%;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 48%;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}


nav.globalMenu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 94%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
nav.globalMenu::before {
  content: '';
  position: absolute;
  background: url(../img/bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  animation: 20s ease-in-out infinite alternate zoomIn;
}
@keyframes zoomIn {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.2) rotate(3deg);
  }
}
nav.globalMenu ul {
  margin: 0;
  padding: 1em;
  width: 80%;
  max-width: 300px;
  background: none;
  color: #fff;
  font-weight: 900;
  text-align: left;
  font-size: 1.3em;
  border: 1px solid var(--gray);
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}
nav.globalMenu ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenu ul li a:hover span.h2-number{
  color:var(--white);
}
nav.globalMenu ul li a {
  padding: .5em;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
nav.globalMenu ul li.nav_logo {
  margin: 0 auto .5em;
  width: 70%;
}


h1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  margin: auto;
  padding: 0 0 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all .5s;
}
h1.scroll {
  opacity: 0;
  pointer-events: none;
}


@media screen and (max-width: 1023px),(orientation: portrait) {
  #mein-contents {
    width: 100%;
  }
  header {
    transform: translateY(-100%);
    width: 100%;
  }
  header.active {
    transform: translate3d(0, 0, 20px);
  }
  .hamburger {
    display: block;
  }
  #top-kv {
    width: 100%;
    background-size: 200%;
    background-position: 50% 50%;
  }
  h1 {
    width: 100%;
    max-width: 600px;
    padding: 50% 1em 0;
    margin: 0 auto;
    right: 0;
  }
}

h2 {
  position: relative;
  margin: 0 auto 1rem;
  padding: 0;
  font-size: 2em;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
span.h2-number {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, var(--darkred), var(--red));
  color: #000;
  padding: 0;
  width: 2em;
  margin-right: .2em;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
}
span.h2-title {
  font-weight: 900;
  background-image: -webkit-linear-gradient(90deg, var(--red), var(--orange));
  background-image: linear-gradient(90deg, var(--red), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
span.h2-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 80%;
  font-style: italic;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform:uppercase;
}
span.h2-sub::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -110px;
  width: 100px;
  height: 1px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  h2 {
    margin: 0 auto 3rem;
  }
  span.h2-sub {
    bottom: -1.5rem;
  }
}

h3 {
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  padding: 0;
  border: none;
  margin: 0;
}
#goods h3 {
  background: linear-gradient(90deg, var(--red), var(--orange));
  font-size: 1.4em;
  letter-spacing: 4px;
  text-shadow: 2px 1px 0 var(--black);
}

h4 {
  position: relative;
  font-size: 1em;
  font-weight: 500;
  margin: 1em 0 0;
  padding: .2em 1em;
  display: inline-block;
  background: var(--black);
  border-image-slice: 1;
  border: 1px solid;
  border-image: linear-gradient(135deg, var(--darkred), var(--orange)) 1;
}

span.small {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 70%;
}




/* news */
.news-box {
  background: none;
  height: 120px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}
.news-box dt,.news-box dd{
  margin: 0;
}
.news-box dt {
  color: var(--red);
  font-size: 80%;
  padding: 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
}
.news-box dd {
  margin: 0 0 0.5em;
  line-height: 1.4;
  padding: 0;
}
.news-box a {
  text-decoration: underline;
}
.news-box a:hover {
  text-decoration: none;
  color: var(--orange);
}

/* information */
.event-wrap {
  font-family: YakuHanJP,"Noto Sans JP", sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: 1em auto;
}
.event-box {
  position: relative;
  padding: 1em 0;
  border: 1px solid var(--gray);
  background: var(--black);
  text-align: center;
}
.event-box span {
  font-size: 130%;
}
@media screen and (max-width: 1200px) {
  .event-wrap {
    grid-template-columns: 1fr;
  }
}
.event-box.fin {
  background: var(--gray);
  color: #bebebe;
}
.event-box.fin::before {
  content: '終了しました';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: var(--red);
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  transform: rotate(-10deg);
}


/* gallery */
ul.text-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0.5em auto 0;
}
ul.text-list li{
  position: relative;
  padding-left: 1.4em;
  margin: .5em 0;
  line-height: 1.4;
}
ul.text-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 1.2em;
  height: 2em;
  background: url(../img/icon.svg) no-repeat;
  background-size: contain;
}
ul.text-list li a:hover {
  color: var(--orange);
}
.gallery-img {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: .4em;
  margin: 1em 0;
}
@media screen and (max-width: 600px) {
  .gallery-img {
    grid-template-columns: 1fr;
  }
}

/* campaign */
.comingsoon,.nowprinting {
  position: relative;
  width: 100%;
  height: 30vh;
  background: rgba(255, 255, 255, .2);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
}
.comingsoon::before {
  position: absolute;
  content: 'Coming soon';
}
.nowprinting::before {
  position: absolute;
  content: 'Now printing';
}
.tokuten {
  margin: 1em 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .5em;
}
.tate {
  transform: rotate(90deg);
  transform-origin: 35% 50%;
}
@media screen and (max-width: 1200px) {
  .tokuten {
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 600px) {
  .tokuten {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 1em;
  }
}

/* goods */
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: 1em 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.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: rgba(255, 255, 255, .2);
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: var(--white);
  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;
}
.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0 .2em .1em;
  background: var(--darkred);
}
.goods-price span {
  font-size: 80%;
}
@media screen and (max-width: 600px) {
  .goods-wrap {
      grid-template-columns: 1fr 1fr;
  }
}

/* access */
.store-outer {
  margin: .5em auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
.store-wrap {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gray);
  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.5em 0 0;
  background: rgba(0, 0, 0, .8);
}
.store-map {
  width: 100%;
  padding: 0 .5em .5em;
  margin: 0;
}
.store-text {
  margin: 0;
  padding: 0 .5em;
  width: 100%;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.store-text>h4{
  margin: 0;
  font-size: 80%;
}
.store-text>p {
  margin-top: .2em;
  line-height: 1.4;
}
.store-link-wrap {
  margin-top: auto;
}
a.store-link{
  position: relative;
  background: var(--gray);
  padding: 0.4em;
  margin: 0;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 80%;
}
a.store-link:hover{
  background: linear-gradient(90deg, var(--darkred), var(--orange));
}
a.store-link::before {
  position: absolute;
  content: '';
  display: block;
  right: 10px;
  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);
}
@media screen and (max-width: 1200px) {
  .store-outer {
    grid-template-columns: 1fr;
  }
}

/* sns */

#xaccount {
  position: relative;
  text-align: center;
  margin: 0 auto 4rem;
  font-weight: 700;
}
#xaccount>span {
  text-shadow: 0 0 2px var(--black), 0 0 2px var(--black), 0 0 4px var(--black), 0 0 4px var(--black);
}
.follow-icon {
  display: block;
  max-width: 240px;
  width: 50%;
  margin: 0.5em auto 1em;
  border-radius: 30px;
  overflow: hidden;
}
a.follow-button {
  text-decoration: none;
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 0.2em 2em;
  display: inline-block;
}
a.follow-button:hover {
  background: linear-gradient(90deg, var(--darkred), var(--orange));
}

/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 0 1em 1.5em;
  font-size: 12px;
  text-shadow: 0 0 2px var(--black), 0 0 2px var(--black), 0 0 4px var(--black), 0 0 4px var(--black);
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}
footer p.socialshare {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: #ffffff;
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  padding: 8px;
  border-radius: 4px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon {
  color:#0866ff;
}
#f-icon a:hover {
  color:#0866ff;
}
#l-icon {
  color:#00B900;
}
#l-icon a:hover {
  color: #00B900;
}

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

/* readmore */
.readmore {
  position: relative;
  margin: 2em auto 0;
  padding: .5em 1em 55px;
  border: 1px solid var(--white);
  background-color: var(--black);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.readmore-hide {
  height: 0;
  overflow: hidden;
  transition: all .4s;
}
.readmore button{
  position: absolute;
  display: table;
  left: 50%;
  bottom: 1rem;
  margin: 0 auto;
  width: 200px;
  height: 30px;
  padding: 0;
  text-align: center;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
  transition: all .4s;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
}

p.attention {
  font-size: 80%;
}
.readmore h5 {
  border-bottom: 1px solid var(--orange);
  color: var(--orange);
  margin: 1rem 0 0;
  font-size: .9em;
  font-weight: 600;
}
.readmore p a {
  text-decoration: underline;
}
.readmore p a:hover {
  text-decoration: none;
  color: var(--orange);
}