@charset "utf-8";

/*
Theme Name: WordPress Theme for KICHIJOJI SHUFFLE
Site URI: http://k-shuffle.com
Description: Original theme for KICHIJOJI SHUFFLE
Version: 1.0
Author: KICHIJOJI SHUFFLE
*/


/* --- Importing Previous CSS --- */

@import url("./shuffle.css");


/* --- Basic --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

html,
body {
  width: 100%;
  height: auto;
  text-align: center;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  background-image: url(./images/tile.jpg);
  line-height: 1.5;
}

h2 {
	font-size: 1.6rem;
	margin-bottom: 8px;
}

h2:before {
  content: "■";
  display: inline;
  padding-right: 4px;
}

p {
  margin: 0;
  margin-bottom: 16px;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

a img {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

a:hover img {
  opacity: .7;
}


/* --- Header --- */

header {
  width: 100%;
  max-width: 805px;
  margin: 15px 0 0 0;
  text-align: center;
}

#header-image {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  border: 5px solid white;
  z-index: 5;
}

@media screen and (min-width: 640px) {
#header-image {
  width: 95%;
  max-width: 716px;
  margin: 0 auto;
  position: relative;
  top: auto;
  left: auto;
}
}

#header-image:before {
  content: "";
  display: block;
  padding-top: 29%;
}

#header-image div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

header nav {
  display: none;
}

@media screen and (min-width: 640px) {
header nav {
  display: block;
}
}

#menu {
  width: 100%;
  max-width: 730px;
  margin: 4px auto;
}

#menu li {
  width: auto;
  display: inline-block;
  list-style: none;
}

#menu li:before {
  content: "|";
  padding: 0 8px 0 4px;
  display: inline;
}

#menu li:first-of-type:before {
  padding-left: 0;
}

#menu li:last-of-type:after {
  content: "|";
  padding-left: 8px;
  display: inline;
}


/*--- Menu Trigger for Smartphones --*/

#menu-trigger {
  position: fixed;
  top: 80px;
  right: 30px;
  z-index: 6;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#menu-trigger,
#menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

#menu-trigger span:nth-of-type(1) {
  top: 1px;
}

#menu-trigger span:nth-of-type(2) {
  top: 7.5px;
}

#menu-trigger span:nth-of-type(3) {
  bottom: 3px;
}

#menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

#menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}

#menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

#menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}

#menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media only screen and (min-width: 640px) {
#menu-trigger {
  display: none;
}
}

#ul-mobile {
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  z-index: -1 !important;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  font-size: 1.4rem;
  font-weight: bolder;
  text-align: left;
}

#ul-mobile.ul-active {
  opacity: 1;
  z-index: 6 !important;
}

@media screen and (min-width: 640px) {
#ul-mobile,
#ul-mobile.ul-active {
  display: none;
}
}

#ul-mobile li {
  width: 60%;
  padding: 8px;
  display: block;
  position: relative;
  font-weight: bolder;
  color: #fff;
}

#ul-mobile li:first-of-type {
  margin-bottom: 16px;
}

#ul-mobile a:link,
#ul-mobile a:visited {
  display: block;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

#ul-mobile a:hover {
  text-decoration: underline;
}


/* --- Footer --- */

footer {
  width: 90%;
  max-width: 805px;
  margin: auto;
  text-align: right;
  font-size: 1.3rem;
}


/* --- Containers  --- */

#main {
  width: 90%;
  max-width: 805px;
  margin: 0 auto;
  margin-top: 180px;
  border: 1px solid #fff;
  background-color: #000;
  padding: 8px;
}

@media screen and (min-width: 640px) {
#main {
  margin-top: 0;
}
}

#contents {
  width: 100%;
  margin-bottom: 2px;
}

@media only screen and (min-width: 640px) {
#contents {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
}

#left {
  width: 100%;
  padding: 8px;
  padding-top: 24px;
  background-color: #232323;
}

@media only screen and (min-width: 640px) {
#left {
  width: 210px;
  padding-top: 8px;
}
}

#left h2 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

#left h2:before,
#left h2:after {
  content: "〜";
  display: inline;
}

#left h2:after {
  padding-left: 2px;
}

#left h2 + p {
  font-size: 1rem;
}

#left hr {
  width: 100%;
  height: 0;
  margin: 16px 0;
  border:0;
  border-bottom: 1px solid #555;
}

#right {
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
}

@media only screen and (min-width: 640px) {
#right {
  width: calc(100% - 210px);
  position: relative;
}
}

