@charset "UTF-8";

/*追加した*/
.your-class {
  font-family: "Noto Sans JP", sans-serif;
}

@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_top.active {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}

.bottom_to_tops>* {
  opacity: 0;
}

.bottom_to_tops.active>* {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bottom_to_tops.active>*:nth-child(2) {
  animation-delay: 0.1s;
}

.bottom_to_tops.active>*:nth-child(3) {
  animation-delay: 0.2s;
}

.bottom_to_tops.active>*:nth-child(4) {
  animation-delay: 0.3s;
}

.bottom_to_tops.active>*:nth-child(5) {
  animation-delay: 0.4s;
}

.bottom_to_tops.active>*:nth-child(6) {
  animation-delay: 0.5s;
}

.bottom_to_tops.active>*:nth-child(7) {
  animation-delay: 0.6s;
}

.bottom_to_tops.active>*:nth-child(8) {
  animation-delay: 0.7s;
}

.bottom_to_tops.active>*:nth-child(9) {
  animation-delay: 0.8s;
}

.bottom_to_tops.active>*:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.left_to_rights>* {
  opacity: 0;
}

.left_to_rights.active>* {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.left_to_rights.active>*:nth-child(2) {
  animation-delay: 0.1s;
}

.left_to_rights.active>*:nth-child(3) {
  animation-delay: 0.2s;
}

.left_to_rights.active>*:nth-child(4) {
  animation-delay: 0.3s;
}

.left_to_rights.active>*:nth-child(5) {
  animation-delay: 0.4s;
}

.left_to_rights.active>*:nth-child(6) {
  animation-delay: 0.5s;
}

.left_to_rights.active>*:nth-child(7) {
  animation-delay: 0.6s;
}

.left_to_rights.active>*:nth-child(8) {
  animation-delay: 0.7s;
}

.left_to_rights.active>*:nth-child(9) {
  animation-delay: 0.8s;
}

.left_to_rights.active>*:nth-child(10) {
  animation-delay: 0.9s;
}

.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes top_to_bottom {
  0% {
    transform: translate3d(0, -3vw, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.top_to_bottom {
  opacity: 0;
}

.top_to_bottom.active {
  animation: top_to_bottom 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: #a0a0a0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
}

.show_text {
  position: relative;
  transition: -webkit-clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-delay: 0.3s;
}

.role_to {
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.8s 0s ease;
}

.role_to.active {
  opacity: 1;
  transform: rotate(0deg);
}

.big_to {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s 0s ease;
}

.big_to.active {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.8s 0s ease;
  transition-delay: 0.3s;
}

.fadeIn.active {
  opacity: 1;
}

.showvis span:nth-child(1):after {
  top: 48%;
}

.showvis span:nth-child(2):after {
  top: 80%;
}

.showvis span:nth-child(3):after {
  top: 54%;
}

.showvis span:nth-child(1):before {
  top: -5px;
  left: -5px;
}

.showvis span:nth-child(2):before {
  top: -3px;
  left: 1px;
}

.showvis span:nth-child(3):before {
  top: 2px;
  left: -2px;
}

.showvis.showvisDelay span:nth-child(1):before {
  top: 20px;
}

.showvis.active span:nth-child(1):after {
  animation: leftin 0.5s ease 0.2s forwards;
}

.showvis.active span:nth-child(2):after {
  animation: leftin 0.5s ease 0.4s forwards;
}

.showvis.active span:after {
  animation: leftin 0.5s ease 0s forwards;
}

.showvis.active span:before {
  animation: chikachika 0.1s ease 0.7s infinite, chikachika2 0.1s ease 1.2s forwards;
}

.showvis.active span {
  animation: fadeIn 1s ease 0.7s forwards;
}

.showvis.showvisDelay.active span:after {
  animation: leftin 0.4s ease 0.2s forwards;
}

.showvis.showvisDelay.active span:before {
  animation: chikachika 0.1s ease 0.8s infinite, chikachika2 0.1s ease 1.4s forwards;
}

.showvis.showvisDelay.active span {
  animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
  from {
    color: transparent !important;
    text-shadow: 0px 0px 3px #fff, 0px 0px 5px #fff, 0px 0px 8px #fff, 0px 0px 10px #fff, 0px 0px 15px #fff, 0px 0px 20px #fff;
  }

  to {
    text-shadow: none;
    color: #fff !important;
  }
}

@keyframes chikachika {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 0;
  }
}

@keyframes chikachika2 {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes leftin {
  0% {
    transform: translateX(1000px) scale(1);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  70% {
    transform: scale(1);
  }

  90% {
    transform: scale(20);
  }

  100% {
    transform: translateX(0px) scale(20);
    opacity: 0;
  }
}

.to_big {
  opacity: 0;
}

.to_big.active {
  animation: to_big 0.5s ease-out forwards;
  transform-origin: 50% 50%;
  opacity: 0;
}

@keyframes to_big {
  0% {
    transform: scale(0.4, 0.4);
    opacity: 0;
  }

  40% {
    transform: scale(1.2, 1.2);
    opacity: 1;
  }

  60% {
    transform: scale(1, 1);
  }

  80% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0) scale(1);
    /* 通常の位置とサイズ */
  }

  30% {
    transform: translateY(-30px) scale(1.03);
    /* 少し上にジャンプして大きくなる */
  }

  50% {
    transform: translateY(0) scale(0.9);
    /* 元の位置に戻りつつ縮む */
  }

  70% {
    transform: translateY(-10px) scale(1.01);
    /* 小さくジャンプして大きくなる */
  }

  100% {
    transform: translateY(0) scale(1);
    /* 元のサイズと位置に戻る */
  }
}

@keyframes purine {
  0% {
    transform: translateY(0) scale(1);
    /* 通常の位置とサイズ */
  }

  30% {
    transform: translateY(-50px) scale(1.2);
    /* 少し上にジャンプして大きくなる */
  }

  50% {
    transform: translateY(0) scale(0.8);
    /* 元の位置に戻りつつ縮む */
  }

  70% {
    transform: translateY(-25px) scale(1.1);
    /* 小さくジャンプして大きくなる */
  }

  100% {
    transform: translateY(0) scale(1);
    /* 元のサイズと位置に戻る */
  }
}

html {
  scroll-behavior: smooth;
}

main {
  font-size: 16px;
}

.wrap {
  padding: 0 1.53125em;
  max-width: 58.4375em;
  margin-left: auto;
  margin-right: auto;
}

.wrap2 {
  padding: 0 1.53125em;
  max-width: 68.75em;
  margin-left: auto;
  margin-right: auto;
}

.rwd_show {
  display: none;
}

.rwd_show2 {
  display: inline;
}

p.ft_rbr a {
  color: #a52411 !important;
}

.ft_rbr {
  color: #a52411;
}

.ft-big {
  font-size: 200%;
}

.in1 {
  text-indent: 1em;
}

.mt50 {
  margin-top: 80px;
}

@media screen and (max-width: 600px) {
  .ft-big {
    font-size: 130%;
  }

  .mt50 {
    margin-top: 80px;
  }

  .rwd_show {
    display: inline;
  }

  .rwd_show2 {
    display: none !important;
  }

  .rwd_hide {
    display: none;
  }

  .wrap {
    max-width: 600px;
  }
}

.bds {
  display: inline-block;
  position: relative;
}

.bds span {
  position: relative;
  z-index: 3;
}

.bds:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 2;
  -webkit-text-stroke: 11px #FFF;
}

.bds:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 1;
  -webkit-text-stroke: 8px #ED6C00;
  filter: blur(0.1em);
  width: 100%;
}

.bds.bdss:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 2;
  -webkit-text-stroke: 16px #FFF;
  -webkit-text-stroke: 16px #FFF;
}

.bds.bdss:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 1;
  -webkit-text-stroke: 24px #ED6C00;
  -webkit-text-stroke: 24px #ED6C00;
}

.t_dots i {
  font-style: normal;
  display: inline-block;
  position: relative;
}

.t_dots i:before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background-color: #6A3906;
  position: absolute;
  bottom: 85%;
  left: 0;
  right: 0;
  margin: auto;
}

.page_contents {
  text-align: left;
  line-height: 1.5;
  background-color: #FFF79F;
  background-image: url(../img/bg.png);
  background-size: 6.5625em 7.625em;
  color: #392800;
}

.page_contents img {
  width: 100%;
  vertical-align: bottom;
}

.page_contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page_contents a {
  color: #454545;
}

.page_contents h2,
.page_contents h3,
.page_contents h4 {
  margin: 0;
}

.page_contents h2 {
  font-size: 131.25%;
}

.page_contents h3 {
  font-size: 112.5%;
}

.page_contents p,
.page_contents figure {
  margin: 0;
}

.page_contents input,
.page_contents select {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 0.3125em;
  padding: 0.3em 0.5em;
  border: solid 1px #552906;
  box-sizing: border-box;
  width: 100%;
}

.page_contents hr {
  margin: 0;
  border-bottom: 0;
  border-top: 1px solid #552906;
}

.page_contents .sb {
  padding: 5.5em 0;
}

.page_contents .sb .sbh {
  text-align: center;
}

