@charset "UTF-8";
/**----------------------------------------------
 2022秋のガス展
 -----------------------------------------------**/
/**----------------------------------------------
 フォント設定
 -----------------------------------------------**/
.title-font-uh {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.title-font-h {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.title-font-b {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 700;
  font-style: normal;
}


/**----------------------------------------------
 変数
 -----------------------------------------------**/
/**----------------------------------------------
 TOPIMG
 -----------------------------------------------**/
.hero-img {
  background: #f8f7f0;
  height: 60vh;
  max-height: 640px;
  position: relative;
  padding: 65px 0 85px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero-img {
    height: auto;
  }
}
.hero-img img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .hero-img img {
    height: auto;
    width: 90%;
    max-width: 500px;
  }
}

/**----------------------------------------------
 main
 -----------------------------------------------**/
.main-content {
  background-color: #663809;
  position: relative;
  padding: 40px 0 100px 0;
  color: #663809;
}
.main-content::before {
  content: "";
  width: 100%;
  height: 22.5px;
  background-image: url("/assets/img/sales2022autumn/repeat-top.svg");
  background-repeat: repeat-x;
  background-size: 45px;
  position: absolute;
  top: -20px;
  left: 0;
}

.sales-wrapper {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

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

/**----------------------------------------------
 spacer
 -----------------------------------------------**/
.link-spacer {
  font-size: clamp(28px, 7vw, 50px);
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .link-spacer {
    padding-top: 80px;
    margin-top: -60px;
  }
}
.link-spacer#sales {
  padding-top: 60px;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .link-spacer#sales {
    padding-top: 4em;
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .link-spacer .no-catch {
    padding-top: calc(60px + 4em);
    margin-top: -60px;
  }
}
.link-spacer.narrow {
  padding-top: 0px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .link-spacer.narrow {
    padding-top: 80px;
    margin-top: -60px;
  }
}

/**----------------------------------------------
 nav
 -----------------------------------------------**/
.page-navigation {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page-navigation {
    margin-bottom: 0;
  }
}
.page-navigation ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
@media screen and (max-width: 767px) {
  .page-navigation ul {
    display: block;
  }
}
.page-navigation ul li {
  background: #f8f7f0;
  width: calc((100% - 50px) / 3);
  height: 200px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-navigation ul li {
    width: 100%;
    margin-bottom: 40px;
    height: 160px;
  }
}
.page-navigation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px;
}
.page-navigation ul li a:hover {
  opacity: 1;
}
.page-navigation ul li a:hover .link-box {
  border-color: #f5a32d;
}
.page-navigation ul li a:hover .link-box::after {
  bottom: 6px;
}
.page-navigation ul li .link-box {
  width: 100%;
  height: 100%;
  border: 3px solid #663809;
  border-radius: 8px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page-navigation ul li .link-box .title {
  position: absolute;
  width: 165px;
  font-weight: bold;
  padding: 10px;
  border-radius: 3px;
  background: #663809;
  border: 1px solid #f8f7f0;
  color: #fff;
  text-align: center;
  top: calc(-1em - 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-navigation ul li .link-box .link-text {
  font-size: clamp(14px, 14px + 2vw, 28px);
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  font-weight: bold;
  color: #663809;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(10%, #fff100));
  background: -webkit-linear-gradient(transparent 70%, #fff100 10%);
  background: linear-gradient(transparent 70%, #fff100 10%);
}
.page-navigation ul li .link-box .link-text.no-line {
  background: transparent;
}
.page-navigation ul li .link-box::after {
  content: "";
  width: 35px;
  height: 20px;
  background-image: url("/assets/img/sales2022autumn/arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: bottom 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out;
}

/**----------------------------------------------
 title
 -----------------------------------------------**/
.catch-wrapper {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .catch-wrapper {
    margin-bottom: 4em;
  }
}
.catch-wrapper .catch {
  display: inline-block;
  font-size: clamp(16px, 4vw, 30px);
  font-weight: bold;
  position: relative;
  color: #fff;
}
.catch-wrapper .catch::before {
  content: "";
  display: block;
  width: 19px;
  height: 38px;
  background: url("/assets/img/sales2022autumn/title-img-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.catch-wrapper .catch::after {
  content: "";
  display: block;
  width: 19px;
  height: 38px;
  background: url("/assets/img/sales2022autumn/title-img-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: -1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.emphasis-text {
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(10%, #fff100));
  background: -webkit-linear-gradient(transparent 70%, #fff100 10%);
  background: linear-gradient(transparent 70%, #fff100 10%);
  color: #663809;
}

.hr-title {
  margin-top: 70px;
  font-size: clamp(16px, 4vw, 28px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hr-title span {
  padding: 0 0.1em;
}
.hr-title::before, .hr-title::after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 5px dotted #663809;
}
@media screen and (max-width: 767px) {
  .hr-title::before, .hr-title::after {
    border-top-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .hr-title {
    margin-top: 20px;
  }
}

/**----------------------------------------------
 content
 -----------------------------------------------**/
.content-wrapper {
  margin: 0 0 200px 0;
}
@media screen and (max-width: 767px) {
  .content-wrapper {
    margin-top: 0px;
    margin-bottom: 50px;
    padding-top: 0;
  }
}
.content-wrapper .content {
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 20px;
  position: relative;
}
.content-wrapper .content .content-title {
  text-align: center;
}
.content-wrapper .content .content-title .main-title {
  width: 100%;
  display: block;
  margin-top: 20px;
  font-size: clamp(28px, 7vw, 50px);
  color: #663809;
  background-image: url("/assets/img/sales2022autumn/title-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -85%);
          transform: translate(-50%, -85%);
  line-height: 2;
}
.content-wrapper .content.entry {
  background-image: url("/assets/img/sales2022autumn/bg-entry.png");
  background-repeat: repeat;
}
.content-wrapper .content.present {
  background-image: url("/assets/img/sales2022autumn/bg-present.png");
  background-repeat: repeat;
}
.content-wrapper .content.enjoy {
  background-image: url("/assets/img/sales2022autumn/bg-enjoy.png");
  background-repeat: repeat;
}
.content-wrapper .content.sales {
  background-image: url("/assets/img/sales2022autumn/bg-sales.png");
  background-repeat: repeat;
}
.content-wrapper .content .content-main {
  border-radius: 10px;
  border: 3px solid #663809;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .content-wrapper .content .content-main {
    padding: 20px 10px;
  }
}
.content-wrapper:last-child {
  margin-bottom: 0;
}

/**----------------------------------------------
 btn
 -----------------------------------------------**/
.sales-btn {
  display: block;
  border-radius: 10px;
  padding: 15px 45px;
  position: relative;
  text-align: center;
  background-color: #f5a32d;
  margin: 20px 0;
  color: #663809;
}
.sales-btn.sales-btn-link {
  font-size: clamp(16px, 4vw, 30px);
  font-weight: bold;
}
.sales-btn.sales-btn-link small {
  font-size: 0.67em;
}
@media screen and (max-width: 767px) {
  .sales-btn.sales-btn-link small {
    font-size: 12px;
  }
}
.sales-btn.sales-btn-link::after {
  content: "";
  width: 24px;
  height: 14px;
  background-image: url("/assets/img/sales2022autumn/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.sales-btn:hover {
  opacity: 1;
  background-color: #face8e;
}

.sub-content-area {
  margin: 90px 0 60px 0;
}

.sub-content {
  border: 3px solid #663809;
  background-color: #f8f7f0;
  border-radius: 10px;
  padding: 45px 15px 30px 15px;
  position: relative;
  margin-top: 30px;
}
.sub-content h4 {
  position: absolute;
  font-size: clamp(16px, 3vw, 25px);
  color: #fff;
  background: #663809;
  min-width: calc(11em + 20px);
  padding: 10px 5px;
  border-radius: 5px;
  border: 1px solid #f8f7f0;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

/**----------------------------------------------
 WEB抽選会
 -----------------------------------------------**/
.period-text {
  font-size: clamp(25px, 5vw, 35px);
  text-align: center;
  margin-top: 40px;
}
.period-text span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .period-text {
    margin-top: 20px;
  }
}

.product-list {
  list-style-type: none;
}
.product-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .product-list li {
    display: block;
    margin: 30px 0;
    text-align: center;
  }
}
.product-list li .product-award img {
  width: 165px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .product-list li .product-award {
    text-align: center;
    margin-bottom: 10px;
  }
  .product-list li .product-award img {
    width: 40%;
    max-width: 200px;
    height: auto;
  }
}
.product-list li .product-title {
  width: 40%;
}
.product-list li .product-title img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .product-list li .product-title {
    width: 100%;
    text-align: center;
  }
  .product-list li .product-title img {
    width: 100%;
    max-width: 500px;
    margin: 10px auto;
    height: auto;
  }
}
.product-list li .product-photo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 200px;
  text-align: center;
}
.product-list li .product-photo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .product-list li .product-photo {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }
  .product-list li .product-photo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.annotation-list {
  list-style-type: none;
  font-weight: bold;
}
.annotation-list.small {
  font-size: 12px;
}
.annotation-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.5em;
}
.annotation-list li:last-child {
  margin-bottom: 0;
}
.annotation-list li::before {
  content: "※";
  font-weight: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.electric-other {
  margin: 50px 0;
  padding-top: 60px;
  text-align: center;
}
.electric-other .electric-banner {
  padding: 7em 20px 40px 20px;
  background-color: #eb614b;
  border-radius: 10px;
  position: relative;
}
.electric-other .electric-banner .electric-title {
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 26px;
  font-size: clamp(12px, 1vw, 20px);
  font-weight: bold;
  width: 24em;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 6px 0 rgba(0, 0, 0, 0.27);
          box-shadow: 0 6px 0 rgba(0, 0, 0, 0.27);
  z-index: 1;
}
.electric-other .electric-banner .electric-title .emphasis-text {
  font-size: 1.5em;
  color: #eb614b;
}
.electric-other .electric-banner .electric-title::before {
  content: "";
  width: 125px;
  height: 89px;
  background-image: url("/assets/img/sales2022autumn/banner-title-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: absolute;
  left: -124px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .electric-other .electric-banner .electric-title::before {
    width: 60%;
    height: auto;
    aspect-ratio: 1/0.5184;
    max-width: 200px;
    background-image: url("/assets/img/sales2022autumn/banner-title-center-sp.png");
    background-position: center top;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}
.electric-other .electric-banner .electric-title::after {
  content: "";
  width: 125px;
  height: 90px;
  background-image: url("/assets/img/sales2022autumn/banner-title-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  position: absolute;
  right: -124px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .electric-other .electric-banner .electric-title::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .electric-other .electric-banner {
    padding-top: 10em;
  }
}

.up-text {
  font-size: 30px;
  color: #fff;
  border-top: 2px solid #fff100;
  border-bottom: 2px solid #fff100;
  font-weight: bold;
  padding: 10px 0;
}
.up-text strong {
  font-size: 1.5em;
  color: #fff100;
}
@media screen and (max-width: 767px) {
  .up-text strong {
    font-size: 1.3em;
  }
}

.merit-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .merit-title {
    font-size: 1.5em;
  }
}

.merit-list {
  max-width: 740px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 50px;
  list-style-type: none;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .merit-list {
    display: block;
  }
}
.merit-list li {
  width: calc((100% - 50px) / 3);
  background-color: #fff799;
  border-radius: 10px;
  padding: 4px;
  min-height: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit-list li {
    width: 100%;
    margin: 40px 0;
    height: 120px;
    min-height: 0;
  }
}
.merit-list li:nth-child(odd) {
  background: #fcd68c;
}
.merit-list li .merit {
  border-radius: 8px;
  border: 1px solid #663809;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.merit-list li .merit p {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom:-0.5em;
}
.merit-list li .merit p strong {
  font-size: 20px;
}
.merit-list li::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("/assets/img/sales2022autumn/merit-1.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.merit-list li:nth-child(2)::before {
  background-image: url("/assets/img/sales2022autumn/merit-2.svg");
}
.merit-list li:nth-child(3)::before {
  background-image: url("/assets/img/sales2022autumn/merit-3.svg");
}
.merit-list li:nth-child(4)::before {
  background-image: url("/assets/img/sales2022autumn/merit-4.svg");
}
.merit-list li:nth-child(5)::before {
  background-image: url("/assets/img/sales2022autumn/merit-5.svg");
}
.merit-list li:nth-child(6)::before {
  background-image: url("/assets/img/sales2022autumn/merit-6.svg");
}

.other-merit {
  border-top: 2px dotted #663809;
  padding: 20px 40px 0;
  margin: 40px -15px 0 -15px;
}
@media screen and (max-width: 767px) {
  .other-merit {
    padding: 20px 10px 0;
  }
  .other-merit img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }
}
.other-merit .annotation-list {
  font-size: 12px;
  font-weight: 400;
  margin-top: 15px;
}
.other-merit .annotation-list li {
  text-align: left;
}

/**----------------------------------------------
 おしょうゆプレゼント
 -----------------------------------------------**/
.present-wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.present-wrapper .present-content {
  font-size: 19.5px;
  font-weight: bold;
}
.present-wrapper .present-content p {
  margin-bottom: 15px;
  line-height: 2;
}
.present-wrapper .present-content p:first-of-type {
  margin-bottom: 0;
}
.present-wrapper .present-content p .emphasis-text {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(10%, #f5a32d));
  background: -webkit-linear-gradient(transparent 70%, #f5a32d 10%);
  background: linear-gradient(transparent 70%, #f5a32d 10%);
}
.present-wrapper .present-content .annotation-list {
  font-size: 12px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .present-wrapper {
    display: block;
  }
}

.present-place-wrapper {
  margin: 50px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper {
    display: block;
  }
}
.present-place-wrapper .sub-content {
  width: 50%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content {
    width: 100%;
    padding: 30px 10px 10px 10px;
  }
}
.present-place-wrapper .sub-content h4 {
  font-size: 19px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content h4 {
    font-size: clamp(16px, 2.5vw, 19px);
  }
}
.present-place-wrapper .sub-content .place-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .place-content {
    font-size: 16px;
    margin-top: 20px;
  }
}
.present-place-wrapper .sub-content .place-content * {
  -ms-flex-item-align: center;
      align-self: center;
}
.present-place-wrapper .sub-content .place-content p {
  text-align: center;
  width: 100%;
}
.present-place-wrapper .sub-content .place-content .place {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .place-content .place {
    width: 100%;
    margin-top: 0;
  }
}
.present-place-wrapper .sub-content .place-content .place div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .place-content .place div {
    display: block;
    text-align: center;
    margin-top: 0;
  }
}
.present-place-wrapper .sub-content .place-content .place div dt {
  width: 7em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .place-content .place div dt {
    width: 100%;
  }
}
.present-place-wrapper .sub-content .place-content .place div dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.present-place-wrapper .sub-content .place-content .place div dd::before {
  content: ":";
  display: inline-block;
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .place-content .place div dd::before {
    content: none;
  }
}
.present-place-wrapper .sub-content .sales-btn-scroll {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .present-place-wrapper .sub-content .sales-btn-scroll {
    font-size: 16px;
  }
}
.present-place-wrapper .sub-content .sales-btn-scroll::after {
  content: "";
  width: 24px;
  height: 14px;
  background-image: url("/assets/img/sales2022autumn/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**----------------------------------------------
 メイン会場のおたのしみ
 -----------------------------------------------**/
.enjoy-content-wrapper {
  text-align: center;
}
.enjoy-content-wrapper h3 {
  width: 40%;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper h3 {
    width: 100%;
    margin: 20px auto;
  }
}
.enjoy-content-wrapper .enjoy-attention {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.enjoy-content-wrapper .enjoy-attention::before {
  content: "";
  width: 3em;
  aspect-ratio: 1/1.35;
  background: url("/assets/img/sales2022autumn/enjoy-attention-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -4em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.enjoy-content-wrapper .enjoy-attention::after {
  content: "";
  width: 3.3em;
  aspect-ratio: 1/1.11;
  background: url("/assets/img/sales2022autumn/enjoy-attention-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: -3.3em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-attention {
    font-size: 15px;
    margin-bottom: 60px;
  }
  .enjoy-content-wrapper .enjoy-attention::before {
    bottom: -60px;
    top: auto;
    left: 20%;
    -webkit-transform: none;
            transform: none;
  }
  .enjoy-content-wrapper .enjoy-attention::after {
    bottom: -60px;
    top: auto;
    right: 20%;
    -webkit-transform: none;
            transform: none;
  }
}
.enjoy-content-wrapper .enjoy-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-content {
    display: block;
  }
}
.enjoy-content-wrapper .enjoy-content .enjoy.yatai {
  padding: 30px 16px 10px 16px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 3px dotted #663809;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai {
    margin: 0 auto 50px auto;
    width: 90%;
    padding: 30px 10px 10px 10px;
  }
}
.enjoy-content-wrapper .enjoy-content .enjoy.yatai .yatai-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 125px;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai .yatai-title {
    width: 140px;
  }
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai .yatai-title img {
    width: 140px;
  }
}
.enjoy-content-wrapper .enjoy-content .enjoy.yatai .img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.enjoy-content-wrapper .enjoy-content .enjoy.yatai .img-wrapper .yatai-img {
  text-align: center;
  width: 140px;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai .img-wrapper {
    display: block;
  }
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai .img-wrapper .yatai-img {
    width: 90%;
    margin: 15px auto;
  }
  .enjoy-content-wrapper .enjoy-content .enjoy.yatai .img-wrapper .yatai-img:last-child {
    margin-bottom: 0;
  }
}
.enjoy-content-wrapper .enjoy-content .enjoy.taiken {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .enjoy-content-wrapper .enjoy-content .enjoy.taiken img {
    width: 90%;
  }
}

.map-area {
  margin-top: 30px;
}

.map-title.main {
  text-align: center;
  padding: 30px 20px 0 20px;
}
.map-title.main img {
  width: 100%;
  max-width: 315px;
}

.map-attention, .covid-info {
  margin: 40px 0;
  padding: 20px;
  border: 1px solid #eb614b;
  background: #fff;
  border-radius: 10px;
}
.map-attention .map-attention-list, .covid-info .map-attention-list, .covid-info .covid-attention-list {
  list-style-type: none;
}
.map-attention .map-attention-list li, .covid-info .map-attention-list li, .covid-info .covid-attention-list li {
  padding-left: 1.5em;
  position: relative;
  font-weight: bold;
  margin-bottom: 10px;
}
.map-attention .map-attention-list li:last-child, .covid-info .map-attention-list li:last-child, .covid-info .covid-attention-list li:last-child {
  margin-bottom: 0;
}
.map-attention .map-attention-list li::before, .covid-info .map-attention-list li::before, .covid-info .covid-attention-list li::before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #eb614b;
  position: absolute;
  top: 0.25em;
  left: 0;
}

.map-place-title {
  font-weight: bold;
  font-size: clamp(18px, 4vw, 30px);
  padding: 0.3em 1em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .map-place-title {
    min-height: 3em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.map-place-title small {
  font-size: 0.75em;
}
.map-place-title.main-1 {
  color: #fff;
  background: #eb614b;
}
.map-place-title.main-2 {
  background: #60bdc7;
  color: #fff;
}
.map-place-title.store {
  background: #f5a32d;
  color: #663809;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .map-place-title.store {
    margin-bottom: 20px;
  }
}

.date {
  font-size: clamp(14px, 4vw, 28px);
  padding-left: 2.5em;
  margin: 1em 0;
  position: relative;
}
.date svg {
  width: 100%;
  height: 1.5em;
}
@media screen and (max-width: 767px) {
  .date svg {
    height: 5em;
  }
}
.date svg > text {
  stroke-width: 8;
  stroke: #fff;
  fill: #663809;
  paint-order: stroke;
}
.date.main-1::before {
  content: "";
  width: 2em;
  height: 2em;
  background-image: url("/assets/img/sales2022autumn/calendar1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.date.main-2::before {
  content: "";
  width: 2em;
  height: 2em;
  background-image: url("/assets/img/sales2022autumn/calendar2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.area-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
@media screen and (max-width: 767px) {
  .area-info {
    display: block;
    margin-bottom: 15px;
  }
}

.map-info {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .map-info {
    width: 100%;
  }
}
.map-info p {
  margin-top: 10px;
  font-weight: bold;
  text-indent: -1em;
  padding-left: 1em;
}

.map {
  width: 100%;
  border: 8px solid #fff;
  border-radius: 3px;
  aspect-ratio: 1/0.75;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.access-info {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .access-info {
    width: 100%;
    margin-top: 15px;
  }
}
.access-info table {
  font-size: 16px;
}
.access-info table th {
  padding: 15px;
  width: 120px;
  border-bottom: 1px solid #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .access-info table th {
    display: block;
    width: 100%;
  }
}
.access-info table td {
  background: #fff;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .access-info table td {
    display: block;
    width: 100%;
  }
}
.access-info table tr:last-child th {
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .access-info table tr:last-child td {
    border-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .access-info table tr {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .access-info table {
    display: block;
  }
  .access-info table tbody {
    display: block;
  }
}
.access-info.main-1 table {
  border: 1px solid #eb614b;
}
.access-info.main-1 table th {
  background: #eb614b;
  color: #fff;
}
.access-info.main-1 table td {
  border-bottom: 1px solid #eb614b;
  font-weight: bold;
}
.access-info.main-1 table td small {
  font-weight: normal;
}
.access-info.main-1 .access-list > li {
  letter-spacing: -0.01em;
}
.access-info.main-1 .access-list > li::before {
  content: url("/assets/img/sales2022autumn/list-photo1.svg");
  position: absolute;
  top: 0.25em;
  left: 0;
}
.access-info.main-1 .access-list > li > ul {
  list-style-type: none;
}
.access-info.main-1 .access-list > li > ul > li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
}
.access-info.main-1 .access-list > li > ul > li:last-child {
  margin-bottom: 0;
}
.access-info.main-1 .access-list > li > ul > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: 0;
  background: #663809;
}
.access-info.main-2 table {
  border: 1px solid #60bdc7;
}
.access-info.main-2 table th {
  background: #60bdc7;
  color: #fff;
}
.access-info.main-2 table td {
  border-bottom: 1px solid #60bdc7;
  font-weight: bold;
}
.access-info.main-2 table td small {
  font-weight: normal;
}
.access-info.main-2 table td .access-list > li {
  letter-spacing: -0.01em;
}
.access-info.main-2 table td .access-list > li::before {
  content: url("/assets/img/sales2022autumn/list-photo2.svg");
  position: absolute;
  top: 0.25em;
  left: 0;
}
.access-info.store table {
  border: 1px solid #f5a32d;
}
.access-info.store table th {
  background: #f5a32d;
  color: #663809;
}
.access-info.store table td {
  border-bottom: 1px solid #f5a32d;
  font-weight: bold;
}

.access {
  margin-bottom: 30px;
}
.access:only-child, .access:last-child {
  margin-bottom: 0;
}

.access-list {
  margin-top: 10px;
  list-style: none;
  font-size: 12px;
}
.access-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.access-list li:only-child, .access-list li:last-child {
  margin-bottom: 0;
}

.store-content {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .store-content {
    margin-bottom: 30px;
  }
}
.store-content:nth-of-type(1) {
  margin-top: 50px;
}

.store-name {
  padding-left: 1em;
  position: relative;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: bold;
  margin-bottom: 20px;
}
.store-name::before {
  content: "";
  width: 1em;
  height: 0.89em;
  background: url("/assets/img/sales2022autumn/store-name.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-repeat: no-repeat;
}

.covid-info {
  border-color: #60bdc7;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .covid-info {
    margin-top: 60px;
    padding-top: 60px;
  }
}
.covid-info .covid-title {
  font-weight: bold;
  background: #60bdc7;
  border-radius: 3px;
  padding: 10px;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.covid-info .covid-title img {
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .covid-info .covid-title {
    text-align: center;
    white-space: nowrap;
  }
  .covid-info .covid-title img {
    display: block;
    margin: 0 auto;
  }
}
.covid-info .covid-attention-list li::before {
  background-color: #60bdc7;
}

/**----------------------------------------------
 スペシャル特典
 -----------------------------------------------**/
.price-wrapper {
  margin-top: 60px;
  margin-bottom: 40px;
}
.price-wrapper .sub-content {
  margin-top: 80px;
  padding: 35px 0 15px 0;
  position: relative;
}
.price-wrapper .sub-content h4 {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .price-wrapper .sub-content {
    margin-top: 60px;
  }
  .price-wrapper .sub-content:first-of-type {
    margin-top: 0;
  }
}

.sale-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sale-content {
    display: block;
  }
}
.sale-content .sale-description {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: bold;
  width: 50%;
  -ms-flex-item-align: center;
      align-self: center;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .sale-content .sale-description {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sale-content .sale-description .annotation-list {
  margin-top: 10px;
  font-size: 12px;
  font-weight: normal;
}
.sale-content .discount-area {
  width: 50%;
  background: #f5a32d;
  padding: 35px 15px 15px 15px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  margin: -35px 0 -15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sale-content .discount-area.bg {
  height: 100%;
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sale-content .discount-area.bg {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sale-content .discount-area {
    display: block;
    width: 100%;
    margin: 10px 0 -15px 0;
    padding-top: 15px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }
}

.discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.discount .price {
  width: calc(45% + 4em);
  padding-right: 4em;
  position: relative;
  font-size: 16px;
}
.discount .price img {
  width: 100%;
  height: auto;
}
.discount .price::after {
  content: "円(税込)";
  position: absolute;
  bottom: 10%;
  right: 0;
  white-space: nowrap;
  font-weight: bold;
}
.discount .off {
  width: calc(55% - 4em - 10px);
}
.discount .off img {
  width: 100%;
  height: auto;
  margin-left: 10px;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .discount .off img {
    margin-left: 0;
    margin-top: 0;
  }
}

.sale-list {
  list-style: none;
  position: relative;
  width: calc(100% + 60px);
  padding: 0 30px;
  margin: 0 -30px;
}
.sale-list .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px dotted #663809;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sale-list .item-list {
    display: block;
  }
}
.sale-list .item-list:first-child {
  padding-top: 0;
}
.sale-list .item-list .item-name {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .sale-list .item-list .item-name {
    width: 100%;
    margin-bottom: 10px;
  }
}
.sale-list .item-list:last-child {
  border-bottom: 0;
  margin-bottom: -15px;
}
@media screen and (max-width: 767px) {
  .sale-list .item-list:last-child .discount {
    text-align: center;
    display: block;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}
.sale-list .discount {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .sale-list .discount {
    width: calc(100% + 30px);
    padding-left: 0;
    background-color: #f5a32d;
    padding: 15px;
    margin: 0 -15px -15px -15px;
  }
}
.sale-list .discount .text {
  font-weight: bold;
  white-space: nowrap;
  margin-right: 0.25em;
}
.sale-list .discount .text-img {
  white-space: nowrap;
  font-weight: bold;
  width: calc(100% - 3em);
  padding-right: 3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sale-list .discount .text-img {
    display: block;
    margin: 5px auto 0 auto;
  }
}
.sale-list .discount .text-img img {
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .sale-list .discount .text-img img {
    vertical-align: bottom;
  }
}
.sale-list .discount .text-img::after {
  content: "あり！";
  display: inline-block;
  margin-left: 0.25em;
}

.item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .item-wrap {
    padding-right: 0;
  }
}
.item-wrap .item-img {
  margin-right: 15px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .item-wrap .item-img {
    margin-right: 5px;
  }
}
.item-wrap .item {
  font-size: 19px;
  font-weight: bold;
  width: calc(100% - 75px);
}
@media screen and (max-width: 767px) {
  .item-wrap .item {
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.02em;
  }
}/*# sourceMappingURL=styles.css.map */