@charset "utf-8";

.h4-common {
  font-size: 1.1em;
  line-height: 1.25;
  margin: 15px auto; 
  font-weight: 600;
}

.bg-bk {
  background-color: #000;
  padding: 100px 0;
  position: relative;
}

.kyotozone-btn__flex {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.btn-flex3 {
  display: flex;
  margin: 5vw auto;
  gap: 2em;
  justify-content: center;
}

.kyotozone-btn {
  border: solid 2px #292929;
  border-radius: 30px;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  gap: 1em;
  width: fit-content;
  width: -moz-fit-content;
  min-width: 200px;
  font-weight: 600;
  font-size: 1.1em;
}
.kyotozone-btn span {
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 1;
}
.btn-video--bk {
  background-image: url(/archive/img/kyotozone-pageicon2.svg);
}

.kyotozone-btn:hover {
  background-color: #292929;
  color: #fff !important;
  opacity: 1;
}
.kyotozone-btn:hover .btn-video--bk {
  background-image: url(/archive/img/kyotozone-pageicon1.svg);
}



/* big-btn */
.link-bigbtn {
  margin: 5vw auto;
}
.link-bigbtn a {
  max-width: 800px;
  width: 90%;
  border: solid 2px #fff;
  font-weight: 600;
  color: #fff;
  min-height: 200px;
  font-size: 1.5em;
  line-height: 1.25;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 2em;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.link-bigbtn a:hover {
  border: solid 2px #7B4885;
  background-color: #7B4885;
  color: #fff;
  opacity: 1;
}
.link-bigbtn-arrow {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 4px;
  margin-top: 26.9px;
  border-radius: 9999px;
  background-color: #fff;
}
.link-bigbtn-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 42px;
  height: 4px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

/* white-btn */
.btn-wt {
  border-color: #fff;
  color: #fff !important;
  justify-content: space-between;
}
.btn-wt .link-bigbtn-arrow {
  display: inline-block;
  width: 50px;
  height: 2px;
  margin-top: 5px;
}
.btn-wt .link-bigbtn-arrow::before {
  height: 2px;
  width: 15px;
}
.btn-wt:hover {
  color: #292929 !important;
  background-color: #fff;
}
.btn-wt:hover .link-bigbtn-arrow {
  background-color: #292929;
}
.btn-wt:hover .link-bigbtn-arrow::before {
  background-color: #292929;
}

.kyotozone-title {
  font-size: 1.5em;
  line-height: 1.25;
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: 600;
}
.kyotozone-titleIcon {
  display: inline-block;
  width: 2em;
  height: 2em;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  flex-shrink: 1;
}

.left-bar--gray {
  border-left: solid 4px;
  border-color: #ccc;
  padding-left: 0.5em;
  display: block;
}

/* ---- digestvideo__list ---- */

.digestvideo__list {
  margin: 5vw auto;
  width: 90%;
  max-width: 1000px;
  padding-bottom: 2em;
}

.digestvideo__list ul {
  list-style: none;
  padding: 0;
  margin: 15px auto;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: space-between;
}

.digestvideo-dropdown {
  margin-bottom: 1em;
  overflow: hidden;
  width: calc(100% / 2 - 2em);
}
.digestvideo-dropdown p {
  font-size: 0.95em;
  line-height: 1.25;
}
.digestvideo-dropdown-toggle h4 {
  font-size: 1.3em;
  line-height: 1.25;
  font-weight: 600;
  margin-top: 5px;
}
.digestvideo-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1em;
  cursor: pointer;
}
.digestvideo-dropdown-toggle p {
  margin-top: 5px;
}
.digestvideo-arrow {
  position: relative;
  display: inline-block;
  width: 19.6px;
  height: 11.8px;
}
.digestvideo-arrow::before,
.digestvideo-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 15px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1.5px;
}

.digestvideo-arrow::before {
  transform: rotate(45deg);
}

.digestvideo-arrow::after {
  transform: rotate(-45deg);
}
.digestvideo-dropdown-toggle .digestvideo-arrow {
  margin-left: 1em;
  transition: transform 0.3s;
}
.digestvideo-dropdown.digestvideo-open .digestvideo-arrow {
  transform: rotate(180deg); /* ▼→▲ */
}
.digestvideo-dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-top: solid 1px #fff;
}
.digestvideo-dropdown.digestvideo-open .digestvideo-dropdown-content {
  max-height: 500px;
  padding: 1em;
}
.digestvideo-link {
  margin-top: 1em;
}
.digestvideo-link a {
  color: #fff;
  text-decoration: underline;
}

