@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 .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 .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 .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;
  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;
    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;
  }
}

.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_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.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: 1400px) {
  .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: 1.4vw;
  font-weight: 500;
  text-align: left;
  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.4375rem;
    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_2 .campaign .campaign_term {
  color: #000;
  display: flex;
  align-items: center;
  margin-top: 1.9vw;
}

.campaign_2 .campaign .campaign_term .campaign_term_title {
  box-shadow: 0.1vw 0.1vw 0 0.1vw #0066cb;
  color: #E50012;
  border: solid 1px #E50012;
  border-radius: 0.5357142857vw;
  padding: 0.5vw 2.5vw;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
  background: #fff;
  font-weight: 800;
  font-size: 2.4vw;
  margin-right: 1.8vw;
}

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

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

  .campaign_2 .campaign .campaign_term .campaign_term_title {
    box-shadow: 0.1rem 0.1rem 0 0.1rem #0066cb;
    border-radius: 0.2rem 0.2rem;
    padding: 0.3125rem 2.7rem;
    font-size: 1.6rem;
    margin-right: 1.8rem;
  }

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

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

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

.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 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 .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 .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 .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;
    padding:   0% 15%;

}

.furusato .application .blue-line__box ul li {
  line-height: 1.3;
  font-size: 2.5607843137254901vw;
  text-align:left;
}

.furusato .application .blue-line__box ul li a {
  color: #0066cb;
/*  font-size: 1.9607843137254901vw;*/
  font-size: 2.5607843137254901vw;

  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 .step_list .flex {
  display: flex;
  justify-content: space-between;
  padding: 0.7vw 1.3vw 0;
}

/* AW */
@media screen and (min-width: 1400px) {

.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;
  padding:   0% 20%;


}

.furusato .application .blue-line__box ul li {
  line-height: 1.3;
  font-size: 1.9607843137254901vw;
  text-align:left;

}

.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 .step_list .flex {
  display: flex;
  justify-content: space-between;
  padding: 0.7vw 1.3vw 0;
}
}

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


.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;
}

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

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

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

.furusato .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: 1400px) {
  .furusato .five_step .step_list .step1 ul li h6 {
    font-size: 1rem;
    border-radius: 1rem 1rem 0 0;
  }
}

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

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

.furusato .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: 1400px) {
  .furusato .five_step .step_list .step1 ul li .btn {
    height: 3.5625rem;
  }
}

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

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

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

.furusato .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: 1400px) {
  .furusato .five_step .step_list .step_image ul {
    margin-left: 5%;
    margin-right: 0;
    gap: 15%;
  }
}


.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;
  margin-bottom: 1em;
}

.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 .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;
  }

  .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;
  }
}