@charset "UTF-8";
/* --------------------------------------
*  基本情報
* --------------------------------------*/
html, body {
  height: 100%;
}

html {
  background-color: #000;
  font-size: 62.5%;
  overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1;
  list-style-type: none;
  font-style: normal;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  text-align: left;
  color: #333333;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1140px;
  }
}

main {
  padding-top: 76px;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

picture {
  display: block;
  text-align: center;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* --------------------------------------
*  ヘッダー
* --------------------------------------*/
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  width: 100%;
  height: 76px;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .header_wrap {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .header_wrap .header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #000;
    width: 100%;
    height: 100%;
    z-index: 4;
  }
}

.header_wrap .header_top .logo {
  padding: 0 20px;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .header_wrap .header_top .logo {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .header_wrap .header_top .menu-trigger {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header_wrap .header_top .menu-trigger span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #FFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header_wrap .header_top .menu-trigger span:nth-child(1) {
    top: 30%;
  }
  .header_wrap .header_top .menu-trigger span:nth-child(2) {
    top: 49%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .header_wrap .header_top .menu-trigger span:nth-child(3) {
    bottom: 30%;
  }
}

.header_wrap .header_menu_wrap {
  max-width: calc(100% - 300px);
}

@media screen and (max-width: 767px) {
  .header_wrap .header_menu_wrap {
    display: block;
    background: #000;
    padding: 20px 5%;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    z-index: 3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    max-height: calc(100% - 60px);
    max-width: 100%;
  }
}

.header_wrap .header_menu_wrap .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .header_wrap .header_menu_wrap .header_menu {
    display: block;
  }
}

.header_wrap .header_menu_wrap .header_menu li {
  margin-right: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1060px) {
  .header_wrap .header_menu_wrap .header_menu li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header_wrap .header_menu_wrap .header_menu li {
    margin-right: 0;
  }
}

.header_wrap .header_menu_wrap .header_menu li a {
  display: block;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .header_wrap .header_menu_wrap .header_menu li a {
    line-height: 2.5;
    text-align: center;
  }
}

.header_wrap.menu-open .header_top .menu-trigger span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%) rotate(135deg);
  transform: translate(-50%) rotate(135deg);
}

.header_wrap.menu-open .header_top .menu-trigger span:nth-child(2) {
  opacity: 0;
}

.header_wrap.menu-open .header_top .menu-trigger span:nth-child(3) {
  top: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%) rotate(-135deg);
  transform: translate(-50%) rotate(-135deg);
}

.header_wrap.menu-open .header_menu_wrap {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* --------------------------------------
*  メイン
* --------------------------------------*/
.wrap {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .wrap {
    width: 92%;
  }
}

.head02 {
  position: relative;
  color: #FFF;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  padding-bottom: 35px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .head02 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}

.head02::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/bg_head02.svg);
  background-size: cover;
  width: 856px;
  height: 102px;
}

@media screen and (max-width: 767px) {
  .head02::before {
    background-size: contain;
    background-repeat: no-repeat;
    top: -10px;
    width: 400px;
    height: 48px;
  }
}

.head02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFF;
  width: 41px;
  height: 2px;
}

.about {
  overflow: hidden;
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 45px 0;
  }
}

.about .wrap {
  max-width: 960px;
}

.about .wrap .txt_area {
  position: relative;
  background-color: #FFF;
  background-image: url(../img/bg_about.png);
  background-size: cover;
  border: 4px solid #a69480;
  margin: 0 auto;
  padding: 25px 90px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  .about .wrap .txt_area {
    padding: 5vw;
    width: 100%;
  }
}

.about .wrap .txt_area .ttl {
  color: #4c130c;
  font-size: 3rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .about .wrap .txt_area .ttl {
    font-size: 1.8rem;
  }
}

.about .wrap .txt_area .txt {
  color: #4c130c;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2.944;
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .about .wrap .txt_area .txt {
    font-size: 1.3rem;
    line-height: 5.5vw;
    margin-right: 5vw;
  }
}

.about .wrap .txt_area .img01 {
  position: absolute;
  top: -145px;
  right: -295px;
  width: 314px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .about .wrap .txt_area .img01 {
    top: -23%;
    right: -23%;
    width: 45%;
  }
}

.about .wrap .txt_area .img02 {
  position: absolute;
  bottom: -70px;
  left: -395px;
  width: 489px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .about .wrap .txt_area .img02 {
    bottom: -18%;
    left: -33%;
    width: 53%;
  }
}

