@charset "UTF-8";
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------

$pcFontXs: 10px;
$pcFontS: 12px;
$pcFontM: 14px;
$pcFontL: 22px;
$pcSpace1: 19px;
$pcSpace2: 38px;
$pcSpace3: 57px;
$red: #000;
$spFontS: 10px;
$spFontM: 14px;
$spFontL: 16px;*/
/* Common
---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  /* 游ゴシック対策 */
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "palt";
  /*CSSでカーニング調整をして先頭が 「 （カッコ）の左端を揃える*/
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@media screen and (min-width: 1000px) {
  body {
    font-size: 16px;
  }
}

li {
  list-style: none;
}

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

/* 保存禁止の画像 */
img.selectNone,
.goods_list li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

a {
  color: #fff;
  transition: 0.2s;
}
@media screen and (min-width: 1000px) {
  a:hover {
    opacity: 1;
    animation-duration: .5s;
    animation-name: flash;
  }
}

@keyframes flash {
  0% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

@media screen and (max-width: 999px) {
  .sp_none {
    display: none;
  }
}

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

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

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* -----------------------------
　　スマホ用サイドメニュー
----------------------------- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  /*
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  */
  display: none;
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .drawer-menu {
    display: none;
  }
}
.drawer-menu .inner_1 {
  position: relative;
  width: 100%;
  height: 100%;
}
.drawer-menu .inner_1 .inner_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
@media screen and (min-width: 1000px) {
  .drawer-menu .inner_1 .inner_2 {
    width: 50%;
  }
}
.drawer-menu .inner_1 ul li {
  width: 100%;
  margin-bottom: 20px;
  opacity: 0;
}
.drawer-menu .inner_1 ul li:nth-child(1) {
  animation: navLeft 0.7s 0.1s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(2) {
  animation: navLeft 0.7s 0.2s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(3) {
  animation: navLeft 0.7s 0.3s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(4) {
  animation: navLeft 0.7s 0.4s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(5) {
  animation: navLeft 0.7s 0.5s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(6) {
  animation: navLeft 0.7s 0.6s forwards;
}
.drawer-menu .inner_1 ul li a {
  text-decoration: none;
}
.drawer-menu .inner_1 ul li a img {
  width: auto;
  height: 29px;
  padding-bottom: 5px;
}
.drawer-menu .inner_1 ul li a span {
  font-size: .8em;
  display: block;
}
.drawer-menu .inner_1 .drawer-menu_others {
  margin-top: 70px;
  animation: navOthers 1s 1.2s forwards;
  opacity: 0;
}
.drawer-menu .inner_1 .drawer-menu_others a {
  text-decoration: none;
  padding: 5px 0;
}
.drawer-menu .inner_1 .drawer-menu_others .tw {
  margin-bottom: 8px;
}
.drawer-menu .inner_1 .drawer-menu_others .tw i {
  padding-right: 12px;
  font-size: 1.3em;
}
.drawer-menu .inner_1 .drawer-menu_others .byt img {
  width: auto;
  height: 1.3em;
  vertical-align: middle;
  padding-right: 12px;
}

@keyframes navLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes navOthers {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu-btn {
  position: fixed;
  display: block;
  top: 3px;
  right: 10px;
  width: 54px;
  height: 54px;
  text-align: center;
  cursor: pointer;
  z-index: 8888;
  /*
  background: #102246;
  border-radius: 50%;
  */
}
@media screen and (min-width: 1000px) {
  .menu-btn {
    display: none;
  }
}

.bar {
  position: absolute;
  top: 18px;
  left: 15px;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.bar.middle {
  top: 26px;
  opacity: 1;
}
.bar.bottom {
  top: 34px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
    /*
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
    */
  opacity: 1;
  display: block;
  z-index: 4;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
  width: 35px;
  top: 14px;
  background-color: #fff !important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 35px;
  top: 38px;
  background-color: #fff !important;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.close-menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

/* ---------------------------------------------------
 Common
--------------------------------------------------- */
body.fadeIn_body {
  animation: fadeInbody 1s ease 0s 1 normal;
  -webkit-animation: fadeInbody 1s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Loding --- */
.loding {
  width: 100vw;
  height: 100vh;
  background: url("../images/opening_sp.png") no-repeat center center/contain;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
  z-index: 9999;
}
@media screen and (min-width: 1000px) {
  .loding {
    background-image: url("../images/opening_pc.png");
  }
}
.loding.close {
  animation: fadeOut 1s ease-in 0s forwards;
  opacity: 0;
  display: none;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
  }
  50% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/* --- Header --- */
.pc_header {
  /* PC用 */
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc_header {
    display: block;
  }
}

.otherPages_header {
  /* トップページ以外 */
  width: 100%;
  background: #000;
  padding: 16px 5%;
}
.otherPages_header .logo {
  width: 120px;
}
.otherPages_header nav.header_nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .otherPages_header nav.header_nav {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .pc_header,
  .otherPages_header {
    width: 100%;
    height: 100px;
    background: #000;
    padding: 0;
  }
  .pc_header > div,
  .otherPages_header > div {
    width: 100%;
    height: 100px;
    /*
    max-width: 1280px;
    margin: 0 auto;
    */
    position: relative;
  }
  .pc_header .logo,
  .otherPages_header .logo {
    position: absolute;
    width: 140px;
    top: 30px;
    left: 50px;
  }
  .pc_header nav.header_nav,
  .otherPages_header nav.header_nav {
    position: absolute;
    top: 30px;
    right: 40px;
  }
  .pc_header nav.header_nav a, .pc_header nav.header_nav .none_url,
  .otherPages_header nav.header_nav a,
  .otherPages_header nav.header_nav .none_url {
    display: inline-block;
    margin-left: 26px;
    color: #fff;
    text-decoration: none;
  }
  .pc_header nav.header_nav a .font_DIN, .pc_header nav.header_nav .none_url .font_DIN,
  .otherPages_header nav.header_nav a .font_DIN,
  .otherPages_header nav.header_nav .none_url .font_DIN {
    font-size: 1.3em;
    line-height: 1.2;
  }
  .pc_header nav.header_nav a .jp, .pc_header nav.header_nav .none_url .jp,
  .otherPages_header nav.header_nav a .jp,
  .otherPages_header nav.header_nav .none_url .jp {
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: .8;
    padding-top: 7px;
  }
  .pc_header nav.header_nav a.nowurl, .pc_header nav.header_nav .none_url.nowurl,
  .otherPages_header nav.header_nav a.nowurl,
  .otherPages_header nav.header_nav .none_url.nowurl {
    color: #c0b063;
  }
  .pc_header nav.header_nav a.header_tw, .pc_header nav.header_nav .none_url.header_tw,
  .otherPages_header nav.header_nav a.header_tw,
  .otherPages_header nav.header_nav .none_url.header_tw {
    border: 1px solid #fff;
    padding: 10px 18px;
    vertical-align: top;
    border-radius: 40px;
    line-height: 1;
  }
  .pc_header nav.header_nav a.header_tw i, .pc_header nav.header_nav .none_url.header_tw i,
  .otherPages_header nav.header_nav a.header_tw i,
  .otherPages_header nav.header_nav .none_url.header_tw i {
    padding-right: 9px;
  }
  .pc_header nav.header_nav a.header_tw .font_DIN, .pc_header nav.header_nav .none_url.header_tw .font_DIN,
  .otherPages_header nav.header_nav a.header_tw .font_DIN,
  .otherPages_header nav.header_nav .none_url.header_tw .font_DIN {
    font-size: 1.1em;
  }
}

/* --- Footer --- */
#footer {
  padding: 60px 0 40px;
  margin-top: 80px;
  background: #000;
  border-top: 1px solid #fff;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #footer {
    margin-top: 200px;
  }
}
#footer ul .navList {
  display: inline-flex;
  padding-bottom: 15px;
}
#footer ul li {
  padding: 0 10px;
}
@media screen and (min-width: 1000px) {
  #footer ul li {
    padding: 0 15px;
  }
}
#footer ul li img {
  height: 20px;
  width: auto;
}
#footer .note {
  font-size: 10px;
  color: #888;
}
#footer .logo_daikouryuten {
  width: 16%;
  max-width: 100px;
  float: right;
}
#footer .logo_daikouryuten a:hover {
  opacity: .7;
}
#footer .logo a {
  display: inline-block;
  width: 90px;
  margin: 50px 0 0 0;
}
#footer .logo a:hover {
  opacity: .7;
}
#footer .copyright {
  font-size: 10px;
  margin-top: 45px;
}

