@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/**************************************************/
/* base (リセットCSS) */
/**************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  /* background-color: #ffffff;
  background-image:  linear-gradient(135deg, #B87358 25%, transparent 25%), linear-gradient(225deg, #B87358 25%, transparent 25%), linear-gradient(45deg, #B87358 25%, transparent 25%), linear-gradient(315deg, #B87358 25%, #9A5656 25%);
  background-position:  10px 0, 10px 0, 0 0, 0 0;
  background-size: 10px 10px;
  background-repeat: repeat; */
  background: linear-gradient(180deg, #61b8fb 0.000%, #ffb9ed 50.000%, #c80035 100.000%);
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

em {
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

/**************************************************/
/* basic */
/**************************************************/
.c-list {
  position: relative;
  padding-left: 14px;
  line-height: 2;
}
.c-list + .c-list {
  margin-top: 10px;
}
.c-list::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #EB5505;
  left: 0;
  top: calc(0.9em - 4px);
}

.c-list01::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #EB5505;
  left: 0;
  top: calc(0.9em - 4px);
  font-weight: bold;
}

.text{
  color: red;
  font-weight: bold;
}

/*タブ*/
.p-term-area {
  margin-top: 65px;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0 0 10px;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #D80C24;
  display: block;
  order: -1;
}
.tab-label {
  color: #000;
  background: #DDDDDD;
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 15px .2em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 20px 20px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  /* background: #EB5505; */
  color: #FFF;
  background-color: #d80c24;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23ffffff' fill-opacity='0.31' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.c-content-inner p{
 background-color:#fff8ed;
 padding:15px;
}


/* 切替えコンテンツ */
.c-term-frame {
  background-color: #fff;
  border: none;
  -moz-border-radius: 1.5em;
  border-radius: 1.5em;
  font-size: 2rem;
  line-height: 1.5;
}
.p-attention {
  border: 1px solid #D80C24;
  border-radius: 0;
  margin-bottom: 1em;
}
.c-frame__inner {
  position: relative;
  z-index: 2;
  -moz-border-radius: inherit;
  border-radius: inherit;
  padding: 0 47px 50px;
}
.mt1em {
    margin-top: 1.5em !important;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
}
.disc:before {
  content: "・";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.red {
  color: #eb5505;
}
.mt2em {
    margin-top: 3em !important;
}
.c-btn.-l {
  font-size: 2.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  font-weight: bold;
}
.c-btn.-orange a {
    background-color: #ea5504;
    color: white;
}
.fs-14 {
    font-size: 1.4rem;
}


@media screen and (max-width: 767px) {
  .c-list {
    font-size: 1.5rem;
  }
}

.c-list2 {
  position: relative;
  padding-left: 20px;
}
.c-list2 + .c-list2 {
  margin-top: 5px;
}
.c-list2::after {
  content: "※";
  position: absolute;
  left: 0;
  top: calc(0.9em - 15px);
}
@media screen and (max-width: 767px) {
  .c-list2 {
    font-size: 1.5rem;
  }
}

._bold {
  display: inline;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #FFE6EC));
  background: linear-gradient(transparent 75%, #FFE6EC 75%);
}

.c-sublist {
  padding-left: 14px;
  position: relative;
  margin-top: 5px;
  font-size: 1.5rem;
}
.c-sublist li {
    padding-left: 14px;
    position: relative;
    margin-top: 6px;
    font-size: 1.5rem;
}
.c-sublist li::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    border-radius: 50px;
    background-color: #D60C18;
    left: 0;
    top: calc(0.9em - 1px);
}
@media screen and (max-width: 767px) {
  .c-sublist {
    font-size: 1.4rem;
  }
}
/* .c-sublist::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  border-radius: 50px;
  background-color: #EB5505;
  left: 0;
  top: calc(0.9em - 1px);
} */
.c-sublist li {
        font-size: 1.4rem;
    }

.c-button {
  display: inline-block;
  background-color: #593017;
  color: #fff;
  width: 380px;
  max-width: 100%;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
  padding: 16px 36px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  background: url(../../assets/img/icon-arrow-white.png) center center no-repeat;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.6rem;
    width: 320px;
  }
}

.c-button-b {
  display: inline-block;
  background-color: #593017;
  color: #fff;
  width: 280px;
  max-width: 100%;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
  padding: 18px 36px;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button-b:hover {
  opacity: 0.7;
}
.c-button-b::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  background: url(../../assets/img/icon-arrow-white.png) center center no-repeat;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 26px;
}
@media screen and (max-width: 767px) {
  .c-button-b {
    font-size: 1.6rem;
  }
}

.inner {
  max-width: 987px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
.logo img {
  width: 272px;
  max-width: 100%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .logo {
    height: 60px;
  }
  .logo img {
    width: 181.3333333333px;
  }
}

.button {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  max-width: 380px;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
  padding: 16px 36px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover {
  opacity: 0.7;
}
.button::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  background: url(../../assets/img/icon-arrow-white.png) center center no-repeat;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 1.6rem;
    max-width: 320px;
  }
}