.exhibit {
  background-color: #292929;
  overflow: hidden;
  padding: 110px 0 120px;
}

@media screen and (max-width: 767px) {
  .exhibit {
    padding: 45px 0;
  }
}

.exhibit .lead {
  margin-top: 25px;
}

.exhibit .lead .txt {
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2.111;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .lead .txt {
    font-size: 1.3rem;
  }
}

.exhibit .lead .img {
  margin-top: 40px;
}

.exhibit .slider_wrap {
  margin: 60px calc(-50vw + 50%) 0;
  width: 100vw;
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
  .exhibit .slider_wrap {
    margin: 60px -20px 0;
    width: calc(100% + 40px);
  }
}

@media screen and (max-width: 767px) {
  .exhibit .slider_wrap {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .exhibit .slider_wrap .slider {
    height: 130px;
  }
}



.exhibit .slider_wrap .slider li {
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .exhibit .slider_wrap .slider li {
    width: 100px;
  }
}


.exhibit .slider_wrap .slider li + li {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .exhibit .slider_wrap .slider li + li {
    margin-left: 10px;
  }
}


.exhibit .event {
  text-align: center;
}

.exhibit .event .txt_area {
  display: inline-block;
  background-color: #FFF;
  border: 4px solid #a69480;
  margin: 75px auto 0;
  padding: 30px 60px;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area {
    margin-top: 30px;
    padding: 20px;
  }
}

.exhibit .event .txt_area .ttl {
  color: #4c130c;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area .ttl {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.exhibit .event .txt_area .ttl span {
  position: relative;
  display: inline-block;
}

.exhibit .event .txt_area .ttl span::before, .exhibit .event .txt_area .ttl span::after {
  content: "";
  position: absolute;
  top: 3px;
  background-image: url(../img/icon_exhibit_event.svg);
  background-size: cover;
  width: 43px;
  height: 34px;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area .ttl span::before, .exhibit .event .txt_area .ttl span::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20px;
    height: 15px;
  }
}

.exhibit .event .txt_area .ttl span::before {
  left: -60px;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area .ttl span::before {
    left: -20px;
  }
}

.exhibit .event .txt_area .ttl span::after {
  right: -60px;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area .ttl span::after {
    right: -20px;
  }
}

.exhibit .event .txt_area .txt {
  color: #4c130c;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2.111;
  margin-top: 25px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .event .txt_area .txt {
    font-size: 1.3rem;
  }
}

.exhibit .collection {
  position: relative;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection {
    margin-top: 50px;
  }
}

.exhibit .collection .head {
  color: #FFF;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .head {
    font-size: 1.8rem;
  }
}

.exhibit .collection .collection_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  z-index: 2;
}

.exhibit .collection .collection_list li {
  background-color: #FFF;
  min-height: 630px;
  width: 392px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li {
    min-height: unset;
    width: 47.5%;
  }
}

.exhibit .collection .collection_list li + li {
  margin-left: 59px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li + li {
    margin-left: 5%;
  }
}

@media screen and (min-width: 768px) {
  .exhibit .collection .collection_list li:nth-child(2n + 1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li:nth-child(2n + 1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .exhibit .collection .collection_list li:nth-child(n + 3) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.exhibit .collection .collection_list li .txt_area {
  background-color: #FFF;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li .txt_area {
    padding: 15px 10px;
  }
}

.exhibit .collection .collection_list li .txt_area .ttl {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li .txt_area .ttl {
    font-size: 1.6rem;
  }
}

.exhibit .collection .collection_list li .txt_area .ttl span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li .txt_area .ttl span {
    font-size: 1.3rem;
  }
}

.exhibit .collection .collection_list li .txt_area .age {
  border-top: 1px solid #a69480;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .collection_list li .txt_area .age {
    font-size: 1.3rem;
  }
}

.exhibit .collection .bg01 {
  position: absolute;
  top: -110px;
  left: -200px;
  opacity: 0.2;
  width: 292px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .bg01 {
    top: -3%;
    left: -26%;
    width: 45%;
  }
}

.exhibit .collection .bg02 {
  position: absolute;
  top: -70px;
  right: -235px;
  opacity: 0.2;
  width: 348px;
}

@media screen and (max-width: 767px) {
  .exhibit .collection .bg02 {
    top: -1%;
    right: -32%;
    width: 50%;
  }
}

.info {
  overflow: hidden;
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .info {
    padding: 45px 0;
  }
}