/* --- アニメーション --- */
.fadein_slide {
  opacity: 0;
  transform: translateY(40px);
  /* 下からスライドフェードイン */
  transition: all .7s 0s ease;
}

/* -- フォント -- */
.font_DIN {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --- ボタン --- */
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
}

.btn a {
  display: block;
  width: 215px;
  height: 60px;
  padding: 20px 25px;
  line-height: 1;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  border-radius: 30px;
  text-decoration: none;
}
@media screen and (min-width: 1000px) {
  .btn a {
    width: 300px;
    height: 80px;
    border-radius: 40px;
    padding: 30px 35px;
    border: 3px solid #fff;
  }
}
.btn a .tx {
  font-size: 1.4em;
}
@media screen and (min-width: 1000px) {
  .btn a .tx {
    line-height: .9;
  }
}
.btn a .triangle {
  top: 25px;
  right: 30px;
}
@media screen and (min-width: 1000px) {
  .btn a .triangle {
    top: 34px;
  }
}

/* -- 他 -- */
#Wrapper {
  /*
  background: url('../images/bg_sp.svg')no-repeat center center / cover;
  background-color: #000;
  background-attachment: fixed;
  */
}
#Wrapper::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../images/bg_sp.svg") no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  #Wrapper::before {
    background-image: url("../images/bg_pc.svg");
  }
}