.list {
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 767px) {
  .list {
    font-size: 1.5rem;
  }
}
.list > span {
  border-bottom: dotted 1px #000;
  padding-bottom: 1px;
  display: inline;
}
.list::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #000;
  left: 0;
  top: 10px;
}
.list + .list {
  margin-top: 10px;
}

.mv {
  width: 100%;
}

.mv > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv02 {
  background-color: #593017;
}
.mv02 > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.campaign {
  overflow: hidden;
  position: relative;
  background-size: 100% auto;
  
  padding: 63px 0 123px;
}
.campaign__heading {
  position: relative;
  text-align: center;
  z-index: 1;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          background-color: #000000;
  background-color: #d80c24;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23ffffff' fill-opacity='0.31' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.campaign__heading:not(.-first) {
  margin-top: 65px;
}
.campaign__heading p {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
}
/* .campaign__heading img {
  height: 66px;
  display: inline-block;
} */
.campaign__box {
  padding: 37px 46px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  border-radius: 0 0 5px 5px;
}
.campaign__box2 {
  padding: 37px 52px 40px;
}
.campaign__title {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.t_sec {
  margin-top: 50px;
}

.campaign__title01 {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  color: red;
}

.campaign__img {
  margin: 5px auto 0;
  max-width: 100%;
  width: 572px;
}
.campaign__subBox {
  margin-top: 38px;
  background-color: #FFE6EC;
  padding: 27px 30px;
  border-radius: 4px;
  position: relative;
}
.no-back {
  background-color: #fff;
  margin: 0;
}
.no-back-store {
  background-color: #fff;
  margin: 0;
  padding: 0 30px 27px;
}
.ponta-up_logo {
  display: block;
  max-width: 30%;
  margin: 0 auto 20px;
}
.pontapb_logo {
  display: block;
  max-width: 65%;
  margin: 0 auto 20px;
}
.store_txt {
  text-align: center;
  margin: 0 auto 20px;
}
.store_logo {
  display: block;
  max-width: 65%;
  margin: 0 auto 20px;
}
.logo_subBox {
  margin: 0;
  padding: 10px;
}
.logo_subBox img {
  margin: 0 auto;
  max-width: 250px;
  display: block;
}
.campaign__tenpo {
  position: relative;
}
.campaign__list {
  font-size: 1.5rem;
}
.campaign__list + .campaign__list {
  margin-top: 5px;
}
.campaign__list2 {
  font-size: 1.6rem;
  margin: 10px 10px 0;
}
.campaign__text {
  font-size: 1.8rem;
  line-height: 1.8888888889;
}
.campaign__text:not(:first-child) {
  margin-top: 20px;
}
.campaign__small {
  margin-top: 12px;
  font-size: 1.5rem;
  text-align: center;
}
.campaign__button {
  display: block;
  text-align: center;
  margin-inline: auto;
  margin-top: 41px;
  margin-bottom: 30px;
  width: 420px;
  max-width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.campaign__button:hover {
  opacity: 0.7;
}
.campaign__note {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 10px;
  position: relative;
}
.campaign__note::before {
  position: relative;
  content: "※";
  color: #EA5504;
  display: inline-block;
}
.campaign__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.campaign__poster-img {
  -webkit-filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.1));
  display: block;
  width: 133px;
}
.campaign__poster-text > img {
  display: block;
  width: 338px;
}
.campaign__poster-link {
  margin: 20px 0 0 18px;
  font-weight: bold;
  font-size: 1.8rem;
}
.campaign__poster-link > a {
  color: #F57000;
  display: inline-block;
  border-bottom: solid 2px #F57000;
  line-height: 1.5;
}
.no-campaign {
  display: flex;
  justify-content: space-between;
  width: 420px;
  margin: 10px auto 0;
}
.no-campaign a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  max-width: 280px;
  padding: 3px 16px 3px 16px;
  font-weight: bold;
  border: 2px solid #27acd9;
  background: #27acd9;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
  font-size: large;
}
.no-campaign a:hover{
  color: #27acd9;
  background: #fff;
}
.no-flex {
  display: block;
  width: 250px;
  margin-top: 10px;
}
.logo_btn a {
  margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .campaign__heading > img {
    height: auto;
    display: inline-block;
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .mv .inner{
    padding: 0;
  }
  .campaign {
    padding: 40px 0 100px;
  }
  .campaign__heading p {
    font-size: 19px;
  }
  .campaign__heading:not(.-first) {
    margin-top: 40px;
  }
  .campaign__heading {
    height: 50px;
    overflow: hidden;
  }
  .campaign__heading > img {
    height: auto;
    max-width: 70%;
  }
  .campaign__box {
    padding: 24px 20px 30px;
  }
  .campaign__title {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .t_sec {
    margin-top: 35px;
  }
  .campaign__img {
    margin: 24px auto 0;
  }
  .campaign__subBox {
    margin-top: 20px;
    padding: 27px 20px;
  }
  .no-back {
    margin: 0;
    padding: 27px 20px;
  }
  .no-back-store {
    margin: 0;
    padding: 0 20px 27px;
  }
  .ponta-up_logo {
    max-width: 65%;
  }
  .pontapb_logo {
    max-width: 100%;
  }
  .store_logo {
    max-width: 100%;
  }
  .logo_subBox {
    padding: 10px;
    margin-top: 0;
  }
  .campaign__subBox p {
    text-align: left;
  }
  .no-campaign {
    display: block;
    width: 100%;
  }
  .no-campaign a {
    margin: 10px auto 0;
  }
  .no-flex {
    margin: 0;
  }
  .campaign__list {
    font-size: 1.4rem;
  }
  .campaign__list2 {
    margin: 10px auto 0;
  }
  .campaign__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .campaign__small {
    font-size: 1.3rem;
    margin-top: 8px;
  }
  .campaign__button {
    margin: 20px auto 0;
  }
  .campaign__note {
    font-size: 1.2rem;
  }
  .campaign__poster {
    gap: 10px;
  }
  .campaign__poster-link {
    font-size: 1.4rem;
    margin: 14px 0 0 8px;
  }
}
@media screen and (max-width: 500px) {
  .campaign__heading > img {
    max-width: 90%;
  }
}

.bg {
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.top {
  display: block;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top {
    margin-top: 50px;
  }
}

.bottom {
  display: block;
}

.deco01 {
  position: absolute;
  content: "";
  top: -53px;
  right: 25px;
  z-index: 2;
  width: 74px;
}

.deco02 {
  position: absolute;
  content: "";
  top: -38px;
  left: -3px;
  z-index: 2;
  width: 95px;
}

.deco03 {
  position: absolute;
  content: "";
  bottom: 36px;
  right: -30px;
  z-index: 2;
  width: 139px;
}

.deco04 {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 62px;
  /* z-index: -1; */
  width: 118px;
}

.deco05 {
  position: absolute;
  content: "";
  bottom: 90px;
  right: 50px;
  z-index: 2;
  width: 68px;
}

@media screen and (max-width: 1023px) {
  .deco01 {
    top: 137px;
    width: 49.3333333333px;
  }
  .deco02 {
    top: -8px;
    z-index: -1;
    width: 63.3333333333px;
  }
  .deco03 {
    bottom: 36px;
    z-index: -1;
    width: 92.6666666667px;
  }
  .deco04 {
    width: 78.6666666667px;
  }
  .deco05 {
    bottom: 210px;
    width: 45.3333333333px;
  }
}
@media screen and (max-width: 767px) {
  .deco01 {
    top: 177px;
    right: -15px;
    width: 37px;
  }
  .deco02 {
    top: -48px;
    z-index: -1;
    width: 47.5px;
  }
  .deco03 {
    bottom: -4px;
    z-index: -1;
    width: 69.5px;
  }
  .deco04 {
    width: 59px;
    bottom: -28px;
    left: 12px;
  }
  .deco05 {
    bottom: -30px;
    width: 34px;
  }
}
/* .campaign__box3 {
  padding: 29px 40px;
  background-color: #fff;
  position: relative;
  border: 8px solid #F2F2F2;
  border-radius: 8px;
  position: relative;
  margin: auto;
  max-width: 826px;
  font-size: 1.6rem;
  line-height: 2;
} */

.campaign__box3 {
    padding: 37px 46px;
    background-color: #fff;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    border-radius: 0 0 5px 5px;
}


@media screen and (max-width: 767px) {
  .campaign__box3 {
    padding: 0px 20px 20px 20px;
    border: 4px solid #F2F2F2;
  }
}
.campaign__box3 .campaign__img {
  margin: 27px auto 0;
  max-width: 570px;
}
@media screen and (max-width: 767px) {
  .campaign__box3 .campaign__img {
    margin: 24px auto 0;
  }
}

.campaign__head {
  margin-top: 102px;
  position: relative;
  text-align: center;
  width: 100%;
}
.campaign__head.-first {
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .campaign__head.-first {
    margin-top: 20px;
  }
}
.campaign__head-title {
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateY(-44%) translateX(-50%);
          transform: translateY(-44%) translateX(-50%);
  z-index: 99;
  width: 441px;
}
@media screen and (max-width: 767px) {
  .campaign__head-title {
    top: 0;
    width: 287px;
  }
}
.campaign__head-title img {
  width: 130px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .campaign__head {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .campaign__head img {
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 10px 10px 0 0;
  }
}

.attention {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.attention__notice {
  color: #EB5505;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .attention {
    background-size: contain;
  }
  .attention__notice {
    font-size: 1.7rem;
  }
}

.attention__contents {
  padding: 0 52px 47px;
}
@media screen and (max-width: 767px) {
  .attention__contents {
    padding: 24px 20px 30px;
  }
}

.attention__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 51px;
  font-weight: bold;
  color: #593017;
}
.attention__title > img {
  width: 308px;
}
@media screen and (max-width: 767px) {
  .attention__title > img {
    width: 200px;
  }
}
.attention__title::before, .attention__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 3px;
  background: red;
}
@media screen and (max-width: 767px) {
  .attention__title {
    margin-top: 0;
  }
}

.attention__lists {
  margin-top: 14px;
}
.attention__lists > .list {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .attention__lists > .list {
    margin-top: 8px;
  }
}
.attention__lists > .list::after {
  background-color: #fff;
}
.attention__lists > .list:first-child {
  margin-top: 0;
}

.sublist {
  padding-left: 14px;
  position: relative;
  margin-top: 4px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sublist {
    font-size: 1.4rem;
  }
}
.sublist::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  border-radius: 50px;
  background-color: #EB5505;
  left: 0;
  top: 14px;
}
@media screen and (max-width: 767px) {
  .sublist::after {
    top: 12px;
  }
}

.attention__more {
  margin-top: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .attention__more {
    margin-top: 16px;
  }
}
.attention__more a img {
  width: 100%;
  max-width: 534px;
}

.attention__deco01,
.attention__deco02 {
  width: 194px;
  position: absolute;
  top: -40px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .attention__deco01,
  .attention__deco02 {
    width: 60px;
    top: -20px;
  }
}

.attention__deco01 {
  left: -66px;
}
@media screen and (max-width: 767px) {
  .attention__deco01 {
    left: -20px;
  }
}

.attention__deco02 {
  right: -66px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .attention__deco02 {
    right: -20px;
  }
}

.rireki-link {
  max-width: 219px;
  margin: auto;
  margin-top: 29px;
}

@media screen and (max-width: 767px) {
  .rireki-link {
    max-width: 200px;
  }
}
.coupon-flow__bg {
  background-color: #1F286F;
  padding-top: 70px;
  padding-bottom: 70px;
}

.coupon-flow__box {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 75px 75px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .coupon-flow__box {
    padding: 50px;
  }
}
@media (max-width: 514px) {
  .coupon-flow__box {
    padding: 30px 20px;
  }
}
.coupon-flow__title img {
  width: 506px;
}

.coupon-flow__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin: 3px auto 0;
  max-width: 826px;
}
@media screen and (max-width: 767px) {
  .coupon-flow__lists {
    margin-top: 6px;
    gap: 20px;
  }
}

