@charset "utf-8";

/*=== メインレイアウト ===*/
.main-container {
  background-color: #d8e8fc;
}
.main-section {
  padding: 70px 20px 0;
}
.main-section > *:first-child {
  margin-top: 0;
}
.main-cont {
  margin-top: 0;
}
.main-box {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.main-detail {
  padding: 40px 30px 70px;
}
.main-detail > *:first-child {
  margin-top: 0;
}
.main-ttl {
  font-size: 36px;
  text-align: center;
}
.main-ttl .type-small {
  margin: 0;
  font-weight: bold;
  font-size: 32px;
}
.main-ttl .type-highlight {
  color: #1b40c2;
}
.main-ttl .type-line {
  display: inline-block;
  padding: 5px 15px;
  border-top: 2px solid #232b35;
  border-bottom: 2px solid #232b35;
}
.main-subttl {
  margin-top: 70px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
}
.main-txt {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
  line-height: 2;
}
.main-note {
  margin-top: 30px;
  padding-left: 1em;
  color: #666;
  text-indent: -1em;
}
.type-label {
  padding: 0 5px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background: linear-gradient(transparent 5%, #203da4 5%, #203da4 100%, transparent 100%);
}


/*=== 遷移パターン ===*/
.transition {
  text-align: center;
}
.transition.pattern-bottom {
  padding: 0 20px;
}
.transition-item {
  max-width: 500px;
  margin: 50px auto 0;
}
a.transition-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 10px 45px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: none;
  background-color: #203da4;
  border-radius: 50px;
}
a.transition-btn:visited {
  color: #fff;
}
a.transition-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
a.transition-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}
/* 応募する */
.pattern-apply a.transition-btn {
  background-color: #dc3514;
}
/* トップに戻る */
.pattern-back a.transition-btn {
  border: 2px solid #333;
  color: #333;
  background-color: #fff;
}
.pattern-back a.transition-btn:visited {
  color: #333;
}
.pattern-back a.transition-btn::after {
  background-color: #333;
}


/*=== アコーディオン ===*/
.accordion {
  position: relative;
}
.accordion-cont {
  overflow: hidden;
}
.accordion-more {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #fff;
  z-index: 1;
}
.accordion-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 58px;
  margin: 50px auto 0;
  padding: 0;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
}
.accordion-txt {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 45px;
  position: relative;
}
.accordion-txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 15px;
  background-color: #333;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateY(-50%);
}
.is-AcorActive .accordion-txt::after {
  top: 47%;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}


/*=== メインビジュアル ===*/
.mainvisual {
  margin: 20px auto;
}
.mainvisual-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}