.common_container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .common_container {
    width: 70%;
  }
}
@media screen and (min-width: 1000px) {
  .common_container {
    max-width: 1180px;
  }
}

h1.pagetitle {
  text-align: center;
  margin-top: 35px;
}
@media screen and (min-width: 1000px) {
  h1.pagetitle {
    margin-top: 80px;
  }
}
h1.pagetitle img {
  width: auto;
  height: 44px;
}
h1.pagetitle.fadein_slide {
  transform: translateY(-50px);
}

/* -------------------------------------------

  初動オープンアニメーション（グリッチ）

------------------------------------------- */
#OpenAnime_content {
  width: 100vw;
  height: 100vh;
}
#OpenAnime_content.is-active {
  display: none;
}

/*画面遷移の後現れるコンテンツ設定*/
#IndexContainer {
  opacity: 0;
  /*はじめは透過0に*/
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/*bodyにblockクラスがついたら出現*/
body.block #IndexContainer {
  animation-name: PageAnimeAppear;
  animation-duration: .8s;
  /*nimation-delay: 0.8s;*/
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* グリッチの動き */
.glitch_body {
  --glitch-width: 100vw;
  --glitch-height: 100vh;
  --gap-horizontal: 10px;
  --gap-vertical: 5px;
  --color-title: #fff;
  --time-anim: 4s;
  --delay-anim: 1s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: overlay;
  --blend-mode-5: overlay;
  --blend-color-1: #000;
  --blend-color-2: #222;
  --blend-color-3: #111;
  --blend-color-4: #444;
  --blend-color-5: #1c1cc9;
}

/* Glitch styles */
.glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--glitch-width);
  height: var(--glitch-height);
  overflow: hidden;
}
.glitch.close {
  display: none;
}

.glitch__img {
  position: absolute;
  top: calc(-1 * var(--gap-vertical));
  left: calc(-1 * var(--gap-horizontal));
  width: calc(100% + var(--gap-horizontal) * 2);
  height: calc(100% + var(--gap-vertical) * 2);
  background: url("../images/opening_sp.png") no-repeat 50% 50%/contain;
  background-color: var(--blend-color-1);
  transform: translate3d(0, 0, 0);
  background-blend-mode: var(--blend-mode-1);
}
@media screen and (min-width: 1000px) {
  .glitch__img {
    background: url("../images/opening_pc.png") no-repeat 50% 50%/contain;
  }
}

.glitch__img:nth-child(n+2) {
  opacity: 0;
}

.imgloaded .glitch__img:nth-child(n+2) {
  animation-duration: var(--time-anim);
  animation-delay: var(--delay-anim);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.imgloaded .glitch__img:nth-child(2) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-1;
}

.imgloaded .glitch__img:nth-child(3) {
  background-color: var(--blend-color-3);
  background-blend-mode: var(--blend-mode-3);
  animation-name: glitch-anim-2;
}

.imgloaded .glitch__img:nth-child(4) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-3;
}

.imgloaded .glitch__img:nth-child(5) {
  background-color: var(--blend-color-5);
  background-blend-mode: var(--blend-mode-5);
  animation-name: glitch-anim-flash;
}

