@charset "UTF-8";
/*======================================================================
 * トップページ レイアウト
======================================================================*/
/*------------------------------------------------------------
 * リンクボタン
------------------------------------------------------------*/
.link-button span::after {
  width: 20px;
  height: 5px;
  border-color: transparent #000 #000 transparent;
  transform: skew(45deg) translateY(-50%) scale(1.2);
  top: 50%;
  right: -12px;
}
.link-button:hover span::after {
  right: -18px;
}


/*------------------------------------------------------------
 * ポップアップ
------------------------------------------------------------*/
.popup-content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: scroll;
}
.popup-content .close-button {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
}
.popup-content .close-button:before, .popup-content .close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #000;
}
.popup-content .close-button:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-content .close-button:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-content .popup {
  position: relative;
  max-width: 350px;
  margin: 28px auto;
  padding: 40px 20px 20px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .popup-content .popup {
    width: 90%;
  }
}
.popup-content .inner .image img {
  width: 100%;
}
.popup-content .inner p.title {
  color: #000;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin: 10px auto 0;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .popup-content .inner p.title {
    font-size: 2rem;
  }
}
.popup-content .inner p.detail {
  font-size: 1.4rem;
  line-height: 1.785;
  padding: 0 15px;
}
.popup-content .inner .link-button {
  width: calc(100% - 30px);
}


/*------------------------------------------------------------
 * swiper
------------------------------------------------------------*/
.swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}
.swiper.swiper-initialized {
  opacity: 1;
  display: block;
}


/*------------------------------------------------------------
 * section
------------------------------------------------------------*/
.section-container {
  padding: 0 0 4rem;
}
@media screen and (max-width: 768px) {
  .section-container {
    padding: 3rem 0 4rem;
  }
}
.section-container:first-of-type {
  margin: 1.6rem 0 5rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .section-container:first-of-type {
    margin: 0;
    padding-top: 1.6rem;
  }
}
.section-container:nth-of-type(odd) .section-bg {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
.section-container:nth-of-type(odd) .section-bg::before,
.section-container:nth-of-type(odd) .section-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(170, 170, 170, .1);
  position: absolute;
}
.section-container:nth-of-type(odd) .section-bg::before {
  border-radius: 0 20px 20px 20px;
  top: -5px;
  left: -5px;
}
.section-container:nth-of-type(odd) .section-bg::after {
  border-radius: 20px 20px 0 20px;
  bottom: -5px;
  right: -5px;
}
.section-container:nth-of-type(odd) .section-bg .adjust-width {
  position: relative;
  z-index: 3;
}
.section-container:last-of-type {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .section-container:last-of-type {
    padding-bottom: 2rem;
  }
}
.section-container .section-title {
  margin: 2em 0 1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .section-container .section-title {
    text-align: center;
  }
}
.section-container .section-title:first-child {
  margin-top: 0;
}
.section-container .section-title .en {
  color: #000;
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.3rem;
  margin-right: -0.3rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .section-container .section-title .en {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 320px) {
  .section-container .section-title .en {
    font-size: 3rem;
  }
}
.section-container .section-title .jp {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 2em;
}
.section-container .section-title .jp:before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
}
.section-container .section-title .jp.-renew:before {
  height: 20px;
  width: 20px;
  background: url("../images/common/icon-renewal.svg") no-repeat;
  background-size: 100%;
}
.section-container .section-title .jp.-shop:before {
  height: 20px;
  width: 20px;
  background: url("../images/common/icon-shop.svg") no-repeat;
  background-size: 100%;
}
.section-container .section-title .jp.-event:before {
  width: 22px;
  height: 26px;
  background: url("../images/common/icon-event.svg") no-repeat;
  background-size: 100%;
  top: -2px;
}
.section-container .section-title .jp.-feature {
  padding-left: 1.4em;
}
.section-container .section-title .jp.-feature:before {
  height: 19px;
  width: 15px;
  background: url("../images/common/icon-feature.svg") no-repeat;
  background-size: 100%;
}
.section-container .section-title .jp.-sns {
  padding-left: 1.6em;
}
.section-container .section-title .jp.-sns:before {
  width: 16px;
  height: 15px;
  background: url("../images/common/icon-sns.svg") no-repeat;
  background-size: 100%;
  top: 6px;
}
.section-container .section-title .jp.-info {
  padding-left: 1.8em;
}
.section-container .section-title .jp.-info:before {
  height: 23px;
  width: 23px;
  background: url("../images/common/icon-info.svg") no-repeat;
  background-size: 100%;
  margin-right: 2px;
  top: 2px;
}
.section-container .section-title + .section-sub-heading {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .section-container .section-title + .section-sub-heading {
    margin-top: 1rem;
  }
}
.section-container .section-sub-heading {
  margin: 3rem 0 1.5rem;
  font-size: 1.5rem;
  font-weight: normal;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-container .section-sub-heading {
    margin-top: 2rem;
  }
}
.section-container .section-sub-heading::after {
  content: "";
  clear: both;
  display: block;
}
.section-container .section-sub-heading .-hr_border {
  padding: 5px 0 3px 10px;
  position: relative;
  display: inline-block;
}
.section-container .section-sub-heading .-hr_border::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #000;
}
.section-container .section-sub-heading .link-more {
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  display: inline-block;
  float: right;
  padding: 5px 40px 3px 21px;
  margin: 2px 0 0 10px;
  border: 1px solid #000;
  border-radius: 20px;
}
.section-container:last-of-type p.bottom-button,
.section-container:last-of-type .bottom-button {
  margin-bottom: 0;
}
.section-container .more-button,
.section-container p.bottom-button,
.section-container .bottom-button {
  margin-bottom: 0;
}