/*=== 概要 ===*/
.intro .main-ttl {
  line-height: 1.75;
}
.intro .type-label {
  font-size: 36px;
  background: linear-gradient(transparent 5%, #1b40c2 5%, #1b40c2 100%, transparent 100%);
}
.intro-txt {
  margin-top: 10px;
  color: #333;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}


/*=== 予告 ===*/
.foretell .main-section {
  padding-bottom: 70px;
}
.foretell .main-box {
  position: relative;
  padding: 40px 30px;
  overflow: visible;
}
.foretell-balloon {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 100%;
  max-width: 360px;
  padding: 12px 10px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  background-color: #333;
  border-radius: 50px;
  transform: translateX(-50%);
}
.foretell-balloon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 20px;
  height: 12px;
  background-color: #333;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
.foretell-list {
  display: flex;
  justify-content: space-between;
}
.foretell-item {
  width: calc((100% - (30px * 2)) / 3);
  max-width: 352px;
  border-radius: 10px;
  overflow: hidden;
}


/*=== 特別キャッシュバックUP ===*/
.special .type-label {
  background: linear-gradient(transparent 5%, #dc3514 5%, #dc3514 100%, transparent 100%);
}
.special-wrap {
  padding: 40px 30px 70px;
}
.special-wrap > *:first-child {
  margin-top: 0;
}


/*=== ショップ一覧 ===*/
.cardList {
  margin-top: 50px;
}
.cardList-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -10px;
}
.cardList-item {
  margin: 0 10px;
  border: 1px solid #b7b7b7;
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media print, screen and (min-width: 769px) {
  .cardList-item:not(:nth-child(-n+3)) {
    margin-top: 40px;
  }
}
a.cardList-link {
  display: block;
  color: #232b35;
  text-decoration: none;
}
a.cardList-link:visited {
  color: #232b35;
}
a.cardList-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.cardList-main {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #fff;
}
.cardList-thumb {
  flex-shrink: 0;
  margin-right: 10px;
}
.cardList-name {
  display: flex;
  align-items: center;
  min-height: 84px;
}
.cardList-price {
  padding: 10px 20px 8px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  background-color: #dc3514;
}
.cardList-price .type-em {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}


/*=== FMVサービスクイズ ===*/
.quiz-cont {
  padding: 50px 30px;
  background: url(images/quiz_bg_001.png) #f3ffff no-repeat top center / 100% auto;
}
.quiz-cont > *:first-child {
  margin-top: 0;
}
.quiz-wrap {
  padding: 0 30px 70px;
}


/*=== V宣言 ===*/
.declare .main-section {
  padding-bottom: 70px;
}
.declare-cont {
  padding: 50px 30px 60px;
  background: url(images/declare_bg_001.png) #fffcf2 no-repeat bottom center / 100% auto;
}
.declare-cont > *:first-child {
  margin-top: 0;
}
.declare .type-label {
  color: #232b35;
  background: linear-gradient(transparent 5%, #f6dc96 5%, #f6dc96 100%, transparent 100%);
}
.declare-wrap {
  padding: 0 30px 70px;
}
.declare-ttl {
  max-width: 320px;
  margin: 70px auto 0;
  position: relative;
}
.declare-ttl::before,
.declare-ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  width: 65px;
  height: 60px;
  background: url(images/declare_bg_003.png) no-repeat 0 0 / 100% auto;
}
.declare-ttl::before {
  left: -40px;
}
.declare-ttl::after {
  right: -40px;
  transform: scale(-1, 1);
}
.declare-ttl .type-txt {
  display: block;
  position: relative;
  padding: 8px 10px 12px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  background-color: #dc3514;
  z-index: 1;
}


/*=== 概要 ===*/
.terms-inner {
  max-height: 500px;
  margin-top: 50px;
  padding: 30px 30px 40px;
  border: 2px solid #f2f2f2;
  background-color: #fff;
  border-radius: 10px;
  overflow-x: scroll;
}
.terms-inner > *:first-child {
  margin-top: 0;
}
.terms-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-top: 25px;
}
.terms-subttl {
  font-weight: bold;
  margin-top: 20px;
}
.terms-txt {
  margin-top: 10px;
}
.terms-note {
  margin-top: 10px;
  padding-left: 1em;
  color: #666;
  text-indent: -1em;
}
.terms-list {
  margin-top: 10px;
}
.terms-item {
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}


/*=== お題 ===*/
.topic {
  margin-top: 70px;
  padding: 0 30px;
}
.topic-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 40px 50px;
  border: 4px solid #df9e42;
  text-align: center;
  background: url(images/topic_bg_001.png) no-repeat top center / 100% auto,
  url(images/topic_bg_002.png) no-repeat bottom center / 100% auto;
  background-color: #fffbf2;
  border-radius: 10px;
}
.topic-ttl {
  position: absolute;
  top: -50px;
  left: -30px;
}
.topic-lead {
  font-weight: bold;
  font-size: 32px;
}
.topic-lead .type-highlight {
  color: #e92228;
}
.topic-note {
  margin-top: 15px;
  color: #666;
  font-size: 18px;
}


/*=== 賞品 ===*/
.award {
  margin-top: 60px;
}
.award-list {
  display: flex;
  justify-content: space-between;
}
.award-item {
  width: calc((100% - (20px * 2)) / 3);
  padding: 0 30px 30px;
  color: #e92228;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  border-radius: 10px;
}
.award-item:nth-child(1) {
  background-color: #fef4c3;
}
.award-item:nth-child(2) {
  background-color: #eee;
}
.award-item:nth-child(3) {
  background-color: #ebd8c6;
}
.award-head {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
}
.award-name {
  width: 80px;
  font-size: 24px;
}
.award-cont {
  margin: 10px -30px 0 20px;
  font-size: 18px;
  text-align: left;
}
.award-main {
  margin-top: 5px;
  font-size: 26px;
  line-height: 1;
}
.award-main .type-em {
  font-size: 46px;
}
.award-limit {
  margin-top: 10px;
  padding: 5px 10px;
  color: #232b35;
  font-weight: normal;
  font-size: 26px;
  background-color: #fff;
  border-radius: 10px;
}
.award-item.pattern-nice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0;
  padding: 30px;
  background-color: #ffe8e8;
}
.pattern-nice .award-head {
  justify-content: space-between;
  position: relative;
  margin-right: 20px;
  padding-left: 60px;
}
.pattern-nice .award-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 52px;
  background: url(images/award_ic_004.png) no-repeat 0 0 / 100% auto;
}
.pattern-nice .award-name {
  width: calc((100% - 20px) / 2);
  text-align: left;
}
.pattern-nice .award-cont {
  width: calc((100% - 20px) / 2);
  margin: 0;
}
.pattern-nice .award-limit {
  width: calc((100% - (20px * 2)) / 3);
  margin: 0;
}
@media print, screen and (max-width: 1060px) {
  .award-item {
    padding: 0 15px 15px;
  }
  .award-name {
    width: 50px;
    font-size: 20px;
  }
  .award-name .type-icon {
    width: 32px;
    margin-right: 15px;
  }
  .award-cont {
    margin: 5px -15px 0 15px;
    font-size: 1.698vw;
  }
  .award-main {
    margin-top: 0.472vw;
    font-size: 2.167vw;
  }
  .award-main .type-em {
    font-size: 3.833vw;
  }
  .award-limit {
    font-size: 22px;
  }
  .award-item.pattern-nice {
    padding: 15px;
  }
  .pattern-nice .award-head {
    margin-right: 15px;
    padding-left: 40px;
  }
  .pattern-nice .award-head::before {
    width: 30px;
    height: 36px;
  }
  .pattern-nice .award-name,
  .pattern-nice .award-cont {
    width: calc((100% - 15px) / 2);
  }
  .pattern-nice .award-limit {
    width: calc((100% - (1.667vw * 2)) / 3);
  }
}