/* Animations */
@keyframes glitch-anim-1 {
  0% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  2% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  8% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  10% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  12% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  14% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  18% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes glitch-anim-2 {
  0% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }
  3% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  5% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }
  7% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  9% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }
  11% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }
  13% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  15% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }
  17% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }
  19% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }
  20% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes glitch-anim-3 {
  0% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }
  1.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  2% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  2.5% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  3% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  5.5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  7% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  8% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  9% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  10.5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  11% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  13% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  14% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  14.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  15% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  16% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  18% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes glitch-anim-text {
  0% {
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  2% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  4% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  7% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  8% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  9% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  9.9% {
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1);
  }
  10%, 100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
/* Flash */
@keyframes glitch-anim-flash {
  0%, 5% {
    opacity: 0.2;
    transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
  }
  5.5%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}
/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.top_sns_container {
  width: 100%;
  background: #000;
  padding: 14px 5%;
}
.top_sns_container a {
  text-decoration: none;
}
.top_sns_container a i {
  display: inline-block;
  padding: 9px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #fff;
  font-size: .8em;
}
@media screen and (min-width: 1000px) {
  .top_sns_container {
    display: none;
  }
}

h2.index_contentTitle {
  padding: 0 0 40px 5%;
}
@media screen and (min-width: 1000px) {
  h2.index_contentTitle {
    padding: 0 0 60px 0;
    text-align: center;
  }
}
h2.index_contentTitle img {
  width: auto;
  height: 46px;
}
@media screen and (min-width: 1000px) {
  h2.index_contentTitle img {
    height: 64px;
  }
}

/* ---------------------------------------------------
 メインビジュアル
--------------------------------------------------- */
#main {
  width: 100%;
  background-color: #000;
  /*padding: 0 5%;*/
  background: #000;
}
@media screen and (min-width: 1000px) {
  #main {
    padding-top: 34px;
  }
}
#main div {
  width: 100%;
  max-width: 1600px;
      height: 0;
  padding-top: 155%;
  background: url("../images/main_sp.png") no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  #main div {
    background: url("../images/main_pc.png") no-repeat center center/cover;
    padding-top: 39.375%;
  }
}
@media screen and (min-width: 1600px) {
  #main div {
    padding-top: 0;
    margin: 0 auto;
    height: 630px;
  }
}

.main_slice.none {
  display: none;
}

#main_slice {
  width: 100%;
  position: absolute;
  top: 60px;
}
@media screen and (min-width: 1000px) {
  #main_slice {
    top: 120px;
  }
}
#main_slice .slice_content {
  position: relative;
  width: 100vw;
  height: 0;
  padding-top: 155%;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  #main_slice .slice_content {
    padding-top: 40.5%;
  }
}
#main_slice .slice_content .slice_half {
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 155%;
  overflow: hidden;
  top: 0;
  transition: transform 1s;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 1000px) {
  #main_slice .slice_content .slice_half {
    padding-top: 40.5%;
  }
}
#main_slice .slice_content .slice_half .slice_skewed {
  transform: skewX(-18deg);
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#main_slice .slice_content .slice_half .slice_skewed .img {
  transform: skewX(18deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#main_slice .slice_content .slice_half .slice_skewed .img img {
  object-fit: cover;
}
#main_slice .slice_content .slice_half.slice_half--left .slice_skewed {
  left: -49%;
}
#main_slice .slice_content .slice_half.slice_half--left .slice_skewed .img {
  left: 49%;
}
#main_slice .slice_content .slice_half.slice_half--right .slice_skewed {
  right: -49%;
}
#main_slice .slice_content .slice_half.slice_half--right .slice_skewed .img {
  right: 49%;
}
#main_slice .slice_content.slice_start .slice_half--left {
  transform: translate3d(-32.4vh, 100%, 0);
}
#main_slice .slice_content.slice_start .slice_half--right {
  transform: translate3d(32.4vh, -100%, 0);
}

/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
.intro_tx {
  opacity: 0;
  transform: translateY(60px);
  /* 下からスライドフェードイン */
  transition: all 1s 0s ease;
}
.intro_tx.fadeUP {
  opacity: 1;
  transform: translateY(0);
}