/*------------------------------------------------------------
 * メインスライダー
------------------------------------------------------------*/
.main-visual {
  position: relative;
  max-width: 1800px;
  margin: 1.6rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin-top: 0;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
}
.main-visual .swiper-slide a {
  display: block;
}
.main-visual .main-swiper-button-next,
.main-visual .main-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  z-index: 3;
  border-radius: 50%;
  margin-top: -17px;
  background: #000;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .main-visual .main-swiper-button-next,
  .main-visual .main-swiper-button-prev {
    top: 54%;
  }
}
.main-visual .main-swiper-button-next:after,
.main-visual .main-swiper-button-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: -4px;
  transition: all .2s;
}
.main-visual .main-swiper-button-next {
  right: 1.8%;
}
@media screen and (max-width: 768px) {
  .main-visual .main-swiper-button-next {
    right: 2px;
  }
}
.main-visual .main-swiper-button-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -6px;
}
.main-visual .main-swiper-button-next:hover:after {
  left: 57%;
}
.main-visual .main-swiper-button-prev {
  left: 1.8%;
}
@media screen and (max-width: 768px) {
  .main-visual .main-swiper-button-prev {
    left: 2px;
  }
}
.main-visual .main-swiper-button-prev:after {
  margin-left: -3px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.main-visual .main-swiper-button-prev:hover:after {
  left: 43%;
}
.main-visual .swiper-pagination {
  position: static;
  margin-top: 2rem;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .main-visual .swiper-pagination {
    margin-top: 1rem;
  }
}
.main-visual .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 1rem;
  border-radius: 50%;
  background: #f5f5f5;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.main-visual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

/*------------------------------------------------------------
 * SEARCH
------------------------------------------------------------*/
.search-section {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .search-section {
    padding: 0;
  }
}
.search-section .section-inner {
  max-width: 1190px;
  width: 94%;
  padding-top: 3rem;
  padding-bottom: 4rem;
  border-radius: 20px 20px 0 20px;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 768px) {
  .search-section .section-inner {
    padding: 2.5rem 0 3rem;
  }
}
.search-section .section-inner::before,
.search-section .section-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(170,170,170,0.1);
  position: absolute;
}
.search-section .section-inner::before {
  border-radius: 0 20px 20px 20px;
  top: -5px;
  left: -5px;
}
.search-section .section-inner::after {
  border-radius: 20px 20px 0 20px;
  bottom: -5px;
  right: -5px;
}
.search-section h2 {
  text-align: center;
  color: #000;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.3rem;
  margin-right: -0.3rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .search-section h2 {
    margin-bottom: 0.2rem;
    font-size: 2.4rem;
  }
}
.search-section .search-form {
  width: 320px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .search-section .search-form {
    width: calc(100% - 11vw);
    margin: 0 5.5vw;
  }
}
.search-section .recommend-keywords {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .search-section .recommend-keywords {
    padding: 0 5.5vw;
  }
}
.search-section .recommend-keywords .heading span {
  padding-left: 25px;
  position: relative;
}
.search-section .recommend-keywords .heading span::before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  background: url("../images/common/icon-search.svg") 0 50%/20px auto no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .search-section .recommend-keywords .heading span::before {
    top: 0;
  }
}