/*=== 期間 ===*/
.period {
  margin-top: 60px;
}
.period-list {
  display: flex;
  justify-content: space-between;
}
.period-item {
  width: calc((100% - (20px * 2)) / 3);
  border: 4px solid #268db6;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.period-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  color: #fff;
  font-size: 24px;
  background-color: #268db6;
}
.period-head .type-icon {
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
.period-item:nth-child(2) .type-icon {
  width: 35px;
}
.period-item:nth-child(3) .type-icon {
  width: 28px;
}
.period-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.period-txt {
  font-weight: bold;
  font-size: 20px;
}
.period-txt .type-block {
  display: inline-block;
}


/*=== キャンペーン中 ===*/
.campaign {
  display: none;
  background-color: #f2f2f2;
}
.campaign .main-section {
  padding-bottom: 70px;
}
.campaign-bnr {
  margin-top: 50px;
  text-align: center;
}
a.campaign-link:hover {
  opacity: 0.7;
}


/*=== 固定ナビ ===*/
.fixedNav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  z-index: 100;
}
.fixedNav-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 50px;
}
.fixedNav-item {
  width: calc((100% - (20px * 2)) / 3);
  max-width: 352px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
a.fixedNav-btn {
  display: block;
  width: 100%;
  height: 100%;
}
a.fixedNav-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}


