@charset "UTF-8";

:root {
  --bg-color: #fff1f1;
  --text-color: #333333;
  --white: #FFFFFF;
  --orange: #dc923e;
  --pink: #ed726e;
  --blue: #07a8b5;
}
html{
  font-size: 62.5%;
}
body{
  font-family: "Zen Maru Gothic", "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: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
}
::selection{
  background: var(--pink);
  color: var(--white);
}
a{
  color: var(--blue);
  text-decoration: underline;
}
a:active, a:hover{
  text-decoration: none;
  transition: all ease .25s;
}
img{
  max-width: 100%;
  height: auto;
}
a:hover img{
  opacity: .8;
  transition: all ease .25s;
}
.container{
  max-width: 1110px;
}

@media screen and (min-width: 992px) {
  body{
    font-size: 1.8em;
  }
}


/* -------- 見出し共通 -------- */
.head{
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .head{
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
}

/* ---------- news ---------- */
.news{
  font-size: 1.5rem;
  padding: 4rem 0;
}
.news .head{
  color: var(--orange);
}
.news dl{
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.news dl:first-of-type{
  border-top: 1px solid var(--text-color);
  padding-top: 1rem;
}
.news dl dt{
  color: var(--orange);
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .news{
    font-size: 1.8rem;
    padding: 12rem 0;
  }
  .news dl{
    padding: 2.5rem 0;
    margin-bottom: 1.5rem;
  }
  .news dl:first-of-type{
    padding-top: 2.5rem;
  }
  .news dl dt{
    display: inline-block;
    width: 14%;
  }
  .news dl dd{
    display: inline-block;
    width: 85%;
  }
}

/* ---------- banner ---------- */
.banner__wrap{
  background: var(--pink);
  border-radius: 10px;
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 4rem;
}
.banner__wrap h2{
  color: var(--white);
  font-size: 3rem;
}
.banner__wrap a{
  display: inline-block;
  width: 90%;
  background: var(--white);
  color: var(--pink);
  font-size: 1.65rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  padding: .8rem 2rem;
  margin: 1rem 0 .5rem;
}
.banner__wrap a::after{
  content: "";
  background: url(../img/arrow-pink.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 1.5rem;
  transition: all ease .25s;
}
@media screen and (min-width: 992px) {
  .banner__wrap{
    padding: 2.5rem 2rem;
    margin-top: 4rem;
  }
  .banner__wrap h2{
    font-size: 3.2rem;
  }
  .banner__wrap a{
    width: 85%;
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
    margin: 1rem 0 .5rem;
    transition: all ease .25s;
  }
  .banner__wrap a:hover{
    background: var(--bg-color);
    transition: all ease .25s;
  }
  .banner__wrap a:hover::after{
    transform: translateX(15px);
    transition: all ease .25s;
  }
}

/* ---------- exhibition ---------- */
.exhibition{
  background: var(--bg-color);
  padding: 4rem 0;
}
.intro{
  font-size: 1.8rem;
  line-height: 1.8;
}
.exhibition .catch{
  position: relative;
  z-index: 1;
}
.exhibition .artwork01{
  z-index: 0;
  margin-top: -15px;
}
.profile{
  color: var(--blue);
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  padding: 2rem 0 .5rem;
}
.exhibition-btn__wrap{
  margin: 3rem 0;
}
.exhibition-btn__wrap a{
  display: inline-block;
  width: 80%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 1.5rem 2.5rem;
  margin-bottom: .5rem;
}
.exhibition-btn__wrap a::after{
  content: "";
  background: url(../img/arrow-white.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .exhibition-btn__wrap a{
    width: 55%;
  }
}
@media screen and (min-width: 992px) {
  .exhibition{
    padding: 12rem 0;
  }
  .intro{
    font-size: 2rem;
    line-height: 2;
    margin-bottom: -10rem;
  }
  .exhibition .catch{
    position: relative;
    z-index: 1;
  }
  .exhibition .artwork01{
    z-index: 0;
    margin-top: -12px;
  }
  .exhibition .artwork02{
    margin-top: -12px;
  }
  .profile{
    font-size: 1.7rem;
    padding: 3rem 0 1.5rem;
    margin-bottom: 3rem;
  }
  .profile h3{
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .exhibition-btn__wrap{
    margin: 3rem 0;
  }
  .exhibition-btn__wrap a{
    width: 360px;
    font-size: 2.4rem;
    padding: 1.8rem 2rem;
    margin-bottom: 1rem;
    transition: all ease .25s;
  }
  .exhibition-btn__wrap a:hover{
    background: #24b9c4;
    transition: all ease .25s;
  }
  .exhibition-btn__wrap a::after{
    width: 17px;
    height: 17px;
    margin-left: 2.5rem;
    transition: all ease .25s;
  }
  .exhibition-btn__wrap a:hover::after{
    transform: translateX(15px);
    transition: all ease .25s;
  }
}

/*------ outline ------*/
.outline{
  background: var(--pink);
  padding: 4rem 0;
}
.outline .head{
  color: var(--white);
}
.outline__wrap{
  background: var(--white);
  padding: 1rem 1.5rem;
}
.outline__wrap dl{
  border-bottom: 1px dashed #ccc;
  padding: 1.5rem 0;
  margin: 0;
}
.outline__wrap dl:last-of-type{
  border-bottom: none;
  padding: 1.5rem 0;
  margin: 0;
}
dl dd{
  margin: 0;
}
ul{
  list-style-type: none;
  padding-left: 0;
}
ul li{
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .outline{
    padding: 12rem 0;
  }
  .outline__wrap{
    padding: 2rem 4.5rem;
  }
  .outline__wrap dl{
    padding: 2.5rem 0;
  }
  .outline__wrap dl:last-of-type{
    padding: 2.5rem 0;
  }
  .outline__wrap dl dt{
    display: inline-block;
    vertical-align: top;
    width: 13%;
  }
  .outline__wrap dl dd{
    display: inline-block;
    vertical-align: top;
    width: 85%;
  }
}


/*------ ticket ------*/
.ticket{
  padding: 4rem 0;
}
.ticket .head{
  color: var(--orange);
}
.ticket-table__wrap{
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 1rem 2rem 1rem;
  margin-bottom: 2rem;
}
.ticket-table__row{
  border-bottom: 1px dashed var(--orange);
}
.ticket-table__row:last-of-type{
  border-bottom: none;
}
.ticket-table__dl{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
.ticket-table__dl dt{
  font-size: 1.8rem;
  font-weight: 500;
  vertical-align: top;
}
.ticket-table__dl dd{
  font-size: 2.2rem;
  color: var(--orange);
  vertical-align: top;
}
.ticket-info{
  margin-bottom: 4rem;
}
.ticket-info li{
  text-indent: -1em;
  padding-left: 1em;
}
.advance-ticket__wrap{
  border: 3px solid var(--orange);
  border-radius: 15px;
  margin-bottom: 1.5rem;
}
.advance__head{
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  width: 100%;
  border-radius: 10px 10px 0 0 ;
  padding: 1.5rem 0;
}
.advance-ticket__wrap ul{
  padding: .5rem 1rem;
}
.advance-ticket__wrap ul li{
  margin-bottom: .1rem;
}
.advance-ticket__wrap li::before{
  content: "●";
  display: inline-block;
  color: var(--orange);
}
@media screen and (min-width: 768px) {
  .advance-ticket__wrap ul{
    padding: 1rem 2rem .5rem;
  }
  .advance-ticket__wrap ul li{
    display: inline-block;
    margin-bottom: .5rem;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .ticket{
    padding: 12rem 0;
  }
  .ticket-table__wrap{
    padding: 1.5rem 4.5rem 1.5rem;
  }
  .ticket-table__dl{
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
  .ticket-table__dl dt{
    font-size: 2rem;
  }
  .ticket-table__dl dd{
    font-size: 2.4rem;
  }
  .ticket-info{
    margin-bottom: 6rem;
  }
  .advance-ticket__wrap{
    margin-bottom: 2.5rem;
  }
  .advance__head{
    font-size: 2.4rem;
  }
  .advance-ticket__wrap ul{
    padding: 1.5rem 3rem 1rem;
  }
}

/*------ goods ------*/
.goods{
  background: var(--bg-color);
  padding: 4rem 0;
}
.goods .head{
  color: var(--pink);
}
.goods-btn__wrap a{
  display: inline-block;
  width: 80%;
  background: var(--pink);
  color: var(--white);
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 1.5rem 2.5rem;
  margin-bottom: .5rem;
}
.goods-btn__wrap a::after{
  content: "";
  background: url(../img/arrow-white.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .goods-btn__wrap a{
    width: 55%;
  }
}
@media screen and (min-width: 992px) {
  .goods{
    padding: 12rem 0;
  }
  .goods-btn__wrap{
    margin-top: -140px;
  }
  .goods-btn__wrap a{
    transition: all ease .25s;
    width: 360px;
    font-size: 2.4rem;
    padding: 1.8rem 2rem;
    margin-bottom: 1rem;
  }
  .goods-btn__wrap a:hover{
    transition: all ease .25s;
    background: #ff908d;
  }
  .goods-btn__wrap a::after{
    width: 17px;
    height: 17px;
    transition: all ease .25s;
    margin-left: 2.5rem;
  }
  .goods-btn__wrap a:hover::after{
    transform: translateX(15px);
    transition: all ease .25s;
  }
}
/*------ access ------*/
.access{
  padding: 4rem 0;
}
.access .head{
  color: var(--orange);
}
.access-venue{
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.access-venue p{
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .access{
    padding: 12rem 0;
  }
  .access-venue{
    margin-top: 0;
    margin-bottom: 4rem;
  }
}

/*------ to top ------*/
.to-top a{
  position: fixed;
  right: 3px;
  bottom: 40px;
  display: block;
  width: 45px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .to-top a{
    right: 30px;
    bottom: 30px;
    width: 80px;
  }
}

/*------ footer ------*/
footer{
  background: var(--bg-color);
  text-align: center;
  padding: 4rem 0 0;
}
.footer__title{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.footer__bottom{
  padding: 1.5rem 0 1rem;
}
@media screen and (min-width: 992px) {
  footer{
    padding: 8rem 0 0;
  }
  .footer__title{
    font-size: 2.4rem;
  }
  .footer__bottom{
    padding: 4rem 0 3rem;
  }
}