/*------------------------------------------------------------
 * slide scrollbar
------------------------------------------------------------*/
.section-container:nth-of-type(odd) .slide-scrollbar {
  background-color: #fff;
}

/*------------------------------------------------------------
 * open/renewal
------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .open-renewal-list {
    margin-left: -17px;
    margin-right: -17px;
    padding: 0 17px;
  }
}
@media screen and (max-width: 768px) {
  .open-renewal-list {
    margin-right: calc(50% - 50vw);
  }
}

.open-renewal-item a {
  /* font-family: "Alegreya Sans", "Noto Sans JP", sans-serif; */
  display: block;
  text-decoration: none;
  color: inherit;
}
.open-renewal-item a img {
  max-height: 100%;
}
.open-renewal-item .type {
  padding: 4px 5px 2px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
  background: #000;
  color: #ffffff;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .open-renewal-item .type {
    font-size: 1.1rem;
  }
}
.open-renewal-item .image {
  position: relative;
  border: 1px solid #D6D6D6;
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .open-renewal-item .image {
    width: 130px;
    height: 130px;
    white-space: nowrap;
  }
}
.open-renewal-item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: calc(100% - 2rem);
  max-height: calc(100% - 2rem);
  width: auto;
  height: auto;
}

.bottom-button {
  margin-top: 3rem;
  margin-bottom: 0;
}
.bottom-button .link-button {
  margin-bottom: 0;
}


/*------------------------------------------------------------
 * shop
------------------------------------------------------------*/
.l-content-slider.-cinema .slide-button-prev,
.l-content-slider.-cinema .slide-button-next {
  top: 41%;
}


/*------------------------------------------------------------
 * feature
------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .feature-slider {
    margin-left: -17px;
    margin-right: -17px;
    padding: 0 17px;
  }
}
@media screen and (max-width: 768px) {
  .feature-slider {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  .feature-slider .feature-item {
    width: 240px;
  }
}


/*------------------------------------------------------------
 * sns-section
------------------------------------------------------------*/
.sns-section .sns-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sns-section .sns-wrapper {
    justify-content: center;
  }
}
.sns-section .sns-item {
  height: 60px;
  margin-right: 30px;
  display: flex;
  flex-wrap: wrap;
}
.sns-section .sns-item:last-child {
  margin-right: 0;
}
.sns-section .sns-link {
  width: 60px;
  display: block
}
.sns-section .sns-item.-x .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #000;
}
.sns-section .sns-item.-x .sns-image {
  max-width: 35px;
}
.sns-section .sns-item .sns-image {
  width: 100%;
}


/*------------------------------------------------------------
 * info-section
------------------------------------------------------------*/
.info-item {
  border-top: 1px solid #333;
}
.info-item:last-child {
  border-bottom: 1px solid #333;
}
.info-item a {
  display: block;
  position: relative;
  padding: 17px 30px 17px 0;
  text-decoration: none;
  color: inherit;
}
.info-item a:after {
  position: absolute;
  content: "";
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #373737 #373737 transparent transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.info-item a.-new .date::after {
  position: relative;
  content: "NEW";
  font-size: 1.1rem;
  font-family: 'Optima', "Montserrat", sans-serif;
  background: #DE0000;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 10px;
  color: #fff;
}
.info-item .date {
  position: relative;
  font-size: 1.4rem;
  color: #727272;
  margin: 0 0 0.25em 0;
}
.info-item .content {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.68;
}