@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : 共通トップ、トップ
===================================================================== */
body {
  overflow-x: hidden;
}

/* =====================================================================
    top_common
======================================================================*/
.top_common {
  padding-bottom: 16rem;
}
.top_common_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.top_common_list li {
  margin: 0 calc(8 / 680 * 100%) 0.8rem 0;
  width: calc(336 / 680 * 100%);
}
@media screen and (max-width: 767px) {
  .top_common_list li:nth-child(2n), .top_common_list li:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  #top_common .header {
    padding-bottom: 0;
  }
  .top_common_list li {
    margin: 0 calc(16 / 1200 * 100%) 1.6rem 0;
    width: calc(288 / 1200 * 100%);
  }
  .top_common_list li:nth-child(4n), .top_common_list li:last-child {
    margin-right: 0;
  }
  .top_common_list li a:hover {
    transform: translateY(-1rem);
  }
}
/* =====================================================================
    mv
======================================================================*/
.heimaku {
  background-color: #bf3326;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  padding: 2rem;
}

.mv {
  padding: 5rem 0 10rem;
}
.mv h1 {
  margin: 0 calc(50% - 50vw);
}

.mv_au {
  margin: -5rem auto 4rem;
  width: calc(450 / 680 * 100%);
}

#top .mv {
  padding-bottom: 3.8rem;
}

.bnr_access {
  margin: 3rem auto 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mv {
    padding: 2vh 0 5vh;
  }
  .mv h1 {
    margin: 0 auto;
    width: 80vh;
    max-width: 769px;
  }
  .mv_au {
    width: 46vh;
    max-width: 450px;
  }
  #top .mv {
    padding-bottom: 4.4rem;
  }
  .bnr_access {
    width: 40%;
  }
  .bnr_access a:hover {
    transform: translateY(1rem);
  }
}
.attention {
  width: 90%;
  margin: 5rem auto;
  background-color: #fff;
  color: #bf3326;
  border-radius: 3.2rem;
}
@media screen and (min-width: 768px) {
  .attention {
    width: 60%;
  }
}
.attention p {
  padding: 2rem 5rem;
  line-height: 1.5;
}

/* =====================================================================
    fiim_slider
======================================================================*/
.film_slider {
  display: flex;
  background: #000;
}
.film_slider_inner {
  position: relative;
  display: flex;
  padding: 5.1rem 0;
  animation: loopLeft 25s infinite linear;
}
.film_slider_inner::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.1rem;
  background: url(../images/common/img_film_side.jpg) space center/auto 100%;
}
.film_slider_inner::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.1rem;
  background: url(../images/common/img_film_side.jpg) space center/auto 100%;
  transform: scale(1, -1);
}
.film_slider_inner img {
  margin: 0 1.5rem;
  width: 44rem;
}

@keyframes loopLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .film_slider_inner {
    animation-duration: 30s;
  }
  .film_slider_inner img {
    margin: 0 1rem;
    width: 42rem;
  }
}
/* =====================================================================
    intro
======================================================================*/
.intro {
  background-color: #000;
  background-image: url(../images/top/bg_intro_top.jpg), url(../images/top/bg_intro_bottom.jpg);
  background-position: top left, bottom right -18rem;
  background-size: 118% auto;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 富山展*/
.toyama .intro {
  background-image: url(../images/top/bg_intro_top_toyama.jpg), url(../images/top/bg_intro_bottom.jpg);
  background-position: top left -6rem, bottom right -18rem;
}

/* 京都展*/
.kyoto .intro {
  background-image: url(../images/top/bg_intro_top_kyoto.jpg), url(../images/top/bg_intro_bottom.jpg);
  background-position: top -1rem left -2rem, bottom right -18rem;
}

.intro_group {
  position: relative;
}
.intro_group_txt {
  position: relative;
  background-color: #f2a324;
  z-index: 2;
}
.intro_group_txt h2 {
  margin: 0 0 10rem calc(55 / 750 * 100%);
  width: calc(641 / 750 * 100%);
}
.intro_group_txt .lead2 {
  margin: 5rem 0 0 calc(55 / 750 * 100%);
  width: calc(599 / 750 * 100%);
}
.intro_group_txt .ojisan2 {
  position: absolute;
  top: 0;
  right: 0;
  margin: calc(-530 / 750 * 100%) calc(46 / 750 * 100%) 0 0;
  width: calc(260 / 750 * 100%);
}
.intro_group_txt .ojisan1 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 0 calc(-441 / 750 * 100%) calc(73 / 750 * 100%);
  width: calc(213 / 750 * 100%);
}
.intro_group p {
  padding: 0 calc(50 / 750 * 100%);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.666;
}
.intro_group .bg_shape {
  position: absolute;
  width: 100%;
  transform: scale(3);
}
.intro_group.scrollIn .bg_shape {
  transform: scale(1);
  animation: scaleDown 8s 1 ease-out;
}
.intro_group.top {
  padding-top: 96rem;
}
.intro_group.top .bg_shape {
  top: 9rem;
  right: 0;
  transform-origin: bottom right;
}
.intro_group.top p {
  padding-bottom: 2em;
}
.intro_group.bottom {
  margin-top: -1px;
  padding-bottom: 69rem;
}
.intro_group.bottom .bg_shape {
  bottom: 0;
  left: 0;
  transform-origin: top left;
}