#right-inner {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 640px) {
#right-inner {
  padding-left: 16px;
  margin-bottom: 152px;
}
}

.bordered {
	padding: 4px;
	margin-bottom: 16px;
	border: 1px solid #232323;
}


/* --- Index  --- */

#news-index {
  width: 100%;
  height: 100px;
  margin-bottom: 16px;
  overflow: auto;
  border: 1px solid #232323;
}

#news-index article {
  width: 100%;
  margin: 0 0 16px 0;
  padding: 8px;
  text-align: left;
}

#news-index h3 {
  font-size: 1.4rem;
}

#pickup {
  width: 100%;
  margin: 0;
  padding: 0;
}

#pickup h2 {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  color: #ffff00;
}

@media only screen and (min-width: 640px) {
#pickup h2:before,
#pickup h2:after {
  content: "■■■";
  display: inline;
}
}

#pickup img {
  width: 100%;
}

#address {
  background-color: #232323;
  width: 100%;
  margin: 0;
  padding-bottom: 24px;
  padding-right: 20px;
  font-size: 1.3rem;
  text-align: center;
}

.index #address {
  border-bottom: 1px solid #555;
}

@media only screen and (min-width: 640px) {
#address {
  text-align: left;
  padding-bottom: 8px;
  position: absolute;
  bottom: 0;
}

.index #address {
  border: 0;
}
}

#address p:first-of-type {
  margin-top: 8px;
}

#address p:last-of-type {
  margin-bottom: 0;
}


/* --- Info  --- */

#contents.info {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.info h3 {
  width: 100%;
  margin-bottom: 16px;
  padding: 4px;
  background-color: #232323;
  font-size: 1.3rem;
}

.info h3:before {
  content: "■";
  display: inline;
}

#nav-info ul,
#nav-info ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  font-size: 1.3rem;
}

#nav-info ul li {
  margin-bottom: 8px;
}

#info-youtube {
  width: 100%;
  position: relative;
}

#info-youtube:before {
  content: "";
  display: block;
  padding-top: 56.75%;
}

#info-youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.download-button {
  width: 100%;
  max-width: 320px;
  height: 48px;
  margin: 64px auto;
  padding: 8px;
  border-radius: 5px;
  color: #fff !important;
  font-weight: bolder;
  background-color: #00cc00;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
  font-size: 1.6rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.download-button span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 16px;
  border-radius: 36px;
  background-color: #fff;
  color: #00cc00;
  font-size: 2.5rem;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.download-button:hover {
  background-color: #06e506;
}

.download-button:hover span{
  color: #06e506;
}

#info-photos {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

#info-photos a {
  width: 48%;
  margin-bottom: 2%;
  display: block;
  position: relative;
}

@media screen and (min-width: 640px) {
#info-photos a {
  width: 32%;
}
}

@media screen and (min-width: 820px) {
#info-photos a {
  width: 24%;
}
}

#info-photos a:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#info-photos a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#info-photos a:hover:after {
  opacity: .3;
}

#info-photos a:hover img {
  opacity: 1;
}

#info-photos a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: 50%;
}

table.info_tbl {
  width: 100%;
  margin-bottom: 16px;
}

table.info_tbl .td-th {
  background-color: #222;
  text-align: center;
  font-weight: bolder;
}

tbody {
  width: 100%;
}

@media screen and (max-width: 720px) {
table.info_tbl td {
  width: 50%;
  display: inline-block;
  border: 0;
  text-align: center;
  border-bottom: 2px solid #222;
}

table.info_tbl tr:last-of-type td:last-of-type {
  border-bottom: 0;
}

table.info_tbl .td-th {
  width: 100%;
  display: block;
}

table.info_tbl .td_gray {
  width: 100%;
  display: block;
  text-align: center;
}

table.info_tbl .td-sp-100 {
  width: 100%;
}

.equip-light table.info_tbl tr,
.equip-light table.info_tbl td {
  width: 100%;
  display: block;
}

.equip table.info_tbl {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.equip table.info_tbl tr {
  width: 100%;
  display: block;
}

.equip table.info_tbl tr td {
  border: 0;
  display: inline-block;
}

.equip table.info_tbl tr td:first-of-type,
.equip table.info_tbl tr .td_gray + td {
  display: inline-block;
  width: 25%;
  font-weight: bolder;
}


.equip table.info_tbl tr td:last-of-type {
  width: 15%;
}
.equip table.info_tbl tr td:nth-last-of-type(2) {
  width: 3%;
  text-align: left;
}

.equip table.info_tbl tr td:nth-last-of-type(3) {
  width: 50%;
}

.equip table.info_tbl tr .td_gray,
.equip table.info_tbl th {
  width: 100% !important;
  display: block;
}

.equip table.info_tbl br {
  display: none;
}

/*.table-overflow {
  width: 100%;
  height: 400px;
  overflow: auto;
}*/
}

.info #right section ul,
.info #right section ul li {
  width: auto;
  position: static;
  margin-left: 16px;
  padding: 0;
}