#intro {
  margin-top: 440px;
  padding: 0 5% 60px;
}
@media screen and (min-width: 768px) {
  #intro {
    padding: 50px 0 100px;
  }
}
#intro .midashi {
  font-size: 1.3em;
  font-weight: bold;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #intro .midashi {
    font-size: 1.5em;
    text-align: center;
  }
}
#intro .sub {
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  #intro .sub {
    font-size: 1.1em;
    text-align: center;
  }
}
#intro .btn {
  margin: 50px 0 0 0;
}
@media screen and (min-width: 768px) {
  #intro .btn a {
    margin: 0 auto;
  }
}

.bnr_content .bnr_jizenchusen {
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .bnr_content {
    display: flex;
    width: 700px !important;
  }
  .bnr_content .bnr_jizenchusen, .bnr_content .bnr_info {
    padding: 0 15px;
  }
}

/* ---------------------------------------------------
 NEWS
--------------------------------------------------- */
#news {
  padding-top: 140px;
  margin-bottom: 140px;
}
@media screen and (min-width: 1000px) {
  #news {
    padding-top: 200px;
  }
}
#news ul li {
  width: 100%;
  padding: 20px 5%;
  border-top: 1px solid #444;
}
@media screen and (min-width: 1000px) {
  #news ul li {
    padding: 40px 5%;
  }
}
#news ul li:last-child {
  border-bottom: 1px solid #444;
}
#news ul li a {
  color: #fff;
  text-decoration: none;
}
#news ul li a div {
  font-size: 1.2em;
  padding-bottom: 3px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1000px) {
  #news ul li a {
    display: flex;
  }
  #news ul li a div {
    width: 30%;
    padding: 0;
  }
  #news ul li a p {
    width: 70%;
  }
}
#news .btn a {
  margin: 40px auto 0;
}
@media screen and (min-width: 1000px) {
  #news .btn a {
    margin-top: 60px;
  }
}

/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
#outline {
  padding-top: 60px;
}
@media screen and (min-width: 1000px) {
  #outline {
    padding-top: 120px;
  }
}
#outline .title {
  background: #fff;
  color: #000;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1;
  width: 46px;
  padding: 5px 0;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  #outline .title {
    width: 60px;
  }
}
#outline ul li {
  border-top: 1px solid #444;
  padding: 30px 5%;
}
#outline ul li.date .bnr_info_pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  #outline ul li.date .bnr_info_pc {
    display: block;
    margin-top: 40px;
  }
}
#outline ul li.place .content > p {
  padding-bottom: 10px;
}
#outline ul li.place .google_map {
  padding-top: 6px;
}
#outline ul li.place .google_map a {
  display: flex;
}
#outline ul li.place .google_map a .triangle {
  position: static;
  margin: 0.8em 0.5em 0 0;
}
#outline ul li.place .google_map a .tx {
  font-size: 1.3em;
}
@media screen and (min-width: 1000px) {
  #outline ul {
    display: flex;
  }
  #outline ul li {
    width: 50%;
    padding: 0 60px;
    border-top: 0;
    border-left: 1px solid #444;
  }
  #outline ul li:last-child {
    border-right: 1px solid #444;
  }
}

/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods {
  padding-top: 140px;
}
@media screen and (min-width: 1000px) {
  #goods {
    padding-top: 280px;
  }
}
#goods p {
  padding: 0 5%;
}
@media screen and (min-width: 1000px) {
  #goods p {
    text-align: center;
  }
}
#goods .btn a {
  margin: 20px auto 0;
}
@media screen and (min-width: 1000px) {
  #goods .btn a {
    margin-top: 60px;
  }
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.news_tw {
  text-align: center;
  margin-top: 20px;
}
.news_tw p {
  font-size: .8em;
  margin-bottom: 10px;
}
.news_tw .twbtn a {
  display: inline-block;
  background: #888;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
  color: #000;
}

