@charset "utf-8";
:root {
  --text-color: #662425;
  --text-list: #092940;
  --color-line: #5A5A5A;
  --color-line2: #E4E4E4;
  --color-white: #fff;
  --color-green: #33B93C;
  --color-orange: #E19551;
  --color-pagetop: #a38265;
}

html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-style: normal;}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
html {
  font-size: 62.5%;
}
.sp_only {
  display: none;
}
.header {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
}
.header-bar {
  width: 100%;
  background-color: var(--color-orange);
}
.header-bar div {
  max-width: 1050px;
  height: 60px;
  margin: auto;
  text-align: left;
}
.header-bar img {
  height: 100%;
}

.main-area {
  padding-inline: 2.5vw;
}
.bg-wrapper {
  position: relative;
  background: url("../img/bg.png") center top / 100%;
}
.main-area > p {
  color: var(--text-color);
  text-align: center;
}
.main-area .lead-text {
  padding-block: 52px;
  font-size: 2.2rem;
  line-height: 5.2rem;
}
.main-area .lead-text strong {
  font-size: 3.2rem;
}
.main-area .lead-text + p {
  margin-bottom: 40px;
  font-size: 1.8rem;
}
.main-title {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-size: 2000px auto;
}
.main-title,
.main-title img{
  width: 100%;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.item-list li {
  width: 31%;
  margin-bottom: 50px;
  margin-right: 3.5%;
  padding: 20px 15px 25px;
  position: relative;
  color: var(--text-list);
  background: var(--color-white);
}
.item-list li:nth-child(3n) {
  margin-right: 0;
}
.item-list li a {
  display: block;
  color: inherit;
}
.item-img {
  position: relative;
  margin-bottom: 15px;
}
.item-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 13px 0;
}

.shop-logo {
  display: flex;
  align-items: center;
  width: 26%;
  max-width: 83px;
  margin-right: 20px;
  border: 1px solid var(--color-line2);
  border-radius: 5px;
  aspect-ratio: 1 / 1;
}
.shop-logo img {
  max-width: 100%;
  position: relative;
  left: 0%;
  top: 0%;
}
.shop-detail {
  width: calc(74% - 20px);
}
.shop-detail * {
  margin-block: calc((1em - 1lh) / 2);
  line-height: 1.8;
}
.item-info .shop-name {
  width: 100%;
  margin-bottom: calc((1em - 1lh) / 2 + 12px);
  font-size: 1.4rem;
  font-weight: 700;
}
.item-info .shop-type {
  margin-bottom: calc((1em - 1lh) / 2 + 12px);
  font-size: 1.2rem;
  font-weight: 400;
}
.item-info .shop-floor {
  font-size: 1.2rem;
  font-weight: 400;
}
.closing-text {
  margin: 95px auto 120px;
  font-size: 2.4rem;
  text-align: center;
}
.closing-text span {
  display: inline-block;
  padding-inline: 0.5em;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  background: var(--color-green);
}
.coupon-list {
  display: flex;
  justify-content: space-between;
  max-width: 1050px;
  margin: 0 auto 50px;
}
.coupon-list li {
  pointer-events: none;
  opacity: 0.4;
}
.coupon-list .active {
  pointer-events: all;
  opacity: 1;
}
.coupon-list li:nth-child(2) {
  margin-inline: 5%;
}
.main-area .coupon-note {
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 1.4rem;
  text-align: left;
}
.main-area .pagetop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  aspect-ratio: 1/1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.06em;
  cursor: pointer;
  visibility: hidden;
  background: var(--color-pagetop);
  border: 1px solid #707070;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: visibility, opacity;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.main-area .pagetop::before {
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  content: "";
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: transform 0.2s ease-in;
  transform: rotate(45deg);
}
.main-area .pagetop.js-show {
  visibility: visible;
  opacity: 1;
}
.banner-list {
  display: flex;
  justify-content: space-between;
  max-width: 1050px;
  padding-top: 80px;
  margin: 80px auto;
  border-top: 1px solid var(--color-line);
}
.banner-list li {
  width: 31.33%;
}
.banner-list li:nth-child(2) {
  margin-inline: 3%;
}
.footer {
  width: 100%;
  padding-block: 40px 30px;
  text-align: center;
  background: var(--color-orange);
}
.footer-logo {
  display: inline-block;
  width: 300px;
  margin-bottom: 35px;
}
.footer p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Alegreya", serif;
  letter-spacing: 0.06em;
}



@media only screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: inline-block;
  }
  .header-bar div {
    height: 50px;
  }
  .main-title {
    padding-top: 0;
    width: 100%;
    background: none;
  }
  .main-area {
    padding-inline: 0;
  }
    .main-area .lead-text {
    padding-block: 20px 44px;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .main-area .lead-text strong {
    font-size: 1.8rem;
  }
  .main-area .lead-text + p {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
  .item-list {
    width: 94%;
  }
  .item-list li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 30px;
    padding: 10px;
  }
  .item-list li:nth-child(3n) {
    margin-right: 3%;
  }
  .item-list li:nth-child(2n) {
    margin-right: 0;
  }
  .item-info {
    display: block;
  }
  .shop-logo {
    width: 50px;
  }
  .shop-detail {
    width: 100%;
  }
  .shop-detail .shop-floor {
    font-size: 1rem;
    line-height: 1em;
    margin-top: 0;
    padding: 2px 0;
  }
  .item-info .shop-type {
    line-height: 1.2em;
    padding: 3px 0 0;
    font-size: 1rem;
  }
  .item-info .shop-name {
    padding: 10px 0 0;
    font-size: 1.2rem;
  }
  .item-list li a {
    width: 100%;
  }
  .closing-text {
    margin-block: 10px 40px;
    font-size: 1.4rem;
  }
  .coupon-list {
    margin-bottom: 40px;
    padding-inline: 15px;
  }
  .coupon-list li:nth-child(2) {
    margin-inline: 3%;
  }
  .main-area .coupon-note {
    margin: 0;
    padding-inline: 15px;
    font-size: 1.2rem;
  }
  .banner-list {
    margin: 40px 15px 60px;
    padding-top: 40px;
  }
  .footer {
    padding-block: 60px 30px;
  }
  .footer-logo {
    width: 220px;
  }
  
}
/* max-width: 768px */