.coupon-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 31px;
     -moz-column-gap: 31px;
          column-gap: 31px;
  position: relative;
  background: #F2F2F2;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.coupon-flow__list:not(:last-child)::before {
  content: "";
  background-image: url(../../assets/img/coupon-flow-border.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);
  width: 100%;
  height: 23px;
}
.coupon-flow__list__head {
  padding-left: 40px;
  width: 142px;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list__head {
    padding-left: 10px;
    width: 70px;
  }
}
.coupon-flow__list__head img {
  width: 102px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list__head img {
    width: 60px;
  }
}
.coupon-flow__list__body {
  width: calc(100% - 173px);
  padding: 10px 40px 10px 0;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list__body {
    width: calc(100% - 70px);
    padding: 10px 20px;
  }
}
.coupon-flow__list__text {
  display: inline;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list__text {
    font-size: 1.5rem;
  }
}
.coupon-flow__list__notes {
  margin-top: 10px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .coupon-flow__list__notes {
    margin-top: 5px;
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.coupon-flow__coupon {
  /* margin: 41px auto 0; */
  max-width: 100%;
  text-align: center;
  background-color: #fff;

}
@media screen and (max-width: 767px) {
  .coupon-flow__coupon {
    margin: 30px auto 0;
  }
}

.conditions {
  background: url(../img/bg-conditions.png) no-repeat center center/cover;
  background-color: #fff;
  padding: 130px 0 120px;
  position: relative;
  z-index: 1;
}
.conditions__title {
  text-align: center;
}
.conditions__title img {
  width: 410px;
}
.conditions__box {
  margin-top: 42px;
  text-align: center;
}
.conditions__text {
  width: 635px;
  max-width: 100%;
  display: inline-block;
}
.conditions__model {
  margin-top: 24px;
  font-weight: bold;
  font-size: 1.7rem;
}
.conditions__button {
  margin-top: 60px;
  text-align: center;
}
.conditions__button > .c-button {
  padding-left: 38px;
  text-align: left;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .conditions {
    padding: 50px 0 60px;
  }
  .conditions__title > img {
    width: 280px;
  }
  .conditions__box {
    margin-top: 24px;
  }
  .conditions__model {
    font-size: 1.3rem;
    text-align: left;
  }
  .conditions__button {
    margin-top: 40px;
  }
  .conditions__button > .c-button {
    padding-left: 30px;
  }
}

.conditions-notice {
  margin: 50px auto 0;
  border-radius: 20px;
  border: solid 8px #E8E8E8;
  background-color: #fff;
  padding: 24px;
  max-width: 100%;
  width: 856px;
}
.conditions-notice__title {
  font-weight: bold;
  font-size: 1.9rem;
  padding-left: 31px;
  position: relative;
  letter-spacing: 0.05em;
}
.conditions-notice__title::before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon-exclamation.svg) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 23px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.conditions-notice__notes {
  margin-top: 12px;
  padding-bottom: 24px;
  position: relative;
}
.conditions-notice__notes::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: url(../img/border-dot.svg) left center repeat-x;
  left: 0;
  bottom: 0;
}
.conditions-notice__note {
  padding-left: 1.2em;
  position: relative;
}
.conditions-notice__note::before {
  position: absolute;
  content: "※";
  color: #E43C01;
  left: 0;
  top: 0;
  display: inline-block;
}
.conditions-notice__note + .conditions-notice__note {
  margin-top: 6px;
}
.conditions-notice__lists {
  margin-top: 24px;
}
.conditions-notice__list {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .conditions-notice {
    margin-top: 32px;
    border-width: 5px;
    padding: 24px 20px;
  }
  .conditions-notice__title {
    font-size: 1.7rem;
  }
  .conditions-notice__note {
    font-size: 1.5rem;
  }
  .conditions-notice__lists {
    margin-top: 24px;
  }
  .conditions-notice__list {
    font-size: 1.5rem;
  }
}

