@charset "UTF-8";

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.4414414414vw;
  }
}

@media (min-width: 1110px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #323333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.pconly {
  display: none;
}

@media screen and (min-width: 768px) {
  .pconly {
    display: block;
  }

  .sponly {
    display: none;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: solid 5px #ecde57;
}

.layout-news {
  background: #f3f5fa;
  margin: 9.4642857143vw 0 0;
  padding: 5.5357142857vw 0 6.7857142857vw;
}

@media screen and (min-width: 768px) {
  .layout-news {
    margin: 3.75rem 0 0;
    padding: 2.375rem 0;
  }
}

.layout-youtube {
  background: #f3f5fa;
  margin: 9.4642857143vw 0 0;
  /*  padding: 7.03125vw 0;*/
  padding: 7.03125vw 2.03125vw;
}

@media screen and (min-width: 768px) {
  .layout-youtube {
    margin: 3.75rem 0 0;
    padding: 2.95rem 0;
  }
}

.layout-about {
  background: #f3f5fa;
  text-align: center;
  margin: 20.7142857143vw 0 0;
  padding-bottom: 9.4642857143vw;
}

@media screen and (min-width: 768px) {
  .layout-about {
    margin: 6.6875rem 0 0;
    padding-bottom: 3.75rem;
  }
}

.layout-benefits {
  background: #f3f5fa;
  text-align: center;
  margin: 10.3571428571vw 0 0;
  padding: 1.875rem 0 10.7142857143vw;
}

@media screen and (min-width: 768px) {
  .layout-benefits {
    margin: 3.3125rem 0 0;
    padding: 1.875rem 0 3.75rem;
  }
}

.layout-concept {
  background: #f3f5fa;
  text-align: center;
  margin: 10.7142857143vw 0 9.8214285714vw;
  padding-bottom: 10.7142857143vw;
}

@media screen and (min-width: 768px) {
  .layout-concept {
    margin: 3.25rem 0 3.375rem;
    padding-bottom: 3.75rem;
  }
}

.layout-footer {
  background: #0066cb;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 8.5714285714vw 0 11.25vw;
}

@media screen and (min-width: 768px) {
  .layout-footer {
    padding: 1.75rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title_shadow {
  margin: 0 auto;
  font-size: 3.0357142857vw;
  font-weight: 700;
  color: #0066cb;
  box-shadow: 0.21875rem 0.21875rem 0 0.1875rem #0066cb;
  background: #fff;
  line-height: 5.7142857143vw;
  border-radius: 0.8928571429vw;
  display: block;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_shadow {
    box-shadow: 0.25rem 0.25rem 0 0.5rem #0066cb;
    line-height: 2.625rem;
    font-size: 1.375rem;
    line-height: 2.6875rem;
    border-radius: 0.5625rem 0.625rem;
  }
}

.title_shadow span {
  box-shadow: 0 0 0 0.8928571429vw #0066cb;
  border-radius: 0.8928571429vw;
  display: block;
}

@media screen and (min-width: 768px) {
  .title_shadow span {
    box-shadow: 0 0 0 0.3125rem #0066cb;
    border-radius: 0.5625rem 0.625rem;
  }
}

.header {
  background-color: #fff;
}

.header__inner {
  padding-left: 1.375rem;
  height: inherit;
  display: flex;
  height: 4.375rem;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 69.375rem;
    margin: 0 auto;
    padding: 0;
    height: 6.25rem;
  }
}

.header__logo {
  max-width: 77.8571428571vw;
  width: 100%;
  height: inherit;
  display: flex;
}

@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 29.3125rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.logo__nakano-ku {
  width: 29.6428571429vw;
  margin-right: 7.1428571429vw;
}

@media screen and (min-width: 768px) {
  .logo__nakano-ku {
    width: 10.375rem;
    margin-right: 3.5625rem;
  }
}

.logo__naka-pay {
  width: 40.8928571429vw;
}

@media screen and (min-width: 768px) {
  .logo__naka-pay {
    width: 14.3125rem;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    margin-top: 1.0625rem;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .header__nav-list {
    gap: 2.125rem;
  }
}

.header__nav-item {
  width: 4.15625rem;
  height: 4.15625rem;
}

.header__nav-item a {
  padding: 0;
  height: inherit;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
}

.header__nav-item a.preparation {
  background: #cad0e6;
  pointer-events: none;
}

.header__nav-item a.active {
  background: #209cd7;
  box-shadow: 0.125rem 0.125rem 0 #cad0e6;
}

.nav-project {
  font-size: 0.75rem;
}

.nav-faq {
  font-size: 0.8125rem;
}

.nav-search,
.nav-merchants {
  font-size: 0.875rem;
}

.nav-rules {
  font-size: 0.9375rem;
}

.header__nav-item a span {
  font-size: 0.53125rem;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 9.2857142857vw;
  margin-right: 4.4642857143vw;
  height: inherit;
  cursor: pointer;
  background: none;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 9.2857142857vw;
  height: 0.8928571429vw;
  background-color: #b6b6b6;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -2.5vw;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 2.5vw;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.8928571429vw;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.8928571429vw;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  display: none;
  position: absolute;
  z-index: 900;
  top: 13.3928571429vw;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 2.6785714286vw 0 2.6785714286vw 5.3571428571vw;
  display: block;
  font-size: 4.2857142857vw;
  font-weight: 700;
  line-height: 0.81;
  letter-spacing: 0.05em;
  color: #323333;
  text-align: left;
  text-transform: uppercase;
}

.header__drawer-item a.preparation {
  background: #cad0e6;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: solid 1px #323333;
  border-top: solid 1px #323333;
  pointer-events: none;
}

.header__drawer-item a.close_btn {
  padding-left: 0;
  background: #00a8ea;
  color: #fff;
  text-align: center;
}

.mv {
  text-align: center;
  margin: 4.6875rem 0 0;
  background: #b3eaff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mv {
    margin: 6.5625rem 0 0;
  }
}

.mv::before,
.mv::after {
  content: "";
  position: absolute;
  margin-left: -3.5714285714vw;
  border: 3.5714285714vw solid transparent;
}

@media screen and (min-width: 768px) {

  .mv::before,
  .mv::after {
    margin-left: -1.25rem;
    border: 1.25rem solid transparent;
  }
}

.mv::before {
  top: 23.2142857143vw;
  left: 50%;
  border-top: 4.4642857143vw solid #fff;
}

@media screen and (min-width: 768px) {
  .mv::before {
    top: 7.125rem;
    border-top: 1.5625rem solid #fff;
  }
}

.mv::after {
  top: 100%;
  left: 50%;
  border-top: 4.4642857143vw solid #b3eaff;
}

@media screen and (min-width: 768px) {
  .mv::after {
    border-top: 1.5625rem solid #b3eaff;
  }
}

.mv__inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 9.2857142857vw 2.6785714286vw 7.1428571429vw;
}

@media screen and (min-width: 768px) {
  .mv__inner {
    padding: 3.1875rem 25px 2.5rem;
    max-width: 72.5rem;
  }
}

.mv__title-wrap {
  background: #fff;
  padding: 4.4642857143vw 0 2.8571428571vw;
}

@media screen and (min-width: 768px) {
  .mv__title-wrap {
    padding: 2rem 0 1.5rem;
  }
}

.mv__main-title {
  font-size: 5.3571428571vw;
  font-weight: 700;
  color: #0066cb;
}

@media screen and (min-width: 768px) {
  .mv__main-title {
    font-size: 2.4375rem;
  }
}

.mv__title {
  font-size: 6.25vw;
  font-weight: 700;
  color: #0066cb;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 2.1875rem;
    position: relative;
    z-index: 2;
  }
}

.mv__img {
  width: 85vw;
  margin: -7.6785714286vw auto 0;
}

@media screen and (min-width: 768px) {
  .mv__img {
    width: 29.75rem;
    margin: -2.4375rem auto 0;
  }
}

.mv__img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.button_area {
  margin: 0 2.6785714286vw;
}

@media screen and (min-width: 768px) {
  .button_area {
    margin: 0 auto;
    width: 69.375rem;
  }
}

.button_area .check {
  margin: 11.0714285714vw 0 9.8214285714vw;
}

@media screen and (min-width: 768px) {
  .button_area .check {
    margin: 3.9375rem 0 1.25rem;
  }
}

.button_area .check .title_shadow {
  width: 69.6428571429vw;
}

@media screen and (min-width: 768px) {
  .button_area .check .title_shadow {
    width: 32.8125rem;
  }
}

.button_area .check .title_shadow span {
  width: 69.6428571429vw;
  display: block;
}

@media screen and (min-width: 768px) {
  .button_area .check .title_shadow span {
    width: 32.8125rem;
  }
}

.button_area .check .buttons {
  display: flex;
  border: solid 0.8928571429vw #0066cb;
  background: #fff;
  border-radius: 3.5714285714vw;
  margin-top: -3.9285714286vw;
  padding: 10.3571428571vw 7.1428571429vw 5.3571428571vw;
  gap: 8.5714285714vw;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .button_area .check .buttons {
    border-radius: 1.25rem;
    border: solid 0.3125rem #0066cb;
    flex-direction: row;
    margin-top: -1.375rem;
    padding: 3.1875rem 1.875rem 1.5rem;
    gap: 4.375rem;
  }
}

.button_area .check .button {
  position: relative;
}

.button_area .check .button a {
  display: inline-block;
}

.button_area .check .button a img {
  height: auto;
  width: 100%;
}

.button_area .check .button-preparation {
  pointer-events: none;
}

.button_area .check .button-preparation::before {
  content: "";
  background: url(../images/common/preparation.png) no-repeat;
  background-size: contain;
  height: 7.6785714286vw;
  width: 25.3571428571vw;
  display: block;
  position: absolute;
  bottom: -1.4285714286vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .button_area .check .button-preparation::before {
    width: 9.75rem;
    left: 13.75rem;
    top: 4.375rem;
  }
}

.button_area .button-merchants {
  border-radius: 0.8928571429vw;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .button_area .button-merchants {
    margin: 3.75rem auto 0;
  }
}

.notice {
  background: #0066cb url(../images/common/notice_bg.png) no-repeat right -15.5357142857vw bottom;
  background-size: 220%;
  color: #ffff00;
  text-align: center;
  font-weight: 600;
  font-size: 2.8571428571vw;
  padding: 19.6428571429vw 0 23.5714285714vw;
  margin-top: 9.6428571429vw;
}

@media screen and (min-width: 768px) {
  .notice {
    background: #0066cb url(../images/common/notice_bg.png) no-repeat right bottom;
    background-size: 100%;
    font-size: 2rem;
    padding: 7.4375rem 0 8.25rem;
    margin-top: 3.125rem;
  }
}

.news__inner {
  width: 90.8928571429vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .news__inner {
    width: 49.1875rem;
  }
}


.font_red {
  color: #d3381c;
  /* 文字色指定 */
}

.font_small {
  font-size: 70%;
}

.news__heading {
  color: #1861ad;
  border-bottom: 2px solid #1861ad;
}

@media screen and (min-width: 768px) {
  .news__heading {
    border-bottom: 4px solid #1861ad;
  }
}

.news__title {
  font-size: 3.2142857143vw;
  letter-spacing: 0.4em;
  margin: 0 0 1.7857142857vw 3.5714285714vw;
  display: block;
  line-height: 1;
  border-left: 2px solid #1861ad;
  padding-left: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .news__title {
    font-size: 16px;
    letter-spacing: 0;
    margin: 0 0 0.625rem 1.875rem;
    border-left: 4px solid #1861ad;
    padding-left: 1.25rem;
  }
}

.news__items {
  border-left: 2px solid #1861ad;
  padding: 1.7857142857vw 0 0.8928571429vw 3.9285714286vw;
  margin: 0.8928571429vw 0 0 3.5714285714vw;
  overflow-y: scroll;
  /* Add AW */
  height: 76.5714285714vw;

}

@media screen and (min-width: 768px) {
  .news__items {
    border-left: 4px solid #1861ad;
    padding: 0.3125rem 0 0.3125rem 2.5rem;
    margin: 0.625rem 0 0 1.875rem;
    /* Add AW */
    height: 23.75rem;

  }
}

/* -- Add AW -- 
@media screen and (min-width: 360px) {
  .news__items {
        border-left: 4px solid #1861ad;
    padding: 0.3125rem 0 0.3125rem 2.5rem;
    margin: 0.625rem 0 0 1.875rem;

  }
}
*/

.news__item {
  display: flex;
  margin-bottom: 1.4285714286vw;
}

@media screen and (min-width: 768px) {
  .news__item {
    margin-bottom: 0.25rem;
  }
}

.news__item__date {
  font-weight: 700;
  font-size: 2.8571428571vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .news__item__date {
    /*    font-size: 1.25rem;*/
    font-size: 1.15rem;
  }
}

.news__item__title {
  letter-spacing: 0.1em;
  margin-left: 4.4642857143vw;
  /*  font-size: 2.1428571429vw;*/
  font-size: 3.1428571429vw;
  /*  line-height: 2;*/
  line-height: 1.8;
}

/* -- Add AW -- */
.news__item__title a:link {
  color: #19448e;
  text-decoration: underline;
}

.news__item__title a:visited {
  color: #19448e;
  text-decoration: underline;
}

.news__item__title a:hover {
  color: #007bbb;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .news__item__title {
    margin-left: 3.9375rem;
    font-size: 1.1rem;
    /* -- Add AW -- */
    line-height: 2;

  }

  /* -- Add AW -- */
  .news__item__title a:link {
    color: #19448e;
    text-decoration: underline;
  }

  .news__item__title a:visited {
    color: #19448e;
    text-decoration: underline;
  }

  .news__item__title a:hover {
    color: #007bbb;
    text-decoration: underline;
  }

}

/* -- Add AW -- */
/*
@media screen and (min-width: 360px) {
  .news__item__title {
    margin-left: 1.2375rem;

    font-size: 1.1rem;
  }
*/

/*
.news__item__title a:link {
 color: #19448e; 
 text-decoration: underline;
}
.news__item__title a:visited {
 color: #19448e; 
 text-decoration: underline;
}

.news__item__title a:hover {
 color: #007bbb; 
 text-decoration: underline;
}
*/

}

.youtube__movie {
  width: 94.6875vw;
  height: 53.43750000000001vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .youtube__movie {
    width: 560px;
    height: 315px;
    padding: 0 8px;
    /* AW add*/
    margin: 0 auto;

  }
}

.youtube__movie iframe {
  /*
  width: 30%;
  height: 100%;
*/
  border: 1px solid #000;

  /* AW add*/
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;

}

.youtube__movie:nth-child(2) {
  margin-top: 3.90625vw;
}

@media screen and (min-width: 768px) {
  .youtube__movie:nth-child(2) {
    margin-top: 0;
  }
}


@media screen and (min-width: 768px) {
  .youtube .flex-box {
    display: flex;
    width: 1120px;
    margin: 0 auto;
  }
}

.about__inner {
  margin: 0 auto;
  color: #0066cb;
  position: relative;
}

@media screen and (min-width: 768px) {
  .about__inner {
    width: 68.75rem;
  }
}

.about__title {
  color: #fff;
  background: #0066cb;
  position: relative;
  border-radius: 10.3571428571vw;
  display: block;
  /*  font-size: 5.7142857143vw;*/
  /* -- Add AW -- */
  font-size: 4.7142857143vw;
  top: -10vw;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.7857142857vw 16.0714285714vw;
}

@media screen and (min-width: 768px) {
  .about__title {
    border-radius: 3.5rem;
    /*    font-size: 2rem;*/
    /* -- Add AW -- */
    font-size: 2rem;
    top: -3.5rem;
    padding: 0.5rem 4.625rem;
  }
}

.about__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2.6785714286vw;
  border: 2.6785714286vw solid transparent;
  border-top: 3.5714285714vw solid #0066cb;
}

@media screen and (min-width: 768px) {
  .about__title::before {
    margin-left: -0.9375rem;
    border: 0.9375rem solid transparent;
    border-top: 1.25rem solid #0066cb;
  }
}

.about__description {
  font-size: 4.375vw;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: -2.3214285714vw;
  line-height: 1.65;
}

@media screen and (min-width: 768px) {
  .about__description {
    font-size: 1.96875rem;
    margin-top: -0.8125rem;
    line-height: 1.5;
  }
}

.about__features {
  display: flex;
  justify-content: space-between;
  gap: 8.9285714286vw;
  padding: 0 18.5714285714vw;
  margin-top: 7.6785714286vw;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .about__features {
    gap: 6.25rem;
    flex-direction: row;
    margin-top: 3.3125rem;
    padding: 0;
  }
}

.feature {
  border: solid 0.3125rem #0066cb;
  background: #fff;
  border-radius: 1.25rem;
  flex: 1;
  padding-bottom: 0.625rem;
}

.feature .feature__title {
  margin: 0 auto;
  font-size: 3.3928571429vw;
  font-weight: 700;
  color: #0066cb;
  box-shadow: 0.7142857143vw 0.7142857143vw 0 0.7142857143vw #0066cb;
  background: #fff;
  line-height: 6.0714285714vw;
  border-radius: 0.8928571429vw;
  display: block;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: -3.2142857143vw;
}

@media screen and (min-width: 768px) {
  .feature .feature__title {
    font-size: 1.1875rem;
    box-shadow: 0.25rem 0.25rem 0 0.25rem #0066cb;
    line-height: 2.1875rem;
    border-radius: 0.625rem;
    top: -1.125rem;
  }
}

.feature .feature__title span {
  box-shadow: 0 0 0 0.8928571429vw #0066cb;
  border-radius: 1.7857142857vw;
  display: block;
  padding: 0 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .feature .feature__title span {
    padding: 0 0.625rem;
    box-shadow: 0 0 0 0.3125rem #0066cb;
    border-radius: 0.625rem;
  }
}

.feature-shopping img {
  margin: -1.6875rem auto 0.6875rem;
  width: 17.5rem;
}

@media screen and (min-width: 768px) {
  .feature-shopping img {
    width: 22.125rem;
    margin: -0.625rem auto 0.125rem;
  }
}

.feature-events {
  padding-bottom: 4.4642857143vw;
}

@media screen and (min-width: 768px) {
  .feature-events {
    padding-bottom: 0;
  }
}

.feature-events img {
  width: 48.75vw;
  margin: -1.25rem auto 0.0625rem;
}

@media screen and (min-width: 768px) {
  .feature-events img {
    width: 22.09375rem;
    margin: -2.5rem auto -0.25rem;
  }
}

.feature__description {
  font-size: 3.3928571429vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .feature__description {
    font-size: 1.1875rem;
  }
}

/* Change AW */

.feature__description strong {
  font-size: 3.3928571429vw;
  /*  color: #ff0000;*/
  color: #d3381c;
  text-decoration: underline;
  /*  font-weight: 500;*/
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .feature__description strong {
    font-size: 1.1875rem;
  }
}

.benefits__inner {
  margin: 0 auto;
  color: #0066cb;
  position: relative;
}

@media screen and (min-width: 768px) {
  .benefits__inner {
    width: 69.25rem;
  }
}

.benefits__title {
  color: #fff;
  background: #0066cb;
  position: relative;
  border-radius: 1.7857142857vw;
  display: block;
  font-size: 5.7142857143vw;
  top: -5.1785714286vw;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8928571429vw 13.3928571429vw;
}

@media screen and (min-width: 768px) {
  .benefits__title {
    border-radius: 0.625rem;
    font-size: 2rem;
    top: -1.8125rem;
    padding: 0.3125rem 4.6875rem;
  }
}

.benefits__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9375rem;
  border: 0.9375rem solid transparent;
  border-top: 1.25rem solid #0066cb;
}

.benefits__list {
  display: flex;
  justify-content: space-between;
  margin-top: 3.5714285714vw;
  gap: 10vw;
  padding: 0 18.5714285714vw;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .benefits__list {
    flex-direction: row;
    margin-top: 1.6875rem;
    gap: 1.5625rem;
    padding: 0;
  }
}

.benefit {
  background: #fff;
  border: solid 0.8928571429vw #0066cb;
  border-radius: 3.5714285714vw;
  padding-bottom: 4.4642857143vw;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .benefit {
    border: solid 0.3125rem #0066cb;
    border-radius: 1.25rem;
    padding-bottom: 0.5rem;
  }
}

.benefit .benefit__title {
  margin: 0 auto;
  font-size: 3.3928571429vw;
  font-weight: 700;
  color: #0066cb;
  box-shadow: 0.7142857143vw 0.7142857143vw 0 0.7142857143vw #0066cb;
  background: #fff;
  line-height: 6.0714285714vw;
  border-radius: 0.8928571429vw;
  display: block;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: -3.2142857143vw;
}

@media screen and (min-width: 768px) {
  .benefit .benefit__title {
    font-size: 1.1875rem;
    box-shadow: 0.25rem 0.25rem 0 0.25rem #0066cb;
    line-height: 2.1875rem;
    border-radius: 0.3125rem;
    top: -1.125rem;
  }
}

.benefit .benefit__title span {
  display: block;
  box-shadow: 0 0 0 0.8928571429vw #0066cb;
  border-radius: 0.8928571429vw;
  padding: 0 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .benefit .benefit__title span {
    box-shadow: 0 0 0 0.3125rem #0066cb;
    border-radius: 0.3125rem;
    padding: 0 0.625rem;
  }
}

.benefit img {
  margin: 0 auto;
}

.benefit-discovery img {
  width: 12.6785714286vw;
  margin-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .benefit-discovery img {
    width: 4.4375rem;
    margin-bottom: 0.3125rem;
  }
}

.benefit-revitalization .benefit__title span {
  padding: 0 4.6428571429vw;
}

@media screen and (min-width: 768px) {
  .benefit-revitalization .benefit__title span {
    padding: 0 1.6875rem;
  }
}

.benefit-revitalization img {
  width: 15.1785714286vw;
  margin-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .benefit-revitalization img {
    width: 5.3125rem;
    margin-bottom: 0.3125rem;
  }
}

.benefit-payment {
  padding-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .benefit-payment {
    padding-bottom: 0.5rem;
  }
}

.benefit-payment .benefit__title {
  letter-spacing: 0;
}

.benefit-payment img {
  width: 20.8928571429vw;
}

@media screen and (min-width: 768px) {
  .benefit-payment img {
    width: 7.3125rem;
  }
}

.benefit__description {
  font-size: 3.3928571429vw;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .benefit__description {
    font-size: 1.1875rem;
  }
}

.concepts__inner {
  margin: 0 auto;
  color: #0066cb;
  position: relative;
}

@media screen and (min-width: 768px) {
  .concepts__inner {
    width: 69.25rem;
  }
}

.concepts__title {
  color: #fff;
  background: #0066cb;
  position: relative;
  border-radius: 5.1785714286vw;
  display: block;
  font-size: 5.7142857143vw;
  top: -5.1785714286vw;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8928571429vw 8.2142857143vw;
}

@media screen and (min-width: 768px) {
  .concepts__title {
    border-radius: 1.875rem;
    font-size: 1.8125rem;
    top: -1.8125rem;
    padding: 0.625rem 1.5625rem 0.5rem;
  }
}

.concepts__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9375rem;
  border: 0.9375rem solid transparent;
  border-top: 1.25rem solid #0066cb;
}

.concepts__box {
  margin: 1.7857142857vw 18.3928571429vw 0;
  text-align: center;
  background: #fff;
  border: solid 0.8928571429vw #0066cb;
  border-radius: 3.5714285714vw;
  padding: 10vw 0 7.1428571429vw 3.2142857143vw;
}

@media screen and (min-width: 768px) {
  .concepts__box {
    margin: 0.75rem auto 0;
    border: solid 0.3125rem #0066cb;
    border-radius: 1.25rem;
    padding: 2.5rem 0 1.375rem;
  }
}

.concepts__list {
  display: inline-block;
  padding: 0;
}

.concept {
  font-size: 4.375vw;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: -2.3214285714vw;
  text-align: left;
  line-height: 1.1;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .concept {
    font-size: 1.96875rem;
    margin-top: -0.8125rem;
    line-height: 1.5;
  }
}

.concept+.concept {
  margin-top: 5.3571428571vw;
}

@media screen and (min-width: 768px) {
  .concept+.concept {
    margin-top: 0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .concept .sp {
    display: none;
  }
}

.concept-discovery img {
  width: 12.6785714286vw;
  margin-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .concept-discovery img {
    width: 4.4375rem;
    margin-bottom: 0.3125rem;
  }
}

.concept-revitalization .concept__title span {
  padding: 0 4.6428571429vw;
}

@media screen and (min-width: 768px) {
  .concept-revitalization .concept__title span {
    padding: 0 1.6875rem;
  }
}

.concept-revitalization img {
  width: 15.1785714286vw;
  margin-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .concept-revitalization img {
    width: 5.3125rem;
    margin-bottom: 0.3125rem;
  }
}

.concept-payment {
  padding-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .concept-payment {
    padding-bottom: 0.5rem;
  }
}

.concept-payment .concept__title {
  letter-spacing: 0;
}

.concept-payment img {
  width: 20.8928571429vw;
}

@media screen and (min-width: 768px) {
  .concept-payment img {
    width: 7.3125rem;
  }
}

.concept__description {
  font-size: 3.3928571429vw;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .concept__description {
    font-size: 1.1875rem;
  }
}

/* -- Change AW -- */

.footer .footer__title {
  background: #fff;
  color: #0066cb;
  /*  font-size: 1.8928571429vw;*/
  font-size: 2.2928571429vw;
  width: auto;
  padding: 0 9.4642857143vw;
  line-height: 1.9;
  position: relative;
  border-radius: 0.8928571429vw;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .footer .footer__title {
    padding: 0 3.3125rem;
    /*    font-size: 0.6625rem;*/
    font-size: 0.9625rem;
    border-radius: 0.3125rem;
  }
}

.footer .footer__address {
  margin-top: 1.7857142857vw;
  /*  font-size: 1.8928571429vw;*/
  font-size: 2.2928571429vw;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .footer .footer__address {
    margin-top: 0.625rem;
    /*    font-size: 0.6625rem;*/
    font-size: 0.9625rem;
  }
}

/* -- Add AW -- */
.footer .footer__address .l_font {
  margin-top: 1.7857142857vw;
  /*  font-size: 1.8928571429vw;*/
  font-size: 2.5928571429vw;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .footer .footer__address .l_font {
    margin-top: 0.625rem;
    /*    font-size: 0.6625rem;*/
    /*    font-size: 1.8625rem;*/
    font-size: 1.5em;
  }
}

/* -- Add AW -- */
@media screen and (min-width: 360px) {
  .footer .footer__address .l_font {
    margin-top: 0.625rem;
    /*    font-size: 0.6625rem;*/
    /*    font-size: 1.8625rem;*/
    font-size: 1.5em;
  }
}


.footer .footer__copyright {
  /*  font-size: 1.8928571429vw;*/
  font-size: 2.2928571429vw;
  letter-spacing: 0.1em;
  margin-top: 2.6785714286vw;
  display: block;
}

@media screen and (min-width: 768px) {
  .footer .footer__copyright {
    /*    font-size: 0.6625rem;*/
    font-size: 0.9625rem;
    margin-top: 0.9375rem;
  }
}


/* ーーーーーーーーーーーーーーーーーー加盟者様向け
ーーーーーーーーーーーーーーーーーーーーーーーー */
.shops {
  margin: 4.6875rem 0 0;
}

@media screen and (min-width: 768px) {
  .shops {
    margin: 6.5625rem 0 0;
  }
}

/** Add AW 
.shops .download_app {
  margin: 10.7vw 0 0;
  padding: 10.7vw 0 0;
}

@media screen and (min-width: 768px) {
  .shops .download_app {
    margin: 4rem 0 0;
    padding: 4rem 0 0;

  }
}
**/

.shops .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 9.2857142857vw;
}

@media (min-width: 1100px) {
  .shops .inner {
    width: 68.75rem;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .shops .inner {
    padding: 0 1.25rem;
  }
}

.shops .title_shadow {
  width: 39.4642857143vw;
  font-size: 2.3214285714vw;
  line-height: 3.125vw;
  box-shadow: 0.125rem 0.125rem 0 0.125rem #0066cb;
  border-radius: 0.5357142857vw;
}

@media screen and (min-width: 768px) {
  .shops .title_shadow {
    width: 32.8125rem;
    font-size: 2rem;
    margin-top: 0;
    box-shadow: 0.25rem 0.25rem 0 0.5rem #0066cb;
    border-radius: 0.5625rem 0.625rem;
  }
}

.shops .title_shadow span {
  box-shadow: 0 0 0 0.3571428571vw #0066cb;
  border-radius: 0.5357142857vw;
  display: block;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .shops .title_shadow span {
    box-shadow: 0 0 0 0.21875rem #0066cb;
    border-radius: 0.5625rem 0.625rem;
    letter-spacing: 0;
  }
}

.shops .under--line {
  text-decoration: underline;
}

.shops .blue-line__box {
  border: solid 0.8928571429vw #0066cb;
  background: #fff;
  border: solid 0.3571428571vw #0066cb;
  border-radius: 1.7857142857vw;
  padding: 4.1071428571vw 3.2142857143vw 6.7857142857vw 3.2142857143vw;
  margin-top: -1.7857142857vw;
  border-width: 0.3571428571vw;
}

@media screen and (min-width: 768px) {
  .shops .blue-line__box {
    border-radius: 1.25rem;
    border: solid 0.125rem #0066cb;
    padding: 3.1875rem 0 1.5rem 1.875rem;
    margin-top: -1.25rem;
  }
}

.shops .shops__title {
  color: #0066cb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9642857143vw;
  padding-top: 3.75vw;
  font-size: 4.1071428571vw;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .shops .shops__title {
    font-size: 2.5625rem;
    gap: 1.125rem;
    padding-top: 1.875rem;
  }
}

.shops .shops__title::before,
.shops .shops__title::after {
  content: "";
  background: url(../images/common/title_deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 9.2857142857vw;
  height: 2.6785714286vw;
}

@media screen and (min-width: 768px) {

  .shops .shops__title::before,
  .shops .shops__title::after {
    width: 5.8375rem;
    height: 1.625rem;
  }
}

.shops .bubble-box {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 3.5714285714vw;
  border: solid 4px #0066cb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3.5714285714vw auto 5.7142857143vw;
  width: 81.4285714286vw;
  padding: 3.5714285714vw 3.75vw 2.6785714286vw 2.8571428571vw;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box {
    border-radius: 1.25rem;
    margin: 1.25rem auto;
    width: 46.4375rem;
    padding: 1.25rem 4.875rem 0.25rem 4.375rem;
  }
}

.shops .bubble-box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5vw;
  margin-left: -1.9642857143vw;
  border: 2.1428571429vw solid transparent;
  border-top: 3.2142857143vw solid #fff;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box::before {
    bottom: -3rem;
    margin-left: -1.125rem;
    border: 1.25rem solid transparent;
    border-top: 1.875rem solid #fff;
  }
}

