@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

/* ==============================================================
/*     Reset  
/* ============================================================== */
* {
  box-sizing: border-box;
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
dl,
dt,
dd,
ol,
ul,
li,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  vertical-align: baseline;
  background: transparent;
  word-break: break-word;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  overflow: hidden;
}
ul {
  list-style: none;
}
input,
select {
  border: none;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  outline: none;
}
h2,
h3,
h4,
h5,
th,
dt,
strong {
  font-weight: 700;
}
p,
li,
dt,
dd,
span {
  font-size: 1.8rem;
  line-height: 2;
}
p {
  margin-bottom: 1em;
}
.cTxt {
  text-align: center;
}
.rTxt {
  text-align: right;
}
.sTxt {
  font-size: 1.4rem;
}
.fPC {
  display: none;
}

a,
a:visited {
  color: #000;
  transition: 0.2s;
}
img {
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .fSP {
    display: none;
  }
  .fPC {
    display: inline-block;
  }
  a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  p,
  li,
  dt,
  dd,
  span {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* code below is for text size in the single header line */

.large {
  font-size: 32px;
}

.medium {
  font-size: 18px;
}

.small {
  font-size: 16px;
}

/* ==============================================================
/*     Header
/* ============================================================== */
header {
  position: fixed;
  width: 300px;
  height: 100vh;
  padding-top: 50px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  text-align: center;
}
header a {
  text-decoration: none;
}
header h1 img {
  display: inline-block;
  margin-bottom: 15px;
}
header h1 a {
  font-size: 1.3rem;
}
.liMenu {
  margin: 50px 0;
}
.liMenu li {
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
}
.liMenu li a {
  color: #000;
}
.liHeader_lang,
.liSns {
  display: flex;
  justify-content: center;
}
.liHeader_lang li {
  margin: 0 5px;
}
.liHeader_lang a,
.liHeader_lang span {
  display: block;
  width: 90px;
  color: #5d806e;
  border: 1px solid #5d806e;
  background: #fff;
  font-size: 1.2rem;
}
.liHeader_lang .active {
  color: #fff;
  background: #5d806e;
}
.liSns li {
  margin: 50px 10px 20px;
  line-height: 1;
}
.liHeader_support li {
  margin-top: 20px;
  font-size: 1.2rem;
}
@media screen and (max-height: 800px) {
  header {
    padding-top: 25px;
  }
  .liMenu {
    margin: 25px 0;
  }
  .liSns li {
    margin-top: 35px;
  }
  .liHeader_support li {
    margin-top: 10px;
  }
}
@media screen and (max-height: 730px) {
  header {
    overflow-y: scroll;
    padding-bottom: 30px;
  }
  header::after {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  header {
    width: 100%;
    height: 60px;
    padding: 10px 0 0;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    overflow: visible;
    z-index: 999;
  }
  header h1 img {
    width: auto;
    height: 25px;
    margin-bottom: 3px;
  }
  header h1 a {
    font-size: 1rem;
  }

  .headerMenuSP {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 25px;
    background: #fff;
    z-index: 8888;
    overflow-y: auto;
  }
  .spMenuBtn,
  .spMenuBtn span {
    display: inline-block;
    transition: all 0.3s;
  }
  .spMenuBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    appearance: none;
    z-index: 9999;
  }
  .spMenuBtn span {
    position: absolute;
    left: 7px;
    width: 26px;
    height: 1px;
    background-color: #000;
  }
  .spMenuBtn span:nth-of-type(1) {
    top: 15px;
  }
  .spMenuBtn span:nth-of-type(2) {
    bottom: 15px;
  }
  .spMenuBtn.open span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
  .spMenuBtn.open span:nth-of-type(2) {
    transform: translateY(-5px) rotate(45deg);
  }

  .headerMenu li {
    font-size: 2.5rem;
  }
  .liSns li {
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .liHeader_support {
    position: static;
  }
}

/* ==============================================================
/*     Content & Common
/* ============================================================== */
.container {
  width: calc(100% - 300px);
  margin-left: 300px;
}
.inner {
  padding: 50px;
}

.blockMain h2 {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 25px;
  text-align: center;
  color: #5d806e;
  font-size: 2.8rem;
  line-height: 1.4;
}
.blockMain > h2:not(:first-child) {
  margin-top: 75px;
}
.blockMain h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 25px;
  height: 3px;
  margin-left: -12.5px;
  background: #5d806e;
}
.blockMain h3 {
  margin-bottom: 35px;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.4;
}
.blockMain h4 {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
    margin-left: 0;
    padding-top: 60px;
  }
  .inner {
    padding: 25px;
  }
  .blockMain h2 {
    margin-bottom: 25px;
    padding-bottom: 25px;
    font-size: 2.2rem;
  }
  .blockMain > h2:not(:first-child) {
    margin-top: 50px;
  }
  .blockMain h2::after {
    width: 20px;
    height: 2px;
    margin-left: -10px;
  }
  .blockMain h3 {
    margin-bottom: 35px;
    font-size: 2rem;
  }
  .blockMain h4 {
    font-size: 1.8rem;
  }
}

/* Table
----------------------------------*/
.blockMain table {
  width: 100%;
  margin-bottom: 1.5em;
  border-collapse: collapse;
}
.blockMain th,
.blockMain td {
  padding: 12px 25px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
}
.blockMain th {
  width: 25%;
  color: #fff;
  background: #b4b4b4;
  border-color: #b4b4b4;
  text-transform: uppercase;
}
.blockMain th:nth-child(2) {
  width: 50%;
}
.blockMain table tr:nth-child(odd) {
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .blockMain th,
  .blockMain td {
    padding: 8px 10px;
    font-size: 1.4rem !important;
  }
  .blockMain th {
    width: 5em;
  }
  .blockMain th:nth-child(2) {
    width: calc(100% - 10em);
  }
}

/* Links
----------------------------------*/
.linkInline {
  padding-left: 20px;
  background: url("../img/ico_arrow-bk.png") no-repeat 3px 3px;
  background-size: 9px auto;
  font-weight: bold;
}

/* Buttons
----------------------------------*/
.btn {
  position: relative;
  display: block;
  width: 300px;
  line-height: 50px;
  margin: 50px auto;
  text-align: center;
  color: #fff;
  background: #5d806e;
  font-size: 24px;
}
.btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -6px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
}