.page_contents .sb .sbh h2 {
  font-size: 343.75%;
  letter-spacing: 0.2em;
  color: #FFEC5B;
  padding-top: 0.8em;
  padding-bottom: 0.2em;
  background-image: url(../img/sbhbg1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

.page_contents .sb .sbh h2:after {
  content: "";
  display: block;
  width: 3.3545454545em;
  height: 3.2909090909em;
  background-image: url(../img/pompom2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.2em;
  top: -0.4em;
}

.page_contents .sb .sbh .en {
  font-size: 175%;
  color: #ED6C00;
}

.page_contents .sb .sbh .en span {
  position: relative;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.page_contents .sb .sbh .en span:before {
  content: "";
  width: 0.5714285714em;
  height: 0.5714285714em;
  background-image: url(../img/en_star.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0.4em;
  right: 100%;
  opacity: 0;
  transition: all ease 0.3s;
  transition-delay: 0.4s;
  transform: translate3d(-1rem, 1rem, 0) scale(2.1) rotate(45deg);
}

.page_contents .sb .sbh .en span:after {
  content: "";
  width: 0.5714285714em;
  height: 0.5714285714em;
  background-image: url(../img/en_star.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0.4em;
  left: 100%;
  opacity: 0;
  transition: all ease 0.3s;
  transition-delay: 0.5s;
  transform: translate3d(1rem, -1rem, 0) scale(2.1) rotate(45deg);
}

.page_contents .sb .sbh.active .en span:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

.page_contents .sb .sbh.active .en span:after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

.page_contents .sb .sbh.active h2:after {
  animation: purine 1s ease forwards;
}

.page_contents .ml {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  transform: rotate(0.03deg);
}

/* 親要素のクラス（.page_contents）を頭につけて、優先順位を上げます */
.page_contents .text-center {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 112.5% !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: rotate(0.03deg);
}

.page_contents .fc_red {
  color: #E60012;
}

.page_contents .dot {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 87.5%;
}

.page_contents .tdu {
  text-align: center;
  border-bottom: 1px solid #4B4B4B;
}

.page_contents .tac {
  text-align: center;
}

.page_contents .fz15 {
  font-size: 93.75%;
  font-weight: 600;
}

.page_contents .fz14 {
  font-size: 87.5%;
  font-weight: normal;
}

.page_contents .dashed {
  border: 0;
  border-top: 1px dashed #392804;
  margin: 0;
  padding: 0;
  margin: 1em 0;
}

.page_contents .small {
  font-size: 75%;
  font-weight: normal;
  text-indent: -1em;
  margin-left: 1em;
}

.page_contents hr {
  border: 0;
  margin: 1em 0;
  border: 1px solid #392804;
}

.page_contents .red_button {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  color: #E60012;
  margin-bottom: 2.125em;
  position: relative;
  border-radius: 6.25em;
  border: solid 3px #E60012;
  background-color: #fff;
  padding: 0.625em 0 0.625em 0;
  display: block;
  transition: all ease 0.3s;
  box-sizing: border-box;
  margin-top: 1em;
  margin-bottom: 1em;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 8px 0 0 #c61c2b !important;
}

.page_contents .red_button>span {
  font-size: 93.75%;
}

.page_contents .red_button:hover {
  box-shadow: 0 0em 0 #E60012;
  transform: translate3d(0, 0.3125em, 0);
}

.page_contents .red_button:before {
  content: "";
  width: 1.4375em;
  height: 1.4375em;
  background-image: url(../img/right_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .red_button.disable {
  cursor: default;
  border: solid 3px #b5b5b5;
  background-color: #d0d0d0;
}

.page_contents .red_button.disable:hover {
  opacity: 1;
}

.page_contents .red_button.orange_button {
  color: #ED6C00;
  border: solid 3px #ED6C00;
  font-size: 143.75%;
  box-shadow: 0 0.3125em 0 #ED6C00 !important;
  max-width: 21.0869565217em;
}

.page_contents .red_button.orange_button:before {
  width: 1em;
  height: 1em;
  background-image: url(../img/right_orange.svg);
}

.page_contents .red_button.orange_button:hover {
  box-shadow: 0 0 0 #ED6C00;
}

.page_contents .red_button.back {
  border: solid 3px #707070;
  background-color: #a8a8a8;
  box-shadow: 0 0.3125em 0 #707070;
}

.page_contents .red_button.back:before {
  content: "";
  width: 1.1875em;
  height: 1.1875em;
  transform: rotate(180deg);
  background-image: url(../img/right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
  left: 1em;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .red_button.back:hover {
  box-shadow: 0 0em 0 #707070;
  transform: translate3d(0, 0.3125em, 0);
}

.page_contents .red_button.uploader {
  display: flex;
  justify-content: center;
  border-radius: 0.7em;
}

.page_contents .red_button.uploader:before {
  content: "";
  width: 1.366875em;
  height: 1.1875em;
  background-image: url(../img/cam.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: unset;
  z-index: 3;
  margin: 0;
  margin-right: 0.5em;
}

.page_contents .back_camp {
  margin: 0 auto;
  position: relative;
  line-height: 1.8;
  color: #552906;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 93.75%;
  border-radius: 6.25em;
  box-sizing: border-box;
  padding: 0.625em 0 0.625em 0;
  border: solid 3px #552906;
  margin-bottom: 2.5em;
  background-color: #fff;
  color: #552906;
  transition: all ease 0.3s;
}

.page_contents .back_camp:before {
  content: "";
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/right_brown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .back_camp:hover {
  opacity: 0.7;
}

.page_contents .logout {
  text-decoration: underline;
  font-size: 75%;
  color: #969696;
  display: block;
  font-weight: 500;
  text-align: center;
  transition: all ease 0.3s;
}

.page_contents .logout:hover {
  opacity: 0.7;
}

.page_contents .come {
  font-size: 75%;
}

@media screen and (max-width: 1100px) {
  .page_contents {
    overflow: hidden;
    font-size: 1.6vw;
  }
}

.kv {
  overflow: hidden;
  padding-bottom: 4em;
}

.kv .kv_bottom {
  text-align: center;
  position: relative;
  padding: 1em 0;
  padding-bottom: 1.5em;
}

.kv .kv_bottom:after {
  content: "";
  display: block;
  width: 105%;
  aspect-ratio: 3140/148;
  background-image: url(../img/kv_bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -10%;
  left: -2%;
  right: -2%;
  z-index: 1;
}

.kv .kv_bottom:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFEC5B;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.kv .kv_bottom .wrap {
  font-weight: bold;
  position: relative;
  max-width: 61.25em;
  z-index: 4;
  padding: 0 1.53125em;
  max-width: 61.5em;
}

.kv .kv_bottom figure {
  position: absolute;
  right: 1.53125em;
  top: 1em;
  bottom: 0;
  margin: auto;
  width: 8.75em;
  height: 8.75em;
}

.kv .kv_bottom figure img {
  -o-object-fit: contain;
  object-fit: contain;
}

.kv .kv_bottom p {
  font-size: 168.75%;
  color: #E60012;
  font-weight: 800;
}

.kv .kv_bottom p b {
  font-size: 148.1481481481%;
  font-weight: bolder;
}

.kv .kv_bottom p .bds:nth-child(1):before {
  content: "抽選で合計";
  color: #fff;
}

.kv .kv_bottom p .bds:nth-child(2):before {
  content: "1,000";
  color: #fff;
}

.kv .kv_bottom p .bds:nth-child(3):before {
  content: "名様に当たる";
  color: #fff;
}

.kv .kv_bottom p .bds:nth-child(5):before {
  content: "キャンペーン実施中!";
  color: #fff;
}

.kv .kv_bottom a {
  display: block;
  max-width: 30.625em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.3em;
  box-sizing: border-box;
  border-radius: 0.7em;
  background-color: #fff;
  color: #E60012;
}

.kv .kv_bottom a>span {
  font-size: 143.75%;
}

@media screen and (max-width: 1100px) {
  .kv .kv_bottom figure {
    .ft-big {
      font-size: 130%;
    }
  }
}

@media screen and (max-width: 600px) {

  .page_contents .text-center {
    font-size: 93.75% !important;
  }

  .kv .kv_bottom:after {
    width: 210%;
  }

  .kv .kv_bottom p {
    text-align: left;
  }

  .kv .kv_bottom p {
    font-size: 106.25%;
  }

  .kv .kv_bottom a>span {
    font-size: 100%;
  }

  .kv .kv_bottom figure {
    width: calc(100 / 375 * 100vw);
    height: calc(100 / 375 * 100vw);
    bottom: 0;
    margin: 0;
    top: auto;
    right: 0;
  }

  .kv .kv_bottom a {
    max-width: calc(241 / 375 * 100vw);
    margin-left: 0;
  }

  .kv {
    padding-bottom: 2em;
  }

  .kv .kv_bottom {
    padding-bottom: 0.5em;
  }
}

.page_nav {
  padding: 0 1.53125em;
  padding-top: 1em;
  padding-bottom: 6em;
}

.page_nav ul {
  display: flex;
  gap: 0.5em;
  max-width: 68.75em;
  margin-left: auto;
  margin-right: auto;
}

.page_nav ul li {
  flex: 1;
}

.page_nav ul li a {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  background: linear-gradient(#D99767, #58311B);
  text-align: center;
  height: 100%;
  border-radius: 100em;
  box-shadow: 0 0.3em 0.1em rgba(237, 108, 0, 0.5019607843);
  color: #fff;
  font-weight: 600;
  font-size: 112.5%;
  line-height: 1.3;
  padding: 0.6em 0;
  box-sizing: border-box;
  position: relative;
  transition: all ease 0.3s;
}

.page_nav ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5em solid #6A3906;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

.page_nav ul li a:hover {
  transform: translate3d(0, 0.2em, 0);
  box-shadow: 0 0em 0.1em rgba(237, 108, 0, 0.5019607843);
}

.page_nav ul li:nth-child(2n) {
  transform: translate3d(0, 0.5em, 0);
}

@media screen and (max-width: 600px) {
  .page_nav {
    padding-bottom: 0;
  }

  .page_nav ul {
    flex-wrap: wrap;
    gap: 1em;
  }

  .page_nav ul>li {
    flex: 0 1 calc((100% - 1em) / 2);
  }

  .page_nav ul>li a {
    height: 4em;
    font-size: 106.25%;
  }

  .page_nav ul li:nth-child(2n) {
    transform: translate3d(0, 0, 0);
  }
}

.nav_catch {
  padding: 5em 0;
  padding-bottom: 4em;
}

.nav_catch .wrap>p {
  text-align: center;
  background-color: #fff;
  border-radius: 1em;
  border: 5px solid #6A3906;
  padding: 1.5em 0;
  font-weight: 800;
  font-size: 231.25%;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.nav_catch .wrap>p .bds {
  color: #ED6C00;
  margin: 0 0.2em;
}

.nav_catch .wrap>p .bds:nth-of-type(1):before {
  content: "30";
}

.nav_catch .wrap>p .bds:nth-of-type(1):after {
  content: "30";
}

.nav_catch .wrap>p .bds:nth-of-type(2):before {
  content: "ポムポムプリン";
}

.nav_catch .wrap>p .bds:nth-of-type(2):after {
  content: "ポムポムプリン";
}

.nav_catch .wrap>p .bds:nth-of-type(3):before {
  content: "プッチンプリン";
}

.nav_catch .wrap>p .bds:nth-of-type(3):after {
  content: "プッチンプリン";
}

.nav_catch .wrap>p img {
  width: 1.2375675676em;
  vertical-align: middle;
}

.nav_catch .wrap>p img:nth-of-type(2) {
  width: 0.8313513514em;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .nav_catch .wrap>p {
    font-size: 143.75%;
  }

  .nav_catch {
    padding-top: 3em;
    padding-bottom: 0;
  }


}

.overview {
  padding: 4em 0;
}

.overview>.wrap>p {
  text-align: right;
  font-weight: 600;
  color: #ED6C00;
  font-size: 112.5%;
  padding-top: 0.3em;
  margin-right: 1em;
  letter-spacing: 0.1em;
}

.overview h2 {
  text-align: center;
  font-weight: 800;
  font-size: 343.75%;
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-top: 1.5em;
  margin-bottom: -1px;
}

.overview h2:after {
  content: "";
  display: block;
  width: 42%;
  height: calc(200% - 1.5em);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0.8em;
  z-index: 2;
  border: 5px solid #6A3906;
  border-radius: 100%;
  background-color: #FFEC5B;
}

.overview h2:before {
  content: "";
  display: block;
  width: 2.7636363636em;
  height: 1.3090909091em;
  position: absolute;
  top: 0em;
  left: 0;
  right: 0;
  z-index: 3;
  margin: auto;
  background-image: url(../img/cap.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.overview h2 .bds {
  z-index: 10;
}

.overview h2 .bds:before {
  content: "概要";
  -webkit-text-stroke: 12px #FFF;
  -webkit-text-stroke: 12px #FFF;
}

.overview h2 .bds span {
  color: #ED6C00;
}

.overview .overview_in {
  position: relative;
  background: #FFEC5B;
  padding: 3em;
  border: 4px solid #6A3906;
  border-radius: 2em;
  z-index: 1;
  margin-top: -5px;
}

.overview .overview_in:before {
  content: "";
  display: block;
  width: 6.1875em;
  height: 1.8125em;
  background-image: url(../img/icon3.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(100% + 1em);
  left: 1em;
}

.overview .overview_in:after {
  content: "";
  display: block;
  width: 11.8125em;
  height: 11.0625em;
  background-image: url(../img/pompom1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(0px - 2em);
  left: -5em;
  transform: rotate(-16deg);
}

.overview .overview_in>div {
  padding: 2em 3em;
  padding-bottom: 3em;
  border-radius: 1em;
  background-color: #fff;
}

.overview .overview_in>div>.overview_desc {
  text-align: center;
  font-size: 137.5%;
  font-weight: 800;
}

.overview .overview_in>div>.overview_desc small {
  color: #454545;
  font-weight: normal;
  font-size: 63.6363636364%;
}

.overview .overview_in>div>.overview_desc small a {
  color: #454545;
  transition: all ease 0.3s;
}

.overview .overview_in>div>.overview_desc small a:hover {
  opacity: 0.7;
}

.overview .overview_in>div>.overview_desc b {
  font-size: 131.8181818182%;
}

.overview .overview_in>div>.overview_desc i {
  font-style: normal;
}

.overview .overview_in>div>.overview_button {
  background: linear-gradient(#FF9B48, #ED6C00);
  border-radius: 100em;
  border: 1px solid #ED6C00;
  text-align: center;
  color: #fff;
  font-size: 99.5%;
  padding: 0.7em 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.overview .overview_in>div>.overview_button b {
  font-size: 155.5555555556%;
}

.overview .overview_in>div>.overview_button b span {
  font-size: 90%;
}

/* .overview.active h2:before {
  animation: purine 1s ease forwards;
} */

.overview.active .overview_in:after {
  animation: bounce 1s ease forwards;
  animation-delay: 1s;
}

/* link-underline クラスの中にある aタグ だけに下線を引く */
.link-underline a {
  text-decoration: none;
  border-bottom: 1px dotted #000;
  color: inherit;
}

/* 今回の「特定の箇所」だけに隙間を空ける */
.prizes_p_small .link-underline a {
  padding-bottom: 2px;
  display: inline-block;
  line-height: 1;
}

/* マウスを乗せた時の動き（お好みで。不要なら消してください） */
.link-underline a:hover {
  text-decoration: none !important;
  /* ホバー時に線を消してクリック感を出す */
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  /* 画面幅600px以下の設定 */
  @media screen and (max-width: 600px) {
    .overview .overview_in:before {
      width: 4em;
      height: auto;
      aspect-ratio: 6.1875 / 1.8125;
      left: 0.5em;
    }
  }

  .overview h2 {
    font-size: 212.5%;
  }

  .overview h2:before {
    width: calc(100 / 375 * 100vw);
  }

  .overview h2:after {
    width: 55%;
    border-width: 4px;
  }

  .overview .overview_in {
    padding: 1em;
  }

  .overview .overview_in>div {
    padding: 2em 1em;
  }

  .overview .overview_in>div>.overview_desc {
    font-size: 112.5%;
  }

  .overview .overview_in>div>.overview_desc b {
    font-size: 127.7777777778%;
  }

  .overview .overview_in>div>.overview_desc small {
    line-height: 1.5;
    display: block;
    margin-top: 1em;
  }

  .overview .overview_in:after {
    width: 4.618125em;
    height: 6.3475em;
    left: -1.3em;
    bottom: -3em;
  }


  .overview .overview_in>div>.overview_button {
    border-radius: 0.5em;
  }

  .overview .overview_in>div>.overview_button b {
    font-size: 112.5%;
  }

  .overview>.wrap>p {
    font-size: 93.75%;
  }
}

@media screen and (max-width: 767px) {

  /* スマホ時のみ、ボタン内の日付周りの挙動を制御 */
  .overview .overview_in>div>.overview_button {
    text-align: center;
    white-space: normal;
  }

  .overview .overview_in>div>.overview_button br {
    display: block;
  }

  /* 共通の左寄せ設定 */
  .overview .overview_in>div>.overview_button b {
    display: inline-block;
    text-align: left;
    white-space: nowrap;
  }

  /* 2行目の「5月」の前に2文字分のインデントを追加 */
  .overview .overview_in>div>.overview_button b:nth-of-type(2) {
    margin-left: 2em;
    /* 2文字分のインデント */
  }
}

.page_footer {
  text-align: center;
  background-color: #fff;
}

.page_footer .copy {
  color: #392800;
  font-size: 62.5%;
}

.toggles {
  border: 3px solid #76342E;
  background-color: #fff;
  padding: 1em;
  border-radius: 1em;
  margin-bottom: 1em;
  margin-bottom: 1em;
}

.toggles button {
  cursor: pointer;
  color: #6A3906;
  text-decoration: none;
  border: 0;
  font-size: 125%;
  width: 100%;
  background-color: transparent;
  position: relative;
}

.toggles button:before {
  content: "";
  display: block;
  width: 1.25em;
  height: 0.25em;
  position: absolute;
  top: 42%;
  right: 0em;
  background: #6A3906;
  border-radius: 100em;
  transition: all ease 0.3s;
}

.toggles button:after {
  content: "";
  display: block;
  width: 0.25em;
  height: 1.25em;
  position: absolute;
  top: calc(42% - 0.5em);
  right: 0.5em;
  background: #6A3906;
  border-radius: 100em;
  transition: all ease 0.3s;
}

.toggles button.open:before {
  opacity: 0;
  transform: rotate(90deg);
}

.toggles button.open:after {
  opacity: 1;
  transform: rotate(90deg);
}

.toggles>div {
  padding-top: 0.5em;
  display: none;
}

.page_contents .w_bg {
  background-color: #fff;
  border-radius: 2em;
  padding: 4em 6em;
  padding-bottom: 3em;
  border: 4px solid #6A3906;
  text-align: center;
  position: relative;
  margin-bottom: 1em;
}

.sbPrizes .sbc {
  padding: 2em 0;
  position: relative;
}

.sbPrizes .prizes_f1 {
  position: absolute;
  width: 12.5em;
  height: 12.5em;
  background-repeat: no-repeat;
  background-size: contain;
  right: -4em;
  top: -4em;
}

.sbPrizes .prizes_nav {
  display: flex;
  gap: 3em;
  margin-bottom: 3em;
}

.sbPrizes .prizes_nav>button {
  display: block;
  flex: 1;
  border: 4px solid #ED6C00;
  color: #ED6C00;
  font-size: 175%;
  text-align: center;
  font-weight: 600;
  padding: 0.7em 0;
  border-radius: 0.5em;
  background-color: #FFEC5B;
  line-height: 1.3;
  position: relative;
  margin-bottom: 1em;
  cursor: pointer;
  transition: all ease 0.3s;
}

.sbPrizes .prizes_nav>button:before {
  content: "";
  width: 2.7678571429em;
  height: 2.2678571429em;
  background-image: url(../img/tap.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  position: absolute;
  top: 65%;
  right: 0;
  opacity: 1;
}

.sbPrizes .prizes_nav>button:after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/fukidashi_y.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
  transition: all ease 0.3s;
}

.sbPrizes .prizes_nav>button.disable {
  border-color: #A0A0A0;
  background-color: #D9D9D9;
  color: #fff;
  transition: all ease 0.3s;
}

.sbPrizes .prizes_nav>button.disable:before {
  opacity: 0;
}

.sbPrizes .prizes_nav>button.disable:after {
  opacity: 0;
}

.sbPrizes .prizes_nav_c {
  display: none;
}

.sbPrizes #prizes_nav_c1 {
  display: block;
}

.sbPrizes .w_bg {
  background-color: #fff;
  border-radius: 2em;
  padding: 4em 6em;
  padding-bottom: 3em;
  border: 4px solid #6A3906;
  text-align: center;
  position: relative;
  margin-bottom: 6em;
}

.sbPrizes .w_bg h3 {
  font-size: 125%;
  background-image: url(../img/h3_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1em 0;
  text-align: center;
  background-position: center;
  margin-bottom: 1em;
}

.sbPrizes .w_bg .bds_wrap {
  font-size: 281.25%;
  line-height: 1.4;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(1) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(1):before {
  content: "ポムポム“プッチン”";
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(1):after {
  content: "ポムポム“プッチン”";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(2) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg .pomgluss_text {
  width: 86.804%;
}

.sbPrizes .w_bg .pomgluss_text2 {
  width: 58.232%;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(2):before {
  content: "アラモードグラス";
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(2):after {
  content: "アラモードグラス";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(3) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(3):before {
  content: "2個セット";
}

.sbPrizes .w_bg .bds_wrap .bdss:nth-of-type(3):after {
  content: "2個セット";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg>div figure {
  padding-bottom: 1em;
}

.sbPrizes .w_bg>div figure img {
  width: 102%;
  /* margin-right: -16%; */
  margin-right: -5%;
  margin-left: auto;
}

.sbPrizes .w_bg>div figure figcaption {
  text-align: center;
  font-size: 187.5%;
  font-weight: 800;
  color: #ED6C00;
  line-height: 1.3;
  margin-top: -0.7em;
}

.sbPrizes .w_bg>div .prizes_p_desc {
  text-align: center;
  font-size: 112.5%;
  padding: 1.1em 0;
  line-height: 1.7;
  letter-spacing: 1px;
  font-weight: 600;
  border-top: 1px solid #6A3906;
  border-bottom: 1px solid #6A3906;
}

.sbPrizes .w_bg .prizes_p_small {
  font-size: 75%;
  text-align: center;
  padding: 2em 0;
  color: #454545;
}

.sbPrizes .w_bg.w_bgPrizes:before {
  content: "";
  display: block;
  width: 15.461875em;
  height: 13.941875em;
  position: absolute;
  bottom: -3em;
  left: -5em;
  background-image: url(../img/pompom3.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sbPrizes #prizes_nav_c2 .w_bg.active.w_bg.w_bgPrizes:before {
  content: "";
  display: block !important;
  width: 11.561875em;
  height: 11.941875em;
  position: absolute;
  bottom: 2em;
  left: -5em;
  background-image: url(../img/pompom8.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sbPrizes .w_bg.w_bgPrizesb {
  padding-bottom: 1em;
}

.sbPrizes .w_bg.w_bgPrizesb .prizes_f2 {
  position: absolute;
  width: 9.5em;
  height: 9.5em;
  top: 1.5em;
  left: 1.5em;
}

.sbPrizes .w_bg.w_bgPrizesb .prizes_f2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sbPrizes .w_bg.w_bgPrizesb:before {
  content: "";
  display: block;
  width: 15.461875em;
  height: 13.941875em;
  position: absolute;
  bottom: -2em;
  right: -8em;
  background-image: url(../img/pompom4.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sbPrizes .w_bg.w_bgPrizesb>div {
  display: flex;
  gap: 3em;
  margin: 2em 5em;
}

.sbPrizes .w_bg.w_bgPrizesb>div>figure {
  flex: 0 1 12.5em;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div {
  padding-top: 1.5em;
  flex: 1;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .prizes_p_desc {
  border: 0;
  text-align: left;
  padding-top: 2em;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap {
  font-size: 281.25%;
  line-height: 1.4;
  text-align: left;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(1) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(1):before {
  content: "ちょこっと";
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(1):after {
  content: "ちょこっと";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(2) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(2):before {
  content: "プッチンプリン";
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(2):after {
  content: "プッチンプリン";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(3) {
  color: #ED6C00;
  font-weight: 900;
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(3):before {
  content: "カスタード 1袋";
}

.sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap .bdss:nth-of-type(3):after {
  content: "カスタード 1袋";
  text-shadow: 0.1em 0.35em 0.15em #FFEC5B;
}

.sbPrizes .w_bg.active.w_bg.w_bgPrizes:before {
  animation: bounce 1s ease forwards;
  animation-delay: 1s;
}

.sbPrizes .w_bg.active.w_bg.w_bgPrizesb:before {
  animation: bounce 1s ease forwards;
  animation-delay: 1s;
}

@media screen and (max-width:600px) {
  .sbPrizes #prizes_nav_c2 .w_bg.active.w_bg.w_bgPrizes:before {
    width: 4.561875em;
    height: 5.941875em;
    position: absolute;
    bottom: -4.8em;
    left: -1.5em;
    animation: bounce 1s ease forwards;
    animation-delay: 1s;
  }
}

.sbPrizes #prizes_nav_c2 .bds_wrap .bdss:nth-of-type(1):before {
  content: "キャンペーン限定";
}

.sbPrizes #prizes_nav_c2 .bds_wrap .bdss:nth-of-type(1):after {
  content: "キャンペーン限定";
}

.sbPrizes #prizes_nav_c2 .bds_wrap .bdss:nth-of-type(2):before {
  content: "オリジナル画像";
}

.sbPrizes #prizes_nav_c2 .bds_wrap .bdss:nth-of-type(2):after {
  content: "オリジナル画像";
}

.sbPrizes #prizes_nav_c2 .w_bg.w_bgPrizes:before {
  display: none;
}

.sbPrizes #prizes_nav_c2 .w_bg>div figure img {
  width: 100%;
  margin-right: 0;
}

.sbPrizes #prizes_nav_c2 .camp_desc {
  margin-top: 2em;
}

.sbPrizes #prizes_nav_c2 h4 {
  margin-top: 0.3em;
  font-size: 175%;
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 1em;
  color: #ED6C00;
}

.sbPrizes #prizes_nav_c2 .smalls {
  margin-bottom: 7em;
  font-weight: 500;
}

.sbPrizes #prizes_nav_c2 .smalls .small {
  -moz-text-align-last: left;
  text-align-last: left;
  font-size: 87.5%;
  margin-left: 0;
}

.sbPrizes #prizes_nav_c2 .camp_desc_bottom {
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 125%;
  color: #6A3906;
  margin-bottom: 1em;
}

.sbPrizes #prizes_nav_c2 .camp_desc_bottom:before {
  content: "";
  display: block;
  width: 7.930625em;
  height: 3.20125em;
  background-image: url(../img/delta.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(100% + 1em);
  left: 0;
  right: 0;
  margin: auto;
}

.sbPrizes #prizes_nav_c2 .camp_desc_bottom b {
  font-size: 150%;
}

.sbPrizes #prizes_nav_c2 .x_project h4 {
  text-align: center;
  position: relative;
  font-size: 100%;
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.sbPrizes #prizes_nav_c2 .x_project h4 img {
  width: 3.4075em;
  height: 3.4075em;
}

.sbPrizes #prizes_nav_c2 .x_project h4 span {
  font-size: 200%;
  color: #392800;
}

.sbPrizes #prizes_nav_c2 .x_project h4:before {
  content: "";
}

.sbPrizes #prizes_nav_c2 .x_project .x_project_desc {
  font-size: 125%;
  font-weight: 600;
  margin-bottom: 1em;
}

.sbPrizes #prizes_nav_c2 .x_project .smalls {
  padding-left: 5%;
  padding-top: 1em;
  text-align: left;
  margin-bottom: 0;
  color: #454545;
}

.sbPrizes #prizes_nav_c2 .x_project .smalls .small {
  font-size: 87.5%;
}

.sbPrizes #prizes_nav_c2 .x_project .ml .bds {
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #ED6C00;
  font-size: 187.5%;
  color: #ED6C00;
}

.sbPrizes #prizes_nav_c2 .x_project .ml .bds:first-child:before {
  content: "みんなでリポスト！";
  text-shadow: 0 0 0.3em #ED6C00, 0 0 0.3em #ED6C00;
}

.sbPrizes #prizes_nav_c2 .x_project .ml .bds:last-child:before {
  content: "みんなでHAPPY！";
  text-shadow: 0 0 0.3em #ED6C00, 0 0 0.3em #ED6C00;
}


@media screen and (max-width: 600px) {
  .sbPrizes .w_bg.w_bgPrizesb>div {
    flex-direction: column;
    margin: 1em;
  }

  .sbPrizes .w_bg .bds_wrap {
    font-size: 193.75%;
  }

  .sbPrizes .w_bg .pomgluss_text {
    width: 100%;
  }

  .sbPrizes .w_bg .pomgluss_text2 {
    width: 95%;
  }

  .sbPrizes .prizes_nav>button.disable {
    font-size: 125%;
  }

  .sbPrizes .prizes_nav {
    gap: 1em;
  }

  .sbPrizes .prizes_nav>button {
    font-size: 125%;
  }

  .sbPrizes .prizes_nav>button:before {
    width: calc(39.35 / 375 * 100vw);
    height: calc(32.15 / 375 * 100vw);
    top: 88%;
    right: -0.5em;
  }

  .sbPrizes .prizes_nav {
    margin-bottom: 1em;
  }

  /* スマホ用の設定（@media screen and (max-width: 600px) などの内側） */
  .sbPrizes .prizes_f1 {
    display: block;
    width: 7em;
    height: 7em;
    right: -2em;
    top: -1em;
  }

  .small-h3 {
    font-size: 16px !important;
  }

  .sbPrizes .w_bg>div figure img {
    width: 100%;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .sbPrizes .w_bg>div figure img[src*="prizes_p2"] {
    transform: translateX(20px);
  }

  .sbPrizes .w_bg.w_bgPrizes:before {
    width: calc(87.84 / 375 * 100vw);
    height: calc(86.67 / 375 * 100vw);
    left: -1em;
    bottom: -2em;
  }

  .sbPrizes #prizes_nav_c2 .w_bg.w_bgPrizes:before {
    width: calc(87.84 / 375 * 100vw);
    height: calc(86.67 / 375 * 100vw);
    left: -1em;
    bottom: -2em;
  }

  .sbPrizes .w_bg.w_bgPrizesb>div>div .bds_wrap {
    font-size: 193.75%;
    text-align: center;
  }

  .sbPrizes .w_bg.w_bgPrizesb>div>figure {
    width: 70%;
    margin: 0 auto;
    margin-top: 0;
    flex: 1;
  }

  .sbPrizes .w_bg.w_bgPrizesb .prizes_f2 {
    width: 5em;
    height: 5em;
    top: 5em;
    left: 0.5em;
  }

  .sbPrizes .w_bg.w_bgPrizesb>div {
    gap: 0;
  }

  .sbPrizes .w_bg.w_bgPrizesb>div>div {
    padding-top: 0;
  }

  .sbPrizes .w_bg.w_bgPrizesb>div>div .prizes_p_desc {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 0;
  }

  .sbPrizes .w_bg.w_bgPrizesb:before {
    width: calc(87.84 / 375 * 100vw);
    height: calc(86.67 / 375 * 100vw);
    right: -2em;
    bottom: -2em;
  }

  .sbPrizes .w_bg.w_bgPrizesb {
    margin-bottom: 0;
    padding-top: 1rem !important;

  }

  .sbPrizes #prizes_nav_c2 h4 {
    font-size: 131.25%;
  }

  .sbPrizes #prizes_nav_c2 .smalls {
    font-size: 75%;
    padding-bottom: 20px;
  }

  .sbPrizes #prizes_nav_c2 .smalls .small {
    margin-left: 1em;
  }

  .sbPrizes #prizes_nav_c2 .camp_desc {
    margin-top: 0;
  }

  .sbPrizes #prizes_nav_c2 .camp_desc_bottom:before {
    width: calc(83.55 / 375 * 100vw);
    height: calc(39.69 / 375 * 100vw);
  }

  .sbPrizes #prizes_nav_c2 .camp_desc_bottom {
    font-size: 112.5%;
  }

  .sbPrizes #prizes_nav_c2 .x_project h4 span {
    font-size: 137.5%;
  }

  .sbPrizes #prizes_nav_c2 .x_project .ml .bds {
    margin-bottom: 0em;
  }

  .sbPrizes #prizes_nav_c2 .x_project .x_project_desc {
    font-size: 93.75%;
    margin-top: 1em;
  }

  .sbPrizes #prizes_nav_c2 .x_project h4 img {
    width: 2em;
    height: 2em;
  }

  .sbPrizes #prizes_nav_c2 .x_project .smalls {
    padding-left: 0;
  }

  .sbPrizes .w_bg>div figure figcaption {
    font-size: 140%;
  }

  .sbPrizes .w_bg>div .prizes_p_desc {
    font-size: 90%;
    text-align: left;
  }

  .sbPrizes .w_bg .prizes_p_small {
    text-align: left;
    padding-top: 10px;
  }
}

.page_contents .sbContent {
  background-image: url(../img/bg2.png);
  background-size: 80em;
  padding-top: 8em;
}

.page_contents .sbContent.sb .sbh {
  margin-bottom: 4em;
}

.page_contents .sbContent.sb .sbh h2 {
  background-image: url(../img/sbhbg2.png);
  padding-top: 0.8em;
}

.page_contents .sbContent.sb .sbh h2:after {
  left: -2em;
  top: -1.2em;
  width: 4em;
  height: 5em;
  background-image: url(../img/pompom5.png);
}

.page_contents .sbContent .sbContent_top {
  text-align: center;
  font-size: 125%;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 4em;
}

.page_contents .sbContent .content_movie {
  position: relative;
}

.page_contents .sbContent .content_movie:before {
  content: "";
  display: block;
  width: 14.375em;
  height: 31.25em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/movie_left.png);
  position: absolute;
  top: 28%;
  left: -1em;
  transition: all ease 1s;
  opacity: 0;
  transform: translate3d(10em, 0, 0) scale(0.6);
}

.page_contents .sbContent .content_movie:after {
  content: "";
  display: block;
  width: 15em;
  height: 31.25em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/movie_right.png);
  position: absolute;
  top: 3%;
  right: -1em;
  transition: all ease 1s;
  opacity: 0;
  transform: translate3d(-10em, 0, 0) scale(0.6);
  transition-delay: 0.3s;
}

.page_contents .sbContent .content_movie .content_movie_in {
  width: 20.625em;
  margin: 0 auto;
  position: relative;
  border: 1em solid #ED6C00;
  border-radius: 0.5em;
  margin-bottom: 6em;
}

.page_contents .sbContent .content_movie .content_movie_in button {
  width: 6.25em;
  height: 6.25em;
  background-color: #4f4f4f;
  border-radius: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  margin: auto;
  top: calc(50% - 3.125em);
  left: 0;
  right: 0;
  cursor: pointer;
  transition: all ease 0.3s;
}

.page_contents .sbContent .content_movie .content_movie_in button:hover {
  transform: scale(1.3);
}

.page_contents .sbContent .content_movie .content_movie_in button:after {
  content: "▶";
  color: #fff;
  font-size: 300%;
  line-height: 0;
}

.page_contents .sbContent .content_movie .content_movie_in:before {
  content: "";
  display: block;
  width: 5.581875em;
  height: 5.731875em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/shine.png);
  transform: rotate(180deg);
  position: absolute;
  top: -4em;
  right: -5em;
}

.page_contents .sbContent .content_movie .content_movie_in:after {
  content: "";
  display: block;
  width: 5.581875em;
  height: 5.731875em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/shine.png);
  bottom: -5em;
  left: -5em;
  position: absolute;
}

.page_contents .sbContent .content_movie.active.content_movie:before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page_contents .sbContent .content_movie.active.content_movie:after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.annotation_box {
  display: block;
  text-align: left;
  margin: 1.5em auto 0;
  width: 430px;
  max-width: 90%;
}

.annotation_box p.small {
  text-align: left !important;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 600px) {
  .annotation_box {
    width: 100%;
    font-size: 1em;
  }
}

@media screen and (max-width: 600px) {
  .page_contents .sbContent.sb .sbh {
    margin-bottom: 2em;
  }

  .page_contents .sbContent.sb .sbh h2:after {
    left: -1.3em;
    top: -0.5em;
  }

  .page_contents .sbContent .content_movie .content_movie_in {
    width: 85%;
    border-width: 0.5em;
    margin-bottom: 3em;
  }

  .page_contents .sbContent .content_movie:before {
    display: none;
  }

  .page_contents .sbContent .content_movie:after {
    display: none;
  }

  .page_contents .sbContent .content_movie .content_movie_in:before {
    width: 4em;
    height: 4em;
    top: -3em;
    right: -3em;
  }

  .page_contents .sbContent .content_movie .content_movie_in:after {
    width: 4em;
    height: 4em;
    bottom: -3em;
    left: -3em;
  }
}

.page_contents .sbApp {
  background-color: #FFF79F;
  padding-top: 9em;
}

.page_contents .sbApp.sb .sbh {
  margin-bottom: 4em;
}

.page_contents .sbApp.sb .sbh h2 {
  background-image: url(../img/sbhbg1.png);
  padding-top: 0.8em;
}

.page_contents .sbApp.sb .sbh h2:after {
  left: 0em;
  top: -0.7em;
  width: 3.5em;
  height: 5em;
  background-image: url(../img/pompom6.png);
}

.page_contents .sbApp .sbApp_top {
  text-align: center;
  font-size: 125%;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 1em;
}

.page_contents .sbApp .sbApp_small {
  text-align: center;
  margin-left: 1em;
  margin-bottom: 4em;
  font-weight: 600;
}

.page_contents .sbApp .steps {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.page_contents .sbApp .steps>div {
  background-color: #FFF7B7;
  flex: 0 1 calc((100% - 2em) / 2);
  box-sizing: border-box;
  border: 4px solid #6A3906;
  border-radius: 1em;
  overflow: hidden;
}

.page_contents .sbApp .steps>div:nth-child(1) {
  flex: 0 1 100%;
}

.page_contents .sbApp .steps>div h3 {
  color: #fff;
  font-size: 187.5%;
  background-color: #6A3906;
  position: relative;
  text-align: center;
  transform: rotate(0);
  padding: 0.5em 0;
  padding-bottom: 0;
  margin-bottom: 1em;
}

.page_contents .sbApp .steps>div h3:after {
  content: "";
  width: 100%;
  height: 1em;
  background-image: url(../img/circles.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  left: 0;
  background-position: 56% 107%;
  background-size: 32em;
}

.page_contents .sbApp .steps>div>div {
  padding: 2em 2.5em;
}

.page_contents .sbApp .steps>div>div .buttons {
  display: flex;
  gap: 2em;
}

.page_contents .sbApp .steps>div>div h4 {
  font-weight: 800;
  font-size: 175%;
  text-align: center;
  margin-bottom: 0.3em;
}

.page_contents .sbApp .steps>div>div figure {
  border-radius: 100%;
  width: 13.375em;
  height: 13.375em;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.page_contents .sbApp .steps>div .steps_desc {
  font-weight: 600;
  text-align: center;
}

.page_contents .sbApp .steps>div .small {
  text-align: center;
}

.page_contents .sbApp .steps>div .red_button {
  font-size: 143.75%;
  line-height: 1.3;
  box-shadow: none;
}

.page_contents .sbApp .steps>div .red_button small {
  font-size: 69.5652173913%;
}

.page_contents .sbApp .steps>div .red_button:after {
  width: 1em;
  height: 1em;
}

.page_contents .sbApp .steps>div:nth-child(3) .small {
  text-align: left;
}

.page_contents .sbApp .step_bottom {
  position: relative;
  background-color: #FFF7B7;
  margin-top: 7em;
  text-align: center;
  border: 4px solid #6A3906;
  border-radius: 1em;
  padding: 1.5em;
  margin-bottom: 4em;
}

.page_contents .sbApp .step_bottom:before {
  content: "";
  display: block;
  width: 7.1875em;
  height: 3.4375em;
  background-image: url(../img/delta.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -5em;
  left: 0;
  right: 0;
  margin: auto;
}

.page_contents .sbApp .step_bottom:after {
  content: "";
  display: block;
  width: 6.25em;
  height: 6.25em;
  background-image: url(../img/app_plane.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -3em;
  right: 4em;
}

.page_contents .sbApp .step_bottom h4 {
  font-weight: 800;
  font-size: 175%;
  text-align: center;
  margin-bottom: 0.3em;
}

.page_contents .sbApp .step_bottom p {
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}

.page_contents .sbApp .w_bg {
  border-radius: 0.8em;
  padding: 2em 5em;
  color: #392800;
  padding-bottom: 1em;
  margin-bottom: 2em;
}

/* .page_contents .sbApp .w_bg.w_bg2 {
  padding-bottom: 3em;
} */

.page_contents .sbApp .w_bg h3 {
  font-size: 187.5%;
  text-align: center;
  margin-bottom: 0.8em;
}

.page_contents .sbApp .w_bg h4 {
  font-size: 125%;
  text-align: left;
  padding-left: 1em;
  border-left: 4px solid #ED6C00;
  margin-bottom: 0.8em;
}

.page_contents .sbApp .w_bg .w_bg_desc {
  text-align: left;
  margin-bottom: 2em;
}

.page_contents .sbApp .w_bg .w_bg_in>ul {
  text-align: left;
}

.page_contents .sbApp .w_bg .w_bg_in>ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.page_contents .sbApp .w_bg .w_bg_in>p {
  text-align: left;
  margin-bottom: 2em;
  text-indent: -1em;
  margin-left: 1em;
}

.page_contents .sbApp .w_bg .w_bg_in .w_bg_desc {
  text-indent: 0em;
  margin-left: 0em;
}

.page_contents .sbApp .w_bg .w_bg_in .case {
  display: flex;
}

.page_contents .sbApp .w_bg .w_bg_in .case>* {
  flex: 1;
  display: flex;
  gap: 1em;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*:first-child {
  flex: 0 1 45%;
}

.page_contents .sbApp .w_bg .w_bg_in .case>* figure {
  padding: 0.5em 0;
  flex: 0 1 9.09375em;
  background-color: #F5FAFF;
  border: 4px solid #116ECC;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_contents .sbApp .w_bg .w_bg_in .case>* figure img {
  width: 60%;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*>div {
  text-align: left;
  flex: 1;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*>div h5 {
  font-size: 100%;
  margin: 0;
  margin-bottom: 0.5em;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*>div p {
  font-size: 87.5%;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*:nth-child(2) figure {
  flex: 0 1 14.375em;
}

.page_contents .sbApp .w_bg .w_bg_in .case>*:nth-child(2) figure img {
  width: 80%;
}

.page_contents .sbApp .w_bg .marubatsu {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
  align-items: flex-start;
}

.page_contents .sbApp .w_bg .marubatsu>div {
  flex: 1;
  border: 4px solid #116ECC;
  border-radius: 0.8em;
  padding: 1.5em;
  padding-bottom: 2em;
  background-image: url(../img/maru.png);
  background-repeat: no-repeat;
  background-size: 12.5em;
  background-position: right top;
}

.page_contents .sbApp .w_bg .marubatsu>div h5 {
  text-align: center;
  font-size: 143.75%;
  margin: 0;
}

.page_contents .sbApp .w_bg .marubatsu>div .marubatsu_desc {
  -moz-text-align-last: left;
  text-align-last: left;
}

.page_contents .sbApp .w_bg .marubatsu>div .small {
  font-size: 87.5%;
  text-align: center;
  border-bottom: 4px dotted #116ECC;
  padding-bottom: 0.7em;
  margin-bottom: 1em;
}

.page_contents .sbApp .w_bg .marubatsu>div ul {
  text-align: left;
  margin-bottom: 0.5em;
}

.page_contents .sbApp .w_bg .marubatsu>div ul li {
  margin-bottom: 0.2em;
  font-weight: 600;
  font-size: 112.5%;
}

.page_contents .sbApp .w_bg .marubatsu>div ul li:before {
  content: "●";
}

.page_contents .sbApp .w_bg .marubatsu>div.batsu {
  border-color: #E60012;
  background-image: url(../img/batsu.png);
  background-size: 10.625em;
}

.page_contents .sbApp .w_bg .marubatsu>div.batsu .small {
  border-color: #E60012;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap {
  margin-bottom: 1em;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* {
  flex: 0 1 calc((100% - 1em) / 3);
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* figure {
  background-color: #F5FAFF;
  border: 2px solid #116ECC;
  border-radius: 0.5em;
  height: 5.625em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* figure img {
  width: 2.875em;
  margin-left: auto;
  margin-right: auto;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* p {
  font-size: 87.5%;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .maru ul {
  color: #E60012;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .maru ul li:before {
  display: none;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .maru>p {
  text-align: left;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu ul li {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 100%;
  font-weight: 500;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu ul li:before {
  display: none;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>* figure {
  background-color: #FFF3F2;
  border-color: #E60012;
  position: relative;
  overflow: hidden;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>* figure:before {
  content: "";
  width: 200%;
  height: 2px;
  background-color: #E60012;
  transform: rotate(-36deg);
  position: absolute;
  top: 52%;
  left: -53%;
  transform-origin: center;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(3) figure>img {
  width: 3.9375em;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(5) figure>img {
  width: 5em;
}

.page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(6) figure>img {
  width: 6.25em;
}

/* アコーディオン全体の調整 */
/* .w_bg {
  opacity: 1 !important;
  transform: none !important;
  margin-bottom: 20px;
} */

/* ヘッダー部分 */
.accordion-header {
  cursor: pointer;
  position: relative;
  padding-right: 60px !important;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* プラス・マイナスマーク */
.accordion-header .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  /* background: #6A3906;
  茶色の丸背景 */
  border-radius: 50%;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: "";
  position: absolute;
  background-color: #454545;
  /* 白い線 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 横線 */
.accordion-header .icon::before {
  width: 25px;
  height: 2px;
}

/* 縦線（プラス用） */
.accordion-header .icon::after {
  width: 2px;
  height: 25px;
  transition: 0.3s;
}

/* 開いた時に縦線を消す */
.w_bg.is-open .accordion-header .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* 最初は中身を隠す */
.w_bg .w_bg_in {
  display: none;
  /* ここはそのまま */
  overflow: hidden;
}



/* アイコンの挙動はそのまま */
.w_bg.is-open .accordion-header .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}


@media screen and (max-width: 600px) {

  /* アコーディオン全体の上下余白を最小限に */
  .w_bg {
    margin-bottom: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 0 !important;
  }

  /* ヘッダー：上下の余白を詰め、文字サイズを調整 */
  .accordion-header {
    padding: 12px 50px 12px 15px !important;
    /* 上下12px、左15pxに短縮 */
    font-size: 18px !important;
    /* デザインに合わせて微調整してください */
    line-height: 1.4 !important;
  }

  /* アイコン：スマホ用に少し小さくし、右端の余白を調整 */
  .accordion-header .icon {
    right: 15px;
    width: 20px;
    height: 20px;
  }

  /* 横線（スマホサイズ） */
  .accordion-header .icon::before {
    width: 18px;
    /* 25pxだとスマホでは大きいため調整 */
    height: 2px;
  }

  /* 縦線（スマホサイズ） */
  .accordion-header .icon::after {
    width: 2px;
    height: 18px;
  }

  /* 中身：開いた時の余白を調整 */
  .w_bg_in {
    padding: 10px 15px 20px !important;
    /* 上を10pxにして見出しとの間隔を詰める */
  }

  /* brタグによる強制改行をスマホでは無効化（余白削減） */
  .accordion-header br {
    display: none;
  }

  .page_contents .sbApp .sbApp_small {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .page_contents .sbApp .w_bg.w_bg2 {
    padding: 2em 1em;
  }

  .page_contents .sbApp .w_bg .marubatsu {
    flex-direction: column;
  }

  .page_contents .sbApp .steps {
    flex-direction: column;
  }

  .page_contents .sbApp.sb .sbh h2:after {
    left: -1em;
    top: -0.3em;
  }

  .page_contents .sbApp.sb .sbh {
    margin-bottom: 2em;
  }

  .page_contents .sbApp .sbApp_top {
    font-size: 100%;
  }

  .page_contents .sbApp .steps>div h3 {
    font-size: 150%;
  }

  .page_contents .sbApp .steps>div>div {
    padding: 2em 1em;
  }

  .page_contents .sbApp .steps>div>div h4 {
    font-size: 150%;
  }

  .page_contents .sbApp .steps>div>div .buttons {
    flex-direction: column;
    gap: 1em;
    margin-bottom: 1em;
    margin-top: 1em;
  }

  .page_contents .sbApp .steps>div:nth-child(1) .red_button {
    margin-bottom: 0;
    margin-top: 0;
  }

  .page_contents .sbApp .steps>div .red_button {
    font-size: 100%;
  }

  .page_contents .sbApp .steps>div .steps_desc {
    text-align: left;
  }

  .page_contents .sbApp .step_bottom h4 {
    font-size: 140%;
  }

  .page_contents .sbApp .step_bottom p {
    text-align: left;
  }

  .page_contents .sbApp .w_bg h3 {
    font-size: 125%;
  }

  .page_contents .sbApp .w_bg h4 {
    font-size: 93.75%;
  }

  .page_contents .sbApp .w_bg .w_bg_in .w_bg_desc {
    font-size: 90%;
  }

  .page_contents .sbApp .w_bg .marubatsu>div .marubatsu_desc {
    font-size: 93.75%;
  }

  .page_contents .sbApp .w_bg .marubatsu>div h5 {
    font-size: 112.5%;
  }

  .page_contents .sbApp .w_bg .marubatsu>div.batsu {
    padding: 2em 1em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu ul li {
    font-size: 93.75%;
  }
}

.page_contents .sbProduct {
  background-image: url(../img/bg2.png);
  background-size: 80em;
  padding-top: 8em;
}

.page_contents .sbProduct.sb .sbh {
  margin-bottom: 4em;
}

.page_contents .sbProduct.sb .sbh h2 {
  background-image: url(../img/sbhbg1.png);
  padding-top: 0.8em;
}

.page_contents .sbProduct.sb .sbh h2:after {
  right: 2em;
  background-image: url(../img/pompom7.png);
}

.page_contents .sbProduct .sbc .products {
  display: flex;
  border-bottom: 4px dotted #ED6C00;
  margin-bottom: 2.5em;
  padding-bottom: 4em;
  align-items: flex-start;
  padding-top: 1em;
}

.page_contents .sbProduct .sbc .products2 {
  display: flex;
  border-bottom: 4px dotted #ED6C00;
  margin-bottom: 2.5em;
  padding-bottom: 7em;
  align-items: flex-start;
  padding-top: 1em;
}



.page_contents .sbProduct .sbc .products>* {
  text-align: center;
  flex: 1;
}

.page_contents .sbProduct .sbc .products>* figure {
  position: relative;
  height: 14.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_contents .sbProduct .sbc .products>* figure img {
  width: 12.8125em;
  margin-left: auto;
  margin-right: auto;
}

.page_contents .sbProduct .sbc .products>* figure figcaption {
  font-weight: 700;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 112.5%;
}

.page_contents .sbProduct .sbc .products>*:nth-child(1) {
  flex: 0 1 41%;
}

.page_contents .sbProduct .sbc .products>*:nth-child(2) figure img {
  width: 31.25em;
}

.page_contents .sbProduct .sbc .products.products2 figure {
  height: 20.75em;
  line-height: 1.3;
}

.page_contents .sbProduct .sbc .products.products2 figure .small {
  color: #E60012;
  font-size: 77.7777777778%;
  line-height: 1.5;
  display: inline-block;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(1) {
  flex: 1;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(1) figure img {
  width: 15.125em;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(2) {
  flex: 1;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(2) figure img {
  width: 12.625em;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(3) {
  flex: 1;
}

.page_contents .sbProduct .sbc .products.products2>*:nth-child(3) figure img {
  width: 12.625em;
}

.page_contents .sbProduct .sbc .products:last-child {
  border: 0;
  margin-bottom: 0;
}

.page_contents .sbProduct .w_bgLast {
  position: relative;
  margin-bottom: 1em;
  padding: 2em 3em;
}

.page_contents .sbProduct .w_bgLast .w_bgLast_products {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}

.page_contents .sbProduct .w_bgLast .w_bgLast_products p {
  color: #E60012;
  font-weight: 800;
  margin-bottom: 0.5em;
  font-size: 181.5%;
}

.page_contents .sbProduct .w_bgLast:before {
  content: "";
  display: block;
  background-image: url(../img/last-fuki.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 6.625em;
  height: 4.75em;
}

.page_contents .sbProduct .w_bgLast .c_logo {
  width: 21.614375em;
  margin: 1em auto;
}

.page_contents .sbProduct .w_bgLast .batch1 {
  position: absolute;
  width: 12.15625em;
  height: 12.15625em;
  left: -0.5em;
  bottom: 3em;
}

.page_contents .sbProduct .w_bgLast .batch2 {
  position: absolute;
  width: 12.15625em;
  height: 12.15625em;
  right: 1em;
  bottom: 5em;
}

.page_contents .sbProduct .w_bgLast h3 {
  background-image: url(../img/w_bg_h3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #fff;
  padding: 0.2em;
  font-size: 156.25%;
  margin: 0;
}

.page_contents .sbProduct .w_bgLast h4 {
  margin: 0 auto;
  color: #ED6C00;
  font-size: 262.5%;
}

.page_contents .sbProduct .wrap2 h4 {
  margin: 0 auto;
  font-size: 220%;
}

.page_contents .sbProduct .w_bgLast .small {
  text-align: center;
  font-size: 87.5%;
  color: #454545;
}

.page_contents .sbProduct .w_bgLast_bottom {
  text-align: center;
  font-size: 87.5%;
  color: #454545;
}

.page_contents .sbProduct .orange_button {
  margin-top: 4em;
}


@media screen and (max-width: 600px) {
  .page_contents .sbProduct .sbc .products3 {
    display: flex;
    margin-bottom: 2.5em;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .page_contents .sbProduct .sbc .products2 {
    display: flex;
    border-bottom: 4px dotted #ED6C00;
    margin-bottom: 2.5em;
    padding-bottom: 1em;
    align-items: flex-start;

  }

  .page_contents .sbProduct .sbc .products {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
  }

  .page_contents .sbProduct.sb .sbh h2:after {
    right: -1em;
    bottom: 0;
  }

  .page_contents .sbProduct.sb .sbh {
    margin-bottom: 2em;
  }

  .page_contents .sbProduct .sbc .products>* figure {
    height: auto;
    display: block;
  }

  .page_contents .sbProduct .sbc .products>* figure figcaption {
    position: unset;
    font-size: 93.75%;
    margin-top: 0.5em;
  }

  .page_contents .sbProduct .sbc .products>* figure img {
    width: 50%;
  }

  .page_contents .sbProduct .sbc .products>*:nth-child(2) figure img {
    width: 100%;
  }

  .page_contents .w_bg {
    padding: 2em 1em;
    margin-bottom: 2em;
  }

  .page_contents .sbApp .w_bg .marubatsu {
    align-items: normal;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap {
    gap: 1em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* {
    flex: 0 1 calc((100% - 1em) / 2);
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>* figure {
    height: 8.625em;
    margin-bottom: 0.5em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* figure img {
    width: 4em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(5) figure>img {
    width: 7em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(6) figure>img {
    width: 8.25em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .batsu .marubatsu_wrap>*:nth-child(3) figure>img {
    width: 5.5em;
  }

  .page_contents .sbApp .w_bg .marubatsu.marubatsu2 .marubatsu_wrap>* figure {
    height: 8.625em;
    margin-bottom: 0.5em;
  }

  .page_contents .sbApp .w_bg .w_bg_in .case {
    flex-direction: column;
    gap: 2em;
  }

  .page_contents .sbApp .w_bg .w_bg_in .case>*:first-child {
    flex-direction: column;
  }

  .page_contents .sbApp .w_bg .w_bg_in .case>* {
    flex-direction: column;
  }

  .page_contents .sbApp .w_bg .w_bg_in .case>* figure img {
    width: 39%;
  }

  .page_contents .sbApp .w_bg {
    padding: 2em 1em;
  }

  .page_contents .sbApp .step_bottom:after {
    top: auto;
    bottom: -1em;
    right: -2em;
  }

  .page_contents .sbProduct .sbc .products.products2>*:nth-child(1) figure img {
    width: 70%;
  }

  .page_contents .sbProduct .sbc .products.products2 figure {
    height: auto;
  }

  .page_contents .sbProduct .w_bgLast {
    padding: 2em 1em;
  }

  .page_contents .sbProduct .w_bgLast .c_logo {
    width: 80%;
  }

  .page_contents .sbProduct .w_bgLast h4 {
    font-size: 143.75%;
  }

  .page_contents .sbProduct .wrap2 h4 {
    font-size: 100%;
  }

  .page_contents .sbProduct .w_bgLast .w_bgLast_products {
    flex-direction: column;
    padding-top: 1em;
  }

  .page_contents .sbProduct .w_bgLast .w_bgLast_products p {
    font-size: 110%;
  }

  .page_contents .sbProduct .w_bgLast .batch2 {
    width: 7.5em;
    height: 7.5em;
    bottom: 6em;
    right: -0.5em;
  }

  .page_contents .sbProduct .w_bgLast .batch1 {
    width: 7.5em;
    height: 7.5em;
    bottom: 23em;
  }

  .page_contents .sbProduct .w_bgLast .small {
    font-size: 75%;
    text-align: left;
    font-weight: 500;
    padding-bottom: 20px;

  }

  .page_contents .sbProduct .w_bgLast_bottom {
    font-size: 75%;
    text-align: left;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page_contents .red_button.orange_button {
    margin-top: 1em;
  }

  .page_contents .sbContent .sbContent_top {
    font-size: 120%;
  }
}

.page_contents .sbTerms {
  padding-bottom: 2em;
}

.page_contents .sbTerms.sb .sbh {
  margin-bottom: 5em;
}

.page_contents .sbTerms.sb .sbh h2 {
  background-image: url(../img/sbhbg2.png);
  padding-top: 0.8em;
}

.page_contents .sbTerms.sb .sbh h2:after {
  left: -1.5em;
  top: -0.1em;
  width: 3.5em;
  height: 5em;
  background-image: url(../img/pompom1.png);
}

.page_contents .sbTerms .sbc .sbTerms_top {
  line-height: 2;
  margin-bottom: 2em;
  font-weight: 500;
}

.page_contents .sbTerms .updates_top_wrap {
  padding: 0.5em;
  background-color: #FFEC5B;
}

.page_contents .sbTerms .updates {
  height: 16.6875em;
  overflow: auto;
  padding: 3.5em;
  margin-bottom: 2em;
}

.page_contents .sbTerms .updates p {
  font-weight: 500;
  color: #000;
  font-size: 87.5%;
  line-height: 1.7;
}

/* .page_contents .sbTerms .updates p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #000;
  font-size: 87.5%;
  line-height: 1.7;
} */

.page_contents .sbTerms .updates a {
  color: #004EFF;
  text-decoration: underline;
}

.page_contents .sbTerms .updates .come {
  font-size: 87.5%;
}

.page_contents .sbTerms .updates .dot {
  font-size: 87.5%;
}

.page_contents .sbTerms .updates hr {
  border: 0;
  border-top: 1px solid #A8A8A8;
  margin: 1em 0;
}

@media screen and (max-width: 600px) {
  .page_contents .sbTerms.sb .sbh h2:after {
    left: -0.5em;
    top: 0.5em;
  }

  .page_contents .sbTerms.sb .sbh {
    margin-bottom: 2em;
  }

  .page_contents .sbTerms .sbc .sbTerms_top {
    font-size: 87.5%;
  }

  .page_contents .sbTerms .updates {
    padding: 1em;
    margin-bottom: 0;
  }

  .page_contents .sbTerms .updates_top_wrap {
    margin-bottom: 2em;
  }
}

.sbBottom .wrap_inner {
  max-width: 38.75em;
  margin: 0 auto;
  background: #FFF7B7;
  border: 4px solid #581F23;
  padding: 2em;
  border-radius: 1em;
  position: relative;
}

.sbBottom .wrap_inner:before {
  content: "";
  display: block;
  width: 7.75em;
  height: 4.0625em;
  background-image: url(../img/pompom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: calc(100% - 0.3em);
}

.sbBottom .wrap_inner h2 {
  background-color: #6A3906;
  color: #fff;
  font-size: 156.25%;
  border-radius: 100em;
  padding: 0.5em 0;
  margin-bottom: 1em;
  line-height: 1.3;
}

.sbBottom .wrap_inner .desc {
  font-weight: 600;
}

.sbBottom .wrap_inner .emall {
  font-size: 193.75%;
  font-weight: 600;
  margin: 0.5em 0;
}

.sbBottom .wrap_inner .emall a {
  color: #6A3906;
}

.sbBottom .wrap_inner p:last-child {
  font-size: 87.5%;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .sbBottom .wrap_inner h2 {
    font-size: 100%;
  }

  .sbBottom .wrap_inner {
    padding: 1em;
  }

  .sbBottom .wrap_inner .emall {
    font-size: 106.25%;
  }

  .sbBottom .wrap_inner .desc {
    font-size: 87.5%;
  }

  .sbBottom .wrap_inner p:last-child {
    font-size: 75%;
    text-align: left;
  }
}

/* スクロールバー2 */
.scroll-b::-webkit-scrollbar {
  width: 0.5em;
}

.scroll-b::-webkit-scrollbar-thumb {
  background: #8D8D8D;
  border-radius: 100em;
  border-right: 4px solid transparent;
  /* 透明なボーダーをつける */
  border-left: 4px solid transparent;
  /* 透明なボーダーをつける */
}

.scroll-b::-webkit-scrollbar-track {
  /* 上下に余白を付ける */
  margin-top: 4px;
  margin-bottom: 4px;
}

/* #pop {
  background-color: #f8f8f8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 10;
  box-sizing: border-box;
  overflow: scroll;
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
} */
#pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  /* 下が切れないようにスクロール設定を強化 */
  overflow-y: scroll;
  padding: 40px 10px;
  /* 上下にゆとりを持たせる */
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

#pop.active {
  display: flex !important;
  justify-content: center;
  /* centerだと上下が切れるので flex-start に変更 */
  align-items: flex-start;
}

#pop .wrap {
  position: relative;
  z-index: 1000000;
  margin: 0 auto;
  /* align-items: flex-start との組み合わせで正しく配置 */
  opacity: 1 !important;
  transform: none !important;
  /* 下の余白を確保 */
  margin-bottom: 40px;
}

/* 閉じるボタンを押しやすくする */
.close_pop {
  cursor: pointer;
  z-index: 10;
}

#pop.open {
  opacity: 1;
  visibility: visible;
}

#pop .wrap {
  padding-top: 3em;
  position: relative;
}

#pop .wrap>button {
  border: 0;
  background-color: transparent;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../img/close.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.875em;
  top: 1.25em;
  cursor: pointer;
}

#pop .wrap>div {
  background-color: #fff;
  border: 4px solid #6A3906;
  border-radius: 1em;
  overflow: hidden;
  margin: auto;
}

#pop .wrap>div h2 {
  color: #fff;
  text-align: center;
  background-color: #6A3906;
  padding: 0.3em 0;
}

#pop .wrap>div>div {
  padding: 1em 2em;
  padding-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pop .wrap>div>div .smalls {
  color: #E60012;
  margin-bottom: 1em;
}

#pop .wrap>div>div .smalls {
  color: #E60012;
  margin-bottom: 1em;
}

#pop .wrap>div>div .smalls small {
  font-size: 100%;
}

#pop .wrap>div>div .smalls:last-child {
  color: #454545;
  margin-top: 1.5em;
  margin-left: 1em;
  width: 100%;
  margin-bottom: 0;
}

#pop .wrap>div>div .pop_grid {
  flex-wrap: wrap;
  gap: 1em;
  display: flex;
}

#pop .wrap>div>div .pop_grid>* {
  flex: 0 1 calc((100% - 1em) / 2);
  background-color: #FFF7B7;
  border-radius: 1em;
  padding: 2em 1em;
  box-sizing: border-box;
}

#pop .wrap>div>div .pop_grid>* h3 {
  width: 3.780625em;
  height: 3.780625em;
  background-image: url(../img/pop_step.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #fff;
  font-size: 87.5%;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.2em;
  margin: 0 auto;
  margin-bottom: 0.5em;
}

#pop .wrap>div>div .pop_grid>* h3 b {
  font-size: 142.8571428571%;
}

#pop .wrap>div>div .pop_grid>* p.ml {
  font-size: 122%;
  text-align: center;
  line-height: 1.3;
  font-weight: 900;
  color: #6a3906;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1) {
  display: flex;
  gap: 1em;
  align-items: center;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1) figure {
  flex: 0 1 10.0325em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1)>div {
  flex: 1;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1)>div .small {
  font-size: 100%;
  font-weight: 800;
  text-align: center;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1)>div .small a {
  text-decoration: underline;
  transition: all ease 0.3s;
}

#pop .wrap>div>div .pop_grid>*:nth-child(1)>div .small a:hover {
  opacity: 0.7;
}

#pop .wrap>div>div .pop_grid>*:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 1em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(2) figure {
  flex: 0 1 10.0325em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(2)>div {
  flex: 1;
}

#pop .wrap>div>div .pop_grid>*:nth-child(3) figure {
  width: 17.9375em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(4) ul {
  margin-top: 1em;
  padding-left: 4em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(4) ul li {
  margin-bottom: 0.5em;
  font-size: 125%;
  font-weight: 700;
}

#pop .wrap>div>div .pop_grid>*:nth-child(4)>div {
  background: #fff;
  padding: 2em 1em;
  border-radius: 1em;
  margin-top: 1em;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  font-size: 130%;
}

#pop .wrap>div>div .pop_grid>*:nth-child(5) {
  flex: 0 1 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  padding-left: 3em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(5) h3 {
  flex: 0 1 3.780625em;
}

#pop .wrap>div>div .pop_grid>*:nth-child(5) p {
  flex: 1;
  text-align: left;
}

@media screen and (max-width: 600px) {
  #pop .wrap>div>div {
    padding: 2em 1em;
  }

  #pop .wrap>div>div .pop_grid {
    flex-direction: column;
  }

  #pop .wrap>div>div .pop_grid>* {
    flex: 1;
    box-sizing: border-box;
    position: relative;
    padding-top: 3em;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(1) {
    flex-direction: column;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(1) figure {
    flex: 1;
    width: 7.9725em;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(2) {
    flex-direction: column;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(2) figure {
    flex: 1;
    width: 7.9725em;
  }

  #pop .wrap>div>div .pop_grid {
    flex-wrap: unset;
  }

  #pop .wrap>div>div .pop_grid>* h3 {
    position: absolute;
    top: -1.8em;
    left: 0;
    right: 0;
    margin: auto;
  }

  #pop .wrap>div>div .smalls {
    margin-bottom: 3em;
  }

  #pop .wrap>div>div .smalls:last-child {
    margin-right: 0.5em;
    padding-right: 0.2em;
    margin-top: 1em;
    box-sizing: border-box;
  }

  #pop .wrap>div>div .pop_grid {
    gap: 2.5em;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(3) figure {
    width: 100%;
  }

  #pop .wrap>div>div .pop_grid>* p.ml {
    font-size: 112.5%;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(4) ul {
    padding-left: 2em;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(4) ul li {
    font-size: 93.75%;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(4)>div {
    padding: 1em 1em;
    line-height: 1.6;
    font-size: 94%;
    letter-spacing: 0.15em;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(4)>div p {
    font-size: 112.5%;
  }

  #pop .wrap>div>div .pop_grid>*:nth-child(5) {
    padding: 2em 1em;
    padding-top: 3em;
  }
}

@media screen and (max-width: 600px) {
  .page_contents {
    overflow: hidden;
    font-size: calc(16 / 375 * 100vw);
  }

  .page_contents .sb .sbh h2:after {
    width: calc(88.2 / 435 * 100vw);
    height: calc(86.48 / 435 * 100vw);
    right: -0.5em;
    top: 0em;
  }

  .page_contents .sbApp.sb .sbh h2:after {
    left: 0.1em;
    top: -0.1em;
    width: 3em;
    height: 4.286em;
    background-image: url(../img/pompom6.png);
  }

  .page_contents .sb .sbh h2 {
    font-size: 131.25% !important;
    background-image: url(../img/sp/sbhbg.png) !important;
    padding-top: 1.6em !important;
    padding-bottom: 0.6em !important;
    letter-spacing: 0.1em !important;
  }

  .page_contents .sb {
    padding: 2.5em 0 5em 0;
  }

  .page_contents .sb .sbh .en {
    font-size: 93.75%;
  }

  .page_contents .red_button.orange_button {
    font-size: 100%;
  }
}

body.ov,
html.ov {
  overflow: hidden;
}

/*追加*/
.mt1 {
  margin-top: 10px;
}

/*# sourceMappingURL=style.css.map */


.happy {
  width: 86.395%;
}

.chocotto {
  width: 100%;
}

@media screen and (max-width:600px) {
  .happy {
    width: 95.395%;
  }

  .sbPrizes .w_bg.active.w_bg.w_bgPrizes:before {
    display: none;
  }

  .page_contents .sbProduct .sbc .products.products2>*:nth-child(1) {
    position: relative;
    border-bottom: 4px dotted #ED6C00;
    padding-bottom: 3em;
  }
}

@media screen and (max-width: 600px) {

  /* style属性に "translateX(10px)" という文字が含まれている .smalls だけを狙い撃ち */
  .smalls[style*="translateX(10px)"] {
    transform: none !important;
    width: 90% !important;
    margin: 0 auto !important;
  }
}