/* more */
.morelist {
  margin: 50px auto 0;
  width: fit-content;
  width: -moz-fit-content;
}
.morelist-pic {
    margin: 50px auto;
    width: fit-content;
    width: -moz-fit-content;
  }

.txt-hide {
	display: none;
}
button.morelist-btn-pic,
button.morelist-btn {
	display: block;
	color: #fff;
	outline: 0;
	transition: .5s;
	-erbkit-transition: .5s;
  min-width: 200px;
}
button.morelist-btn-pic::after,
button.morelist-btn::after {
	content: "もっと見る";
  padding-right: 30px;
  background-image: url("/archive/img/kyotozone-pageicon4.svg");
  background-position: center right;
  background-repeat: no-repeat;
	transition: .2s;
	-erbkit-transition: .2s;
  font-size: 14.4px;
}
button.morelist-btn-pic:hover::after,
button.morelist-btn:hover::after {
  background-image: url("/archive/img/kyotozone-pageicon6.svg");
}
button.morelist-btn-pic.on-click::after,
button.morelist-btn.on-click::after{
	content: "閉じる";
  padding-right: 30px;
  background-image: url("/archive/img/kyotozone-pageicon5.svg");
  background-position: center right;
  background-repeat: no-repeat;
}
button.morelist-btn-pic:hover.on-click::after,
button.morelist-btn:hover.on-click::after {
  background-image: url("/archive/img/kyotozone-pageicon7.svg");
}

/* ------------------------------------

archive/

------------------------------------*/
.weekTitle {
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.25;
  padding: 5vw 0 0;
  width: 90%;
  max-width: 980px;
  border: solid 1px transparent;
}
.weekTitle h2 {
  font-size: 1.5em;
  line-height: 1.25;
  margin: 20px 0;
  font-weight: 600;
  border-bottom: solid 2px #000;
  padding-bottom: 20px;
}
.weekTitle h2 span {
  font-size: 0.7em;
  display: block;
}
.weekTitle h2::before{
  font-size: 1.5em;
  line-height: 1.25;
  margin: 20px 0;
  font-weight: 600;
}
.weekTitle p:last-child {
  font-weight: 400;
}

.archive-exhibitor {
  padding: 25px 0;
}
.archive-exhibitor .a-k-text {
  padding-bottom: 0;
}
.exhibitor-block {
  margin: 2em auto 5em;
}
.exhibitor-list {
  min-height: 600px;
  background-image: url('/archive/img/archive-kyotozone-img3.png');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2vw auto;
}
.exhibitor-list h3 {
  font-weight: 600;
  line-height: 1.25;
  font-size: 1.3em;
  text-align: center;
}
.exhibitor-list h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #666;
  margin: 1em auto;
}
.exhibitor-list p {
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.25;
  font-weight: 600;
}
ul.a-exhibitorList {
  margin: 2em auto 5vw;
  list-style-type: none;
  padding-left: 0;
  justify-content: space-between;
}
.a-exhibitorList .kz-exhibitorList-link {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.archive-exhibitor .a-k-video {
    margin-bottom: 5vw;
}



/* ------------------------------------

archive/kyotozone/index.html

------------------------------------*/

.bg-gray {
  background-color: #292929;
  color: #fff;
  overflow: hidden;
}

.bg-bk2 {
  background-color: #000;
  padding: 25px 0;
}
.bg-bk2-bottom {
  background-image: url(/archive/img/kyotozone-bg.png);
  width: 100%;
  height: 100px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
} 

.kyotozone-video {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.kyotozone-video .kyotozone-title {
  margin-bottom: 10px;
}
.a-k-video {
  position: relative;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background-color: transparent;
}

.a-k-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- a-k-top ----- */
.a-k-top {
  aspect-ratio: 16 / 8;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
}
.a-k-top > div {
  width: 80%;
  max-width: 500px;
  font-weight: 600;
  font-size: 1.2em;
  text-align: center;
}
.a-k-top > div p:nth-child(1) {
  margin-bottom: 2em;
}
.a-k-top__text--gray {
  margin-top: 2em;
  color: #BABAAF;
}
.a-k-top__navline {
  font-size: 0.9em;
  line-height: 1.5;
  color: #fff;
  margin-top: 2em;
  text-align: center;
}
.a-k-top__navline span {
  position: relative;
  display: block;
  width: 2px;
  height: 50px;
  border-radius: 9999px;
  background-color: #fff;
  animation: arrowFade 2s ease-out infinite;
  margin: 1em auto 2em;
}
.a-k-top__navline span::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 15px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
  right: -6px;
}

/* アニメーションの定義 */
@keyframes arrowFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}

