@charset "UTF-8";
* {
  box-sizing: border-box;
  word-break: break-all;
}

img {
  max-width: 100%;
}

.w100 {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}
a.disable {
  pointer-events: none;
}

.txt_underline {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .hv_op {
    transition: opacity .3s;
  }
  .hv_op:hover {
    opacity: 0.7;
  }

  .hv_line {
    position: relative;
  }
  .hv_line::after {
    content: '';
    bottom: -9px;
    left: 0;
    width: 0;
    height: 1px;
    border-bottom: 1px solid;
    position: absolute;
    transition: .4s;
  }
  .hv_line:hover::after {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

.c-red {
  color: #8A0E1A;
}

input::-webkit-input-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input:-moz-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input::-moz-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

input:-ms-input-placeholder {
  font-family: inherit;
  color: #ADADAD;
}

svg.hide {
  display: none;
}

/* フェードイン */
[data-anime='fadeIn'] {
  opacity: 0;
}
[data-anime='fadeIn'].in-view {
  animation-name: fadeIn;
  animation-duration: .6s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン */
[data-anime='fadeInUp'] {
  opacity: 0;
  transform: translateY(30px);
}
[data-anime='fadeInUp'].in-view {
  animation-name: fadeInUp;
  animation-duration: .6s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* === common
==================================== */
.contswrap {
  letter-spacing: 0.075em;
}

.sub-page .contswrap {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .sub-page .contswrap {
    margin-bottom: 100px;
  }
}

.mv {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .mv {
    margin-bottom: 60px;
  }
}
.mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  max-height: 75%;
  background: #638755;
}
.mv .mv-ttl {
  position: relative;
  padding: 34px 5.3% 0;
}
@media (min-width: 769px) {
  .mv .mv-ttl {
    padding: 60px 60px 0;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.lead {
  margin: 40px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .lead {
    font-size: 18px;
    line-height: 2.22222222;
  }
}
.lead .f-large {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.campaign-info {
  background: #638755;
  padding: 24px 20px;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .campaign-info {
    padding: 80px 20px 72px;
    margin-bottom: 100px;
  }
}
.campaign-info .box {
  background: #fff;
  padding: 40px 15px;
  border-radius: 8px;
}
@media (min-width: 769px) {
  .campaign-info .box {
    border-radius: 14px;
    max-width: 880px;
    margin: 0 auto;
    padding: 50px 15px;
  }
}
.campaign-info .detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .campaign-info .detail-list {
    margin-inline: auto;
    max-inline-size: max-content;
  }
}
.campaign-info .detail-list .list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign-info .detail-list .list-item {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.campaign-info .detail-list dt {
  width: 174px;
  height: 37px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: #638755;
  border-radius: 999px;
}
@media (min-width: 769px) {
  .campaign-info .detail-list dt {
    margin: 0;
  }
}
.campaign-info .detail-list dd {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign-info .detail-list dd {
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
  }
}

.campaign-item-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 769px) {
  .campaign-item-block {
    flex-direction: row;
    justify-content: center;
    gap: clamp(20px, calc(1vw * $num / $width * 100), 80px);
    padding: 0 20px;
  }
}
.campaign-item-block + .campaign-item-block {
  margin-top: 60px;
}
@media (min-width: 769px) {
  .campaign-item-block + .campaign-item-block {
    margin-top: 100px;
  }
}
.campaign-item-block .item {
  position: relative;
  padding: 0 20px 40px;
}
@media (min-width: 769px) {
  .campaign-item-block .item {
    width: 100%;
    max-width: 540px;
    padding: 0 0 80px;
  }
}
.campaign-item-block .item-head {
  border-top: 2px solid #BF9345;
  border-bottom: 2px solid #BF9345;
  padding: 20px 0;
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-head {
    border-top: 3px solid #BF9345;
    border-bottom: 3px solid #BF9345;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.campaign-item-block .item-head .label {
  display: inline-block;
  background: #638755;
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 24px;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-head .label {
    flex-shrink: 0;
    font-size: 18px;
    margin-bottom: 0;
    padding: 11px 24px;
  }
}
.campaign-item-block .item-head .label .num {
  font-size: 26px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-head .label .num {
    font-size: 30px;
  }
}
.campaign-item-block .item-head .ttl {
  color: #BF9345;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.30769231;
}
@media (min-width: 769px) {
  .campaign-item-block .item-head .ttl {
    text-align: left;
    font-size: 30px;
    line-height: 1.4;
  }
}
.campaign-item-block .item-body .photo {
  margin-bottom: 26px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-body .photo {
    margin-bottom: 34px;
  }
}
.campaign-item-block .item-body .text {
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45454545;
  color: #fff;
}
@media (min-width: 769px) {
  .campaign-item-block .item-body .text {
    font-size: 24px;
    line-height: 1.58333333;
  }
}
.campaign-item-block .item-body .note {
  color: #fff;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 769px) {
  .campaign-item-block .item-body .note {
    font-size: 18px;
    margin-top: 10px;
  }
}
.campaign-item-block .item-body .note a {
  color: #fff;
  text-decoration: underline;
}
.campaign-item-block .item-body .shop-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-body .shop-info {
    margin-top: 34px;
    gap: 24px;
  }
}
.campaign-item-block .item-body .shop-info .logo {
  width: 100px;
}
@media (min-width: 769px) {
  .campaign-item-block .item-body .shop-info .logo {
    width: 120px;
  }
}
.campaign-item-block .item-body .shop-info .shop {
  text-align: left;
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.campaign-item-block .item-body .shop-info .shop .note {
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.stores-wrap {
  margin-top: 20px;
  text-align: left;
}
@media (min-width: 769px) {
  .stores-wrap {
    margin-top: 30px;
  }
}
.stores-wrap .ttl {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .stores-wrap .ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.stores-wrap .txt {
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 769px) {
  .stores-wrap .txt {
    font-size: 14px;
  }
}
.stores-wrap .stores-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stores-wrap .stores-list li {
  display: flex;
  font-size: 14px;
  line-height: 1.57142857;
}
.stores-wrap .stores-list li .floor {
  width: 80px;
  font-weight: bold;
}
.stores-wrap .stores-list li .stores {
  flex: 1;
}

.campeign-note {
  text-align: left;
  margin: 40px 20px 50px;
  font-size: 13px;
  line-height: 1.69230769;
  letter-spacing: 0.075em;
}
@media (min-width: 769px) {
  .campeign-note {
    text-align: center;
    margin: 60px 20px;
    line-height: 1.84615385;
  }
}

.entry-btn {
  position: relative;
  text-align: center;
  margin: 0 20px;
}
@media (min-width: 769px) {
  .entry-btn {
    max-width: 360px;
    margin: 0 auto;
  }
}
.entry-btn::after {
  content: '';
  display: block;
  width: 16px;
  height: 12px;
  background: url(../images/arrow.svg) center right/100% no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .entry-btn::after {
    right: 40px;
  }
}
.entry-btn .btn-in {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #638755;
  color: #fff;
  font-size: 16px;
}
@media (min-width: 769px) {
  .entry-btn .btn-in {
    height: 80px;
  }
}

.entry-btn.end::after {
  display: none;
}
.entry-btn.end .btn-in {
  pointer-events: none;
  background: #5f5f5f;
}