.shops .bubble-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6.7857142857vw;
  margin-left: -2.6785714286vw;
  border: 2.8571428571vw solid transparent;
  border-top: 3.9285714286vw solid #0066cb;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box::after {
    bottom: -3.75rem;
    margin-left: -1.375rem;
    border: 1.5rem solid transparent;
    border-top: 2.125rem solid #0066cb;
  }
}

.shops .bubble-box .text {
  color: #0066cb;
  font-size: 4.4642857143vw;
  font-weight: 800;
  text-align: center;
  line-height: 1.65;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box .text {
    font-size: 2.25rem;
  }
}

.shops .bubble-box .text span {
  font-size: 3.2142857143vw;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box .text span {
    font-size: 1.6875rem;
    display: block;
    padding-bottom: 0.625rem;
  }
}

.shops .bubble-box .nakapay_img {
  width: 15.8928571429vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .shops .bubble-box .nakapay_img {
    width: 7.125rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.shops .merchant__buttons {
  display: flex;
  flex-wrap: wrap;
  /*  justify-content: space-between;*/
  justify-content: center;
  margin: 0 6.25vw 6.25vw;
}

@media screen and (min-width: 768px) {
  .shops .merchant__buttons {
    margin: 3.75rem 0 0;
  }
}

.shops .merchant__buttons .button {
  width: 100%;
  margin-bottom: 6.6071428571vw;
  margin-left: 3.6071428571vw;
  margin-right: 3.6071428571vw;

  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .merchant__buttons .button {
    width: calc(33.3333333333% - 1.25rem);
    margin-bottom: 0;
  }
}

.shops .merchant__buttons .button-preparation {
  pointer-events: none;
}

.shops .merchant__buttons .button-preparation::before {
  content: "";
  background: url(../images/common/preparation.png) no-repeat;
  background-size: contain;
  height: 5.625vw;
  width: 20.5357142857vw;
  display: block;
  position: absolute;
  bottom: -3.3928571429vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .shops .merchant__buttons .button-preparation::before {
    width: 9.75rem;
    left: 10.8125rem;
    top: 5.3125rem;
    bottom: auto;
  }
}

.shops .merchant__fv {
  margin-top: 3.2142857143vw;
  padding: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv {
    margin-top: 1.4375rem;
    padding: 0 0 1.625rem;
  }
}

.shops .merchant__fv .inner {
  padding: 0 2.6785714286vw;
}

@media (min-width: 1100px) {
  .shops .merchant__fv .inner {
    width: 68.75rem;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .shops .merchant__fv .inner {
    padding: 0 1.25rem;
  }
}

.shops .merchant__fv .catch {
  background: #b3eaff;
  margin-top: -7.1428571429vw;
  padding: 7.1428571429vw 0 3.5714285714vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch {
    margin-top: 2.5rem;
    padding: 1.875rem 0 3.125rem;
  }
}

.shops .merchant__fv .catch .merchant__box {
  background: #fff;
  border-radius: 26.7857142857vw;
  padding: 4.4642857143vw;
  height: 53.5714285714vw;
  text-align: center;
  box-shadow: inset 0px 0px 7.1428571429vw 7.1428571429vw #b3eaff;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch .merchant__box {
    border-radius: 12.8125rem;
    padding: 6.25rem 1.25rem;
    height: 25rem;
    box-shadow: inset 0px 0px 1.875rem 2.5rem #b3eaff;
  }
}

.shops .merchant__fv .catch .merchant__box p {
  font-size: 4.2857142857vw;
  color: #323333;
  font-weight: 800;
  letter-spacing: 0.26em;
  margin-top: 6.4285714286vw;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch .merchant__box p {
    font-size: 2rem;
    margin-top: 0;
  }
}


/* Add AW 20240925 */
.shops .merchant__fv .catch2 {
  /*
  background: #b3eaff;
*/
  margin-top: -9.1428571429vw;
  padding: 0.1428571429vw 0 8.8714285714vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch2 {
    margin-top: 1.5rem;
    padding: 1.275rem 0 0.225rem;
  }
}

.shops .merchant__fv .catch2 .merchant__box {
  background: #fff;
  padding: 4.4642857143vw;
  height: 13.5714285714vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch2 .merchant__box {
    padding: 1.25rem 1.25rem;
    height: 5rem;
  }
}

.shops .merchant__fv .catch2 .merchant__box p {
  font-size: 2.2857142857vw;
  color: #323333;
  font-weight: 800;
  letter-spacing: 0.26em;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch2 .merchant__box p {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

/* ----- end ------*/

.shops .merchant__fv .catch .merchant__box .merchant__highlight--blue {
  font-size: 7.2321428571vw;
  color: #0066cb;
  letter-spacing: 0.18em;
  margin: 1.4285714286vw 0 0 5.3571428571vw;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch .merchant__box .merchant__highlight--blue {
    font-size: 3.75rem;
    margin: 0.625rem 0 0 3.125rem;
    letter-spacing: 0.35em;
  }
}

.shops .merchant__fv .catch .merchant__box .merchant__highlight--red {
  font-size: 4.9642857143vw;
  color: #ff0000;
  margin-top: -0.3571428571vw;
  letter-spacing: 0;
  margin-left: 3.2142857143vw;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch .merchant__box .merchant__highlight--red {
    font-size: 2.4375rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.shops .merchant__fv .catch .merchant__subtitle {
  background: #0066cb;
  color: #fff;
  text-align: center;
  border-radius: 0.8928571429vw;
  position: relative;
  margin: -8.9285714286vw auto 0;
  font-size: 4.1071428571vw;
  width: 59.1071428571vw;
  line-height: 9.0178571429vw;
  letter-spacing: 0.25em;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch .merchant__subtitle {
    border-radius: 0.625rem;
    font-size: 2rem;
    margin: -3.5rem auto 1.25rem;
    line-height: 4.375rem;
    width: 28.75rem;
  }
}

.shops .merchant__fv .catch::after {
  content: "";
  position: absolute;
  bottom: -3.3928571429vw;
  left: 50%;
  transform: translateX(-50%);
  border-width: 3.3928571429vw 2.3214285714vw 0 2.3214285714vw;
  border-style: solid;
  border-color: #b3eaff transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch::after {
    bottom: -1.25rem;
    border-width: 1.5625rem 1.25rem 0 1.25rem;
  }
}

.shops .merchant__fv .catch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-width: 3.3928571429vw 2.3214285714vw 0 2.3214285714vw;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .shops .merchant__fv .catch::before {
    border-width: 1.5625rem 1.25rem 0 1.25rem;
  }
}

.shops .content01 h4 {
  text-align: center;
  font-weight: 800;
  font-size: 2.2678571429vw;
  letter-spacing: 0.17em;
}

@media screen and (min-width: 768px) {
  .shops .content01 h4 {
    font-size: 1.9375rem;
  }
}

.shops .content01 dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25vw 2.5vw;
  margin: 3.5714285714vw 0 0 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .content01 dl {
    margin: 3.1875rem 0 0 1.875rem;
    gap: 1.0625rem 2rem;
  }
}

.shops .content01 dl dt,
.shops .content01 dl dd {
  font-weight: 700;
  font-size: 1.7857142857vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {

  .shops .content01 dl dt,
  .shops .content01 dl dd {
    font-size: 1.53125rem;
  }
}

.shops .content01 dl dt {
  background-color: #0066cb;
  color: #fff;
  line-height: 3.5vw;
  border-radius: 1.75vw;
  padding: 0;
  width: 15.1785714286vw;
  font-size: 1.7857142857vw;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .shops .content01 dl dt {
    width: 12.9375rem;
    line-height: 2.98125rem;
    border-radius: 1.490625rem;
    font-size: 1.53125rem;
    padding: 0 0.625rem;
  }
}

.shops .content01 dl dt span {
  font-size: 1.0714285714vw;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .shops .content01 dl dt span {
    font-size: 0.875rem;
  }
}

.shops .content01 dl dd {
  line-height: 3.5vw;
  font-size: 1.7857142857vw;
  font-weight: 800;
  letter-spacing: 0.24em;
}

@media screen and (min-width: 768px) {
  .shops .content01 dl dd {
    line-height: 2.98125rem;
    font-size: 1.5rem;
  }
}

.shops .buy-benefits {
  margin-top: 9.2857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .buy-benefits {
    margin-top: 3.75rem;
  }
}

.shops .buy-benefits .buy-benefits__content {
  padding-bottom: 4.4642857143vw;
}

@media screen and (min-width: 768px) {
  .shops .buy-benefits .buy-benefits__content {
    padding-bottom: 4.0625rem;
  }
}

.shops .campaign {
  margin-top: 8.5714285714vw;
}

@media screen and (min-width: 768px) {
  .shops .campaign {
    margin-top: 8.125rem;
  }
}

.shops .campaign .attention {
  font-size: 1.3928571429vw;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 1.25vw 0 0 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .campaign .attention {
    font-size: 1.1875rem;
    margin: 1.1875rem 0 0 2.125rem;
  }
}

.shops .campaign .blue-line__box {
  padding-bottom: 0.8928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .campaign .blue-line__box {
    padding-bottom: 1rem;
  }
}

.shops .project {
  margin-top: 8.5714285714vw;
}

@media screen and (min-width: 768px) {
  .shops .project {
    margin-top: 6.875rem;
  }
}

.shops .project .button-preparation {
  display: block;
  pointer-events: none;
  position: relative;
}

.shops .project .button-preparation::before {
  content: "";
  background: url(../images/common/preparation.png) no-repeat;
  background-size: contain;
  height: 5.3571428571vw;
  width: 19.4642857143vw;
  display: block;
  position: absolute;
  bottom: -1.4285714286vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .shops .project .button-preparation::before {
    width: 12.25rem;
    height: 3.375rem;
    top: 6.375rem;
  }
}

.shops .no-cost {
  margin-top: 8.2142857143vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost {
    margin-top: 7rem;
  }
}

.shops .no-cost .no-cost__title {
  width: 44.6428571429vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__title {
    width: 38.125rem;
  }
}

.shops .no-cost .no-cost__content {
  text-align: center;
  font-weight: 800;
  padding: 3.5714285714vw 6.6071428571vw 4.2857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content {
    padding: 2.8125rem 5.625rem 3.9375rem;
  }
}

.shops .no-cost .no-cost__content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.shops .no-cost .no-cost__content ul li {
  position: relative;
  display: inline-block;
  font-size: 1.7857142857vw;
  margin-bottom: 0;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content ul li {
    font-size: 1.5rem;
  }
}

.shops .no-cost .no-cost__content ul li::before {
  content: "〇";
  font-size: 2.2857142857vw;
  display: inline-block;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content ul li::before {
    font-size: 1.9375rem;
  }
}

.shops .no-cost .no-cost__content ul li strong {
  font-size: 2.2857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content ul li strong {
    font-size: 1.9375rem;
  }
}

.shops .no-cost .no-cost__content ul li .highlight--red {
  color: #ff0000;
}

.shops .no-cost .no-cost__content ul li .comment {
  font-size: 1.3928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content ul li .comment {
    font-size: 1.1875rem;
  }
}

.shops .no-cost .no-cost__content .no-cost__use {
  background-color: #f5f7ff;
  border-radius: 2.6785714286vw;
  padding: 2.3214285714vw 1.7857142857vw 0.3571428571vw;
  margin-top: 2.6785714286vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content .no-cost__use {
    border-radius: 0.9375rem;
    margin-top: 1.875rem;
    padding: 2.0625rem 0 0.9375rem;
  }
}

.shops .no-cost .no-cost__content .no-cost__use p {
  font-size: 1.7857142857vw;
  margin-bottom: 1.7857142857vw;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content .no-cost__use p {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
}

.shops .no-cost .no-cost__content .no-cost__use p .comment {
  font-size: 1.3928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content .no-cost__use p .comment {
    font-size: 1.1875rem;
  }
}

.shops .no-cost .no-cost__content .no-cost__use img {
  margin: 2.1428571429vw auto 1.4285714286vw;
  width: 31.0714285714vw;
}

@media screen and (min-width: 768px) {
  .shops .no-cost .no-cost__content .no-cost__use img {
    margin: 1.875rem auto 1.25rem;
    width: 26.5625rem;
  }
}

.shops .registration {
  margin-top: 8.3928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .registration {
    margin-top: 6.375rem;
  }
}

.shops .registration .registration__text {
  padding: 4.4642857143vw 6.25vw 5.1785714286vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text {
    padding: 3.5rem 5.625rem 3.9375rem;
  }
}

.shops .registration .registration__text .registration__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 6.25vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps {
    gap: 4.375rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step {
  display: flex;
  align-items: center;
  background-color: #f5f7ff;
  border-radius: 2.6785714286vw;
  position: relative;
  padding: 0.8928571429vw 0 0.8928571429vw 2.6785714286vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step {
    border-radius: 0.9375rem;
    padding: 1.25rem 0 1.25rem 1.875rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step::after {
  content: "";
  position: absolute;
  bottom: -3.75vw;
  left: 50%;
  transform: translateX(-50%);
  border-width: 2.2321428571vw 1.5178571429vw 0 1.5178571429vw;
  border-style: solid;
  border-color: #00a8ea transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step::after {
    bottom: -2.8125rem;
    border-width: 1.875rem 1.3125rem 0 1.3125rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step:last-child::after {
  content: none;
}

.shops .registration .registration__text .registration__steps .registration__step::before {
  content: counter(step);
  counter-increment: step;
  background-color: #0066cb;
  color: #fff;
  font-size: 1.7857142857vw;
  font-weight: 800;
  width: 3.5vw;
  height: 3.5vw;
  line-height: 3.5vw;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step::before {
    font-size: 1.5rem;
    width: 2.98125rem;
    height: 2.98125rem;
    line-height: 2.98125rem;
    margin-right: 1.25rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step .registration__step-title {
  flex: 1;
  text-align: left;
  font-weight: 800;
  font-size: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step .registration__step-title {
    font-size: 1.5rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step .registration__step-title .registration__button-image {
  display: block;
  margin: 0.8928571429vw 0;
  width: 18.0357142857vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step .registration__step-title .registration__button-image {
    width: 15.3125rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step .payment__step-image-container {
  flex: 0 0 25vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step .payment__step-image-container {
    flex: 0 0 21.875rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step .payment__step-image-container .payment__step-image {
  max-width: 100%;
  height: auto;
}

.shops .registration .registration__text .registration__steps .registration__step:nth-of-type(1) .registration__step-image {
  width: 7.4821428571vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step:nth-of-type(1) .registration__step-image {
    width: 6.375rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step:nth-of-type(2) .registration__step-image {
  width: 16.5357142857vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step:nth-of-type(2) .registration__step-image {
    width: 14.0625rem;
  }
}

.shops .registration .registration__text .registration__steps .registration__step:nth-of-type(3) .registration__step-image {
  width: 11.7142857143vw;
}

@media screen and (min-width: 768px) {
  .shops .registration .registration__text .registration__steps .registration__step:nth-of-type(3) .registration__step-image {
    width: 10rem;
  }
}

/* Add AW */

.shops .registration2 {
  margin-top: 8.3928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .registration2 {
    margin-top: 6.375rem;
  }
}

.shops .registration2 .registration__text {
  padding: 4.4642857143vw 6.25vw 5.1785714286vw;
}

@media screen and (min-width: 768px) {
  .shops .registration2 .registration__text {
    padding: 3.5rem 5.625rem 3.9375rem;
  }
}

.shops .registration2 .catch2 {
  padding: 0.1428571429vw 0 2.8714285714vw;

  /*
  margin-top: -9.1428571429vw;
  padding: 0.1428571429vw 0 8.8714285714vw;
*/
  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .registration2 .catch2 {
    margin-top: 0.2rem;
    /*
    padding: 1.275rem 0 0.225rem;
*/
    padding: 1.275rem 0.225rem;

  }
}

.shops .registration2 .catch2 .merchant__box {
  background: #FFF;
  width: 100%;

  /*
  padding: 4.4642857143vw;
  height: 13.5714285714vw;
*/
  /*
    margin-top: 1.0rem;
  padding: 4.4642857143vw;
*/
  height: 5.5714285714vw;

  text-align: center;
}

@media screen and (min-width: 768px) {
  .shops .registration2 .catch2 .merchant__box {
    /*
    padding: 1.25rem 1.25rem;
*/
    margin: 0rem;
    /*
    padding: 0.275rem 10.225rem;
*/
    height: 5rem;
  }
}

.shops .registration2 .catch2 .merchant__box p {
  font-size: 1.7857142857vw;
  color: #323333;
  font-weight: 800;

  /*
  letter-spacing: 0.26em;
*/

}

@media screen and (min-width: 768px) {
  .shops .registration2 .catch2 .merchant__box p {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

/* ボタン */
.shops .registration2 .buttons {
  /*
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 6.25vw 6.25vw;
*/
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  /*
    height: 200px;
*/

}

@media screen and (min-width: 768px) {
  .shops .registration2 .buttons {
    margin: 0.75rem 0 0;
    width: 100%;

    /*
    margin: 3.75rem 0 0;
*/
  }
}

.shops .registration2 .buttons .button {
  /*
  margin-bottom: 6.6071428571vw;
*/
  margin-bottom: 0.6071428571vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .shops .registration2 .buttons .button {
    /*
    width: calc(33.3333333333% - 1.25rem);
*/
    width: 60%;

    margin-bottom: 0;
  }
}

.shops .registration2 .buttons .button-preparation {
  pointer-events: none;
}

.shops .registration2 .buttons .button-preparation::before {
  content: "";
  background: url(../images/common/preparation.png) no-repeat;
  background-size: contain;
  height: 5.625vw;
  width: 20.5357142857vw;
  display: block;
  position: absolute;
  bottom: -3.3928571429vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .shops .registration2 .buttons .button-preparation::before {
    width: 9.75rem;
    left: 10.8125rem;
    top: 5.3125rem;
    bottom: auto;
  }
}


/* ---------- */




.shops .payment {
  margin-top: 8.2142857143vw;
}

@media screen and (min-width: 768px) {
  .shops .payment {
    margin-top: 5.9375rem;
  }
}

.shops .payment .payment__text {
  margin-top: -3.2142857143vw;
  padding: 6.0714285714vw 6.6071428571vw 5.8928571429vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text {
    padding: 4.875rem 5.625rem 3.9375rem;
    margin-top: -2.625rem;
  }
}

.shops .payment .payment__text .payment__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 6.25vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps {
    gap: 4.375rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step {
  display: flex;
  align-items: center;
  background-color: #f5f7ff;
  border-radius: 2.6785714286vw;
  position: relative;
  padding: 0.8928571429vw 0 0.8928571429vw 2.6785714286vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step {
    border-radius: 0.9375rem;
    padding: 1.25rem 0 1.25rem 1.875rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step::after {
  content: "";
  position: absolute;
  bottom: -3.75vw;
  left: 50%;
  transform: translateX(-50%);
  border-width: 2.2321428571vw 1.5178571429vw 0 1.5178571429vw;
  border-style: solid;
  border-color: #00a8ea transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step::after {
    bottom: -2.8125rem;
    border-width: 1.875rem 1.3125rem 0 1.3125rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step:last-child::after {
  content: none;
}

.shops .payment .payment__text .payment__steps .payment__step::before {
  content: counter(step);
  counter-increment: step;
  background-color: #0066cb;
  color: #fff;
  font-size: 1.7857142857vw;
  font-weight: 800;
  width: 3.5vw;
  height: 3.5vw;
  line-height: 3.5vw;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step::before {
    font-size: 1.5rem;
    width: 2.98125rem;
    height: 2.98125rem;
    line-height: 2.98125rem;
    margin-right: 1.25rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step .payment__step-title {
  flex: 1;
  text-align: left;
  font-weight: 800;
  font-size: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step .payment__step-title {
    font-size: 1.5rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step .payment__step-title strong {
  color: #ff0000;
}

.shops .payment .payment__text .payment__steps .payment__step .payment__step-image-container {
  flex: 0 0 25vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step .payment__step-image-container {
    flex: 0 0 21.875rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step .payment__step-image-container .payment__step-image {
  max-width: 100%;
  height: auto;
}

.shops .payment .payment__text .payment__steps .payment__step:nth-of-type(1) .payment__step-image {
  width: 7.6785714286vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step:nth-of-type(1) .payment__step-image {
    width: 6.5625rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step:nth-of-type(2) .payment__step-image {
  width: 6.6071428571vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step:nth-of-type(2) .payment__step-image {
    width: 5.6875rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step:nth-of-type(3) .payment__step-image {
  width: 13.3035714286vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step:nth-of-type(3) .payment__step-image {
    width: 11.3125rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step:nth-of-type(4) .payment__step-image {
  width: 11.25vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step:nth-of-type(4) .payment__step-image {
    width: 9.5625rem;
  }
}

.shops .payment .payment__text .payment__steps .payment__step:nth-of-type(5) .payment__step-image {
  width: 8.75vw;
}

@media screen and (min-width: 768px) {
  .shops .payment .payment__text .payment__steps .payment__step:nth-of-type(5) .payment__step-image {
    width: 7.5rem;
  }
}

.shops .over_footer {
  margin: 7.8571428571vw 0 1.25vw;
}

@media screen and (min-width: 768px) {
  .shops .over_footer {
    margin: 8.125rem 0 7.8125rem;
  }
}



/* ーーーーーーーーーーーーーーーーーー令和６年度実施事業
ーーーーーーーーーーーーーーーーーーーーーーーー */
.campaign_page {
  margin: 4.6875rem 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_page {
    margin: 6.5625rem 0 0;
  }
}

.campaign_page .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 10vw;
}

@media (min-width: 1100px) {
  .campaign_page .inner {
    width: 70.4rem;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .campaign_page .inner {
    padding: 0;
  }
}

.campaign_page .campaign_mv {
  width: 100%;
  margin: 3.5vw 0 0;
  padding: 2vw 0 2.2vw;
  background: #b3eaff;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign_mv {
    margin: 2.2rem 0 0;
    padding: 2.95rem 0 1.8rem;
  }
}

.campaign_page .campaign_mv img {
  max-width: 1243.5px;
  width: 83.6%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {

  .campaign_page .campaign_mv img {}
}

.campaign_page .campaign__title {
  color: #0066cb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9642857143vw;
  padding-top: 8vw;
  font-size: 4.1071428571vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign__title {
    font-size: 2.4rem;
    gap: 1.125rem;
    padding-top: 2.75rem;
  }
}

.campaign_page .campaign__title::before,
.campaign_page .campaign__title::after {
  content: "";
  background: url(../images/common/title_deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 9.2857142857vw;
  height: 2.6785714286vw;
}

@media screen and (min-width: 768px) {

  .campaign_page .campaign__title::before,
  .campaign_page .campaign__title::after {
    width: 5.8375rem;
    height: 1.625rem;
  }
}

.campaign_page .title_shadow {
  width: calc(100% - 2.85vw);
  line-height: 3.125vw;
  margin: 0 0 0 2vw;
  box-shadow: 0.5vw 0.5vw 0 0.5vw #0066cb;
  border-radius: 0.5357142857vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .title_shadow {
    width: calc(100% - 17rem);
    margin: 0 0 0 16.25rem;
    box-shadow: 0.25rem 0.25rem 0 0.5rem #0066cb;
    border-radius: 0.625rem 0.625rem;
  }
}

.campaign_page .title_shadow h3 {
  box-shadow: 0 0 0 0.3571428571vw #0066cb;
  border-radius: 0.5357142857vw;
  display: flex;
  /* AW */
  /*  font-size: 3vw;*/
  font-size: 2.5vw;
  letter-spacing: 0.1em;
  padding: 1vw 0 0.6vw 24vw;
}

.campaign_page .title_shadow h3 span {
  box-shadow: none;
  color: #faed00;
  background: #0066cb;
  border-radius: 9999px;
  font-size: 4vw;
  position: absolute;
  left: -2.25vw;
  top: -0.25vw;
  padding: 1.35vw 4.5vw 1.3vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .campaign_page .title_shadow h3 {
    box-shadow: 0 0 0 0.21875rem #0066cb;
    border-radius: 0.5625rem 0.625rem;
    letter-spacing: 0;
    padding: 1rem 0 0.6rem 6rem;
    /* AW */
    /*    font-size: 3rem;*/
    font-size: 2.6rem;
  }

  .campaign_page .title_shadow h3 span {
    font-size: 3.5rem;
    left: -16.5rem;
    top: -0.25rem;
    padding: 1.3rem 4rem 1.3rem;
  }
}

.campaign_page .under--line {
  text-decoration: underline;
}

.campaign_page .blue-line__box {
  background: #fff;
  border: solid 0.3571428571vw #0066cb;
  border-radius: 1.7857142857vw;
  padding: 3.6vw 3.2142857143vw 6.7857142857vw 3.2142857143vw;
  margin-top: -1.7857142857vw;
  border-width: 0.3571428571vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .blue-line__box {
    border-radius: 1.25rem;
    border: solid 0.125rem #0066cb;
    padding: 4.3rem 0 1.5rem 1.875rem;
    margin-top: -2.25rem;
  }
}

.campaign_page .merchant__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 9vw 0.25vw 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__buttons {
    margin: 3.75rem 3rem 0;
  }
}

.campaign_page .merchant__buttons .button {
  width: 100%;
  margin-bottom: 6.6071428571vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__buttons .button {
    width: calc(50% - 1.25rem);
    margin-bottom: 0;
  }
}

.campaign_page .merchant__buttons .button-preparation {
  pointer-events: none;
  margin-bottom: 4.5vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__buttons .button-preparation {
    pointer-events: none;
    margin-bottom: 0;
  }
}

.campaign_page .merchant__buttons .button-preparation::before {
  content: "";
  background: url(../images/common/preparation.png) no-repeat;
  background-size: contain;
  height: 7.5vw;
  width: 25.5vw;
  display: block;
  position: absolute;
  bottom: -2.392857vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__buttons .button-preparation::before {
    height: 5.625vw;
    width: 9.75rem;
    left: 43%;
    top: 4.3125rem;
    bottom: auto;
  }
}

/* 追加 20240919 */
/* -- Add AW -- */

.campaign_page .merchant__buttons .button h4 {
  text-align: center;
  font-weight: 800;
  font-size: 1.9678571429vw;
  letter-spacing: 0.17em;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__buttons .button h4 {
    font-size: 0.9375rem;
  }
}

/* --------- */

.campaign_page .merchant__fv {
  margin-top: 3.2142857143vw;
  padding: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv {
    margin-top: 1.4375rem;
    padding: 0;
  }
}

.campaign_page .merchant__fv .inner {
  padding: 0 2.6785714286vw;
}

@media (min-width: 1100px) {
  .campaign_page .merchant__fv .inner {
    width: 68.75rem;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .campaign_page .merchant__fv .inner {
    padding: 0 1.25rem;
  }
}

.campaign_page .merchant__fv .catch {
  background: #b3eaff;
  margin-top: -7.1428571429vw;
  padding: 7.1428571429vw 0 3.5714285714vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch {
    margin-top: 2.5rem;
    padding: 1.875rem 0 3.125rem;
  }
}

.campaign_page .merchant__fv .catch .merchant__box {
  background: #fff;
  border-radius: 26.7857142857vw;
  padding: 4.4642857143vw;
  height: 53.5714285714vw;
  text-align: center;
  box-shadow: inset 0px 0px 7.1428571429vw 7.1428571429vw #b3eaff;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch .merchant__box {
    border-radius: 12.8125rem;
    padding: 6.25rem 1.25rem;
    height: 25rem;
    box-shadow: inset 0px 0px 1.875rem 2.5rem #b3eaff;
  }
}

.campaign_page .merchant__fv .catch .merchant__box p {
  font-size: 4.2857142857vw;
  color: #323333;
  font-weight: 800;
  letter-spacing: 0.26em;
  margin-top: 6.4285714286vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch .merchant__box p {
    font-size: 2rem;
    margin-top: 0;
  }
}

.campaign_page .merchant__fv .catch .merchant__box .merchant__highlight--blue {
  font-size: 7.2321428571vw;
  color: #0066cb;
  letter-spacing: 0.18em;
  margin: 1.4285714286vw 0 0 5.3571428571vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch .merchant__box .merchant__highlight--blue {
    font-size: 3.75rem;
    margin: 0.625rem 0 0 3.125rem;
    letter-spacing: 0.35em;
  }
}

.campaign_page .merchant__fv .catch .merchant__box .merchant__highlight--red {
  font-size: 4.9642857143vw;
  color: #ff0000;
  margin-top: -0.3571428571vw;
  letter-spacing: 0;
  margin-left: 3.2142857143vw;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch .merchant__box .merchant__highlight--red {
    font-size: 2.4375rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.campaign_page .merchant__fv .catch .merchant__subtitle {
  background: #0066cb;
  color: #fff;
  text-align: center;
  border-radius: 0.8928571429vw;
  position: relative;
  margin: -8.9285714286vw auto 0;
  font-size: 4.1071428571vw;
  width: 59.1071428571vw;
  line-height: 9.0178571429vw;
  letter-spacing: 0.25em;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch .merchant__subtitle {
    border-radius: 0.625rem;
    font-size: 2rem;
    margin: -3.5rem auto 1.25rem;
    line-height: 4.375rem;
    width: 28.75rem;
  }
}

.campaign_page .merchant__fv .catch::after {
  content: "";
  position: absolute;
  bottom: -3.3928571429vw;
  left: 50%;
  transform: translateX(-50%);
  border-width: 3.3928571429vw 2.3214285714vw 0 2.3214285714vw;
  border-style: solid;
  border-color: #b3eaff transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch::after {
    bottom: -1.25rem;
    border-width: 1.5625rem 1.25rem 0 1.25rem;
  }
}

.campaign_page .merchant__fv .catch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-width: 3.3928571429vw 2.3214285714vw 0 2.3214285714vw;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .campaign_page .merchant__fv .catch::before {
    border-width: 1.5625rem 1.25rem 0 1.25rem;
  }
}

.campaign_page .campaign__catch {
  margin-left: 1.7vw;
}

@media screen and (min-width: 768px) {

  .campaign_page .campaign__catch {
    margin-left: 2.3rem;
  }
}

.campaign_page .content01 h4 {
  text-align: center;
  font-weight: 800;
  font-size: 2.7vw;
  letter-spacing: 0.015em;
  color: #0066cb;
  display: inline;
  background: linear-gradient(transparent 90%, #faed00 90%);
  line-height: 1.8;
}

.campaign_page .content01 h4 span {
  font-size: 3vw;
  color: #e50012;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 h4 {
    font-size: 2.3rem;
    letter-spacing: 0.08em;
  }

  .campaign_page .content01 h4 span {
    font-size: 2.6rem;
    letter-spacing: 0.08em;
  }
}

.campaign_page .content01 dl {}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl {}
}

.campaign_page .content01 dl dt,
.campaign_page .content01 dl dd {
  font-weight: 700;
  font-size: 1.7857142857vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {

  .campaign_page .content01 dl dt,
  .campaign_page .content01 dl dd {
    font-size: 1.53125rem;
    letter-spacing: 0.1em;
  }
}

.campaign_page .content01 dl dt {
  background-color: #0066cb;
  color: #fff;
  /*  line-height: 3.5vw;*/
  line-height: 3.5vw;
  border-radius: 9999px;
  padding: 0;
  width: 15.6vw;
  font-size: 1.5vw;
  text-align: center;
  height: fit-content;
  font-weight: 600;
  box-shadow: 0.2vw 0.2vw 0 0.01vw #888988;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl dt {
    width: 14.2rem;
    /*    line-height: 2.98125rem;*/
    line-height: 2.98125rem;
    font-size: 1.5rem;
    padding: 0 0.625rem;
    box-shadow: 0.2rem 0.2rem 0 0.01rem #888988;
  }
}

.campaign_page .content01 dl dt span {
  font-size: 1.0714285714vw;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl dt span {
    font-size: 0.875rem;
  }
}

.campaign_page .content01 dl dd {
  line-height: 1.4;
  /*  font-size: 2.1vw;*/
  font-size: 1.5vw;
  font-weight: 800;
  letter-spacing: -0.07em;
  margin: 1.5vw 0 1vw 2.7vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl dd {
    /*    font-size: 1.65rem;*/
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    margin: 1.6rem 0 1rem 2.7rem;
  }
}

.campaign_page .content01 dl dd ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.campaign_page .content01 dl dd ol li {
  /*  line-height: 1.25;*/
  line-height: 1.25;
  padding-left: 2vw;
  position: relative;
}

.campaign_page .content01 dl dd ol>li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #231815;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2vw;
  width: 2vw;
  color: #ffffff;
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: 0.3vw;
  left: 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl dd ol {}

  .campaign_page .content01 dl dd ol li {
    padding-left: 2rem;
    /*    line-height: 1.4;*/
    line-height: 1.4;
  }

  .campaign_page .content01 dl dd ol li::before {
    height: 1.7rem;
    width: 1.7rem;
    top: 0.3rem;
  }
}

.campaign_page .content01 dl dd.period {
  font-size: 2.1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 dl dd.period {
    font-size: 1.8rem;
  }
}

.campaign_page .campaign {
  margin-top: 3.5vw;
  background: #B3EAFF;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign {
    margin-top: 2.65rem;
    padding: 0.5rem 0 0;
  }
}

.campaign_page .campaign .inner {
  width: 100%;
  padding: 0 7vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .inner {
    max-width: 80.6rem;
    padding: 0 1.8rem;
  }
}

.campaign_page .campaign .color_yellow {
  color: #FAED00;
}

.campaign_page .campaign .premium30 {
  width: 89%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .premium30 {
    max-width: 1073px;
    width: 67.0625rem;
    margin-left: auto;
  }
}

.campaign_page .campaign .campaign_text01 {
  color: #0066cb;
  font-size: 2.8vw;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  margin-top: 2.1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign_text01 {
    font-size: 2.5rem;
    line-height: 1;
    margin-top: 2.1rem;
  }
}

.campaign_page .campaign .campaign_text01 span {
  font-size: 3.7vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign_text01 span {
    font-size: 3.5rem;
  }
}

.campaign_page .campaign .campaign_text02 {
  color: #0066cb;
  font-size: 2.8vw;
  font-weight: 800;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign_text02 {
    font-size: 2.23rem;
  }
}

/* ADD AW */

.campaign_page .no_back {
  color: #ff0000;
  /*  background: #FFFFFF;*/
  font-size: 0.6vw;
  font-weight: 100;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 1em auto;
  /*  margin: 3.85vw auto 0;*/
  width: 95.6%;
  /*
padding-top: 50px;
*/
}

@media screen and (min-width: 768px) {
  .campaign_page .no_back {
    font-size: 0.23rem;
    margin-top: 0.85rem;
    width: 95.6%;
  }
}

.campaign_page .white_back {
  color: #ff0000;
  background: #FFFFFF;
  /*  font-size: 2.6vw;*/
  font-size: 3.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 1px auto;
  /*  margin: 3.85vw auto 0;*/
  width: 95.6%;
  /*
padding-top: 50px;
*/
}

@media screen and (min-width: 768px) {
  .campaign_page .white_back {
    font-size: 3.23rem;
    margin-top: 0.85rem;
    width: 95.6%;
  }
}


.campaign_page .yellow_back {
  color: #0066cb;
  background: #FAED00;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 3.85vw auto 0;
  width: 95.6%;
}

@media screen and (min-width: 768px) {
  .campaign_page .yellow_back {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    width: 95.6%;
  }
}


.campaign_page .yellow_back2 {
  color: #ff0000;
  background-image: url(../images/common/img_11-text.png);  
/*  background: #FAED00;*/
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
vertical-align: middle;
 padding: 10px 20px;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 3.85vw auto 0;
  width: 90.%;
}

@media screen and (min-width: 768px) {
  .campaign_page .yellow_back2 {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    width: 95.6%;
  }
}



/* -----↓ tsuika1103 ↓------*/
.campaign_page .yellow_back3 {
  color: #ff0000;
  background-image: url(../images/common/img_11-text2.png);  
/*  background: #FAED00;*/
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
vertical-align: middle;
 padding: 10px 20px;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 0.85vw auto 0;
  width: 90.%;
}

@media screen and (min-width: 768px) {
  .campaign_page .yellow_back3 {
    font-size: 2.23rem;
    margin-top: 0.85rem;
    width: 95.6%;
  }
}
/* -----↑ tsuika1103 ↑------*/


.campaign_page .pink_back3 {
  color: #fff;
  background-image: url(../images/common/img_11-text3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 0.85vw auto 0;
  width: 90%;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);

}

@media screen and (min-width: 768px) {
  .campaign_page .pink_back3 {
    font-size: 2.23rem;
    margin-top: 0.85rem;
    width: 95.6%;
  }
}


.campaign_page .campaign .yellow_back {
  margin: 3.85vw auto 0;
  width: 87.6%;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .yellow_back {
    margin-top: 3.85rem;
  }
}

.campaign_page .white_back {
  color: #ff0000;
  background: #FFFFFF;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 2em auto;
  /*  margin: 3.85vw auto 0;*/
  padding: 5px;
  width: 95.6%;
  /*
padding-top: 50px;
*/
}

@media screen and (min-width: 768px) {
  .campaign_page .white_back {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    padding: 10px;

    width: 95.6%;
  }
}

.campaign_page .yellow_back {
  color: #0066cb;
  background: #FAED00;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 3.85vw auto 0;
  width: 95.6%;
}

@media screen and (min-width: 768px) {
  .campaign_page .yellow_back {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    width: 95.6%;
  }
}

.campaign_page .blue_back {
  color: #ffdc00;
  background: #1e50a2;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 3.85vw auto 0;
  width: 95.6%;
}

@media screen and (min-width: 768px) {
  .campaign_page .blue_back {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    width: 95.6%;
  }
}

.campaign_page .campaign .yellow_back {
  margin: 3.85vw auto 0;
  width: 87.6%;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .yellow_back {
    margin-top: 3.85rem;
  }
}

.campaign_page .pink_back {
  color: #fff3a0;
  background-image: url(../images/common/img_11-text4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: 2.6vw;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
  border-radius: 10px/5px;
  margin: 3.85vw auto 0;
  width: 95.6%;
  padding: 10px 20px;

  -webkit-text-stroke: 1.5px #c4006a;
  paint-order: stroke fill;

  text-shadow:
    1.3px 1.3px 0 #c4006a,
   -1.3px 1.3px 0 #c4006a,
    1.3px -1.3px 0 #c4006a,
   -1.3px -1.3px 0 #c4006a;
}

@media screen and (min-width: 768px) {
  .campaign_page .pink_back {
    font-size: 2.23rem;
    margin-top: 3.85rem;
    width: 95.6%;
  }
}

.campaign_page .campaign .yellow_back .campaign_winner {
  background: #0066cb;
  font-size: 1.8vw;
  font-weight: 600;
  text-align: center;
  display: block;
  position: absolute;
  border-radius: 9999px;
  transform: rotate(5deg);
  right: -6.1vw;
  top: -2.3vw;
  padding: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .yellow_back .campaign_winner {
    font-size: 1.5rem;
    right: -2rem;
    top: -3rem;
    padding: 0.34rem 0.7rem;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_page .campaign .yellow_back .campaign_winner {
    right: -5.1rem;
    top: -2.05rem;
  }
}

.campaign_page .campaign .yellow_back .campaign_winner .winner_7777 {
  font-size: 2.2vw;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .yellow_back .campaign_winner .winner_7777 {
    font-size: 2.23rem;
  }
}

.campaign_page .campaign .campaign_term-add {
  color: #ff0000;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 1.9vw;
}


.campaign_page .campaign .campaign_term {
  color: #0066cb;
  display: flex;
  align-items: center;
  margin-top: 1.9vw;
}

.campaign_page .campaign .campaign_term .campaign_term_title {

/*  box-shadow: 0.2vw 0.2vw 0 0.5vw #0066cb;*/

  box-shadow: none;

  border-radius: 0.5357142857vw;
  padding: 0 2.5vw;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
  background: #fff;
  font-weight: 800;
  font-size: 2.4vw;
  margin-right: 1.8vw;
}

.campaign_page .campaign .campaign_term .campaign_term_date {
  font-size: 2.9vw;
  font-weight: 800;
  background: linear-gradient(transparent 70%, #faed00 70%);
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign_term {
    margin-top: 1.2rem;
  }

  .campaign_page .campaign .campaign_term .campaign_term_title {

/*    box-shadow: 0.2rem 0.2rem 0 0.5rem #0066cb;*/
    box-shadow: none;

    border-radius: 0.2rem 0.2rem;
    padding: 0 2.7rem;
    font-size: 1.6rem;
    margin-right: 1.8rem;
  }

  .campaign_page .campaign .campaign_term .campaign_term_date {
    font-size: 2.2rem;
    padding: 0 0.8rem 0 1rem;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_page .campaign .campaign_term .campaign_term_title {
    font-size: 2rem;
    padding: 0 2.7rem;
  }

  .campaign_page .campaign .campaign_term .campaign_term_date {
    font-size: 2.6rem;
    padding: 0 1rem 0 1.2rem;
  }

}

.campaign_page .campaign .campaign__content {
  padding: 1.4vw 1.7vw 0;
  margin: 2.1vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign__content {
    padding: 1.5rem 1.5rem 0 1.5rem;
    margin-top: 2rem;
  }
}

.campaign_page .campaign .campaign__content .entry_image {
  position: absolute;
  top: 0.5vw;
  right: 2.4vw;
  width: 31.69vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .campaign .campaign__content .entry_image {
    width: 32%;
    right: 1%;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_page .campaign .campaign__content .entry_image {
    max-width: 27.96875rem;
    width: 37%;
    top: 0.5rem;
    right: 3.4rem;
  }
}


.campaign_page .content01 .campaign_more {
  background: #0066cb;
  text-align: center;
  color: #fff;
  font-size: 1.9vw;
  line-height: 1.4;
  padding: 1vw 0 1.6vw;
  margin-top: 2.4vw;
  letter-spacing: 0.1em;
}


.campaign_page .content01 .campaign_more .color_yellow {
  font-size: 2vw;
  font-weight: 600;
}

.campaign_page .content01 .campaign_more .point_1000 {
  font-size: 3vw;
  letter-spacing: 0.1em;
  font-weight: 800;
}

@media screen and (min-width: 768px) {
  .campaign_page .content01 .campaign_more {
    margin-top: 2.45rem;
    font-size: 1.9rem;
    padding: 1rem 0 1.6rem;
    line-height: 1.14;
  }

  .campaign_page .content01 .campaign_more .color_yellow {
    font-size: 2rem;
  }

  .campaign_page .content01 .campaign_more .point_1000 {
    font-size: 3.2rem;
  }
}


.campaign_page .content01 .campaign_more span {}

.campaign_page .download_app {
  margin: 4.6vw 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app {
    margin: 2.5rem 0 0;
  }
}

.campaign_page .download_app h3 {
  margin: 3.7vw 9vw 0;
  background: #0066cb;
  color: #fff;
  font-size: 1.8vw;
  text-align: center;
  padding: 0.8vw 0;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app h3 {
    margin: 2.5rem 7.4rem 0;
    font-size: 1.6rem;
    padding: 0.8rem 0 0.7rem;
    letter-spacing: 0.1em;
  }
}

.campaign_page .download_app h3 span {
  font-size: 2.8vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app h3 span {
    font-size: 2.2rem;
  }
}

.campaign_page .download_app .blue-line__box {
  margin-top: 0.3vw;
  padding: 2.3vw 1.875vw 0.5vw 1.875vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app .blue-line__box {
    margin-top: 0.3rem;
    padding: 2.8rem 1.875rem 1rem 1.875rem;
  }
}

.campaign_page .download_app .blue-line__box ul {
  display: flex;
  justify-content: space-between;
}

.campaign_page .download_app .blue-line__box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app .blue-line__box ul li {
    gap: 2rem;
  }
}

.campaign_page .download_app .blue-line__box ul li img {
  height: auto;
}

.campaign_page .download_app .blue-line__box ul li .btn_app {
  width: 20vw;
}

.campaign_page .download_app .blue-line__box ul li .iphone_qrcode {
  width: 12vw;
}

.campaign_page .download_app .blue-line__box ul li .btn_googleplay {
  width: 24.5vw;
}

.campaign_page .download_app .blue-line__box ul li .android_qrcode {
  width: 12vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app .blue-line__box ul li .btn_app {
    width: 17.86109375rem;
  }

  .campaign_page .download_app .blue-line__box ul li .iphone_qrcode {
    width: 9.9375rem;
  }

  .campaign_page .download_app .blue-line__box ul li .btn_googleplay {
    width: 21.9837625rem;
  }

  .campaign_page .download_app .blue-line__box ul li .android_qrcode {
    width: 9.9875rem;
  }
}

<!--Add -->
.campaign_page .download_app2 {
  margin: 4.6vw 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 {
    margin: 2.5rem 0 0;
  }
}

.campaign_page .download_app2 h3 {
  margin: 3.7vw 9vw 0;
  background: #0066cb;
  color: #fff;
  font-size: 1.8vw;
  text-align: center;
  padding: 0.8vw 0;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 h3 {
    margin: 2.5rem 7.4rem 0;
    font-size: 1.6rem;
    padding: 0.8rem 0 0.7rem;
    letter-spacing: 0.1em;
  }
}

.campaign_page .download_app2 h3 span {
  font-size: 2.8vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 h3 span {
    font-size: 2.2rem;
  }
}

.campaign_page .download_app2 .blue-line__box {
  margin-top: 0.3vw;
  padding: 2.3vw 1.875vw 0.5vw 1.875vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 .blue-line__box {
    margin-top: 0.3rem;
    padding: 2.8rem 1.875rem 1rem 1.875rem;
  }
}

.campaign_page .download_app2 .blue-line__box ul {
  display: flex;
  justify-content: space-between;
}

.campaign_page .download_app2 .blue-line__box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 .blue-line__box ul li {
    gap: 2rem;
padding: 5;

  }
}

.campaign_page .download_app2 .blue-line__box ul li img {
  height: auto;
padding: 0;
margin: 0 auto ;
}

.campaign_page .download_app2 .blue-line__box ul li .btn_app {
  width: 20vw;
}

.campaign_page .download_app2 .blue-line__box ul li .iphone_qrcode {
  width: 12vw;
}

.campaign_page .download_app2 .blue-line__box ul li .btn_googleplay {
  width: 24.5vw;
}

.campaign_page .download_app2 .blue-line__box ul li .android_qrcode {
  width: 12vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .download_app2 .blue-line__box ul li .btn_app {
    width: 17.86109375rem;
  }

  .campaign_page .download_app2 .blue-line__box ul li .iphone_qrcode {
    width: 9.9375rem;
  }

  .campaign_page .download_app2 .blue-line__box ul li .btn_googleplay {
    width: 21.9837625rem;
  }

  .campaign_page .download_app2 .blue-line__box ul li .android_qrcode {
    width: 9.9875rem;
  }
}



.campaign_page .five_step {
  margin-top: 2.9vw;
  position: relative;
  padding-bottom: 4.9vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step {
    margin-top: 4rem;
    padding-bottom: 0;
  }
}

.campaign_page .five_step::before {
  content: "";
  background: #f3f5fa;
  height: calc(100% - 4vw);
  width: 100vw;
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: 4vw;
}

@media screen and (min-width: 768px) {

  .campaign_page .five_step::before {
    height: calc(100% - 4rem);
    top: 4rem;
  }
}

.campaign_page .five_step .yellow_back {
  margin: 1.5vw auto 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .yellow_back {
    margin-top: 1.5rem;
  }
}

.campaign_page .five_step h3 {
  background: #0066cb;
  color: #fff;
  font-size: 4vw;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step h3 {
    font-size: 3.2rem;
    padding-bottom: 1rem;
    letter-spacing: 0.15em;
  }
}

.campaign_page .five_step h3 span {
  color: #faed00;
  font-size: 4.7vw;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step h3 span {
    font-size: 4.2rem;
  }
}

.campaign_page .five_step .blue-dotline__box {
  background: #cfeafa;
  border: dotted #0066cb 4px;
  margin-top: 5vw;
  margin-bottom: 4.1vw;
  border-radius: 0.7624375vw;
  padding: 0 1.8vw 3vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .blue-dotline__box {
    margin-top: 3rem;
    margin-bottom: 3.1rem;
    border-radius: 0.7624375rem;
    padding: 0 1.8rem 1.5rem;
  }
}

.campaign_page .five_step .step_inner {
  padding: 0 1.8vw 1px;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_inner {
    padding: 0 1.8rem 1px;
  }
}

.campaign_page .five_step .blue-dotline__box h4 {
  background: #0066cb;
  color: #faed00;
  font-size: 2vw;
  text-align: center;
  margin: -2vw 6.5vw 4.8vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .blue-dotline__box h4 {
    font-size: 2rem;
    margin: -2rem 5.4rem 5.4rem;
  }
}

.campaign_page .five_step .step_list>li {
  background: #fff;
  border: solid 0.125rem #0066cb;
  border-radius: 1.7857142857vw;
  padding-bottom: 1vw;
  margin-bottom: 4.3vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list>li {
    border-radius: 1.25rem;
    padding-bottom: 2.5rem;
    margin-bottom: 4.3rem;
  }
}

.campaign_page .five_step .step_list h5 {
  background: #0066cb;
  border: solid 0.1875vw #0066cb;
  color: #fff;
  font-size: 1.8vw;
  margin-top: -2vw;
  margin-left: -0.125vw;
  width: 31.5vw;
  border-radius: 0.10975vw;
  box-shadow: 2px 2px 0px 0px #888888;
  padding: 0.5vw 0 0.4vw 10vw;
  letter-spacing: 0.18em;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list h5 {
    font-size: 1.6rem;
    margin-top: -2rem;
    margin-left: -0.125rem;
    width: 28.5rem;
    border-radius: 0.10975rem;
    border: solid 0.1875rem #0066cb;
    box-shadow: 0.125rem 0.125rem 0px 0px #888888;
    padding: 0.5rem 0 0.4rem 8rem;
  }
}


.campaign_page .five_step .step_list h5 span {
  background: #fff;
  color: #0066cb;
  border-radius: 0.10975rem 9999px 9999px 0.10975rem;
  padding: 0.5vw 1.4vw 0.4vw 0.8vw;
  letter-spacing: 0;
  left: 0;
  top: 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list h5 span {
    padding: 0.5rem 1.4rem 0.4rem 0.8rem;
  }
}

.campaign_page .five_step .step_list .flex {
  display: flex;
  justify-content: space-between;
  padding: 0.7vw 1.3vw 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .flex {
    padding: 0.7rem 1.3rem 0;
  }
}

.campaign_page .five_step .step_list .flex .step_text {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .flex .step_text {
    flex: 1;
  }
}

.campaign_page .five_step .step_list .flex .step_text h6 {
  color: #0066cb;
  display: inline-block;
  background: linear-gradient(transparent 70%, #faed00 70%);
  font-size: 2.5vw;
  letter-spacing: 0.17em;
  margin-bottom: 0.7vw;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .flex .step_text h6 {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    white-space: nowrap;
  }
}


.campaign_page .five_step .step_list .flex .step_text p {
  /*  font-size: 1.4vw; 20240919変更*/
  /* -- Add AW -- */
  font-size: 1.8vw;
  line-height: 1.43;
  /* -- Add AW -- */
  margin-top: 1vw;

}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .flex .step_text p {
    font-size: 1.4rem;
    /* -- Add AW -- */
    margin-top: 1rem;


  }
}

.campaign_page .five_step .step_list .step1 .step_text {
  width: 22vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 .step_text {
    width: 22rem;
  }
}

.campaign_page .five_step .step_list .step1 ul {
  display: flex;
  gap: 1vw;
  margin-top: 1.5vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul {
    gap: 1rem;
    margin-top: 0;
  }
}

.campaign_page .five_step .step_list .step1 ul li {
  display: grid;
  grid-template: "title title" 1em
    "btn qr" /1fr 8.8vw;
  border: solid 0.125rem #0066cb;
  border-radius: 1.7857142857vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul li {
    border-radius: 1.25rem;
    grid-template: "title title" 2.4em
      "btn qr" /1fr 8rem;
  }
}

.campaign_page .five_step .step_list .step1 ul li h6 {
  grid-area: title;
  color: #fff;
  background: #0066cb;
  text-align: center;
  line-height: 2.4em;
  font-size: 1vw;
  border-radius: 1.7vw 1.7vw 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul li h6 {
    font-size: 1rem;
    border-radius: 1rem 1rem 0 0;
  }
}

.campaign_page .five_step .step_list .step1 ul li a {
  align-self: center;
  margin-left: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul li a {
    margin-left: 1rem;
  }
}

.campaign_page .five_step .step_list .step1 ul li .btn {
  grid-area: btn;
  height: 3.9vw;
  width: auto;
  max-width: fit-content;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul li .btn {
    height: 3.5625rem;
  }
}

.campaign_page .five_step .step_list .step1 ul li .qr {
  grid-area: qr;
  width: 7.9vw;
  margin-top: 0.6vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step1 ul li .qr {
    width: 7.21875rem;
    margin-top: 0.7rem;
  }
}

.campaign_page .five_step .step_list .step_image {
  flex: 1;
}

.campaign_page .five_step .step_list .step_image ul {
  display: flex;
  justify-content: center;
  margin-left: 0;
  margin-right: 5vw;
  gap: 15%;
}


@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step_image ul {
    margin-left: 5%;
    margin-right: 0;
    gap: 15%;
  }
}

.campaign_page .five_step .step_list .step2 {
  margin-bottom: 0;
  padding-bottom: 1.8vw;
}


@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step2 {
    padding-bottom: 2.5rem;
  }
}

.campaign_page .five_step .step_list .step2 p {
  margin-top: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step2 p {
    margin-top: 1rem;
  }
}

.campaign_page .five_step .step_list .step2 .step_image img {
  width: 36.5vw;
  display: block;
  margin: 0 0.3vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step2 .step_image img {
    width: 30.1875rem;
    margin: 0 1.7rem 0 auto;
  }
}

.campaign_page .five_step .step_list .step3 {
  padding-bottom: 1.5vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step3 {
    padding-bottom: 1rem;
  }
}

.campaign_page .five_step .step_list .step3 h6 {
  margin-top: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step3 h6 {
    margin-top: 1rem;
  }
}

.campaign_page .five_step .step_list .step3 p {
  margin: 0.5vw 0 0 1.2vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step3 p {
    margin: 0.5rem 0 0 1.2rem;
  }
}

.campaign_page .five_step .step_list .step3 .step_image img {
  width: 25vw;
  display: block;
  margin: 0.7vw 6vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step3 .step_image img {
    width: 21.9375rem;
    margin: 1.3rem 6.6rem 0 auto;
  }
}

.campaign_page .five_step .step_list .step4 {
  padding-bottom: 1.5vw;
  margin-bottom: 4.7vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4 {
    padding-bottom: 1.5rem;
    margin-bottom: 4.7rem;
  }
}

.campaign_page .five_step .step_list .step4 h6 {
  margin-top: 1.8vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4 h6 {
    margin-top: 1.8rem;
  }
}

.campaign_page .five_step .step_list .step4 p {
  margin: 0.5vw 0 0 0.9vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4 p {
    margin: 0.5rem 0 0 1.9rem;
  }
}

.campaign_page .five_step .step_list .step4 .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3vw solid transparent;
  border-left: 3vw solid transparent;
  border-top: 1.7vw solid #0066cb;
  border-bottom: 0;
  margin: 0 auto 1.2vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4 .triangle {
    border-right: 3.3125rem solid transparent;
    border-left: 3.3125rem solid transparent;
    border-top: 2.125rem solid #0066cb;
    margin: 0.8rem auto 1.2rem;
  }
}

.campaign_page .five_step .step_list .step4_1 .step_image img {
  width: 20vw;
  display: block;
  margin: 1.5vw 7.5vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4_1 .step_image img {
    width: 17.0625rem;
    margin: 1rem 6.1rem 0 auto;
  }
}

.campaign_page .five_step .step_list .step4_2 .step_image img {
  width: 25vw;
  display: block;
  margin: -0.7vw 6.8vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step4_2 .step_image img {
    width: 21.9375rem;
    margin: -0.7rem 4.2rem 0 auto;
  }
}


.campaign_page .five_step .step_list .step5 {
  padding-bottom: 1.3vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step5 {
    padding-bottom: 7.3rem;
  }
}

.campaign_page .five_step .step_list .step5 h6 {
  margin-top: 2vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step5 h6 {
    margin-top: 2rem;
  }
}

.campaign_page .five_step .step_list .step5 p {
  margin: 4.4vw 0 0 0.9vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step5 p {
    margin: 4.4rem 0 0 2rem;
  }
}

.campaign_page .five_step .step_list .step5 .step5_1 .step_image img {
  width: 33vw;
  display: block;
  margin: 2.2vw 1.3vw 0 auto;
}

.campaign_page .five_step .step_list .step5 .step5_2 .step_image .step5_1_img {
  width: 9vw;
  display: block;
  margin: 2.2vw 0 0;
}

.campaign_page .five_step .step_list .step5 .step5_2 .step_image .step5_2_img {
  width: 7.5vw;
  display: block;
  margin: 2.2vw 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_page .five_step .step_list .step5 .step5_1 .step_image img {
    width: 28.6541rem;
    margin: 5.8rem 0.3rem 0 auto;
  }

  .campaign_page .five_step .step_list .step5 .step5_2 .step_image .step5_1_img {
    width: 7.625rem;
    margin: 4.5rem 0 0;
  }

  .campaign_page .five_step .step_list .step5 .step5_2 .step_image .step5_2_img {
    width: 6.40625rem;
    margin: 4.5rem 0 0;
  }
}


.campaign_page .over_footer {
  margin: 10.5vw 0 11.9vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .over_footer {
    margin: 4.125rem 0 6.5rem;
  }
}

.campaign_page .over_footer .button {
  width: 80vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_page .over_footer .button {
    width: 30.34816875rem;
    margin: 0 auto;
  }
}

.terms {
  text-align: center;
  margin: 4.6875rem 0 0;
}

@media screen and (min-width: 768px) {
  .terms {
    margin: 6.5625rem 0 0;
  }
}

.terms__title {
  color: #0066cb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9642857143vw;
  padding-top: 3.75vw;
  font-size: 4.1071428571vw;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .terms__title {
    font-size: 2.5625rem;
    gap: 1.125rem;
    padding-top: 1.875rem;
  }
}

.terms__title::before,
.terms__title::after {
  content: "";
  background: url(../images/common/title_deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 9.2857142857vw;
  height: 2.6785714286vw;
}

@media screen and (min-width: 768px) {

  .terms__title::before,
  .terms__title::after {
    width: 5.8375rem;
    height: 1.625rem;
  }
}

.terms__title::before {
  margin-right: 7.6785714286vw;
}

@media screen and (min-width: 768px) {
  .terms__title::before {
    margin-right: 4.8125rem;
  }
}

.terms__title::after {
  margin-left: 7.6785714286vw;
}

@media screen and (min-width: 768px) {
  .terms__title::after {
    margin-left: 4.8125rem;
  }
}

.terms__lists {
  margin: 2.1428571429vw auto 83.3928571429vw;
  max-width: 80.8928571429vw;
}

@media screen and (min-width: 768px) {
  .terms__lists {
    max-width: 50.5rem;
    margin: 1.375rem auto 20.3125rem;
  }
}

.terms__list a {
  display: block;
  background: #0066cb;
  color: #fff;
  text-align: left;
  font-size: 2.5vw;
  line-height: 5.1785714286vw;
  border-radius: 2.5892857143vw;
  position: relative;
  padding-left: 4.2857142857vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .terms__list a {
    font-size: 1.5625rem;
    line-height: 3.25rem;
    border-radius: 1.625rem;
    padding-left: 2.8125rem;
  }
}

.terms__list a::before {
  content: "■";
  font-size: 3.5714285714vw;
}

@media screen and (min-width: 768px) {
  .terms__list a::before {
    font-size: 1.9375rem;
  }
}

.terms__list a::after {
  content: "→";
  position: absolute;
  right: 3.75vw;
  font-size: 4.8214285714vw;
}

@media screen and (min-width: 768px) {
  .terms__list a::after {
    right: 2.625rem;
    font-size: 2.75rem;
  }
}

.terms__list+li {
  margin-top: 3.75vw;
}

@media screen and (min-width: 768px) {
  .terms__list+li {
    margin-top: 2.4375rem;
  }
}

.faq__summary {
  text-align: center;
  margin: 4.6875rem 0 0;
}

@media screen and (min-width: 768px) {
  .faq__summary {
    margin: 6.5625rem 0 0;
  }
}

.faq__title {
  color: #0066cb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9642857143vw;
  padding-top: 8.8vw;
  font-size: 3.7vw;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 2.5625rem;
    gap: 1.125rem;
    padding-top: 1.875rem;
    letter-spacing: 0.2em;
  }
}

.faq__title::before,
.faq__title::after {
  content: "";
  background: url(../images/common/title_deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 9.2857142857vw;
  height: 2.6785714286vw;
}

@media screen and (min-width: 768px) {

  .faq__title::before,
  .faq__title::after {
    width: 5.8375rem;
    height: 1.625rem;
  }
}


.faq__lists {
  margin: 2.1428571429vw auto 83.3928571429vw;
  max-width: 80.8928571429vw;
}

@media screen and (min-width: 768px) {
  .faq__lists {
    max-width: 50.5rem;
    margin: 1.375rem auto 20.3125rem;
  }
}

.faq__list a {
  display: block;
  background: #0066cb;
  color: #fff;
  text-align: left;
  font-size: 2.5vw;
  line-height: 5.1785714286vw;
  border-radius: 2.5892857143vw;
  position: relative;
  padding-left: 4.2857142857vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .faq__list a {
    font-size: 1.5625rem;
    line-height: 3.25rem;
    border-radius: 1.625rem;
    padding-left: 2.8125rem;
  }
}

.faq__list.preparation a {
  pointer-events: none;
  background: #808080;
}

.faq__list a::before {
  content: "■";
  font-size: 3.5714285714vw;
}

@media screen and (min-width: 768px) {
  .faq__list a::before {
    font-size: 1.9375rem;
  }
}

.faq__list a::after {
  content: "→";
  position: absolute;
  right: 3.75vw;
  font-size: 4.8214285714vw;
}

@media screen and (min-width: 768px) {
  .faq__list a::after {
    right: 2.625rem;
    font-size: 2.75rem;
  }
}

.faq__list+li {
  margin-top: 3.75vw;
}

@media screen and (min-width: 768px) {
  .faq__list+li {
    margin-top: 2.4375rem;
  }
}

.faq__detail {
  text-align: center;
  margin: 4.6875rem 0 0;
}

@media screen and (min-width: 768px) {
  .faq__detail {
    margin: 6.5625rem 0 0;
  }
}

.faq__detail .inner {
  width: 80%;
  padding: 0;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .faq__detail .inner {
    width: 70.4rem;
    padding: 0;
  }
}

.faq__detail h3 {
  background: #0066cb;
  color: #fff;
  box-shadow: 2px 2px 0px 0px #888888;
  font-size: 3.8125vw;
  border-radius: 0.10975vw;
  margin: 4.2vw auto 7.8vw;
  width: 78.5vw;
  padding: 0.3vw 0;
}

@media screen and (min-width: 768px) {
  .faq__detail h3 {
    box-shadow: 0.125rem 0.25rem 0px 0px #888888;
    font-size: 3rem;
    border-radius: 0.10975rem;
    margin: 3.5rem auto 4rem;
    /*    width: 55.5rem;*/
    /* -- Add AW -- */
    width: 65.5rem;
    padding: 0;
  }
}

.faq__detail .blue-line__box {
  background: #fff;
  border: solid 0.3571428571vw #0066cb;
  border-radius: 1.7857142857vw;
  padding: 2vw 1.214286vw 1.6vw 1.214286vw;
  border-width: 0.3571428571vw;
  text-align: left;
  margin-bottom: 3vw;
}

@media screen and (min-width: 768px) {
  .faq__detail .blue-line__box {
    border-radius: 1.25rem;
    border: solid 0.125rem #0066cb;
    padding: 1.9rem 1.1rem 1.5rem 1.1rem;
    margin-bottom: 1.5rem;
  }
}

.faq__detail .blue-line__box dt {
  background: #dddddd;
  box-shadow: 2px 2px 0px 0px #888888;
  /*  font-size: 2.25vw; */
  /* -- Add AW -- */
  font-size: 2.25vw;
  border-radius: 0.10975vw;
  width: 100%;
  padding: 0.7vw 0 0.2vw 1vw;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

@media screen and (min-width: 768px) {
  .faq__detail .blue-line__box dt {
    box-shadow: 0.125rem 0.25rem 0px 0px #888888;
    /*    font-size: 2rem; 変更*/
    /* -- Add AW -- */
    font-size: 1.5rem;
    border-radius: 0.10975rem;
    padding: 0.7rem 0 0.2rem 1rem;
    gap: 1.6vw;
  }
}

.faq__detail .blue-line__box dt span,
.faq__detail .blue-line__box dd span {
  background: #0066cb;
  color: #fff;
  font-size: 4vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5.2vw;
  line-height: 5.2vw;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {

  .faq__detail .blue-line__box dt span,
  .faq__detail .blue-line__box dd span {
    font-size: 3rem;
    width: 4.6875rem;
    line-height: 4.6875rem;
  }
}

.faq__detail .blue-line__box dd {
  font-size: 2.3vw;
  padding: 0.7vw 0 0.2vw 1vw;
  display: flex;
  align-items: baseline;
  gap: 1.6vw;
  margin: 3vw 0 0;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .faq__detail .blue-line__box dd {
    /*    font-size: 2rem; 変更*/
    /* -- Add AW -- */
    font-size: 1.5rem;
    padding: 0.7rem 0 0.2rem 1rem;
    gap: 1.6rem;
    margin: 3rem 0 0;
  }
}

.faq__detail .blue-line__box dd a {
  display: inline;
  border-bottom: solid 1px #0066cb;
  color: #0066cb;
}


.faq__detail .back_btn {
  background: #0066cb;
  color: #fff;
  position: relative;
  font-size: 4vw;
  width: 41vw;
  line-height: 2em;
  border-radius: 2.2vw 5vw 5vw 2.2vw;
  margin: 6.6vw auto 12.8vw;
  position: relative;
}

@media screen and (min-width: 768px) {

  .faq__detail .back_btn {
    font-size: 3rem;
    width: 30rem;
    border-radius: 2.2rem 5rem 5rem 2.2rem;
    margin: 6.6rem auto 9.7rem;
  }
}

.faq__detail .back_btn a {
  display: block;
}

.faq__detail .back_btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.6vw solid transparent;
  border-bottom: 1.6vw solid transparent;
  border-left: 2.4vw solid #ffffff;
  border-right: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 3vw;
}

@media screen and (min-width: 768px) {
  .faq__detail .back_btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ffffff;
    border-right: 0;
    left: 2rem;
  }
}

/*2025-4追加*/
.campaign_2 .campaign {
  background: url('../images/common/campaign_bg-r807_sp.png') top center / cover;
  margin-top: 4vw;
  padding: 0 0 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign {
    background: url('../images/common/campaign_bg-r807.png') top center / cover;
    margin-top: 70px;
    margin-bottom: 5.4rem;
    padding: 0.5rem 0 1.6rem
  }
}

.campaign_2 .campaign .inner {
  width: 100%;
  padding: 0 6vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .inner {
    max-width: 90.4125rem;
    padding: 0 1.8rem;
  }
}


.campaign_2 .campaign .campaign_mv {
  background: none;
  padding: 3.2vw 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign_mv {
    margin: 0;
    padding: 2.375rem 0 0;
  }
}

.campaign_2 .campaign_mv img {
  max-width: 1389px;
  width: 92vw;
  margin: 0 -2vw 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign_mv img {
    width: 98%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1540px) {
  .campaign_2 .campaign_mv img {
    width: 86.8125rem;
  }
}

.campaign_2 .campaign .premium20 {
  width: 89.5%;
  margin: -6.5vw auto 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .premium20 {
    max-width: 1138px;
    width: 80%;
    margin-top: -4.4375rem;
  }
}

@media screen and (min-width: 1400px) {
  .campaign_2 .campaign .premium20 {
    width: 71.125rem;
  }
}

.campaign_2 .campaign .campaign_text01 {
  color: #000;
  font-size: 2.8vw;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_text01 {
    font-size: 2.875rem;
    line-height: 1;
    margin-top: 2.1rem;
  }
}

.campaign_2 .campaign .campaign_text01 span {
  font-size: 5vw;
  color: #E50012;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_text01 span {
    font-size: 4.125rem;
  }
}

.campaign_2 .campaign .campaign_text02 {
  color: #000;
  font-size: 2.8vw;
  font-weight: 800;
  text-align: center;
  font-feature-settings: "palt" 1;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_text02 {
    font-size: 2.875rem;
  }
}

.campaign_2 .campaign .campaign_text03 {
  color: #000;
  font-size: 2.2vw;
  font-weight: 500;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.18em;
  padding: 1.5vw 3vw 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_text03 {
    font-size: 1.8375rem;
    padding: 0.75rem 5rem 0;
  }
}

.campaign_2 .campaign .campaign_text04 {
  color: #000;
  font-size: 2.1vw;
  font-weight: 500;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.18em;
  padding: 1.5vw 3vw 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_text04 {
    font-size: 2.0375rem;
    font-weight: 800;
    padding: 0.75rem 5rem 0;
  }
}

.campaign_2 .campaign .yellow_back {
  margin: 1vw auto 0;
  width: 95.5%;
  letter-spacing: 0.14em;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .yellow_back {
    margin-top: 1.125rem;
    font-size: 2.5rem;
  }
}

.campaign_page .blue-line__box {
  background: #fff;
  border: solid 0.3571428571vw #0066cb;
  border-radius: 1.7857142857vw;
  padding: 3.6vw 3.2142857143vw 6.7857142857vw 3.2142857143vw;
  margin-top: -1.7857142857vw;
  border-width: 0.3571428571vw;
}

@media screen and (min-width: 768px) {
  .campaign_page .blue-line__box {
    border-radius: 0.25rem;
    border: solid 0.125rem #0066cb;
    padding: 4.3rem 0 1.5rem 1.875rem;
    margin-top: -2.25rem;
  }
}

/* =========================
   campaign_term 整理版
   ========================= */

.campaign_2 .campaign .campaign_term {
  box-shadow: 0.2vw 0.2vw 0 rgba(60, 60, 60, 0.6);
  color: #000;
  display: flex;
  align-items: stretch;
  width: 95.6%;
  margin: 1.9vw auto 0;
  gap: 0;
}

.campaign_2 .campaign .campaign_term .campaign_term_title,
.campaign_2 .campaign .campaign_term .campaign_term_date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 5.2vw;
  border: solid 3px #e5006e;
  background: #fff;
  font-weight: 800;
  font-size: 2.8vw;
  line-height: 1;
  white-space: nowrap;
}

/* 左：申込期間 */
.campaign_2 .campaign .campaign_term .campaign_term_title {
  flex: 0 0 auto;
  background: #e5006e;
  color: #fff;
  letter-spacing: 0.15em;
  box-shadow: none;
  margin-right: 0;
  border-right: 0;
  border-radius: 0.5357142857vw 0 0 0.5357142857vw;
  padding-left: 2vw;
  padding-right: 1.8vw;
}

/* 右：日付 */
.campaign_2 .campaign .campaign_term .campaign_term_date {
  flex: 1 1 auto;
  min-width: 0;
  color: #e5006e;
  text-align: center;
  background: #fff;
  border-radius: 0 0.5357142857vw 0.5357142857vw 0;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_term {
    width: 95.6%;
    margin: 1.875rem auto 0;
  }

  .campaign_2 .campaign .campaign_term .campaign_term_title,
  .campaign_2 .campaign .campaign_term .campaign_term_date {
    height: 3rem;
    font-size: 2.1rem;
    line-height: 1;
  }

  .campaign_2 .campaign .campaign_term .campaign_term_title {
    border-right: 0;
    border-radius: 0.2rem 0 0 0.2rem;
    padding-left: 1.7rem;
    padding-right: 1.4rem;
  }

  .campaign_2 .campaign .campaign_term .campaign_term_date {
    border-radius: 0 0.2rem 0.2rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_2 .campaign .campaign_term .campaign_term_title,
  .campaign_2 .campaign .campaign_term .campaign_term_date {
    height: 3rem;
    font-size: 2.1rem;
  }
}



.campaign_2 .campaign .campaign__content {
  padding: 2.5vw 0.6vw 2.7vw;
  margin: 1.3vw 0 0 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign__content {
    padding: 1.5rem 1.2rem 3.3rem 1.2rem;
    margin: 1rem 1.875rem 0;
  }
}

.campaign_2 .content01 dl {
  display: flex;
  align-items: stretch;
  margin: 0 0 1.5vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .content01 dl {
    margin: 1.6rem 0 1rem;
  }
}


.campaign_2 .content01 dl dt,
.campaign_2 .content01 dl dd {
  font-weight: 700;
  font-size: 1.7857142857vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {

  .campaign_2 .content01 dl dt,
  .campaign_2 .content01 dl dd {
    font-size: 1.53125rem;
    letter-spacing: 0.1em;
  }
}

.campaign_2 .content01 dl dt {
  background-color: #FFFDEA;
  color: #0066cb;
  line-height: 3.5vw;
  border-radius: 0.25rem;
  padding: 0;
  width: 9.6vw;
  font-size: 1.5vw;
  font-weight: 600;
  border: solid 1px #0066cb;
  box-shadow: none;
  display: flex;
  height: auto;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .campaign_2 .content01 dl dt {
    width: 8.875rem;
    line-height: 1;
    font-size: 1.5rem;
    padding: 0;
    box-shadow: none;
  }
}

.campaign_2 .content01 dl dt span {
  font-size: 1.0714285714vw;
  vertical-align: middle;
}



@media screen and (min-width: 768px) {
  .campaign_2 .content01 dl dt span {
    font-size: 0.875rem;
  }
}

.campaign_2 .content01 dl dd {
  line-height: 1.4;
  font-size: 2vw;
  font-weight: 400;
  letter-spacing: -0.07em;
  margin: 0;
  flex: 1;
  padding-left: 1.7vw;
  font-feature-settings: "palt" 1;
}

.campaign_2 .content01 dl:nth-child(2) dd {
  font-size: 1.6vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .content01 dl dd {
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    margin: 0;
    padding-left: 1.25rem;
  }

  .campaign_2 .content01 dl:nth-child(2) dd {
    font-size: 1.3125rem;
  }
}

.campaign_2 .content01 dl dd ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.campaign_2 .content01 dl dd ol>li {
  line-height: 1.7;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.875rem;
}

.campaign_2 .content01 dl dd ol li {
  line-height: 1.25;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.campaign_2 .content01 dl dd ol>li:nth-child(1) {
  border-bottom: dotted 2px #0066cb;
}

.campaign_2 .content01 dl dd ol>li:nth-child(2) {
  padding-top: 3.625vw;
  padding-bottom: 0;
  margin-bottom: -2.8vw;
}

.campaign_2 .content01 dl dd span {
  position: relative;
  color: #0066cb;
  display: block;
  font-size: 2.5vw;
  font-weight: 800;
}

.campaign_2 .content01 dl:nth-child(2) dd span {
  display: inline;
  font-size: 2.65vw;
  margin-right: 1vw;
}

.campaign_2 .content01 dl dd ol li {
  padding-left: 0;
  line-height: 1.7;
}

.campaign_2 .content01 dl dd ol>li {
  padding-bottom: 1.8vw;
}

.campaign_2 .content01 dl dd ol>li span {
  padding-left: 1em;
  margin-bottom: 1.875vw;
  line-height: 1;
}

.campaign_2 .content01 dl dd ol li::before {
  display: none;
}

.campaign_2 .content01 dl dd ol>li span::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #0066cb;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.2vw;
  width: 2.2vw;
  color: #ffffff;
  font-size: 85%;
  line-height: 2.2vw;
  position: absolute;
  top: 0.3vw;
  left: 0;
  font-weight: 200;
  font-size: 1.6vw;
}

@media screen and (min-width: 768px) {


  .campaign_2 .content01 dl:nth-child(2) dd span {
    font-size: 2.65rem;
    margin-right: 1rem;
  }

  .campaign_2 .content01 dl dd ol {}

  .campaign_2 .content01 dl dd ol>li {
    line-height: 1.7;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.875rem;
  }

  .campaign_2 .content01 dl dd ol>li:nth-child(1) {
    border-bottom: dotted 2px #0066cb;
  }

  .campaign_2 .content01 dl dd ol>li:nth-child(2) {
    padding-top: 3.625rem;
    margin-bottom: 0;
  }

  .campaign_2 .content01 dl dd ol li {
    padding-left: 0;
  }

  .campaign_2 .content01 dl dd span {
    font-size: 2.18rem;
  }

  .campaign_2 .content01 dl dd ol li::before {
    display: none;
  }

  .campaign_2 .content01 dl dd ol>li span::before {
    height: 2.2rem;
    width: 2.2rem;
    top: 0;
    line-height: 1;
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.campaign_2 .campaign__content dl dd ol li ul {
  display: flex;
  gap: 1.8vw;
  margin-right: 1.3vw;
  align-items: baseline;
  justify-content: end;
  width: min-content;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl dd ol li ul {
    gap: 2.8rem;
    margin-top: 0;
    margin-right: 1.4rem;
    flex-wrap: wrap;
  }
}

.campaign_2 .campaign__content dl dd ol li ul li {
  display: grid;
  grid-template: "title title" 1em
    "btn qr" /1fr 8.8vw;
  border: solid 0.125rem #0066cb;
  border-radius: 1.7857142857vw;
}

.campaign_2 .campaign__content dl dd ol li ul li>img {
  width: 87%;
  margin: 8% auto;
}


@media screen and (min-width: 1300px) {
  .campaign_2 .campaign__content dl dd ol li ul {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl dd ol li ul li {
    border-radius: 0.25rem;
    grid-template: "title title" 1.2em
      "btn qr" 8rem /1fr 8rem;
  }
}

.campaign_2 .campaign__content dl dd ol li ul li h6 {
  grid-area: title;
  color: #fff;
  background: #0066cb;
  text-align: center;
  line-height: 2.4em;
  font-size: 1vw;
  border-radius: 1.7vw 1.7vw 0 0;
}

@media screen and (min-width: 768px) {

  .campaign_2 .campaign__content dl dd ol li ul {
    gap: 2.8vw;
    margin-right: 0;
  }

  .campaign_2 .campaign__content dl dd ol li ul li h6 {
    font-size: 1rem;
    border-radius: 0.25rem 0.25rem 0 0;
  }
}

.campaign_2 .campaign__content dl dd ol li ul li a {
  align-self: center;
  margin-left: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl dd ol li ul li a {
    margin-left: 1rem;
  }
}

.campaign_2 .campaign__content dl dd ol li ul li .btn {
  grid-area: btn;
  height: 3.9vw;
  width: auto;
  max-width: fit-content;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl dd ol li ul li .btn {
    height: 3.5625rem;
  }
}

.campaign_2 .campaign .campaign__content dl:nth-child(1) picture {
  top: -2.8vw;
  position: relative;
}

.campaign_2 .campaign .campaign__content .entry_image {
  right: 0.4vw;
  width: 19.4vw;
  position: relative;
}

@media screen and (min-width: 768px) {

  .campaign_2 .campaign .campaign__content dl:nth-child(1) picture {
    top: -2.5rem;
  }

  .campaign_2 .campaign .campaign__content .entry_image {
    width: 71%;
    right: 0.5rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_2 .campaign .campaign__content .entry_image {
    max-width: 27.96875rem;
  }
}

.campaign_2 .campaign__content dl dd ul.period {
  display: flex;
  gap: 1.2rem;
}

.campaign_2 .campaign__content dl dd ul.period li {
  display: flex;
  text-align: center;
  align-items: stretch;
}

.campaign_2 .campaign__content dl dd ul.period li span {
  padding-left: 0.5vw;
  margin-left: 0.5vw;
  margin-bottom: 0;
  border-left: solid 1px #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl dd ul.period {
    gap: 1.2rem;
  }

  .campaign_2 .campaign__content dl dd ul.period li {}

  .campaign_2 .campaign__content dl dd ul.period li span {
    padding-left: 1rem;
    margin-left: 1rem;
    margin-bottom: 0;
    font-size: 2.0625rem;
  }
}

.campaign_2 .campaign__content dl:nth-child(4) dd {
  flex: auto;
  display: flex;
  align-items: center;
}

.campaign_2 .campaign__content dl:nth-child(4) dd span {
  display: inline;
  margin-right: 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign__content dl:nth-child(4) dd span {
    display: inline;
    margin-right: 1rem;
  }
}

.campaign_2 .merchant__buttons {
  display: flex;
  justify-content: space-evenly;
  margin: 4vw 0.25vw;
}

.campaign_2 .merchant__buttons.buttons_2 {
  display: flex;
  justify-content: space-evenly;
  margin: 5vw -4.75vw 4vw;
}
.campaign_2 .merchant__buttons.buttons_3 {
  display: flex;
  justify-content: space-evenly;
  margin: 0vw -4.75vw 0vw;
}

.campaign_2 .merchant__buttons .button {
  width: 41%;
  margin-bottom: 2vw;
}

.campaign_2 .merchant__buttons.buttons_2 .button {
  width: 97%;
  margin-bottom: 2vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .merchant__buttons {
    margin: 3.75rem 3rem;
  }

  .campaign_2 .merchant__buttons .button {
    width: 47%;
    margin-bottom: 0;
  }
}

.campaign_2 .merchant__buttons .button h4 {
  text-align: center;
  font-weight: 500;
  font-size: 3vw;
  margin-left: -2vw;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .campaign_2 .merchant__buttons .button h4 {
    font-size: 0.9375rem;
    letter-spacing: 0.17em;
    margin-left: 0;
  }
}


.campaign_2>.inner {
  width: 96%;
  padding: 0 10vw;
}

@media screen and (min-width: 768px) {

  .campaign_2>.inner {
    width: 70.4rem;
    padding: 0;
  }
}

.campaign_2 .five_step {
  margin-top: 2.9vw;
  position: relative;
  padding-bottom: 1.8vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step {
    margin-top: 4.8rem;
    padding-bottom: 1.47rem;
  }
}

.campaign_2 .five_step .step_inner {
  padding: 6vw 1.8vw 1px;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_inner {
    padding: 7rem 1.8rem 1px;
  }
}

.campaign_2 .five_step .step_list .step1 ul {
  margin-top: 0;
}

.campaign_2 .five_step .step_list .flex .step_text p {
  font-size: 1.6vw;
  line-height: 1.43;
  margin-top: 1vw;

}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .flex .step_text p {
    font-size: 1.4rem;
    margin-top: 1rem;


  }
}

.campaign_2 .five_step .step_list .step2 {
  margin-bottom: 0;
  padding-bottom: 3.8vw;
}


@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .step2 {
    padding-bottom: 2.5rem;
  }
}


.campaign_2 .five_step .blue-dotline__box {
  background: #cfeafa;
  border: dotted #0066cb 4px;
  margin-top: 1.8vw;
  margin-bottom: 0.7vw;
  border-radius: 0.7624375vw;
  padding: 3vw 1.8vw 1vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .blue-dotline__box {
    margin-top: 3rem;
    margin-bottom: 0.8rem;
    border-radius: 0.7624375rem;
    padding: 3rem 1.8rem 1.5rem;
  }
}

.campaign_2 .five_step .step_list .step4_1 .step_image img {
  width: 18vw;
  display: block;
  margin: 0.3vw 7vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .step4_1 .step_image img {
    width: 17.0625rem;
    margin: 1rem 6.1rem 0 auto;
  }
}

.campaign_2 .five_step .step_list .step4_2 .step_text {
  flex: auto;
}

.campaign_2 .five_step .step_list .step4_2 .step_image {
  flex: auto;
}

.campaign_2 .five_step .step_list .step4_2 .step_image img {
  width: 26vw;
  display: block;
  margin: 1.3vw 1.5vw 0 auto;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .step4_2 .step_image img {
    width: 21.9375rem;
    margin: -0.7rem 4.2rem 0 auto;
  }
}

.campaign_2 .five_step .step_list .step5 {
  padding-bottom: 1.3vw;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .step5 {
    padding-bottom: 2.3rem;
    margin-bottom: 0;
  }
}

.campaign_2 .five_step .step_list .step5 .step5_1 .step_image img {
  width: 30vw;
  display: block;
  margin: 6.2vw 1vw 0 auto;
}

.campaign_2 .five_step .step_list .step5 .step5_2 .step_image ul {
  margin-right: 0;
  margin-top: 2vw;
}

.campaign_2 .five_step .step_list .step5 .step5_2 .step_image .step5_1_img {
  width: 9vw;
  display: block;
  margin: 0 0 0;
}

.campaign_2 .five_step .step_list .step5 .step5_2 .step_image .step5_2_img {
  width: 7.5vw;
  display: block;
  margin: 0 0 0;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .step_list .step5 .step5_1 .step_image img {
    width: 28.6541rem;
    margin: 5.8rem 0.3rem 0 auto;
  }

  .campaign_2 .five_step .step_list .step5 .step5_2 .step_image ul {
    margin-right: 0;
    margin-top: 0;
  }

  .campaign_2 .five_step .step_list .step5 .step5_2 .step_image .step5_1_img {
    width: 7.625rem;
    margin: 0 0 0;
  }

  .campaign_2 .five_step .step_list .step5 .step5_2 .step_image .step5_2_img {
    width: 6.40625rem;
    margin: 0 0 0;
  }
}

.campaign_2 .five_step .attention {
  text-align: center;
  font-size: 1.55vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .five_step .attention {
    font-size: 1.5rem;
  }
}

.campaign_2 .over_footer .button a {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.campaign_2 .over_footer .button a:nth-of-type(1) {
  margin-bottom: 7.125vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .over_footer .button a:nth-of-type(1) {
    margin-bottom: 3.125rem;
  }

  .campaign_2 .over_footer .button img {
    max-width: 750px;
    margin: 0 auto;
  }
}



.furusato .inner {
  padding: 0 5.347593582887701vw;
}

@media screen and (min-width: 768px) {
  .furusato .inner {
    width: 92rem;
    max-width: 100%;
  }

}



/*
.furusato .campaign__title {
  font-size: 30.5vw;
  gap: 1.5vw;
}

*/

/*
.furusato .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 10vw;
}

@media (min-width: 1100px) {
  .furusato .inner {
    width: 70.4rem;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .furusato .inner {
    padding: 0;
  }
}

*/

.furusato .campaign__title {
  color: #0066cb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9642857143vw;
  padding-top: 8vw;
  font-size: 40.1071428571vw;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .furusato .campaign__title {
    font-size: 2.4rem;
    gap: 1.125rem;
    padding-top: 2.75rem;
  }
}

.furusato .campaign__title::before,
.furusato .campaign__title::after {
  content: "";
  background: url(../images/common/title_deco.png) no-repeat;
  background-size: contain;
  display: block;
  width: 9.2857142857vw;
  height: 2.6785714286vw;
}

@media screen and (min-width: 768px) {

  .furusato .campaign__title::before,
  .furusato .campaign__title::after {
    width: 5.8375rem;
    height: 1.625rem;
  }
}




.furusato .fv__content {
  text-align: center;
  background: #f3f5fa;
  width: 100vw;
  margin: 11vw calc(50% - 50vw) 0;
  padding: 0 5.347593582887701vw 1.7825311942959003vw;
}

.furusato .fv__content h3 {
  position: relative;
  display: inline-block;
  margin: -6.944444444444445vw 0 3.4722222222222223vw;
  padding: 3.5650623885918007vw 0;
  border-radius: 9999px;
  background-color: #0066cb;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  width: 63.45811051693404vw;
  font-size: 3.89vw;
}

.furusato .fv__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #0066cb transparent transparent;
  translate: -50% 100%;
}

@media screen and (min-width: 768px) {
  .furusato .fv__content h3 {
    font-size: 3.75rem;
    width: 46.875rem;
  }

  .furusato .fv__content h3::after {}
}

.furusato .fv__content .fv__text {
  background: #fff;
  line-height: 1.05;
  padding: 1.6042780748663104vw 0;
}

.furusato .fv__content .fv__text p em {
  font-style: normal;
  color: #0066cb;
  font-size: 3.297682709447415vw;
  font-weight: 600;
}

.furusato .fv__content .fv__text .note {
  font-size: 2.4955436720142603vw;
  margin-top: 1em;
  font-weight: 600;
}

.furusato .title_shadow {
  width: 80%;
  margin: 0 auto;
  border-radius: 1.7857142857142856vw;
}

@media screen and (min-width: 768px) {
  .furusato .title_shadow {
    border-radius: 0.625rem;
  }
}

.furusato .title_shadow span {
  box-shadow: 0 0 0 0.3571428571vw #0066cb;
  padding: 0.8912655971479502vw;
  line-height: 1;
  border-radius: 1.7857142857142856vw;
}

@media screen and (min-width: 768px) {
  .furusato .title_shadow span {
    box-shadow: 0 0 0 0.3571428571vw #0066cb;
    border-radius: 0.625rem;
  }
}

.furusato .five_step h3 {
  padding-bottom: 0;
  letter-spacing: normal;
}

@media screen and (min-width: 768px) {
  .furusato .five_step h3 {
    padding-bottom: 0;
  }
}

.furusato .five_step h3 span {
  color: #0066cb;
  font-size: 3.0357142857vw;
}

.furusato .available {
  margin-top: 3.9215686274509802vw;
  text-align: center;
}

.furusato .available p {
  font-size: 2.4955436720142603vw;
  line-height: 1.2;
}

.furusato .available .blue-line__box {
  margin-top: -3.5650623885918007vw;
  padding: 7.130124777183601vw 3.2142857143vw 3.2085561497326207vw;
}

.furusato .available .blue-line__box .available_img {
  width: 39.216vw;
  margin: 0.535vw auto 1.426vw;
}

.furusato .available .blue-line__box a {
  display: block;
  width: 33.8680926916221vw;
  margin: 0 auto;
}

.furusato .available .blue-line__box a img {
  width: 100%;
}

.furusato .donation {
  margin-top: 3.9215686274509802vw;
  text-align: center;
}

.furusato .donation .blue-line__box {
  padding: 5.2vw 3.2142857143vw 3.2085561497326207vw;
}

.furusato .donation .blue-line__box p {
  font-size: 2.4955436720142603vw;
  line-height: 1.2;
}

.furusato .donation .blue-line__box table {
  border: 3px #595757 solid;
  border-collapse: collapse;
  font-size: 1.9607843137254901vw;
  table-layout: fixed;
  width: 78%;
  margin: 2.6737967914438503vw auto 0;
  text-align: left;
}

.furusato .donation .blue-line__box table th {
  background: #b3eaff;
  border: 3px #595757 solid;
  padding: 1.248vw 0 0.713vw 2.317vw;
  font-weight: 400;
}

.furusato .donation .blue-line__box table td {
  border: 3px #595757 solid;
  padding: 1.248vw 0 0.713vw 2.317vw;
  font-weight: 400;
}


.furusato .application {
  margin-top: 3.9215686274509802vw;
  text-align: center;
}

.furusato .application .blue-line__box {
  padding: 3.7vw 3.2142857143vw 3.2085561497326207vw;
}

.furusato .application .blue-line__box p {
  font-size: 2.4955436720142603vw;
  line-height: 1.2;
}

.furusato .application .blue-line__box ul {
  margin: 1.2477718360071302vw 0 3.5650623885918007vw;
}

.furusato .application .blue-line__box ul li {
  line-height: 1;
  font-size: 1.9607843137254901vw;

}

.furusato .application .blue-line__box ul li a {
  color: #0066cb;
  font-size: 1.9607843137254901vw;
  text-decoration: underline;
}

.furusato .application .blue-line__box .note {
  font-size: 1.6042780748663104vw;
}

.furusato .five_step::before {
  display: none;
}

.furusato .five_step h3 {
  background: #fff;
}

.furusato .five_step .blue-line__box {
  padding: 7.8431372549019605vw 6.417112299465241vw 4.81283422459893vw;
}

.furusato .five_step .blue-line__box .step_list .flex .step_text p {
  font-size: 1.6042780748663104vw;
  line-height: 1.3;
  font-weight: 600;
}

.furusato .five_step .step_list .step1 {
  padding-bottom: 2.6737967914438503vw;
}

.furusato .five_step .step_list .step1 ul {
  margin-top: 0;
}

.furusato .five_step .step_list .step1 ul li .qr {
  margin-top: 0;
}

.furusato .five_step .step_list .step2 {
  padding-bottom: 3.5650623885918007vw;
}

.furusato .five_step .blue-dotline__box {
  padding: 2.5vw 1.8vw 2.3172905525846703vw;
  margin: 2.5vw 0 1.2477718360071302vw;
}

.furusato .five_step .step_list .step4 {
  padding-bottom: 3.5650623885918007vw;
  margin-bottom: 0;
}

.furusato .five_step .step_list .step4 a {
  color: #0066cb;
  text-decoration: underline;
}

.furusato .five_step .note {
  background: #f3f5fa;
  padding: 1.426vw 2.317vw;
}

.furusato .five_step .note h5 {
  background: #0066cb;
  color: #fff;
  text-align: center;
  border-radius: 0.8928571429vw;
  margin-bottom: 1.7825311942959003vw;
}

.furusato .five_step .note ul li {
  font-size: 1.6042780748663104vw;
}

.furusato .over_footer {
  margin: 0 0 12.4777183600713vw;
}

.furusato .over_footer a {
  display: block;
  width: 33.8680926916221vw;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .furusato .campaign__title {
    font-size: 3.5rem;
    gap: 1.5rem;
  }

  .furusato .fv__content {
    margin: 9rem calc(50% - 50vw) 0;
    padding: 0 5.35rem 1.78rem;
  }

  .furusato .fv__content h3 {
    margin: -6.94rem 0 3.47rem;
    padding: 3rem 0;
    width: 58rem;
    font-size: 3.8rem;
  }

  .furusato .fv__content h3::after {
    border-width: 3rem 2rem 0 2rem;
  }

  .furusato .fv__content .fv__text {
    padding: 1.60rem;
  }

  .furusato .fv__content .fv__text p em {
    font-size: 3rem;
  }

  .furusato .fv__content .fv__text .note {
    font-size: 2.2rem;
  }

  .furusato .title_shadow {
    font-size: 2.8rem;
  }

  .furusato .title_shadow span {
    box-shadow: 0 0 0 0.36rem #0066cb;
    padding: 0.89rem;
  }

  .furusato .five_step h3 span {
    font-size: 2.8rem;
  }

  .furusato .available {
    margin-top: 3.92rem;
  }

  .furusato .available p {
    font-size: 2.2rem;
  }

  .furusato .available .blue-line__box {
    margin-top: -3.57rem;
    padding: 6rem 3.21rem 3.21rem;
  }

  .furusato .available .blue-line__box .available_img {
    width: 35rem;
    margin: 0.54rem auto 1.43rem;
  }

  .furusato .available .blue-line__box a {
    width: 30.5rem;
  }

  .furusato .donation {
    margin-top: 3.92rem;
  }

  .furusato .donation .blue-line__box {
    padding: 5rem 3.21rem 3.21rem;
  }

  .furusato .donation .blue-line__box p {
    font-size: 2.2rem;
  }

  .furusato .donation .blue-line__box table {
    font-size: 1.9rem;
    margin: 2.67rem auto 0;
  }

  .furusato .donation .blue-line__box table th,
  .furusato .donation .blue-line__box table td {
    padding: 1.25rem 0 0.71rem 2.32rem;
  }

  .furusato .application {
    margin-top: 3.92rem;
  }

  .furusato .application .blue-line__box {
    padding: 4.5rem 3.21rem 3.21rem;
  }

  .furusato .application .blue-line__box p {
    font-size: 2.2rem;
  }

  .furusato .application .blue-line__box ul {
    margin: 1.25rem 0 2rem;
  }

  .furusato .application .blue-line__box ul li {
/*    line-height: 1.4;*/
    line-height: 1.6;
    font-size: 1.9rem;

  }

  .furusato .application .blue-line__box ul li a {
    font-size: 1.9rem;
  }

  .furusato .application .blue-line__box .note {
    font-size: 1.4rem;
  }

  .furusato .five_step .blue-line__box {
    padding: 7.84rem 6.42rem 4.81rem;
  }

  .furusato .five_step .blue-line__box .step_list .flex .step_text p {
    font-size: 1.4rem;
  }

  .furusato .five_step .step_list .step1 {
    padding-bottom: 2.67rem;
  }

  .furusato .five_step .step_list .step2 {
    padding-bottom: 3.57rem;
  }

  .furusato .five_step .blue-dotline__box {
    padding: 2.50rem 1.80rem 2.32rem;
    margin: 2.50rem 0 1.25rem;
  }

  .furusato .five_step .step_list .step4 {
    padding-bottom: 3.57rem;
  }

  .furusato .five_step .note {
    padding: 1.43rem 2.32rem;
  }

  .furusato .five_step .note h5 {
    border-radius: 0.89rem;
    margin-bottom: 1.78rem;
    font-size: 2rem;
  }

  .furusato .five_step .note ul li {
    font-size: 1.60rem;
  }

  .furusato .over_footer {
    margin: 4rem 0 5rem;
  }

  .furusato .over_footer a {
    width: 30.5rem;
  }
}


.campaign_2 .campaign .campaign_term {
  width: 95.6%;
  margin: 1.9vw auto 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.campaign_2 .campaign .campaign_term .campaign_term_title {
  flex: 0 0 auto;
  margin-right: 0;
  white-space: nowrap;
}

.campaign_2 .campaign .campaign_term .campaign_term_date {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  padding: 0.5vw 1.6vw;
}

@media screen and (min-width: 768px) {
  .campaign_2 .campaign .campaign_term {
    width: 95.6%;
    margin: 1.875rem auto 0;
  }

  .campaign_2 .campaign .campaign_term .campaign_term_date {
    padding: 0.3125rem 1.4rem;
  }
}

@media screen and (min-width: 1300px) {
  .campaign_2 .campaign .campaign_term .campaign_term_date {
    padding: 0.3125rem 1.2rem;
  }
}


.campaign_page .content01 dl:last-of-type dd:last-of-type {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

/* =========================================================
   R807 キャンペーン期間 表示調整 最終上書き
   左ラベルの高さを右側（日付＋注意書き）に合わせる
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
  display: flex !important;
  align-items: stretch !important;
  width: 95.6% !important;
  margin: 1.9vw auto 0 !important;
  padding: 0 !important;
  gap: 1.2vw !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex: 0 0 24% !important;
  align-self: stretch !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0.55vw 1.4vw !important;
  background: transparent !important;
  border: 0.35vw solid #fff !important;
  border-radius: 0.5357142857vw !important;
  color: #fff !important;
  font-size: 1.65vw !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.05em !important;
  box-shadow: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  -webkit-text-stroke: 1px #0066cb !important;
  text-shadow:
    1px 1px 0 #0066cb,
    -1px 1px 0 #0066cb,
    1px -1px 0 #0066cb,
    -1px -1px 0 #0066cb,
    0 1px 0 #0066cb,
    1px 0 0 #0066cb,
    0 -1px 0 #0066cb,
    -1px 0 0 #0066cb !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 2.4vw !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.05em !important;
  box-shadow: none !important;
  text-align: left !important;
  white-space: normal !important;
  -webkit-text-stroke: 1px #0066cb !important;
  text-shadow:
    1px 1px 0 #0066cb,
    -1px 1px 0 #0066cb,
    1px -1px 0 #0066cb,
    -1px -1px 0 #0066cb,
    0 1px 0 #0066cb,
    1px 0 0 #0066cb,
    0 -1px 0 #0066cb,
    -1px 0 0 #0066cb !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
  display: inline-block !important;
  font-size: 1.5em !important;
  line-height: 0.9 !important;
  color: #fff !important;
  -webkit-text-stroke: 1px #0066cb !important;
  text-shadow:
    1px 1px 0 #0066cb,
    -1px 1px 0 #0066cb,
    1px -1px 0 #0066cb,
    -1px -1px 0 #0066cb,
    0 1px 0 #0066cb,
    1px 0 0 #0066cb,
    0 -1px 0 #0066cb,
    -1px 0 0 #0066cb !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
  display: inline-block !important;
  margin-top: 0.3vw !important;
  font-size: 0.5em !important;
  line-height: 1.4 !important;
  color: #fff !important;
  -webkit-text-stroke: 0.5px #0066cb !important;
  text-shadow:
    1px 1px 0 #0066cb,
    -1px 1px 0 #0066cb,
    1px -1px 0 #0066cb,
    -1px -1px 0 #0066cb !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
  box-sizing: border-box !important;
  width: 95.6% !important;
  margin: 0.8vw auto 0 !important;
  padding: 0.65vw 1vw !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border-radius: 0.5357142857vw !important;
  color: #0066cb !important;
  font-size: 1.55vw !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    margin: 1.875rem auto 0 !important;
    gap: 1.2rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex-basis: 12.5rem !important;
    padding: 0.5rem 1.3rem !important;
    border-width: 0.25rem !important;
    border-radius: 0.2rem !important;
    font-size: 1.3rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    font-size: 2.05rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    margin-top: 0.8rem !important;
    padding: 0.55rem 1rem !important;
    border-radius: 0.2rem !important;
    font-size: 1.35rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 95.6% !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex: 0 0 29% !important;
    align-self: stretch !important;
    padding: 1.6vw 2vw !important;
    border-width: 0.8vw !important;
    border-radius: 1.5vw !important;
    font-size: 3.4vw !important;
    white-space: normal !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    flex: 1 1 auto !important;
    width: auto !important;
    font-size: 4.5vw !important;
    text-align: left !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 95.6% !important;
    margin-top: 2vw !important;
    padding: 1.8vw 2vw !important;
    border-radius: 1.5vw !important;
    font-size: 3.4vw !important;
    text-align: center !important;
  }
}

/* =========================================================
   R807 キャンペーン期間 右側テキスト崩れ修正
   日付行と注意書きを個別ブロック化して行高を安定
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 0.25em !important;
  overflow: visible !important;
  line-height: 1 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 1em !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  -webkit-text-stroke: 1px #0066cb !important;
  text-shadow:
    1px 1px 0 #0066cb,
    -1px 1px 0 #0066cb,
    1px -1px 0 #0066cb,
    -1px -1px 0 #0066cb,
    0 1px 0 #0066cb,
    1px 0 0 #0066cb,
    0 -1px 0 #0066cb,
    -1px 0 0 #0066cb !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
  display: inline !important;
  font-size: 1.5em !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.5em !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    font-size: 1.92rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    gap: 1.6vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex: 0 0 28% !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    font-size: 4.05vw !important;
    gap: 0.1em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 0.48em !important;
    line-height: 1.45 !important;
  }
}

/* =========================================================
   R807 追加修正 2026 campaign term and charge method
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 * {
  color: #fff !important;
  -webkit-text-stroke: 0 transparent !important;
  text-stroke: 0 transparent !important;
  text-shadow: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
  align-items: stretch !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  align-self: stretch !important;
  min-height: unset !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0.25rem solid #fff !important;
  color: #fff !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0.25em !important;
  color: #fff !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
  color: #fff !important;
  -webkit-text-stroke: 0 transparent !important;
  text-stroke: 0 transparent !important;
  text-shadow: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
  display: flex !important;
  align-items: stretch !important;
  margin: 0 0 1.5vw !important;
  border: 2px solid #9ed8f5 !important;
  border-radius: 0.5rem !important;
  overflow: hidden !important;
  background: #fff !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
  box-sizing: border-box !important;
  width: 9.6vw !important;
  min-width: 9.6vw !important;
  padding: 1.2vw 0.6vw !important;
  background: #e9f8ff !important;
  color: #0066cb !important;
  border: none !important;
  border-right: 2px solid #9ed8f5 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 1.5vw !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.06em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
  box-sizing: border-box !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
  padding: 1.4vw 1.7vw !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 1.45vw !important;
  line-height: 1.6 !important;
  letter-spacing: 0.02em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__inner {
  display: block !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section + .charge_method_r807__section {
  margin-top: 1.2vw !important;
  padding-top: 1.2vw !important;
  border-top: 1px solid #d9edf8 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
  margin: 0 0 0.35em !important;
  padding: 0 !important;
  color: #0066cb !important;
  font-size: 1.65vw !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.04em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p {
  margin: 0 !important;
  padding: 0 !important;
  color: #000 !important;
  font-size: inherit !important;
  line-height: 1.6 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  color: #000 !important;
  font-size: inherit !important;
  line-height: 1.6 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li::before {
  display: none !important;
  content: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    margin: 0 0 1rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 8.875rem !important;
    min-width: 8.875rem !important;
    padding: 1rem !important;
    font-size: 1.35rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    padding: 1rem 1.25rem !important;
    font-size: 1.18rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section + .charge_method_r807__section {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
    font-size: 1.35rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    border-width: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    margin: 0 0 2vw !important;
    border-radius: 1.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 24vw !important;
    min-width: 24vw !important;
    padding: 2vw 1.5vw !important;
    font-size: 3.2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    padding: 2.4vw 2.6vw !important;
    font-size: 3.1vw !important;
    line-height: 1.55 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section + .charge_method_r807__section {
    margin-top: 2.2vw !important;
    padding-top: 2.2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
    font-size: 3.5vw !important;
  }
}

/* =========================================================
   R807 修正: キャンペーン期間ラベル 白文字フチなし・2行分高さ固定
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
  align-items: stretch !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 #fff !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 #fff !important;
  text-shadow: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  min-height: 4.25rem !important;
  height: auto !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  line-height: 1.2 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  min-height: 4.25rem !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    min-height: 10.2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    min-height: 10.2vw !important;
  }
}

/* =========================================================
   R807 修正: キャンペーン期間3行 1.3倍・紺色影追加
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 * {
  -webkit-text-stroke: 0 transparent !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 transparent !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
  display: flex !important;
  align-items: stretch !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  font-size: 1.3em !important;
  line-height: 1.2 !important;
  text-shadow: 2px 2px 0 #003366 !important;
  min-height: auto !important;
  height: auto !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
  font-size: 1.3em !important;
  line-height: 1.35 !important;
  text-shadow: 2px 2px 0 #003366 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
  font-size: 0.65em !important;
  line-height: 1.35 !important;
  text-shadow: 2px 2px 0 #003366 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
  font-size: 1.5em !important;
  line-height: 1 !important;
  vertical-align: -0.04em !important;
  text-shadow: 2px 2px 0 #003366 !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    align-items: stretch !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 3.8vw !important;
    min-height: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    min-height: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 3.8vw !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.9vw !important;
    line-height: 1.35 !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間ラベルの高さ・幅を1.3倍、不要項目削除対応
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  flex-basis: 31.2% !important; /* 24% x 1.3 */
  min-width: 31.2% !important;
  min-height: 5.6rem !important;
  padding: 0.715vw 1.82vw !important; /* 元指定のおよそ1.3倍 */
  font-size: 1.3em !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 transparent !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 transparent !important;
  text-shadow: 2px 2px 0 #003366 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  min-height: 5.6rem !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex-basis: 31.2% !important;
    min-width: 31.2% !important;
    min-height: 14.5vw !important;
    padding: 2.6vw 1.95vw !important;
    font-size: 3.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    min-height: 14.5vw !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間/日付/チャージ方法サイズ調整
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  font-size: 1.5em !important;
  line-height: 1.2 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
  font-size: 1.3em !important;
  line-height: 1.35 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
  width: 12.48vw !important;
  min-width: 12.48vw !important;
  font-size: 1.95vw !important;
  line-height: 1.25 !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 4.4vw !important;
    line-height: 1.2 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 3.8vw !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 31.2% !important;
    min-width: 31.2% !important;
    font-size: 4.42vw !important;
    line-height: 1.25 !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間ブロックをブラウザ幅80%で中央配置
   対象: キャンペーン期間 / 日付 / 注意書き / 付与ポイント期限
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
  width: 80vw !important;
  max-width: 80vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
  width: 80vw !important;
  max-width: 80vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
  flex: 1 1 auto !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 80vw !important;
    max-width: 80vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 80vw !important;
    max-width: 80vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* === R807 override: STEP label right edge changed from semicircle to triangle === */
html body main.campaign_page .five_step .step_list > li h5 span {
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  padding-right: 1.2vw !important;
  position: absolute !important;
  overflow: visible !important;
}

html body main.campaign_page .five_step .step_list > li h5 span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 2.1vw;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5 span {
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    padding-right: 1.2rem !important;
  }

  html body main.campaign_page .five_step .step_list > li h5 span::after {
    width: 2rem;
  }
}

/* === R807 override: make STEP triangle angle slightly more obtuse === */
html body main.campaign_page .five_step .step_list > li h5 span::after {
  width: 1.35vw !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5 span::after {
    width: 1.3rem !important;
  }
}

/* === R807 override: make the right edge of STEP title text (download to use) a triangle === */
html body main.campaign_page .five_step .step_list > li h5 {
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
}

html body main.campaign_page .five_step .step_list > li h5::after {
  content: "" !important;
  position: absolute !important;
  top: -0.1875vw !important;
  left: 100% !important;
  width: 1.35vw !important;
  height: calc(100% + 0.375vw) !important;
  background: #0066cb !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: -1 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5 {
    border-radius: 0.10975rem 0 0 0.10975rem !important;
  }

  html body main.campaign_page .five_step .step_list > li h5::after {
    top: -0.1875rem !important;
    width: 1.3rem !important;
    height: calc(100% + 0.375rem) !important;
  }
}

/* === R807 override: remove shadow from STEP1 to STEP5 headings === */
html body main.campaign_page .five_step .step_list > li h5,
html body main.campaign_page .five_step .step_list > li h5 span,
html body main.campaign_page .five_step .step_list > li h5::after,
html body main.campaign_page .five_step .step_list > li h5 span::after {
  box-shadow: none !important;
  text-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5,
  html body main.campaign_page .five_step .step_list > li h5 span,
  html body main.campaign_page .five_step .step_list > li h5::after,
  html body main.campaign_page .five_step .step_list > li h5 span::after {
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
    filter: none !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間3行の文字シャドウを半透明・上下左右に変更
   対象: キャンペーン期間 / 日付 / 注意書き
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 transparent !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 transparent !important;
  text-shadow:
    1px 0 0 rgba(0, 32, 96, 0.55),
    -1px 0 0 rgba(0, 32, 96, 0.55),
    0 1px 0 rgba(0, 32, 96, 0.55),
    0 -1px 0 rgba(0, 32, 96, 0.55) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term_r807 .campaign_term_r807__note {
    text-shadow:
      0.18vw 0 0 rgba(0, 32, 96, 0.55),
      -0.18vw 0 0 rgba(0, 32, 96, 0.55),
      0 0.18vw 0 rgba(0, 32, 96, 0.55),
      0 -0.18vw 0 rgba(0, 32, 96, 0.55) !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間3行のシャドウを左右・上下・ぼかし付きに強制適用
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 > .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__date > .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__date > .campaign_term_r807__note {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  filter: none !important;
  -webkit-filter: none !important;
  text-shadow:
    2px 0 5px rgba(0, 31, 84, 0.72),
    -2px 0 5px rgba(0, 31, 84, 0.72),
    0 2px 5px rgba(0, 31, 84, 0.72),
    0 -2px 5px rgba(0, 31, 84, 0.72) !important;
}

html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__large {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2px 0 5px rgba(0, 31, 84, 0.72),
    -2px 0 5px rgba(0, 31, 84, 0.72),
    0 2px 5px rgba(0, 31, 84, 0.72),
    0 -2px 5px rgba(0, 31, 84, 0.72) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 > .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__date > .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__date > .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    text-shadow:
      0.35vw 0 0.8vw rgba(0, 31, 84, 0.72),
      -0.35vw 0 0.8vw rgba(0, 31, 84, 0.72),
      0 0.35vw 0.8vw rgba(0, 31, 84, 0.72),
      0 -0.35vw 0.8vw rgba(0, 31, 84, 0.72) !important;
  }
}

/* =========================================================
   R807 追加修正: キャンペーン期間3行すべてに同一のぼかしシャドウを強制適用
   対象: キャンペーン期間 / 日付 / 数字 / 注意書き
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  text-shadow:
    2px 0 5px rgba(0, 31, 84, 0.72),
    -2px 0 5px rgba(0, 31, 84, 0.72),
    0 2px 5px rgba(0, 31, 84, 0.72),
    0 -2px 5px rgba(0, 31, 84, 0.72) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.35vw 0 0.8vw rgba(0, 31, 84, 0.72),
      -0.35vw 0 0.8vw rgba(0, 31, 84, 0.72),
      0 0.35vw 0.8vw rgba(0, 31, 84, 0.72),
      0 -0.35vw 0.8vw rgba(0, 31, 84, 0.72) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1「ダウンロード」右側三角のみ少し右へ移動
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  left: calc(100% + 0.35vw) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    left: calc(100% + 0.35rem) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1「ダウンロード」右側三角を青い四角に密着
   - 前回の右ずらしを解除
   - 四角の右上/右下と三角の左上/左下が揃うように調整
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  left: calc(100% - 0.1875vw) !important;
  top: -0.1875vw !important;
  height: calc(100% + 0.375vw) !important;
  width: 1.35vw !important;
  background: #0066cb !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    left: calc(100% - 0.1875rem) !important;
    top: -0.1875rem !important;
    height: calc(100% + 0.375rem) !important;
    width: 1.3rem !important;
  }
}

/* =========================================================
   R807 再修正: STEP1「ダウンロード」右側三角の接続位置を調整
   - 四角の右上/右下と三角の左上/左下を外枠基準で揃える
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  overflow: visible !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  left: calc(100% + 0.1875vw) !important;
  top: -0.1875vw !important;
  height: calc(100% + 0.375vw) !important;
  width: 1.35vw !important;
  margin: 0 !important;
  transform: none !important;
  background: #0066cb !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    border-radius: 0.10975rem 0 0 0.10975rem !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    left: calc(100% + 0.1875rem) !important;
    top: -0.1875rem !important;
    height: calc(100% + 0.375rem) !important;
    width: 1.3rem !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1「ダウンロード」の青い四角右側を三角形に一体化
   - 別パーツの三角(::after)を非表示
   - 見出し本体の右端をclip-pathで三角形にする
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  width: calc(31.5vw + 1.35vw) !important;
  padding-right: 1.35vw !important;
  background: #0066cb !important;
  border-color: #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  overflow: visible !important;
  -webkit-clip-path: polygon(0 0, calc(100% - 1.35vw) 0, 100% 50%, calc(100% - 1.35vw) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - 1.35vw) 0, 100% 50%, calc(100% - 1.35vw) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    width: calc(28.5rem + 1.3rem) !important;
    padding-right: 1.3rem !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 50%, calc(100% - 1.3rem) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 50%, calc(100% - 1.3rem) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP2からSTEP5の青い見出し右側もSTEP1と同じ一体型三角に統一
   - h5::afterの別パーツ三角は非表示
   - h5本体の右端をclip-pathで三角形にする
   ========================================================= */
html body main.campaign_page .five_step .step_list > li h5 {
  width: calc(31.5vw + 1.35vw) !important;
  padding-right: 1.35vw !important;
  background: #0066cb !important;
  border-color: #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  overflow: visible !important;
  -webkit-clip-path: polygon(0 0, calc(100% - 1.35vw) 0, 100% 50%, calc(100% - 1.35vw) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - 1.35vw) 0, 100% 50%, calc(100% - 1.35vw) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li h5::after {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5 {
    width: calc(28.5rem + 1.3rem) !important;
    padding-right: 1.3rem !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 50%, calc(100% - 1.3rem) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - 1.3rem) 0, 100% 50%, calc(100% - 1.3rem) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 追加修正: チャージ方法「①アプリダウンロード」の右側にアプリDL導線を追加
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 1.4vw !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 1.1vw !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
  display: grid !important;
  grid-template-columns: 6.4vw 4.5vw !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 0.45vw !important;
  row-gap: 0.25vw !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
  grid-column: 1 / 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #0066cb !important;
  font-size: 1.05vw !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  letter-spacing: 0.03em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
  display: block !important;
  line-height: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
  display: block !important;
  width: 6.4vw !important;
  max-width: none !important;
  height: auto !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
  display: block !important;
  width: 4.5vw !important;
  max-width: none !important;
  height: auto !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    column-gap: 1rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    gap: 0.75rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: 5.2rem 3.55rem !important;
    column-gap: 0.35rem !important;
    row-gap: 0.2rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 0.88rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    width: 5.2rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 3.55rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: 1fr !important;
    row-gap: 2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    justify-content: flex-start !important;
    gap: 2.2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: 22vw 13vw !important;
    column-gap: 1.2vw !important;
    row-gap: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 2.6vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    width: 22vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 13vw !important;
  }
}

/* =========================================================
   R807 追加修正: チャージ方法内のアプリダウンロード導線の表示幅調整
   - iPhone / Androidの幅を均等化
   - 説明文とアプリ導線の比率を整理
   - スマホでは中央寄せで崩れにくく表示
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
  box-sizing: border-box !important;
  width: 100% !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
  display: grid !important;
  grid-template-columns: minmax(15em, 0.92fr) minmax(20em, 1.08fr) !important;
  align-items: center !important;
  column-gap: 1.6em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
  justify-content: stretch !important;
  gap: 1.1em !important;
  width: 100% !important;
  max-width: 34em !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 0.45em !important;
  row-gap: 0.35em !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
  grid-column: 1 / 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
  display: block !important;
  width: 100% !important;
  max-width: 8.2em !important;
  height: auto !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
  display: block !important;
  width: 4.25em !important;
  max-width: 4.25em !important;
  height: auto !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: minmax(16rem, 0.95fr) minmax(23rem, 1.05fr) !important;
    column-gap: 1.5rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    max-width: 32rem !important;
    gap: 1rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    max-width: 7.6rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 3.9rem !important;
    max-width: 3.9rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: 1fr !important;
    row-gap: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.6vw !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: minmax(0, 1fr) 13vw !important;
    column-gap: 1.4vw !important;
    row-gap: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    width: 100% !important;
    max-width: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 13vw !important;
    max-width: 13vw !important;
  }
}

/* =========================================================
   R807 追加修正: チャージ方法 右側 for iPhone / for Android の高さを1.3倍
   - ①アプリダウンロード右側の2列ブロックのみ対象
   - 画像サイズは維持しつつ、ブロック高さと余白を拡大して表示を整える
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
  min-height: 6.9rem !important;
  align-content: center !important;
  row-gap: 0.55em !important;
  padding-top: 0.45em !important;
  padding-bottom: 0.45em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps h6 {
  line-height: 1.3 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 6.9rem !important;
    row-gap: 0.55rem !important;
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 24vw !important;
    row-gap: 1.2vw !important;
    padding-top: 1.2vw !important;
    padding-bottom: 1.2vw !important;
  }
}

/* =========================================================
   R807 追加修正: ①アプリダウンロード右側 for iPhone / for Android の画像を約1.3倍
   - StoreボタンとQR画像の高さを基準に約1.3倍
   - 幅は縦横比に合わせて拡大
   - 対象はチャージ方法ブロック右側のみ
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
  min-height: 8.6rem !important;
  row-gap: 0.7em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__store_btn {
  width: 100% !important;
  max-width: 10.66em !important;
  height: auto !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr {
  width: 5.53em !important;
  max-width: 5.53em !important;
  height: auto !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 8.9rem !important;
    row-gap: 0.7rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__store_btn {
    max-width: 9.88rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr {
    width: 5.07rem !important;
    max-width: 5.07rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 31vw !important;
    row-gap: 1.4vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    grid-template-columns: minmax(0, 1fr) 16.9vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr {
    width: 16.9vw !important;
    max-width: 16.9vw !important;
  }
}

/* =========================================================
   R807 追加修正: ①アプリダウンロードの上下余白を②アプリでチャージに揃える
   - 画像サイズは前回指定の約1.3倍を維持
   - セクション外側の上下余白を②側と同じ基準に統一
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
  padding-top: 1.2vw !important;
  padding-bottom: 1.2vw !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    padding-top: 3vw !important;
    padding-bottom: 3vw !important;
  }
}

/* =========================================================
   R807 追加修正: ①アプリダウンロードの高さを元に戻す
   - セクション上下余白を②アプリでチャージと同じ追加調整から戻す
   - for iPhone / for Android の画像拡大は維持
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* =========================================================
   R807 追加修正: ②アプリでチャージ 右側画像 app_charge_img.png
   - 手順テキストを左、画像を右に配置
   - 画像は元画像比率を維持して表示
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 15rem) !important;
  align-items: center !important;
  column-gap: 1.4rem !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text {
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
  display: block !important;
  width: 100% !important;
  max-width: 15rem !important;
  height: auto !important;
  max-height: 9.6rem !important;
  object-fit: contain !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    grid-template-columns: 1fr !important;
    row-gap: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
    width: 100% !important;
    max-width: 64vw !important;
    max-height: 40vw !important;
    margin: 0 auto !important;
  }
}

/* =========================================================
   R807 追加修正: app_charge_img.png の高さを左側テキストブロックに合わせる
   - ②アプリでチャージのグリッド行を stretch
   - 右側画像エリアを左側テキストの高さに追従
   - 画像は縦横比を維持して高さ100%表示
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  align-items: stretch !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text {
  align-self: stretch !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 100% !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
    height: auto !important;
    min-height: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
    width: 100% !important;
    max-width: 64vw !important;
    height: auto !important;
    max-height: none !important;
  }
}

/* =========================================================
   R807 追加修正: ②アプリでチャージ 手順4の注意書き
   - 手順4の直下に表示
   - 文字サイズは手順4の0.7倍
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_note {
  display: block !important;
  margin-top: 0.35em !important;
  font-size: 0.7em !important;
  line-height: 1.5 !important;
  color: #000 !important;
  font-weight: 400 !important;
}

/* =========================================================
   R807 追加修正: app_charge_img.png の表示幅を1.5倍
   - 右側カラム幅を拡張
   - 画像の表示可能幅を1.5倍に調整
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22.5rem) !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
  width: 100% !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  max-width: 150% !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
    max-width: 96vw !important;
  }
}

/* =========================================================
   R807 追加修正: app_charge_img.png の表示幅を1.2倍
   - 1.5倍指定を上書きして1.2倍へ調整
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  grid-template-columns: minmax(0, 1fr) minmax(14.4rem, 18rem) !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  max-width: 120% !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
    max-width: 76.8vw !important;
  }
}

/* =========================================================
   R807 追加修正: app_charge_img.png の表示幅をさらに1.3倍
   - 現在の1.2倍表示を基準に、さらに1.3倍へ拡大
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  grid-template-columns: minmax(0, 1fr) minmax(18.72rem, 23.4rem) !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  max-width: 156% !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
    max-width: 99.84vw !important;
  }
}

/* =========================================================
   R807 追加修正: app_charge_img.png の表示幅をさらに1.2倍
   - 現在の表示幅を基準にさらに1.2倍へ拡大
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  grid-template-columns: minmax(0, 1fr) minmax(22.464rem, 28.08rem) !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  max-width: 187.2% !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
    max-width: 119.808vw !important;
  }
}

/* =========================================================
   R807 最終調整: キャンペーン期間タイトルの文字サイズを「2026年」と同じに統一
   + キャンペーン期間3行のシャドウを #0000cd に変更し少し大きくする
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  font-size: 1.3em !important;
  line-height: 1.35 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2.6px 0 6px rgba(0, 0, 205, 0.82),
    -2.6px 0 6px rgba(0, 0, 205, 0.82),
    0 2.6px 6px rgba(0, 0, 205, 0.82),
    0 -2.6px 6px rgba(0, 0, 205, 0.82) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 3.8vw !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.45vw 0 1vw rgba(0, 0, 205, 0.82),
      -0.45vw 0 1vw rgba(0, 0, 205, 0.82),
      0 0.45vw 1vw rgba(0, 0, 205, 0.82),
      0 -0.45vw 1vw rgba(0, 0, 205, 0.82) !important;
  }
}

/* =========================================================
   R807 最終調整: キャンペーン期間のフォントを1.5倍、シャドウ色を #000080 に変更
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  font-size: 1.5em !important;
  line-height: 1.35 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2.6px 0 6px rgba(0, 0, 128, 0.82),
    -2.6px 0 6px rgba(0, 0, 128, 0.82),
    0 2.6px 6px rgba(0, 0, 128, 0.82),
    0 -2.6px 6px rgba(0, 0, 128, 0.82) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 5.7vw !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.45vw 0 1vw rgba(0, 0, 128, 0.82),
      -0.45vw 0 1vw rgba(0, 0, 128, 0.82),
      0 0.45vw 1vw rgba(0, 0, 128, 0.82),
      0 -0.45vw 1vw rgba(0, 0, 128, 0.82) !important;
  }
}

/* =========================================================
   R807 最終調整: キャンペーン期間のフォントをさらに1.3倍、シャドウ色を #00bfff に変更
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
  font-size: 1.95em !important;
  line-height: 1.35 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2.6px 0 6px rgba(0, 191, 255, 0.86),
    -2.6px 0 6px rgba(0, 191, 255, 0.86),
    0 2.6px 6px rgba(0, 191, 255, 0.86),
    0 -2.6px 6px rgba(0, 191, 255, 0.86) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 7.41vw !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.45vw 0 1vw rgba(0, 191, 255, 0.86),
      -0.45vw 0 1vw rgba(0, 191, 255, 0.86),
      0 0.45vw 1vw rgba(0, 191, 255, 0.86),
      0 -0.45vw 1vw rgba(0, 191, 255, 0.86) !important;
  }
}

/* =========================================================
   R807 最終調整: キャンペーン期間3行のシャドウ色を #4496d3 に変更
   対象: キャンペーン期間 / 日付 / 注意書き
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2.6px 0 6px rgba(68, 150, 211, 0.86),
    -2.6px 0 6px rgba(68, 150, 211, 0.86),
    0 2.6px 6px rgba(68, 150, 211, 0.86),
    0 -2.6px 6px rgba(68, 150, 211, 0.86) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.45vw 0 1vw rgba(68, 150, 211, 0.86),
      -0.45vw 0 1vw rgba(68, 150, 211, 0.86),
      0 0.45vw 1vw rgba(68, 150, 211, 0.86),
      0 -0.45vw 1vw rgba(68, 150, 211, 0.86) !important;
  }
}

/* =========================================================
   R807 最終調整: キャンペーン期間3行のシャドウ色を #0075c2 に変更
   対象: キャンペーン期間 / 日付 / 注意書き
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-stroke: 0 !important;
  text-shadow:
    2.6px 0 6px rgba(0, 117, 194, 0.86),
    -2.6px 0 6px rgba(0, 117, 194, 0.86),
    0 2.6px 6px rgba(0, 117, 194, 0.86),
    0 -2.6px 6px rgba(0, 117, 194, 0.86) !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.45vw 0 1vw rgba(0, 117, 194, 0.86),
      -0.45vw 0 1vw rgba(0, 117, 194, 0.86),
      0 0.45vw 1vw rgba(0, 117, 194, 0.86),
      0 -0.45vw 1vw rgba(0, 117, 194, 0.86) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP3 画像を必要事項テーブルへ変更
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex {
  align-items: flex-start !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap {
  width: 100% !important;
  max-width: 33rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table {
  width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  background: #fff !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  border: 2px solid #2f7fc2 !important;
  padding: 0.9rem 1rem !important;
  vertical-align: middle !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
  width: 30% !important;
  background: #dff1ff !important;
  color: #005b9a !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.45 !important;
  font-size: 1.05rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  background: #fff !important;
  color: #333 !important;
  line-height: 1.7 !important;
  font-size: 0.98rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list {
  text-align: left !important;
  word-break: break-word !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
  margin-top: 0.4rem !important;
  text-align: right !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  color: #333 !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap {
    max-width: 100% !important;
    margin-top: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    padding: 2.6vw 2.8vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
    width: 32% !important;
    font-size: 3.5vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    font-size: 3.15vw !important;
    line-height: 1.65 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
    margin-top: 1.2vw !important;
    font-size: 2.5vw !important;
  }
}

/* =========================================================
   R807 追加修正: STEP3 必要なものテーブルのデザイン調整
   - 枠線を削除
   - 背景色を左側に統一
   - 文字を太字
   - 角を丸くする
   - レスポンシブ対応
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap {
  width: 100% !important;
  max-width: 33rem !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: fixed !important;
  background: #dff1ff !important;
  border: none !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  border: none !important;
  background: #dff1ff !important;
  color: #005b9a !important;
  font-weight: 700 !important;
  padding: 1rem 1.1rem !important;
  vertical-align: middle !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
  width: 30% !important;
  text-align: center !important;
  line-height: 1.45 !important;
  font-size: 1.05rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  line-height: 1.8 !important;
  font-size: 0.98rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list {
  text-align: left !important;
  word-break: break-word !important;
  font-weight: 700 !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
  margin-top: 0.5rem !important;
  text-align: right !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  color: #333 !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap {
    max-width: 100% !important;
    margin-top: 3vw !important;
    border-radius: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table {
    border-radius: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    padding: 2.8vw 3vw !important;
    border: none !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
    width: 32% !important;
    font-size: 3.5vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    font-size: 3.15vw !important;
    line-height: 1.7 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
    margin-top: 1.2vw !important;
    font-size: 2.5vw !important;
  }
}

/* =========================================================
   R807 追加修正: チャージ方法ブロックのレスポンシブ安定化
   - フォントサイズを clamp() で可変化
   - App Store / Google Play / QR / チャージ手順画像の最大幅を制御
   - PCは横並び、スマホは縦並びで崩れないよう調整
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807,
html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 * {
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: stretch !important;
  overflow: visible !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
  flex: 0 0 clamp(8rem, 13vw, 13rem) !important;
  width: clamp(8rem, 13vw, 13rem) !important;
  min-width: clamp(8rem, 13vw, 13rem) !important;
  font-size: clamp(1.15rem, 1.55vw, 1.75rem) !important;
  line-height: 1.3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  word-break: keep-all !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  overflow: visible !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__inner {
  width: 100% !important;
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section {
  width: 100% !important;
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  line-height: 1.35 !important;
  margin-bottom: 0.45em !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p,
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem) !important;
  line-height: 1.65 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
  display: grid !important;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(17rem, 1.25fr) !important;
  column-gap: clamp(1rem, 2.4vw, 2.4rem) !important;
  row-gap: 1rem !important;
  align-items: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(0.75rem, 1.6vw, 1.25rem) !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-items: center !important;
  justify-items: center !important;
  row-gap: 0.55rem !important;
  padding: clamp(0.7rem, 1.1vw, 1rem) !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
  width: 100% !important;
  font-size: clamp(0.85rem, 1vw, 1rem) !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
  width: 100% !important;
  max-width: 10.5rem !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
  width: 100% !important;
  max-width: 10.5rem !important;
  height: auto !important;
  display: block !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
  width: clamp(4.8rem, 7.4vw, 6.3rem) !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
  display: grid !important;
  grid-template-columns: minmax(17rem, 1fr) minmax(13rem, 0.74fr) !important;
  column-gap: clamp(1rem, 2.2vw, 2.2rem) !important;
  row-gap: 1rem !important;
  align-items: center !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text {
  min-width: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text ul {
  margin: 0 !important;
  padding: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_note {
  display: block !important;
  margin-top: 0.45em !important;
  font-size: 0.74em !important;
  line-height: 1.55 !important;
  overflow-wrap: break-word !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_image {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
  width: min(100%, 23rem) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}

@media screen and (max-width: 1024px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem) !important;
  }
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 3.2vw 4vw !important;
    font-size: clamp(1.2rem, 5vw, 1.55rem) !important;
    line-height: 1.25 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    width: 100% !important;
    min-width: 0 !important;
    padding: 4vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem) !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
    font-size: clamp(0.86rem, 3.7vw, 1rem) !important;
    line-height: 1.7 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4vw !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
    width: 100% !important;
    text-align: left !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    grid-template-columns: 1fr !important;
    gap: 3.6vw !important;
    width: 100% !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    width: 100% !important;
    padding: 3.6vw !important;
    row-gap: 2.3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: clamp(0.9rem, 4vw, 1.08rem) !important;
    line-height: 1.35 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    max-width: min(52vw, 12rem) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: min(34vw, 7.8rem) !important;
    max-width: 100% !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_note {
    font-size: 0.72em !important;
    line-height: 1.55 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_image {
    width: 100% !important;
    justify-content: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
    width: min(82vw, 22rem) !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    padding: 3.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
    font-size: 3.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    max-width: 58vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 38vw !important;
  }
}

/* =========================================================
   R807 追加修正: チャージ方法をスマホ表示でも横並びで保持
   - 左ラベル/右コンテンツを横並び維持
   - ①アプリダウンロードも説明文 + iPhone/Android導線を横並びで縮小
   - ②アプリでチャージも手順 + 画像を横並びで縮小
   - 小さい画面で崩れないようフォント/画像サイズを抑制
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    flex: 0 0 24% !important;
    width: 24% !important;
    min-width: 24% !important;
    padding: 2.4vw 1.4vw !important;
    font-size: clamp(0.72rem, 3.1vw, 1rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    flex: 1 1 76% !important;
    width: 76% !important;
    min-width: 0 !important;
    padding: 2.4vw 2vw !important;
    overflow: hidden !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__inner {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section {
    width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
    font-size: clamp(0.78rem, 3.15vw, 1rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
    font-size: clamp(0.62rem, 2.55vw, 0.82rem) !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    display: grid !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    gap: 2vw !important;
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.4vw !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    width: 100% !important;
    min-width: 0 !important;
    padding: 1.6vw 1vw !important;
    row-gap: 1vw !important;
    overflow: hidden !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: clamp(0.55rem, 2.2vw, 0.72rem) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    width: 100% !important;
    max-width: 18vw !important;
    height: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: min(13vw, 4.4rem) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    gap: 2vw !important;
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_note {
    margin-top: 0.35em !important;
    font-size: 0.64em !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_image {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
    width: min(100%, 26vw) !important;
    max-width: 26vw !important;
    height: auto !important;
    max-height: 42vw !important;
    object-fit: contain !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    flex-basis: 22% !important;
    width: 22% !important;
    min-width: 22% !important;
    font-size: 2.65vw !important;
    padding: 2vw 1vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    width: 78% !important;
    padding: 2vw 1.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4 {
    font-size: 2.85vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section li {
    font-size: 2.25vw !important;
    line-height: 1.38 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    max-width: 17vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 11.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_img {
    width: min(100%, 24vw) !important;
    max-width: 24vw !important;
    max-height: 40vw !important;
  }
}

/* =========================================================
   R807 追加修正: スマホ表示時のキャンペーン期間とアプリDL導線の安定化
   - キャンペーン期間3行をスマホ幅で崩れないサイズに調整
   - ①アプリダウンロード右側のApp Store/Google Play画像を必ず表示
   - スマホでも横並びを維持しつつフォント・画像を縮小
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 92vw !important;
    max-width: 92vw !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 2vw !important;
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex: 0 0 30% !important;
    width: 30% !important;
    min-width: 30% !important;
    padding: 2vw 1.2vw !important;
    font-size: clamp(0.95rem, 4.4vw, 1.35rem) !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    flex: 1 1 68% !important;
    width: 68% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    display: block !important;
    width: 100% !important;
    font-size: clamp(0.74rem, 3.45vw, 1.08rem) !important;
    line-height: 1.32 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    text-align: left !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    font-size: 1.18em !important;
    line-height: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    display: block !important;
    width: 100% !important;
    margin-top: 0.35vw !important;
    font-size: clamp(0.5rem, 2.1vw, 0.68rem) !important;
    line-height: 1.35 !important;
    letter-spacing: -0.03em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: left !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line *,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note * {
    text-shadow:
      0.35vw 0 0.75vw rgba(0, 117, 194, 0.86),
      -0.35vw 0 0.75vw rgba(0, 117, 194, 0.86),
      0 0.35vw 0.75vw rgba(0, 117, 194, 0.86),
      0 -0.35vw 0.75vw rgba(0, 117, 194, 0.86) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    display: grid !important;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr) !important;
    align-items: center !important;
    gap: 1.6vw !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: clamp(0.72rem, 2.95vw, 0.92rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 0.28em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: clamp(0.56rem, 2.28vw, 0.74rem) !important;
    line-height: 1.38 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.2vw !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    display: grid !important;
    grid-template-rows: auto auto auto !important;
    justify-items: center !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 1.2vw 0.7vw !important;
    row-gap: 0.8vw !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: clamp(0.48rem, 2vw, 0.66rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    display: block !important;
    width: min(100%, 18.8vw) !important;
    max-width: 18.8vw !important;
    min-width: 0 !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    display: block !important;
    width: min(12.8vw, 4.8rem) !important;
    max-width: 12.8vw !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    gap: 1.4vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex-basis: 29% !important;
    width: 29% !important;
    min-width: 29% !important;
    font-size: 4vw !important;
    padding: 1.8vw 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    width: 70% !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 3.05vw !important;
    letter-spacing: -0.045em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.85vw !important;
    line-height: 1.3 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr) !important;
    gap: 1vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 1.98vw !important;
    line-height: 1.32 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    gap: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    padding: 0.9vw 0.4vw !important;
    row-gap: 0.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 1.72vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    width: 17vw !important;
    max-width: 17vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 11vw !important;
    max-width: 11vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   スマホ表示の最終調整
   - キャンペーン期間ブロックが枠内に収まるように再調整
   - ①アプリダウンロード右側の App Store / Google Play 画像が
     スマホでも消えずに表示されるように再調整
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 92vw !important;
    max-width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 1.3vw !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex: 0 0 30% !important;
    width: 30% !important;
    min-width: 30% !important;
    max-width: 30% !important;
    padding: 1.9vw 0.9vw !important;
    font-size: 4.35vw !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 1.9vw 2.1vw !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    display: block !important;
    font-size: 3.18vw !important;
    line-height: 1.24 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    font-size: 1.2em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    display: block !important;
    margin-top: 0.45em !important;
    font-size: 2.0vw !important;
    line-height: 1.32 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 92vw !important;
    max-width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    font-size: 3vw !important;
    line-height: 1.4 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    width: 100% !important;
    table-layout: fixed !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 22.5vw !important;
    min-width: 22.5vw !important;
    padding: 1.8vw 1.1vw !important;
    font-size: 3vw !important;
    line-height: 1.25 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    min-width: 0 !important;
    padding: 2vw 2vw !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    display: grid !important;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr) !important;
    align-items: start !important;
    gap: 1.4vw !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.85vw !important;
    line-height: 1.3 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 2.18vw !important;
    line-height: 1.38 !important;
    margin: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1vw !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 11.8vw !important;
    align-items: center !important;
    column-gap: 0.9vw !important;
    row-gap: 0.45vw !important;
    padding: 0.8vw 0.25vw !important;
    min-width: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    grid-column: 1 / 3 !important;
    margin: 0 0 0.2vw !important;
    font-size: 1.85vw !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    display: block !important;
    width: 11.8vw !important;
    max-width: 11.8vw !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    gap: 1vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex-basis: 29% !important;
    width: 29% !important;
    min-width: 29% !important;
    max-width: 29% !important;
    font-size: 4.05vw !important;
    padding: 1.7vw 0.7vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 2.95vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.85vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    font-size: 2.9vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 22vw !important;
    min-width: 22vw !important;
    font-size: 2.85vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr) !important;
    gap: 1vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.7vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 2.02vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: minmax(0, 1fr) 11.2vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 1.72vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr {
    width: 11.2vw !important;
    max-width: 11.2vw !important;
  }
}

/* =========================================================
   2026-07-05 再修正（反映強化）
   - スマホ時の「キャンペーン期間」ブロックを確実に枠内へ収める
   - スマホ時の App Store / Google Play リンク画像を確実に表示する
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.2vw !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 1.8vw 2vw !important;
    font-size: 4.8vw !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 2vw 2.2vw !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    display: block !important;
    font-size: 4.2vw !important;
    line-height: 1.22 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    font-size: 1.2em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    display: block !important;
    margin-top: 0.5em !important;
    font-size: 2.45vw !important;
    line-height: 1.38 !important;
    letter-spacing: -0.01em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    font-size: 3.2vw !important;
    line-height: 1.4 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    width: 22vw !important;
    min-width: 22vw !important;
    max-width: 22vw !important;
    padding: 1.8vw 1vw !important;
    font-size: 3vw !important;
    line-height: 1.22 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    min-width: 0 !important;
    width: auto !important;
    flex: 1 1 auto !important;
    padding: 2vw 1.8vw !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    display: grid !important;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr) !important;
    align-items: start !important;
    column-gap: 1.2vw !important;
    row-gap: 1.2vw !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    min-width: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.95vw !important;
    line-height: 1.28 !important;
    margin-bottom: 0.25em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 2.18vw !important;
    line-height: 1.36 !important;
    margin: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.2vw !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 12vw !important;
    align-items: center !important;
    column-gap: 1vw !important;
    row-gap: 0.45vw !important;
    padding: 0.4vw 0 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    grid-column: 1 / 3 !important;
    margin: 0 0 0.2vw !important;
    font-size: 2vw !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="appstore_btn.png"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="googleplay_btn.png"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    display: block !important;
    width: 12vw !important;
    max-width: 12vw !important;
    min-width: 12vw !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 480px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 95vw !important;
    max-width: 95vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 4.6vw !important;
    padding: 1.7vw 1.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 3.95vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 2.35vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 95vw !important;
    max-width: 95vw !important;
    font-size: 3.1vw !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 4.3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 3.7vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 2.2vw !important;
    line-height: 1.34 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    font-size: 3vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 2.05vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 1.9vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: minmax(0, 1fr) 11.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    width: 11.5vw !important;
    max-width: 11.5vw !important;
    min-width: 11.5vw !important;
  }
}

/* =========================================================
   2026-07-05 再修正: スマホ表示を横並びのまま調整
   - キャンペーン期間は横並び維持でフォント縮小
   - ①アプリダウンロード右側も全て横並びで画像縮小
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 1vw !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex: 0 0 28% !important;
    width: 28% !important;
    min-width: 28% !important;
    max-width: 28% !important;
    padding: 1.5vw 0.7vw !important;
    font-size: 3.75vw !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    flex: 1 1 auto !important;
    width: 71% !important;
    min-width: 0 !important;
    padding: 1.5vw 1.4vw !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    display: block !important;
    font-size: 2.9vw !important;
    line-height: 1.22 !important;
    letter-spacing: -0.055em !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    font-size: 1.16em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    display: block !important;
    margin-top: 0.35em !important;
    font-size: 1.82vw !important;
    line-height: 1.28 !important;
    letter-spacing: -0.035em !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: 94vw !important;
    max-width: 94vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 2.9vw !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    flex: 0 0 21vw !important;
    width: 21vw !important;
    min-width: 21vw !important;
    max-width: 21vw !important;
    padding: 1.6vw 0.8vw !important;
    font-size: 2.75vw !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dd {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    padding: 1.8vw 1.6vw !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    display: grid !important;
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr) !important;
    align-items: center !important;
    column-gap: 1.1vw !important;
    row-gap: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text {
    min-width: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.55vw !important;
    line-height: 1.25 !important;
    margin: 0 0 0.2em !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 1.85vw !important;
    line-height: 1.28 !important;
    margin: 0 !important;
    letter-spacing: -0.04em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.7vw !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    list-style: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 9.4vw !important;
    align-items: center !important;
    column-gap: 0.55vw !important;
    row-gap: 0.25vw !important;
    padding: 0.35vw 0 !important;
    min-width: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    grid-column: 1 / 3 !important;
    margin: 0 0 0.15vw !important;
    padding: 0 !important;
    font-size: 1.55vw !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="appstore_btn.png"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="googleplay_btn.png"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    display: block !important;
    width: 9.4vw !important;
    max-width: 9.4vw !important;
    min-width: 9.4vw !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 {
    width: 95vw !important;
    max-width: 95vw !important;
    gap: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    flex-basis: 27% !important;
    width: 27% !important;
    min-width: 27% !important;
    max-width: 27% !important;
    font-size: 3.45vw !important;
    padding: 1.35vw 0.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date {
    width: 72% !important;
    padding: 1.35vw 1vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 2.7vw !important;
    letter-spacing: -0.065em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.68vw !important;
    line-height: 1.25 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 dt {
    flex-basis: 20vw !important;
    width: 20vw !important;
    min-width: 20vw !important;
    max-width: 20vw !important;
    font-size: 2.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr) !important;
    column-gap: 0.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4 {
    font-size: 2.35vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p {
    font-size: 1.72vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps {
    gap: 0.5vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: minmax(0, 1fr) 8.7vw !important;
    column-gap: 0.45vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps h6 {
    font-size: 1.42vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    width: 8.7vw !important;
    max-width: 8.7vw !important;
    min-width: 8.7vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時のキャンペーン期間フォントを現状の0.7倍へ調整
   - スマホ表示時のアプリリンク画像とQRコード画像の幅を統一
   - スマホ表示時の「①アプリダウンロード」「②アプリでチャージ」を現状の0.8倍へ調整
   - スマホ表示時のチャージ手順テキストをダウンロード説明文と同じサイズへ統一
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 2.63vw !important;
    line-height: 1.16 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 2.03vw !important;
    line-height: 1.22 !important;
    letter-spacing: -0.055em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.27vw !important;
    line-height: 1.28 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text h4 {
    font-size: 2.04vw !important;
    line-height: 1.25 !important;
    margin: 0 0 0.2em !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text li {
    font-size: 1.85vw !important;
    line-height: 1.28 !important;
    letter-spacing: -0.04em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: 8.8vw 8.8vw !important;
    justify-content: center !important;
    justify-items: center !important;
    column-gap: 0.55vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a {
    width: 8.8vw !important;
    max-width: 8.8vw !important;
    min-width: 8.8vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="appstore_btn.png"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="googleplay_btn.png"] {
    width: 8.8vw !important;
    max-width: 8.8vw !important;
    min-width: 8.8vw !important;
    height: auto !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    width: 8.8vw !important;
    max-width: 8.8vw !important;
    min-width: 8.8vw !important;
    height: auto !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__title {
    font-size: 2.42vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 1.89vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.18vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section h4,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text h4,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text h4 {
    font-size: 1.88vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_text p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__charge_text li {
    font-size: 1.72vw !important;
    line-height: 1.28 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps > li {
    grid-template-columns: 8.0vw 8.0vw !important;
    column-gap: 0.45vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__download_apps a,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="appstore_btn.png"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="googleplay_btn.png"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content img[src*="android_qr"] {
    width: 8.0vw !important;
    max-width: 8.0vw !important;
    min-width: 8.0vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時のキャンペーン期間（日付・注意書き）を1.3倍
   - ①アプリダウンロード右側QR画像を0.5倍
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: calc(1em * 1.3) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: calc(1em * 1.3) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download img[src*="android_qr"] {
    width: 6vw !important;
    max-width: 6vw !important;
    min-width: 6vw !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download img[src*="iphone_qr"],
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download img[src*="android_qr"] {
    width: 5.75vw !important;
    max-width: 5.75vw !important;
    min-width: 5.75vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時のキャンペーン期間の日付・注意書きを現状の0.7倍へ変更
   - スマホ表示時の①アプリダウンロード右側で、リンク画像とQRコード間の幅を半分へ変更
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 2.873vw !important;
    line-height: 1.22 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.755vw !important;
    line-height: 1.34 !important;
    letter-spacing: -0.01em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    column-gap: 0.5vw !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 2.681vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__note {
    font-size: 1.64vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    column-gap: 0.45vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の①アプリダウンロード右側で、
     for iPhone / for Android とリンク画像・QRコード画像を中央合わせ
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps h6 {
    grid-column: 1 / 3 !important;
    justify-self: center !important;
    align-self: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps a,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr {
    justify-self: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps h6 {
    justify-self: center !important;
    text-align: center !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の①アプリダウンロード右側のiPhone/Android画像群を
     中央揃えのまま約20%右へ移動
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    transform: translateX(20%) !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の①アプリダウンロード右側で、
     for iPhone / for Android とリンク画像・QRコード画像の中心を完全に揃える
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps {
    justify-items: center !important;
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    width: max-content !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: auto auto !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    transform: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps h6 {
    grid-column: 1 / 3 !important;
    width: auto !important;
    justify-self: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps a,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__store_btn,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__qr {
    justify-self: center !important;
    align-self: center !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の for iPhone / for Android の li 間隔を約50%狭くする
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps {
    column-gap: 0.35vw !important;
    row-gap: 0.35vw !important;
    gap: 0.35vw !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の①アプリダウンロード右側の ul 幅を約80%へ縮小
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps {
    width: 80% !important;
    max-width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の①アプリダウンロード左側テキスト幅を約20%広くする
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download {
    grid-template-columns: minmax(0, 0.792fr) minmax(0, 1.208fr) !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text {
    width: 120% !important;
    max-width: 120% !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の download_apps の表示を右寄せ
   - ul の幅・位置は変更せず、内部の li 表示位置のみ右寄せ
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps {
    justify-items: end !important;
    text-align: right !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps > li {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時の download_apps 右側余白を削除
   - 削除した右余白分だけ左側へ幅を広げ、右端は揃えたまま表示
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_apps {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    justify-items: end !important;
    text-align: right !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時のポイント期限表示をPC表示と同様にブラウザ幅へ追従
   - 画面幅が狭い場合もはみ出し・レイアウト崩れが出ないよう調整
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    display: block !important;
    width: calc(100% - 4vw) !important;
    max-width: 95.6% !important;
    margin: 2vw auto 0 !important;
    padding: 1.8vw 2vw !important;
    box-sizing: border-box !important;
    border-radius: 1.5vw !important;
    font-size: clamp(12px, 3vw, 16px) !important;
    line-height: 1.45 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: calc(100% - 3vw) !important;
    max-width: 97% !important;
    padding: 1.6vw 1.8vw !important;
    font-size: clamp(11px, 2.9vw, 14px) !important;
    line-height: 1.42 !important;
  }
}

/* =========================================================
   2026-07-05 追加修正
   - スマホ表示時のポイント期限表示を1行で表示
   - 改行されないようブラウザ幅に合わせてフォントサイズを縮小
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: calc(100% - 3vw) !important;
    max-width: 97% !important;
    margin: 2vw auto 0 !important;
    padding: 1.4vw 1.5vw !important;
    box-sizing: border-box !important;
    font-size: clamp(8.5px, 2.6vw, 14px) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: calc(100% - 2vw) !important;
    max-width: 98% !important;
    padding: 1.2vw 1vw !important;
    font-size: clamp(8px, 2.45vw, 12px) !important;
    line-height: 1.15 !important;
  }
}

/* =========================================================
   R807 追加修正: スマホ表示 STEP3 テキスト30%/必要なもの70%表示
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step3_need_wrap {
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text {
    flex: 0 0 30% !important;
    width: 30% !important;
    max-width: 30% !important;
    padding-right: 1.2vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step3_need_wrap {
    flex: 0 0 70% !important;
    width: 70% !important;
    max-width: 70% !important;
    margin-top: 0 !important;
    padding-left: 1.2vw !important;
    border-radius: 2vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text p {
    font-size: 1.6vw !important;
    line-height: 1.43 !important;
    margin-top: 0 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table {
    border-radius: 2vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    padding: 1.8vw 1.5vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
    width: 34% !important;
    font-size: clamp(8px, 1.95vw, 10.5px) !important;
    line-height: 1.3 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list {
    font-size: clamp(8px, 1.9vw, 10.5px) !important;
    line-height: 1.35 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
    margin-top: 0.8vw !important;
    font-size: clamp(7px, 1.65vw, 9px) !important;
    line-height: 1.3 !important;
    text-align: right !important;
  }
}

/* =========================================================
   R807 追加修正: STEP4 マネーのチャージ ① テキスト50%/画像50%
   - PC/スマホ共通で、①［マネー］タブ［チャージ］の行のみ比率変更
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text p {
    font-size: clamp(10px, 2.35vw, 13px) !important;
    line-height: 1.35 !important;
    margin-left: 0.9vw !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

/* =========================================================
   R807 追加修正: STEP4 マネーのチャージ ① 画像を枠内に収める
   - テキスト50%/画像50%で画像がはみ出さないよう調整
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  transform: none !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    transform: none !important;
  }
}

/* =========================================================
   R807 追加修正: STEP4 マネーのチャージ 右側画像 枠線
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img {
  border: 2px solid #00008b !important;
  box-sizing: border-box !important;
}

/* =========================================================
   R807 追加修正: STEP4 マネーのチャージ ① 右側画像 枠線 再修正
   - 実際のSTEP4①画像(images/common/step4_1_r807.png)へ適用
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img[src*="step4_1_r807"] {
  border: 2px solid #00008b !important;
  box-sizing: border-box !important;
}


/* =========================================================
   R807 追加修正: STEP4②③ / STEP5①② を STEP4① と同じ設定へ統一
   - テキスト50% / 画像50%
   - 画像は枠内に収まるよう縮小
   - 画像枠線 2px #00008b
   - スマホ表示も同一設定
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 0 0 auto !important;
  transform: none !important;
  border: 2px solid #00008b !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image ul {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image ul li {
  width: auto !important;
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text p {
    font-size: clamp(10px, 2.35vw, 13px) !important;
    line-height: 1.35 !important;
    margin-left: 0.9vw !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}


/* =========================================================
   R807 追加修正: STEP4①②③ / STEP5①② テキストと画像の上辺合わせ
   - 画像側の上マージンをなくして上端を揃える
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_image,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image {
  align-self: flex-start !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text p,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text p,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text p,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text p,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text p {
  margin-top: 0 !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_image img,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image img {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image ul,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_image ul li {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* =========================================================
   R807 再修正: STEP1～STEP5 見出し右側三角を疑似要素方式で統一
   - レイアウト崩れ防止のため h5 本体の clip-path は使用しない
   - 既存の見出し幅・余白を戻し、右側三角だけを同一指定にする
   ========================================================= */
html body main.campaign_page .five_step .step_list > li h5 {
  width: 31.5vw !important;
  padding: 0.5vw 0 0.4vw 10vw !important;
  background: #0066cb !important;
  border: solid 0.1875vw #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
}

html body main.campaign_page .five_step .step_list > li h5::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  left: 100% !important;
  width: 1.35vw !important;
  height: calc(100% + 0.375vw) !important;
  margin: 0 !important;
  background: #0066cb !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: -1 !important;
  box-shadow: none !important;
  transform: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5 {
    width: 28.5rem !important;
    padding: 0.5rem 0 0.4rem 8rem !important;
    border: solid 0.1875rem #0066cb !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }

  html body main.campaign_page .five_step .step_list > li h5::after {
    top: -0.1875rem !important;
    left: 100% !important;
    width: 1.3rem !important;
    height: calc(100% + 0.375rem) !important;
  }
}


/* =========================================================
   R807 再修正: STEP1～STEP5 見出し右側三角の左線のみ消す
   - レイアウトを崩さないため、幅・位置・clip-path・三角位置は変更しない
   - 見出し右端に同色の細い被せを置いて境目の線だけ隠す
   ========================================================= */
html body main.campaign_page .five_step .step_list > li h5::before {
  content: "" !important;
  position: absolute !important;
  top: -0.1875vw !important;
  right: -0.03vw !important;
  width: 0.32vw !important;
  height: calc(100% + 0.375vw) !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li h5::before {
    top: -0.1875rem !important;
    right: -0.03rem !important;
    width: 0.32rem !important;
    height: calc(100% + 0.375rem) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1「ダウンロード」の右側のみ四角に戻す
   - STEP2～STEP5 の右側三角は維持
   - STEP1 の h5 本体サイズ・位置は変更しない
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after,
html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 {
  -webkit-clip-path: none !important;
  clip-path: none !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    border-radius: 0.10975rem 0 0 0.10975rem !important;
  }
}


/* =========================================================
   R807 追加修正: STEP1 の右側を完全に四角化
   - h5右側三角だけでなく、STEPラベル(span)右側三角も無効化
   - STEP1のみ対象。STEP2～STEP5は変更しない
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after,
html body main.campaign_page .five_step .step_list > li:first-child h5::before,
html body main.campaign_page .five_step .step_list > li:first-child h5 span::after,
html body main.campaign_page .five_step .step_list > li:first-child h5 span::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5,
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  -webkit-clip-path: none !important;
  clip-path: none !important;
}


/* =========================================================
   R807 追加修正: STEP1「ダウンロード」の右側を三角に戻す
   - STEP1のみ対象
   - 直前の四角化指定を上書き
   - 見出し本体の幅・位置は変更しない
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  left: 100% !important;
  width: 1.35vw !important;
  height: calc(100% + 0.375vw) !important;
  margin: 0 !important;
  background: #0066cb !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: -1 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  right: -0.03vw !important;
  width: 0.32vw !important;
  height: calc(100% + 0.375vw) !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  width: 1.35vw !important;
  height: 100% !important;
  background: #fff !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    top: -0.1875rem !important;
    left: 100% !important;
    width: 1.3rem !important;
    height: calc(100% + 0.375rem) !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5::before {
    top: -0.1875rem !important;
    right: -0.03rem !important;
    width: 0.32rem !important;
    height: calc(100% + 0.375rem) !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
    width: 1.3rem !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1右側三角の左側に出る境界線を非表示
   - レイアウトは変更しない
   - 三角を1pxだけ見出し本体に重ね、境目の線だけ消す
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  left: calc(100% - 1px) !important;
  width: calc(1.35vw + 1px) !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  right: -1px !important;
  width: 2px !important;
  height: calc(100% + 0.375vw) !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    left: calc(100% - 1px) !important;
    width: calc(1.3rem + 1px) !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5::before {
    top: -0.1875rem !important;
    right: -1px !important;
    width: 2px !important;
    height: calc(100% + 0.375rem) !important;
  }
}


/* =========================================================
   R807 最終修正: STEP1右側三角の左線を消す
   - レイアウト/見出し幅/位置は変更しない
   - 境目の線の上に三角本体を前面で重ねる
   - 既存の細い被せ(::before)は使わず、三角自体で覆う
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  overflow: visible !important;
  position: relative !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  left: calc(100% - 4px) !important;
  width: calc(1.35vw + 4px) !important;
  height: calc(100% + 0.375vw) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: translateZ(0) !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    top: -0.1875rem !important;
    left: calc(100% - 4px) !important;
    width: calc(1.3rem + 4px) !important;
    height: calc(100% + 0.375rem) !important;
  }
}


/* =========================================================
   R807 追加修正: STEP1ラベル(<span>STEP1</span>)右側三角の境界線を消す
   - レイアウト/幅/位置は変更しない
   - span::afterの三角を白背景で少しだけ重ね、span::beforeで継ぎ目を覆う
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  position: absolute !important;
  overflow: visible !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: calc(100% - 2px) !important;
  width: calc(1.35vw + 2px) !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: translateZ(0) !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: 4 !important;
  pointer-events: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: -1px !important;
  width: 4px !important;
  height: 100% !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
    left: calc(100% - 2px) !important;
    width: calc(1.3rem + 2px) !important;
  }
}


/* =========================================================
   R807 修正: <span>STEP1</span> の右側をCSSのみで三角化
   - ずれの原因だった重ね/被せ(span::before)を無効化
   - span::afterだけで右三角を描画
   - span本体のサイズ・位置は変更しない
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  position: absolute !important;
  overflow: visible !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  width: 1.35vw !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
    width: 1.3rem !important;
  }
}


/* =========================================================
   R807 再修正: <span>STEP1</span> 右三角の境界線をCSSのみで非表示
   - HTML変更なし
   - span本体の幅・位置は変更しない
   - 三角の左側に出るアンチエイリアス線を白の重なりで消す
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: calc(100% - 1px) !important;
  width: calc(1.35vw + 1px) !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -3px 0 0 #fff !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span::after {
    left: calc(100% - 1px) !important;
    width: calc(1.3rem + 1px) !important;
    box-shadow: -3px 0 0 #fff !important;
  }
}


/* =========================================================
   R807 再修正: STEP1「ダウンロード」右三角もspan側と同じ方法で境界線を非表示
   - HTML変更なし
   - h5本体の幅・位置は変更しない
   - 三角の左側に出る線を青の重なりで消す
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  position: relative !important;
  overflow: visible !important;
  background: #0066cb !important;
  border-color: #0066cb !important;
  border-right-color: #0066cb !important;
  box-shadow: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: -0.1875vw !important;
  left: calc(100% - 1px) !important;
  width: calc(1.35vw + 1px) !important;
  height: calc(100% + 0.375vw) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -3px 0 0 #0066cb !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    top: -0.1875rem !important;
    left: calc(100% - 1px) !important;
    width: calc(1.3rem + 1px) !important;
    height: calc(100% + 0.375rem) !important;
    box-shadow: -3px 0 0 #0066cb !important;
  }
}


/* =========================================================
   R807 再修正: STEP1「ダウンロード」右三角の頂点位置を見出し本体に合わせる
   - 四角の右上/右下と三角の左上/左下を同じ高さにする
   - 見出し本体の幅・位置は変更しない
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  top: 0 !important;
  left: calc(100% - 1px) !important;
  height: 100% !important;
  width: calc(1.35vw + 1px) !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -2px 0 0 #0066cb !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    top: 0 !important;
    left: calc(100% - 1px) !important;
    height: 100% !important;
    width: calc(1.3rem + 1px) !important;
    box-shadow: -2px 0 0 #0066cb !important;
  }
}

/* =========================================================
   R807 追加修正: five_step 内 yellow_back の右側をCSSのみで三角に変更
   - HTML変更なし
   - 本体の幅・位置は変更しない
   - 右側の三角は黄色背景と同色で一体化
   ========================================================= */
html body main.campaign_page .five_step > .yellow_back {
  position: relative !important;
  overflow: visible !important;
  background: #FAED00 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 10px 0 0 10px / 5px 0 0 5px !important;
  z-index: 1 !important;
}

html body main.campaign_page .five_step > .yellow_back::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: calc(100% - 1px) !important;
  width: calc(2.2vw + 1px) !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #FAED00 !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -2px 0 0 #FAED00 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step > .yellow_back::after {
    left: calc(100% - 1px) !important;
    width: calc(2.2rem + 1px) !important;
    box-shadow: -2px 0 0 #FAED00 !important;
  }
}

/* =========================================================
   R807 追加修正: yellow_back 右三角の角度を少し鈍角に調整
   - 三角の横幅を少し短くし、先端角を鈍くする
   - 本体の位置・高さは変更しない
   ========================================================= */
html body main.campaign_page .five_step > .yellow_back::after {
  width: calc(1.65vw + 1px) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step > .yellow_back::after {
    width: calc(1.65rem + 1px) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1「ダウンロード」右三角をyellow_backと同じ方式に統一
   - HTML変更なし
   - 見出し本体の幅・位置は変更しない
   - yellow_backと同じ left / width / clip-path / box-shadow 構成
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  position: relative !important;
  overflow: visible !important;
  background: #0066cb !important;
  border-color: #0066cb !important;
  outline: 0 !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: calc(100% - 1px) !important;
  width: calc(1.65vw + 1px) !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -2px 0 0 #0066cb !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    left: calc(100% - 1px) !important;
    width: calc(1.65rem + 1px) !important;
    box-shadow: -2px 0 0 #0066cb !important;
  }
}

/* =========================================================
   R807 再修正: STEP1「ダウンロード」右三角の頂点位置を再調整
   - h5本体には border があるため、三角も外枠の上端/下端に合わせる
   - yellow_back と同じ clip-path 方式は維持
   - 左側の線消し用の重なりも維持
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  top: -0.1875vw !important;
  left: calc(100% - 1px) !important;
  width: calc(1.65vw + 1px) !important;
  height: calc(100% + 0.375vw) !important;
  background: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  box-shadow: -2px 0 0 #0066cb !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5::after {
    top: -0.1875rem !important;
    left: calc(100% - 1px) !important;
    width: calc(1.65rem + 1px) !important;
    height: calc(100% + 0.375rem) !important;
    box-shadow: -2px 0 0 #0066cb !important;
  }
}

/* =========================================================
   R807 最終修正: STEP1「ダウンロード」右三角をh5単体のclip-pathで一体化
   - h5本体と右三角を別要素で描画しない
   - 継ぎ目/線/頂点ズレの原因になる h5::after を無効化
   - 青い四角＋三角を1つの背景図形として描画
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  --step1-tip: 1.65vw;
  width: calc(31.5vw + var(--step1-tip)) !important;
  padding: 0.5vw var(--step1-tip) 0.4vw 10vw !important;
  background: #0066cb !important;
  border: solid 0.1875vw #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  position: relative !important;
  overflow: visible !important;
  box-shadow: none !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::after {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5::before {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    --step1-tip: 1.65rem;
    width: calc(28.5rem + var(--step1-tip)) !important;
    padding: 0.5rem var(--step1-tip) 0.4rem 8rem !important;
    border: solid 0.1875rem #0066cb !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 最終修正: STEP1ラベル(<span>STEP1</span>)もspan単体のclip-pathで一体化
   - span本体と右三角を別要素で描画しない
   - 継ぎ目/線/頂点ズレの原因になる span::after / span::before を無効化
   - 白い四角＋三角をspanひとつの背景図形として描画
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  --step1-label-tip: 1.35vw;
  background: #fff !important;
  color: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  padding: 0.5vw var(--step1-label-tip) 0.4vw 0.8vw !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  overflow: visible !important;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
  z-index: 3 !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span::after,
html body main.campaign_page .five_step .step_list > li:first-child h5 span::before {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span {
    --step1-label-tip: 1.3rem;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    padding: 0.5rem var(--step1-label-tip) 0.4rem 0.8rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1ラベル幅を約10%広げる
   - span単体の一体型clip-path描画は維持
   - 白いSTEP1ラベルの横幅のみ拡張
   - HTML変更なし
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  box-sizing: border-box !important;
  width: 7.35vw !important;
  padding-left: 0.8vw !important;
  padding-right: var(--step1-label-tip) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span {
    width: 6.9rem !important;
    padding-left: 0.8rem !important;
    padding-right: var(--step1-label-tip) !important;
  }
}

/* =========================================================
   R807 再修正: STEP1ラベル幅を実際に広げる
   - 前回のwidth指定では三角分を含むため白い四角部分が狭く見えた
   - 今回はspan全体幅を広げ、h5側の文字開始位置も合わせて調整
   - span単体の一体型clip-path描画は維持
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  padding-left: 11vw !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  box-sizing: border-box !important;
  width: 9vw !important;
  min-width: 9vw !important;
  max-width: none !important;
  padding-left: 0.8vw !important;
  padding-right: var(--step1-label-tip) !important;
  white-space: nowrap !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    padding-left: 9.2rem !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5 span {
    width: 8.2rem !important;
    min-width: 8.2rem !important;
    max-width: none !important;
    padding-left: 0.8rem !important;
    padding-right: var(--step1-label-tip) !important;
  }
}

/* =========================================================
   R807 再修正: STEP1ラベル左寄せ前に戻し、幅を追加で約10%拡張
   - 20260706_022200 版をベースにする
   - 左寄せ変更は入れない
   - span一体型clip-path描画は維持
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 {
  left: auto !important;
  transform: none !important;
  padding-left: 11.9vw !important;
}

html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  left: 0 !important;
  transform: none !important;
  box-sizing: border-box !important;
  width: 9.9vw !important;
  min-width: 9.9vw !important;
  max-width: none !important;
  padding-left: 0.8vw !important;
  padding-right: var(--step1-label-tip) !important;
  white-space: nowrap !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step1-label-tip)) 0, 100% 50%, calc(100% - var(--step1-label-tip)) 100%, 0 100%) !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    left: auto !important;
    transform: none !important;
    padding-left: 10.1rem !important;
  }

  html body main.campaign_page .five_step .step_list > li:first-child h5 span {
    left: 0 !important;
    transform: none !important;
    width: 9.1rem !important;
    min-width: 9.1rem !important;
    max-width: none !important;
    padding-left: 0.8rem !important;
    padding-right: var(--step1-label-tip) !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1ラベル全体は動かさず、STEP1文字だけ少し左へ寄せる
   - span本体のleft/width/clip-pathは維持
   - 文字位置のみpadding-leftで調整
   ========================================================= */
html body main.campaign_page .five_step .step_list > li:first-child h5 span {
  padding-left: 0.45vw !important;
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li:first-child h5 span {
    padding-left: 0.45rem !important;
    text-align: left !important;
  }
}

/* R807: STEP1ラベルの文字だけを1文字分右へ調整 */
html body main.campaign_page .five_step .step_list > li.step1 h5 span {
  text-indent: 1em !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step1 h5 span {
    text-indent: 1em !important;
  }
}

/* R807: STEP1ラベルの文字だけを半文字分左へ戻す */
html body main.campaign_page .five_step .step_list > li.step1 h5 span {
  text-indent: 0.5em !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step1 h5 span {
    text-indent: 0.5em !important;
  }
}

/* =========================================================
   R807 追加修正: STEP2$301CSTEP5もSTEP1と同じ一体図形方式に統一
   - h5本体: 青い四角＋右三角を1つのclip-pathで描画
   - spanラベル: 白い四角＋右三角を1つのclip-pathで描画
   - 疑似要素の別三角を無効化して継ぎ目/線/頂点ズレを防止
   - HTML変更なし、CSSのみ
   ========================================================= */
html body main.campaign_page .five_step .step_list > li.step2 h5,
html body main.campaign_page .five_step .step_list > li.step3 h5,
html body main.campaign_page .five_step .step_list > li.step4 h5,
html body main.campaign_page .five_step .step_list > li.step5 h5 {
  --step-heading-tip: 1.65vw;
  width: calc(31.5vw + var(--step-heading-tip)) !important;
  padding: 0.5vw var(--step-heading-tip) 0.4vw 11.9vw !important;
  background: #0066cb !important;
  border: solid 0.1875vw #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  position: relative !important;
  overflow: visible !important;
  box-shadow: none !important;
  left: auto !important;
  transform: none !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step-heading-tip)) 0, 100% 50%, calc(100% - var(--step-heading-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step-heading-tip)) 0, 100% 50%, calc(100% - var(--step-heading-tip)) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li.step2 h5::after,
html body main.campaign_page .five_step .step_list > li.step2 h5::before,
html body main.campaign_page .five_step .step_list > li.step3 h5::after,
html body main.campaign_page .five_step .step_list > li.step3 h5::before,
html body main.campaign_page .five_step .step_list > li.step4 h5::after,
html body main.campaign_page .five_step .step_list > li.step4 h5::before,
html body main.campaign_page .five_step .step_list > li.step5 h5::after,
html body main.campaign_page .five_step .step_list > li.step5 h5::before {
  content: none !important;
  display: none !important;
}

html body main.campaign_page .five_step .step_list > li.step2 h5 span,
html body main.campaign_page .five_step .step_list > li.step3 h5 span,
html body main.campaign_page .five_step .step_list > li.step4 h5 span,
html body main.campaign_page .five_step .step_list > li.step5 h5 span {
  --step-label-tip: 1.35vw;
  box-sizing: border-box !important;
  width: 9.9vw !important;
  min-width: 9.9vw !important;
  max-width: none !important;
  background: #fff !important;
  color: #0066cb !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  padding: 0.5vw var(--step-label-tip) 0.4vw 0.45vw !important;
  text-indent: 0.5em !important;
  text-align: left !important;
  white-space: nowrap !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  overflow: visible !important;
  z-index: 3 !important;
  -webkit-filter: none !important;
  filter: none !important;
  transform: none !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step-label-tip)) 0, 100% 50%, calc(100% - var(--step-label-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step-label-tip)) 0, 100% 50%, calc(100% - var(--step-label-tip)) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li.step2 h5 span::after,
html body main.campaign_page .five_step .step_list > li.step2 h5 span::before,
html body main.campaign_page .five_step .step_list > li.step3 h5 span::after,
html body main.campaign_page .five_step .step_list > li.step3 h5 span::before,
html body main.campaign_page .five_step .step_list > li.step4 h5 span::after,
html body main.campaign_page .five_step .step_list > li.step4 h5 span::before,
html body main.campaign_page .five_step .step_list > li.step5 h5 span::after,
html body main.campaign_page .five_step .step_list > li.step5 h5 span::before {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step2 h5,
  html body main.campaign_page .five_step .step_list > li.step3 h5,
  html body main.campaign_page .five_step .step_list > li.step4 h5,
  html body main.campaign_page .five_step .step_list > li.step5 h5 {
    --step-heading-tip: 1.65rem;
    width: calc(28.5rem + var(--step-heading-tip)) !important;
    padding: 0.5rem var(--step-heading-tip) 0.4rem 10.1rem !important;
    border: solid 0.1875rem #0066cb !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--step-heading-tip)) 0, 100% 50%, calc(100% - var(--step-heading-tip)) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - var(--step-heading-tip)) 0, 100% 50%, calc(100% - var(--step-heading-tip)) 100%, 0 100%) !important;
  }

  html body main.campaign_page .five_step .step_list > li.step2 h5 span,
  html body main.campaign_page .five_step .step_list > li.step3 h5 span,
  html body main.campaign_page .five_step .step_list > li.step4 h5 span,
  html body main.campaign_page .five_step .step_list > li.step5 h5 span {
    --step-label-tip: 1.3rem;
    width: 9.1rem !important;
    min-width: 9.1rem !important;
    max-width: none !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    padding: 0.5rem var(--step-label-tip) 0.4rem 0.45rem !important;
    text-indent: 0.5em !important;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--step-label-tip)) 0, 100% 50%, calc(100% - var(--step-label-tip)) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - var(--step-label-tip)) 0, 100% 50%, calc(100% - var(--step-label-tip)) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 再修正: STEP2$301CSTEP5の青い見出し文字部分をSTEP1「ダウンロード」と同じ一体図形方式に統一
   - 対象: 認証 / マイナンバー認証 / マネーのチャージ / 利用方法
   - h5本体を青い四角＋右三角の1図形として描画
   - h5::after / h5::before は使わない
   - STEPラベル(span)側の設定は既存の一体図形方式を維持
   ========================================================= */
html body main.campaign_page .five_step .step_list > li.step2 h5,
html body main.campaign_page .five_step .step_list > li.step3 h5,
html body main.campaign_page .five_step .step_list > li.step4 h5,
html body main.campaign_page .five_step .step_list > li.step5 h5 {
  --step1-tip: 1.65vw;
  width: calc(31.5vw + var(--step1-tip)) !important;
  padding: 0.5vw var(--step1-tip) 0.4vw 11.9vw !important;
  background: #0066cb !important;
  border: solid 0.1875vw #0066cb !important;
  border-radius: 0.10975vw 0 0 0.10975vw !important;
  position: relative !important;
  overflow: visible !important;
  box-shadow: none !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
  clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
}

html body main.campaign_page .five_step .step_list > li.step2 h5::after,
html body main.campaign_page .five_step .step_list > li.step2 h5::before,
html body main.campaign_page .five_step .step_list > li.step3 h5::after,
html body main.campaign_page .five_step .step_list > li.step3 h5::before,
html body main.campaign_page .five_step .step_list > li.step4 h5::after,
html body main.campaign_page .five_step .step_list > li.step4 h5::before,
html body main.campaign_page .five_step .step_list > li.step5 h5::after,
html body main.campaign_page .five_step .step_list > li.step5 h5::before {
  content: none !important;
  display: none !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step2 h5,
  html body main.campaign_page .five_step .step_list > li.step3 h5,
  html body main.campaign_page .five_step .step_list > li.step4 h5,
  html body main.campaign_page .five_step .step_list > li.step5 h5 {
    --step1-tip: 1.65rem;
    width: calc(28.5rem + var(--step1-tip)) !important;
    padding: 0.5rem var(--step1-tip) 0.4rem 10.1rem !important;
    border: solid 0.1875rem #0066cb !important;
    border-radius: 0.10975rem 0 0 0.10975rem !important;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
    clip-path: polygon(0 0, calc(100% - var(--step1-tip)) 0, 100% 50%, calc(100% - var(--step1-tip)) 100%, 0 100%) !important;
  }
}

/* =========================================================
   R807 追加修正: スマホ表示時 STEP1「ダウンロード」の枠線太さ調整
   - STEP1 h5 の青い枠線を .step_list > li（flexを囲む枠）と同じ 0.125rem に統一
   - PC表示には影響させない
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page .five_step .step_list > li.step1 h5,
  html body main.campaign_page .five_step .step_list > li:first-child h5 {
    border: solid 0.125rem #0066cb !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   R807 追加修正: スマホ表示時 STEP2$301CSTEP5の枠線太さ調整
   - STEP1と同じく、青い見出し枠線を .flex 側の枠線太さ 0.125rem に統一
   - PC表示には影響させない
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page .five_step .step_list > li.step2 h5,
  html body main.campaign_page .five_step .step_list > li.step3 h5,
  html body main.campaign_page .five_step .step_list > li.step4 h5,
  html body main.campaign_page .five_step .step_list > li.step5 h5 {
    border: solid 0.125rem #0066cb !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   R807 追加修正: STEP3 注意文・必要なものを縦並び表示
   - クレジットカード注意文を上段
   - 手続きに必要なものを下段
   - テーブル内の見出し/リストも縦並び
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step3_need_wrap {
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text {
  padding-right: 0 !important;
  margin-bottom: 0.8rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text p {
  margin: 0 !important;
  text-align: left !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap {
  margin-top: 0 !important;
  padding-left: 0 !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tbody,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tr,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
  text-align: left !important;
  padding-bottom: 0.3rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
  padding-top: 0.3rem !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list {
  text-align: left !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step3_need_wrap {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text {
    padding-right: 0 !important;
    margin-bottom: 2.2vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step_text p {
    font-size: clamp(10px, 3.1vw, 14px) !important;
    line-height: 1.45 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .flex > .step3_need_wrap {
    padding-left: 0 !important;
    margin-top: 0 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    display: block !important;
    width: 100% !important;
    padding: 2.4vw 3vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
    padding-bottom: 0.6vw !important;
    font-size: clamp(12px, 3.4vw, 16px) !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td {
    padding-top: 0.6vw !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list {
    font-size: clamp(11px, 3vw, 15px) !important;
    line-height: 1.55 !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
    margin-top: 1.4vw !important;
    font-size: clamp(9px, 2.4vw, 12px) !important;
    line-height: 1.35 !important;
    text-align: right !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1$301CSTEP5の見出しテキストサイズをSTEP1基準に統一
   - PC/スマホともSTEP1のh5フォントサイズへ統一
   - STEPラベル(span)も同じサイズを継承/明示
   - HTML変更なし
   ========================================================= */
html body main.campaign_page .five_step .step_list > li.step1 h5,
html body main.campaign_page .five_step .step_list > li.step2 h5,
html body main.campaign_page .five_step .step_list > li.step3 h5,
html body main.campaign_page .five_step .step_list > li.step4 h5,
html body main.campaign_page .five_step .step_list > li.step5 h5,
html body main.campaign_page .five_step .step_list > li.step1 h5 span,
html body main.campaign_page .five_step .step_list > li.step2 h5 span,
html body main.campaign_page .five_step .step_list > li.step3 h5 span,
html body main.campaign_page .five_step .step_list > li.step4 h5 span,
html body main.campaign_page .five_step .step_list > li.step5 h5 span {
  font-size: 1.8vw !important;
  line-height: 1.35 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step1 h5,
  html body main.campaign_page .five_step .step_list > li.step2 h5,
  html body main.campaign_page .five_step .step_list > li.step3 h5,
  html body main.campaign_page .five_step .step_list > li.step4 h5,
  html body main.campaign_page .five_step .step_list > li.step5 h5,
  html body main.campaign_page .five_step .step_list > li.step1 h5 span,
  html body main.campaign_page .five_step .step_list > li.step2 h5 span,
  html body main.campaign_page .five_step .step_list > li.step3 h5 span,
  html body main.campaign_page .five_step .step_list > li.step4 h5 span,
  html body main.campaign_page .five_step .step_list > li.step5 h5 span {
    font-size: 1.6rem !important;
    line-height: 1.35 !important;
  }
}

/* =========================================================
   R807 追加修正: STEP1$301CSTEP5のコンテンツフォントサイズをSTEP1基準に統一
   - 対象: 各STEP内の本文、説明、リスト、表内テキスト、for iPhone / for Android
   - スマホ/PCともSTEP1本文のフォントサイズへ統一
   - HTML変更なし
   ========================================================= */
html body main.campaign_page .five_step .step_list > li.step1 .flex .step_text p,
html body main.campaign_page .five_step .step_list > li.step2 .flex .step_text p,
html body main.campaign_page .five_step .step_list > li.step3 .flex .step_text p,
html body main.campaign_page .five_step .step_list > li.step4 .flex .step_text p,
html body main.campaign_page .five_step .step_list > li.step5 .flex .step_text p,
html body main.campaign_page .five_step .step_list > li.step1 ul li h6,
html body main.campaign_page .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page .five_step .step_list > li.step3 .step3_need_table td,
html body main.campaign_page .five_step .step_list > li.step3 .step3_need_list,
html body main.campaign_page .five_step .step_list > li.step3 .step3_need_note {
  font-size: 1.6vw !important;
  line-height: 1.43 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step .step_list > li.step1 .flex .step_text p,
  html body main.campaign_page .five_step .step_list > li.step2 .flex .step_text p,
  html body main.campaign_page .five_step .step_list > li.step3 .flex .step_text p,
  html body main.campaign_page .five_step .step_list > li.step4 .flex .step_text p,
  html body main.campaign_page .five_step .step_list > li.step5 .flex .step_text p,
  html body main.campaign_page .five_step .step_list > li.step1 ul li h6,
  html body main.campaign_page .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page .five_step .step_list > li.step3 .step3_need_note {
    font-size: 1.4rem !important;
    line-height: 1.43 !important;
  }
}

/* =========================================================
   R807 再修正: STEP1$301CSTEP5 コンテンツフォントサイズをSTEP1本文に厳密統一
   - 実際のSTEP1本文(.campaign_2 .step_list .flex .step_text p)は
     スマホ 1.6vw / PC 1.4rem
   - STEP4/STEP5の後続clamp指定やSTEP3表内個別指定を最後尾で上書き
   - 見出し(h5 / h5 span)は対象外
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li .step_text p,
html body main.campaign_page.campaign_2 .five_step .step_list > li .step_text p *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6 *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
  font-size: 1.6vw !important;
  line-height: 1.43 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6 *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
    font-size: 1.4rem !important;
    line-height: 1.43 !important;
  }
}

/* =========================================================
   R807 再々修正: STEP1$301CSTEP5 コンテンツのフォントをSTEP1本文へ完全統一
   - 基準: STEP1本文 .campaign_2 .five_step .step_list .flex .step_text p
   - スマホ: 1.6vw / PC: 1.4rem
   - font-family / font-weight / line-height も統一
   - h5見出しとSTEPラベルは対象外
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li .flex,
html body main.campaign_page.campaign_2 .five_step .step_list > li .flex *,
html body main.campaign_page.campaign_2 .five_step .step_list > li .flex_row,
html body main.campaign_page.campaign_2 .five_step .step_list > li .flex_row *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap * {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
  font-size: 1.6vw !important;
  font-weight: 400 !important;
  line-height: 1.43 !important;
  letter-spacing: normal !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li .flex,
  html body main.campaign_page.campaign_2 .five_step .step_list > li .flex *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li .flex_row,
  html body main.campaign_page.campaign_2 .five_step .step_list > li .flex_row *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_wrap * {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    line-height: 1.43 !important;
    letter-spacing: normal !important;
  }
}

/* =========================================================
   R807 最終修正: スマホ表示でSTEP1$301CSTEP5本文フォントが揃わない問題を修正
   原因: 既存の max-width:767px 内に残っていた clamp() / 個別 !important 指定が
         STEP4・STEP5等で優先され、汎用指定だけではスマホ表示に反映されにくかったため。
   対応: スマホ専用の最終上書きをCSS末尾に追加し、本文要素を個別指定する。
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6 *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
    font-size: 1.6vw !important;
    font-weight: 400 !important;
    line-height: 1.43 !important;
    letter-spacing: normal !important;
  }
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step_text p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step_text p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > ul > li > h6 *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table td *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    line-height: 1.43 !important;
    letter-spacing: normal !important;
  }
}

/* =========================================================
   R807 緊急再修正: スマホ表示 STEP3$301CSTEP5 コンテンツフォントをSTEP1本文に完全統一
   原因:
   - 既存のスマホ用CSSに、より詳細なセレクタ + !important の clamp() 指定が残っていた。
   - 例: .step3 .flex > .step_text p / .step4_1.flex > .step_text p / .step5_1.flex > .step_text p
   - 前回の汎用 .step_text p 指定は specificity が低く、STEP3$301CSTEP5では負けていた。
   対応:
   - 問題の既存指定より詳細なセレクタで、CSS末尾から最終上書きする。
   - STEP1本文と同じ font-size / font-family / weight / line-height に統一する。
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step3_need_wrap,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step3_need_wrap *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
    font-size: 1.6vw !important;
    font-weight: 400 !important;
    line-height: 1.43 !important;
    letter-spacing: normal !important;
  }
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step1 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step2 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_1.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_2.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step4 .step4_3.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_1.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text > p,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step5 .step5_2.flex > .step_text > p *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step3_need_wrap,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 > .flex > .step3_need_wrap *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list *,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    line-height: 1.43 !important;
    letter-spacing: normal !important;
  }
}

/* =========================================================
   R807 追加修正: スマホ表示で「手続きに必要なもの」を改行させない
   - HTML内の <br> をスマホ時のみ非表示
   - 見出しセルを1行表示に固定
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th br {
    display: none !important;
  }
}

/* =========================================================
   R807 追加修正: five_step yellow_back の右端を左側基準に合わせる
   - 右三角を追加した分だけ本体幅を短くする
   - 左端位置は元の 95.6% 中央配置時の左余白 2.2% に固定
   - 三角先端を元の右端位置に合わせる
   ========================================================= */
html body main.campaign_page .five_step > .yellow_back {
  width: calc(95.6% - 1.65vw) !important;
  margin-left: 2.2% !important;
  margin-right: auto !important;
}

html body main.campaign_page .five_step > .yellow_back::after {
  top: 0 !important;
  left: calc(100% - 1px) !important;
  width: calc(1.65vw + 1px) !important;
  height: 100% !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step > .yellow_back {
    width: calc(95.6% - 1.65rem) !important;
    margin-left: 2.2% !important;
    margin-right: auto !important;
  }

  html body main.campaign_page .five_step > .yellow_back::after {
    top: 0 !important;
    left: calc(100% - 1px) !important;
    width: calc(1.65rem + 1px) !important;
    height: 100% !important;
  }
}

/* =========================================================
   R807 追加修正: yellow_back 右三角を左側と同じ角丸に変更
   - 右側の疑似要素三角を無効化
   - 右端も左端と同じ角丸にする
   - 三角分で短くしていた幅を元の幅に戻す
   ========================================================= */
html body main.campaign_page .five_step > .yellow_back {
  width: 95.6% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 10px / 5px !important;
  overflow: hidden !important;
}

html body main.campaign_page .five_step > .yellow_back::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page .five_step > .yellow_back {
    width: 95.6% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 10px / 5px !important;
    overflow: hidden !important;
  }

  html body main.campaign_page .five_step > .yellow_back::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}



/* =========================================================
   R807 追加修正: スマホ表示時のみ「キャンペーン期間」ラベル高さを0.8倍
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_title.campaign_term_r807__title {
    align-self: center !important;
    transform: scaleY(0.8) !important;
    transform-origin: center center !important;
  }
}

/* R807追加: campaign__content content blue-line__box の背景色・枠線を削除 */
html body main.campaign_page .campaign__content.content.blue-line__box,
html body main.campaign_page div.campaign__content.content.blue-line__box {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* R807追加: blue-dotline__box の枠線を細くする */
html body main.campaign_page .five_step .blue-dotline__box {
  border-width: 2px !important;
}

/* R807追加: blue-dotline__box の角を四角にする */
html body main.campaign_page .five_step .blue-dotline__box {
  border-radius: 0 !important;
}

/* =========================================================
   R807 追加修正: app_charge_img.png は枠線を付けない
   - ②アプリでチャージの説明画像のみ対象
   - STEP4/STEP5 の他画像枠線は維持
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge img.charge_method_r807__charge_img,
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge img[src*="app_charge_img.png"],
html body main.campaign_page.campaign_2 .campaign .campaign__content img.charge_method_r807__charge_img[src*="app_charge_img.png"] {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   R807 追加修正: PC表示でも「手続きに必要なもの」を改行させない
   - 既存HTMLの <br> をPC/スマホ共通で非表示
   - 見出しセルを1行表示に固定
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th br {
  display: none !important;
}

/* R807: STEP3注釈「※2026年夏頃...」のみ1文字分左へ寄せる */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
  position: relative !important;
  left: -1em !important;
}


/* =========================================================
   R807 追加修正: 「デジタル認証アプリ※のインストール」の ※ のみ0.6倍
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_digital_auth_mark {
  display: inline-block !important;
  font-size: 0.6em !important;
  line-height: 1 !important;
  vertical-align: super !important;
}

/* =========================================================
   R807 再修正: 「デジタル認証アプリ※のインストール」の ※ を確実に0.6倍にする
   原因: 親要素側の STEP3 コンテンツフォント統一指定が強く、見た目に反映されにくかったため、
   対象 span へ font-size と transform の両方で最終上書きする。
   ========================================================= */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_table td .step3_need_list span.step3_digital_auth_mark,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_list span.step3_digital_auth_mark,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 span.step3_digital_auth_mark {
  display: inline-block !important;
  font-size: 0.6em !important;
  line-height: 1 !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  vertical-align: super !important;
  transform: scale(0.6) !important;
  transform-origin: left center !important;
  margin-left: 0.05em !important;
  margin-right: -0.15em !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_table td .step3_need_list span.step3_digital_auth_mark,
  html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_list span.step3_digital_auth_mark,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 span.step3_digital_auth_mark {
    display: inline-block !important;
    font-size: 0.6em !important;
    line-height: 1 !important;
    vertical-align: super !important;
    transform: scale(0.6) !important;
    transform-origin: left center !important;
  }
}

/* =========================================================
   R807 再調整: 「デジタル認証アプリ※のインストール」の ※ が小さすぎたため少し大きくする
   - 直前の font-size:0.6em + transform:scale(0.6) は実寸が小さくなりすぎるため解除
   ========================================================= */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_table td .step3_need_list span.step3_digital_auth_mark,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_list span.step3_digital_auth_mark,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 span.step3_digital_auth_mark {
  display: inline-block !important;
  font-size: 0.75em !important;
  line-height: 1 !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  vertical-align: super !important;
  transform: none !important;
  margin-left: 0.04em !important;
  margin-right: 0.02em !important;
}

@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_table td .step3_need_list span.step3_digital_auth_mark,
  html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_list span.step3_digital_auth_mark,
  html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 span.step3_digital_auth_mark {
    font-size: 0.75em !important;
    transform: none !important;
    vertical-align: super !important;
  }
}


/* =========================================================
   R807 追加修正: STEP見出しh3にアップロード画像を背景設定
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step h3 {
  background-color: #0f84c9 !important;
  background-image: url("../images/common/step_heading_bg.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

/* =========================================================
   R807 追加修正: STEP見出しh3のフォント・太さ・色を統一
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step h3,
html body main.campaign_page.campaign_2 .five_step h3 span {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif !important;
  font-weight: 900 !important;
  color: #ffffff !important;
}

/* =========================================================
   R807 追加修正: STEP見出しh3のspan削除後フォント・シャドウ指定
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step h3 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-shadow: 2px 2px 3px #00008b !important;
}

html body main.campaign_page.campaign_2 .five_step h3 span {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-shadow: 2px 2px 3px #00008b !important;
}


/* =========================================================
   R807 最終統合: h3/yellow_back/STEP3必要なもの表示
   - STEP3まわりの最終指定をこのブロックに集約
   - 「手続きに必要なもの」は色を変更せず、太字・1.2倍のみ
   - ●は色を変更しない
   - 必要なもの項目テキストのみ黒
   - 注釈は0.8倍
   ========================================================= */
html body main.campaign_page.campaign_2 .five_step h3 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding-top: 1vw !important;
  padding-bottom: 1vw !important;
  line-height: 1.25 !important;
  min-height: 8.5vw !important;
}

html body main.campaign_page.campaign_2 .five_step > .yellow_back,
html body main.campaign_page.campaign_2 section.five_step > .yellow_back,
html body main.campaign_page .five_step > .yellow_back {
  background: #003f8e !important;
  color: #fff352 !important;
  padding-top: 0.45em !important;
  padding-bottom: 0.45em !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

html body main.campaign_page.campaign_2 .five_step > .yellow_back::before,
html body main.campaign_page.campaign_2 .five_step > .yellow_back::after,
html body main.campaign_page .five_step > .yellow_back::before,
html body main.campaign_page .five_step > .yellow_back::after {
  content: none !important;
  display: none !important;
}

/* 「手続きに必要なもの」: 色は変更しない。太字・1.2倍のみを最終反映 */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 table.step3_need_table th,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 table.step3_need_table th .step3_need_title_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th .step3_need_title_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tbody tr th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tbody tr th .step3_need_title_text {
  font-weight: 900 !important;
  font-size: 1.2em !important;
  line-height: 1.35 !important;
  color: inherit !important;
}

html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th br {
  display: none !important;
}

/* 必要なもの一覧全体・●: 色は変更しない */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_list,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_list,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_bullet,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_bullet {
  color: inherit !important;
}

/* 必要なもの項目テキストのみ黒 */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_item_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_item_text {
  color: #000000 !important;
}

/* 注釈: 0.8倍を最終反映 */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_note,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_note *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
  font-size: 0.8em !important;
  line-height: 1.43 !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .five_step h3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    min-height: 6.8rem !important;
    line-height: 1.25 !important;
  }
}

/* =========================================================
   R807 最終修正: STEP3「手続きに必要なもの」色戻し・注釈0.8倍を確実反映
   - 見出し色は元の青系へ戻す
   - 太字・1.2倍は維持
   - 注釈はフォントサイズ指定に加え、競合時も見た目で0.8倍になるようscale併用
   ========================================================= */
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 table.step3_need_table th,
html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 table.step3_need_table th .step3_need_title_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table th .step3_need_title_text,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tbody tr th,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_table tbody tr th .step3_need_title_text {
  color: #005b9a !important;
  font-weight: 900 !important;
  font-size: 1.2em !important;
  line-height: 1.35 !important;
}

html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_note,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note {
  font-size: 0.8em !important;
  line-height: 1.43 !important;
  transform: scale(0.8) !important;
  transform-origin: right center !important;
  display: block !important;
}

html body main.campaign_page.campaign_2 section.five_step ul.step_list > li.step3 .step3_need_note *,
html body main.campaign_page.campaign_2 .five_step .step_list > li.step3 .step3_need_note * {
  font-size: inherit !important;
}


/* =========================================================
   R807 最終統合: チャージ方法のPC/スマホ表示調整
   - 競合していた過去の1.2倍/1.1倍/画像拡大解除ブロックを削除し、このブロックへ統合
   - 「右記の二次元コードを読み取り、」は個別の色・サイズ変更を解除して元指定を継承
   - PCでは app_charge_img.png のみ1.2倍相当で表示
   - スマホでは②アプリでチャージのテキストと画像を50%ずつ横並び
   ========================================================= */

/* チャージ方法ラベルは1.2倍 */
html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 > dt {
  font-size: 1.8vw !important;
}

/* 見出し */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text h4,
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text h4 {
  font-size: 1.98vw !important;
  line-height: 1.35 !important;
}

/* ダウンロード説明・チャージ手順は1.1倍 */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text p,
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text li {
  font-size: 1.595vw !important;
  line-height: 1.55 !important;
}

/* 「右記の二次元コードを読み取り、」は文字色・サイズを個別変更しない */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text .charge_method_r807__download_lead {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* 注意書き */
html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_note {
  font-size: 0.77em !important;
  line-height: 1.5 !important;
}

/* PC: app_charge_img.png を1.2倍相当で表示 */
@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 > dt {
    font-size: 1.62rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text h4,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text h4 {
    font-size: 1.62rem !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text li {
    font-size: 1.298rem !important;
    line-height: 1.55 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    grid-template-columns: minmax(0, 1fr) minmax(14.4rem, 18rem) !important;
    column-gap: 1.6rem !important;
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
    height: auto !important;
    min-height: 0 !important;
    align-self: center !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge img[src$="app_charge_img.png"] {
    display: block !important;
    width: 100% !important;
    max-width: 18rem !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

/* スマホ: ②アプリでチャージはテキスト50% + 画像50%で横並び */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content dl.charge_method_r807 > dt {
    font-size: 3.84vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text h4 {
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text p,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text li {
    font-size: 1.78vw !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text p br {
    display: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text .charge_method_r807__download_lead {
    display: inline-block !important;
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 2vw !important;
    align-items: center !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text h4 {
    font-size: 2.18vw !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    margin-bottom: 0.35em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text li {
    font-size: 1.55vw !important;
    line-height: 1.34 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_note {
    display: block !important;
    margin-top: 0.25em !important;
    font-size: 0.66em !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_image {
    height: auto !important;
    min-height: 0 !important;
    align-self: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_img,
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge img[src$="app_charge_img.png"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 374px) {
  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--download .charge_method_r807__download_text p {
    font-size: 1.68vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text h4 {
    font-size: 2.05vw !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign__content .charge_method_r807__section--charge .charge_method_r807__charge_text li {
    font-size: 1.42vw !important;
    line-height: 1.32 !important;
  }
}

/* =========================================================
   R807 最終修正: スマホ表示のキャンペーン期間日付を現状の0.8倍に調整
   - 対象: 2026年8月3日10:00～1月27日
   - 直前指定 5.2vw の 0.8倍 = 4.16vw
   - 8 / 3 / 1 / 27 は直前の相対比率 1.2em を維持し、表示全体として0.8倍に縮小
   - PC表示には影響させない
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    font-size: 4.16vw !important;
    line-height: 1.15 !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line {
    white-space: nowrap !important;
  }

  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__date_line .campaign_term_r807__large,
  html body main.campaign_page.campaign_2 .campaign .campaign_term.campaign_term_r807 .campaign_term_r807__large {
    display: inline !important;
    font-size: 1.2em !important;
    line-height: 1 !important;
    vertical-align: baseline !important;
  }
}


/* =========================================================
   R807 最終修正: スマホ表示のキャンペーン期間日付
   - 日付行全体は縮小後のサイズを維持
   - 数字 8 / 3 / 1 / 27 のみ 1.2倍で表示
   ========================================================= */
@media screen and (max-width: 767px) {
  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807
  .campaign_term_date.campaign_term_r807__date
  .campaign_term_r807__date_line.campaign_term_r807__date_line_sp08 {
    font-size: 4.16vw !important;
    line-height: 1 !important;
    transform: none !important;
  }

  html body main.campaign_page.campaign_2 .campaign_term.campaign_term_r807
  .campaign_term_date.campaign_term_r807__date
  .campaign_term_r807__date_line.campaign_term_r807__date_line_sp08
  span.campaign_term_r807__large {
    font-size: 1.2em !important;
    line-height: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   R807 campaign main visual: original aspect ratio (height +0%)
   - campaign_r807.png and campaign_r807_sp.png use their
     original aspect ratios without artificial height increase.
   - Width remains responsive and centered for browser zoom.
   - Desktop original size: 2778 x 2026
   - Smartphone image size: 1043 x 469
   ========================================================= */

html body main.campaign_page.campaign_2 .campaign_mv {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

html body main.campaign_page.campaign_2 .campaign_mv picture {
  display: block !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html body main.campaign_page.campaign_2 .campaign_mv picture img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain !important;
}

/*
 * PC・タブレット・スマートフォン共通：
 * 100%ズーム時はブラウザ幅の80%で中央表示。
 * JavaScriptがブラウザズーム倍率を反映し、画像のレイアウト幅を変更する。
 */
html body main.campaign_page.campaign_2 .campaign_mv picture {
  --campaign-r807-main-zoom-width: 80vw;
  width: var(--campaign-r807-main-zoom-width, 80vw) !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  transition: width 0.12s ease-out !important;
  will-change: width;
}


/* =========================================================
   R807 付与ポイント期限の幅調整
   - 直下のチャージ方法ボックス外側幅に対して90%
   - 768px以上はチャージ方法ボックスの左右1.875remマージンを考慮
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
  width: 90% !important;
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

@media screen and (min-width: 768px) {
  html body main.campaign_page.campaign_2 .campaign .campaign_term_limit_r807 {
    width: calc(90% - 3.375rem) !important;
    max-width: calc(90% - 3.375rem) !important;
  }
}



/* =========================================================
   R807 ブラウザ幅100% + ブラウザズーム連動キャンペーン画像
   - セクション背景は常にブラウザ幅100%、画像の基準幅は60%
   - 画像のレイアウト幅自体をブラウザズーム倍率に合わせて変更
   - transformと手動heightは使用せず、セクション高さを画像へ自動追従
   - 縮小時は中央へ縮小、拡大時は中央基準で左右を均等に切り抜く
   ========================================================= */
html body main.campaign_page.campaign_2 .campaign_r807_fullwidth {
  --campaign-r807-zoom-width: 75%;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
  background-color: #ffeb00 !important;
  box-sizing: border-box !important;
}

html body main.campaign_page.campaign_2 .campaign_r807_fullwidth img {
  position: static !important;
  display: block !important;
  justify-self: center !important;
  width: var(--campaign-r807-zoom-width, 75%) !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
  transform-origin: center top !important;
  transition: width 0.12s ease-out !important;
  will-change: width;
  image-rendering: auto !important;
  box-sizing: border-box !important;
}

/* =========================================================
   R807 full-width image / campaign content spacing
   - 全幅画像直後のcampaign content01は必ず隙間なく接続
   - 700px以下で折りたたまれていたcampaign_mvの3.5vw上マージンも解除
   ========================================================= */
html body main.campaign_page.campaign_2
.campaign_r807_fullwidth + .campaign.content01 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html body main.campaign_page.campaign_2
.campaign_r807_fullwidth + .campaign.content01 > .inner {
  padding-top: 0 !important;
}

html body main.campaign_page.campaign_2
.campaign_r807_fullwidth + .campaign.content01 .campaign_mv {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media screen and (max-width: 700px) {
  html body main.campaign_page.campaign_2
  .campaign_r807_fullwidth + .campaign.content01,
  html body main.campaign_page.campaign_2
  .campaign_r807_fullwidth + .campaign.content01 > .inner,
  html body main.campaign_page.campaign_2
  .campaign_r807_fullwidth + .campaign.content01 .campaign_mv {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
