@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap);

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
ul[class],
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
ul[class],
ol[class] {
  list-style: none;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img {
  max-width: 100%;
  display: block;
}
article > * + * {
  margin-top: 1em;
}
input,
button,
textarea,
select {
  font: inherit;
}
img:not([alt]) {
  filter: blur(10px);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  color: #152954;
  text-decoration: none;
  transition: 0.5s;
}
p {
  margin: 0;
}
figure {
  margin: 0;
}
table {
  table-layout: fixed;
}

/*------------------------------------
BASIC
------------------------------------*/
main {
  color: #152954;
  font-size: 16px;
  font-family: "Noto Sans JP", san-serif;
  width: 100%;
}
.l-inner {
  margin: 0 auto;
  width: 960px;
}
.-small {
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .l-inner {
    margin: 0 auto;
    width: 100%;
  }
}

/*------------------------------------
READ
------------------------------------*/
.l-read {
  text-align: center;
  margin: 20px auto 30px auto;
}
.l-read > p {
  display: inline-block;
  border: 1px solid #d79b49;
  font-size: 14px;
  padding: 15px;
}

@media screen and (max-width: 960px) {
  .l-read > p {
    display: inline-block;
    border: 1px solid #d79b49;
    font-size: 14px;
    width: 90%;
    padding: 15px;
  }
}

/*------------------------------------
COUPON
------------------------------------*/
.l-coupon {
  background: linear-gradient(180deg, #fff 3%, #32497b 3%, #32497b 100%);
  padding: 0 0 30px 0;
}
.l-coupon .-flex {
  display: flex;
  flex-wrap: wrap;
}
.l-coupon div.-hover:hover {
  display: block;
  cursor: pointer;
}

.l-coupon-parts {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(3, 13, 85, 0.5);
  margin: 0 27px 27px 0;
  width: 302px;
}
.l-coupon-parts:nth-of-type(3n) {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(3, 13, 85, 0.5);
  margin: 0 0 27px 0;
  width: 302px;
}
.l-coupon-parts .-text {
  padding: 16px;
}
.l-coupon-parts .-text > p {
  font-size: 11px;
  min-height: 32px;
}

.l-coupon-parts h3 {
  color: #d8a651;
  font-size: 21px;
  font-family: "Noto Serif JP", san-serif;
  font-weight: normal;
  line-height: 1;
}
.l-coupon-parts p {
  font-size: 12px;
  margin: 15px 0;
}

.l-coupon-parts .-subtext {
  display: flex;
  justify-content: space-between;
}
.l-coupon-parts .-subtext p {
  margin: 0;
}

.l-coupon-parts .-textlink {
  width: 180px;
}
.l-coupon-parts .couponlink {
  margin: 15px 0 0 auto;
}

.l-coupon-parts .couponlink_repletion {
  margin: 10px 0 0 auto;
}

.l-coupon-parts .-textlink .-not {
  padding: 15px 0 0 0;
}

.l-coupon-parts .-text_highlight {
  /* text-align: right; */
  text-align: left;
  font-size: 12px;
  color: #e60033;
  font-weight: bold;
  margin-top: -5px;
}

@media screen and (max-width: 960px) {
  .l-coupon .-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .l-coupon .-flex::after {
    display: block;
    content: "";
    width: 45%;
  }
  .l-coupon-parts {
    background-color: #fff;
    box-shadow: 0px 3px 6px 0px rgba(3, 13, 85, 0.5);
    margin: 0 0 30px 0;
    width: 45%;
  }
  .l-coupon-parts:nth-of-type(3n) {
    background-color: #fff;
    box-shadow: 0px 3px 6px 0px rgba(3, 13, 85, 0.5);
    margin: 0 0 30px 0;
    width: 45%;
  }

  .l-coupon-parts .-subtext {
    display: block;
  }
  .l-coupon-parts .-textlink {
    margin: 10px 0 0 0;
    width: 100%;
  }
}

.l-coupon-parts .-text_limitedTime {
  font-size: 15px;
  color: #e60033;
  font-weight: bold;
}

/*------------------------------------
MODAL
------------------------------------*/
.l-modal-detail {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}
.l-modal-detail .l-modal-bg {
  background-color: rgba(21, 41, 84, 0.6);
  width: 100%;
  height: 100vh;
}

.l-modal-detail .l-modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 90;
  width: 960px;
  max-height: 80vh;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 20px;
  border: 15px solid #d79b49;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: scroll;
}

.l-modal-detail .-text_limitedTime {
  display: block;
  font-size: 18px;
  color: #e60033;
  font-weight: bold;
  padding-top: 4px;
}

.l-modal-close {
  color: #7b7b7b;
  cursor: pointer;
  text-align: right;
  margin: 20px 0 0 0;
}
.l-modal-close::before {
  display: inline-block;
  content: "×";
  padding: 0 5px 0 0;
}

@media screen and (max-width: 960px) {
  .l-modal-detail .l-modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 90;
    width: 90%;
    max-height: 80vh;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 32px;
    border: 15px solid #d79b49;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: scroll;
  }
}