.button__more {
  margin-top: 58px;
  text-align: center;
}
.button__more > .button {
  padding-left: 38px;
  text-align: left;
  background-color: #EA5504;
}
@media screen and (max-width: 767px) {
  .button__more {
    margin-top: 40px;
  }
  .button__more > .button {
    padding-left: 30px;
  }
}

.important-point {
  margin: 52px auto 0;
  max-width: 856px;
  border: solid 8px #E8E8E8;
  border-radius: 20px;
  padding: 16px 19px 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .important-point {
    margin-top: 32px;
    padding: 20px;
  }
}

.important-point__title {
  font-weight: bold;
  font-size: 1.9rem;
  padding-left: 31px;
  position: relative;
  letter-spacing: 0.05em;
}
.important-point__title::before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon-exclamation.png) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 23px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.important-kome__lists {
  margin-top: 8px;
  padding-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .important-kome__lists {
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
}
.important-kome__lists::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: url(../../assets/img/border-dot.png) left center repeat-x;
  background-size: 100%;
  left: 0;
  bottom: 0;
}

.important-kome__list {
  padding-left: 21px;
  position: relative;
}
.important-kome__list::before {
  position: absolute;
  content: "※";
  color: #E8380D;
  left: 0;
  top: 0;
}
.important-kome__list + .important-kome__list {
  margin-top: 6px;
}

