@charset "UTF-8";

@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 fuwafuwa {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(10%);
  }
}

.fuwafuwa {
  animation: fuwafuwa 1.8s ease-in-out infinite alternate-reverse;
}

html {
  scroll-behavior: smooth;
}

.wrap {
  padding: 0 5vw;
  max-width: 58.125em;
  margin: 0 auto;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 600px) {
  .wrap {
    padding: 0 calc(25 / 375 * 100vw);
  }

  .rwd_show {
    display: inline;
  }

  .rwd_hide {
    display: none !important;
  }
}

.page_contents {
  background-image: url(../img/bg.png);
  background-size: cover;
  overflow: hidden;
  color: #552906;
  background-color: rgba(253, 245, 249, 0.6509803922);
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

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

.page_contents .ml {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  transform: rotate(0.03deg);
}

.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 p,
.page_contents figure {
  margin: 0;
}

.page_contents .bgi {
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.page_contents .content_nav {
  background-color: #E73162;
}

.page_contents .content_nav .wrap {
  max-width: 70em;
  margin: 0 auto;
}

.page_contents .content_nav ul {
  display: flex;
  justify-content: center;
}

.page_contents .content_nav ul li {
  position: relative;
}



/* .page_contents .content_nav ul li:before {
  content: "";
  display: block;
  width: 0.25em;
  height: 70%;
  border-radius: 6.25em;
  position: absolute;
  left: -0.125em;
  top: 15%;
  background: #fff;
}

.page_contents .content_nav ul li:after {
  content: "";
  display: block;
  width: 0.25em;
  height: 70%;
  border-radius: 6.25em;
  position: absolute;
  right: -0.125em;
  top: 15%;
  background: #fff;
} */

.page_contents .content_nav ul li:before {
  content: "";
  display: block;
  width: 0;
  /* 横幅は不要 */
  height: 70%;
  /* 縦の長さ（お好みで調整） */
  position: absolute;
  left: -0.5em;
  /* 文字との距離（お好みで調整） */
  top: 15%;

  /* ここが重要！border-topを消してborder-leftにする */
  border-left: 2px dotted #fff;
}

.page_contents .content_nav ul li:after {
  content: "";
  display: block;
  width: 0;
  /* 横幅は不要 */
  height: 70%;
  /* 縦の長さ（お好みで調整） */
  position: absolute;
  left: -0.5em;
  /* 文字との距離（お好みで調整） */
  top: 15%;

  /* ここが重要！border-topを消してborder-leftにする */
  border-left: 2px dotted #fff;
}

.page_contents .content_nav ul li a {
  display: block;
  flex: 1;
  color: #fff;
  padding: 0.8em 2em;
  padding-bottom: 1.2em;
  text-align: center;
  font-weight: 600;
  position: relative;
  font-size: 112.5%;
  transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.page_contents .content_nav ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.4375em solid #fff;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  position: absolute;
  bottom: 0.875em;
  left: 0;
  right: 0;
  margin: auto;
  transition: all ease 0.3s;
}

.page_contents .content_nav ul li a:hover {
  opacity: 0.7;
}

.page_contents .content_nav ul li a:hover:after {
  bottom: 0.75em;
}

.page_contents .sb {
  padding-bottom: 5em;
  padding-top: 8.75em;
  overflow-x: hidden;
}

.page_contents .sb .sbh {
  padding-bottom: 3.875em;
}

.page_contents .sb .sbh .en {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  font-size: 93.75%;
  font-weight: 500;
}

.page_contents .sb .sbh .en:before {
  content: "";
  display: block;
  width: 6.59375em;
  background-image: url(../img/en_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: calc(100% + 1em);
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .sb .sbh .en:after {
  content: "";
  display: block;
  width: 6.59375em;
  background-image: url(../img/en_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: calc(100% + 1em);
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .sb .sbh:before {
  content: "";
  display: block;
  width: 4.00625em;
  height: 4.1625em;
  background-image: url(../img/leaf_title.png);
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: -4.1625em;
  margin: auto;
  transition: all ease 0.3s;
  opacity: 0;
  transform: translate3d(0, 2em, 0) scale(0.1);
  transition-delay: 0.3s;
}

.page_contents .sb .sbh h2 {
  position: relative;
  margin: auto;
  transition: all ease 0.3s;
  transform: scale(0.6);
  transition-delay: 0.3s;
  font-size: 318.75%;
  line-height: 1.2;
}

.page_contents .sb .sbh.active h2 {
  transition: all ease 0.3s;
  transform: scale(1);
}

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

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

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

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

.page_contents .fc_red {
  color: #d70a1d;
}

@media screen and (max-width: 1350px) {
  .page_contents {
    font-size: 1.2vw;
  }

  .page_contents .sb .sbh:before {
    background-size: contain;
  }
}

@media screen and (max-width: 600px) {
  .page_contents .bgi_sp {
    background-image: url(../img/sp_bg.png);
    background-repeat: repeat;
    background-size: 100%;
    background-position: top;
  }

  .page_contents {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0;
  }

  .page_contents .content_nav ul {
    flex-wrap: wrap;
  }

  .page_contents .content_nav ul li {
    flex: 0 1 calc((100% - 4vw) / 2);
  }

  .page_contents .content_nav ul li a {
    width: auto;
    font-size: 93.75%;
    line-height: 1.3;
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 0;
    padding-right: 0;
  }

  .page_contents .content_nav ul li:before {
    height: 100%;
    top: 0;
    border-radius: 0;
  }

  .page_contents .content_nav ul li:before {
    width: 0.1875em;
  }

  .page_contents .content_nav ul li:nth-child(2n+1):before {
    display: none;
  }

  /* .page_contents .content_nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.1875em;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
  } */

  .page_contents .content_nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    /* 横幅いっぱい */
    height: 0;
    /* 厚みは不要 */
    position: absolute;
    left: 0;
    top: 0;

    /* 単なる点線（横） */
    border-top: 2px dotted #fff;

    /* 元の白い背景を消す */
    background: none;
  }


  .page_contents .content_nav ul li:nth-child(1):after {
    display: none;
  }

  .page_contents .content_nav ul li:nth-child(2):after {
    display: none;
  }

  .page_contents .content_nav {
    background-color: #D9483B;
    padding-bottom: 0;
    letter-spacing: 0;
  }

  .page_contents .sb {
    padding: calc(50 / 375 * 100vw) 0;
    padding-top: calc(84 / 375 * 100vw);
  }

  .page_contents .sb .sbh h2 {
    font-size: 187.5%;
  }

  .page_contents .sb .sbh:before {
    width: 12vw;
    height: 12vw;
    background-size: 100%;
    top: -3.5em;
  }

  .page_contents .sb .sbh h2:before {
    width: calc(36 / 375 * 100vw);
    height: calc(36 / 375 * 100vw);
    right: -2.5rem;
    top: -1.5rem;
  }

  .page_contents .sb .sbh h2:after {
    width: calc(36 / 375 * 100vw);
    height: calc(36 / 375 * 100vw);
    left: -3rem;
  }

  .page_contents .sb .sbh .en {
    background-size: 40%;
    background-position: center;
    height: calc(27 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    padding-top: 0.5rem;
  }

  .page_contents .sb .sbh {
    padding-bottom: calc(20 / 375 * 100vw);
  }

  .page_contents .sb .sbh .en:before {
    width: 8.5625em;
  }

  .page_contents .sb .sbh .en:after {
    width: 8.5625em;
  }
}

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

.sb1:before {
  content: "";
  display: block;
  background-image: url(../img/leaf_1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 32.375em;
  height: 31.8125em;
  left: -12em;
  top: -9em;
}

.sb1:after {
  content: "";
  display: block;
  background-image: url(../img/leaf_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 28.9375em;
  height: 36.25em;
  right: -14em;
  top: -9em;
}

.sb1 .sb1_ml {
  line-height: 2;
  font-size: 137.5%;
  font-weight: 600;
}

.sb1 .sb1_ml span {
  color: #d70a1d;
}

.sb1 .sb1_ml b {
  font-size: 118.1818181818%;
  font-weight: 900;
}

.sb1 .sb1_ml i {
  margin-top: 0.5em;
  font-style: normal;
  line-height: 1.2;
  font-size: 136.3636363636%;
  font-weight: 500;
}

.sb1 .sb1_ml .marker {
  background: linear-gradient(transparent 60%, rgba(248, 134, 56, 0.25) 60%);
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 0.3em;
}

.sb1 .sb1_bt {
  line-height: 2;
  font-weight: 800;
  background-color: #fff;
  border-radius: 1rem;
  max-width: 45.375em;
  margin: 0 auto;
  margin-top: 4.6875em;
  margin-bottom: 2.375em;
}

.sb1 .sb1_bt>p span {
  display: block;
  font-size: 125%;
  color: #fff;
  background-color: #d70a1d;
  border-radius: 10rem;
  width: 18.75em;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transform: translate3d(0, -50%, 0);
  position: relative;
  text-align: center;
  padding: 0.625em 0;
}

.sb1 .sb1_bt>p span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5625em solid #d70a1d;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  margin: auto;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
}

.sb1 .sb1_bt>div {
  text-align: center;
  padding: 1.25em 0 1.625em 0;
  padding-top: 0;
}

.sb1 .sb1_bt>div p {
  font-size: 125%;
  margin-top: -0.5em;
}

.sb1 .sb1_bt_graph {
  max-width: 45.625em;
  margin: 0 auto;
  margin-bottom: 4.375em;
}

.sb1 .sb1_bt_graph .sb1_bt_graph_in {
  position: relative;
  margin: auto;
  padding-top: 4.375em;
  margin-bottom: 2em;
}

.sb1 .sb1_bt_graph .sb1_bt_graph_in figure:first-child {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 37.0875em;
  margin: auto;
}

.sb1 .sb1_bt_graph .sb1_bt_graph_desc {
  font-weight: 500;
  border: 2px solid #d70a1d;
  background-color: rgba(253, 245, 249, 0.65);
  text-align: left;
  padding: 1.9444444444em 2.375em;
  line-height: 1.7;
  font-size: 112.5%;
}

.sb1 .sb1_bt_graph .sb1_bt_graph_desc>p {
  text-indent: -1em;
}

.sb1 .sb1_bt_graph .sb1_bt_graph_desc ul li {
  text-indent: -0.5em;
}

.sb1_rankex>h3 {
  background-color: #552906;
  font-size: 137.5%;
  border-radius: 6.25em;
  color: #fff;
  padding: 1em;
  position: relative;
  margin-bottom: 1.5625em;
  transition: all ease 0.3s;
  cursor: pointer;
}

.sb1_rankex>h3:before {
  content: "";
  display: block;
  width: 1.4em;
  height: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: 1em;
  top: calc(50% - 1.5px);
  transition: all ease 0.3s;
}

.sb1_rankex>h3:after {
  content: "";
  display: block;
  height: 1.4em;
  width: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: calc(1.7em - 1.5px);
  top: calc(50% - 0.7em);
  transition: all ease 0.3s;
}

.sb1_rankex>h3:hover {
  opacity: 0.7;
}

.sb1_rankex>h3.open:before {
  transform: rotate(90deg);
  opacity: 0;
}

.sb1_rankex>h3.open:after {
  transform: rotate(90deg);
}

.sb1_rankex>div {
  display: none;
}

.sb1_rankex>div>p {
  font-size: 112.5%;
  margin-bottom: 2em;
  line-height: 1.8;
  font-weight: 600;
}

.sb1_rankex>div .sb1_rankex_in>li {
  margin-bottom: 2.5em;
}

.sb1_rankex>div .sb1_rankex_in>li:last-child {
  margin-bottom: 0;
}

.sb1_rankex>div .sb1_rankex_in>li h4 {
  background-color: #454545;
  color: #fff;
  border-radius: 1em 1em 0 0;
  padding: 0.5em;
  font-size: 137.5%;
}

.sb1_rankex>div .sb1_rankex_in>li>div {
  position: relative;
  background-color: #fff;
  padding: 3em 3em;
  padding-top: 5.3125em;
  border-radius: 0 0 1em 1em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .fushidashi_rankex {
  position: absolute;
  top: 1em;
  right: 3em;
  border: 2px solid #d70a1d;
  border-radius: 0.5em;
  padding: 0.5em 2em;
  padding-right: 3em;
  text-align: center;
  font-weight: 600;
  font-size: 106.25%;
  box-sizing: border-box;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .fushidashi_rankex:after {
  content: "";
  width: 2.375em;
  height: 2.25em;
  display: block;
  background-image: url(../img/fukidashi_bg_2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  position: absolute;
  top: 100%;
  left: 2em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .kei {
  background-color: #d70a1d;
  color: #fff;
  font-weight: 600;
  font-size: 150%;
  padding: 0.5em;
  text-align: center;
  position: relative;
  margin-top: 3.1666666667em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .kei:before {
  content: "";
  display: block;
  width: 3.0833333333em;
  height: 1.3333333333em;
  background-image: url(../img/delta_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -2.0833333333em;
  left: 0;
  right: 0;
  margin: auto;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months {
  display: flex;
  gap: 1em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li {
  flex: 1;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li h5 {
  background-color: #fcf798;
  padding: 0.5em 0;
  margin-bottom: 0.5em;
  font-size: 112.5%;
  border-radius: 0.2em;
}

/* month-orange クラスが付いている時だけ背景をオレンジに強制上書き */
.sb1_rankex .sb1_rankex_months>li.month-orange h5 {
  background-color: #FCD4A1 !important;
  color: #552906 !important;
  /* 文字を白にする（任意） */
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt {
  background-color: #fff;
  color: #000;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 1em 0.7em 1em 0.7em;
  text-align: center;
  margin-bottom: 0.7em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt>p {
  display: inline-block;
  padding: 0 1em;
  border-bottom: 1px solid #000;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl {
  font-size: 87.5%;
  text-align: left;
  padding: 0;
  margin: 0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dt {
  padding: 0;
  margin: 0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dd {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dd:last-child {
  margin-bottom: 0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dd b {
  font-size: 106.25%;
  font-weight: normal;
  text-align: right;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt.receiptNone {
  background-image: url(../img/receiptNone.png);
  box-shadow: none;
  background-size: 6.03125em 6.03125em;
  background-repeat: no-repeat;
  background-position: center;
  height: 42%;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt.receiptNone>p {
  border: 0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>p {
  background-color: #946957;
  position: relative;
  padding-left: 1.6875em;
  padding: 0.3em 0;
  border-radius: 0.3em 0.3em 0 0;
  font-size: 112.5%;
  color: #fff;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>p:before {
  content: "";
  width: 1.4833333333em;
  height: 1.4666666667em;
  background-image: url(../img/medal_b.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.4em;
  top: 0.2em;
  bottom: 0;
  margin: auto;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>div {
  padding: 0.5em 1em;
  border: 2px solid #946957;
  border-radius: 0 0 0.3em 0.3em;
  border-top: 0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>div p {
  font-size: 112.5%;
  font-size: 600;
  font-weight: 600;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsS>p {
  background-color: #9f9f9f;
  font-weight: 500;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsS>p:before {
  background-image: url(../img/medal_s.png);
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsS>div {
  border-color: #9f9f9f;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsG>p {
  background-color: #e0c249;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsG>p:before {
  background-image: url(../img/medal_g.png);
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsG>div {
  border-color: #e0c249;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsP>p {
  background-color: #87c9e0;
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsP>p:before {
  background-image: url(../img/fukidashi_bg_2.svg);
  background-image: url(../img/medal_p.png);
}

.sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals.medalsP>div {
  border-color: #87c9e0;
}

.sb1_rankex>div .sb1_rankex_in>li:nth-child(2) .sb1_rankex_in_item_bottom .fushidashi_rankex:after {
  left: 16em;
}

@media screen and (max-width: 600px) {
  .sb1:before {
    width: 39vw;
    height: 38vw;
    left: -4em;
    top: -2.5em;
  }

  .sb1:after {
    width: 48vw;
    height: 48vw;
    right: -7em;
    top: -3.5em;
  }

  .sb1 .sb1_ml {
    font-size: calc(17 / 375 * 100vw);
  }

  .sb1 .sb1_ml small {
    letter-spacing: 0;
    line-height: 1.7;
  }

  .sb1 .sb1_bt>div p {
    line-height: 1.7;
    letter-spacing: 0;
    font-size: calc(17 / 375 * 100vw);
  }

  .sb1 .sb1_bt>div {
    padding-top: 0;
  }

  .sb1 .sb1_ml .marker {
    font-size: calc(19 / 375 * 100vw);
  }

  .sb1 .sb1_ml i {
    font-size: calc(22 / 375 * 100vw);
  }

  .sb1 .sb1_ml .marker {
    padding-left: 0;
    padding-right: 0;
  }

  .sb1 .sb1_bt>p span {
    width: calc(240 / 375 * 100vw);
  }

  .sb1 .sb1_bt_graph .sb1_bt_graph_desc {
    font-size: calc(12 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw);
  }

  .sb1_rankex>h3 {
    font-size: calc(15 / 375 * 100vw);
  }

  .sb1_rankex>div>p {
    font-size: calc(15 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .fushidashi_rankex {
    position: unset;
    font-size: calc(14 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li>div {
    padding: 0;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li h5 {
    margin-top: 0;
    margin-bottom: calc(10 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months {
    flex-direction: column;
    gap: 0;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months .sb1_rankex_li_B {
    background-color: #FFFAFA;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months .sb1_rankex_li_S {
    background-color: #F8F8F8;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months .sb1_rankex_li_G {
    background-color: #FFFCEF;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months .sb1_rankex_li_P {
    background-color: #F0FAFD;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li h5 {
    flex: 0 1 100%;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt {
    flex: 0 1 calc(135 / 375 * 100vw);
    box-sizing: border-box;
    padding: calc(7 / 375 * 100vw) calc(7 / 375 * 100vw);
    margin-bottom: 0;
    position: relative;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt:after {
    content: "";
    display: block;
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    background-image: url(../img/pointer_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 107%;
    top: 39%;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals {
    flex: 0 1 calc(122 / 375 * 100vw);
    box-sizing: border-box;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>div p span {
    display: none;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dd {
    margin-bottom: 0;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .medals>p {
    font-size: calc(11 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt>p {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(7 / 375 * 100vw);
    padding-bottom: calc(7 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dt {
    font-size: calc(12 / 375 * 100vw);
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt dl dd b {
    font-weight: 500;
    font-size: calc(15 / 375 * 100vw);
  }

  .sb1_rankex_in_item_bottom {
    padding-top: 1em;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .kei {
    font-size: 100%;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .fushidashi_rankex:after {
    display: none;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_in_item_bottom .fushidashi_rankex {
    padding: 0.5em 1em;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt.receiptNone {
    width: calc(96 / 375 * 100vw);
    height: calc(96 / 375 * 100vw);
    margin: 0 auto;
  }

  .sb1_rankex>div .sb1_rankex_in>li .sb1_rankex_months>li .receipt.receiptNone:after {
    display: none;
  }
}

.sb2 {
  background-color: #f8e4e9;
}

.sb2 .sbc .sb2_top {
  line-height: 2;
  font-size: 125%;
  text-align: center;
  font-weight: 800;
  padding-bottom: 1.5em;
}

.sb2 .sb2_button {
  display: flex;
  gap: 1.875em;
  justify-content: center;
  padding-bottom: 2.5em;
}

.sb2 .sb2_button a {
  flex: 0 1 22.9375em;
  display: block;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  transition: all ease 0.3s;
}

.sb2 .sb2_button a small {
  display: block;
  font-size: 87.5%;
}

.sb2 .sb2_button a span {
  display: block;
  font-size: 112.5%;
}

.sb2 .sb2_button a p {
  border: 3px solid #90040b;
  border-radius: 100em;
  background-color: #d70a1d;
  position: relative;
  z-index: 2;
  padding: 0.78125em 0;
  background-color: #d70a1d;
}

.sb2 .sb2_button a:after {
  content: "";
  width: 100%;
  height: calc(100% + 0.5em);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100em;
  background-color: #90040b;
  z-index: 1;
  transition: all ease 0.3s;
}

.sb2 .sb2_button a:before {
  content: "";
  width: 1.5625em;
  height: 1.5625em;
  background-image: url(../img/right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
  right: 2em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sb2 .sb2_button a:last-child p {
  background-color: #0A51D7;
  border-color: #003293;
}

.sb2 .sb2_button a:last-child:after {
  background-color: #003293;
}

.sb2 .sb2_button a:hover {
  transform: translate3d(0, 0.3em, 0);
}

.sb2 .sb2_button a:hover:after {
  height: 100%;
}

.sb2 .sb2_bt {
  font-size: 87.5%;
  padding-left: 1em;
}

.sb2 .sb2_bt p {
  position: relative;
}

.sb2 .sb2_bt p:before {
  content: "※";
}

@media screen and (max-width: 600px) {
  .page_contents .sb.sb2 .sbh h2 img {
    height: calc(79 / 375 * 100vw);
  }

  .sb2 .sb2_bt p:before {
    position: absolute;
    left: -1em;
    top: 0;
  }

  .sb2 .sbc .sb2_top {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(22 / 375 * 100vw);
  }

  .sb2 .sb2_button {
    flex-direction: column;
    gap: 1.3em;
  }

  .sb2 .sb2_button a {
    flex: 1;
  }

  .sb2 .sb2_button a:before {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }

  .sb2 .sb2_bt {
    -moz-text-align-last: left;
    text-align-last: left;
  }
}

.sb3 .sb3_in {
  background-color: #fff;
  text-align: center;
  border: 2px solid #d70a1d;
  border-radius: 1em;
  box-shadow: 0 0.1875em 0.375em 0 rgba(0, 0, 0, 0.16);
  padding: 2.1875em 3.25em;
  margin-top: 6em;
}

.sb3 .sb3_in .sb3_top {
  color: #fff;
  border-radius: 100em;
  text-align: center;
  max-width: 37.8125em;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1em;
  padding-top: 1.3em;
  padding-bottom: 3.2em;
  line-height: 1.3;
  background-image: url(../img/sb3_fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -8em;
  position: relative;
}

.sb3 .sb3_in .sb3_top span {
  font-size: 156.25%;
}

.sb3 .sb3_in .sb3_top b {
  font-size: 160%;
}

.sb3 .sb3_in .sb3_top:before {
  content: "";
  display: block;
  width: 5.3125em;
  height: 5.46875em;
  background-image: url(../img/sb3_shine_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: -1.8em;
  top: -1.8em;
  opacity: 0;
  transform: scale(0.0001);
  transition: all ease 0.3s;
  transition-delay: 0.3s;
}

.sb3 .sb3_in .sb3_top:after {
  content: "";
  display: block;
  width: 5.3125em;
  height: 5.46875em;
  background-image: url(../img/sb3_shine_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -1.8em;
  top: -1.8em;
  opacity: 0;
  transform: scale(0.0001);
  transition: all ease 0.3s;
  transition-delay: 0.3s;
}

.sb3 .sb3_in .sb3_top.active:before,
.sb3 .sb3_in .sb3_top.active:after {
  opacity: 1;
  transform: scale(1);
}

.sb3 .sb3_in figure {
  max-width: 33.6875em;
  margin: 0 auto;
}

.sb3 .sb3_in .sb3_in_t1 {
  font-weight: 500;
  font-size: 187.5%;
}

.sb3 .sb3_in .sb3_in_t1 span {
  font-size: 133.3333333333%;
}

.sb3 .sb3_in .sb3_in_t1 i {
  font-size: 80%;
  font-weight: 500;
  font-style: normal;
}

.sb3 .sb3_in .marker {
  background: linear-gradient(transparent 60%, rgba(248, 134, 56, 0.25) 60%);
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 0.3em;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

.sb3 .sb3_in .sb3_in_t2 {
  font-size: 131.25%;
  margin-bottom: 0.75em;
  font-weight: bold;
}

.sb3 .sb3_in .sb3_between {
  padding: 0.875em 6.25em 0.875em 5.25em;
  border: solid 2px #ed6c00;
  border-radius: 6.25em;
  max-width: 45.125em;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 1.5em;
  background-image: linear-gradient(to bottom, #ff9b48, #ed6c00);
  color: #fff;
}

.sb3 .sb3_in .sb3_between p:first-child {
  font-size: 112.5%;
}

.sb3 .sb3_in .sb3_between p:last-child {
  font-size: 137.5%;
  font-weight: 600;
}

.sb3 .sb3_in .sb3_between p:last-child span {
  font-size: 131.8181818182%;
  margin-left: 0.5em;
}

.sb3 .sb3_in .sb3_between p:last-child b {
  font-weight: 600;
  margin-left: 0.5em;
}

.sb3 .sb3_in .sb3_between p:last-child small {
  font-size: 80%;
}

.sb3 .sb3_in .sb3_in_smalls {
  font-size: 87.5%;
  text-align: left;
  margin: 0 13%;
  margin-bottom: 2em;
}

.sb3 .sb3_in .sb3_in_smalls p {
  text-indent: -1em;
  color: #454545;
}

.sb3 .sb3_in .sb3_in_betweens {
  padding: 2.1875em 3.125em;
  background-color: #fff9f1;
  text-align: center;
  margin-top: 1em;
  border-radius: 1em;
}

.sb3 .sb3_in .sb3_in_betweens h3 {
  font-size: 187.5%;
  border-bottom: 1px solid #552906;
  margin-bottom: 0.6em;
}

.sb3 .sb3_in .sb3_in_betweens>ul {
  margin-top: 2em;
}

.sb3 .sb3_in .sb3_in_betweens>ul li {
  margin-bottom: 1.5em;
}

.sb3 .sb3_in .sb3_in_betweens>ul p:first-child {
  background-color: #fcd4a1;
  border-radius: 6.25em;
  text-align: center;
  margin-bottom: 1em;
  font-size: 112.5%;
  font-weight: 600;
  padding: 0.5em;
}

.sb3 .sb3_in .sb3_in_betweens>ul p:last-child {
  font-size: 156.25%;
  font-weight: 600;
}

.sb3 .sb3_in .sb3_in_t3 {
  font-size: 112.5%;
  font-weight: 600;
}

.sb3 .sb3_btm {
  background-color: #fff;
  text-align: center;
  border-radius: 1em;
  box-shadow: 0 0.1875em 0.375em 0 rgba(0, 0, 0, 0.16);
  padding: 2.1875em 3.25em;
  margin-top: 3.125em;
}

.sb3 .sb3_btm>figure {
  max-width: 27.5em;
  margin: 0 auto;
  margin-bottom: 1em;
}

.sb3 .sb3_btm .sb3_btm_flex {
  margin-top: 1em;
  background-color: #fff9f1;
  border-radius: 0.5em;
  padding: 2.0625em 4.75em 2.0625em 1.875em;
  align-items: center;
  display: flex;
  gap: 2.6875em;
}

.sb3 .sb3_btm .sb3_btm_flex>figure {
  flex: 0 1 15.4375em;
}

.sb3 .sb3_btm .sb3_btm_flex>div {
  flex: 1;
}

.sb3 .sb3_btm .sb3_btm_flex>div .sb3_in_t4 {
  text-align: left;
}

.sb3 .sb3_btm .sb3_btm_flex>div .sb3_in_small {
  margin-left: 1em;
}

.sb3 .sb3_btm .sb3_btm_flex>div a {
  display: block;
  border-radius: 100em;
  padding: 0.5em;
  font-weight: 600;
  text-align: center;
  max-width: 21.0625em;
  background-color: #fff;
  color: #552906;
  margin-top: 1em;
  /* 影を追加：右に0、下に4px、ぼかし8px、色は薄い黒 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
  .sb3 .sb3_in .sb3_top {
    padding-top: 2.3em;
    margin-top: -5.5em;
  }

  .sb3 .sb3_in .sb3_top b {
    font-size: calc(22 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_top span {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb3 .sb3_in {
    padding: calc(16 / 375 * 100vw);
    margin-top: 2.5em;
  }

  .sb3 .sb3_in .sb3_top.active:before,
  .sb3 .sb3_in .sb3_top.active:after {
    width: calc(32 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_top:before {
    left: -4vw;
    top: 4vw;
  }

  .sb3 .sb3_in .sb3_top:after {
    right: -4vw;
    top: 4vw;
  }

  .sb3 .sb3_in figure {
    margin-top: -10vw;
  }

  .sb3 .sb3_in .marker {
    font-size: calc(15 / 375 * 100vw);
    padding-left: 0em;
    padding-right: 0em;
    margin-right: -0.5em;
    margin-left: -0.5em;
  }

  .sb3 .sb3_in .sb3_in_t1 span {
    font-size: calc(22 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_in_t2 {
    font-size: calc(15 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_between {
    padding: 1em 0;
    border-radius: 1em;
  }

  .sb3 .sb3_in .sb3_between p:last-child {
    font-size: 120%;
    line-height: 1.3;
  }

  .sb3 .sb3_in .sb3_in_smalls {
    font-size: calc(12 / 375 * 100vw);
    margin: 0 0;
    margin-bottom: 2em;
  }

  .sb3_in_smalls p {
    margin-left: 1em;
  }

  .sb3 .sb3_in .sb3_in_betweens h3 {
    font-size: calc(18 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_in_betweens {
    padding: calc(15 / 375 * 100vw) calc(10 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_in_t3 {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_in_betweens>ul p:first-child {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb3 .sb3_in .sb3_in_betweens>ul p:last-child {
    font-size: calc(18 / 375 * 100vw);
  }

  .sb3 .sb3_btm {
    padding: calc(10 / 375 * 100vw) calc(17 / 375 * 100vw);
  }

  .sb3 .sb3_btm .sb3_btm_flex {
    flex-direction: column;
    padding: calc(20 / 375 * 100vw) calc(10 / 375 * 100vw);
    gap: calc(10 / 375 * 100vw);
  }

  .sb3 .sb3_btm .sb3_btm_flex>figure {
    flex: 1;
  }

  .sb3 .sb3_btm .sb3_btm_flex>div .sb3_in_t4 {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb3 .sb3_btm .sb3_btm_flex>div a {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
}

.sb3_in_small {
  color: #454545;
  font-size: 87.5%;
  text-indent: -1em;
  text-align: left;
  margin-left: 1em;
}

@media screen and (max-width: 600px) {
  .page_contents .sb3_in_small {
    margin-left: 1em;
    font-size: calc(12 / 375 * 100vw);
  }
}

.sb4 {
  background-color: #f0f8d5;
}

.sb4 .sb4_item {
  padding: 2.5em 3.125em;
}

.sb4 .sb4_ps_wrap {
  border-radius: 1em;
  background-color: #fff;
}

.sb4 .sb4_ps_wrap h3 {
  background-color: #552906;
  color: #fff;
  padding: 0.7em;
  text-align: center;
  font-size: 168.75%;
  border-radius: 100em;
  line-height: 1;
  margin-bottom: 1.5em;
}

.sb4 .sb4_ps {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
  justify-content: center;
  margin-bottom: 2em;
}

.sb4 .sb4_ps li {
  text-align: center;
  flex: 0 1 calc((100% - 5em) / 3);
}

.sb4 .sb4_ps li figure {
  margin: 0 auto;
  margin-bottom: 1em;
}

.sb4 .sb4_ps li figure figcaption {
  display: block;
  text-align: center;
  line-height: 1.5;
}

.sb4 .sb4_ps.sb4_ps200 {
  max-width: 38.75em;
  margin: 0 auto;
  margin-bottom: 3em;
}

.sb4 .sb4_ps.sb4_ps200 li figure img {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 1em;
}

.sb4 .sb4_ps.sb4_ps1000 {
  max-width: 42.3125em;
  margin: 0 auto;
  margin-bottom: 3em;
}

.sb4 .sb4_ps.sb4_ps1000 figure img {
  margin-bottom: 1em;
}

.sb4 .sb4_bt {
  padding: 1em 0;
  border-top: 1px dotted #939393;
}

.sb4 .sb4_bt .sb3_in_small {
  margin-left: 1em;
}

@media screen and (max-width: 600px) {
  .sb4 .sb4_ps {
    flex-wrap: wrap;
    gap: 1.25em;
  }

  .sb4 .sb4_ps li {
    flex: 0 1 calc(150 / 375 * 100vw);
  }

  .sb4 .sb4_ps li figure figcaption {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb4 .sb4_ps li p {
    font-size: calc(12 / 375 * 100vw);
  }

  .sb4 .sb4_ps {
    gap: calc(10 / 375 * 100vw);
  }

  .sb4 .sb4_ps:before {
    content: "";
    display: block;
  }

  .sb4 .sb4_ps li {
    flex: 0 1 calc((100% - 10 / 375 * 100vw) / 2);
  }

  .sb4 .sb4_ps:before {
    display: none;
  }

  .sb4 .sb4_ps li figure figcaption {
    font-size: calc(12 / 375 * 100vw);
  }

  .sb4 .sb4_item {
    padding: calc(20 / 375 * 100vw) calc(17 / 375 * 100vw);
  }

  .sb4 .sb4_ps.sb4_ps200 li figure img {
    width: 65%;
  }

  .sb4 .sb4_ps li figure {
    margin-bottom: 2em;
  }

  .sb4 .sb4_ps_wrap h3 {
    font-size: calc(17 / 375 * 100vw);
  }

  .sb4 .sb4_ps.sb4_ps200 {
    margin-bottom: 0;
  }
}

.sb5 {
  background-color: #f8e4e9;
}

.sb5 .sb5_list {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  max-width: 58.1875em;
  margin: 0 auto;
  margin-bottom: 3.125em;
}

.sb5 .sb5_list>li {
  border-radius: 1em;
  background-color: #fff;
  padding: 1.0625em 3.1875em;
  padding-bottom: 1.9375em;
}

.sb5 .sb5_list>li h3 {
  text-align: center;
  color: #d9483b;
  font-size: 175%;
  border-bottom: 1px solid #d9483b;
  font-weight: 800;
  margin-bottom: 0.5em;
}

.sb5 .sb5_list>li h4 {
  color: #552906;
  font-size: 168.75%;
  text-align: center;
  margin-bottom: 0.3em;
}

.sb5 .sb5_list>li>p {
  text-align: center;
}

.sb5 .sb5_list>li .step2_flex {
  text-align: left;
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 2em;
}

.sb5 .sb5_list>li .step2_flex>figure {
  width: 8.975em;
  height: 9.125em;
}

.sb5 .sb5_list>li .step2_flex>div {
  flex: 1;
}

.sb5 .sb5_list>li .step2_flex>div h4 {
  text-align: left;
}

.sb5 .sb5_list>li .step2_flex>div>div {
  padding: 0.7em 1em;
  padding-right: 5em;
  border: solid 1px #d70a1d;
  background-color: #ffefef;
  border-radius: 0.3em;
  font-weight: 600;
  margin-top: 1em;
  display: inline-block;
}

.sb5 .sb5_list>li .step3_flex {
  text-align: left;
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 2em;
}

.sb5 .sb5_list>li .step3_flex>figure {
  width: 8.975em;
  height: 9.125em;
}

.sb5 .sb5_list>li .step3_flex>div {
  flex: 1;
}

.sb5 .sb5_list>li .step3_flex>div h4 {
  text-align: left;
}

.sb5 .sb5_list>li .step3_flex>div .sb3_in_small {
  margin-left: 1em;
}

.sb5 .sb5_list>li .step3_flex>div>div {
  padding: 0.7em 1em;
  padding-right: 5em;
  border: solid 1px #d70a1d;
  background-color: #ffefef;
  border-radius: 0.3em;
  font-weight: 600;
  margin-top: 1em;
  display: inline-block;
}

.sb5 .sb5_list>li>ul>li {
  margin-bottom: 3em;
}

.sb5 .sb5_list>li>ul>li h5 {
  margin: 0;
  background-color: #552906;
  color: #fff;
  font-weight: 600;
  color: #fff;
  padding: 1em;
  border-radius: 100em;
  text-align: center;
  margin-bottom: 1em;
  font-size: 100%;
  position: relative;
  transition: all ease 0.3s;
  cursor: pointer;
}

.sb5 .sb5_list>li>ul>li h5:before {
  content: "";
  display: block;
  width: 1.4em;
  height: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: 1em;
  top: calc(50% - 1.5px);
  transition: all ease 0.3s;
}

.sb5 .sb5_list>li>ul>li h5:after {
  content: "";
  display: block;
  height: 1.4em;
  width: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: calc(1.7em - 1.5px);
  top: calc(50% - 0.7em);
  transition: all ease 0.3s;
}

.sb5 .sb5_list>li>ul>li h5:hover {
  opacity: 0.7;
}

.sb5 .sb5_list>li>ul>li h5.open:before {
  transform: rotate(90deg);
  opacity: 0;
}

.sb5 .sb5_list>li>ul>li h5.open:after {
  transform: rotate(90deg);
}

.sb5 .sb5_list>li>ul>li>div {
  display: none;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>p {
  text-align: center;
  margin-bottom: 1em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div .step2_jyogen_desc {
  text-align: center;
  padding: 0.7em 5em;
  border: solid 1px #d70a1d;
  background-color: #ffefef;
  border-radius: 0.3em;
  font-weight: 600;
  margin-top: 1em;
  display: inline-block;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div .step2_jyogen_desc h6 {
  text-align: center;
  color: #d70a1d;
  border-bottom: 1px solid #d70a1d;
  padding-bottom: 0.3em;
  margin-bottom: 0.3em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul {
  display: flex;
  gap: 2.5em;
  justify-content: center;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li {
  flex: 0 1 14.375em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt {
  color: #000;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 1em 0.7em 1em 0.7em;
  text-align: center;
  margin-bottom: 1em;
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt>p {
  display: inline-block;
  padding: 0 1em;
  border-bottom: 1px solid #000;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl {
  font-size: 87.5%;
  text-align: left;
  padding: 0;
  margin: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dt {
  padding: 0;
  margin: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dd {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dd:last-child {
  margin-bottom: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dd b {
  font-size: 106.25%;
  font-weight: normal;
  text-align: right;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li>p {
  border-radius: 10em;
  color: #fff;
  text-align: center;
  padding: 0.7em;
  background-color: #1fa350;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1;
}

.sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li:nth-child(2)>p {
  background-color: #1873b5;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_desc {
  text-align: left;
  padding: 0.7em 1em;
  padding-top: 0.5em;
  border: solid 1px #d70a1d;
  background-color: #ffefef;
  border-radius: 0.3em;
  font-weight: 600;
  margin: 0 auto;
  max-width: 45.3125em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_desc h6 {
  text-align: center;
  font-size: 100%;
  margin: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d70a1d;
  margin-bottom: 0.5em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_desc ul {
  font-size: 87.5%;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_desc ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li .month {
  background-color: #fdf000;
  font-size: 112.5%;
  padding: 0.25em;
  border-radius: 0.3em;
  font-weight: 600;
  margin-bottom: 0.7em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6 {
  margin: 0;
  margin-top: 3em;
  margin-bottom: 1em;
  background-color: #454545;
  color: #fff;
  font-size: 112.5%;
  position: relative;
  border-radius: 0.3em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6>span {
  display: block;
  position: relative;
  z-index: 3;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6>span>span {
  color: #454545;
  background-color: #fff;
  display: inline-block;
  border-radius: 100em;
  line-height: 1;
  padding-bottom: 0.1em;
  padding-left: 0.2em;
  padding-right: 0.2em;
  margin-right: 0.1em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6:after {
  content: "";
  width: 5em;
  height: 4em;
  border-radius: 100%;
  position: absolute;
  top: -1.8em;
  background-color: #454545;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6 b {
  display: inline-block;
  z-index: 2;
  position: absolute;
  bottom: 85%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 122.2222222222%;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6 i {
  font-style: normal;
  font-size: 133.3333333333%;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.25em;
  margin-bottom: 2em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li {
  flex: 1;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt {
  color: #000;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 1em 0.7em 1em 0.7em;
  text-align: center;
  margin-bottom: 1em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt>p {
  display: inline-block;
  padding: 0 1em;
  border-bottom: 1px solid #000;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt>div>p {
  background-color: #D70A1D;
  color: #fff;
  text-align: center;
  font-size: 112.5%;
  margin-bottom: 0.5em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl {
  font-size: 87.5%;
  text-align: left;
  padding: 0;
  margin: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dt {
  padding: 0;
  margin: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dd {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dd:last-child {
  margin-bottom: 0;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dd b {
  font-size: 106.25%;
  font-weight: normal;
  text-align: right;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt_bottom {
  font-weight: 600;
  font-size: 112.5%;
  text-align: center;
  padding: 0.5em 0;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt_bottom.receipt_bottomX {
  line-height: 1.7;
  background-image: url(../img/x.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li .point {
  border: solid 2px #d70a1d;
  padding: 0.5em;
  text-align: center;
  font-size: 150%;
  font-weight: 700;
}

/*追加した箇所*/
.sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li .point_bottom {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 0.5em;
  padding-top: 1em;
}

.sb5 .sb5_list>li .sb5_list_ul {
  display: flex;
  margin-top: 1.375em;
  gap: 1.03125em;
}

.sb5 .sb5_list>li .sb5_list_ul li {
  flex: 1;
  border-radius: 1em;
  box-sizing: border-box;
}

.sb5 .sb5_list>li .sb5_list_ul li h5 {
  margin: 0;
  text-align: center;
  color: #fff;
  background-color: #915ca4;
  font-size: 137.5%;
  border-radius: 0.5em 0.5em 0 0;
  padding: 0.3125em 0;
}

.sb5 .sb5_list>li .sb5_list_ul li div {
  border-radius: 0 0 0.5em 0.5em;
  border: 3px solid #915ca4;
  border-top-width: 0;
  padding: 0.625em 0;
}

.sb5 .sb5_list>li .sb5_list_ul li div figure {
  text-align: center;
}

.sb5 .sb5_list>li .sb5_list_ul li div figure img {
  height: 6.3125em;
  margin: auto;
  width: auto;
}

.sb5 .sb5_list>li .sb5_list_ul li div figure figcaption {
  color: #7e318e;
  display: block;
  padding-top: 0.625em;
  font-size: 112.5%;
  font-weight: 800;
}

.sb5 .sb5_list>li:last-child>div {
  margin-top: 1em;
}

.sb5 .sb5_list>li:last-child>div small {
  font-size: 87.5%;
}

.sb5 .sb5_button {
  margin-top: 1.875em;
  display: flex;
  gap: 1.875em;
  justify-content: center;
  padding-bottom: 2em;
}

.sb5 .sb5_button a {
  flex: 0 1 22.9375em;
  display: block;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  transition: all ease 0.3s;
}

.sb5 .sb5_button a small {
  display: block;
  font-size: 87.5%;
}

.sb5 .sb5_button a span {
  display: block;
  font-size: 112.5%;
}

.sb5 .sb5_button a p {
  border: 3px solid #90040b;
  border-radius: 100em;
  background-color: #d70a1d;
  position: relative;
  z-index: 2;
  padding: 0.78125em 0;
  background-color: #d70a1d;
}

.sb5 .sb5_button a:after {
  content: "";
  width: 100%;
  height: calc(100% + 0.5em);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100em;
  background-color: #90040b;
  z-index: 1;
  transition: all ease 0.3s;
}

.sb5 .sb5_button a:last-child p {
  background-color: #0A51D7;
  border-color: #003293;
}

.sb5 .sb5_button a:last-child:after {
  background-color: #003293;
}

.sb5 .sb5_button a:hover {
  transform: translate3d(0, 0.3em, 0);
}

.sb5 .sb5_button a:hover:after {
  height: 100%;
}

.sb5 .sb5_bottom {
  background-color: #fff;
  border-radius: 2em;
  overflow: hidden;
  max-width: 58.1875em;
  margin: 0 auto;
}

.sb5 .sb5_bottom h3 {
  text-align: center;
  color: #fff;
  font-size: 156.25%;
  background-color: #552906;
  padding: 0.8em 0;
}

.sb5 .sb5_bottom .sb5_bottom_in {
  padding: 1.875em 3.125em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex {
  display: flex;
  gap: 2.9375em;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>figure {
  flex: 0 1 25em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div {
  flex: 1;
  text-align: left;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div>p {
  font-size: 112.5%;
  font-weight: 800;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div ol {
  counter-reset: listnum;
  color: #d7001d;
  margin: 0.7em 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 125%;
  font-weight: 800;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div ol li:before {
  counter-increment: listnum;
  content: counter(listnum);
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  background-color: #d7001d;
  border-radius: 100%;
  display: inline-block;
  line-height: 1.4;
  text-align: center;
  font-size: 85%;
  transform: translate3d(0, -0.1em, 0);
  margin-right: 0.2em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div>div {
  display: flex;
  align-items: flex-start;
  margin-top: 1.25em;
  gap: 1em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div>div>figure {
  flex: 0 1 7.5em;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div>div p {
  margin-top: 1em;
  flex: 1;
  padding: 1em 1.3em;
  border-radius: 0.5em;
  background-color: #fcd4a1;
  color: #552906;
  font-weight: 800;
  position: relative;
}

.sb5 .sb5_bottom .sb5_bottom_in_flex>div>div p:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 1em solid #fcd4a1;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  margin: auto;
}

.sb5 .sb5_bottom .sb5_bottom_precautions {
  text-align: left;
  margin-top: 6.25em;
  margin-bottom: 1.5625em;
}

.sb5 .sb5_bottom .sb5_bottom_precautions h4 {
  text-align: center;
  padding-bottom: 0.5em;
  font-size: 125%;
  border-bottom: 1px solid #454545;
  margin-bottom: 0.5em;
}

.sb5 .sb5_bottom .sb5_bottom_precautions ul li {
  position: relative;
  padding-left: 1em;
}

.sb5 .sb5_bottom .sb5_bottom_precautions ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.sb5 .sb5_bottom .sb5_bottom_precautions>p {
  color: #d7001d;
  padding-left: 1em;
  position: relative;
}

.sb5 .sb5_bottom .sb5_bottom_precautions>p:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.sb5 .sb5_bottom .sb5_bottom_ngs {
  text-align: left;
}

.sb5 .sb5_bottom .sb5_bottom_ngs h4 {
  text-align: center;
  padding-bottom: 0.5em;
  font-size: 125%;
  border-bottom: 1px solid #454545;
  margin-bottom: 0.9375em;
}

.sb5 .sb5_bottom .sb5_bottom_ngs ul {
  display: flex;
  gap: 0.75em;
}

.sb5 .sb5_bottom .sb5_bottom_ngs ul li {
  border: 2px solid #552906;
  padding: 0.625em;
  padding-bottom: 0;
  border-radius: 0.5em;
  text-align: center;
  background-color: #f7f7f7;
}

.sb5 .sb5_bottom .sb5_bottom_ngs ul li figure figcaption {
  display: block;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 87.5%;
  line-height: 1.3;
}

@media screen and (max-width: 600px) {
  .sb5 .sb5_button {
    flex-direction: column;
  }

  .sb5 .sb5_button a {
    flex: 1;
  }

  .sb5 .sb5_list>li .sb5_list_ul {
    flex-direction: column;
  }

  .sb5 .sb5_list>li .sb5_list_ul li div figure {
    display: flex;
    gap: 1rem;
  }

  .sb5 .sb5_list>li {
    padding: calc(22 / 375 * 100vw) calc(15 / 375 * 100vw);
  }

  .sb5 .sb5_list>li h3 {
    font-size: calc(23 / 375 * 100vw);
  }

  .sb5 .sb5_list>li h4 {
    font-size: calc(17 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>p {
    text-align: left;
    font-size: calc(14 / 375 * 100vw);
  }

  .sb5 .sb5_list {
    gap: calc(30 / 375 * 100vw);
  }

  .sb5 .sb5_button {
    margin-top: calc(20 / 375 * 100vw);
    gap: 1.3em;
  }

  .sb5 .sb5_list>li .sb5_list_ul li div figure {
    align-items: center;
  }

  .sb5 .sb5_list>li .sb5_list_ul li div figure img {
    flex: 0 1 calc(150 / 375 * 100vw);
    height: calc(74 / 375 * 100vw);
    width: calc(150 / 375 * 100vw);
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: auto;
  }

  .sb5 .sb5_list>li .sb5_list_ul li div figure figcaption {
    flex: 1;
    text-align: left;
    line-height: 1.3;
    font-size: calc(13 / 375 * 100vw);
    padding-top: 0;
  }

  .sb5 .sb5_list>li .sb5_list_ul li div {
    padding: calc(13 / 375 * 100vw);
  }

  .sb5 .sb5_list>li:last-child>div {
    text-align: left;
  }

  .sb5 .sb5_list>li:last-child>div small {
    font-size: calc(12 / 375 * 100vw);
  }

  .sb5 .sb5_bottom h3 {
    font-size: calc(17 / 375 * 100vw);
    line-height: 1.5;
  }

  .sb5 .sb5_bottom .sb5_bottom_in {
    padding: calc(17 / 375 * 100vw);
  }

  .sb5 .sb5_bottom .sb5_bottom_in {
    text-align: left;
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex {
    flex-direction: column;
    gap: 1em;
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex>figure {
    flex: 1;
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex>div>p {
    font-size: calc(15 / 375 * 100vw);
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex>div ol {
    font-size: calc(15 / 375 * 100vw);
    margin: 0.5em 0;
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex>div>div>figure {
    flex: 0 1 calc(108 / 375 * 100vw);
  }

  .sb5 .sb5_bottom .sb5_bottom_in_flex>div>div p {
    padding: calc(12 / 375 * 100vw) calc(15 / 375 * 100vw);
    margin-top: 0.5em;
  }

  .sb5 .sb5_bottom .sb5_bottom_precautions {
    margin-top: calc(24 / 375 * 100vw);
  }

  .sb5 .sb5_bottom .sb5_bottom_ngs ul {
    flex-wrap: wrap;
  }

  .sb5 .sb5_bottom .sb5_bottom_ngs ul li {
    flex: 0 1 calc((100% - 12 / 375 * 100vw) / 2);
    box-sizing: border-box;
  }

  .sb5 .sb5_bottom .sb5_bottom_ngs ul li figure figcaption {
    font-size: calc(13 / 375 * 100vw);
  }

  .sb5 .sb5_list>li .step2_flex {
    flex-direction: column;
  }

  .sb5 .sb5_list>li .step2_flex>figure {
    flex: 1;
  }

  .sb5 .sb5_list>li .step2_flex>div>p {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb5 .sb5_list>li .step2_flex>div>div {
    padding: 0.7em 1em;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt {
    margin-left: 0;
    margin-right: 0;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li {
    flex: 1;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul {
    gap: calc(23 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dd {
    margin-bottom: 0;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>p {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl dd b {
    font-size: 600;
    font-size: calc(15 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li .receipt dl {
    font-size: calc(9 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6 {
    font-size: calc(12 / 375 * 100vw);
    padding: 0.5em;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li:nth-child(2)>p {
    font-size: calc(15 / 375 * 100vw);
    line-height: 1.3;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div>ul>li>p {
    height: 2.8em;
    padding: 0.3em 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sb5 .sb5_list>li>ul>li.step2_in1>div .step2_jyogen_desc {
    padding: 0.7em;
    font-size: calc(12 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>h6>span {
    line-height: 1.3;
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol {
    flex-wrap: wrap;
    gap: 1em;
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol>li {
    flex: 0 1 calc((100% - 1em) / 2);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dd b {
    font-size: calc(15 / 375 * 100vw);
    font-weight: 600;
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl dd {
    margin-bottom: 0;
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt dl {
    font-size: calc(9 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt>div>p {
    font-size: calc(13 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li>ol li .receipt_bottom {
    font-size: calc(12 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li .point {
    font-size: calc(16 / 375 * 100vw);
  }

  .sb5 .sb5_list>li>ul>li.step2_in2 .step2_up_ex>li .point_bottom {
    font-size: calc(14 / 375 * 100vw);
    padding-left: 0;
    padding-right: 0;
  }

  .sb5 .sb5_list>li .step3_flex {
    flex-direction: column;
  }

  .sb5 .sb5_list>li .step3_flex>figure {
    flex: 1;
  }

  .sb5 .sb5_list>li .step3_flex>div .step3_desc {
    font-size: calc(14 / 375 * 100vw);
  }
}

.sb6 {
  background-color: rgba(255, 255, 255, 0.21);
}

.sb6.sb .sbh {
  padding-bottom: 3em;
}

.sb6 .sbc button {
  font-size: 125%;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #552906;
  border-radius: 100em;
  padding: 0.7em 0;
  border: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 3em;
  position: relative;
  transition: all ease 0.3s;
  cursor: pointer;
}

.sb6 .sbc button:before {
  content: "";
  display: block;
  width: 1.4em;
  height: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: 1em;
  top: calc(50% - 1.5px);
  transition: all ease 0.3s;
}

.sb6 .sbc button:after {
  content: "";
  display: block;
  height: 1.4em;
  width: 3px;
  background-color: #fff;
  border-radius: 6.25em;
  position: absolute;
  right: calc(1.7em - 1.5px);
  top: calc(50% - 0.7em);
  transition: all ease 0.3s;
}

.sb6 .sbc button:hover {
  opacity: 0.7;
}

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

.sb6 .sbc button.open:after {
  transform: rotate(90deg);
}

.sb6 .sbc>p {
  line-height: 2;
  font-size: 125%;
  text-align: center;
  font-weight: 800;
  padding-bottom: 2em;
}

.sb6 .sbc .sb6_in {
  display: none;
  max-width: 48.5em;
  margin: 0 auto;
  text-align: left;
  font-size: 87.5%;
  color: #000;
}

.sb6 .sbc .sb6_in .come {
  text-indent: -1em;
  margin-left: 1em;
}

.sb6 .sbc .sb6_in .come2 {
  text-indent: -0.5em;
  margin-left: 0.5em;
}

.sb6 .sbc .sb6_in .come3 {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.sb6 .sbc .sb6_in hr {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 0;
  border-top: 1px solid #a8a8a8;
}

@media screen and (max-width: 600px) {
  .sb6 .sbc>p {
    font-size: calc(14 / 375 * 100vw);
  }

  .sb6 .sbc>ul>li h3 {
    font-size: calc(14 / 375 * 100vw);
    padding-right: 3em;
    border-radius: 1em;
    padding-left: 2.5em;
  }

  .sb6 .sbc>ul>li {
    margin-bottom: calc(30 / 375 * 100vw);
  }

  .sb6 .sbc>ul>li h3 button {
    width: calc(15 / 375 * 100vw);
    height: calc(15 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
  }

  .sb6 .sbc>ul>li h3 button:before {
    top: calc(7.5 / 375 * 100vw - 1.5px);
  }

  .sb6 .sbc>ul>li h3 button:after {
    left: calc(7.5 / 375 * 100vw - 1.5px);
  }

  .sb6 .sbc>ul>li h3:before {
    left: 1em;
  }
}

.page_contents .sb7 {
  padding-top: 6.25em;
  padding-bottom: 6.25em;
}

.page_contents .sb7 .comp_contact {
  max-width: 37.5em;
  margin: 0 auto;
  color: #fff;
  background-color: #785537;
  border-radius: 0.625em;
  padding: 1.25em 3.125em;
  margin-bottom: 2em;
}

.page_contents .sb7 .comp_contact h3 {
  background-color: #fff;
  color: #785537;
  font-size: 112.5%;
  padding: 0.2em 0 0.3em 0;
  border-radius: 100em;
  margin-bottom: 0.5em;
}

.page_contents .sb7 .comp_contact .comp_contact_txt {
  font-size: 112.5%;
}

.page_contents .sb7 .comp_contact a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 218.75%;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.2em;
}

.page_contents .sb7 .comp_contact .comp_contact_small small {
  font-size: 100%;
}

@media screen and (max-width: 600px) {
  .comp .comp_contact {
    padding: 0.9375em 0.625em;
  }

  .comp .comp_contact h3 {
    font-size: 87.5%;
    line-height: 1.3;
    padding: 0.5em 0;
  }

  .comp .comp_contact .comp_contact_txt {
    font-size: 87.5%;
  }

  .comp .comp_contact a {
    font-size: 156.25%;
  }

  .comp .comp_contact .comp_contact_small {
    line-height: 1.2;
  }

  .comp .comp_contact .comp_contact_small small {
    font-size: 75%;
  }

  .page_contents .sb7 .comp_contact {
    padding: calc(15 / 375 * 100vw) calc(10 / 375 * 100vw);
  }

  .page_contents .sb7 .comp_contact h3 {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.3;
    padding: 0.5em;
  }

  .page_contents .sb7 .comp_contact .comp_contact_txt {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.3;
  }

  .page_contents .sb7 .comp_contact a {
    font-size: calc(25 / 375 * 100vw);
  }

  .page_contents .sb7 .comp_contact .comp_contact_small small {
    font-size: calc(12 / 375 * 100vw);
  }

  .page_contents .sb7 {
    padding: calc(50 / 375 * 100vw) 0;
  }
}

.page_copy {
  color: #818181;
  font-size: 75%;
  padding-bottom: 2em;
}

.to_top {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  font-size: 100%;
  width: 7em;
  height: 7em;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 11;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  transition: all ease 0.3s;
}

@media screen and (max-width:600px) {
  .to_top {
    width: 4.5em;
    height: 4.5em;
  }
}

.to_top:hover {
  opacity: 0.8;
}

.kv {
  z-index: 10;
  position: relative;
  aspect-ratio: 3000 / 1756;
  background-image: url(../img/kv/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.kv .title1 {
  z-index: 10;
  position: absolute;
  left: -1%;
  right: 0;
  margin: auto;
  width: 48%;
  top: 5%;
  transition: all ease 0.3s;
  opacity: 0;
  transform: translate3d(0, 1em, 0);
}

.kv.active .title1 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kv .title2 {
  z-index: 10;
  position: absolute;
  left: -1%;
  right: 0;
  margin: auto;
  width: 62%;
  top: 17%;
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(0, 1em, 0) scale(1.1);
  transition-delay: 0.2s;
}

.kv.active .title2 {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.kv .fukidashi {
  z-index: 10;
  position: absolute;
  bottom: 59%;
  right: 3%;
  width: 39.5%;
  opacity: 0;
  transition: all ease 0.2s;
  transform: translate3d(0, 1em, 0);
  transition-delay: 0.4s;
}

.kv.active .fukidashi {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kv .fukidashi>figure:first-child {
  position: absolute;
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(0, 1em, 0);
  transition-delay: 0.6s;
}

.kv .fukidashi>figure:first-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kv .fukidashi>figure:last-child {
  position: absolute;
  top: -12vw;
  right: 3%;
  width: 40%;
}

.kv .kv_products {
  z-index: 10;
  position: absolute;
  top: 39%;
  left: 7%;
  width: 41%;
  height: 52%;
}

.kv .kv_products>div:first-child {
  position: absolute;
  right: 4%;
  width: 51%;
  top: 0;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translate3d(0, 2em, 0);
  transition-delay: 0.4s;
}

.kv.active .kv_products>div:first-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kv .kv_products>div:first-child>figure:first-child {
  position: absolute;
  right: -22%;
  width: 37%;
  bottom: 19%;
}

.kv .kv_products>div:last-child {
  position: absolute;
  left: 16%;
  width: 39%;
  top: 12%;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translate3d(0, 2em, 0);
  transition-delay: 0.3s;
}

.kv.active .kv_products>div:last-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kv .kv_products>div:last-child>figure:first-child {
  position: absolute;
  left: -48%;
  width: 61%;
  top: -14%;
}

.kv .date {
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.kv .sakura_left {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 21%;
  opacity: 0;
  transition: all ease 0.5s;
  transform: scale(0.95) rotate(3deg);
  transform-origin: left top;
}

.kv.active .sakura_left {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.kv .sakura_right {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  width: 22%;
  opacity: 0;
  transition: all ease 0.5s;
  transform: scale(0.95) rotate(-3deg);
  transform-origin: right top;
}

.kv.active .sakura_right {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@media screen and (max-width:600px) {
  .kv {
    aspect-ratio: 750 / 1060;
  }

  .kv .title1 {
    left: 0%;
    right: 0;
    width: 63%;
    top: 3.5%;
  }

  .kv .title2 {
    width: 83%;
    top: 12%;
  }

  .kv .kv_products {
    top: 25%;
    left: 4%;
    width: 84%;
    height: 55%;
  }

  .kv .kv_products>div:first-child {
    right: 6%;
    width: 45%;
    top: 0;
  }

  .kv .kv_products>div:last-child {
    left: 24%;
    width: 34%;
    top: 8%;
  }

  .kv .kv_products>div:last-child>figure:first-child {
    left: -51%;
    width: 63%;
    top: 5%;
  }

  .kv .kv_products>div:first-child>figure:first-child {
    right: -15%;
    width: 38%;
    bottom: 20%;
  }

  .kv .fukidashi {
    bottom: 37%;
    right: 8%;
    width: 82.5%;
  }

  .kv .fukidashi>figure:last-child {
    top: -16vw;
    right: 73%;
    width: 35%;
  }

  .kv .sakura_left {
    width: 34%;
  }

  .kv .sakura_right {
    width: 34%;
  }
}

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