@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: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  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 {
  10% {
    /* 上から落ちてくる */
    transform: translateY(0);
  }

  15% {
    /* 落ちてきた衝撃で縦に少しつぶれる */
    transform: scale(1.1, 0.9);
  }

  20% {
    /* 落ちてきた衝撃で縦にさらに少しつぶれる */
    transform: scale(1.1, 0.8);
  }

  30% {
    /* 縦につぶれながらもつぶれた反動で少し横に伸びる */
    transform: scale(1.15, 0.7);
  }

  45% {
    /* 縦につぶれた反動で横に伸びる */
    transform: scale(1.2, 0.5);
  }

  50% {
    /* つぶれた反動で一気に縦に伸びる */
    transform: scale(0.85, 1.15);
  }

  60% {
    /* 伸びた反動で縦につぶれる */
    transform: scale(1.1, 0.9);
  }

  70% {
    /* つぶれた反動で縦に少し伸びる */
    transform: scale(0.95, 1.08);
  }

  90% {
    /* 伸びた反動でほんの少し縦につぶれる */
    transform: scale(0.98, 1.02);
  }

  100% {
    /* 通常のサイズになる */
    transform: scale(1, 1);
  }
}

html {
  scroll-behavior: smooth;
}

html body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #1A1A1A;
}

.wapper {
  max-width: 930px;
  padding: 0 5vw;
  margin: 0 auto;
}

main {
  line-height: 1.445;
  text-align: left;
  overflow: hidden;
  background-color: #e20001;
}

main button {
  cursor: pointer;
}

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

main a {
  text-decoration: none;
}

main ul,
main ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

main p,
main figure {
  margin: 0;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  margin: 0;
}

.wrap {
  padding: 0 1.53125rem;
  margin-left: auto;
  margin-right: auto;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 800px) {
  .rwd_show {
    display: inline;
  }

  .rwd_hide {
    display: none;
  }

  .wrap {
    padding: 0;
  }
}

.logo {
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  max-width: 100px;
}

.brand {
  position: absolute;
  right: 20px;
  height: auto;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 4.5625em;
}

.brand img {
  width: 100%;
}

.brand a {
  display: block;
}

@media screen and (max-width: 600px) {
  .logo {
    width: 2.75rem;
  }

  .logo img {
    width: 100%;
  }

  header {
    height: 2.8125rem;
  }

  .brand {
    width: 2.75rem;
  }
}

.sb {
  margin: 6.4rem 0;
}

.sb .sbh {
  position: relative;
  text-align: center;
}

.sb .sbh .en {
  position: relative;
  z-index: 2;
  height: 1.6rem;
  margin: 0 auto;
  padding-top: 0.2rem;
}

.sb .sbh .en img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.sb .sbh h2 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  padding-top: 1.2rem;
  font-weight: 900;
}

.sb .title {
  text-align: center;
  color: #fff;
  font-size: 1.875rem;
  background-color: #F00000;
  padding: 0.55em 0;
}

.sb .sbc {
  max-width: 58.125rem;
  margin: 0 auto;
}

.sb .sbc_text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width: 800px) {
  .sb .title {
    font-size: 1.25rem;
  }

  .sb {
    margin-top: 2rem;
  }

  .sb .sbc {
    padding: 1.3rem;
  }

  .sb .sbh h2 {
    font-size: 1.375rem;
    padding-top: 0.3rem;
  }

  .sb .sbh .en {
    line-height: 1;
    padding-top: 0;
    height: 0.8rem;
  }

  .sb .sbc_text {
    font-size: 0.875rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
  }
}

.kv {
  margin-bottom: 7.9rem;
}

@media screen and (max-width: 800px) {
  .kv {
    margin-bottom: 2rem;
  }
}

.buttons {
  gap: 3rem;
  display: flex;
  margin-top: 3rem;
  transition: all ease 0.3s;
}

.buttons a {
  background-color: #F00000;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: block;
  flex: 1;
  position: relative;
  padding: 0.9rem;
  font-size: 1.125rem;
}

.buttons a b {
  font-size: 1.375rem;
  font-weight: inherit;
}

.buttons a:after {
  content: "";
  display: block;
  width: 1.8125rem;
  height: 100%;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 1rem;
  top: 0;
}

.buttons a.blue {
  background-color: #0F4EFB;
}

.buttons a {
  transition: all ease 0.3s;
}

.buttons a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .buttons {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.8rem;
  }

  .buttons a {
    font-size: 0.875rem;
  }

  .buttons a b {
    font-size: 1.125rem;
  }

  .buttons a:after {
    width: 1.4125rem;
    right: 0.3rem;
  }
}

.page_nav {
  max-width: 54rem;
  margin: 0 auto;
}

.page_nav ul {
  display: flex;
}

.page_nav ul li {
  flex: 1;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-left: -1px;
  box-sizing: border-box;
}

.page_nav ul li a {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  display: block;
  text-align: center;
  transition: all ease 0.3s;
  line-height: 2.3;
}

