@charset "UTF-8";

:root {
  --text-color: #000000;
  --white: #FFFFFF;
  --pink: #E73980;
}
html{
  font-size: 62.5%;
}
body{
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  color: var(--text-color);
  line-height: 1.6;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
}
.serif{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
::selection{
  background: var(--pink);
  color: var(--white);
}
a{
  color: var(--pink);
  text-decoration: underline;
}
a:active, a:hover{
  color: var(--text-color);
  text-decoration: none;
  transition: all ease .25s;
}
img{
  max-width: 100%;
  height: auto;
}
a:hover img{
  opacity: .85;
  transition: all ease .25s;
}
.container{
  max-width: 1110px;
}

@media screen and (min-width: 992px) {
  body{
    font-size: 1.8em;
  }
}


/* -------- 見出し共通 -------- */
.head img{
  height: 42px;
  margin-bottom: 0rem;
}
.head__sub img{
  display: block;
  height: 20px;
  text-align: center;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 992px) {
  .head img{
    height: 60px;
  }
  .head__sub img{
    height: 26px;
    margin: 0 auto 5rem;
  }
}

/* ---------- news ---------- */
.news{
  padding: 4rem 0 0;
}
.news dl{
  border-bottom: 1px solid var(--text-color);
  padding: 1.2rem 0;
  margin-bottom: 1.2rem;
}
.news dl:first-of-type{
  border-top: 1px solid var(--text-color);
}
.news dl dt{
  color: var(--pink);
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .news{
    padding: 12rem 0 0;
  }
  .news dl{
    padding: 2rem 0;
    margin-bottom: .5rem;
  }
  .news dl dt{
    display: inline-block;
    width: 15%;
  }
  .news dl dd{
    display: inline-block;
    width: 83%;
  }
}

/* ---------- banner ---------- */
.banner{
  padding: 4rem 0;
}
@media screen and (min-width: 992px) {
  .banner{
    padding: 12rem 0;
  }
}
/*------ outline ------*/
.outline{
  background: var(--pink);
  padding: 4rem 0 0;
}
.outline__row__bg{
  background: var(--white);
  border-radius: 40px;
  padding: 4rem 0 0;
}
.outline__wrap{
  padding: 1.5rem 0;
}
.outline__wrap--first{
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  padding: 1.5rem 0;
}
.outline__wrap dl{
  padding: .5rem 0;
  margin: 0;
}
.outline__wrap dl dt{
  color: var(--pink);
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .outline{
    padding: 12rem 0 0;
  }
  .outline__row__bg{
    background: var(--white);
    border-radius: 40px;
    padding: 6rem;
  }
  .outline__wrap{
    padding: 1.5rem 0;
  }
  .outline__wrap--first{
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    padding: 2rem 0;
  }
  .outline__wrap dl{
    padding: 1.5rem 0;
  }
  .outline__wrap dl dt{
    display: inline-block;
    vertical-align: top;
    width: 12%;
    margin-bottom: 0;
  }
  .outline__wrap dl dd{
    display: inline-block;
    vertical-align: top;
    width: 87%;
  }
}

/*------ ticket ------*/
.table{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  border-collapse: collapse;
  border: 1px solid var(--pink);
  margin: 1rem 0;
}
.table tr th{
  background: var(--pink);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0;
}
.table tr:not(:last-child) th{
  border-bottom: 1px solid var(--white);
}
.table tr td{
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0;
}
.table tr td .small{
  font-size: 1.8rem;
  font-weight: 400;
}
.table tbody{
  border-bottom: 1px solid var(--pink);
}
.outline__wrap ul{
  list-style: none;
  padding: 0;
}
.ticket__note{
  margin-bottom: 3rem;
}
.ticket__wrap{
  border:1px solid var(--pink);
  padding: 1.2rem 1.5rem .3rem;
  margin: 1rem 0 1.5rem;
}
.ticket__wrap ul li{
  list-style: none;
  padding: 0;
}
.ticket__wrap ul li::before{
  content: "◆";
  color: var(--pink);
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .table{
    width: 60%;
    margin: 1rem 0;
  }
  .table tr th{
    font-size: 2.4rem;
    padding: 1.5rem 0;
  }
  .table tr td{
    font-size: 3.6rem;
    padding: 1.5rem 0;
  }
  .table tr td .small{
    font-size: 2.4rem;
  }
  .ticket__note{
    margin-bottom: 4rem;
  }
  .ticket__wrap{
    border:1px solid var(--pink);
    padding: 2.5rem 4rem 1.5rem;
  }
  .ticket__wrap ul li{
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: .6rem;
  }
  .ticket__wrap ul li::before{
    margin-right: .5rem;
  }
}

/* ---------- exhibition ---------- */
.exhibition{
  background: var(--pink);
  padding: 4rem 0;
}
.intro{
  font-size: 1.7rem;
  margin-bottom: 4rem;
}
.fc-pink{
  color: var(--pink);
}
.exhibit-wrap{
  margin-bottom: 3rem;
}
.exhibit-wrap h3{
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: .5rem;
}
@media screen and (min-width: 992px) {
  .exhibition{
    padding: 12rem 0;
  }
  .intro{
    font-size: 2rem;
    line-height: 2;
  }
  .exhibit-wrap{
    margin-bottom: 4rem;
  }
  .exhibit-wrap h3{
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

/* ---------- event ---------- */
.event{
  padding: 4rem 0;
}
.event__wrap{
  border: 1px solid var(--pink);
  padding: 2rem;
  margin-bottom: 2rem;
}
.event__wrap h3{
  color: var(--pink);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.event__wrap h4{
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.event__wrap h4 a{
  font-size: 2rem;
}
.event__wrap dl dt{
  font-weight: 400;
}
.event__time__wrap{
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 1rem 1.5rem .2rem;
  margin: 1rem 0;
}
@media screen and (min-width: 992px) {
  .event{
    padding: 12rem 0;
  }
  .event__wrap{
    padding: 3rem 4rem;
    margin-bottom: 4rem;
  }
  .event__wrap h3{
    font-size: 3.2rem;
  }
  .event__wrap h4{
    margin-top: 3rem;
  }
  .event__wrap h4 a{
    font-size: 2.4rem;
  }
  .event__wrap dl dt{
    font-weight: 400;
    display: inline-block;
    width: 8rem;
    vertical-align: top;
  }
  .event__wrap dl dd{
    display: inline-block;
    width: calc(100% - 10rem);
    vertical-align: top;
  }
  .event__time__wrap{
    padding: 1.5rem 2rem .5rem;
  }
}

/*------ access ------*/
.access__wrap{
  border-bottom: 1px solid var(--text-color);
  padding: 0 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .access-title img{
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .access__wrap{
    padding: 0 0 8rem;
  }
}


/*------ sns ------*/
.sns-links{
  padding: 4rem 0;
}
.sns-link img{
  height: 35px;
  margin: 0 .5rem;
}
.sns-link__text{
  display: inline-block;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .sns-links img{
    margin: 0 .3rem;
  }
  .sns-link__text{
    margin-left: .5rem;
  }
}
@media screen and (min-width: 992px) {
  .sns-links{
    padding: 6rem 0;
  }
}


/*------ to top ------*/
.to-top a{
  position: fixed;
  right: 0;
  bottom: 0;
  display: block;
  width: 50px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .to-top a{
    width: 80px;
  }
}

/*------ footer ------*/
footer{
  background: var(--text-color);
  padding: 4rem 0 3rem;
}
.footer__title{
  margin-bottom: 3rem;
}
.footer__venue {
  margin-bottom: 6rem;
}
.footer__bottom{
  color: var(--white);
}
@media screen and (min-width: 768px) {
  footer{
    padding: 6rem 0 2rem;
  }
  .footer__title img{
    width: 50%;
  }
  .footer__venue img{
    width: 50%;
  }
}