.important-point__lists {
  padding-top: 10px;
}
.important-point__lists > .list {
  margin-top: 10px;
  font-size: 1.5rem;
}
.important-point__lists > .list::after {
  background-color: #D60077;
}
@media screen and (max-width: 767px) {
  .important-point__lists > .list {
    margin-top: 8px;
  }
}

.banner__head {
  padding: 0 20px;
}
.banner__head img {
  display: block;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.banner-secondary {
  display: block;
  padding: 170px 0;
  background: #B2B2B2;
  text-align: center;
}
.banner-secondary__text {
  font-size: 2.6rem;
  font-weight: bold;
  color: #593017;
}
@media screen and (max-width: 767px) {
  .banner-secondary__text {
    font-size: 2rem;
  }
}

.banner {
  display: block;
  background: url(../../assets/img/banner-bg.png) center center no-repeat;
  background-size: cover;
  padding: 50px 0 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.banner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 30px 0px 24px;
  }
}
.banner > .inner {
  max-width: 1017px;
  margin-top: 14px;
}
.banner img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .banner img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

.banner__text {
  font-size: 2.4rem;
  margin-top: 14px;
}
@media screen and (max-width: 1023px) {
  .banner__text {
    font-size: 1.8rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .banner__text {
    font-size: 1.3rem;
  }
}

.contact {
  background-color: #000000;
  padding: 60px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}

.contact__title {
  text-align: center;
}
.contact__title > img {
  max-width: 540px;
  width: 100%;
}

.contact__text {
  color: #fff;
  margin-top: 26px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.4rem;
  }
}

.contact__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  -webkit-column-gap: 68px;
     -moz-column-gap: 68px;
          column-gap: 68px;
}
@media screen and (max-width: 767px) {
  .contact__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    margin-top: 30px;
  }
}
.contact__btnWrap .button {
  background-color: #FA5902;
}

.contact__buttonText {
  margin-top: 20px;
  line-height: 1.7333333333;
  color: #fff;
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact__buttonText {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 16px;
  }
}

.footer-menu {
  text-align: center;
  padding: 30px 0;
  background-color: #fff;
}

