@charset 'UTF-8';

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
img {
  vertical-align: bottom;
  height: auto;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,
a:visited {
  color: #000;
  text-decoration: none;
}

body {

}

/* content */
.container {
  width: 1920px;
  height: 960px;
  position: relative;
  background-color: #FFF;
}
h1 {
  padding-top: 19px;
  padding-left: 40px;
  height: 80px;
  box-sizing: border-box;
}
.imgExplanation {
  position: absolute;
  top: 18px;
  right: 30px;
}
.imgDrag {
  position: absolute;
  top: 18px;
  right: 420px;
}
.listEventWrapper {
  overflow: hidden;
  width: 100%;
  height: 880px;
}
.listEvent {
  width: 1874px;
  margin: 0 auto 0;
  padding: 0 10px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  transform: translateY(0px);
}
.listEvent::-webkit-scrollbar {
  overflow: hidden;
  width: 4px;
}
.listEvent::-webkit-scrollbar-button {
  display:none;
}
.listEvent::-webkit-scrollbar-thumb,
.listEvent::-webkit-scrollbar-corner {
  background-color: rgba(0,0,0,.2)
}
.listEvent > li {
  position: relative;
  width: 460px;
  height: 430px;
  margin-bottom: 10px;
  background-image: url(../img/bgLight.png);
}
.listEvent > li.linkJ::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 81px;
  height: 81px;
  background-image: url(../img/imgRibbon.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.listEvent > li + li {
  margin-left: 10px;
}
.listEvent > li:nth-of-type(4n+1) {
  margin-left: 0;
}
.listEvent .title {
  display: table;
  width: 100%;
  height: 110px;
}
.listEvent .title p {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 0 40px;
  font-size: 24px;
  line-height: 1.2;
}
.listEvent .image {
  width: 100%;
  height: 210px;
  text-align: center;
  background-color: #e6e6e6;
  overflow: hidden;
}
.listEvent .image img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.listEvent .information {
  display: table;
  width: 100%;
  height: 110px;
  font-size: 20px;
  line-height: 1.3;
}
.listEvent .information .inner {
  display: table-cell;
  vertical-align: middle;
  padding: 0 16px 0 26px;
}
.listEvent .information p {
  padding-left: 38px;
  background-repeat: no-repeat;
  background-position: left center;
}
.listEvent .information p + p {
  margin-top: 8px;
}
.listEvent .information .schedule {
  background-image: url(../img/iconCalendar.png);
}
.listEvent .information .schedule .time {
  margin-left: 20px;
}
.listEvent .information .venue {
  background-image: url(../img/iconMarker.png);
}

/* modal */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 1;
}
.detailEvent {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 1840px;
  height: 880px;
  background-image: url(../img/bgLight.png);
  z-index: 2;
}
.detailEvent .inner {
  position: relative;
  height: 100%;
}
.detailEvent.linkJ > .inner::after {
  content: url(../img/imgRibbon.png);
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 200;
}
.detailEvent .btnClose {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
  background-image: url(../img/bgLight.png);
  background-position: 6px 0;
}
.detailEvent .image {
  position: relative;
  width: 880px;
  height: 100%;
  text-align: center;
  background-color: #e6e6e6;
}
.detailEvent .image .swiper-container {
  height: 100%;
}
.detailEvent .image .swiper-slide {
  overflow: hidden;
}
.swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
  width: 100%;
  height: 100%;
}
.detailEvent .image > ul,
.detailEvent .image > ul li {
  width: 100%;
  height: 100%;
}
/*.detailEvent .image img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}*/
.btnPrev,
.btnNext {
  content: '';
  position: absolute;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%);
  width: 35px;
  height: 0;
  padding-top: 64px;
  line-height: 1.6;
  overflow: hidden;
  background-repeat: no-repeat;
  outline: none;
}
.btnPrev {
  background-image: url(../img/btnPrev.png);
  left: 18px;
}
.btnNext {
  background-image: url(../img/btnNext.png);
  right: 18px;
}
.detailEvent .information {
  position: absolute;
  top: 0;
  right: 0;
  width: 960px;
  height: 880px;
  padding: 0 32px 0 49px;
  box-sizing: border-box;
}
.detailEvent .information .inner {
  overflow-y: scroll;
  padding-right: 49px;
}
.detailEvent .information .inner::-webkit-scrollbar {
  overflow: hidden;
  width: 14px;
}
.detailEvent .information .inner::-webkit-scrollbar-button {
  display:none;
}
.detailEvent .information .inner::-webkit-scrollbar-thumb,
.detailEvent .information .inner::-webkit-scrollbar-corner {
  background-color: rgba(0,0,0,.2)
}
.detailEvent .information .title {
  font-size: 46px;
  line-height: 1.3;
  margin-top: 49px;
}
.detailEvent .information .schedule,
.detailEvent .information .venue,
.detailEvent .information .organizer,
.detailEvent .information .telephone {
  padding-left: 68px;
  background-repeat: no-repeat;
  background-position: left center;
  line-height: 1.3;
}
.detailEvent .information .schedule {
  font-size: 30px;
  margin-top: 39px;
  background-image: url(../img/iconModalCalendar.png);
}
/*
.detailEvent .information .schedule .time {
  margin-left: .8em;
}
*/
.detailEvent .information .venue {
  font-size: 30px;
  margin-top: 16px;
  background-image: url(../img/iconModalMarker.png);
}
.detailEvent .information .organizer {
  font-size: 30px;
  margin-top: 16px;
  background-image: url(../img/iconModalOrganizer.png);
}
.detailEvent .information .telephone {
  font-size: 30px;
  margin-top: 16px;
  background-image: url(../img/iconModalTelephone.png);
}
.detailEvent .information .description {
  font-size: 32px;
  line-height: 1.5;
  margin: 49px 0;
}