.page_nav ul li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .page_nav {
    padding: 0 1.6rem;
  }

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

  .page_nav ul li {
    flex: 0 1 50%;
  }

  .page_nav ul li a {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.sbh_bgs {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.sbh_bg {
  display: flex;
  animation: loop-slide 40s infinite linear 1s both;
}

.sbh_bg>* img {
  width: auto;
  height: 10rem;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 800px) {
  .sbh_bg>* img {
    height: 4rem;
  }
}

.marker_fy {
  background-color: #F2E03C;
}

.marker {
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 0 0.3em;
}

.marker>span {
  position: relative;
  z-index: 2;
}

.marker:before {
  content: "";
  display: block;
  background-color: #F00000;
  width: 100%;
  height: 86%;
  position: absolute;
  left: 0%;
  top: 10%;
  z-index: 1;
  transition: all ease 0.3s;
  transform: scaleX(0.1);
  transform-origin: left;
  transition-delay: 0.3s;
}

.marker.active:before {
  transform: scaleX(1);
}

.fcr {
  color: #E20000;
}

.sbSbout {
  padding-bottom: 5.9rem;
  margin-bottom: 0;
  margin-top: 3.6rem;
}

.sbSbout .about_bottom {
  background-color: rgba(255, 255, 255, 0.9490196078);
  width: 53rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.7rem 3rem;
  box-sizing: border-box;
  /* color: #E20000; */
  font-weight: 600;
  font-size: 1.125rem;
}

.sbSbout .about_bottom ul {
  line-height: 1.7;
}

.sbSbout .about_bottom ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sbSbout .about_bottom .sp_show {
  display: none;
}

.sbSbout .about_bottom2 {
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.9490196078);
  width: 53rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.7rem 3rem;
  box-sizing: border-box;
  font-size: 0.8125rem;
}

.sbSbout .sbh h2 {
  padding-top: 1.2rem;
}

.sbSbout .bggraph {
  background-image: url(../img/about_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3.9rem;
  height: 34.6rem;
  box-sizing: border-box;
  padding: 2.6rem 6.4rem;
  margin-bottom: 2.7rem;
}

.sbSbout .bggraph .about_box {
  background-color: rgba(255, 255, 255, 0.9490196078);
  padding: 1.9rem 0;
  text-align: center;
  margin-bottom: 2.3rem;
}

.sbSbout .bggraph .about_box p:nth-child(1) {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.sbSbout .bggraph .about_box p:nth-child(1) b {
  font-size: 2rem;
  font-weight: 600;
}

.sbSbout .bggraph .about_box p:nth-child(2) {
  font-size: 0.75rem;
}

.sbSbout .bggraph .about_more {
  background-color: rgba(255, 255, 255, 0.9490196078);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 600;
  position: relative;
  line-height: 1.4;
}

.sbSbout .bggraph .about_more .fcr {
  font-size: 1.75rem;
  font-weight: 800;
}

.sbSbout .bggraph .about_more figure {
  width: 7.8rem;
  position: absolute;
  top: -2rem;
  left: 7rem;
}

.sbSbout.sb .sbc {
  max-width: 64.125rem;
}

.sbSbout {
  position: relative;
}

.sbSbout:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -11rem;
  width: 15.5rem;
  height: 26.875rem;
  background-image: url(../img/l-dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-name: animate73;
  animation-duration: 1s !important;
  transform-origin: center left;
}

.sbSbout:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 10rem;
  width: 9.25rem;
  height: 15.375rem;
  background-image: url(../img/r-dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-name: animate73;
  animation-duration: 1s !important;
  animation-delay: 0.5s;
  transform-origin: center right;
}

@media screen and (max-width: 800px) {
  .sbSbout {
    margin-top: 2.8rem;
    padding-bottom: 3.8rem;
  }

  .sbSbout .sbh h2 {
    padding-top: 0.5rem;
  }

  .sbSbout .bggraph {
    background-image: url(../img/sp/about_bg.png);
    margin-top: 2.5rem;
    height: 28.6rem;
    padding: 2.3rem 1.6rem;
    margin-bottom: 0.7rem;
  }

  .sbSbout.sb .sbc {
    max-width: 20.3125rem;
  }

  .sbSbout .bggraph .about_box p:nth-child(1) {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .sbSbout .bggraph .about_box p:nth-child(1) b {
    font-size: 1.125rem;
  }

  .sbSbout .bggraph .about_box {
    padding: 0.7rem 0;
    padding-bottom: 1.7rem;
    margin-bottom: 2.4rem;
  }

  .sbSbout .bggraph .about_box p:nth-child(2) {
    font-size: 0.625rem;
  }

  .sbSbout .bggraph .about_more {
    font-size: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 1rem;
  }

  .sbSbout .bggraph .about_more .fcr {
    font-size: 1.125rem;
  }

  .sbSbout .bggraph .about_more figure {
    width: 4.1rem;
    top: -1.1rem;
    left: 1.8rem;
  }

  .sbSbout .about_bottom>* {
    display: none;
  }

  .sbSbout .about_bottom {
    font-size: 0.75rem;
    padding: 0.7rem 1rem;
    line-height: 1;
    width: auto;
    border: 1px solid #000;
    box-sizing: border-box;
  }

  .sbSbout .about_bottom .sp_show {
    display: block;
    line-height: 1.5;
  }

  .sbSbout .about_bottom2 {
    font-size: 0.625rem;
    padding: 0.7rem 1rem;
    width: auto;
    border: 1px solid #000;
    box-sizing: border-box;
  }
}

.sbCampaign {
  position: relative;
  color: #fff;
  margin: 5rem 0;
}

.sbCampaign:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 12.9rem);
  transform: skew(0deg, -3deg);
  background-color: #1A1A1A;
  position: absolute;
  left: 0;
  top: -5.1rem;
}

.sbCampaign .sbh {
  margin-bottom: 6.6rem;
}

.sbCampaign .sbh h2 {
  padding-top: 2.5rem;
}

.sbCampaign.sb .sbh .en {
  height: 1.2rem;
  margin-bottom: 0.5rem;
}

.sbCampaign .sbh_bgs {
  top: 1.4rem;
}

.sbCampaign .sbc {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  .sbCampaign:before {
    transform: skew(0deg, -5.8deg);
    top: -3.7rem;
    height: calc(100% + 6.2rem);
  }

  .sbCampaign {
    margin: 3rem 0 0;
  }

  .sbCampaign .sbh h2 {
    padding-top: 1.6rem;
  }

  .sbCampaign.sb .sbh .en {
    height: 0.8rem;
  }

  .sbCampaign .sbh {
    margin-bottom: 1.7rem;
  }
}

.sbc_w {
  background-color: #fff;
  padding: 3.3rem;
  padding-bottom: 2.5rem;
}

.sbc_w.sbc_wG {
  background-color: #C1AE74;
}

@media screen and (max-width: 800px) {
  .sbc_w {
    padding: 0.7rem 1.2rem;
  }
}

.fukidashi {
  height: 5.4rem;
  height: 6.75rem;
  text-align: center;
  margin-bottom: 1.9rem;
}

.fukidashi img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .fukidashi {
    height: 4.5625rem;
    margin-bottom: 0.7rem;
  }
}

.sbPresents {
  margin-bottom: 5.6rem;
  padding-top: 8.5rem;
}

.sbPresents .sbcPresents {
  margin-bottom: 4.3rem;
}

.sbPresents .course_bottom_text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.sbPresents .course_bottom_text b {
  font-size: 1.75rem;
  font-weight: normal;
}

.sbPresents .wrap {
  padding-top: 3.8rem;
}

.sbPresents .present_box {
  background-color: #fff;
}

.sbPresents .present_box h3 {
  background-color: #1A1A1A;
  color: #fff;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  padding: 0.9rem;
}

.sbPresents .present_box h3>b {
  font-size: 2.375rem;
  font-weight: 600;
}

.sbPresents .present_box h3>b>b {
  font-size: 3rem;
  font-weight: 600;
}

.sbPresents .present_box h3 i {
  font-style: normal;
}

.sbPresents .present_box h3 small {
  display: block;
  background-color: #fff;
  font-size: 1.125rem;
  width: 15rem;
  text-align: center;
  padding: 0.3rem;
  margin-left: auto;
  margin-right: auto;
}

.sbPresents .course_products {
  /* display: flex; */
  /* gap: 1rem; */
  position: relative;
}

.sbPresents .course_products figure {
  flex: 0 1 48%;
  padding-top: 2rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.sbPresents .course_productsB .figures {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sbPresents .course_productsB .figures li {
  flex: 0 1 calc((100% - 2rem) / 3);
}

.sbPresents .course_productsB .figures li figure {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.sbPresents .course_productsB .figures li figure figcaption {
  margin-top: 0.5rem;
}

.present_box .marker_red {
  color: #E20000;
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
  display: block;
}




@media screen and (max-width:800px) {
  .sbPresents .course_productsB .figures {
    row-gap: 2rem;
  }

  .sbPresents .course_productsB .figures li {
    flex: 0 1 calc((100% - 1rem) / 2);
  }

  .sbPresents .course_productsB .figures li figure {
    width: 90%;
  }

  .sbPresents .course_productsB .figures li figure figcaption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
  }

  .present_box .marker_red {
      font-size: 0.875rem;
      margin-top: 5px;
      text-align: center;
  }
}

.sbPresents .course_products .batch1 {
  width: 9.8125rem;
  position: absolute;
  left: -7rem;
  top: -7.1rem;
}

.sbPresents .course_products .batch2 {
  width: 9.8125rem;
  position: absolute;
  left: -7rem;
  top: -15.1rem;
}

.sbPresents .course_products>div {
  flex: 1;
  padding-top: 2.8rem;
  padding-left: 4rem;
}

.sbPresents .course_products>div h4 {
  font-size: 1.88rem;
  margin-bottom: 0.6rem;
}

.sbPresents .course_products>div h4 small {
  font-size: 1.125rem;
}

.sbPresents .course_products>div h4 i {
  font-style: normal;
}

.sbPresents .course_products>div h4 b {
  font-size: 1.5rem;
  font-weight: 600;
}

.sbPresents .course_products>div>p {
  font-size: 1.125rem;
  font-weight: 600;
}

.sbPresents .course_productsB>figure {
  padding-top: 11rem;
}

.sbPresents .course_productsB>div {
  padding-top: 4.1rem;
}

.sbPresents .course_productsB>div h4 {
  margin-bottom: 1.2rem;
}

.sbPresents .course_productsB>div>h5 {
  font-size: 1.125rem;
}

@media screen and (max-width:800px) {
  .sbPresents .course_productsB>div>h5 {
    font-size: 1rem;
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}

.sbPresents .course_productsB>div p {
  line-height: 1.6;
}

.sbPresents .course_productsB .presents_desc {
  margin-top: 1.4rem;
}

.sbPresents .presents_desc {
  margin-top: 2.3rem;
  margin-bottom: 2rem;
}

.sbPresents .presents_desc>p {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 1em;
}

.sbPresents .presents_desc>div {
  background-color: rgba(242, 224, 60, 0.4);
  padding: 1.2rem 1.4rem;
}

.sbPresents .presents_desc>div h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  margin-left: -0.3rem;
}

.sbPresents .presents_desc>div ul {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.sbPresents .presents_desc>div ul:last-child {
  margin-bottom: 0;
}

.sbPresents .sbcPresents2 .fukidashi {
  height: 5.2rem;
}

.sbPresents .sbcPresents2 .present_box h3 {
  font-size: 1.5rem;
  margin-top: 0.4rem;
}

.sbPresents .sbcPresents2 .present_box h3>b {
  font-size: 1.875rem;
}

.sbPresents .sbcPresents2 .sbc_w h4 {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.7;
  margin-bottom: 2.3rem;
}

.sbPresents .sbcPresents2 .sbc_w h4 .marker2 {
  display: inline-block;
  font-size: 1.5rem;
}

.sbPresents .sbcPresents2 .sbc_wG {
  margin-top: 3.3rem;
  padding: 2.7rem 4rem;
  color: #fff;
  padding-bottom: 3rem;
  position: relative;
}

.sbPresents .sbcPresents2 .sbc_wG .bub {
  position: absolute;
  width: 7.8rem;
  top: -2.5rem;
  left: 8.4rem;
}

.sbPresents .sbcPresents2 .sbc_wG h4.sp_show {
  display: none;
}

.sbPresents .sbcPresents2 .sbc_wG h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.sbPresents .sbcPresents2 .sbc_wG h4 .marker {
  font-size: 2.125rem;
}

.sbPresents {
  position: relative;
}

.sbPresents:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 20rem;
  width: 15.5rem;
  height: 26.875rem;
  background-image: url(../img/l-dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-name: animate73;
  animation-duration: 1s !important;
  transform-origin: center left;
}

.sbPresents:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 10rem;
  width: 9.25rem;
  height: 15.375rem;
  background-image: url(../img/r-dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-name: animate73;
  animation-duration: 1s !important;
  animation-delay: 0.5s;
  transform-origin: center right;
}

.sbPresents .sbcPresents2 .sbc_w {
  position: relative;
}

.sbPresents .sbcPresents2 .sbc_w .types {
  font-size: 32px;
  color: #000;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
} 





@media screen and (max-width: 800px) {
  .sbPresents {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5.1rem;
    padding-bottom: 1.6rem;
  }

  .sbPresents:before {
    display: none;
  }

  .sbPresents:after {
    display: none;
  }

  .sbPresents .wrap {
    padding-top: 1.9rem;
  }

  .sbPresents .present_box h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .sbPresents .present_box h3>b {
    font-size: 1.375rem;
  }

  .sbPresents .present_box h3>b>b {
    font-size: 1.75rem;
  }

  .sbPresents .present_box h3 i {
    font-size: 1.25rem;
  }

  .sbPresents .course_products {
    flex-direction: column;
  }

  .sbPresents .course_products>div h4 {
    font-size: 1.375rem;
    padding-left: 3.8rem;
  }

  .sbPresents .course_products>div {
    padding-top: 0;
    padding-left: 0;
  }

  .sbPresents .course_products .batch1 {
    width: 6.4rem;
    left: -2.3rem;
    top: -1.4rem;
  }

  .sbPresents .course_products>div h4 i {
    font-size: 1rem;
    display: inline;
  }

  .sbPresents .course_products>div h4 small {
    font-size: 1.125rem;
  }

  .sbPresents .course_products>div h4 b {
    font-size: 1.5rem;
  }

  .sbPresents .course_products>div>p {
    text-align: center;
    font-size: 0.875rem;
  }

  .sbPresents .course_products figure {
    flex: 1;
    padding-top: 0.8rem;
    width: 17rem;
    margin: 0 auto;
  }

  .course_product_b {
    text-align: center;
  }

  .course_product_b img {
    width: 120%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .sbPresents .presents_desc>div {
    padding: 0.7rem 0.8rem;
  }

  .sbPresents .presents_desc>div h4 {
    font-size: 0.875rem;
    margin-bottom: 0.7rem;
  }

  .sbPresents .presents_desc>div>h5 {
    font-size: 0.875rem;
    margin-bottom: 0.7rem;
  }

  .sbPresents .presents_desc>div p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .sbPresents .presents_desc>div ul {
    font-size: 0.75rem;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
  }

  .sbPresents .presents_desc>div ul li {
    text-indent: -1em;
    margin-left: 1em;
  }

  .sbPresents .presents_desc>p {
    font-size: 0.75rem;
  }

  .sbPresents .presents_desc {
    margin-bottom: 1rem;
  }

  .sbPresents .course_products .batch2 {
    width: 6.5125rem;
    left: -2.5rem;
    top: -0.2rem;
  }

  .sbPresents .course_productsB>div h4 {
    margin-bottom: 0.6rem;
    margin-top: 1.8rem;
    padding-left: 4.1rem;
  }

  .sbPresents .course_products>div>.course_products_desc1 {
    text-align: left;
    margin-bottom: 1rem;
    margin-left: 0.8rem;
    line-height: 1.8;
  }

  .sbPresents .course_productsB>div>p {
    text-align: center;
    line-height: 1.9;
  }

  .sbPresents .course_productsB figure {
    width: 15rem;
    padding-top: 0;
  }

  .sbPresents .course_bottom_text {
    font-size: 1rem;
    margin-top: 1.3rem;
    margin-bottom: 2.1rem;
  }

  .sbPresents .course_bottom_text b {
    font-size: 1.25rem;
  }

  .sbPresents .sbcPresents {
    margin-bottom: -0.1rem;
  }

  .sbPresents .sbcPresents2 .fukidashi {
    height: 3.9rem;
    margin-bottom: 0.9rem;
  }

  .sbPresents .sbcPresents2 .present_box h3 {
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.3rem;
  }

  .sbPresents .sbcPresents2 .present_box h3>b {
    font-size: 1.375rem;
  }

  .sbPresents .present_box h3 small {
    margin-top: 0.5rem;
  }

  .sbPresents .sbcPresents2 .sbc_w h4 {
    font-size: 1.5rem;
    padding-top: 1rem;
    line-height: 1.3;
  }

  .sbPresents .sbcPresents2 .sbc_w h4 .marker2 {
    font-size: 1.125rem;
  }

  .sbPresents .sbcPresents2 .sbc_wG {
    margin-top: 2.5rem;
    padding: 2.2rem 1.3rem;
  }

  .sbPresents .sbcPresents2 .sbc_w.sbc_wG h4.pc_show {
    display: none;
  }

  .sbPresents .sbcPresents2 .sbc_w.sbc_wG h4.sp_show {
    display: inline-block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .sbPresents .sbcPresents2 .sbc_wG h4 .marker {
    font-size: 1.5rem;
  }

  .sbPresents .sbcPresents2 .sbc_wG .bub {
    width: 5.3rem;
    top: -0.2rem;
    left: 0rem;
  }

  .sbPresents .sbcPresents2 .sbc_w .types {
    font-size: 22px;
    padding: 4px 25px;
    left: auto;
    right: 0;
    top: 8em;
  }
}

.marker2 {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.sbProducts {
  background-color: #fff;
  margin-top: 0rem;
  margin-bottom: 0;
  padding-top: 4rem;
}

.sbProducts .sbc {
  padding-top: 3.4rem;
  padding-bottom: 5.3rem;
}

.sbProducts .products_list {
  display: flex;
  margin: 0;
  margin-top: 2rem;
  margin-bottom: 3.3rem;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 4rem;
}

.sbProducts .products_list>* {
  flex: 0 1 33.3333333333%;
  text-align: center;
}

.sbProducts .products_list>* figure {
  margin-left: auto;
  margin-right: 1rem;
  width: 15rem;
  margin-bottom: -1.1rem;
}

.sbProducts .products_list>* p {
  font-size: 1.125rem;
  font-weight: 600;
}

.sbProducts .products_bottom {
  max-width: 51rem;
  margin: 0 auto;
  font-size: 0.875rem;
}

.sbProducts .products_bottom li {
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 800px) {
  .sbProducts {
    padding-top: 3rem;
  }

  .sbProducts .sbc {
    padding-top: 1.9rem;
  }

  .sbProducts .products_list {
    margin-top: 0;
    margin-bottom: 2.2rem;
  }

  .sbProducts .products_list>* {
    flex: 0 1 50%;
  }

  .sbProducts .products_list>*:last-child {
    flex: 0 1 100%;
  }

  .sbProducts .products_list>* p {
    font-size: 0.9375rem;
  }

  .sbProducts .products_list>* figure {
    width: 8.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1.8rem;
    margin-top: -0.6rem;
  }

  .sbProducts .products_bottom {
    font-size: 0.75rem;
  }
}

.dot:before {
  content: "";
  display: block;
  width: 13.0625rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 23rem;
  background-image: url(../img/dot_left.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.dot:after {
  content: "";
  display: block;
  width: 13.0625rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 23rem;
  background-image: url(../img/dot_right.png);
  background-repeat: no-repeat;
  background-size: contain;
}

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

  .dot:before,
  .dot:after {
    display: none;
  }
}

.sbApp {
  padding-top: 3rem;
  margin-top: 0;
  margin-bottom: 7.3rem;
}

.sbApp .wrap {
  position: relative;
}

.sbApp .sbh {
  margin-bottom: 4.2rem;
}

.sbApp .sbc_text {
  color: #fff;
}

.sbApp .steps {
  margin-top: 5.3rem;
}

.sbApp .steps .sbc_w {
  position: relative;
  border-top: 0.6rem solid #1A1A1A;
  padding: 2rem 3.3rem;
  margin-bottom: 5.3rem;
}

.sbApp .steps .sbc_w h3 {
  position: absolute;
  width: 5.8rem;
  top: -2.7rem;
  left: 3.5rem;
}

.sbApp .steps .sbc_w .step_flex {
  display: flex;
}

.sbApp .steps .sbc_w .step_flex>div:first-child {
  flex: 0 1 54%;
  padding-top: 1rem;
}

.sbApp .steps .sbc_w h4 {
  font-size: 1.5rem;
  text-decoration: underline;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sbApp .steps .sbc_w .steps_desc {
  font-weight: 600;
}

.sbApp .steps .sbc_w .buttons {
  flex: 1;
  margin-top: 0;
  flex-direction: column;
  gap: 0.7rem;
}

.sbApp .steps .sbc_w .buttons a {
  padding: 0.7rem;
  border: 3px solid #1A1A1A;
}

.sbApp .steps .sbc_w.sbc_w_step2 .step_flex {
  justify-content: space-between;
}

.sbApp .steps .sbc_w.sbc_w_step2 .step_flex>figure {
  flex: 0 1 12.875rem;
}

.sbApp .steps .sbc_w.sbc_w_step2 .step_flex>div {
  flex: 1;
}

.sbApp .steps .sbc_w.sbc_w_step2 .step_flex>div ul {
  margin-top: 2rem;
}

.sbApp .steps .sbc_w.sbc_w_step2 .step_flex>div ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sbApp .steps .sbc_w.sbc_w_step3 {
  padding-bottom: 3.9rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .steps_desc {
  margin-bottom: 2.5rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex {
  gap: 2rem;
  margin: 0 -1rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div {
  position: relative;
  padding-top: 0;
  flex: 1;
  border: 3px solid #e20001;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div h5 {
  padding: 0.2rem;
  background-color: #e20001;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div h5 b {
  font-size: 1.375rem;
  font-weight: 600;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div>div {
  padding: 1rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div>div h6 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div>div h6 small {
  font-size: 0.875rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div>div h6 small b {
  font-size: 1.25rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div>div p {
  font-size: 0.75rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div figure {
  position: absolute;
  top: 7rem;
  right: 0rem;
  width: 39%;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div:last-child div h6 {
  margin-bottom: 0.8rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div:last-child div p {
  margin-bottom: 0.5rem;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div:last-child div p:last-child {
  margin-bottom: 0;
}

.sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div:last-child figure {
  top: 8rem;
  right: 0.5rem;
  width: 41%;
}

.sbApp .steps .sbc_w.sbc_w_step4 {
  position: relative;
  padding-top: 3rem;
  margin-bottom: 4.2rem;
}

.sbApp .steps .sbc_w.sbc_w_step4>figure {
  position: absolute;
  right: 2.7rem;
  top: 1.3rem;
  width: 23%;
}

.sbApp .steps .sbc_w.sbc_w_step4 ul {
  margin-top: 5rem;
}

.sbApp .steps .sbc_w.sbc_w_step4 ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sbApp .step_bottom h3 {
  background-color: #F2E03C;
  text-align: center;
  font-size: 1.5625rem;
  padding: 1.3rem;
}

.sbApp .step_bottom .sbc_w {
  padding-top: 2.4rem;
  padding-bottom: 3.7rem;
}

.sbApp .step_bottom .step_bottom_text1 {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.sbApp .step_bottom .sb5_bottom_in_flex {
  margin-bottom: 0.4rem;
  display: flex;
  gap: 2.9rem;
}

.sbApp .step_bottom .sb5_bottom_in_flex>figure {
  flex: 0 1 48.4%;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div {
  flex: 1;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div>p {
  font-size: 1.125rem;
  font-weight: 600;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div figure {
  margin-top: 1.3rem;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div>ol {
  font-size: 1.25rem;
  font-weight: 600;
  counter-reset: my-counter;
  margin: 0.5rem 0;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div>ol li {
  position: relative;
  padding-left: 1em;
  list-style: none;
  counter-increment: my-counter;
  margin-bottom: 0.2rem;
  color: #F00000;
}

.sbApp .step_bottom .sb5_bottom_in_flex>div>ol li:before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #F00000;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  line-height: 0;
}

.sbApp .step_bottom .step_bottom_text2 {
  text-indent: -1em;
  margin-left: 1em;
}

.sbApp .step_bottom .sb5_bottom_precautions {
  padding-top: 3.8rem;
}

.sbApp .step_bottom .sb5_bottom_precautions h4 {
  text-align: center;
  font-size: 1.5625rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.sbApp .step_bottom .sb5_bottom_precautions ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sbApp .step_bottom .sb5_bottom_precautions>p {
  text-indent: -1em;
  margin-left: 1em;
  color: #F00000;
}

.sbApp .step_bottom .sb5_bottom_ngs {
  padding-top: 3.7rem;
}

.sbApp .step_bottom .sb5_bottom_ngs h4 {
  text-align: center;
  font-size: 1.5625rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.sbApp .step_bottom .sb5_bottom_ngs ul {
  display: flex;
  gap: 1rem;
}

.sbApp .step_bottom .sb5_bottom_ngs ul li {
  flex: 1;
}

@media screen and (max-width: 800px) {
  .sbApp .sbh {
    margin-bottom: -0.4rem;
  }

  .sbApp .steps {
    margin-top: 3.7rem;
  }

  .sbApp .steps .sbc_w h3 {
    width: 4.8rem;
    top: -2.3rem;
    left: 0.7rem;
  }

  .sbApp .steps .sbc_w {
    padding: 1.3rem 1.2rem;
    margin-bottom: 4.3rem;
    padding-bottom: 2rem;
  }

  .sbApp .steps .sbc_w .step_flex {
    flex-direction: column;
  }

  .sbApp .steps .sbc_w .step_flex>div:first-child {
    padding-top: 0rem;
  }

  .sbApp .steps .sbc_w h4 {
    font-size: 1.25rem;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #000;
    margin-bottom: 1rem;
  }

  .sbApp .steps .sbc_w .steps_desc {
    margin-bottom: 1.2rem;
  }

  .sbApp .steps .sbc_w .buttons a {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .sbApp .steps .sbc_w .buttons a b {
    font-size: 1.125rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step2 .step_flex>div ul {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step2 .step_flex>figure {
    width: 13.1rem;
    margin: 0 auto;
    margin-top: 0.3rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 .steps_desc {
    text-align: center;
    margin-bottom: 1.1rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 .step_flex {
    margin: 0;
    gap: 1rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div h5 {
    padding: 0.4rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div figure {
    position: unset;
    width: 71%;
    margin-left: 2rem;
    margin-top: 1rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 .step_flex>div:last-child figure {
    width: 100%;
    margin-left: -0.2rem;
    margin-top: 1.6rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step3 {
    padding-bottom: 1.9rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step4>figure {
    position: unset;
    width: 73%;
    margin: 0 auto;
  }

  .sbApp .steps .sbc_w.sbc_w_step4 {
    padding-top: 2rem;
  }

  .sbApp .steps .sbc_w.sbc_w_step4 ul {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .sbApp .step_bottom h3 {
    font-size: 1.125rem;
    padding: 0.8rem;
  }

  .sbApp .step_bottom .sbc_w {
    padding-top: 1.3rem;
  }

  .sbApp .step_bottom .step_bottom_text1 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .sbApp .step_bottom .sb5_bottom_in_flex {
    flex-direction: column;
    gap: 1.2rem;
  }

  .sbApp .step_bottom .sb5_bottom_in_flex>div>p {
    font-size: 0.9375rem;
  }

  .sbApp .step_bottom .sb5_bottom_in_flex>div>ol {
    font-size: 0.9375rem;
  }

  .sbApp .step_bottom .sb5_bottom_in_flex>div>ol li {
    padding-left: 1.4em;
    line-height: 1.5;
  }

  .sbApp .step_bottom .sb5_bottom_in_flex>div figure {
    width: 106%;
  }

  .sbApp .step_bottom .step_bottom_text2 {
    font-size: 0.75rem;
    line-height: 2;
  }

  .sbApp .step_bottom .sb5_bottom_precautions h4 {
    font-size: 1.125rem;
  }

  .sbApp .step_bottom .sb5_bottom_precautions ul {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .sbApp .step_bottom .sb5_bottom_precautions ul li {
    line-height: 1.5;
  }

  .sbApp .step_bottom .sb5_bottom_precautions {
    padding-top: 1.8rem;
  }

  .sbApp .step_bottom .sb5_bottom_ngs h4 {
    font-size: 1.125rem;
  }

  .sbApp .step_bottom .sb5_bottom_ngs ul {
    flex-wrap: wrap;
  }

  .sbApp .step_bottom .sb5_bottom_ngs ul li {
    flex: 0 1 calc((100% - 1rem) / 2);
  }

  .sbApp .step_bottom .sb5_bottom_ngs {
    padding-top: 2.7rem;
  }

  .sbApp {
    margin-bottom: 2.8rem;
  }
}

.sbFaq {
  margin-bottom: 0;
}

.sbFaq .sbc {
  padding-top: 1.9rem;
}

.sbFaq .sbc .sbc_text {
  margin-left: -2em;
  margin-right: -2em;
  margin-bottom: 2.9rem;
}

.sbFaq .sbc ul li {
  margin-bottom: 2.3rem;
}

.sbFaq .sbc ul li .q {
  background-color: #fff;
  padding: 1rem 2rem;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: pointer;
}

.sbFaq .sbc ul li .q:before {
  content: "Q.";
}

.sbFaq .sbc ul li .q {
  position: relative;
}

.sbFaq .sbc ul li .q button {
  background-color: #000;
  border: 0;
  padding: 0;
  margin: 0;
  width: 1.25rem;
  height: 2px;
  position: absolute;
  right: 1rem;
  top: 50%;
}

.sbFaq .sbc ul li .q button:before {
  content: "";
  display: block;
  width: 2px;
  height: 1.25rem;
  position: absolute;
  top: calc(-0.625rem + 1px);
  left: calc(0.625rem - 1px);
  background-color: #000;
  transition: all ease 0.3s;
}

.sbFaq .sbc ul li.open button:before {
  transform: rotate(90deg);
}

.sbFaq .sbc ul li>div {
  display: none;
}

.sbFaq .sbc ul li>div p {
  padding-left: 4rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.6;
}

.sbFaq .sbc ul li>div p.a {
  padding-left: 4rem;
  color: #fff;
  font-size: 1.125rem;
  position: relative;
}

.sbFaq .sbc ul li>div p.a:before {
  content: "A.";
  font-size: 1.625rem;
  font-weight: 600;
  position: absolute;
  top: -0.5rem;
  left: 1.9rem;
  color: #000;
}

@media screen and (max-width: 800px) {
  .sbFaq .sbc .sbc_text {
    margin-left: 0;
    margin-right: 0;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 1.7rem;
  }

  .sbFaq .sbc ul li .q {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    padding-right: 3rem;
  }

  .sbFaq .sbc ul li>div p.a {
    font-size: 0.875rem;
    padding-left: 2rem;
  }

  .sbFaq .sbc ul li>div p {
    font-size: 0.875rem;
    padding-left: 2rem;
  }

  .sbFaq .sbc ul li>div p.a:before {
    font-size: 1.125rem;
    left: 0.2rem;
  }

  .sbFaq .sbc ul li {
    margin-bottom: 1.3rem;
  }
}

.sbTerms {
  margin-top: 4.6rem;
  margin-bottom: 3rem;
}

.sbTerms .sbc {
  padding-top: 7.5rem;
}

.sbTerms .sbc h3 {
  background-color: #004EFF;
  text-align: center;
  color: #fff;
  font-size: 1.5625rem;
  padding: 1.6rem;
}

.sbTerms .sbc>div>div {
  height: 10rem;
  overflow-y: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.sbTerms .sbc>div>div ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.sbTerms .sbc>div>div ol {
  counter-reset: item;
}

.sbTerms .sbc>div>div ol li {
  text-indent: -1em;
  margin-left: 1em;
  position: relative;
  list-style: none;
}

.sbTerms .sbc>div>div ol li:before {
  counter-increment: item;
  content: counter(item) ". ";
}

.sbTerms .sbh {
  color: #fff;
}

@media screen and (max-width: 800px) {
  .sbTerms {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .sbTerms .sbc {
    padding-top: 2.9rem;
  }

  .sbTerms .sbc h3 {
    font-size: 1.125rem;
  }

  .sbTerms .sbc>div>div {
    font-size: 0.875rem;
    padding: 0 0.7rem;
  }

  .sbTerms .sbc>div>div {
    height: 13rem;
  }

  .sbTerms .sbc_w {
    padding: 1.2rem 0.5rem;
  }
}

.sbTerms .banner {
  margin-top: 4.5rem;
  margin-bottom: 3.8rem;
  background-color: #535353;
  border: 1px solid #fff;
  padding: 3rem 2rem;
  padding-bottom: 3.5rem;
  box-sizing: border-box;
}

.sbTerms .banner h2 {
  font-size: 2.875rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.sbTerms .banner .banner_flex {
  gap: 2rem;
  height: auto !important;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.sbTerms .banner .banner_flex>figure {
  flex: 0 1 30.6%;
}

.sbTerms .banner .banner_flex>div {
  flex: 1;
}

.sbTerms .banner .banner_flex>div p {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
}

.sbTerms .banner a {
  background: linear-gradient(#FFFFFF, #D5D5D5);
  color: #000;
  padding: 1rem;
  border-radius: 100px;
  width: 25rem;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  transition: all ease 0.3s;
}

.sbTerms .banner a:hover {
  opacity: 0.7;
}

.sbTerms .banner a:after {
  content: "";
  display: block;
  width: 0.39875rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 1rem;
  background-image: url(../img/banner_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sbTerms .banner .links {
  height: auto !important;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .sbTerms .banner {
    padding: 2rem 1rem;
  }

  .sbTerms .banner h2 {
    font-size: 1.6875rem;
    margin-bottom: 1rem;
  }

  .sbTerms .banner .banner_flex {
    display: block;
  }

  .sbTerms .banner .banner_flex>figure {
    width: 11.1875rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }

  .sbTerms .banner .banner_flex>div p {
    font-size: 0.875rem;
  }

  .sbTerms .banner a {
    font-size: 0.9375rem;
    width: auto;
  }
}

.bottom_contact .sbc {
  text-align: center;
  border: 3px solid #fff;
  max-width: 37.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.bottom_contact h3 {
  background-color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem;
}

.bottom_contact .form_comp_botton>div {
  background-color: #262626;
  color: #fff;
  padding: 0.5rem 0;
  padding-bottom: 1.5rem;
}

.bottom_contact .form_comp_botton>div h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

.bottom_contact .form_comp_botton>div .email {
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0.3rem 0;
}

.bottom_contact .form_comp_botton>div .contacts {
  margin-bottom: 0.7rem;
}

.bottom_contact .form_comp_botton>div .contacts small {
  font-size: 0.75rem;
}

.bottom_contact .form_comp_botton>div .desc {
  line-height: 1.7;
  font-size: 0.75rem;
}

.main_bottom {
  text-align: center;
  padding: 1.8rem 0 2.3rem 0;
  color: #fff;
  font-size: 0.75rem;
}

@media screen and (max-width: 800px) {
  .bottom_contact {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }

  .bottom_contact h3 {
    font-size: 0.875rem;
    padding: 0.8rem;
  }

  .bottom_contact .form_comp_botton>div {
    padding: 1.1rem 0.9rem;
  }

  .bottom_contact .form_comp_botton>div h4 {
    font-size: 0.875rem;
  }

  .bottom_contact .form_comp_botton>div .email {
    font-size: 1.125rem;
  }

  .bottom_contact .form_comp_botton>div .contacts {
    font-size: 0.75rem;
  }

  .bottom_contact .form_comp_botton>div .desc {
    font-size: 0.75rem;
  }

  .banner {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .bottom_to_top {
    margin-bottom: 0;
  }
}

@keyframes animate73 {
  0% {
    transform: scale(0.92);
  }

  40% {
    transform: scale(0.97);
  }

  60% {
    transform: scale(0.86);
  }

  80% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.92);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

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

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