/* Slider
----------------------------------*/
.blockSlider {
  margin-bottom: 75px !important;
}
.blockSlider .slick-slide img {
  width: 100%;
  height: auto;
}
.slick-dots {
  bottom: -45px;
}
.slick-dots li button::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  color: #666;
  background: #666;
  border-radius: 50%;
  transition: 0.1s;
}
.slick-dots li button::before:hover {
  transition: 0.1s;
}
.slick-dots li.slick-active button::before {
  background: #5d806e;
  opacity: 1;
}
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  z-index: 100;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev::before,
.slick-next::before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background: #5d806e url("../img/ico_arrow-wh.png") no-repeat 50% 50%;
  background-size: 9px auto;
  transition: 0.1s;
  opacity: 0.5;
}
.slick-prev::before {
  transform: rotate(180deg);
}
.slick-prev:focus::before,
.slick-next:focus::before {
  opacity: 0.5;
}
.slick-prev:hover::before,
.slick-next:hover::before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 30px;
  }
  .slick-prev::before,
  .slick-next::before {
    width: 30px;
  }
}

/* ==============================================================
/*     Local Pages
/* ============================================================== */
.ttlArea {
  margin-bottom: 25px;
  line-height: 300px;
  background: #000 no-repeat 50% 50%;
  background-size: cover;
}
.ttlArea h1 {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
}
.ttlArea-lineup {
  background-image: url("../img/lineup/bg.png");
}
.ttlArea-schedule {
  background-image: url("../img/schedule/bg.png");
}
.ttlArea-event {
  background-image: url("../img/event/bg.png");
}
.ttlArea-catalogue {
  background-image: url("../img/catalogue/bg.png");
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ttlArea {
    line-height: 200px;
  }
  .ttlArea h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .ttlArea {
    line-height: 150px;
  }
  .ttlArea h1 {
    font-size: 2.5rem;
  }
}