/*------------------------------------
MODAL DETAIL
------------------------------------*/
.l-shop {
  display: flex;
  padding: 0 0 30px 0;
}
.l-shop .-shopimg {
  margin: 0 15px 0 0;
}
.l-shop .-shopimg img {
  max-width: 302px;
}

.l-shop .-shopcontent {
  min-width: 570px;
}
.l-shop h3 {
  display: flex;
  color: #d8a651;
  font-size: 25px;
  font-family: "Noto Serif JP", san-serif;
  font-weight: normal;
  margin: 0 0 20px 0;
}
.l-shop h3 span {
  display: block;
  line-height: 1.2;
}
.l-shop h3.-food50::before {
  display: inline-block;
  content: url(../images/pc/icon_foodoff50.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-infood50::before {
  display: inline-block;
  content: url(../images/pc/icon_inandfoodoff50.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-stay50::before {
  display: inline-block;
  content: url(../images/pc/icon_stayoff50.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop h3.-stay30::before {
  display: inline-block;
  content: url(../images/pc/icon_stayoff30.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop h3.-theater20::before {
  display: inline-block;
  content: url(../images/pc/icon_theateroff20.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop h3.-theater50::before {
    display: inline-block;
    content: url(../images/pc/icon_theateroff50.svg);
    padding: 0 10px 0 0;
    height: 47px;
}

.l-shop h3.-attractionfree::before {
  display: inline-block;
  content: url(../images/pc/icon_attractionsfree.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-attraction20::before {
  display: inline-block;
  content: url(../images/pc/icon_attractionsoff20.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-attraction30::before {
  display: inline-block;
  content: url(../images/pc/icon_attractionsoff30.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop h3.-attraction50::before {
  display: inline-block;
  content: url(../images/pc/icon_attractionsoff50.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop h3.-souvenir20::before {
  display: inline-block;
  content: url(../images/pc/icon_souveniroff20.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-experience50::before {
  display: inline-block;
  content: url(../images/pc/icon_experienceoff50.svg);
  padding: 0 10px 0 0;
  height: 47px;
}
.l-shop h3.-busticket::before {
  display: inline-block;
  content: url(../images/pc/icon_busticket.svg);
  padding: 0 10px 0 0;
  height: 47px;
}

.l-shop .-text_highlight {
  font-size: 16px;
  color: #e60033;
  font-weight: bold;
  margin: 10px 0 0 0;
}

.l-shop .-without {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #32497b;
  font-size: 16px;
  margin: 20px 0 0 0;
  padding: 6px 16px;
}

.l-shop .-btn_subtextArea {
  display: flex;
  justify-content: space-between;
}

.l-shop .-btn_subtextArea .-btn_subtext {
  font-size: 16px;
  color: #e60033;
  font-weight: bold;
  margin: auto 0 0 0;
}

.l-shop .-btn {
  text-align: right;
  margin: 30px 0 0 0;
}
.l-shop .-btn a {
  display: inline-block;
}

.l-note {
  border-top: 1px solid #32497b;
  margin: 0 auto;
  width: 85%;
}
.l-note .-icon {
  padding: 20px 0;
}
.l-note .-icon img {
  margin: 0 auto;
}
.l-note .-text {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .l-shop {
    display: block;
    padding: 0 0 30px 0;
  }
  .l-shop .-shopimg {
    margin: 0 0 15px 0;
  }
  .l-shop .-shopimg img {
    max-width: 100%;
    width: 100%;
  }

  .l-shop .-shopcontent {
    min-width: 100%;
  }

  .l-note {
    border-top: 1px solid #32497b;
    margin: 0 auto;
    width: 100%;
  }
}

/*------------------------------------
TEXT-NOTE
------------------------------------*/
.l-text-note {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 30px 0;
}
.l-text-note .-icon {
  padding: 0 45px;
}
.l-text-note .-icon img {
  display: inline;
  vertical-align: middle;
}
.l-text-note p {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .l-text-note.l-inner {
    margin: 0 auto;
    width: 90%;
  }
  .l-text-note {
    display: block;
    background-color: #fff;
    padding: 30px 0;
  }
  .l-text-note .-icon {
    text-align: center;
    padding: 0 0 30px 0;
  }
}