@media print, screen and (max-width: 768px) {
  /*=== メインレイアウト ===*/
  .main-section {
    padding: 35px 15px 0;
  }
  .main-box {
    max-width: 690px;
    margin: 25px auto 0;
  }
  .main-detail {
    padding: 40px 30px 70px;
  }
  .main-ttl {
    font-size: 22px;
  }
  .main-ttl .type-small {
    font-size: 16px;
  }
  .main-ttl .type-line {
    font-size: 18px;
  }
  .main-subttl {
    margin-top: 40px;
    font-size: 18px;
  }
  .main-txt {
    font-size: 16px;
    line-height: 1.8;
  }
  .main-note {
    margin-top: 20px;
  }
  .type-label {
    font-size: 18px;
  }
  /*=== 遷移パターン ===*/
  .transition {
    margin-top: 40px;
  }
  .transition.pattern-bottom {
    padding: 0 15px;
  }
  .transition-item {
    margin-top: 25px;
  }
  a.transition-link {
    font-size: 16px;
  }
  a.transition-btn {
    min-height: 48px;
    padding: 10px 35px;
    font-size: 18px;
  }
  a.transition-btn::after {
    right: 15px;
    width: 10px;
    height: 15px;
  }
  /*=== アコーディオン ===*/
  .accordion-more {
    height: 90px;
  }
  .accordion-btn {
    min-height: 48px;
    margin-top: 25px;
    font-size: 18px;
  }
  .accordion-txt {
    padding: 10px 35px;
  }
  .accordion-txt::after {
    right: 15px;
    width: 15px;
    height: 10px;
  }
  /*=== メインビジュアル ===*/
  .mainvisual {
    margin-top: 0;
  }
  .mainvisual-main {
    max-width: 550px;
    padding: 0 10px;
  }
  /*=== 概要 ===*/
  .intro .main-ttl {
    line-height: 1.6;
  }
  .intro .type-label {
    font-size: 22px;
  }
  .intro-txt {
    margin-top: 15px;
    font-size: 18px;
  }
  /*=== 予告 ===*/
  .foretell .main-section {
    padding-bottom: 50px;
  }
  .foretell .main-box {
    margin-top: 35px;
    padding: 35px 15px;
  }
  .foretell-balloon {
    top: -35px;
    max-width: 295px;
    padding: 10px;
    font-size: 16px;
  }
  .foretell-balloon::after {
    bottom: -10px;
    width: 15px;
    height: 10px;
  }
  .foretell-list {
    display: block;
    text-align: center;
  }
  .foretell-item {
    width: 100%;
    margin: 0 auto;
  }
  .foretell-item:not(:first-child) {
    margin-top: 25px;
  }
  /*=== 特別キャッシュバックUP ===*/
  .special-wrap {
    padding: 20px 15px 40px;
  }
  /*=== ショップ一覧 ===*/
  .cardList {
    max-width: 620px;
    margin: 20px auto 0;
  }
  .cardList-list {
    display: block;
    margin: 0;
  }
  .cardList-item {
    margin: 0;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .cardList-item:not(:first-child) {
    margin-top: 20px;
  }
  .cardList-main {
    padding: 15px 10px;
  }
  .cardList-name {
    min-height: 60px;
  }
  .cardList-price {
    padding: 8px 10px 7px;
    font-size: 12px;
  }
  .cardList-price .type-em {
    font-size: 15px;
  }
  /*=== FMVサービスクイズ ===*/
  .quiz-cont {
    padding: 30px 15px 45px;
    background-image: url(images/quiz_bg_002.png);
  }
  .quiz-wrap {
    padding: 0 15px 40px;
  }
  /*=== V宣言 ===*/
  .declare .main-section {
    padding-bottom: 50px;
  }
  .declare-cont {
    padding: 30px 15px 70px;
    background-image: url(images/declare_bg_002.png);
  }
  .declare-wrap {
    padding: 0 15px 40px;
  }
  .declare-ttl {
    max-width: 195px;
    margin-top: 40px;
  }
  .declare-ttl::before,
  .declare-ttl::after {
    bottom: -6px;
    width: 41px;
    height: 38px;
  }
  .declare-ttl::before {
    left: -20px;
  }
  .declare-ttl::after {
    right: -20px;
  }
  .declare-ttl .type-txt {
    padding: 6px 10px 8px;
    border-width: 1px;
    font-size: 22px;
  }
  /*=== 概要 ===*/
  .terms-inner {
    max-height: 345px;
    margin-top: 20px;
    padding: 20px 15px 25px;
  }
  .terms-ttl {
    font-size: 16px;
  }
  /*=== お題 ===*/
  .topic {
    margin-top: 40px;
    padding: 0 10px;
  }
  .topic-inner {
    padding: 30px 10px;
    border-width: 2px;
    background: url(images/topic_bg_003.png) no-repeat top center / 100% auto;
    background-color: #fffbf2;
  }
  .topic-ttl {
    top: -25px;
    left: -10px;
    width: 100px;
  }
  .topic-lead {
    padding: 0 30px;
    font-size: 20px;
  }
  .topic-note {
    margin-top: 10px;
    font-size: 14px;
  }
  /*=== 賞品 ===*/
  .award {
    max-width: 350px;
    margin: 30px auto 0;
  }
  .award-list {
    display: block;
  }
  .award-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
  }
  .award-item:not(:first-child) {
    margin-top: 15px;
  }
  .award-name {
    width: 46px;
    font-size: 16px;
  }
  .award-name .type-icon {
    flex-shrink: 0;
    width: 22px;
    margin-right: 10px;
  }
  .award-cont {
    margin: 10px 10px 0 15px;
    font-size: 14px;
  }
  .award-main {
    margin-top: 5px;
    font-size: 16px;
  }
  .award-main .type-em {
    font-size: 28px;
  }
  .award-limit {
    width: 50%;
    min-width: 55px;
    max-width: 80px;
    margin-top: 15px;
    padding: 10px 0;
    font-size: 16px;
  }
  .pattern-nice .award-head {
    display: block;
    padding-left: 30px;
  }
  .pattern-nice .award-head::before {
    top: -5px;
    width: 22px;
    height: 26px;
  }
  .pattern-nice .award-name {
    width: 100%;
  }
  .pattern-nice .award-cont {
    width: 100%;
    margin-top: 10px;
  }
  .pattern-nice .award-limit {
    width: 80px;
  }
  /*=== 期間 ===*/
  .period {
    margin-top: 30px;
  }
  .period-list {
    display: block;
  }
  .period-item {
    width: 100%;
    border-width: 2px;
  }
  .period-item:not(:first-child) {
    margin-top: 15px;
  }
  .period-head {
    padding: 4px 5px 6px;
    font-size: 18px;
  }
  .period-head .type-icon {
    width: 18px;
    height: 18px;
  }
  .period-item:nth-child(2) .type-icon {
    width: 25px;
  }
  .period-item:nth-child(3) .type-icon {
    width: 20px;
  }
  .period-inner {
    padding: 20px 15px;
  }
  .period-txt {
    font-size: 16px;
  }
  /*=== キャンペーン中 ===*/
  .campaign .main-section {
    padding-bottom: 50px;
  }
  .campaign-bnr {
    margin-top: 20px;
  }
  /*=== 固定ナビ ===*/
  .fixedNav-list {
    padding: 0;
  }
  .fixedNav-item {
    width: calc(100% / 3);
    border-radius: 0;
  }
  a.fixedNav-btn {
    min-height: 80px;
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    background-color: #c93222;
  }
  a.fixedNav-btn.pattern-quiz {
    background-color: #203da4;
  }
  a.fixedNav-btn.pattern-declare {
    color: #232b35;
    background-color: #f6c849;
  }
  a.fixedNav-btn:visited {
    color: #fff;
  }
  a.fixedNav-btn.pattern-declare:visited {
    color: #232b35;
  }
  .fixedNav-txt .type-icon {
    display: block;
    width: 26px;
    margin: 0 auto 2px;
  }
}