.footer-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
@media screen and (max-width: 767px) {
  .footer-menu__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-menu__link > a {
  color: #000b36;
  display: inline-block;
  padding-right: 14px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer-menu__link > a {
    font-size: 1.2rem;
  }
}
.footer-menu__link > a:hover {
  opacity: 0.7;
}
.footer-menu__link > a::before {
  position: absolute;
  content: "";
  background: url(../../assets/img/icon-arrow-black.png) center center no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.copyright {
  font-size: 1.2rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1rem;
  }
}

.footer-app {
  background-color: #FEE2EB;
  padding: 32px 0 38px;
}

.footer-app__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  line-height: 1.58;
}
.footer-app__title > img {
  display: inline-block;
  width: auto;
  height: 34.4px;
}
.footer-app__title > span {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 767px) {
  .footer-app__title {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }
  .footer-app__title > img {
    height: 25px;
  }
  .footer-app__title > span {
    font-size: 1.6rem;
  }
}

.footer-app__link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer-app__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-app__link > a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-app__link > a:hover {
  opacity: 0.7;
}
.footer-app__link > a > img {
  height: 83px;
  width: auto;
}

@media screen and (min-width: 1024px) {
  .hidden__pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden__sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hidden__sp-up {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .hidden__tab-down {
    display: none !important;
  }
}
._bold {
  font-weight: bold !important;
}

._accent {
  color: #F2408E !important;
}

.notice {
  color: #EB5505;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .hidden__pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden__sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hidden__sp-up {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .hidden__tab-down {
    display: none !important;
  }
}

.coupon-flow__coupon img{
  padding-top: 50px;
  width: 60%;
  margin-bottom: 30px;
  }

  /* コメント */

  @media screen and (max-width: 767px) {
    .campaign__title01 {
      font-size: 1.8rem;
    line-height: 1.75;
    font-weight: bold;
    text-align: center;
    color: red;
    }}

  @media screen and (max-width: 767px) {
    .coupon-flow__coupon img { 
      width: 100%;
      margin: auto;
      padding-top: 0%;
    }
  }


/*クーポン獲得の流れ*/
.-bg.-orange {
  background-color: #ea5504;
  margin-top: 65px;
}

.-bg {
    padding: 4em 0;
}

.inner {
    position: relative;
}

.p-coupon .c-frame__inner {
    background-color: #fff;
    -moz-border-radius: 1em;
    border-radius: 1em;
    padding-top: 2em;
}

.c-frame__inner {
    position: relative;
    z-index: 2;
    -moz-border-radius: inherit;
    border-radius: inherit;
}

.c-title-round {
    margin: auto;
    text-align: center;
    color: #fff;
    background-color: #ea5504;
    -moz-border-radius: 2em;
    border-radius: 2em;
    font-weight: bold;
    display: table;
    width: 100%;
}

.c-red {
    color: #e50012;
}

.p-coupon__lead {
    margin: 2em 1em 1em;
}

strong {
    font-weight: bold !important;
}

.mt2em {
    margin-top: 3em !important;
}

.swiper {
    position: relative;
    width: 100%;
}

.swiper-slide-active .c-coupon-step__img {
  opacity: 1
}
.c-coupon-step__text {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  -moz-transition: opacity .4s;
  transition: opacity .4s
}
.swiper-slide-active .c-coupon-step__text {
  opacity: 1
}
.c-coupon-step__text p {
  margin-top: 1.5em
}
.c-coupon-step .swiper-pagination {
  bottom: 5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center
}
.c-coupon-step .swiper-pagination-bullet {
  background-color: #ea5504;
  height: 12px;
  margin: 0 6px;
  width: 12px
}
.swiper-button-prev, .swiper-button-next {
  outline: none;
  background: none
}
.swiper-button-prev:before {
  content: '';
  background: #FFF;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid #eb5505;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  opacity: 0.8
}
.swiper-button-prev:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #eb5505;
  border-left: 4px solid #eb5505;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
  left: 16px;
  opacity: 0.8
}
.swiper-button-next:before {
  content: '';
  display: block;
  background: #FFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid #eb5505;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: 1px;
  opacity: 0.8
}
.swiper-button-next:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #eb5505;
  border-right: 4px solid #eb5505;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 14px;
  right: 16px;
  opacity: 0.8
}

/*Swiper*/
.swiper {
	position: relative;
	width: 100%;
}
.swiper-wrapper {
}
.swiper-slide img {
	margin: auto;
}
.swiper-pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 2em 1em;
}
.swiper-pagination-bullet {
	display: block;
	background: #ccc;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 0 10px;
	cursor: pointer;
	transition: .2s;
}
.swiper-pagination-bullet-active {
	background: #EA5504!important;
	transition: .2s;
}
.swiper-button-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 10;
	display: block;
	cursor: pointer;
	background-size: cover;
	width: 51px;
	height: 51px;
	transition: .2s;
}
.swiper-button-next {
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 10;
	display: block;
	cursor: pointer;
	background-size: cover;
	width: 51px;
	height: 51px;
	transition: .2s;
}
.swiper-button-disabled {
	pointer-events: none;
	filter: grayscale(100%);
  opacity: 0.2;
	transition: .2s;
}

.getcoupon_cpperiod {
  line-height: 1.5em;
  margin-bottom: 0;
  text-align: center;
  width: 350px
}