ul.news_list {
  margin-top: 36px;
}
ul.news_list li {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #444;
}
@media screen and (min-width: 1000px) {
  ul.news_list li {
    margin-bottom: 40px;
  }
}
ul.news_list li > div {
  border-bottom: 1px solid #444;
  padding: 30px;
}
@media screen and (min-width: 1000px) {
  ul.news_list li > div {
    padding: 50px;
  }
}
ul.news_list li .news_date {
  margin-bottom: 5px;
  font-size: 1.2em;
}
ul.news_list li .news_title {
  font-size: 1.2em;
  line-height: 1.8;
  font-weight: bold;
}
ul.news_list li .news_detail {
  padding: 30px;
}
@media screen and (min-width: 1000px) {
  ul.news_list li .news_detail {
    padding: 50px;
  }
}
ul.news_list li .news_detail .two_columns p:nth-child(2) {
  padding-top: 40px;
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

HIGHLIGHTページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
.highlignt_wrap {
  width: 90%;
  max-width: 1180px;
  margin: 60px auto 0;
}
@media screen and (min-width: 1000px) {
  .highlignt_wrap {
    border-bottom: 1px solid #444;
    padding-bottom: 80px;
    margin: 80px auto;
  }
}

.highlight_content {
  border-bottom: 1px solid #444;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1000px) {
  .highlight_content {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .highlight_content:nth-child(1) {
    float: left;
    width: 45%;
  }
  .highlight_content:nth-child(2) {
    float: right;
    width: 45%;
  }
  .highlight_content:nth-child(3) {
    border-bottom: 0;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  .highlight_content:nth-child(3) .highlight_inner {
    width: 95%;
  }
}
.highlight_content.last_content {
  border-bottom: 0;
  padding-bottom: 0;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 0;
}
.highlight_content .highlight_inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .highlight_content .highlight_inner {
    width: 100%;
  }
}
.highlight_content .title {
  font-size: 1.2em;
  font-weight: bold;
  border-left: 5px solid #fff;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .highlight_content .title {
    margin-bottom: 30px;
    font-size: 1.3em;
  }
}
.highlight_content .detail div {
  margin-bottom: 50px;
}
.highlight_content .detail div img {
  padding: 20px 0 10px;
}
.highlight_content .detail .hosoku {
  font-size: .8em;
}
@media screen and (min-width: 1000px) {
  .highlight_content .detail .left {
    float: left;
    width: 46%;
  }
  .highlight_content .detail .right {
    float: right;
    width: 46%;
  }
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

GOODSページ

--------------------------------------------------------------------------------
-------
.----------------------------------------------------------------------- */
.goods_note_link {
  text-align: center;
  margin-top: 20px;
}
.goods_note_link a {
  padding: 5px 0;
  font-size: .9em;
  display: inline-block;
  text-decoration: none;
}
.goods_note_link a .triangle {
  position: static;
  margin: 0.8em 0.5em 0 0;
  display: inline-block;
}

ul.goods_list {
  margin: 40px auto 0;
  width: 96%;
  max-width: 1180px;
}
@media screen and (min-width: 768px) {
  ul.goods_list {
    width: 80%;
  }
}
@media screen and (min-width: 1000px) {
  ul.goods_list {
    width: 90%;
  }
}
ul.goods_list li {
  width: 47%;
  margin: 0 1.5% 15px;
  background: #fff;
  float: left;
  border-radius: 3px;
}
@media screen and (min-width: 1000px) {
  ul.goods_list li {
    width: 31.33%;
    margin: 0 1% 30px;
  }
}
ul.goods_list li .item_detail {
  width: 100%;
  padding: 10px 10px 15px;
}
@media screen and (min-width: 1000px) {
  ul.goods_list li .item_detail {
    padding: 20px 24px 30px;
  }
}
ul.goods_list li .item_detail .name {
  font-size: 11px;
  line-height: 1.6;
  width: 100%;
  word-break: break-all;
  height: 6em;
  color: #000;
}
@media screen and (min-width: 1000px) {
  ul.goods_list li .item_detail .name {
    line-height: 1.8;
    font-size: 14px;
  }
}
ul.goods_list li .item_detail .price {
  color: #999;
  letter-spacing: 0.01em;
}
ul.goods_list li .item_detail .price span {
  font-size: 10px;
  padding-left: 3px;
}

#goods_note {
  width: 80%;
  margin: 60px auto 0;
}
@media screen and (min-width: 1000px) {
  #goods_note {
    width: 800px;
    margin-top: 100px;
  }
}
#goods_note .title {
  text-align: center;
  border-bottom: 1px solid #888;
  border-top: 1px solid #888;
  font-size: 1.1em;
  letter-spacing: 0.3em;
  padding: 10px 0;
  margin-bottom: 30px;
}
#goods_note ul.goods_note_list {
  font-size: .9em;
  padding: 0 0 0 16px;
}
#goods_note ul.goods_note_list li {
  list-style: disc;
  padding-bottom: 9px;
  line-height: 1.6;
}