/* ==============================================================
/*     LINEUP
/* ============================================================== */
.blockLineup {
  margin-bottom: 60px;
}
.lineup_img img {
  width: 250px;
  height: auto;
}
.lineup_genres,
.lineup_info,
.lineup_detail,
.event_area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.lineup_genres li,
.event_area li {
  min-width: 90px;
  line-height: 25px;
  margin-right: 10px;
  color: #fff;
  background: #929292;
  font-size: 1.2rem;
  text-align: center;
}
.lineup_ttl {
  margin: 30px 0;
  font-size: 3rem;
  text-align: left !important;
}
.lineup_info li {
  padding-right: 15px;
  line-height: 1;
  font-size: 1.5rem;
}
.lineup_info li:not(:last-child) {
  margin-right: 15px;
  border-right: 2px solid #ccc;
}
.lineup_detail dt {
  width: 80px;
  font-size: 1.5rem;
}
.lineup_detail dd {
  width: calc(100% - 80px);
  font-size: 1.5rem;
}
.blockLineup p {
  line-height: 1.8;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .blockLineup {
    display: flex;
  }
  .lineup_img {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .lineup_img {
    margin-bottom: 25px;
    text-align: center;
  }
  .lineup_ttl {
    margin: 15px 0 !important;
    font-size: 2.4rem;
  }
  .lineup_genres,
  .lineup_info,
  .lineup_detail,
  .event_area {
    margin-bottom: 10px;
  }
  .lineup_info li,
  .lineup_detail dt,
  .lineup_detail dd,
  .blockLineup p {
    font-size: 1.4rem;
  }
}

/* ==============================================================
/*     EVENT
/* ============================================================== */

.blockSchedule {
  max-width: 1080px;
  margin: 0 auto 60px;
}
.blockSchedule h3 {
  margin-bottom: 15px;
  font-size: 2.2rem;
  text-align: center;
}
.schedule_img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
}

.blockEvent {
  max-width: 840px;
  margin: 0 auto 60px;
}
.blockEvent h3 {
  margin-bottom: 15px;
  font-size: 2.2rem;
  text-align: left;
}
.event_img img {
  width: 100%;
  height: auto;
}
.event_txt p {
  font-size: 1.7rem;
}
.li3line li {
  margin-bottom: 25px;
  font-size: 1.4rem;
  text-align: center;
}
.li3line img {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .blockEvent {
    display: flex;
  }
  .event_img {
    width: calc(50% - 25px);
    margin-right: 50px;
  }
  .event_txt {
    width: calc(50% - 25px);
  }
  .li3line {
    display: flex;
    justify-content: space-between;
  }
  .li3line li {
    width: calc(33% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .blockEvent h3 {
    font-size: 2rem;
  }
  .event_img {
    margin-bottom: 20px;
  }
  .zoom {
    pointer-events: none;
  }
}

/* ==============================================================
/*     CATALOGUE
/* ============================================================== */
.liCatalogues {
  display: flex;
  flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto;
}
.liCatalogues li {
  width: 25%;
  margin-bottom: 50px;
  text-align: center;
  font-size: 1.3rem;
}
.liCatalogues li img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
.liCatalogues-large {
  justify-content: center;
}
.liCatalogues-large li {
  width: 50%;
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .liCatalogues {
    max-width: 100%;
  }
  .liCatalogues li {
    width: 50%;
    margin-bottom: 35px;
  }
  .liCatalogues-large li {
    width: 75%;
    font-size: 1.5rem;
  }
}

/* ==============================================================
/*     FOOTER
/* ============================================================== */
footer {
  background: #5d806e;
  text-align: center;
}
footer .inner {
  padding: 50px 0 20px;
}
footer a {
  color: #fff !important;
}
.liFooter {
  display: flex;
  justify-content: center;
  margin: 45px 0 35px;
}
.liFooter li {
  padding: 0 25px;
  line-height: 1;
  font-size: 1.5rem;
  border-right: 1px solid #fff;
}
.liFooter li:first-child {
  border-left: 1px solid #fff;
}
.liFooter a {
  text-decoration: none;
}
footer .liSns li {
  margin-top: 0;
}
footer p {
  margin: 25px 0 0;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 1000px) {
  footer .inner {
    padding: 25px 0 20px;
  }
  .liFooter {
    display: block;
    margin: 20px 0;
  }
  .liFooter li {
    margin-bottom: 10px;
    padding: 0;
    line-height: 1.5;
    font-size: 1.3rem;
    border: none !important;
  }
  .liFooter li a {
    padding: 0 0 0 13px;
    background: url("../img/ico_arrow-wh.png") no-repeat 0 3px;
    background-size: 6px auto;
  }
  footer p {
    margin-top: 5px;
    font-size: 1rem;
  }
}