.trans_coupon_swiper{
  margin-top: 10px;
  font-size: 1.9rem;
}
.trans_coupon_swiper a{
  color:#EA5504;
  font-weight:bold;
  text-decoration:none;
}
.trans_coupon_swiper a:hover{
  opacity: .6;
  text-decoration:underline;
  text-underline-offset: 8px;
}

.swiper-slide-active .c-coupon-step__img {
  opacity: 1
}
.c-coupon-step__text {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  -moz-transition: opacity .4s;
  transition: opacity .4s
}
.swiper-slide-active .c-coupon-step__text {
  opacity: 1
}

.c-coupon-step .swiper-pagination {
  bottom: 5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center
}
.c-coupon-step .swiper-pagination-bullet {
  background-color: #ea5504;
  height: 12px;
  margin: 0 6px;
  width: 12px
}
.swiper-button-prev, .swiper-button-next {
  outline: none;
  background: none
}
.swiper-button-prev:before {
  content: '';
  background: #FFF;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid #eb5505;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  opacity: 0.8
}
.swiper-button-prev:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #eb5505;
  border-left: 4px solid #eb5505;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
  left: 16px;
  opacity: 0.8
}
.swiper-button-next:before {
  content: '';
  display: block;
  background: #FFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid #eb5505;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: 1px;
  opacity: 0.8
}
.swiper-button-next:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #eb5505;
  border-right: 4px solid #eb5505;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 14px;
  right: 16px;
  opacity: 0.8
}

.note {
    font-size: 20px;
    text-align: center;
    margin-bottom: 1em;
}

.c-btn {
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

.c-btn.-l {
    font-weight: bold;
}

.p-coupon .c-btn.-border {
    margin-bottom: 1.5em;
}

.c-btn a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ea5504;
    -moz-border-radius: 2em;
    border-radius: 2em;
    border: solid 1px #ea5504;
    padding: .2em .5em;
    background-color: white;
}

.c-btn.-border a {
    background-color: #ea5504;
    border: 4px solid white;
    -webkit-box-shadow: 0 0 0 4px #ea5504;
    -moz-box-shadow: 0 0 0 4px #ea5504;
    box-shadow: 0 0 0 4px #ea5504;
    color: white;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

@media (max-width: 460px) {
  others {
    font-size: 2.0rem
  }
  lh1_2 {
    line-height: 1.5
  }
  body {
    font-size: 1.6rem
  }
  .inner {
    padding: 0 4.6vw
  }
  .pc {
    display: none !important
  }
  .root {
    padding-top: ""
  }
  #footer {
    padding: 20px 0 160px
  }
  .returmtop {
    bottom: 150px
  }
  .returmtop a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 2.4rem
  }
  .c-row-sp {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
  }
  .c-shop-step__item {
    margin-top: 2em
  }
  .c-shop-step__inner {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    margin: auto
  }
  .c-cp__title {
    width: 78.1vw;
    height: 60px
  }
  .c-cp .c-frame {
    padding: 1.7em 1em
  }
  .c-coupon-step {
    padding: 1em
  }
  .c-coupon-step__item {
    margin: 0 auto;
    padding: 3em 2em
  }
  .c-coupon-step__number {
    height: 60px;
    left: -20px;
    top: -15px;
    width: 70px
  }
  .c-coupon-step__number img {
    height: auto;
    width: 75%
  }
  .c-coupon-step__img {
    width: 80%;
    margin: 0 auto
  }
  .c-btn {
    width: -webkit-calc(100% - 1em);
    width: -moz-calc(100% - 1em);
    width: calc(100% - 1em)
  }
  .c-btn a {
    padding: 1em .5em
  }
  .c-btn.-border, .c-btn.-l {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem
  }
  .c-title-normal {
    margin-bottom: 25px;
    font-size: 4vw
  }
  .c-title-h2 {
    margin-bottom: 25px;
    font-size: 5vw !important
  }
  .c-title-round {
    min-width: 80%;
    height: 50px;
    line-height: 50px;
    font-size: 1.8rem
  }
  .c-title-flag {
    min-width: 80%;
    height: 85px;
    line-height: 68px;
    font-size: 1.6rem
  }
  .c-bubble {
    font-size: 5vw
  }
  .c-deco {
    width: 38px;
    height: 38px
  }
  .c-deco.-lt {
    top: -8px;
    left: -8px
  }
  .c-deco.-rt {
    top: -8px;
    right: -8px
  }
  .c-deco.-lb {
    bottom: -8px;
    left: -8px
  }
  .c-deco.-rb {
    bottom: -8px;
    right: -8px
  }
  .c-frame {
    line-height: 1.7
  }
  .c-frame:before {
    width: -webkit-calc(100% + 10px);
    width: -moz-calc(100% + 10px);
    width: calc(100% + 10px);
    height: -webkit-calc(100% + 10px);
    height: -moz-calc(100% + 10px);
    height: calc(100% + 10px)
  }
  .c-frame__inner.-l, .c-frame__inner.-m {
    padding: 0 4.6vw 2em
  }
  .c-frame__inner.-s {
    padding: 0 4.6vw 2em
  }
  .c-frame.-border {
    margin-bottom: 0
  }
  .c-term-frame {
    line-height: 1.7
  }
  .c-term-frame:before {
    width: -webkit-calc(100% + 10px);
    width: -moz-calc(100% + 10px);
    width: calc(100% + 10px);
    height: -webkit-calc(100% + 10px);
    height: -moz-calc(100% + 10px);
    height: calc(100% + 10px)
  }
  .c-term-frame h2 {
    font-size: 4.3vw
  }
  .c-term-frame__inner.-l, .c-term-frame__inner.-m {
    padding: 0 4.6vw 2em
  }
  .c-term-frame__inner.-s {
    padding: 0 4.6vw 2em
  }
  .mt2em {
    margin-top: 2em !important
  }
  .mt3em {
    margin-top: 3em !important
  }
  .p-mv .inner {
    padding: 0
  }
  .p-mv .c-note {
    padding: 0 1em
  }
  .p-coupon {
    margin: 0 0 3em
  }
  .p-term .c-btn {
    margin-top: 0.5em
  }
  .p-contact {
    font-size: 1.5rem;
    margin: 3em auto
  }
  .p-contact h2 {
    font-size: 4vw
  }

