@charset "UTF-8";
html {
  font-size: min(0.834vw, 10px);
}
@media (max-width: 768px) {
  html {
    font-size: min(1.334vw, 10px);
  }
}

body, h1, h2, h3, h4, p, figure, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input, button {
  font: inherit;
  transition: 0.2s linear;
}
input:focus, button:focus {
  transition: none;
}

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

svg {
  max-width: 100%;
  max-height: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

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

@keyframes fuwafuwa {
  0% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2px;
  }
  75% {
    translate: 0 2px;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes katakata {
  0% {
    transform: rotateZ(7deg);
  }
  20% {
    transform: rotateZ(0deg);
  }
}
@keyframes kurukuru1 {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes kurukuru2 {
  0% {
    transform: rotateZ(0deg);
  }
  50% {
    transform: rotateZ(-180deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
.js-animation.fadeIn {
  opacity: 0;
  transition: opacity 0.4s linear;
}
.js-animation.fadeIn.is-animated {
  opacity: 1;
}
.js-animation.slideUpIn {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
.js-animation.slideUpIn.is-animated {
  opacity: 1;
  translate: 0 0;
}
.js-animation.fuwafuwa {
  animation: fuwafuwa 2.5s linear 0s infinite;
}
.js-animation.katakata1 {
  animation: katakata 12s steps(1) 0s infinite;
}
.js-animation.katakata2 {
  animation: katakata 12s steps(1) 6s infinite;
}

@media (min-width: 769px) {
  .js-anchorTarget {
    margin-top: -6rem;
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  .js-anchorTarget {
    margin-top: -14rem;
    padding-top: 14rem;
  }
}

.globalFooter {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .globalFooter {
    max-width: 1200px;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  color: #662b1f;
}
.wrapper * {
  font-family: "Noto Sans JP", sans-serif;
}
.wrapper::before, .wrapper::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}
.wrapper::before {
  background: linear-gradient(to bottom, #f9f0b4, #f4db61);
}
.wrapper::after {
  background-image: linear-gradient(90deg, #fff7bb, #fff7bb 4rem, transparent 4rem, transparent 8rem);
  background-position: center top;
  background-repeat: repeat;
  background-size: 8rem auto;
}

.header_outer {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: 500;
}
@media (min-width: 769px) {
  .header_outer {
    background: #fff;
    max-width: 1200px;
    padding: 0 12.5rem;
  }
}

@media (min-width: 769px) {
  .header_logo {
    flex-shrink: 0;
    width: 28.2rem;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: 54.6rem;
    margin: 7.5rem auto 0;
  }
}

@media (max-width: 768px) {
  .nav_outer {
    background: rgba(255, 255, 255, 0.9);
    height: 0;
    overflow: hidden;
  }
  .header_outer.is-opened .nav_outer {
    height: 100dvh;
  }
}

.nav_inner {
  display: flex;
}
@media (min-width: 769px) {
  .nav_inner {
    justify-content: space-between;
    align-items: flex-end;
    height: 6rem;
    padding: 0 0 1.8rem;
  }
}
@media (max-width: 768px) {
  .nav_inner {
    flex-direction: column-reverse;
    padding: 15.3rem 0;
  }
}

.nav_list {
  display: flex;
}
@media (min-width: 769px) {
  .nav_list {
    column-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    row-gap: 6rem;
    padding: 0 16.5rem;
  }
}
@media (min-width: 769px) {
  .nav_list > li {
    width: 11.7rem;
    height: 2rem;
  }
}
@media (max-width: 768px) {
  .nav_list > li {
    width: 42.1rem;
    height: 7.2rem;
  }
}
@media (min-width: 769px) {
  .nav_list > li:first-of-type {
    width: 5.6rem;
  }
}
@media (max-width: 768px) {
  .nav_list > li:first-of-type {
    width: 20.3rem;
  }
}

.nav_link {
  display: block;
  position: relative;
  height: 100%;
  line-height: 0;
  fill: #662b1f;
  color: #662b1f;
  cursor: pointer;
}
.nav_link::before {
  content: "";
  position: absolute;
  border-radius: 1px;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 769px) {
  .nav_link::before {
    height: 1px;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .nav_link::before {
    background: #662b1f;
    height: 2px;
  }
}
.nav_link:hover::before {
  opacity: 1;
}
@media (min-width: 769px) {
  .nav_link.col1::before {
    background: #662b1f;
  }
}
@media (min-width: 769px) {
  .nav_link.col2::before {
    background: #b6002a;
  }
  .nav_link.col2:hover {
    fill: #b6002a;
    color: #b6002a;
  }
}
@media (min-width: 769px) {
  .nav_link.col3::before {
    background: #6691b2;
  }
  .nav_link.col3:hover {
    fill: #6691b2;
    color: #6691b2;
  }
}
@media (min-width: 769px) {
  .nav_link.col4::before {
    background: #e3a908;
  }
  .nav_link.col4:hover {
    fill: #e3a908;
    color: #e3a908;
  }
}
@media (min-width: 769px) {
  .nav_link.col5::before {
    background: #8f7c65;
  }
  .nav_link.col5:hover {
    fill: #8f7c65;
    color: #8f7c65;
  }
}

.nav_switch {
  display: block;
  position: fixed;
  background: #603f34;
  border: 0;
  border-radius: 6rem 0 0 6rem;
  width: 13rem;
  height: 12rem;
  right: 0;
  top: 2rem;
  z-index: 2;
  appearance: none;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_switch {
    display: none;
  }
}
.nav_switch::before, .nav_switch::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
}
.nav_switch::before {
  background-image: url(../img/index/menu_close.png);
  opacity: 0;
}
.nav_switch::after {
  background-image: url(../img/index/menu_open.png);
}
.header_outer.is-opened .nav_switch::before {
  opacity: 1;
}
.header_outer.is-opened .nav_switch::after {
  opacity: 0;
}

.main_outer {
  position: relative;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  contain: paint;
  z-index: 2;
}
@media (min-width: 769px) {
  .main_outer {
    max-width: 1200px;
    padding-top: 6rem;
  }
}

.kv_section {
  position: relative;
  background-position: center ceil-unit;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media (min-width: 769px) {
  .kv_section {
    background-image: url(../img/index/kv_bg_pc.png);
    height: 57rem;
  }
}
@media (max-width: 768px) {
  .kv_section {
    background-image: url(../img/index/kv_bg_sp.png);
    height: 83rem;
  }
}
.kv_section.is-animated .kv_kazari, .kv_section.is-animated .kv_title, .kv_section.is-animated .kv_image, .kv_section.is-animated .kv_prods, .kv_section.is-animated .kv_bg {
  opacity: 1;
}

.kv_kazari {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s linear 1.2s;
}
.kv_kazari img {
  animation: fuwafuwa 2.5s linear 1.2s infinite;
}

.kv_title {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  transition: opacity 0.4s linear 0.4s;
}
@media (min-width: 769px) {
  .kv_title {
    width: 52.5%;
    top: 5.79%;
  }
}
@media (max-width: 768px) {
  .kv_title {
    width: 82.667%;
    top: 15.543%;
  }
}

.kv_image {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  transition: opacity 0.4s linear 0.8s;
}
@media (min-width: 769px) {
  .kv_image {
    width: 49.667%;
    bottom: 13.158%;
  }
}
@media (max-width: 768px) {
  .kv_image {
    width: 92%;
    bottom: 1.928%;
  }
}

.kv_prods {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s linear 1.2s;
}
@media (min-width: 769px) {
  .kv_prods {
    width: 13.917%;
    right: 11.75%;
    bottom: 12.106%;
  }
}
@media (max-width: 768px) {
  .kv_prods {
    width: 92.267%;
    right: 3.867%;
    bottom: -9.277%;
  }
}

.kv_logo {
  position: absolute;
  width: 63.467%;
  left: 50%;
  bottom: -18.433%;
  translate: -50% 0;
}
@media (min-width: 769px) {
  .kv_logo {
    display: none;
  }
}

.kv_bg {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s linear 1.2s;
}
.kv_bg::before {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
}
@media (min-width: 769px) {
  .kv_bg.bg1 {
    width: 14.167%;
    height: 32.281%;
    left: 9.75%;
    bottom: 24.562%;
  }
}
@media (max-width: 768px) {
  .kv_bg.bg1 {
    width: 14.667%;
    height: 13.254%;
    left: -1.2%;
    bottom: 38.073%;
  }
}
.kv_bg.bg1::before {
  animation: kurukuru1 5.5s linear 0.8s infinite alternate;
}
@media (min-width: 769px) {
  .kv_bg.bg1::before {
    background-image: url(../img/index/kv_kazari1_pc.webp);
  }
}
@media (max-width: 768px) {
  .kv_bg.bg1::before {
    background-image: url(../img/index/kv_kazari1_sp.webp);
  }
}
@media (min-width: 769px) {
  .kv_bg.bg2 {
    width: 11.667%;
    height: 26.667%;
    right: 11%;
    top: 20%;
  }
}
@media (max-width: 768px) {
  .kv_bg.bg2 {
    width: 18.134%;
    height: 17.591%;
    right: -2.666%;
    bottom: 0.964%;
  }
}
.kv_bg.bg2::before {
  animation: kurukuru2 5.5s linear 0.8s infinite alternate;
}
@media (min-width: 769px) {
  .kv_bg.bg2::before {
    background-image: url(../img/index/kv_kazari2_pc.webp);
  }
}
@media (max-width: 768px) {
  .kv_bg.bg2::before {
    background-image: url(../img/index/kv_kazari2_sp.webp);
  }
}

.story_section {
  position: relative;
  background: #fff;
}
@media (min-width: 769px) {
  .story_section {
    padding: 2.9rem 0 9.8rem;
  }
}
@media (max-width: 768px) {
  .story_section {
    padding: 22.5rem 0 8.9rem;
  }
}

.story_title {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .story_title {
    width: 19.8rem;
  }
}
@media (max-width: 768px) {
  .story_title {
    width: 27.3rem;
  }
}

.story_lead {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .story_lead {
    width: 52.6rem;
    padding-top: 4.2rem;
  }
}
@media (max-width: 768px) {
  .story_lead {
    width: 52.8rem;
    padding-top: 3.1rem;
  }
}
.story_lead::before {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 50%;
  translate: -50% 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .story_lead::before {
    background-image: url(../img/index/story_bg_pc.png);
    width: 77.6rem;
    height: 28.5rem;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .story_lead::before {
    background-image: url(../img/index/story_bg_sp.png);
    width: 69.4rem;
    height: 47.8rem;
    bottom: -7.2rem;
  }
}
.story_lead img {
  position: relative;
}

.story_characters {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 769px) {
  .story_characters {
    column-gap: 3rem;
    padding-top: 4.3rem;
  }
}
@media (max-width: 768px) {
  .story_characters {
    flex-wrap: wrap;
    row-gap: 5.1rem;
    padding-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .story_characters > li {
    width: 34.4rem;
  }
  .story_characters > li:nth-of-type(2n+1) {
    padding: 0 3rem;
  }
  .story_characters > li:nth-of-type(2n) {
    padding: 0 3.8rem 0 2.2rem;
  }
}

.story_character {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.story_character:hover > p {
  background: #ffef00;
  fill: #5b2f25;
}

@media (min-width: 769px) {
  .story_character_image.img1 {
    width: 24.7rem;
    padding-bottom: 2.9rem;
  }
}
@media (max-width: 768px) {
  .story_character_image.img1 {
    width: 34.2rem;
    margin-left: -2.9rem;
    margin-right: -2.9rem;
    padding-bottom: 4.4rem;
  }
}
@media (min-width: 769px) {
  .story_character_image.img2 {
    width: 19.1rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .story_character_image.img2 {
    width: 26.4rem;
    padding-bottom: 3.7rem;
  }
}
@media (min-width: 769px) {
  .story_character_image.img3 {
    width: 13.1rem;
    padding-bottom: 2.9rem;
  }
}
@media (max-width: 768px) {
  .story_character_image.img3 {
    width: 17.9rem;
    padding-bottom: 2.3rem;
  }
}
@media (min-width: 769px) {
  .story_character_image.img4 {
    width: 18.6rem;
    padding-bottom: 2.8rem;
  }
}
@media (max-width: 768px) {
  .story_character_image.img4 {
    width: 25.7rem;
    padding-bottom: 2.2rem;
  }
}

.story_character_p {
  background: #5b2f25;
  fill: #ffef00;
}
@media (min-width: 769px) {
  .story_character_p {
    border-radius: 3.6rem;
    width: 20.3rem;
    height: 3.6rem;
  }
}
@media (max-width: 768px) {
  .story_character_p {
    border-radius: 5rem;
    width: 28.4rem;
    height: 5rem;
  }
}

.campaign1_section {
  position: relative;
  background: #fbf1bb;
}
@media (min-width: 769px) {
  .campaign1_section {
    padding: 10.7rem 0 9.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_section {
    padding: 10.7rem 0 10.9rem;
  }
}
.campaign1_section::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign1_section::before {
    background-image: url(../img/index/campaign1_bg_top_pc.png);
    height: calc(11.7rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign1_section::before {
    background-image: url(../img/index/campaign1_bg_top_sp.png);
    height: calc(11.6rem + 1px);
  }
}

.campaign1_bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.campaign1_bg.bg1 {
  background-image: url(../img/index/kazari7.png);
  width: 7.4rem;
  height: 7.4rem;
}
@media (min-width: 769px) {
  .campaign1_bg.bg1 {
    left: 3.8rem;
    top: -7.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg1 {
    left: 5.7rem;
    top: -22.8rem;
  }
}
.campaign1_bg.bg2 {
  background-image: url(../img/index/kazari8.png);
  width: 11.5rem;
  height: 13.5rem;
}
@media (min-width: 769px) {
  .campaign1_bg.bg2 {
    left: -6.3rem;
    top: -1.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg2 {
    right: 4.9rem;
    top: -14.8rem;
  }
}
.campaign1_bg.bg3 {
  background-image: url(../img/index/kazari9.png);
  width: 7.3rem;
  height: 7.4rem;
}
@media (min-width: 769px) {
  .campaign1_bg.bg3 {
    left: -0.1rem;
    top: -1.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg3 {
    left: 6.6rem;
    top: -9.9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_bg.bg4 {
    background-image: url(../img/index/kazari1_pc.png);
    width: 8.8rem;
    height: 14rem;
    left: 9.4rem;
    top: 7.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg4 {
    background-image: url(../img/index/kazari1_sp.png);
    width: 10.1rem;
    height: 9.8rem;
    left: 8.1rem;
    top: 7.9rem;
  }
}
.campaign1_bg.bg5 {
  background-image: url(../img/index/kazari2.png);
  width: 9rem;
  height: 9.2rem;
}
@media (min-width: 769px) {
  .campaign1_bg.bg5 {
    right: 16.2rem;
    top: -2.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg5 {
    right: 7.2rem;
    top: 10.5rem;
  }
}
@media (min-width: 769px) {
  .campaign1_bg.bg6 {
    background-image: url(../img/index/kazari3_pc.png);
    width: 10.3rem;
    height: 15.6rem;
    left: -4.7rem;
    top: -23.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg6 {
    display: none;
  }
}
@media (min-width: 769px) {
  .campaign1_bg.bg7 {
    background-image: url(../img/index/kazari4.png);
    width: 5.1rem;
    height: 5.3rem;
    right: -9.1rem;
    bottom: 16.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg7 {
    display: none;
  }
}
@media (min-width: 769px) {
  .campaign1_bg.bg8 {
    background-image: url(../img/index/kazari5_pc.png);
    width: 7.3rem;
    height: 13.6rem;
    left: 4.7rem;
    bottom: 16.3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg8 {
    display: none;
  }
}
.campaign1_bg.bg9 {
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .campaign1_bg.bg9 {
    background-image: url(../img/index/campaign1_head_bg_pc.png);
  }
}
@media (max-width: 768px) {
  .campaign1_bg.bg9 {
    background-image: url(../img/index/campaign1_head_bg_sp.png);
  }
}

.campaign1_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 769px) {
  .campaign1_head_p {
    width: 37.2rem;
    margin-bottom: -1.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_head_p {
    width: 54.4rem;
    margin-bottom: 4.4rem;
  }
}

.campaign1_head_h2 {
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_head_h2 {
    width: 78.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_head_h2 {
    width: 66rem;
  }
}

.campaign1_lead {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_lead {
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign1_lead > p {
    font: inherit;
  }
  .campaign1_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign1_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign1_lead {
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign1_lead > p {
    font: inherit;
  }
  .campaign1_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign1_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign1_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_text {
    line-height: 1.556;
    font-size: 1.8rem;
  }
  .campaign1_text > p {
    font: inherit;
  }
  .campaign1_text > p:first-of-type {
    margin-top: -0.277em;
  }
  .campaign1_text > p:last-of-type {
    margin-bottom: -0.277em;
  }
}
@media (max-width: 768px) {
  .campaign1_text {
    line-height: 1.563;
    font-size: 3.2rem;
  }
  .campaign1_text > p {
    font: inherit;
  }
  .campaign1_text > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_text > p:last-of-type {
    margin-bottom: -0.281em;
  }
}

.campaign1_note {
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign1_note {
    line-height: 1.563;
    font-size: 1.6rem;
    text-align: center;
  }
  .campaign1_note > p {
    font: inherit;
  }
  .campaign1_note > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_note > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_note {
    line-height: 1.5;
    font-size: 2.4rem;
    text-align: justify;
  }
  .campaign1_note > p {
    font: inherit;
  }
  .campaign1_note > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_note > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.campaign1_kome {
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign1_kome {
    line-height: 1.612;
    font-size: 1.8rem;
  }
  .campaign1_kome > li {
    font: inherit;
  }
  .campaign1_kome > li:first-of-type {
    margin-top: -0.305em;
  }
  .campaign1_kome > li:last-of-type {
    margin-bottom: -0.305em;
  }
}
@media (max-width: 768px) {
  .campaign1_kome {
    line-height: 1.786;
    font-size: 2.8rem;
  }
  .campaign1_kome > li {
    font: inherit;
  }
  .campaign1_kome > li:first-of-type {
    margin-top: -0.392em;
  }
  .campaign1_kome > li:last-of-type {
    margin-bottom: -0.392em;
  }
}
.campaign1_kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
.campaign1_kome > li::before {
  content: "・";
  margin: 0 0.23em;
}

.campaign1_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .campaign1_buttons {
    column-gap: 4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons {
    flex-direction: column;
    row-gap: 3.9rem;
  }
}
.campaign1_buttons > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f8e100;
  fill: #662b1f;
  color: #662b1f;
}
@media (min-width: 769px) {
  .campaign1_buttons > a {
    row-gap: 0.7rem;
    border-radius: 12rem;
    width: 40.5rem;
    height: 12rem;
    padding: 0 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons > a {
    row-gap: 1.2rem;
    border-radius: 17.8rem;
    width: 60rem;
    height: 17.8rem;
    padding: 0 0 0.5rem;
  }
}
.campaign1_buttons > a small {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_buttons > a small {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons > a small {
    font-size: 2.7rem;
  }
}
.campaign1_buttons > a span {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_buttons > a span {
    font-size: 4.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons > a span {
    font-size: 7rem;
  }
}
.campaign1_buttons > a svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign1_buttons > a svg {
    width: 2rem;
    height: 3.2rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons > a svg {
    width: 3.9rem;
    height: 6.2rem;
    right: 2.8rem;
  }
}
.campaign1_buttons > a:hover {
  background: #662b1f;
  fill: #f8e100;
  color: #f8e100;
  text-decoration: none;
}
.campaign1_buttons > a.is-disabled {
  filter: grayscale(1);
  pointer-events: none;
}
.campaign1_buttons > a.is-disabled > * {
  opacity: 0.3;
}
.campaign1_buttons > p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #df0011;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 769px) {
  .campaign1_buttons > p {
    width: 85rem;
    height: 12rem;
    line-height: 1.25;
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_buttons > p {
    flex-direction: column;
    width: 66.6rem;
    height: 22rem;
    line-height: 1.4;
    font-size: 6rem;
  }
}

.campaign1_conditions {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #662b1f;
  color: #fff5d5;
}
@media (min-width: 769px) {
  .campaign1_conditions {
    column-gap: 1.7rem;
    border-radius: 5rem;
    height: 5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_conditions {
    flex-wrap: wrap;
    column-gap: 4rem;
    border-radius: 3.8rem;
    padding: 3.05rem 0;
  }
}
.campaign1_conditions > li {
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .campaign1_conditions > li {
    line-height: 1.7;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_conditions > li {
    line-height: 1.594;
    font-size: 3.2rem;
  }
}

.campaign1_prizes {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign1_prizes {
    row-gap: 1.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prizes {
    row-gap: 2.8rem;
  }
}

.campaign1_prize {
  display: flex;
}
@media (min-width: 769px) {
  .campaign1_prize {
    justify-content: center;
    column-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prize {
    flex-direction: column;
    align-items: center;
    row-gap: 1.8rem;
  }
}

.campaign1_prize_h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 769px) {
  .campaign1_prize_h4 {
    width: 36rem;
    height: 4rem;
    line-height: 1.273;
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prize_h4 {
    width: 54rem;
    height: 6rem;
    line-height: 1.304;
    font-size: 3.3rem;
  }
}
.campaign1_prize_h4.col1 {
  background: #df0011;
}
.campaign1_prize_h4.col2 {
  background: #6690b1;
}
.campaign1_prize_h4.col3 {
  background: #e2a808;
}
.campaign1_prize_h4.col4 {
  background: #8f7c65;
}

.campaign1_prize_p {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_prize_p {
    padding: 0.6rem 0;
    line-height: 1.273;
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prize_p {
    line-height: 1;
    font-size: 3.3rem;
  }
}

.campaign1_prize_note {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_prize_note {
    padding-top: 2.9rem;
    line-height: 1.286;
    font-size: 1.4rem;
  }
  .campaign1_prize_note > p {
    font: inherit;
  }
  .campaign1_prize_note > p:first-of-type {
    margin-top: -0.142em;
  }
  .campaign1_prize_note > p:last-of-type {
    margin-bottom: -0.142em;
  }
}
@media (max-width: 768px) {
  .campaign1_prize_note {
    padding-top: 4.2rem;
    line-height: 1.179;
    font-size: 2.8rem;
  }
  .campaign1_prize_note > p {
    font: inherit;
  }
  .campaign1_prize_note > p:first-of-type {
    margin-top: -0.089em;
  }
  .campaign1_prize_note > p:last-of-type {
    margin-bottom: -0.089em;
  }
}

.campaign1_steps {
  display: flex;
}
.campaign1_steps > li {
  position: relative;
  height: auto;
}
@media (min-width: 769px) {
  .campaign1_steps > li {
    flex-shrink: 0;
  }
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(1) {
    width: 31.168% !important;
  }
}
.campaign1_steps > li:nth-of-type(1) .campaign1_step {
  background: #fdede3;
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(1) .campaign1_step_image {
    width: 15.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_steps > li:nth-of-type(1) .campaign1_step_image {
    width: 28.4rem;
    padding-top: 2rem;
  }
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(2) {
    width: 39.868% !important;
  }
  .campaign1_steps > li:nth-of-type(2)::before, .campaign1_steps > li:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: calc(4rem + 1px);
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
  }
  .campaign1_steps > li:nth-of-type(2)::before {
    clip-path: polygon(0 0, 1px 0, 100% 50%, 1px 100%, 0 100%);
    background: #fdede3;
    left: -1px;
  }
  .campaign1_steps > li:nth-of-type(2)::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(100% - 1px) 50%);
    background: #ef9874;
    right: -1px;
  }
}
.campaign1_steps > li:nth-of-type(2) .campaign1_step {
  background: #f6c4aa;
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(2) .campaign1_step_image {
    width: 23.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_steps > li:nth-of-type(2) .campaign1_step_image {
    width: 38rem;
  }
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(3) {
    width: 28.965% !important;
  }
}
.campaign1_steps > li:nth-of-type(3) .campaign1_step {
  background: #ef9874;
}
@media (min-width: 769px) {
  .campaign1_steps > li:nth-of-type(3) .campaign1_step_image {
    width: 20.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_steps > li:nth-of-type(3) .campaign1_step_image {
    width: 33rem;
  }
}

.campaign1_steps_swiper {
  position: relative;
}
.campaign1_steps_swiper .swiper-button-prev, .campaign1_steps_swiper .swiper-button-next {
  fill: #f6c4aa;
  width: 7.2rem;
  height: 7.6rem;
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign1_steps_swiper .swiper-button-prev, .campaign1_steps_swiper .swiper-button-next {
    display: none;
  }
}
.campaign1_steps_swiper .swiper-button-prev::after, .campaign1_steps_swiper .swiper-button-next::after {
  display: none;
}
.campaign1_steps_swiper .swiper-button-prev.swiper-button-disabled, .campaign1_steps_swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.campaign1_steps_swiper .swiper-button-prev {
  left: 5rem;
}
.campaign1_steps_swiper .swiper-button-next {
  right: 5rem;
}
.campaign1_steps_swiper .swiper-button-next svg {
  scale: -1 1;
}

.campaign1_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (min-width: 769px) {
  .campaign1_step {
    padding: 3.3rem 0 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_step {
    border-radius: 4rem;
    width: 60rem;
    margin: 0 auto;
    padding: 5.9rem 0 2.8rem;
  }
}

@media (min-width: 769px) {
  .campaign1_step_index {
    height: 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_step_index {
    height: 5rem;
  }
}

.campaign1_step_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_step_text {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .campaign1_step_text > p {
    font: inherit;
  }
  .campaign1_step_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_step_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (max-width: 768px) {
  .campaign1_step_text {
    padding-top: 2.5rem;
    padding-bottom: 2.7rem;
    line-height: 1.438;
    font-size: 3.2rem;
  }
  .campaign1_step_text > p {
    font: inherit;
  }
  .campaign1_step_text > p:first-of-type {
    margin-top: -0.218em;
  }
  .campaign1_step_text > p:last-of-type {
    margin-bottom: -0.218em;
  }
}

.campaign1_items {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_items {
    justify-content: space-between;
  }
}
.campaign1_items > li {
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_items > li + li::before {
    content: "";
    position: absolute;
    background: #8f7c65;
    width: 1px;
    height: 34.6rem;
    bottom: 0;
    pointer-events: none;
  }
}
@media (min-width: 769px) {
  .campaign1_items > li:has(.item1) {
    width: 25.9rem !important;
  }
}
@media (min-width: 769px) {
  .campaign1_items > li:has(.item2) {
    width: 24.3rem !important;
  }
}
@media (min-width: 769px) {
  .campaign1_items > li:has(.item2)::before {
    left: calc(-1.9rem - 1px);
  }
}
@media (min-width: 769px) {
  .campaign1_items > li:has(.item3) {
    width: 28.9rem !important;
    margin-left: 1.1rem;
  }
}
@media (min-width: 769px) {
  .campaign1_items > li:has(.item3)::before {
    left: calc(-2.1rem - 1px);
  }
}

.campaign1_items_swiper {
  position: relative;
}
.campaign1_items_swiper .swiper-button-prev, .campaign1_items_swiper .swiper-button-next {
  fill: #f6c4aa;
  width: 7.2rem;
  height: 7.6rem;
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign1_items_swiper .swiper-button-prev, .campaign1_items_swiper .swiper-button-next {
    display: none;
  }
}
.campaign1_items_swiper .swiper-button-prev::after, .campaign1_items_swiper .swiper-button-next::after {
  display: none;
}
.campaign1_items_swiper .swiper-button-prev.swiper-button-disabled, .campaign1_items_swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.campaign1_items_swiper .swiper-button-next svg {
  scale: -1 1;
}

@media (max-width: 768px) {
  .campaign1_item {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .campaign1_item.item1 {
    width: 48rem;
  }
}
@media (max-width: 768px) {
  .campaign1_item.item2 {
    width: 50.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_item.item3 {
    width: 50rem;
  }
}

.campaign1_prods {
  display: grid;
  justify-content: center;
}
@media (min-width: 769px) {
  .campaign1_prods {
    grid-template-columns: repeat(2, 41.5rem);
    row-gap: 3.6rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prods {
    grid-template-columns: repeat(2, 35rem);
    row-gap: 4.5rem;
  }
}

.campaign1_prod {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 769px) {
  .campaign1_prod_image {
    width: 24.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_prod_image {
    width: 30.2rem;
  }
}

.campaign1_prod_name {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_prod_name {
    padding-top: 1rem;
    line-height: 1.364;
    font-size: 2.2rem;
  }
  .campaign1_prod_name > p {
    font: inherit;
  }
  .campaign1_prod_name > p:first-of-type {
    margin-top: -0.181em;
  }
  .campaign1_prod_name > p:last-of-type {
    margin-bottom: -0.181em;
  }
}
@media (max-width: 768px) {
  .campaign1_prod_name {
    padding-top: 2.5rem;
    line-height: 1.177;
    font-size: 3.4rem;
  }
  .campaign1_prod_name > p {
    font: inherit;
  }
  .campaign1_prod_name > p:first-of-type {
    margin-top: -0.088em;
  }
  .campaign1_prod_name > p:last-of-type {
    margin-bottom: -0.088em;
  }
}

.campaign1_prod_text {
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign1_prod_text {
    padding-top: 1.5rem;
    line-height: 1.375;
    font-size: 1.6rem;
  }
  .campaign1_prod_text > p {
    font: inherit;
  }
  .campaign1_prod_text > p:first-of-type {
    margin-top: -0.187em;
  }
  .campaign1_prod_text > p:last-of-type {
    margin-bottom: -0.187em;
  }
}
@media (max-width: 768px) {
  .campaign1_prod_text {
    padding-top: 2rem;
    letter-spacing: -0.01em;
    line-height: 1.462;
    font-size: 2.6rem;
  }
  .campaign1_prod_text > p {
    font: inherit;
  }
  .campaign1_prod_text > p:first-of-type {
    margin-top: -0.23em;
  }
  .campaign1_prod_text > p:last-of-type {
    margin-bottom: -0.23em;
  }
}

.campaign1_prod_note {
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign1_prod_note {
    padding-top: 1rem;
    line-height: 1.429;
    font-size: 1.4rem;
  }
  .campaign1_prod_note > p {
    font: inherit;
  }
  .campaign1_prod_note > p:first-of-type {
    margin-top: -0.214em;
  }
  .campaign1_prod_note > p:last-of-type {
    margin-bottom: -0.214em;
  }
}
@media (max-width: 768px) {
  .campaign1_prod_note {
    padding-top: 1.5rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .campaign1_prod_note > p {
    font: inherit;
  }
  .campaign1_prod_note > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_prod_note > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.campaign1_terms {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign1_terms {
    width: 70.834%;
  }
}
@media (max-width: 768px) {
  .campaign1_terms {
    width: 88.8%;
  }
}
.campaign1_terms > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  fill: #662b1f;
  color: #662b1f;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign1_terms > dt {
    border: 2px solid #662b1f;
    height: 4.6rem;
  }
}
@media (max-width: 768px) {
  .campaign1_terms > dt {
    border: 0.3rem solid #662b1f;
    min-height: 6.4rem;
    padding: 0.9rem 0;
    text-align: center;
  }
}
.campaign1_terms > dt > * {
  pointer-events: none;
}
.campaign1_terms > dt p {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_terms > dt p {
    line-height: 1;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_terms > dt p {
    line-height: 1.267;
    font-size: 3rem;
  }
}
.campaign1_terms > dt svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign1_terms > dt svg {
    width: 2.6rem;
    height: 1.5rem;
    right: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_terms > dt svg {
    width: 3.7rem;
    height: 2.2rem;
    right: 2.2rem;
  }
}
.campaign1_terms > dt.is-opened svg {
  scale: 1 -1;
}
.campaign1_terms > dd {
  height: 0;
  overflow: hidden;
  transition: height 0.2s linear;
}

@media (min-width: 769px) {
  .campaign1_term {
    padding: 2.6rem 0;
  }
}
@media (max-width: 768px) {
  .campaign1_term {
    padding: 3.3rem 0;
  }
}
.campaign1_term > dt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign1_term > dt > p {
    font: inherit;
  }
  .campaign1_term > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_term > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign1_term > dt > p {
    font: inherit;
  }
  .campaign1_term > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign1_term > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dt + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dt + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dt + dd {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dt + dd {
    padding-top: 0.6rem;
  }
}
.campaign1_term > dd a {
  text-decoration: none;
  color: inherit;
}
.campaign1_term > dd a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .campaign1_term > dd .campaign1_term_p + .campaign1_term_p, .campaign1_term > dd .campaign1_term_p + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_p + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_p + .campaign1_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd .campaign1_term_p + .campaign1_term_p, .campaign1_term > dd .campaign1_term_p + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_p + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_p + .campaign1_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dd .campaign1_term_ul + .campaign1_term_p, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd .campaign1_term_ul + .campaign1_term_p, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_ul + .campaign1_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dd .campaign1_term_ol + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_p, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd .campaign1_term_ol + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_p, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_ol + .campaign1_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dd .campaign1_term_dl + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_p, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd .campaign1_term_dl + .campaign1_term_ul, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_p, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_ol, .campaign1_term > dd .campaign1_term_dl + .campaign1_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dd + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_term > dd + dd {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term > dd + dd {
    padding-top: 3.8rem;
  }
}

.campaign1_term_h3 {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_term_h3 {
    padding: 2.6rem 0 0;
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign1_term_h3 > h3 {
    font: inherit;
  }
  .campaign1_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign1_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_h3 {
    padding: 3.3rem 0 0;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign1_term_h3 > h3 {
    font: inherit;
  }
  .campaign1_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign1_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign1_term_p {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_p {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign1_term_p > p {
    font: inherit;
  }
  .campaign1_term_p > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_term_p > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_p {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign1_term_p > p {
    font: inherit;
  }
  .campaign1_term_p > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign1_term_p > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign1_term_ul {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_ul {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign1_term_ul > li {
    font: inherit;
  }
  .campaign1_term_ul > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_term_ul > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_ul {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign1_term_ul > li {
    font: inherit;
  }
  .campaign1_term_ul > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign1_term_ul > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign1_term_ol {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_ol {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign1_term_ol > li {
    font: inherit;
  }
  .campaign1_term_ol > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_term_ol > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_ol {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign1_term_ol > li {
    font: inherit;
  }
  .campaign1_term_ol > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign1_term_ol > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign1_term_dl {
  display: flex;
}
.campaign1_term_dl > dt {
  flex-shrink: 0;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_dl > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign1_term_dl > dt > p {
    font: inherit;
  }
  .campaign1_term_dl > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign1_term_dl > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_dl > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign1_term_dl > dt > p {
    font: inherit;
  }
  .campaign1_term_dl > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign1_term_dl > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign1_term_text {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_text {
    padding-top: 2.9rem;
    line-height: 1.072;
    font-size: 2.8rem;
    text-align: center;
  }
  .campaign1_term_text > p {
    font: inherit;
  }
  .campaign1_term_text > p:first-of-type {
    margin-top: -0.035em;
  }
  .campaign1_term_text > p:last-of-type {
    margin-bottom: -0.035em;
  }
}
@media (max-width: 768px) {
  .campaign1_term_text {
    padding-top: 2.9rem;
    line-height: 1.239;
    font-size: 4.2rem;
    text-align: center;
  }
  .campaign1_term_text > p {
    font: inherit;
  }
  .campaign1_term_text > p:first-of-type {
    margin-top: -0.119em;
  }
  .campaign1_term_text > p:last-of-type {
    margin-bottom: -0.119em;
  }
}

.campaign1_term_check {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .campaign1_term_check {
    column-gap: 1.2rem;
    padding-top: 2.3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term_check {
    column-gap: 2rem;
    padding-top: 3rem;
  }
}
.campaign1_term_check input {
  accent-color: #df0011;
  background: #fff;
  border-radius: 0;
  margin: 0;
}
@media (min-width: 769px) {
  .campaign1_term_check input {
    border: 2px solid #662b1f;
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term_check input {
    border: 0.3rem solid #662b1f;
    width: 7rem;
    height: 7rem;
  }
}
.campaign1_term_check label {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_term_check label {
    line-height: 1.223;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_term_check label {
    line-height: 1.334;
    font-size: 3rem;
  }
}

.campaign1_example {
  display: grid;
}
@media (min-width: 769px) {
  .campaign1_example {
    grid-template-columns: 7rem 1fr;
    gap: 1.4rem 2.1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example {
    grid-template-columns: 9rem 1fr;
    gap: 2rem 2.4rem;
  }
}
.campaign1_example > dt {
  position: relative;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_example > dt {
    grid-column: 1/2;
  }
}
.campaign1_example > dt > i {
  display: block;
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_example > dt > i {
    height: 7.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example > dt > i {
    height: 10rem;
  }
}
.campaign1_example > dt > i::before, .campaign1_example > dt > i::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.campaign1_example > dt > p {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_example > dt > p {
    padding-top: 0.8rem;
    font-size: 2rem;
  }
}
.campaign1_example > dd {
  grid-column: 2/3;
}
@media (min-width: 769px) {
  .campaign1_example > dd .campaign1_example_list {
    margin-top: -0.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example > dd + dd {
    grid-column: 1/3;
  }
}
.campaign1_example.good {
  color: #b6002a;
}
@media (min-width: 769px) {
  .campaign1_example.good > dt {
    grid-row: 1/3;
  }
}
.campaign1_example.good > dt > i::before {
  border: 0.8rem solid;
  border-radius: 50%;
  left: 50%;
  translate: -50% 0;
}
@media (min-width: 769px) {
  .campaign1_example.good > dt > i::before {
    width: 7.4rem;
    height: 7.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example.good > dt > i::before {
    width: 9rem;
    height: 9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_example.good .campaign1_example_kome {
    margin-top: -0.2rem;
  }
}
.campaign1_example.bad {
  color: #1677b7;
}
.campaign1_example.bad > dt > i::before, .campaign1_example.bad > dt > i::after {
  height: 0;
  margin: auto;
}
@media (min-width: 769px) {
  .campaign1_example.bad > dt > i::before, .campaign1_example.bad > dt > i::after {
    border-radius: 1rem;
    border: 0.5rem solid;
    width: 125.715%;
    inset: 0 0 0 -13%;
  }
}
@media (max-width: 768px) {
  .campaign1_example.bad > dt > i::before, .campaign1_example.bad > dt > i::after {
    border-radius: 0.9rem;
    border: 0.45rem solid;
    width: 110%;
    inset: 0 0 0 -7%;
  }
}
.campaign1_example.bad > dt > i::before {
  rotate: 45deg;
}
.campaign1_example.bad > dt > i::after {
  rotate: -45deg;
}
@media (min-width: 769px) {
  .campaign1_example.bad > dd + dd {
    grid-column: 1/3;
  }
}
.campaign1_example.bad .campaign1_example_note {
  background: #d9e0ee;
}
.campaign1_example.bad .campaign1_example_note::before {
  background: #d9e0ee;
}
@media (max-width: 768px) {
  .campaign1_example.bad .campaign1_example_note::before {
    width: 3rem;
    height: 1.5rem;
  }
}

.campaign1_example_list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .campaign1_example_list {
    column-gap: 1.5rem;
  }
}
.campaign1_example_list > li {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_example_list > li {
    line-height: 1.556;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example_list > li {
    line-height: 1.5;
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_example_list > li {
    padding-left: 0.5em;
    text-indent: -0.5em;
  }
  .campaign1_example_list > li.full {
    width: 100%;
  }
}

.campaign1_example_kome {
  letter-spacing: 0.01em;
  color: #662b1f;
}
@media (min-width: 769px) {
  .campaign1_example_kome {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .campaign1_example_kome > li {
    font: inherit;
  }
  .campaign1_example_kome > li:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_example_kome > li:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (max-width: 768px) {
  .campaign1_example_kome {
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .campaign1_example_kome > li {
    font: inherit;
  }
  .campaign1_example_kome > li:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_example_kome > li:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (min-width: 769px) {
  .campaign1_example_kome > li {
    padding-left: 1em;
    text-indent: -1em;
  }
}
@media (max-width: 768px) {
  .campaign1_example_kome > li {
    display: inline;
  }
}

.campaign1_example_note {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_example_note {
    height: 3.7rem;
    line-height: 1.375;
    font-size: 1.6rem;
  }
  .campaign1_example_note > p {
    font: inherit;
  }
  .campaign1_example_note > p:first-of-type {
    margin-top: -0.187em;
  }
  .campaign1_example_note > p:last-of-type {
    margin-bottom: -0.187em;
  }
}
@media (max-width: 768px) {
  .campaign1_example_note {
    height: 18.6rem;
    line-height: 1.6;
    font-size: 3rem;
    text-align: center;
  }
  .campaign1_example_note > p {
    font: inherit;
  }
  .campaign1_example_note > p:first-of-type {
    margin-top: -0.3em;
  }
  .campaign1_example_note > p:last-of-type {
    margin-bottom: -0.3em;
  }
}
.campaign1_example_note::before {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  bottom: 99%;
  pointer-events: none;
}
@media (min-width: 769px) {
  .campaign1_example_note::before {
    left: 50%;
    translate: -50% 0;
  }
}
@media (max-width: 768px) {
  .campaign1_example_note::before {
    left: 3.4rem;
  }
}

.campaign1_character {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.campaign1_course {
  display: flex;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign1_course {
    width: 79.167%;
  }
}
.campaign1_course::before {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 50%;
  top: 0;
  bottom: 0;
  translate: -50% 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .campaign1_course::before {
    width: 100vw;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 {
    justify-content: space-between;
    margin-top: 6rem;
    padding: 7.4rem 11rem 6.7rem 10rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 {
    flex-direction: column;
    margin-top: 3.6rem;
    padding: 7.9rem 0 8.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1::before {
    background-image: url(../img/index/campaign1_course1_bg_pc.png);
    width: 97.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1::before {
    background-image: url(../img/index/campaign1_course1_bg_sp.png);
  }
}
.campaign1_course.course1 .campaign1_character {
  background-image: url(../img/index/character1.png);
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_character {
    width: 19.4rem;
    height: 15.7rem;
    right: 3rem;
    top: -7.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 .campaign1_character {
    width: 19.3rem;
    height: 15.7rem;
    right: 3.3rem;
    top: 37.7rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_course_image {
    width: 28.3rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 .campaign1_course_image {
    width: 49.4rem;
    margin: 9.2rem auto 0;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_course_image p {
    padding-left: 3.5rem;
    padding-top: 0.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 .campaign1_course_image p {
    padding-top: 2.7rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_course_head {
    order: 5;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_course_head p {
    width: 10.7rem;
    left: -5.8rem;
    top: -3.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 .campaign1_course_head p {
    width: 18.1rem;
    left: 5.4rem;
    bottom: -16.3rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course1 .campaign1_course_head h4 {
    width: 38.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course1 .campaign1_course_head h4 {
    width: 59.2rem;
  }
}
.campaign1_course.course2 {
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign1_course.course2 {
    margin-top: 4.5rem;
    padding: 0 3.2rem 7.8rem 5.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2 {
    margin-top: 4.7rem;
    padding: 13.9rem 0 7.3rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course2::before {
    background-image: url(../img/index/campaign1_course2_bg_pc.png);
    width: 99.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2::before {
    background-image: url(../img/index/campaign1_course2_bg_sp.png);
  }
}
.campaign1_course.course2 .campaign1_character {
  background-image: url(../img/index/character2.png);
}
@media (min-width: 769px) {
  .campaign1_course.course2 .campaign1_character {
    width: 15.3rem;
    height: 10.8rem;
    right: 6.5rem;
    top: -2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2 .campaign1_character {
    width: 15.4rem;
    height: 10.8rem;
    right: 12.8rem;
    top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course2 .campaign1_course_head p {
    top: -1.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2 .campaign1_course_head p {
    top: -16.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course2 .campaign1_course_head h4 {
    width: 43.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2 .campaign1_course_head h4 {
    width: 65.2rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course2 .campaign1_items_swiper {
    padding-top: 2.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course2 .campaign1_items_swiper {
    padding-top: 3.4rem;
  }
}
.campaign1_course.course3 {
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign1_course.course3 {
    margin-top: 2.6rem;
    padding: 0 3.2rem 9.3rem 5.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3 {
    margin-top: 2.9rem;
    padding: 15.7rem 0 9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course3::before {
    background-image: url(../img/index/campaign1_course3_bg_pc.png);
    width: 98.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3::before {
    background-image: url(../img/index/campaign1_course3_bg_sp.png);
  }
}
.campaign1_course.course3 .campaign1_character {
  background-image: url(../img/index/character3.png);
}
@media (min-width: 769px) {
  .campaign1_course.course3 .campaign1_character {
    width: 12.8rem;
    height: 9.2rem;
    right: 3.5rem;
    top: 1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3 .campaign1_character {
    width: 12.9rem;
    height: 9.2rem;
    right: 10.4rem;
    top: 3.1rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course3 .campaign1_course_head p {
    top: 0.3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3 .campaign1_course_head p {
    top: -17.5rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course3 .campaign1_course_head h4 {
    width: 47.6rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3 .campaign1_course_head h4 {
    width: 65.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course3 .campaign1_items_swiper {
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course3 .campaign1_items_swiper {
    padding-top: 3.3rem;
  }
}
.campaign1_course.course4 {
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign1_course.course4 {
    margin-top: 2.8rem;
    padding: 0 3.2rem 6.5rem 5.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4 {
    margin-top: 9.5rem;
    padding: 11.5rem 0 10.1rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course4::before {
    background-image: url(../img/index/campaign1_course4_bg_pc.png);
    width: 102rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4::before {
    background-image: url(../img/index/campaign1_course4_bg_sp.png);
  }
}
.campaign1_course.course4 .campaign1_character {
  background-image: url(../img/index/character4.png);
}
@media (min-width: 769px) {
  .campaign1_course.course4 .campaign1_character {
    width: 11.1rem;
    height: 14.1rem;
    right: 2.5rem;
    top: 3.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4 .campaign1_character {
    width: 11.2rem;
    height: 14.1rem;
    right: 14.9rem;
    top: -5.3rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course4 .campaign1_course_head p {
    top: -0.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4 .campaign1_course_head p {
    top: -16.9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course4 .campaign1_course_head h4 {
    width: 43.3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4 .campaign1_course_head h4 {
    width: 64.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_course.course4 .campaign1_items_swiper {
    padding-top: 2.9rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course.course4 .campaign1_items_swiper {
    padding-top: 3.4rem;
  }
}

.campaign1_course_head {
  display: flex;
  position: relative;
  justify-content: center;
}
.campaign1_course_head p {
  position: absolute;
}
@media (min-width: 769px) {
  .campaign1_course_head p {
    width: 14.8rem;
    left: 3.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course_head p {
    width: 17.7rem;
    left: 29.7rem;
  }
}

.campaign1_course_image {
  position: relative;
}
.campaign1_course_image p {
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 769px) {
  .campaign1_course_image p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_course_image p {
    font-size: 2rem;
    text-align: center;
  }
}

.campaign1_course_kome {
  margin: 0 auto;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign1_course_kome {
    width: 79.167%;
    padding-top: 3.1rem;
    line-height: 1.286;
    font-size: 1.4rem;
  }
  .campaign1_course_kome > p {
    font: inherit;
  }
  .campaign1_course_kome > p:first-of-type {
    margin-top: -0.142em;
  }
  .campaign1_course_kome > p:last-of-type {
    margin-bottom: -0.142em;
  }
}
@media (max-width: 768px) {
  .campaign1_course_kome {
    width: 86.667%;
    padding-top: 2.7rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .campaign1_course_kome > p {
    font: inherit;
  }
  .campaign1_course_kome > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign1_course_kome > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.campaign1_box {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign1_box {
    width: 75.667%;
    margin-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .campaign1_box {
    margin-top: 5rem;
  }
}

.campaign1_box_top {
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .campaign1_box_top {
    background: #f6c4aa;
    border-radius: 2rem 2rem 0 0;
  }
}

.campaign1_box_bottom {
  position: relative;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 769px) {
  .campaign1_box_bottom {
    display: grid;
    column-gap: 1.8rem;
    grid-template-columns: 22.6rem 1fr;
    border-radius: 0 0 2rem 2rem;
    padding: 3.7rem 3.7rem 4.1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_box_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4rem;
    width: 60rem;
    margin: 4rem auto 0;
    padding: 6rem 5rem 7rem;
  }
}
@media (min-width: 769px) {
  .campaign1_box_bottom .campaign1_box_image {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
@media (max-width: 768px) {
  .campaign1_box_bottom .campaign1_box_image {
    margin-bottom: 4.5rem;
  }
}
@media (min-width: 769px) {
  .campaign1_box_bottom .campaign1_conditions {
    margin-top: 1.3rem;
  }
}
@media (max-width: 768px) {
  .campaign1_box_bottom .campaign1_conditions {
    margin-top: 2.9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_box_bottom .campaign1_example.good {
    padding-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_box_bottom .campaign1_example.good {
    padding-top: 4.5rem;
  }
}
@media (min-width: 769px) {
  .campaign1_box_bottom .campaign1_example.bad {
    padding-top: 2.1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_box_bottom .campaign1_example.bad {
    padding-top: 3.5rem;
  }
}

@media (max-width: 768px) {
  .campaign1_box_image {
    width: 23.8rem;
  }
}

.campaign1_date {
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_date {
    padding: 3.4rem 0 6.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_date {
    padding: 7.4rem 0 9rem;
  }
}
@media (min-width: 769px) {
  .campaign1_date .campaign1_head_h3 {
    width: 13.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_date .campaign1_head_h3 {
    width: 17.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_date .campaign1_lead {
    padding-top: 1.1rem;
  }
}
@media (max-width: 768px) {
  .campaign1_date .campaign1_lead {
    padding-top: 2.1rem;
  }
}

.campaign1_target {
  position: relative;
  background: #fefcf1;
}
@media (min-width: 769px) {
  .campaign1_target {
    padding: 8rem 0 8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_target {
    padding: 13.9rem 0 10.5rem;
  }
}
.campaign1_target::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign1_target::before {
    background-image: url(../img/index/campaign1_bg_target_pc.png);
    height: calc(4.1rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign1_target::before {
    background-image: url(../img/index/campaign1_bg_target_sp.png);
    height: calc(5rem + 1px);
  }
}
@media (min-width: 769px) {
  .campaign1_target .campaign1_head_h3 {
    width: 10.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_target .campaign1_head_h3 {
    width: 17.8rem;
  }
}
.campaign1_target .campaign1_prods {
  display: grid;
}
@media (min-width: 769px) {
  .campaign1_target .campaign1_prods {
    padding-top: 4.4rem;
  }
}
@media (max-width: 768px) {
  .campaign1_target .campaign1_prods {
    padding-top: 5.6rem;
  }
}

.campaign1_target_lead {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign1_target_lead {
    padding-top: 1.4rem;
    line-height: 1.364;
    font-size: 2.2rem;
  }
  .campaign1_target_lead > p {
    font: inherit;
  }
  .campaign1_target_lead > p:first-of-type {
    margin-top: -0.181em;
  }
  .campaign1_target_lead > p:last-of-type {
    margin-bottom: -0.181em;
  }
}
@media (max-width: 768px) {
  .campaign1_target_lead {
    padding-top: 2.1rem;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign1_target_lead > p {
    font: inherit;
  }
  .campaign1_target_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign1_target_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign1_method {
  position: relative;
}
@media (min-width: 769px) {
  .campaign1_method {
    padding: 13rem 0 0;
  }
}
@media (max-width: 768px) {
  .campaign1_method {
    padding: 12.6rem 0 0;
  }
}
.campaign1_method::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign1_method::before {
    background-image: url(../img/index/campaign1_bg_method_pc.png);
    height: calc(4.1rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign1_method::before {
    background-image: url(../img/index/campaign1_bg_method_sp.png);
    height: calc(5rem + 1px);
  }
}
@media (min-width: 769px) {
  .campaign1_method .campaign1_head_h3 {
    width: 10.8rem;
  }
}
@media (max-width: 768px) {
  .campaign1_method .campaign1_head_h3 {
    width: 17.8rem;
  }
}
@media (min-width: 769px) {
  .campaign1_method .campaign1_text {
    padding-top: 1.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_method .campaign1_text {
    padding-top: 3.6rem;
  }
}
@media (min-width: 769px) {
  .campaign1_method .campaign1_prizes {
    padding-top: 3.7rem;
  }
}
@media (max-width: 768px) {
  .campaign1_method .campaign1_prizes {
    padding-top: 3.2rem;
  }
}
@media (min-width: 769px) {
  .campaign1_method .campaign1_terms {
    margin-top: 6.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_method .campaign1_terms {
    margin-top: 7.3rem;
  }
}
.campaign1_method .campaign1_buttons {
  padding-top: 5.2rem;
}
@media (min-width: 769px) {
  .campaign1_method .campaign1_note {
    padding-top: 4.2rem;
  }
}
@media (max-width: 768px) {
  .campaign1_method .campaign1_note {
    width: 86.667%;
    margin: 0 auto;
    padding-top: 4.2rem;
  }
}

.campaign2_section {
  position: relative;
  background: #fff;
}
@media (min-width: 769px) {
  .campaign2_section {
    padding: 10.9rem 0 11.1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_section {
    padding: 10.7rem 0 5.1rem;
  }
}
.campaign2_section::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign2_section::before {
    background-image: url(../img/index/campaign2_bg_top_pc.png);
    height: calc(16.6rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign2_section::before {
    background-image: url(../img/index/campaign2_bg_top_sp.png);
    height: calc(12.2rem + 2px);
  }
}

.campaign2_bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 769px) {
  .campaign2_bg.bg1 {
    background-image: url(../img/index/kazari6.png);
    width: 7.4rem;
    height: 7.4rem;
    left: 10.8rem;
    bottom: -15.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_bg.bg1 {
    display: none;
  }
}
@media (min-width: 769px) {
  .campaign2_bg.bg2 {
    background-image: url(../img/index/kazari10_pc.png);
    width: 11.6rem;
    height: 11.4rem;
    right: 7.7rem;
    bottom: 1.1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_bg.bg2 {
    background-image: url(../img/index/kazari3_sp.png);
    width: 12.4rem;
    height: 6.4rem;
    right: 5.5rem;
    bottom: -2.6rem;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .campaign2_bg.bg3 {
    display: none;
  }
}
@media (max-width: 768px) {
  .campaign2_bg.bg3 {
    background-image: url(../img/index/kazari6.png);
    width: 7.5rem;
    height: 7.4rem;
    left: 4.8rem;
    top: 6.6rem;
  }
}
.campaign2_bg.bg4 {
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .campaign2_bg.bg4 {
    background-image: url(../img/index/campaign2_head_bg_pc.png);
  }
}
@media (max-width: 768px) {
  .campaign2_bg.bg4 {
    background-image: url(../img/index/campaign2_head_bg_sp.png);
  }
}

.campaign2_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 769px) {
  .campaign2_head_p {
    width: 37.2rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 768px) {
  .campaign2_head_p {
    width: 54.4rem;
    margin-bottom: 4.1rem;
  }
}

.campaign2_head_h2 {
  position: relative;
}
@media (min-width: 769px) {
  .campaign2_head_h2 {
    width: 89rem;
  }
}
@media (max-width: 768px) {
  .campaign2_head_h2 {
    width: 72.4rem;
  }
}

.campaign2_lead {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign2_lead {
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign2_lead > p {
    font: inherit;
  }
  .campaign2_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign2_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign2_lead {
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign2_lead > p {
    font: inherit;
  }
  .campaign2_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign2_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign2_prize {
  position: relative;
  margin: 0 auto;
}

.campaign2_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .campaign2_buttons {
    column-gap: 4rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons {
    flex-direction: column;
    row-gap: 3.9rem;
  }
}
.campaign2_buttons > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f8e100;
  fill: #662b1f;
  color: #662b1f;
}
@media (min-width: 769px) {
  .campaign2_buttons > a {
    row-gap: 0.7rem;
    border-radius: 12rem;
    width: 40.5rem;
    height: 12rem;
    padding: 0 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons > a {
    row-gap: 1.2rem;
    border-radius: 17.8rem;
    width: 60rem;
    height: 17.8rem;
    padding: 0 3rem 0.5rem 0;
  }
}
.campaign2_buttons > a small {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_buttons > a small {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons > a small {
    font-size: 2.7rem;
  }
}
.campaign2_buttons > a span {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_buttons > a span {
    font-size: 4.7rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons > a span {
    font-size: 7rem;
  }
}
.campaign2_buttons > a svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign2_buttons > a svg {
    width: 2rem;
    height: 3.2rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons > a svg {
    width: 3.9rem;
    height: 6.2rem;
    right: 2.8rem;
  }
}
.campaign2_buttons > a:hover {
  background: #662b1f;
  fill: #f8e100;
  color: #f8e100;
  text-decoration: none;
}
.campaign2_buttons > a.is-disabled {
  filter: grayscale(1);
  pointer-events: none;
}
.campaign2_buttons > a.is-disabled > * {
  opacity: 0.3;
}
.campaign2_buttons > p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #df0011;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 769px) {
  .campaign2_buttons > p {
    width: 85rem;
    height: 12rem;
    line-height: 1.25;
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .campaign2_buttons > p {
    flex-direction: column;
    width: 66.6rem;
    height: 22rem;
    line-height: 1.4;
    font-size: 6rem;
  }
}

.campaign2_steps {
  display: flex;
}
@media (min-width: 769px) {
  .campaign2_steps {
    background: #e1e7f0;
    border-radius: 2rem;
    overflow: hidden;
  }
}
.campaign2_steps > li {
  position: relative;
  height: auto;
}
@media (min-width: 769px) {
  .campaign2_steps > li {
    flex-shrink: 0;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(1) {
    width: 31.168% !important;
  }
}
.campaign2_steps > li:nth-of-type(1) .campaign2_step {
  background: #f5f7fa;
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(1) .campaign2_step {
    padding-left: 1rem;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(1) .campaign2_step_image {
    width: 7.1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_steps > li:nth-of-type(1) .campaign2_step_image {
    width: 16rem;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(2) {
    width: 39.868% !important;
  }
  .campaign2_steps > li:nth-of-type(2)::before, .campaign2_steps > li:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: calc(4rem + 1px);
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
  }
  .campaign2_steps > li:nth-of-type(2)::before {
    clip-path: polygon(0 0, 1px 0, 100% 50%, 1px 100%, 0 100%);
    background: #f5f7fa;
    left: -1px;
  }
  .campaign2_steps > li:nth-of-type(2)::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(100% - 1px) 50%);
    background: #c2cfe1;
    right: -1px;
  }
}
.campaign2_steps > li:nth-of-type(2) .campaign2_step {
  background: #e1e7f0;
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(2) .campaign2_step {
    padding-left: 2rem;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(2) .campaign2_step_image {
    width: 9.8rem;
  }
}
@media (max-width: 768px) {
  .campaign2_steps > li:nth-of-type(2) .campaign2_step_image {
    width: 28.3rem;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(3) {
    width: 29.075% !important;
  }
}
.campaign2_steps > li:nth-of-type(3) .campaign2_step {
  background: #c2cfe1;
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(3) .campaign2_step {
    padding-right: 1rem;
  }
}
@media (min-width: 769px) {
  .campaign2_steps > li:nth-of-type(3) .campaign2_step_image {
    width: 8.7rem;
  }
}
@media (max-width: 768px) {
  .campaign2_steps > li:nth-of-type(3) .campaign2_step_image {
    width: 25.8rem;
  }
}

.campaign2_steps_swiper {
  position: relative;
}
.campaign2_steps_swiper .swiper-button-prev, .campaign2_steps_swiper .swiper-button-next {
  fill: #e1e7f0;
  width: 7.2rem;
  height: 7.6rem;
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign2_steps_swiper .swiper-button-prev, .campaign2_steps_swiper .swiper-button-next {
    display: none;
  }
}
.campaign2_steps_swiper .swiper-button-prev::after, .campaign2_steps_swiper .swiper-button-next::after {
  display: none;
}
.campaign2_steps_swiper .swiper-button-prev.swiper-button-disabled, .campaign2_steps_swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.campaign2_steps_swiper .swiper-button-prev {
  left: 5rem;
}
.campaign2_steps_swiper .swiper-button-next {
  right: 5rem;
}
.campaign2_steps_swiper .swiper-button-next svg {
  scale: -1 1;
}

.campaign2_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (min-width: 769px) {
  .campaign2_step {
    padding: 4rem 0 3.5rem;
  }
}
@media (max-width: 768px) {
  .campaign2_step {
    border-radius: 4rem;
    width: 60rem;
    margin: 0 auto;
    padding: 5.5rem 0 6.9rem;
  }
}

@media (min-width: 769px) {
  .campaign2_step_index {
    height: 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign2_step_index {
    height: 5rem;
  }
}

.campaign2_step_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign2_step_text {
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .campaign2_step_text > p {
    font: inherit;
  }
  .campaign2_step_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign2_step_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (max-width: 768px) {
  .campaign2_step_text {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    line-height: 1.438;
    font-size: 3.2rem;
  }
  .campaign2_step_text > p {
    font: inherit;
  }
  .campaign2_step_text > p:first-of-type {
    margin-top: -0.218em;
  }
  .campaign2_step_text > p:last-of-type {
    margin-bottom: -0.218em;
  }
}

@media (min-width: 769px) {
  .campaign2_step_image {
    margin-top: auto;
  }
}

.campaign2_box {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign2_box {
    width: 75.667%;
  }
}

.campaign2_box_character {
  position: absolute;
  background-image: url(../img/index/character5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 769px) {
  .campaign2_box_character {
    width: 7.6rem;
    height: 8.4rem;
    right: 3.3rem;
    top: -6.8rem;
  }
}
@media (max-width: 768px) {
  .campaign2_box_character {
    width: 10rem;
    height: 10.9rem;
    right: 3.4rem;
    top: -15.1rem;
  }
}

.campaign2_terms {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign2_terms {
    width: 70.834%;
  }
}
@media (max-width: 768px) {
  .campaign2_terms {
    width: 88.8%;
  }
}
.campaign2_terms > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  fill: #662b1f;
  color: #662b1f;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign2_terms > dt {
    border: 2px solid #662b1f;
    height: 4.6rem;
  }
}
@media (max-width: 768px) {
  .campaign2_terms > dt {
    border: 0.3rem solid #662b1f;
    min-height: 6.4rem;
    padding: 0.9rem 0;
    text-align: center;
  }
}
.campaign2_terms > dt > * {
  pointer-events: none;
}
.campaign2_terms > dt p {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_terms > dt p {
    line-height: 1;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign2_terms > dt p {
    line-height: 1.267;
    font-size: 3rem;
  }
}
.campaign2_terms > dt svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign2_terms > dt svg {
    width: 2.6rem;
    height: 1.5rem;
    right: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign2_terms > dt svg {
    width: 3.7rem;
    height: 2.2rem;
    right: 2.2rem;
  }
}
.campaign2_terms > dt.is-opened svg {
  scale: 1 -1;
}
.campaign2_terms > dd {
  height: 0;
  overflow: hidden;
  transition: height 0.2s linear;
}

@media (min-width: 769px) {
  .campaign2_term {
    padding: 2.6rem 0;
  }
}
@media (max-width: 768px) {
  .campaign2_term {
    padding: 3.3rem 0;
  }
}
.campaign2_term > dt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_term > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign2_term > dt > p {
    font: inherit;
  }
  .campaign2_term > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign2_term > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign2_term > dt > p {
    font: inherit;
  }
  .campaign2_term > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign2_term > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dt + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dt + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dt + dd {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dt + dd {
    padding-top: 0.6rem;
  }
}
.campaign2_term > dd a {
  text-decoration: none;
  color: inherit;
}
.campaign2_term > dd a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .campaign2_term > dd .campaign2_term_p + .campaign2_term_p, .campaign2_term > dd .campaign2_term_p + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_p + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_p + .campaign2_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd .campaign2_term_p + .campaign2_term_p, .campaign2_term > dd .campaign2_term_p + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_p + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_p + .campaign2_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dd .campaign2_term_ul + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd .campaign2_term_ul + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ul + .campaign2_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dd .campaign2_term_ol + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd .campaign2_term_ol + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dd .campaign2_term_ol + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd .campaign2_term_ol + .campaign2_term_p, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ul, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_ol, .campaign2_term > dd .campaign2_term_ol + .campaign2_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dd + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign2_term > dd + dd {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign2_term > dd + dd {
    padding-top: 3.8rem;
  }
}

.campaign2_term_h3 {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign2_term_h3 {
    padding: 2.6rem 0 0;
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign2_term_h3 > h3 {
    font: inherit;
  }
  .campaign2_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign2_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_h3 {
    padding: 3.3rem 0 0;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign2_term_h3 > h3 {
    font: inherit;
  }
  .campaign2_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign2_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign2_term_p {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_term_p {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign2_term_p > p {
    font: inherit;
  }
  .campaign2_term_p > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign2_term_p > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_p {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign2_term_p > p {
    font: inherit;
  }
  .campaign2_term_p > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign2_term_p > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign2_term_ul {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_term_ul {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign2_term_ul > li {
    font: inherit;
  }
  .campaign2_term_ul > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign2_term_ul > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_ul {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign2_term_ul > li {
    font: inherit;
  }
  .campaign2_term_ul > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign2_term_ul > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign2_term_ol {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_term_ol {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign2_term_ol > li {
    font: inherit;
  }
  .campaign2_term_ol > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign2_term_ol > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_ol {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign2_term_ol > li {
    font: inherit;
  }
  .campaign2_term_ol > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign2_term_ol > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign2_term_dl {
  display: flex;
}
.campaign2_term_dl > dt {
  flex-shrink: 0;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign2_term_dl > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign2_term_dl > dt > p {
    font: inherit;
  }
  .campaign2_term_dl > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign2_term_dl > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_dl > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign2_term_dl > dt > p {
    font: inherit;
  }
  .campaign2_term_dl > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign2_term_dl > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign2_term_link {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign2_term_link {
    padding-top: 2.6rem;
    line-height: 1.25;
    font-size: 2rem;
  }
  .campaign2_term_link > p {
    font: inherit;
  }
  .campaign2_term_link > p:first-of-type {
    margin-top: -0.125em;
  }
  .campaign2_term_link > p:last-of-type {
    margin-bottom: -0.125em;
  }
}
@media (max-width: 768px) {
  .campaign2_term_link {
    padding-top: 4.3rem;
    line-height: 1.334;
    font-size: 3rem;
  }
  .campaign2_term_link > p {
    font: inherit;
  }
  .campaign2_term_link > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign2_term_link > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
.campaign2_term_link a {
  text-decoration: underline;
  color: #662b1f;
}

.campaign2_date {
  position: relative;
}
@media (min-width: 769px) {
  .campaign2_date {
    padding: 3rem 0 0;
  }
}
@media (max-width: 768px) {
  .campaign2_date {
    padding: 3.5rem 0 0;
  }
}
@media (min-width: 769px) {
  .campaign2_date .campaign2_head_h3 {
    width: 18.2rem;
  }
}
@media (max-width: 768px) {
  .campaign2_date .campaign2_head_h3 {
    width: 29.8rem;
  }
}
@media (min-width: 769px) {
  .campaign2_date .campaign2_lead {
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_date .campaign2_lead {
    padding-top: 3rem;
  }
}
@media (min-width: 769px) {
  .campaign2_date .campaign2_prize {
    width: 48.2rem;
    padding-top: 2.6rem;
  }
}
@media (max-width: 768px) {
  .campaign2_date .campaign2_prize {
    width: 60.2rem;
    padding-top: 5.2rem;
  }
}

.campaign2_method {
  position: relative;
}
@media (min-width: 769px) {
  .campaign2_method {
    padding: 4.7rem 0 0;
  }
}
@media (max-width: 768px) {
  .campaign2_method {
    padding: 6.6rem 0 0;
  }
}
@media (min-width: 769px) {
  .campaign2_method .campaign2_head_h3 {
    width: 10.8rem;
  }
}
@media (max-width: 768px) {
  .campaign2_method .campaign2_head_h3 {
    width: 17.8rem;
  }
}
@media (min-width: 769px) {
  .campaign2_method .campaign2_box {
    margin-top: 1.2rem;
  }
}
@media (max-width: 768px) {
  .campaign2_method .campaign2_box {
    margin-top: 4.1rem;
  }
}
@media (min-width: 769px) {
  .campaign2_method .campaign2_terms {
    margin-top: 3.1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_method .campaign2_terms {
    margin-top: 6.6rem;
  }
}
@media (min-width: 769px) {
  .campaign2_method .campaign2_buttons {
    padding-top: 4.1rem;
  }
}
@media (max-width: 768px) {
  .campaign2_method .campaign2_buttons {
    padding-top: 3.6rem;
  }
}

.campaign3_section {
  position: relative;
  background: #e1e7f0;
}
@media (min-width: 769px) {
  .campaign3_section {
    padding: 17.6rem 0 10.2rem;
  }
}
@media (max-width: 768px) {
  .campaign3_section {
    padding: 17.7rem 0 8.4rem;
  }
}
.campaign3_section::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign3_section::before {
    background-image: url(../img/index/campaign3_bg_top_pc.png);
    height: calc(14.6rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign3_section::before {
    background-image: url(../img/index/campaign3_bg_top_sp.png);
    height: calc(9.2rem + 1px);
  }
}

.campaign3_bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.campaign3_bg.bg1 {
  background-image: url(../img/index/kazari2.png);
  width: 9rem;
  height: 9.2rem;
}
@media (min-width: 769px) {
  .campaign3_bg.bg1 {
    left: 21.2rem;
    top: 12.5rem;
  }
}
@media (max-width: 768px) {
  .campaign3_bg.bg1 {
    left: 6.2rem;
    top: 8.9rem;
  }
}
@media (min-width: 769px) {
  .campaign3_bg.bg2 {
    background-image: url(../img/index/kazari12_pc.png);
    width: 12.5rem;
    height: 12.6rem;
    right: 11.4rem;
    top: 24.5rem;
  }
}
@media (max-width: 768px) {
  .campaign3_bg.bg2 {
    display: none;
  }
}
@media (min-width: 769px) {
  .campaign3_bg.bg3 {
    display: none;
  }
}
@media (max-width: 768px) {
  .campaign3_bg.bg3 {
    background-image: url(../img/index/kazari5_sp.png);
    width: 10.6rem;
    height: 13.3rem;
    right: 2.4rem;
    bottom: -5.1rem;
  }
}

.campaign3_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 769px) {
  .campaign3_head_p {
    width: 37.2rem;
    margin-bottom: 2.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_head_p {
    width: 54.4rem;
    margin-bottom: 4.4rem;
  }
}

@media (min-width: 769px) {
  .campaign3_head_h2 {
    width: 55rem;
  }
}
@media (max-width: 768px) {
  .campaign3_head_h2 {
    width: 59.6rem;
  }
}

.campaign3_lead {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign3_lead {
    padding-top: 2.9rem;
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .campaign3_lead > p {
    font: inherit;
  }
  .campaign3_lead > p:first-of-type {
    margin-top: -0.227em;
  }
  .campaign3_lead > p:last-of-type {
    margin-bottom: -0.227em;
  }
}
@media (max-width: 768px) {
  .campaign3_lead {
    padding-top: 3.5rem;
    line-height: 1.412;
    font-size: 3.4rem;
  }
  .campaign3_lead > p {
    font: inherit;
  }
  .campaign3_lead > p:first-of-type {
    margin-top: -0.205em;
  }
  .campaign3_lead > p:last-of-type {
    margin-bottom: -0.205em;
  }
}

.campaign3_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign3_text {
    padding-top: 1.1rem;
    line-height: 1.5;
    font-size: 2rem;
  }
  .campaign3_text > p {
    font: inherit;
  }
  .campaign3_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign3_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (max-width: 768px) {
  .campaign3_text {
    padding-top: 3.5rem;
    line-height: 1.223;
    font-size: 3.6rem;
  }
  .campaign3_text > p {
    font: inherit;
  }
  .campaign3_text > p:first-of-type {
    margin-top: -0.111em;
  }
  .campaign3_text > p:last-of-type {
    margin-bottom: -0.111em;
  }
}

.campaign3_kome {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .campaign3_kome {
    align-items: center;
    padding-top: 1.4rem;
  }
}
@media (max-width: 768px) {
  .campaign3_kome {
    width: 64.4rem;
    margin: 0 auto;
    padding-top: 2rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .campaign3_kome > li {
    font: inherit;
  }
  .campaign3_kome > li:first-of-type {
    margin-top: -0.25em;
  }
  .campaign3_kome > li:last-of-type {
    margin-bottom: -0.25em;
  }
}
.campaign3_kome > li {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_kome > li {
    line-height: 1.286;
    font-size: 1.4rem;
    text-align: center;
  }
  .campaign3_kome > li.full {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .campaign3_kome > li {
    padding-left: 1em;
    text-indent: -1em;
  }
}

.campaign3_prizes {
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .campaign3_prizes {
    column-gap: 2.5rem;
    padding-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign3_prizes {
    padding-top: 3rem;
  }
}
@media (min-width: 769px) {
  .campaign3_prizes figure {
    width: 36.1rem;
  }
}
@media (max-width: 768px) {
  .campaign3_prizes figure {
    width: 34.6rem;
  }
}

.campaign3_terms {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign3_terms {
    width: 70.834%;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .campaign3_terms {
    width: 88.8%;
    margin-top: 2.5rem;
  }
}
.campaign3_terms > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  fill: #662b1f;
  color: #662b1f;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign3_terms > dt {
    border: 2px solid #662b1f;
    height: 4.6rem;
  }
}
@media (max-width: 768px) {
  .campaign3_terms > dt {
    border: 0.3rem solid #662b1f;
    min-height: 6.4rem;
    padding: 0.9rem 0;
    text-align: center;
  }
}
.campaign3_terms > dt > * {
  pointer-events: none;
}
.campaign3_terms > dt p {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_terms > dt p {
    line-height: 1;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign3_terms > dt p {
    line-height: 1.267;
    font-size: 3rem;
  }
}
.campaign3_terms > dt svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign3_terms > dt svg {
    width: 2.6rem;
    height: 1.5rem;
    right: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign3_terms > dt svg {
    width: 3.7rem;
    height: 2.2rem;
    right: 2.2rem;
  }
}
.campaign3_terms > dt.is-opened svg {
  scale: 1 -1;
}
.campaign3_terms > dd {
  height: 0;
  overflow: hidden;
  transition: height 0.2s linear;
}

@media (min-width: 769px) {
  .campaign3_term {
    padding: 2.6rem 0;
  }
}
@media (max-width: 768px) {
  .campaign3_term {
    padding: 3.3rem 0;
  }
}
.campaign3_term > dt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_term > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign3_term > dt > p {
    font: inherit;
  }
  .campaign3_term > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign3_term > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign3_term > dt > p {
    font: inherit;
  }
  .campaign3_term > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign3_term > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dt + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dt + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dt + dd {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dt + dd {
    padding-top: 0.6rem;
  }
}
.campaign3_term > dd a {
  text-decoration: none;
  color: inherit;
}
.campaign3_term > dd a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .campaign3_term > dd .campaign3_term_p + .campaign3_term_p, .campaign3_term > dd .campaign3_term_p + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_p + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_p + .campaign3_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd .campaign3_term_p + .campaign3_term_p, .campaign3_term > dd .campaign3_term_p + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_p + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_p + .campaign3_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dd .campaign3_term_ul + .campaign3_term_p, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd .campaign3_term_ul + .campaign3_term_p, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_ul + .campaign3_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dd .campaign3_term_ol + .campaign3_term_p, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd .campaign3_term_ol + .campaign3_term_p, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_ol + .campaign3_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dd .campaign3_term_dl + .campaign3_term_p, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd .campaign3_term_dl + .campaign3_term_p, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_ul, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_ol, .campaign3_term > dd .campaign3_term_dl + .campaign3_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dd + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign3_term > dd + dd {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign3_term > dd + dd {
    padding-top: 3.8rem;
  }
}

.campaign3_term_h3 {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign3_term_h3 {
    padding: 2.6rem 0 0;
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign3_term_h3 > h3 {
    font: inherit;
  }
  .campaign3_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign3_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign3_term_h3 {
    padding: 3.3rem 0 0;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign3_term_h3 > h3 {
    font: inherit;
  }
  .campaign3_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign3_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign3_term_p {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_term_p {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign3_term_p > p {
    font: inherit;
  }
  .campaign3_term_p > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign3_term_p > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign3_term_p {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign3_term_p > p {
    font: inherit;
  }
  .campaign3_term_p > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign3_term_p > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign3_term_ul {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_term_ul {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign3_term_ul > li {
    font: inherit;
  }
  .campaign3_term_ul > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign3_term_ul > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign3_term_ul {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign3_term_ul > li {
    font: inherit;
  }
  .campaign3_term_ul > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign3_term_ul > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign3_term_ol {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_term_ol {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign3_term_ol > li {
    font: inherit;
  }
  .campaign3_term_ol > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign3_term_ol > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign3_term_ol {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign3_term_ol > li {
    font: inherit;
  }
  .campaign3_term_ol > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign3_term_ol > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign3_term_dl {
  display: flex;
}
.campaign3_term_dl > dt {
  flex-shrink: 0;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign3_term_dl > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign3_term_dl > dt > p {
    font: inherit;
  }
  .campaign3_term_dl > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign3_term_dl > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign3_term_dl > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign3_term_dl > dt > p {
    font: inherit;
  }
  .campaign3_term_dl > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign3_term_dl > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign4_section {
  position: relative;
  background: #fff;
}
@media (min-width: 769px) {
  .campaign4_section {
    padding: 25rem 0 3.5rem;
  }
}
@media (max-width: 768px) {
  .campaign4_section {
    padding: 22.7rem 0 5.3rem;
  }
}
.campaign4_section::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .campaign4_section::before {
    background-image: url(../img/index/campaign4_bg_top_pc.png);
    height: calc(17.5rem + 1px);
  }
}
@media (max-width: 768px) {
  .campaign4_section::before {
    background-image: url(../img/index/campaign4_bg_top_sp.png);
    height: calc(11rem + 1px);
  }
}

.campaign4_character {
  position: absolute;
  background-image: url(../img/index/character6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.4rem;
  height: 13.4rem;
}
@media (min-width: 769px) {
  .campaign4_character {
    right: calc(50% + 26.6rem);
    top: 17.1rem;
  }
}
@media (max-width: 768px) {
  .campaign4_character {
    left: 4.9rem;
    top: 9.6rem;
  }
}

.campaign4_bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 769px) {
  .campaign4_bg.bg1 {
    background-image: url(../img/index/kazari6.png);
    width: 7.4rem;
    height: 7.4rem;
    left: -8.6rem;
    top: -10.8rem;
  }
}
@media (max-width: 768px) {
  .campaign4_bg.bg1 {
    display: none;
  }
}
@media (min-width: 769px) {
  .campaign4_bg.bg2 {
    background-image: url(../img/index/kazari4.png);
    width: 5.1rem;
    height: 5.3rem;
    right: 6.3rem;
    bottom: 5.4rem;
  }
}
@media (max-width: 768px) {
  .campaign4_bg.bg2 {
    display: none;
  }
}
.campaign4_bg.bg3 {
  background-image: url(../img/index/kazari13.png);
  width: 6.4rem;
  height: 6.4rem;
}
@media (min-width: 769px) {
  .campaign4_bg.bg3 {
    right: 12.1rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .campaign4_bg.bg3 {
    right: 5.2rem;
    top: 14.7rem;
  }
}
@media (min-width: 769px) {
  .campaign4_bg.bg4 {
    display: none;
  }
}
@media (max-width: 768px) {
  .campaign4_bg.bg4 {
    background-image: url(../img/index/kazari10_sp.png);
    width: 12.6rem;
    height: 12.1rem;
    left: 3rem;
    top: -5.1rem;
  }
}
@media (min-width: 769px) {
  .campaign4_bg.bg5 {
    display: none;
  }
}
@media (max-width: 768px) {
  .campaign4_bg.bg5 {
    background-image: url(../img/index/kazari4.png);
    width: 5.1rem;
    height: 5.3rem;
    right: 3.4rem;
    top: 15.5rem;
  }
}

.campaign4_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 769px) {
  .campaign4_head_p {
    width: 37.2rem;
    margin-bottom: 4.2rem;
  }
}
@media (max-width: 768px) {
  .campaign4_head_p {
    width: 54.4rem;
    margin-bottom: 3.8rem;
  }
}

@media (min-width: 769px) {
  .campaign4_head_h2 {
    width: 104.4rem;
  }
}
@media (max-width: 768px) {
  .campaign4_head_h2 {
    width: 67.6rem;
  }
}

@media (min-width: 769px) {
  .campaign4_head_h3 {
    width: 18.3rem;
  }
}
@media (max-width: 768px) {
  .campaign4_head_h3 {
    width: 29.8rem;
  }
}

.campaign4_lead {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_lead {
    padding-top: 1rem;
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign4_lead > p {
    font: inherit;
  }
  .campaign4_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign4_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign4_lead {
    padding-top: 2.2rem;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign4_lead > p {
    font: inherit;
  }
  .campaign4_lead > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign4_lead > p:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign4_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_text {
    padding-top: 4.4rem;
    padding-bottom: 3.4rem;
    line-height: 1.455;
    font-size: 2.2rem;
  }
  .campaign4_text > p {
    font: inherit;
  }
  .campaign4_text > p:first-of-type {
    margin-top: -0.227em;
  }
  .campaign4_text > p:last-of-type {
    margin-bottom: -0.227em;
  }
}
@media (max-width: 768px) {
  .campaign4_text {
    padding-top: 3.8rem;
    padding-bottom: 5rem;
    line-height: 1.412;
    font-size: 3.4rem;
  }
  .campaign4_text > p {
    font: inherit;
  }
  .campaign4_text > p:first-of-type {
    margin-top: -0.205em;
  }
  .campaign4_text > p:last-of-type {
    margin-bottom: -0.205em;
  }
}

.campaign4_prizes {
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .campaign4_prizes {
    column-gap: 1.9rem;
    padding-top: 3.5rem;
  }
}
@media (max-width: 768px) {
  .campaign4_prizes {
    flex-wrap: wrap;
    gap: 3.5rem 2.9rem;
    padding-top: 4.7rem;
  }
}
@media (min-width: 769px) {
  .campaign4_prizes figure {
    width: 19.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_prizes figure {
    width: 28.6rem;
  }
}
.campaign4_prizes figure figcaption {
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_prizes figure figcaption {
    padding-top: 1.2rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .campaign4_prizes figure figcaption {
    padding-top: 1.6rem;
    font-size: 2.6rem;
  }
}

.campaign4_steps {
  display: flex;
}
@media (min-width: 769px) {
  .campaign4_steps {
    background: #bcb0a3;
    border-radius: 2rem;
    overflow: hidden;
  }
}
.campaign4_steps > li {
  position: relative;
  height: auto;
}
@media (min-width: 769px) {
  .campaign4_steps > li {
    flex-shrink: 0;
  }
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(1) {
    width: 31.168% !important;
  }
}
.campaign4_steps > li:nth-of-type(1) .campaign4_step {
  background: #f4f2f0;
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(1) .campaign4_step {
    padding-left: 2rem;
  }
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(1) .campaign4_step_image {
    width: 7.1rem;
  }
}
@media (max-width: 768px) {
  .campaign4_steps > li:nth-of-type(1) .campaign4_step_image {
    width: 15.9rem;
  }
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(2) {
    width: 39.978% !important;
  }
  .campaign4_steps > li:nth-of-type(2)::before, .campaign4_steps > li:nth-of-type(2)::after {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 1px 0, 100% 50%, 1px 100%, 0 100%);
    width: calc(4rem + 1px);
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
  }
  .campaign4_steps > li:nth-of-type(2)::before {
    clip-path: polygon(0 0, 1px 0, 100% 50%, 1px 100%, 0 100%);
    background: #f4f2f0;
    left: -1px;
  }
  .campaign4_steps > li:nth-of-type(2)::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(100% - 1px) 50%);
    background: #bcb0a3;
    right: -1px;
  }
}
.campaign4_steps > li:nth-of-type(2) .campaign4_step {
  background: #ddd8d1;
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(2) .campaign4_step {
    padding-left: 2rem;
  }
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(2) .campaign4_step_image {
    width: 8rem;
  }
}
@media (max-width: 768px) {
  .campaign4_steps > li:nth-of-type(2) .campaign4_step_image {
    width: 28.4rem;
  }
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(3) {
    width: 28.855% !important;
  }
}
.campaign4_steps > li:nth-of-type(3) .campaign4_step {
  background: #bcb0a3;
}
@media (min-width: 769px) {
  .campaign4_steps > li:nth-of-type(3) .campaign4_step_image {
    width: 6.5rem;
  }
}
@media (max-width: 768px) {
  .campaign4_steps > li:nth-of-type(3) .campaign4_step_image {
    width: 19.1rem;
  }
}

.campaign4_steps_swiper {
  position: relative;
}
.campaign4_steps_swiper .swiper-button-prev, .campaign4_steps_swiper .swiper-button-next {
  fill: #ddd8d1;
  width: 7.2rem;
  height: 7.6rem;
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign4_steps_swiper .swiper-button-prev, .campaign4_steps_swiper .swiper-button-next {
    display: none;
  }
}
.campaign4_steps_swiper .swiper-button-prev::after, .campaign4_steps_swiper .swiper-button-next::after {
  display: none;
}
.campaign4_steps_swiper .swiper-button-prev.swiper-button-disabled, .campaign4_steps_swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.campaign4_steps_swiper .swiper-button-prev {
  left: 5rem;
}
.campaign4_steps_swiper .swiper-button-next {
  right: 5rem;
}
.campaign4_steps_swiper .swiper-button-next svg {
  scale: -1 1;
}

.campaign4_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (min-width: 769px) {
  .campaign4_step {
    padding: 4rem 0 3.1rem;
  }
}
@media (max-width: 768px) {
  .campaign4_step {
    border-radius: 4rem;
    width: 60rem;
    margin: 0 auto;
    padding: 5.5rem 0 6.9rem;
  }
}

@media (min-width: 769px) {
  .campaign4_step_index {
    height: 2.2rem;
  }
}
@media (max-width: 768px) {
  .campaign4_step_index {
    height: 5rem;
  }
}

.campaign4_step_text {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_step_text {
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .campaign4_step_text > p {
    font: inherit;
  }
  .campaign4_step_text > p:first-of-type {
    margin-top: -0.25em;
  }
  .campaign4_step_text > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media (max-width: 768px) {
  .campaign4_step_text {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    line-height: 1.438;
    font-size: 3.2rem;
  }
  .campaign4_step_text > p {
    font: inherit;
  }
  .campaign4_step_text > p:first-of-type {
    margin-top: -0.218em;
  }
  .campaign4_step_text > p:last-of-type {
    margin-bottom: -0.218em;
  }
}

@media (min-width: 769px) {
  .campaign4_step_image {
    margin-top: auto;
  }
}

.campaign4_box {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign4_box {
    width: 75.667%;
    margin-top: 3.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .campaign4_box {
    margin-top: 5.7rem;
    margin-bottom: 5.4rem;
  }
}

.campaign4_terms {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .campaign4_terms {
    width: 70.834%;
    margin-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .campaign4_terms {
    width: 88.8%;
  }
}
.campaign4_terms > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  fill: #662b1f;
  color: #662b1f;
  cursor: pointer;
}
@media (min-width: 769px) {
  .campaign4_terms > dt {
    border: 2px solid #662b1f;
    height: 4.6rem;
  }
}
@media (max-width: 768px) {
  .campaign4_terms > dt {
    border: 0.3rem solid #662b1f;
    min-height: 6.4rem;
    padding: 0.9rem 0;
    text-align: center;
  }
}
.campaign4_terms > dt > * {
  pointer-events: none;
}
.campaign4_terms > dt p {
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_terms > dt p {
    line-height: 1;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .campaign4_terms > dt p {
    line-height: 1.267;
    font-size: 3rem;
  }
}
.campaign4_terms > dt svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .campaign4_terms > dt svg {
    width: 2.6rem;
    height: 1.5rem;
    right: 1.8rem;
  }
}
@media (max-width: 768px) {
  .campaign4_terms > dt svg {
    width: 3.7rem;
    height: 2.2rem;
    right: 2.2rem;
  }
}
.campaign4_terms > dt.is-opened svg {
  scale: 1 -1;
}
.campaign4_terms > dd {
  height: 0;
  overflow: hidden;
  transition: height 0.2s linear;
}
@media (min-width: 769px) {
  .campaign4_terms + .campaign4_terms {
    margin-top: 1.7rem;
  }
}
@media (max-width: 768px) {
  .campaign4_terms + .campaign4_terms {
    margin-top: 2.7rem;
  }
}

@media (min-width: 769px) {
  .campaign4_term {
    padding: 2.6rem 0;
  }
}
@media (max-width: 768px) {
  .campaign4_term {
    padding: 3.3rem 0;
  }
}
.campaign4_term > dt {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_term > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign4_term > dt > p {
    font: inherit;
  }
  .campaign4_term > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign4_term > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign4_term > dt > p {
    font: inherit;
  }
  .campaign4_term > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign4_term > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dt + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dt + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dt + dd {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dt + dd {
    padding-top: 0.6rem;
  }
}
.campaign4_term > dd a {
  text-decoration: none;
  color: inherit;
}
.campaign4_term > dd a:hover {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .campaign4_term > dd .campaign4_term_p + .campaign4_term_p, .campaign4_term > dd .campaign4_term_p + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_p + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_p + .campaign4_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd .campaign4_term_p + .campaign4_term_p, .campaign4_term > dd .campaign4_term_p + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_p + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_p + .campaign4_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dd .campaign4_term_ul + .campaign4_term_p, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd .campaign4_term_ul + .campaign4_term_p, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_ul + .campaign4_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dd .campaign4_term_ol + .campaign4_term_p, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd .campaign4_term_ol + .campaign4_term_p, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_ol + .campaign4_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dd .campaign4_term_dl + .campaign4_term_p, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_dl {
    padding-top: 0.9rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd .campaign4_term_dl + .campaign4_term_p, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_ul, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_ol, .campaign4_term > dd .campaign4_term_dl + .campaign4_term_dl {
    padding-top: 0.6rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dd + dt {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd + dt {
    padding-top: 3.8rem;
  }
}
@media (min-width: 769px) {
  .campaign4_term > dd + dd {
    padding-top: 3.4rem;
  }
}
@media (max-width: 768px) {
  .campaign4_term > dd + dd {
    padding-top: 3.8rem;
  }
}

.campaign4_term_h3 {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_term_h3 {
    padding: 2.6rem 0 0;
    line-height: 1.334;
    font-size: 2.4rem;
  }
  .campaign4_term_h3 > h3 {
    font: inherit;
  }
  .campaign4_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign4_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_h3 {
    padding: 3.3rem 0 0;
    line-height: 1.334;
    font-size: 3.6rem;
  }
  .campaign4_term_h3 > h3 {
    font: inherit;
  }
  .campaign4_term_h3 > h3:first-of-type {
    margin-top: -0.166em;
  }
  .campaign4_term_h3 > h3:last-of-type {
    margin-bottom: -0.166em;
  }
}

.campaign4_term_p {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_term_p {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign4_term_p > p {
    font: inherit;
  }
  .campaign4_term_p > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign4_term_p > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_p {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign4_term_p > p {
    font: inherit;
  }
  .campaign4_term_p > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign4_term_p > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign4_term_ul {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_term_ul {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign4_term_ul > li {
    font: inherit;
  }
  .campaign4_term_ul > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign4_term_ul > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_ul {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign4_term_ul > li {
    font: inherit;
  }
  .campaign4_term_ul > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign4_term_ul > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign4_term_ol {
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_term_ol {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign4_term_ol > li {
    font: inherit;
  }
  .campaign4_term_ol > li:first-of-type {
    margin-top: -0.281em;
  }
  .campaign4_term_ol > li:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_ol {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign4_term_ol > li {
    font: inherit;
  }
  .campaign4_term_ol > li:first-of-type {
    margin-top: -0.115em;
  }
  .campaign4_term_ol > li:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign4_term_dl {
  display: flex;
}
.campaign4_term_dl > dt {
  flex-shrink: 0;
  font-weight: 700;
}
@media (min-width: 769px) {
  .campaign4_term_dl > dt {
    line-height: 1.563;
    font-size: 1.6rem;
  }
  .campaign4_term_dl > dt > p {
    font: inherit;
  }
  .campaign4_term_dl > dt > p:first-of-type {
    margin-top: -0.281em;
  }
  .campaign4_term_dl > dt > p:last-of-type {
    margin-bottom: -0.281em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_dl > dt {
    line-height: 1.231;
    font-size: 2.6rem;
  }
  .campaign4_term_dl > dt > p {
    font: inherit;
  }
  .campaign4_term_dl > dt > p:first-of-type {
    margin-top: -0.115em;
  }
  .campaign4_term_dl > dt > p:last-of-type {
    margin-bottom: -0.115em;
  }
}

.campaign4_term_link {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .campaign4_term_link {
    padding-top: 2.6rem;
    line-height: 1.25;
    font-size: 2rem;
  }
  .campaign4_term_link > p {
    font: inherit;
  }
  .campaign4_term_link > p:first-of-type {
    margin-top: -0.125em;
  }
  .campaign4_term_link > p:last-of-type {
    margin-bottom: -0.125em;
  }
}
@media (max-width: 768px) {
  .campaign4_term_link {
    padding-top: 4.3rem;
    line-height: 1.334;
    font-size: 3rem;
  }
  .campaign4_term_link > p {
    font: inherit;
  }
  .campaign4_term_link > p:first-of-type {
    margin-top: -0.166em;
  }
  .campaign4_term_link > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
.campaign4_term_link a {
  text-decoration: underline;
  color: #662b1f;
}

.campaign4_date {
  position: relative;
}

.inquiry_section {
  position: relative;
  background: #8f7c65;
  color: #fff;
}
@media (min-width: 769px) {
  .inquiry_section {
    padding: 25.4rem 0 4.7rem;
  }
}
@media (max-width: 768px) {
  .inquiry_section {
    border-bottom: 1px solid #662b1f;
    padding: 31.7rem 0 8rem;
  }
}
.inquiry_section::before {
  content: "";
  position: absolute;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 769px) {
  .inquiry_section::before {
    background-image: url(../img/index/inquiry_bg_top_pc.png);
    height: calc(14.4rem + 1px);
  }
}
@media (max-width: 768px) {
  .inquiry_section::before {
    background-image: url(../img/index/inquiry_bg_top_sp.png);
    height: calc(9.2rem + 1px);
  }
}

.inquiry_character {
  position: absolute;
  background-image: url(../img/index/character7.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 21.8rem;
  height: 14.2rem;
}
@media (min-width: 769px) {
  .inquiry_character {
    right: calc(50% + 22rem);
    top: 13.8rem;
  }
}
@media (max-width: 768px) {
  .inquiry_character {
    left: 0;
    right: 0;
    top: 13.8rem;
    margin: 0 auto;
  }
}

.inquiry_head_h2 {
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .inquiry_head_h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .inquiry_head_h2 {
    font-size: 3.6rem;
  }
}

.inquiry_lead {
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .inquiry_lead {
    align-items: flex-end;
    column-gap: 1.1rem;
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .inquiry_lead {
    flex-direction: column;
    align-items: center;
    row-gap: 2.4rem;
    padding-top: 2rem;
  }
}

.inquiry_lead_logo {
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 769px) {
  .inquiry_lead_logo {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .inquiry_lead_logo {
    font-size: 4.2rem;
  }
}

.inquiry_lead_name {
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 769px) {
  .inquiry_lead_name {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .inquiry_lead_name {
    font-size: 4.2rem;
  }
}

.inquiry_tel {
  display: flex;
}
@media (min-width: 769px) {
  .inquiry_tel {
    justify-content: center;
    align-items: baseline;
    column-gap: 1.5rem;
    padding-top: 4.5rem;
  }
}
@media (max-width: 768px) {
  .inquiry_tel {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding-top: 4rem;
  }
}
.inquiry_tel > dt {
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 769px) {
  .inquiry_tel > dt {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .inquiry_tel > dt {
    font-size: 3.4rem;
  }
}
.inquiry_tel > dd a {
  line-height: 1;
  font-weight: 900;
  color: inherit;
}
@media (min-width: 769px) {
  .inquiry_tel > dd a {
    font-size: 3.36rem;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .inquiry_tel > dd a {
    font-size: 4.76rem;
  }
}

.inquiry_detail {
  align-items: center;
}
@media (min-width: 769px) {
  .inquiry_detail {
    display: grid;
    justify-content: center;
    grid-template-columns: 13.3rem max-content;
    gap: 3rem 1.4rem;
    padding-top: 2.4rem;
  }
}
@media (max-width: 768px) {
  .inquiry_detail {
    display: flex;
    flex-direction: column;
    padding-top: 3.5rem;
  }
}
.inquiry_detail > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0 0 0.1em;
  color: #df0011;
  font-weight: 700;
}
@media (min-width: 769px) {
  .inquiry_detail > dt {
    border-radius: 3.2rem;
    height: 3.2rem;
    line-height: 1.091;
    font-size: 2.2rem;
  }
  .inquiry_detail > dt > p {
    font: inherit;
  }
  .inquiry_detail > dt > p:first-of-type {
    margin-top: -0.045em;
  }
  .inquiry_detail > dt > p:last-of-type {
    margin-bottom: -0.045em;
  }
}
@media (max-width: 768px) {
  .inquiry_detail > dt {
    border-radius: 4.8rem;
    width: 20rem;
    height: 4.8rem;
    line-height: 1.122;
    font-size: 3.3rem;
  }
  .inquiry_detail > dt > p {
    font: inherit;
  }
  .inquiry_detail > dt > p:first-of-type {
    margin-top: -0.06em;
  }
  .inquiry_detail > dt > p:last-of-type {
    margin-bottom: -0.06em;
  }
}
@media (max-width: 768px) {
  .inquiry_detail > dt + dd {
    margin-top: 2.2rem;
  }
}
.inquiry_detail > dd {
  font-weight: 700;
}
@media (min-width: 769px) {
  .inquiry_detail > dd {
    line-height: 1.084;
    font-size: 2.4rem;
  }
  .inquiry_detail > dd > p {
    font: inherit;
  }
  .inquiry_detail > dd > p:first-of-type {
    margin-top: -0.041em;
  }
  .inquiry_detail > dd > p:last-of-type {
    margin-bottom: -0.041em;
  }
}
@media (max-width: 768px) {
  .inquiry_detail > dd {
    line-height: 1.25;
    font-size: 4rem;
    text-align: center;
  }
  .inquiry_detail > dd > p {
    font: inherit;
  }
  .inquiry_detail > dd > p:first-of-type {
    margin-top: -0.125em;
  }
  .inquiry_detail > dd > p:last-of-type {
    margin-bottom: -0.125em;
  }
}
@media (max-width: 768px) {
  .inquiry_detail > dd + dt {
    margin-top: 2.5rem;
  }
}

.inquiry_links {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .inquiry_links {
    column-gap: 1.9rem;
    padding-top: 4.6rem;
  }
}
@media (max-width: 768px) {
  .inquiry_links {
    flex-direction: column;
    row-gap: 3.4rem;
    padding-top: 5rem;
  }
}

.inquiry_link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
}
@media (min-width: 769px) {
  .inquiry_link {
    border-radius: 8.4rem;
    width: 40.6rem;
    height: 8.4rem;
    line-height: 1.4;
    font-size: 3rem;
  }
  .inquiry_link > p {
    font: inherit;
  }
  .inquiry_link > p:first-of-type {
    margin-top: -0.2em;
  }
  .inquiry_link > p:last-of-type {
    margin-bottom: -0.2em;
  }
}
@media (max-width: 768px) {
  .inquiry_link {
    border-radius: 12.6rem;
    width: 61rem;
    height: 12.6rem;
    line-height: 1.134;
    font-size: 4.5rem;
  }
  .inquiry_link > p {
    font: inherit;
  }
  .inquiry_link > p:first-of-type {
    margin-top: -0.066em;
  }
  .inquiry_link > p:last-of-type {
    margin-bottom: -0.066em;
  }
}
@media (min-width: 769px) {
  .inquiry_link figure {
    width: 13.2rem;
  }
}
@media (max-width: 768px) {
  .inquiry_link figure {
    width: 19.7rem;
  }
}
@media (min-width: 769px) {
  .inquiry_link p {
    padding: 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .inquiry_link p {
    padding: 0 1rem;
  }
}
.inquiry_link svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 769px) {
  .inquiry_link svg {
    width: 2rem;
    height: 3.2rem;
    right: 1.3rem;
  }
}
@media (max-width: 768px) {
  .inquiry_link svg {
    width: 3rem;
    height: 4.8rem;
    right: 2rem;
  }
}
.inquiry_link.col1 {
  background: #df0011;
  fill: #fff;
  color: #fff;
}
.inquiry_link.col1:hover {
  background: #5b2f25;
}
.inquiry_link.col2 {
  background: #ffffc7;
  fill: #662b1f;
  color: #662b1f;
}
.inquiry_link.col2:hover {
  background: #f8e100;
}
.inquiry_link:hover {
  text-decoration: none !important;
}

.inquiry_copyright {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .inquiry_copyright {
    width: 32.9rem;
    padding-top: 3.1rem;
  }
}
@media (max-width: 768px) {
  .inquiry_copyright {
    width: 60.2rem;
    padding-top: 3.9rem;
  }
}

.inquiry_sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .inquiry_sns {
    column-gap: 2.6rem;
    padding-top: 3.6rem;
  }
}
@media (max-width: 768px) {
  .inquiry_sns {
    column-gap: 4rem;
    padding-top: 9.2rem;
  }
}
@media (min-width: 769px) {
  .inquiry_sns a {
    width: 4rem;
  }
}
@media (max-width: 768px) {
  .inquiry_sns a {
    width: 8rem;
  }
}

.pagetop_anchor {
  position: sticky;
  transition: opacity 0.2s linear;
  z-index: 5;
}
@media (min-width: 769px) {
  .pagetop_anchor {
    width: 7.6rem;
    margin: -13.5rem 3rem 4.5rem auto;
    bottom: 4.5rem;
  }
}
@media (max-width: 768px) {
  .pagetop_anchor {
    width: 10.8rem;
    margin: -18.8rem 6.6rem 6rem auto;
    bottom: 6rem;
  }
}
.pagetop_anchor:not(.is-show) {
  opacity: 0;
  pointer-events: none;
}
.pagetop_anchor.is-show {
  opacity: 1;
}

.dialog_outer {
  border: 0;
  padding: 0;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  color: #662b1f;
}
@media (min-width: 769px) {
  .dialog_outer {
    width: 70.834%;
    max-width: 850px;
    height: 50rem;
    min-height: 50rem;
    padding: 6rem 0 6rem 5rem;
  }
}
@media (max-width: 768px) {
  .dialog_outer {
    width: 100%;
    max-width: none;
    padding: 8.7rem 0;
  }
}
.dialog_outer:focus {
  outline: none;
}
.dialog_outer * {
  font-family: "Noto Sans JP", sans-serif;
}

.dialog_close {
  position: absolute;
  cursor: pointer;
}
@media (min-width: 769px) {
  .dialog_close {
    width: 4.9rem;
    right: 1rem;
    top: 1rem;
  }
}
@media (max-width: 768px) {
  .dialog_close {
    width: 9.1rem;
    right: 2.7rem;
    top: 2.3rem;
  }
}
.dialog_close:focus {
  outline: none;
}

.character_block {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .character_block {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .character_block {
    flex-direction: column;
    row-gap: 5rem;
  }
}

.character_image {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .character_image.img1 {
    width: 39.1rem;
    margin-right: 6rem;
  }
}
@media (max-width: 768px) {
  .character_image.img1 {
    width: 58.6rem;
  }
}
@media (min-width: 769px) {
  .character_image.img2 {
    width: 30.1rem;
    margin-left: 2.2rem;
    margin-right: 5rem;
  }
}
@media (max-width: 768px) {
  .character_image.img2 {
    width: 45.2rem;
  }
}
@media (min-width: 769px) {
  .character_image.img3 {
    width: 20.1rem;
    margin-left: 8.5rem;
    margin-right: 11.8rem;
  }
}
@media (max-width: 768px) {
  .character_image.img3 {
    width: 30.1rem;
  }
}
@media (min-width: 769px) {
  .character_image.img4 {
    width: 29.3rem;
    margin-left: 1.3rem;
    margin-right: 5.7rem;
  }
}
@media (max-width: 768px) {
  .character_image.img4 {
    width: 44rem;
  }
}

.character_caption {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 769px) {
  .character_caption {
    row-gap: 3rem;
  }
}
@media (max-width: 768px) {
  .character_caption {
    row-gap: 5rem;
  }
}

.character_name {
  letter-spacing: 0.25em;
  font-weight: 900;
}
@media (min-width: 769px) {
  .character_name {
    line-height: 1.25;
    font-size: 4rem;
  }
  .character_name > p {
    font: inherit;
  }
  .character_name > p:first-of-type {
    margin-top: -0.125em;
  }
  .character_name > p:last-of-type {
    margin-bottom: -0.125em;
  }
}
@media (max-width: 768px) {
  .character_name {
    line-height: 1.334;
    font-size: 6rem;
    text-align: center;
  }
  .character_name > p {
    font: inherit;
  }
  .character_name > p:first-of-type {
    margin-top: -0.166em;
  }
  .character_name > p:last-of-type {
    margin-bottom: -0.166em;
  }
}

.character_text {
  font-weight: 500;
}
@media (min-width: 769px) {
  .character_text {
    line-height: 1.875;
    font-size: 1.6rem;
  }
  .character_text > p {
    font: inherit;
  }
  .character_text > p:first-of-type {
    margin-top: -0.437em;
  }
  .character_text > p:last-of-type {
    margin-bottom: -0.437em;
  }
}
@media (max-width: 768px) {
  .character_text {
    line-height: 1.608;
    font-size: 2.8rem;
    text-align: center;
  }
  .character_text > p {
    font: inherit;
  }
  .character_text > p:first-of-type {
    margin-top: -0.303em;
  }
  .character_text > p:last-of-type {
    margin-bottom: -0.303em;
  }
}