/* ----- a-k-text ----- */
.a-k-text {
  margin: 100px auto 0;
  width: 90%;
  max-width: 1000px;
  padding-bottom: 100px;
}
.a-k-text p {
  position: relative;
  display: block;
}
.a-k-text p span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.25;
}
.a-k-textF {
  margin: 0 auto 5vw;
  padding: 0;
}

/* ----- week text ----- */
.a-k-text__flex2 {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  margin: 5vw auto;
  max-width: 1000px;
  width: 90%;
}
.a-k-text__flex2 > div {
  width: calc(100% / 2 - 2em);
}
.a-k-text__flex2Inr h5 {
  display: flex;
  align-items: center;
  color: #BABAAF;
  font-weight: 600;
  font-size: 1.2em;
}
.a-k-text__flex2Inr h5 span {
  width: 30px;
  flex-flow: 0;
  display: inline-block;
  margin-right: 8px;
}
.a-k-text__flex2Inr ul {
  border-left: solid 2px;
  border-color: #BABAAF;
  padding-left: 1.5em;
  margin: 1em auto 2em;
  margin-left: 15px;
}
.a-k-text__flex2Inr ul li {
  margin-bottom: 1em;
}
.a-k-text__flex2Inr a, .a-k-top__navline a {
  background-color: #BABAAF;
  color: #292929;
  font-size: 0.9em;
  justify-content: space-between;
  border-color: #BABAAF;
}
.a-k-text__flex2Inr a:hover {
  background-color: #BABAAF;
  color: #292929 !important;
}

/* ----- a-k-messeage ----- */
.a-k-messeage {
  margin: 5vw auto;
  width: 90%;
  max-width: 1000px; 
}