.info .head {
  color: #FFF;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .info .head {
    font-size: 1.8rem;
  }
}

.info .hour {
  margin: 30px auto 0;
  width: 540px;
}

@media screen and (max-width: 767px) {
  .info .hour {
    max-width: 400px;
    width: 100%;
  }
}

.info .hour .hour_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 30px;
}

.info .hour .hour_flex .ttl {
  border: 1px solid #FFF;
  color: #FFF;
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  padding: 10px 0;
  text-align: center;
  width: 138px;
}

@media screen and (max-width: 767px) {
  .info .hour .hour_flex .ttl {
    font-size: 1.3rem;
    width: 80px;
  }
}

.info .hour .hour_flex .txt {
  color: #FFF;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.9;
  margin-left: 1em;
}

@media screen and (max-width: 767px) {
  .info .hour .hour_flex .txt {
    font-size: 1.3rem;
    width: calc(100% - 100px);
  }
}

.info .price {
  margin: 60px auto 0;
  width: 552px;
}

@media screen and (max-width: 767px) {
  .info .price {
    margin-top: 30px;
    max-width: 400px;
    width: 100%;
  }
}

.info .price .price_table {
  border: 1px solid #FFF;
  margin-top: 25px;
  width: 100%;
}

.info .price .price_table th, .info .price .price_table td {
  border-top: 1px solid #FFF;
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .info .price .price_table th, .info .price .price_table td {
    font-size: 1.3rem;
  }
}

.info .price .price_table th {
  background-color: #FFF;
  color: #000;
  width: 50%;
}

.info .price .price_table th:first-child {
  border-right: 1px solid #000;
}

.info .price .price_table td {
  color: #FFF;
}

.info .price .price_table td:first-child {
  border-right: 1px solid #FFF;
}

.info .price .price_table td:last-child {
  letter-spacing: 0;
}

.access {
  overflow: hidden;
  background-color: #292929;
  padding: 110px 0;
}

@media screen and (max-width: 767px) {
  .access {
    padding: 45px 0;
  }
}

.access .wrap {
  max-width: 784px;
}

.access .wrap .add {
  color: #FFF;
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-top: 35px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .access .wrap .add {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.access .wrap .add span {
  display: inline-block;
  margin-right: 0.5em;
  width: 12px;
}

@media screen and (max-width: 767px) {
  .access .wrap .add span {
    vertical-align: 5px;
  }
}

.access .wrap .map {
  background-color: #FFF;
  border: 4px solid #a69480;
  margin-top: 30px;
  padding: 4px;
}

.access .wrap .route {
  border-left: 1px solid #FFF;
  margin-top: 30px;
  padding-left: 2.5em;
}

@media screen and (max-width: 767px) {
  .access .wrap .route {
    padding-left: 2em;
  }
}

.access .wrap .route .txt {
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2.111;
}

@media screen and (max-width: 767px) {
  .access .wrap .route .txt {
    font-size: 1.3rem;
  }
}

/* --------------------------------------
*  フッター
* --------------------------------------*/
.footer_wrap {
  padding: 20px 0;
}

.footer_wrap .footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .footer_wrap .footer_flex {
    display: block;
  }
}

.footer_wrap .footer_flex .logo {
  width: 388px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .footer_wrap .footer_flex .logo {
    margin: 0 auto;
    width: 300px;
  }
}

.footer_wrap .footer_flex .info {
  color: #FFF;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.714;
  padding: 0 35px;
}

@media screen and (max-width: 767px) {
  .footer_wrap .footer_flex .info {
    font-size: 1.2rem;
    padding: 20px;
    margin: 0 auto;
    max-width: 350px;
  }
}

.footer_wrap .footer_flex .info + .info {
  border-left: 1px solid #FFF;
}

@media screen and (max-width: 767px) {
  .footer_wrap .footer_flex .info + .info {
    border-left: none;
    border-top: 1px solid #FFF;
  }
}

.footer_wrap .copyright {
  border-top: 1px solid #292929;
  color: #999;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.714;
  margin-top: 15px;
  padding-top: 15px;
  text-align: center;
}

.notice_wrap {
  text-align: center; /* 追加: フッター全体のテキストを中央寄せ */
}

.notice_wrap .notice {
   color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 1.714;
  margin-top: 15px;
  padding-top: 15px;
  text-align: center;
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .footer_wrap .copyright {
    font-size: 1.2rem;
    margin-top: 0;
  }
}

.footer_wrap .copyright span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}
/*# sourceMappingURL=style.css.map */