/*apps 追従*/
  .apps_dl {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4rem
  }
  .apps_dl a img {
    width: 45% !important;
    margin: 0.5em 0 0
  }
  .apps_dl a img.migi {
    margin-right: 0em
  }

/*apps 追従なし*/
  .apps_nodl {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4rem
  }
  .apps_nodl a img {
    width: 45% !important;
    margin: 0.5em 0 0
  }
  .apps_nodl a img.migi {
    margin-right: 0em
  }

/*クーポン獲得追従*/
  .getcoupon_dl {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4rem
  }
  .getcoupon_dl a img {
    width: 85% !important;
    margin: 0.5em 0 0
  }

  .endtxt {
    font-size: 1.8rem;
    letter-spacing: normal;
    padding:0 8px;
  }
  .janakutemo {
    line-height: 1.5;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
    text-align: bottom
  }
}

@media (min-width: 461px) {
    .p-coupon .inner {
        max-width: 750px;
    }

    .p-coupon {
        font-size: 1.8rem;
        margin: 0 0 3em;
  }

    .c-frame__inner {
      padding: 0 47px 50px;
  }

  .c-title-round {
        height: 47px;
        line-height: 47px;
        font-size: 3.2rem;
  }
  .swiper-button-prev, .swiper-button-next {
    display: block
  }

  .c-btn {
    font-size: 2.4rem;
    height: 56px;
    width: 333px;
  }

  .c-btn.-l {
    font-size: 2.8rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
  }

  .c-btn.-l {
    font-size: 2.8rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .swiper-button-prev {
    background-image: none
  }
  .swiper-button-prev:before {
    opacity: 1;
    content: '';
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 2px solid #eb5505;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0
  }
  .swiper-button-prev:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 4px solid #eb5505;
    border-left: 4px solid #eb5505;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 14px;
    left: 16px;
    opacity: 10
  }
  .swiper-button-next:before {
    content: '';
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 2px solid #eb5505;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 1px;
    opacity: 10
  }
  .swiper-button-next:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 4px solid #eb5505;
    border-right: 4px solid #eb5505;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 14px;
    right: 16px
  }
}

@media (max-width: 750px) {
  .inner {
    padding: 0 10px
  }
  .inner.c-content-inner {
    padding-top: 30px;
    padding-bottom: 20px
  }
  .c-shop-step__item {
    width: 100%
  }
  .c-shop-step__inner {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
    margin: auto
  }
  .swiper-button-prev, .swiper-button-next {
    display: block
  }
  .c-btn {
    font-size: 3.7vw
  }
  .c-btn.-normal {
    font-size: 3.7vw
  }
  .c-btn.-border, .c-btn.-l {
    font-size: 4.3vw
  }
  .c-title-normal {
    font-size: 4.3vw
  }
  .c-title-h2 {
    font-size: 2.4rem
  }
  .c-title-round {
    font-size: 5vw
  }
  .c-title-flag {
    font-size: 4.6vw
  }
  .c-bubble {
    font-size: 5vw
  }
  .c-frame__inner {
    padding: 0 4% 2em
  }
  .c-frame__inner.-l, .c-frame__inner.-m, .c-frame__inner.-s {
    padding: 0 4% 2em
  }
  .c-frame.-border h2:not(.-deco-none) {
    max-width: 92%
  }
  .c-term-frame {
    margin-bottom: 2em
  }
  .c-term-frame h2 {
    margin-left: 4%;
    margin-right: 4%;
    font-size: 4.3vw
  }
  .c-term-frame__inner {
    padding: 0 4% 2em
  }
  .c-term-frame__inner.-l, .c-term-frame__inner.-m, .c-term-frame__inner.-s {
    padding: 0 4% 2em
  }
}