@charset "UTF-8";

/* ===================================================================
各展覧会ごとのスタイル
=================================================================== */

:root {
  --red: #e4002a;
  --deepred: #6e0014;
  --blue: #142887;
  --white: #fff;
  --black: #000;
  --pc: 60px;
  --sp: 48px;
}

html,body {
  position: relative;
  font-size: clamp(14px, 2.1vw, 18px);
  color: var(--white);
  width: 100%;
  background: none;
  line-height: 1.8;
  background: var(--black);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
  margin: 0;
  padding: 0;
  text-align: left;
  word-break: break-all;
}
p span {
  display: inline-block;
}
.online {
  line-height: 1.4;
  margin: 1rem 0 0;
}
span.tax {
  font-size: 80%;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--red);
}
img {
  width: 100%;
}
p a {
  text-decoration: underline;
}

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

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.hamburger-wrap {
  position: fixed;
  z-index: 999;
  right: var(--pc);
  top: 0;
  text-align: center;
  background: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  border-top: none;
  transform: translate(0,-100%);
  transition: all .5s;
}
.hamburger-wrap.in {
  transform: translate(0,0);
}
.hamburger-menu {
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  font-size: 1.2em;
  letter-spacing: 2px;
  padding-left: 20px;
}
.hamburger {
  position: relative;
  width: var(--pc);
  height: var(--pc);
}
.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%;
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  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: 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: 100%;
  padding: var(--pc);
  background: url(../img/bg.png) repeat, rgba(0, 0, 0, .8);
  transform: translateX(100%);
  transition: all .5s;
  overflow: hidden;
}
.menu.active {
  transform: translateX(0);
}
.menu ul {
  margin: 0;
  font-size: 1.3em;
  font-family: YakuHanJP, "PT Sans Narrow", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu ul li{
  margin: 1em 0;
  transform: translateX(calc(100% + var(--pc)));
}
.menu ul li a{
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: .5em 0;
  background: #000;
  border: 1px solid var(--red);
}
.menu ul li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--red);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.menu ul li a span.menu-text{
  position: relative;
  background: #000;
  padding: 0 1rem;
}
.menu ul li a span.sub{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: .6em;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: #000;
  padding: 0 1em;
  color: var(--red);
}
.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;
}
.open ul li:nth-child(6){
  animation-delay: .5s;
}
.open ul li:nth-child(7){
  animation-delay: .6s;
}
@keyframes menuOpen {
  from {
    transform: translateX(calc(100% + var(--pc)));
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes menuClose {
  from {
    transform:translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: none;
  }
  .hamburger-wrap {
    right: 0;
    border-right: none;
    transform: translate(100%,-100%);
  }
}
@media screen and (max-width: 600px) {
  .menu {
    max-width: 100%;
    padding: var(--sp);
  }
  .hamburger {
    width: var(--sp);
    height: var(--sp);
  }
}


main {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.mainSec{
  position: relative;
  margin: 1.2em auto 5em;
  padding: .6em;
  width: 100%;
  max-width: 900px;
  border: 4px solid var(--deepred);
}
.sec-inner {
  background: url(../img/bg.png)repeat;
  padding: .7em 1em;
}
@media screen and (max-width: 900px) {
  .mainSec{
    border-right: none;
    border-left: none;
  }
}

span.coming {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.4em;
  margin: 0;
  height: 30vh;
  color: rgba(255, 255, 255, .2);
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
}

/* top */
#f-view {
  position: relative;
  background: url(../img/kv.webp) no-repeat;
  background-size: 160%;
  background-position: -16vw center;
  padding: 0;
  z-index: 1;
  height: 90vh;
  margin-bottom: 10vh;
}
#f-view::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 10vh;
  background: linear-gradient(0deg, var(--black), transparent);
}
#f-view::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: url(../img/n_logo.png) no-repeat;
  background-size: contain;
  width: 10%;
  height: 112px;
  max-width: 400px;
}
.f-cr {
  position: absolute;
  bottom: -1em;
  left: 1em;
  z-index: 2;
  line-height: 1.2;
  font-size: 12px;
  color: #aaa;
}

h1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10vw;
  width: 44%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
h1 img {
  filter: drop-shadow(0 0 6px var(--black));
}
@media (orientation: portrait){
  #f-view {
    background-size: 400vw;
    background-position: -74vw center;
    margin-bottom: 14vh;
  }
  h1 {
    top: unset;
    bottom: 0;
    right: 0;
    left: 0;
    width: 90%;
  }
  .f-cr {
    bottom: -3rem;
    font-size: 10px;
  }
  #f-view::before {
    top: 1rem;
    right: 1rem;
    width: calc(100vh / 10);
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  #f-view {
    height: 140vw;
  }
}

h2 {
  position: relative;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 auto;
  font-size: 3.6em;
  max-width: 900px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 48px;
}
h2 span {
  display: inline-block;
  padding: 0 .2em;
}
h2::before, h2::after {
  content: "";
  flex-grow: 1;
  height: 100%;
  background: url(../img/h2.png);
  background-size: contain;
  background-position-x: left;
  background-repeat: round;
}
h2::after {
  transform: rotate(180deg);
}
h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--black);
  margin: auto;
  z-index: 1;
}
.h3-wrap {
  position: absolute;
  top: -1em;
  margin: 0 auto;
  padding: 0 1em;
  line-height: 1;
  left: 0;
  width: auto;
  right: 0;
  text-align: center;
}
h3 {
  margin: 0 auto;
  padding: 0 1em;
  line-height: 1;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  background: var(--black);
  display: inline-block;
  letter-spacing: 4px;
}