@keyframes scaleDown {
  0% {
    transform: scale(3);
  }
  5% {
    transform: scale(1.5);
  }
  10% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 768px) {
  .intro {
    background-position: top left, bottom right;
    background-size: 50% auto;
  }
  /* 富山展*/
  .toyama .intro {
    background-position: top left -6rem, bottom right;
  }
  /* 京都展*/
  .kyoto .intro {
    background-position: top left, bottom right;
  }
  .intro_group_txt {
    width: calc(960 / 1920 * 100%);
    background-color: transparent;
  }
  .intro_group_txt h2 {
    margin: 0 0 8rem;
    width: calc(641 / 960 * 100%);
  }
  .intro_group_txt .lead2 {
    margin: calc(55 / 960 * 100%) 0 0;
    width: calc(658 / 960 * 100%);
  }
  .intro_group_txt .ojisan2 {
    margin: calc(136 / 960 * 100%) calc(31 / 960 * 100%) 0 0;
    width: calc(195 / 960 * 100%);
  }
  .intro_group_txt .ojisan1 {
    margin: 0 0 calc(51 / 960 * 100%) calc(-220 / 960 * 100%);
    width: calc(160 / 960 * 100%);
  }
  .intro_group p {
    padding: 0;
    font-size: 1.8rem;
  }
  .intro_group .bg_shape {
    width: calc(1341 / 1920 * 100%);
  }
  .intro_group.scrollIn .bg_shape {
    animation-duration: 14s;
  }
  .intro_group.top {
    padding-top: 0;
  }
  .intro_group.top .bg_shape {
    top: 0;
    transform-origin: top right;
  }
  .intro_group.top .intro_group_txt {
    margin-left: calc(960 / 1920 * 100%);
    padding: calc(80 / 1920 * 100%) 0 calc(222 / 1920 * 100%);
  }
  .intro_group.top p {
    padding-bottom: 0;
  }
  .intro_group.bottom {
    margin-top: calc(-126 / 1920 * 100%);
    padding-bottom: 0;
  }
  .intro_group.bottom .bg_shape {
    transform-origin: bottom left;
  }
  .intro_group.bottom .intro_group_txt {
    margin-left: calc(320 / 1920 * 100%);
    padding: calc(104 / 1920 * 100%) 0 calc(159 / 1920 * 100%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  .intro_group_txt {
    width: 65%;
  }
  .intro_group .bg_shape {
    width: 88%;
  }
  .intro_group.top .intro_group_txt {
    margin-left: 35%;
  }
  .intro_group.bottom {
    margin-top: 10%;
  }
}
/* =====================================================================
    news_twitter
======================================================================*/
.news_twitter {
  padding: 16rem 0;
  background: #000;
}
.news_twitter .news,
.news_twitter .twitter,
.news_twitter .movie {
  margin: 0 auto;
  width: calc(640 / 680 * 100%);
}
.news_twitter .news h2,
.news_twitter .twitter h2,
.news_twitter .movie h2 {
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 768px) {
  .news_twitter {
    padding: 8rem 0;
  }
  .news_twitter .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .news_twitter .news,
  .news_twitter .twitter,
  .news_twitter .movie {
    width: calc(480 / 1200 * 100%);
  }
  .news_twitter .news h2,
  .news_twitter .twitter h2,
  .news_twitter .movie h2 {
    margin-bottom: 2.2rem;
  }
  .twitter_none .news_list {
    margin-left: -25%;
    width: 150%;
    height: auto;
  }
  .twitter_none .news_list li.new a::before {
    left: 1.5em;
  }
}
/* =====================================================================
    news
======================================================================*/
.news {
  padding-bottom: 16rem;
}
.news h2 {
  width: calc(185 / 640 * 100%);
}

.news_list {
  background: #fff;
  border-radius: 3.2rem;
  box-shadow: 0 0 6rem 0 rgba(0, 0, 0, 0.4) inset;
}
.news_list li {
  border-bottom: 1px solid;
}
.news_list li:last-child {
  border-bottom: 0;
}
.news_list li a {
  position: relative;
  padding: 4rem calc(40 / 640 * 100%);
}
.news_list li a time {
  display: block;
  margin-bottom: 2rem;
  font-size: 90%;
  font-weight: 800;
  color: #f2a324;
}
.news_list li a h3 {
  line-height: 1.333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.news_list li.nolink a {
  pointer-events: none;
}
.news_list li.new a::before {
  content: "NEW";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin: 4rem 0 0 9em;
  font-size: 90%;
  font-weight: 800;
  color: #bf3326;
}

@media screen and (min-width: 768px) {
  .news {
    margin: 0;
    padding-bottom: 0;
  }
  .news h2 {
    margin-left: auto;
    margin-right: auto;
    width: calc(138 / 480 * 100%);
  }
  .news_list {
    height: 415px;
  }
  .news_list li a {
    padding: 30px calc(30 / 480 * 100%);
    font-size: 18px;
  }
  .news_list li a time {
    margin-bottom: 9px;
  }
  .news_list li a h3 {
    -webkit-line-clamp: 2;
  }
  .news_list li a:hover h3 {
    text-decoration: underline;
  }
  .news_list li.new a::before {
    margin-top: 30px;
  }
}
/* =====================================================================
    twitter
======================================================================*/
.twitter h2 {
  margin-left: auto;
  width: calc(174 / 640 * 100%);
}

.twitter_widgets {
  height: 415px;
  background: #fff;
  border-radius: 3.2rem;
  overflow: hidden;
  box-shadow: 0 0 6rem 0 rgba(0, 0, 0, 0.4) inset;
}

@media screen and (min-width: 768px) {
  .twitter {
    margin-left: calc(160 / 1200 * 100%);
  }
  .twitter h2 {
    margin-right: auto;
    width: calc(115 / 480 * 100%);
  }
}
/* =====================================================================
    movie
======================================================================*/
.movie h2 {
  margin-left: auto;
  width: calc(209 / 640 * 100%);
}

.btn_x {
  margin-top: 16rem;
}
.btn_x a {
  color: #000;
  background: #f2a324;
}
.btn_x a::after {
  right: 1em;
  width: 1.2em;
  height: 1.2em;
  border: 0;
  background: url(../images/common/icon_arrow_circle.svg) no-repeat center/contain;
  transform: rotate(0);
}

.btn_x2 {
  margin-top: 5rem;
}
.btn_x2 a {
  color: #f2a324;
  background: #000;
}

@media screen and (min-width: 768px) {
  .movie {
    margin-left: calc(160 / 1200 * 100%);
    width: calc(560 / 1200 * 100%) !important;
  }
  .movie h2 {
    margin-right: auto;
    width: 28.2142857143%;
  }
  .btn_x {
    margin-top: 3.2rem;
    width: 100%;
    max-width: 440px;
  }
  .btn_x a:hover::after {
    right: 0.5em;
  }
}
/* =====================================================================
    banner
======================================================================*/
.banner {
  padding-top: 8rem;
}

@media screen and (min-width: 768px) {
  .banner {
    width: 100%;
  }
}
/* =====================================================================
    outline
======================================================================*/
.outline {
  padding: 16rem 0 50rem;
}
.outline .sec_ttl {
  padding-top: 0;
}
.outline .sec_ttl::before {
  display: none;
}
.outline .popup_btn {
  margin-top: 16rem;
}

.btn_request {
  margin: 0 auto;
  width: calc(640 / 680 * 100%);
}
.btn_request a {
  box-shadow: 0 3rem 6rem 0 rgba(228, 120, 3, 0.75);
}

@media screen and (min-width: 768px) {
  .outline .popup_btn {
    margin-top: 12rem;
  }
  .btn_request {
    width: calc(473 / 1200 * 100%);
  }
  .btn_request a:hover {
    box-shadow: 0 0 6rem 0 rgba(228, 120, 3, 0.75);
    transform: translate(1.2rem, 1.2rem);
  }
}
/* =====================================================================
	popup
======================================================================*/
.popup_notice_box {
  background-color: #fff;
  border-radius: 3.2rem;
  transform: rotate(0.05deg);
  overflow: hidden;
}
.popup_notice_box header {
  padding: 6rem;
  padding-bottom: 10rem;
  background: #f2a324;
}
.popup_notice_box header::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.8rem;
  background: url(../images/common/img_film_orange.jpg) repeat-x top left -0.8rem/auto 100%;
}
.popup_notice_box header h4 {
  margin-bottom: 0.3em;
  font-size: 133%;
  font-weight: 800;
  line-height: 1.25;
}
.popup_notice_box header time {
  font-size: 93%;
  font-weight: 800;
}

.popup_notice_contents {
  padding: 6rem;
  line-height: 1.333;
}
.popup_notice_contents > *:not(:last-child) {
  margin-bottom: 1em;
}
.popup_notice_contents p span {
  color: #bf3326;
}

@media screen and (min-width: 768px) {
  .popup_notice_box header {
    padding: 4rem 12rem;
    padding-bottom: 5rem;
  }
  .popup_notice_box header::after {
    height: 3.4rem;
  }
  .popup_notice_box header h4 {
    font-size: 150%;
    line-height: 1.5;
  }
  .popup_notice_box header time {
    font-size: 100%;
  }
  .popup_notice_contents {
    padding: 4rem 12rem;
    line-height: 1.625;
  }
}/*# sourceMappingURL=top.css.map */