.a-k-messeage__flex {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.a-k-messeage__box {
  width: calc(100% / 2 - 2em);
}
.a-k-messeage__box h3 {
  display: block;
  width: 246px;
  height: 280px;
  background-image: url(/archive/img/archive-kyotozone-img2.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  margin: 0 auto 1em;
  transition: .6s;
  user-select: pointer;
}
.a-k-messeage__box h3:hover {
  background-image: url(/archive/img/archive-kyotozone-img2h.png);
  transition: .6s;
}
.a-k-messeage__box p {
  line-height: 1.75;
}

.a-k-messeage__text {
  margin: 1.5em 0 3em;
}
.a-k-messeage__text span {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/archive/img/archive-kyotozone-img2.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.3em;
}

.a-k-messeage__box .popup-content {
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: hidden;
}
.a-k-messeage__popup {
  overflow: hidden;
  overflow-y: scroll;
  height: 100%;
  padding-right: 10px;
}
.a-k-messeage__popup::-webkit-scrollbar{
    width: 6px;
    background-color: transparent; 
}
.a-k-messeage__popup::-webkit-scrollbar-thumb{
    background: #BABAAF;
    width: 4px;
    border-radius: 5px;
}

/* ----- a-k-archive ----- */
.a-k-archive {
  margin: 5vw auto;
  width: 90%;
  max-width: 1000px; 
}
.a-k-archive h3 {
  font-size: 1.5em;
  color: #fff;
  font-weight: 600;
  margin-top: 2em;
  display: flex;
}
.a-k-archive h3 span {
  font-size: 0.65em;
  display: inline-block;
  margin-right: 15px;
  margin-top: 2px;
}
.archive-slide__ul {
  display: flex;
  margin: 2em auto;
  gap: 2em;
  flex-wrap: wrap;
}
.archive-slide__ul > li {
  width: 200px;
  aspect-ratio: 1 / 1;
  background-image: url(/archive/img/kyotozone-thumb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  user-select: none;
}
.archive-slide__ul > li > a {
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: block;
}
.archive-slide__ul > li > a p {
  text-align: center;
  color: #fff;
  font-weight: 600;
  display: block;
}
.archive-slide__ul > li > a p:nth-child(1) {
  font-size: 14px;
  padding-bottom: 1em;
  margin-bottom: 1em;
  display: block;
  text-align: center;
  border-bottom: solid 1px #fff;
}
.archive-slide__ul > li > a p:nth-child(2) {
  font-size: 16px;
  line-height: 1.25;
}


/* ------------------------------------

archive/kyotozone/guide/index.html 

------------------------------------ */

p#footer-ticket a {
  display: none;
}
main a[href$=".pdf"]:after {
  display: none;
}

.bg-zone {
  background-size: 200% 200%;
  animation: Grad 10s infinite;
  padding: 10vw 2vw;
}


@keyframes Grad {
  0% {
    background-color: #dcdcdc;
  }
  1% {
    background-color: #dadada;
  }
  2% {
    background-color: #d8d8d8;
  }
  3% {
    background-color: #d6d6d6;
  }
  4% {
    background-color: #d4d4d4;
  }
  5% {
    background-color: #d3d3d3;
  }
  6% {
    background-color: #d1d1d1;
  }
  7% {
    background-color: #cfcfcf;
  }
  8% {
    background-color: #cdcdcd;
  }
  9% {
    background-color: #cbcbcb;
  }
  10% {
    background-color: #c9c9c9;
  }
  11% {
    background-color: #c7c7c7;
  }
  12% {
    background-color: #c5c5c5;
  }
  13% {
    background-color: #c3c3c3;
  }
  14% {
    background-color: #c1c1c1;
  }
  15% {
    background-color: #bfbfbf;
  }
  16% {
    background-color: #bdbdbd;
  }
  17% {
    background-color: #bbbbbb;
  }
  18% {
    background-color: #b9b9b9;
  }
  19% {
    background-color: #b7b7b7;
  }
  20% {
    background-color: #b5b5b5;
  }
  21% {
    background-color: #b3b3b3;
  }
  22% {
    background-color: #b1b1b1;
  }
  23% {
    background-color: #afafaf;
  }
  24% {
    background-color: #adadad;
  }
  25% {
    background-color: #ababab;
  }
  26% {
    background-color: #a9a9a9;
  }
  27% {
    background-color: #a7a7a7;
  }
  28% {
    background-color: #a5a5a5;
  }
  29% {
    background-color: #a3a3a3;
  }
  30% {
    background-color: #a1a1a1;
  }
  31% {
    background-color: #9f9f9f;
  }
  32% {
    background-color: #9d9d9d;
  }
  33% {
    background-color: #9b9b9b;
  }
  34% {
    background-color: #999999;
  }
  35% {
    background-color: #979797;
  }
  36% {
    background-color: #959595;
  }
  37% {
    background-color: #939393;
  }
  38% {
    background-color: #919191;
  }
  39% {
    background-color: #8f8f8f;
  }
  40% {
    background-color: #8d8d8d;
  }
  41% {
    background-color: #8b8b8b;
  }
  42% {
    background-color: #898989;
  }
  43% {
    background-color: #878787;
  }
  44% {
    background-color: #858585;
  }
  45% {
    background-color: #838383;
  }
  46% {
    background-color: #818181;
  }
  47% {
    background-color: #808080;
  }
  53% {
    background-color: #808080;
  }
  54% {
    background-color: #818181;
  }
  55% {
    background-color: #838383;
  }
  56% {
    background-color: #858585;
  }
  57% {
    background-color: #878787;
  }
  58% {
    background-color: #898989;
  }
  59% {
    background-color: #8b8b8b;
  }
  60% {
    background-color: #8d8d8d;
  }
  61% {
    background-color: #8f8f8f;
  }
  62% {
    background-color: #919191;
  }
  63% {
    background-color: #939393;
  }
  64% {
    background-color: #959595;
  }
  65% {
    background-color: #979797;
  }
  66% {
    background-color: #999999;
  }
  67% {
    background-color: #9b9b9b;
  }
  68% {
    background-color: #9d9d9d;
  }
  69% {
    background-color: #9f9f9f;
  }
  70% {
    background-color: #a1a1a1;
  }
  71% {
    background-color: #a3a3a3;
  }
  72% {
    background-color: #a5a5a5;
  }
  73% {
    background-color: #a7a7a7;
  }
  74% {
    background-color: #a9a9a9;
  }
  75% {
    background-color: #ababab;
  }
  76% {
    background-color: #adadad;
  }
  77% {
    background-color: #afafaf;
  }
  78% {
    background-color: #b1b1b1;
  }
  79% {
    background-color: #b3b3b3;
  }
  80% {
    background-color: #b5b5b5;
  }
  81% {
    background-color: #b7b7b7;
  }
  82% {
    background-color: #b9b9b9;
  }
  83% {
    background-color: #bbbbbb;
  }
  84% {
    background-color: #bdbdbd;
  }
  85% {
    background-color: #bfbfbf;
  }
  86% {
    background-color: #c1c1c1;
  }
  87% {
    background-color: #c3c3c3;
  }
  88% {
    background-color: #c5c5c5;
  }
  89% {
    background-color: #c7c7c7;
  }
  90% {
    background-color: #c9c9c9;
  }
  91% {
    background-color: #cbcbcb;
  }
  92% {
    background-color: #cdcdcd;
  }
  93% {
    background-color: #cfcfcf;
  }
  94% {
    background-color: #d1d1d1;
  }
  95% {
    background-color: #d3d3d3;
  }
  96% {
    background-color: #d4d4d4;
  }
  97% {
    background-color: #d6d6d6;
  }
  98% {
    background-color: #d8d8d8;
  }
  99% {
    background-color: #dadada;
  }
  100% {
    background-color: #dcdcdc;
  }
}

.btn-flex {
  max-width: 95%;
  margin: 7vw auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hexagon-box {
  width: 260px;
  height: 260px;
  background-image: url(/archive/img/zonebtn1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.hexagon-box2 {
  width: 260px;
  height:260px;
  background-image: url(/archive/img/zonebtn2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.hexagon-box3 {
  width: 260px;
  height: 260px;
  background-image: url(/archive/img/zonebtn3.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* text */
.bg-zone-title {
  font-size: 1.8em;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
}
.bg-zone-title span {
  display: block;
  margin: 0.5em auto;
  font-size: 0.7em;
  line-height: 1.25;
}

/* ボタン */
.favorite-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #808080;
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  padding: 0.5em 0.8em;
  position: fixed;
  bottom: 1em;
  left: 0;
  z-index: 10;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.favorite-btn.stop {
  position: absolute;
}

/* ポップアップ */
#open-popup {
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  height: 80%;
  padding: 2em 1em;
  max-width: 600px;
}
.popup-inr {
  overflow-y: scroll;
  height: 100%;
  padding-right: 10px;
}
.popup-inr::-webkit-scrollbar {
    width: 6px;
    background-color: transparent; 
}
.popup-inr::-webkit-scrollbar-thumb {
    background: #BABAAF;
    width: 4px;
    border-radius: 5px;
}
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.popup-text {
   font-size: 0.95em;
   line-height: 1.25;
}
.popup hr {
   margin: 2em 0;
}
.popup h5 {
   font-weight: 600;
}
.popup-navi {
   margin: 1em 0;
   border: solid 1px #ccc;
   border-radius: 10px;
   padding: 1em;
   line-height: 1.25;
}
.popup-navi > span {
   font-weight: 600;
   margin-bottom: 0.5em;
   display: block;
}
.popup-navi ol {
   list-style-type: decimal;
   padding-left: 1em 
}
.popup-navi ol span {
   display: inline-block;
   height: 1.3em;
   margin: 0 10px;
}
.popup-navi ol span img {
   height: 100%;
}

/*------------------------------------------------------------

   レスポンシブ

------------------------------------------------------------ */
@media screen and (min-width: 1200px) {
  /* ------------------------------------

    archive/kyotozone/index.html

    ------------------------------------*/

    .a-k-video {
      padding: 30px 0 0;
    }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {

  .bg-bk2-bottom {
    height: 30px;
  } 

  .btn-flex3 {
    flex-wrap: nowrap;
    gap: 0.5em;
  }

  .btn-flex3 .kyotozone-btn {
    width: calc(100% / 3);
    min-width: auto;
    font-size: 0.9em;
    line-height: 1.25;
  }

  .btn-wt .link-bigbtn-arrow {
    display: inline-block;
    width: 30px;
  }
  .btn-wt .link-bigbtn-arrow::before {
    width: 13px;
  }

  ul.a-exhibitorList {
    margin: 5vw auto 10vw;
  }


  /* ------------------------------------

  archive/kyotozone/index.html

  ------------------------------------ */

  .kyotozone-video {
    margin:10vw auto 0;
  }

  /* ---- digestvideo__list ---- */
  .digestvideo__list ul {
    gap: 0;
  }
  .digestvideo-dropdown {
    width: 100%;
    margin-bottom: 0;
  }

  /* more */
  .morelist {
    margin: 2em auto 0;
    width: fit-content;
    width: -moz-fit-content;
  }
  .morelist-pic {
    margin: 2em auto;
    width: fit-content;
    width: -moz-fit-content;
  }
  button.morelist-btn-pic,
  button.morelist-btn {
    min-width: 200px;
  }		

  /* ----- week text ----- */
  .a-k-text__flex2 {
    margin: 10vw auto;
    flex-wrap: wrap;
  }
  .a-k-text__flex2 div{
    width: 100%;
  }
  .a-k-text__flex2Inr a {
    margin: 0 auto;
  }

  /* ----- a-k-text ----- */
  .a-k-textF {
    margin: 5vw auto 10vw;
  }

  /* ----- a-k-messeage ----- */
  .a-k-messeage__box h3 {
    width: 180px;
    height: 205px;
  }

  /* ----- a-k-archive ----- */
  .a-k-archive {
    margin: 5vw auto;
    width: 95%;
    margin-right: auto;
    margin-left: 5%;
  }
  .a-k-archive h3 {
    margin-top: 1.5em;
  }

  .archive-slide__ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    margin: 1em auto 2em;
    gap: 0.5em;
    width: 100%;
  }
  .archive-slide__ul.dragging {
    cursor: grabbing;
  }
  .archive-slide__ul::-webkit-scrollbar {
    background-color: transparent;
    margin-top: 10px;
    height: 3px;
  }

  .archive-slide__ul::-webkit-scrollbar-thumb {
    background: #BABAAF;
    height: 2px;
    border-radius: 5px;
  }
  .archive-slide__ul > li {
     scroll-snap-align: start;
     margin-bottom: 1em;
  }
  .archive-slide__ul > li:nth-last-child(1) {
    margin-right: 5%;
  }


  /* ------------------------------------

  archive/kyotozone/guide/index.html 

  ------------------------------------ */
  .btn-flex {
    gap: 5px;
  }
  .hexagon-box,
  .hexagon-box2,
  .hexagon-box3 {
    width: 130px;
    height: 130px;
  }
  /* text */
  .bg-zone-title {
    font-size: 1.3em;
    line-height: 1.3em;
  }
  .bg-zone-title span {
    font-size: 0.8em;
  }  
    
}

@media screen and (max-width: 420px) {

  /* white-btn */
  .btn-wt {
    min-width: 90%;
  }

  .link-bigbtn {
    margin-top: 50px;
  }
  .link-bigbtn a {
    font-size: 1em;
    padding: 1.2em;
    min-height: auto;
  }
  .link-bigbtn-arrow {
    display: block;
    width: 50px;
    height: 2px;
    margin-top: 12px;
    flex-shrink: 0;
  }
  .link-bigbtn-arrow::before {
    width: 20px;
    height: 2px;
  }

  /* ボタンデザイン */
  .video-controls button {
    cursor: pointer;
    width: 45px;
    height: 45px;
    padding: 3px;
  }
   
   .hexagon-box,
   .hexagon-box2,
   .hexagon-box3 {
      width: 250px;
      height: 250px;
    }

    .archive-exhibitor .a-k-text {
      margin: 50px auto 0;
    }

    .exhibitor-list {
      min-height: 350px;
      width: 100%;
      margin: 50px auto 0;
    }

    .kyotozone-title {
      font-size: 1.2em;
      line-height: 1.25;
    }
    
    .btn-flex3 {
    flex-wrap: wrap;
    }
    .kyotozone-btn {
      min-width: 90%;
    }
    .btn-flex3 .kyotozone-btn {
      flex-wrap: wrap;
      min-width: 90%;
    }

    /* ----- a-k-top ----- */
    .a-k-top > div {
      font-size: 0.9em;
    }
    .a-k-top > div p:nth-child(1) {
      margin-bottom: 1.5em;
    }
    .a-k-top__text--gray {
      margin-top: 1.5em;
    }

    /* ----- a-k-text ----- */
    .a-k-textF {
      margin: 10vw auto;
    }

    /* ----- a-k-messeage ----- */
    .a-k-messeage__box h3 {
      width: 120px;
      height: 137px;
      font-size: 1.5em;
    }

    /* ----- a-k-archive ----- */
    .a-k-archive {
      margin-top: 10vw;
      margin-bottom: 10vw;
    }
    .a-k-archive h3 {
      font-size: 1.2em;
    }


    /* ------------------------------------

    archive/kyotozone/guide/index.html 

    ------------------------------------ */
    .btn-flex {
      gap: 10px;
    }
    .hexagon-box,
    .hexagon-box2,
    .hexagon-box3 {
      width: 100px;
      height: 100px;
    }
    /* text */
    .bg-zone-title {
      font-size: 1.1em;
      line-height: 1.25;
    }
    .bg-zone-title span {
      font-size: 0.8em;
    }
    
}