.cloak h3 {
  margin-top: 64px;
}

.cloak h3:first-of-type {
  margin-top: 0;
 }


/* --- Access  --- */

#contents.access {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.access img {
  width: 100%;
}

.access h3 {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 16px;
  padding: 4px;
  background-color: #232323;
  font-size: 1.3rem;
}

.access h3:before {
  content: "■";
  display: inline;
}

.access h3:first-of-type {
  margin-top: 0;
}

#google-map {
  width: 100%;
  position: relative;
}

#google-map:before {
  content: "";
  display: block;
  padding-top: 56.75%;
}

#google-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* --- Sched  --- */

.sched-box {
  margin-bottom: 32px;
}

.sched-box:last-of-type {
  margin-bottom: 0;
}

.sched h3 {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 16px;
  padding: 4px;
  background-color: #232323;
  font-size: 1.3rem;
}

.sched h3:first-of-type {
  margin-top: 0;
}

.sched-box h3 img {
  width: 15px;
  height: 15px;
}

img.playguide-unavailable {
  opacity: .5;
}

.playguide-image img {
  width: 25px;
  margin-right: 4px;
}

.playguide-image a {
  margin-right: 4px;
}

.playguide-image a img {
  margin: 0;
}

.past-sched img {
  width: 25px;
}

.past-sched img.past-sched-header {
  width: 100%;
}

.sched_date {
  width: 100%;
}

.sched_date img {
  width: 15px;
}

.share {
  width: 95%;
  text-align: right;
  margin: 16px;
}

.share a,
.share a:visited {
  color: #00cc00;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
} 

.share a i {
  font-size: 1.8rem
}

.share a:first-of-type {
 margin-right: 8px;
}

.share a:hover {
  color: #fff !important;
  background-color:#232323;
}


/* --- Link  --- */

#contents.link {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.link h3 {
  width: 100%;
  margin-bottom: 16px;
  padding: 4px;
  background-color: #232323;
  font-size: 1.3rem;
}

.link h3:before {
  content: "■";
  display: inline;
}

.link h3 + section {
  width: 100%; 
  margin-bottom: 8px;
}

@media only screen and (min-width: 820px) {
.link h3 + section {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
}

.link section + p {
  width: 100%;
  text-align: right;
  margin-bottom: 32px;
}

.link_l,
.link_r {
  width: 100%;
  float: none;
  list-style: none;
}

@media only screen and (min-width: 820px) {
.link_l,
.link_r {
  width: 49%;
}
}

.link li {
  border: 1px solid #232323;
  border-bottom: 0;
}

.link ul li:last-of-type {
  border-bottom: 1px solid #232323;
}

.link ul.link_r li:first-of-type {
  border-top: 0;
}

@media only screen and (min-width: 820px) {
.link ul.link_r li:first-of-type {
  border-top: 1px solid #232323;
}
}

.link ul li a {
  width: 100%;
  height: 100%;
  padding: 4px;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.link ul li a:hover {
  background-color: #232323;
}

.link #left span:before,
.link #left span:after {
  content: "/";
  display: inline;
  padding: 0 8px;
}

.link #left span:first-of-type:before,
.link #left span:last-of-type:after {
  display: none;
}

@media screen and (min-width: 640px) {
.link #left span:before,
.link #left span:after {
  display: none;
}
}


/* --- 404  --- */

#contents.notfound {
  display: block;
  text-align: center;
}

/* --- Other Parts  --- */

.sp-br {
  display: block;
}

@media screen and (min-width: 640px) {
.sp-br {
  display: inline;
}
}

.pc-br {
  display: inline;
}

@media screen and (min-width: 640px) {
.pc-br {
  display: block;
}
}

.sp-only {
  display: block;
}

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


.red {
  color: #ff0000;
}

.text-right {
  width: 100%;
  text-align: right;
}
.text-left {
  text-align: left;
}
.object-fit　{
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 640px) {
#banners .youtube {
width: 100%;
position: relative;
}
#banners .youtube::before {
content: "";
display: block;
padding-top: 56.25%;
}
#banners .youtube iframe {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
}