.h4-wrap {
  position: relative;
  display: inline-flex;
  border: 1px solid var(--deepred);
  padding: 4px;
  margin: 1em 0 .4em;
  background: var(--black);
}
h4 {
  font-size: .9em;
  font-weight: 500;
  border: 1px solid var(--red);
  display: inline-block;
  padding: 0 1em;
  margin: 0;
}
.h4-wrap::before,.h4-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--black);
  width: calc(100% - 18px);
  height: 3px;
}
h4::before,h4::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--black);
  width: 3px;
  height: calc(100% - 18px);
}
.h4-wrap::before {
  top: 3px;
}
.h4-wrap::after {
  bottom: 3px;
}
h4::before {
  left: 3px;
}
h4::after {
  right: 3px;
}





/* news */
.news-box {
  margin: 0;
}
.news-box dt {
  color: var(--blue);
  background: rgba(255, 255, 255, .8);
  display: inline-block;
  padding: 0 .5em;
  margin: 0;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}
.news-box dd {
  margin: 0 0 1em;
  line-height: 1.4;
}
.news-box dd:last-child {
  margin: 0;
}
.news-box a {
  text-decoration: underline;
}
.news-box a:hover {
  text-decoration: none;
  color: var(--red);
}

/* info */
.event-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: .5em auto;
}
.event-box {
  font-size: .9em;
  position: relative;
  padding: 1em;
  background: rgba(255, 255, 255, .2);
  text-align: center;
  clip-path: polygon(1em 0, 100% 0, 100% calc(100% - 1em), calc(100% - 1em) 100%, 0 100%, 0 1em);
  font-family: YakuHanJP, "PT Sans Narrow", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.event-box span {
  font-size: 140%;
}
.event-box.fin {
  background-color: rgba(255, 0, 0, .2);
  color: #666;
}
.event-box.fin::after {
  position: absolute;
  content: '終了しました';
  font-weight: 900;
  font-style: normal;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transform: rotate(-10deg);
}
@media screen and (max-width: 600px) {
  .event-wrap {
    grid-template-columns: 1fr;
  }
}

/* tokuten */
.sticker {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin: 1em auto;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .sticker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin: 1em auto 0;
    width: 100%;
  }
}
.tokuten-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 4px;
  line-height: 1.4;
}
.tokuten-table th {
  font-weight: 400;
  padding: .4em;
  border-right: 1px dashed var(--black);
  background: rgba(255, 255, 255, .2);
  white-space: nowrap;
  text-align: left;
}
.tokuten-table td {
  padding: .4em;
  background: rgba(255, 255, 255, .2);
}
.br500 {
  display: none;
}
@media screen and (max-width: 500px) {
  .br500 {
    display: block;
  }
}

/* goods */
.goods-title {
  max-width: 160px;
  margin: 2em auto 1em;
}
.goods-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  margin: 1em auto;
  font-size: .9rem;
}
.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: rgba(255, 255, 255, .2);
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
}
.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;
}
.goods-text {
  line-height: 1.4;
  font-size: .9em;
  padding: 0 .5rem;
}
.goods-text span.senko {
  background: var(--red);
  padding: 0 .4em;
  display: inline-block;
  margin-right: .4em;
  font-weight: 600;
}
.goods-price {
  text-align: right;
  margin-top: auto;
  padding: 0 .5rem;
}
.goods-price span {
  font-size: 80%;
}
a.goods-link {
  font-size: .9em;
  padding: .5rem;
  text-align: center;
  margin: 0 .5em .5em;
  background: var(--black);
}
a.goods-link:hover {
  color: var(--white);
  box-shadow: 0 0 0 1px var(--deepred);
}
@media screen and (max-width: 600px) {
  .goods-wrap {
    grid-template-columns: 1fr 1fr;
    gap: .5em;
  }
}

/* access */
.store-outer {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
}
.store-wrap {
  padding: .5em 1em 1em;
  margin: 0;
  align-content: flex-start;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
  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;
}
.store-map {
  width: 100%;
  padding: 0;
  margin: 0;
}
.store-wrap h4 {
  text-align: center;
  margin: 0 auto;
  border: none;
  font-size: 1em;
}
.store-text {
  width: 100%;
  line-height: 1.4;
  margin-bottom: .5em;
}
.store-text p {
  margin-top: 4px;
}
h5 {
  margin: .8rem 0 0;
  font-size: .8rem;
  font-weight: 400;
  border-bottom: 1px solid var(--black);
  padding: 0 0 4px;
}
.store-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5em;
  margin-top: auto;
}
.store-link a {
  background: var(--black);
  text-align: center;
  padding: .5em 0;
  font-size: .8rem;
}
a.store-x {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.store-x svg{
  width: 1.2em;
  margin-right: .5em;
}
.store-link a:hover {
  color: var(--white);
  box-shadow: 0 0 0 1px var(--deepred);
}
@media screen and (max-width: 700px) {
  .store-outer {
    grid-template-columns: 1fr;
  }
}

ul.text-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0.5em auto 0;
  text-align: left;
  max-width: 300px;
  color: #3c3c3c;
}
ul.text-list li {
  position: relative;
  padding-left: 20px;
}
ul.text-list li::before {
  content: '●';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f4a6d7;
}
ul.text-list img {
  max-width: 210px;
  display: block;
  padding: .4em 0;
}

#xaccount {
  text-align: center;
  margin: 2rem auto;
}
.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;
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 0.2em 2em;
  color: var(--white);
  display: inline-block;
  font-weight: 600;
}
a.follow-button:hover {
  background: var(--white);
  color: var(--black);
}

/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 2.5em 0 2em;
  font-size: 12px;
  margin: 0;
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}
footer p.socialshare {
  font-size: 1rem;
  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%;
}