@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;
  }
}
html {
  scroll-behavior: smooth;
}

.wrap {
  padding: 0 5vw;
}

.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;
  }
}
.page_contents {
  color: #454545;
  background-color: #EDDCEC;
  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: "M PLUS Rounded 1c", 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 {
  padding: 2.5em 0;
  padding-bottom: 0;
}
.page_contents .content_nav ul {
  display: flex;
  justify-content: center;
  gap: 1.0625em;
}
.page_contents .content_nav ul li {
  transition: all ease 0.3s;
}
.page_contents .content_nav ul li a {
  display: block;
  background-color: #fff;
  border-radius: 10rem;
  width: 13.8125em;
  padding: 1rem 0;
  padding-bottom: 1.5rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  box-shadow: 0 0 0.5em rgba(144, 92, 163, 0.3019607843);
  font-size: 118.75%;
  transition: all ease 0.3s;
}
.page_contents .content_nav ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.625em solid #915CA4;
  border-left: 0.46875em solid transparent;
  border-right: 0.46875em solid transparent;
  position: absolute;
  bottom: 0.625em;
  left: 0;
  right: 0;
  margin: auto;
}
.page_contents .content_nav ul li:nth-child(2n) a {
  box-shadow: 0 0 0.5em rgba(177, 211, 24, 0.3019607843);
}
.page_contents .content_nav ul li:nth-child(2n) a:after {
  border-top-color: #B1D318;
}
.page_contents .content_nav ul li:hover {
  transform: scale(1.02);
}
.page_contents .content_nav ul li:hover a {
  box-shadow: 0 0 0.5em #915CA4;
}
.page_contents .content_nav ul li:hover:nth-child(2n) a {
  box-shadow: 0 0 0.5em #B1D318;
}
.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 {
  background-image: url(../img/sv_en_bg.svg);
  background-repeat: no-repeat;
  background-position: center top;
  height: 3rem;
  color: #fff;
  padding-top: 0.7rem;
  font-size: 125%;
  transition: all ease 0.3s;
  opacity: 0;
  transform: translate3d(0, 2em, 0) scale(0.1);
  transition-delay: 0.3s;
}
.page_contents .sb .sbh:before {
  content: "";
  display: block;
  width: 6.625em;
  height: 6.625em;
  background-image: url(../img/sv_shine.svg);
  position: absolute;
  left: 0;
  right: 0;
  top: -4.5em;
  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;
  display: inline-block;
  margin: auto;
  transition: all ease 0.3s;
  transform: scale(0.6);
  transition-delay: 0.3s;
}
.page_contents .sb .sbh h2 img {
  width: auto;
  max-width: 100%;
}
.page_contents .sb .sbh h2:before {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  background-image: url(../img/sv_star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -3.5rem;
  top: -2rem;
  margin: auto;
  transition: all ease 0.3s;
  transition-delay: 0.4s;
  transform: translate3d(-1rem, 1rem, 0) scale(0.1) rotate(45deg);
}
.page_contents .sb .sbh h2:after {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  background-image: url(../img/sv_star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: -6rem;
  bottom: -1rem;
  margin: auto;
  transition: all ease 0.3s;
  transition-delay: 0.5s;
  transform: translate3d(1rem, -1rem, 0) scale(0.1) rotate(45deg);
}
.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;
}

@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;
    gap: calc(15 / 375 * 100vw);
    row-gap: calc(20 / 375 * 100vw);
  }
  .page_contents .content_nav ul li {
    flex: 0 1 calc((100% - 4vw) / 2);
  }
  .page_contents .content_nav ul li a {
    width: auto;
    font-size: 100%;
    line-height: 1.3;
    padding-top: 3.7333333333vw;
    padding-bottom: 5.0666666667vw;
  }
  .page_contents .content_nav ul li:last-child a {
    box-shadow: 0 0 0.5rem rgba(144, 92, 163, 0.3019607843);
  }
  .page_contents .content_nav ul li:last-child a:after {
    border-top-color: #915CA4;
  }
  .page_contents .content_nav ul li:nth-child(3) a {
    box-shadow: 0 0 0.5rem rgba(177, 211, 24, 0.3019607843);
  }
  .page_contents .content_nav ul li:nth-child(3) a:after {
    border-top-color: #B1D318;
  }
  .page_contents .content_nav ul li a:after {
    border-top: 0.5rem solid #915CA4;
    border-left: 0.4rem solid transparent;
    border-right: 0.4rem solid transparent;
  }
  .page_contents .content_nav ul li a:after {
    bottom: 0.5rem;
  }
  .page_contents .content_nav {
    padding: calc(20 / 375 * 100vw) 0;
    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 img {
    height: calc(45 / 375 * 100vw);
  }
  .page_contents .sb .sbh:before {
    width: calc(75 / 375 * 100vw);
    height: calc(75 / 375 * 100vw);
    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(40 / 375 * 100vw);
  }
}
.sb1 .sb1_ml {
  line-height: 2;
  font-size: 137.5%;
  font-weight: 800;
}
.sb1 .sb1_ml span {
  color: #D70A1D;
}
.sb1 .sb1_ml small {
  font-size: 70%;
}
.sb1 .sb1_ml b {
  font-size: 127.2727272727%;
  font-weight: 900;
}
.sb1 .sb1_ml i {
  margin-top: 0.5%;
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(254, 236, 124, 0.6) 60%);
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 1.2;
}
.sb1 .sb1_bt {
  line-height: 2;
  font-weight: 800;
  background-color: #fff;
  border-radius: 1rem;
  border: 2px solid #915CA4;
  max-width: 45.375em;
  margin: 0 auto;
  margin-top: 2.8125em;
}
.sb1 .sb1_bt > p span {
  display: block;
  font-size: 125%;
  color: #fff;
  background-color: #915ca4;
  border-radius: 10rem;
  width: 11.3125em;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transform: translate3d(0, -50%, 0);
  position: relative;
  text-align: center;
}
.sb1 .sb1_bt > p span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.5625em solid #915ca4;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  margin: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.sb1 .sb1_bt > div {
  text-align: center;
  padding: 1.25em 0 1.625em 0;
}
.sb1 .sb1_bt > div p {
  font-size: 137.5%;
  line-height: 1;
  color: #552906;
}
.sb1 .sb1_bt > div p span {
  color: #D70A1D;
  font-size: 125%;
}

@media screen and (max-width: 600px) {
  .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.5;
    letter-spacing: 0;
  }
  .sb1 .sb1_bt > div {
    padding-top: 0;
  }
}
.sb2 {
  background-color: rgba(255, 255, 255, 0.5019607843);
}
.sb2 .sbc .sb2_top {
  line-height: 2;
  font-size: 125%;
  text-align: center;
  font-weight: 800;
  padding-bottom: 3.3125em;
}
.sb2 .sb2_button {
  display: flex;
  gap: 1.875em;
  justify-content: center;
  padding-bottom: 2em;
}
.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_top {
  background-color: #915ca4;
  color: #fff;
  border-radius: 100em;
  text-align: center;
  font-size: 156.25%;
  max-width: 29em;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 4.0625em;
  padding: 1em;
  padding-top: 1em;
  line-height: 1.3;
  box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.25);
  position: relative;
}
.sb3 .sb3_top span {
  font-size: 120%;
}
.sb3 .sb3_top b {
  font-size: 150%;
}
.sb3 .sb3_top figure {
  position: absolute;
  width: 8.1em;
  right: -14%;
  top: -50%;
}
.sb3 .sb3_list > li {
  margin-bottom: 3.125em;
  max-width: 81.25em;
  min-height: 32.5em;
  box-sizing: border-box;
  align-items: center;
  background-color: #fff;
  display: flex;
  padding: 2.5em 5.3125em;
  box-shadow: 0.125em 0.125em 0.25em rgba(0, 0, 0, 0.1);
}
.sb3 .sb3_list > li:nth-child(2n+1) {
  border-radius: 0 2em 2em 0;
  margin-left: 0;
  margin-right: auto;
  padding-left: 3.75em;
}
.sb3 .sb3_list > li:nth-child(2n) {
  margin-left: auto;
  margin-right: 0;
  border-radius: 2em 0 0 2em;
  padding-right: 3.75em;
}
.sb3 .sb3_list > li:nth-child(2n) .sb3_list_item {
  grid-template-columns: 29.0625em 1fr;
}
.sb3 .sb3_list > li:nth-child(2n) .sb3_list_item > figure {
  grid-column: 2/3;
  grid-row: 1/3;
}
.sb3 .sb3_list > li:nth-child(2n) .sb3_list_item .sb3_list_top {
  grid-column: 1/2;
  grid-row: 1/2;
}
.sb3 .sb3_list > li:nth-child(2n) .sb3_list_item .sb3_list_bottom {
  grid-column: 1/2;
  grid-row: 2/3;
}
.sb3 .sb3_list .sb3_list_item {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 29.0625em;
  -moz-column-gap: 4.53125em;
       column-gap: 4.53125em;
  row-gap: 0.5em;
}
.sb3 .sb3_list .sb3_list_item > figure {
  grid-column: 1/2;
  grid-row: 1/3;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_top {
  grid-column: 2/3;
  grid-row: 1/2;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_top .course {
  width: 9.375em;
  text-align: center;
  background-color: #eddcec;
  border-radius: 100em;
  display: block;
  box-sizing: border-box;
  padding: 0.2em;
  padding-bottom: 0.5em;
  font-weight: bold;
  color: #552906;
  font-size: 106.25%;
  line-height: 1;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 2.1875em;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_top .course::first-letter {
  font-size: 129.4117647059%;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_top h3 {
  font-weight: 800;
  color: #7e318e;
  text-align: left;
  font-size: 137.5%;
  line-height: 1.3;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_top h3 span {
  font-size: 131.8181818182%;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom {
  grid-column: 2/3;
  grid-row: 2/3;
  min-height: 16rem;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom .count {
  border-bottom: 2px solid #7E318E;
  padding-bottom: 1.125em;
  font-size: 125%;
  font-weight: 800;
  margin-bottom: 0.5em;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom .count span {
  color: #D70A1D;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom h4 {
  font-weight: normal;
  margin-bottom: 0.3em;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom ul {
  padding-left: 1em;
  margin-bottom: 0.3em;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom ul li {
  position: relative;
  line-height: 1.4;
}
.sb3 .sb3_list .sb3_list_item .sb3_list_bottom ul li:before {
  content: "・";
  position: absolute;
  left: -1em;
}
.sb3 .sb3_list_bottom_descs {
  padding-top: 2.5em;
  max-width: 51.75em;
  margin: 0 auto;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top {
  background-color: #915ca4;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  border-radius: 2em 2em 0 0;
  padding: 1.25em;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top h3 {
  color: #fff;
  text-align: center;
  font-size: 187.5%;
  font-weight: 600;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top h3 b {
  font-size: 150%;
  font-weight: 900;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top h3 span {
  font-size: 133.3333333333%;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-left: 0.1em;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top > p {
  margin-top: -0.5em;
  color: #fff;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_top > p small {
  font-size: 137.5%;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic_wrap {
  border-radius: 0 0 2em 2em;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 3.75em;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic {
  position: relative;
  max-width: 33.75em;
  margin: 0 auto;
  margin-bottom: 2.5em;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic figure:before {
  content: "";
  display: block;
  width: 4.34375em;
  height: 4.46875em;
  background-image: url(../img/sv_shine45.svg);
  position: absolute;
  left: -3em;
  top: -1.5em;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic figure:after {
  content: "";
  display: block;
  width: 4.34375em;
  height: 4.46875em;
  background-image: url(../img/sv_shine275.svg);
  position: absolute;
  right: 0.5em;
  bottom: -2.5em;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic p {
  position: absolute;
  width: 12.75em;
  right: -11em;
  top: -6.3em;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc h4 {
  font-size: 212.5%;
  color: #7e318e;
  text-align: center;
  font-weight: 800;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc .count {
  color: #552906;
  background-color: #eddcec;
  text-align: center;
  width: 8.125em;
  font-weight: 800;
  border-radius: 100em;
  padding: 0.3em 0;
  margin: 0 auto;
  margin-bottom: 0.6em;
  font-size: 87.5%;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc .count b {
  font-size: 129.4117647059%;
}
.sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc small {
  font-size: 87.5%;
  display: block;
  text-align: center;
  color: #454545;
}

@media screen and (min-width: 1501px) {
  .sb3 .sb3_list > li {
    border-radius: 2em 2em 2em 2em !important;
  }
  .page_contents .sb3 .sb3_list {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  .sb3 .sb3_list .sb3_list_item {
    display: block;
  }
  .sb3 .sb3_top {
    width: auto;
  }
  .sb3 .sb3_top figure {
    width: calc(109 / 375 * 100vw);
    height: calc(95 / 375 * 100vw);
    right: -7%;
    top: -45%;
  }
  .sb3 .sb3_top span {
    font-size: calc(19 / 375 * 100vw);
  }
  .sb3 .sb3_top {
    padding: calc(11 / 375 * 100vw) 0;
    margin-bottom: calc(30 / 375 * 100vw);
  }
  .sb3 .sb3_list > li {
    padding: calc(30 / 375 * 100vw);
    min-height: auto;
  }
  .sb3 .sb3_list > li:nth-child(2n+1) {
    padding: calc(30 / 375 * 100vw);
  }
  .sb3 .sb3_list > li {
    max-width: calc(350 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .sb3 .sb3_list .sb3_list_item .sb3_list_top .course {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(13 / 375 * 100vw);
  }
  .sb3 .sb3_list .sb3_list_item .sb3_list_top h3 {
    font-size: calc(18 / 375 * 100vw);
    text-align: center;
  }
  .sb3 .sb3_list .sb3_list_item > figure {
    margin: 0.5em 0;
    margin-bottom: 1em;
  }
  .sb3 .sb3_list .sb3_list_item .sb3_list_bottom .count {
    font-size: calc(15 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
  .sb3 .sb3_list > li:nth-child(2n) {
    padding-right: calc(30 / 375 * 100vw);
  }
  .sb3 .sb3_list .sb3_list_item .sb3_list_bottom {
    min-height: auto;
  }
  .sb3 .sb3_list_bottom_descs {
    max-width: calc(325 / 375 * 100vw);
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_top h3 {
    font-size: calc(19 / 375 * 100vw);
    line-height: 1.3;
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_top > p small {
    font-size: calc(14 / 375 * 100vw);
    margin-top: 0.8em;
    display: block;
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic_wrap {
    padding: calc(26 / 375 * 100vw) calc(13 / 375 * 100vw);
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic {
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic p {
    width: calc(109 / 375 * 100vw);
    height: calc(95 / 375 * 100vw);
    right: -2.8em;
    top: -4.3em;
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic figure:before {
    display: none;
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_pic figure:after {
    display: none;
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc h4 {
    font-size: calc(28 / 375 * 100vw);
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc .count {
    font-size: calc(13 / 375 * 100vw);
  }
  .sb3 .sb3_list_bottom_descs .sb3_list_bottom_desc small {
    font-size: calc(12 / 375 * 100vw);
  }
}
.sb4 {
  background-color: #fff;
}
.sb4 .sb4_ps {
  display: flex;
  gap: 4.875em;
  justify-content: center;
  margin-bottom: 2em;
}
.sb4 .sb4_ps li {
  text-align: center;
  flex: 0 1 14em;
}
.sb4 .sb4_ps li figure {
  margin: 0 auto;
  margin-bottom: 1em;
}
.sb4 .sb4_ps li figure figcaption {
  display: block;
  text-align: center;
  font-size: 112.5%;
  line-height: 1.5;
}
.sb4 .sb4_ps li figure img {
  margin-bottom: 1em;
}
.sb4 .sb4_ps li p {
  background-color: #6dbb44;
  color: #fff;
  font-size: 87.5%;
  border-radius: 10em;
  text-align: center;
  padding: 0.5em 0;
  box-sizing: border-box;
  margin: 0 auto;
  font-weight: 600;
}
.sb4 .sb4_ps li p.bgblue {
  background-color: #2890cf;
}
.sb4 .sb4_bt {
  text-align: center;
  line-height: 1.5;
  font-size: 87.5%;
}

@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:before {
    content: "";
    display: block;
  }
  .sb4 .sb4_bt {
    text-align: left;
    padding-left: 1em;
  }
  .sb4 .sb4_bt p {
    position: relative;
  }
  .sb4 .sb4_bt p:before {
    content: "※";
    position: absolute;
    left: -1em;
    top: 0;
  }
}
.sb5 .sb5_top {
  line-height: 2;
  font-size: 125%;
  text-align: center;
  font-weight: 800;
  padding-bottom: 3.3125rem;
}
.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: 2em;
  background-color: #fff;
  padding: 1.0625em 3.1875em;
  padding-bottom: 1.9375em;
}
.sb5 .sb5_list > li h3 {
  text-align: center;
  color: #915ca4;
  font-size: 175%;
  border-bottom: 1px solid #915ca4;
  font-weight: 800;
}
.sb5 .sb5_list > li h4 {
  color: #552906;
  font-size: 168.75%;
  text-align: center;
  padding: 0.5em 0;
}
.sb5 .sb5_list > li > p {
  text-align: center;
}
.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: #915ca4;
  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: #915ca4;
  color: #fff;
  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 #915ca4;
  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_in_desc {
  text-align: left;
}
.sb5 .sb5_bottom .sb5_bottom_in_desc p {
  padding-left: 1em;
  position: relative;
}
.sb5 .sb5_bottom .sb5_bottom_in_desc p:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.sb5 .sb5_bottom .sb5_bottom_in_desc a {
  color: #454545;
  text-decoration: none;
}
.sb5 .sb5_bottom .sb5_bottom_in_desc a:hover {
  text-decoration: underline;
}
.sb5 .sb5_bottom .sb5_bottom_in_desc small {
  font-size: 100%;
}
.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 #915ca4;
  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_top {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(21 / 375 * 100vw);
  }
  .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);
  }
}
.sb6 {
  background-color: rgba(255, 255, 255, 0.21);
}
.sb6 .sbc > p {
  line-height: 2;
  font-size: 125%;
  text-align: center;
  font-weight: 800;
  padding-bottom: 2em;
}
.sb6 .sbc > ul {
  max-width: 58.1875em;
  margin: 0 auto;
  text-align: left;
}
.sb6 .sbc > ul > li {
  margin-bottom: 2.625em;
}
.sb6 .sbc > ul > li:last-child {
  margin-bottom: 0;
}
.sb6 .sbc > ul > li h3 {
  font-size: 137.5%;
  font-weight: 800;
  color: #fff;
  border-radius: 5em;
  background-color: #915ca4;
  padding: 0.7em 1em;
  position: relative;
  padding-left: 3em;
  transition: all ease 0.3s;
  cursor: pointer;
}
.sb6 .sbc > ul > li h3:before {
  content: "Q.";
  position: absolute;
  top: 0.5em;
  left: 1.5em;
}
.sb6 .sbc > ul > li h3:hover {
  opacity: 0.8;
}
.sb6 .sbc > ul > li h3 button {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 2em;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  margin: auto;
  transition: all ease 0.3s;
}
.sb6 .sbc > ul > li h3 button:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: calc(1em - 1.5px);
  left: 0;
  transition: all ease 0.3s;
}
.sb6 .sbc > ul > li h3 button:after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: calc(1em - 1.5px);
  transition: all ease 0.3s;
}
.sb6 .sbc > ul > li h3.on button {
  transform: rotate(90deg);
}
.sb6 .sbc > ul > li h3.on button:before {
  opacity: 0;
}
.sb6 .sbc > ul > li p {
  position: relative;
  margin-right: 3em;
  padding: 2em 0;
  padding-top: 1.375em;
  padding-bottom: 0;
  padding-left: 3.7em;
  font-size: 112.5%;
  display: none;
}
.sb6 .sbc > ul > li p:before {
  content: "A.";
  font-size: 144.4444444444%;
  color: #d70a1d;
  font-weight: 800;
  position: absolute;
  top: 0.5em;
  left: 1.2em;
}

@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;
  }
}
.sb7 .sbc {
  max-width: 58.1875em;
  text-align: left;
  margin: 0 auto;
}
.sb7 .sbc > p {
  margin-bottom: 2em;
  font-size: 87.5%;
}
.sb7 .sbc .sb7_in {
  background-color: #fff;
  padding: 2.25em 1.875em;
  font-size: 87.5%;
  height: 20.625em;
  overflow-y: auto;
}
.sb7 .sbc .sb7_in h3 {
  font-size: 100%;
}
.sb7 .sbc .sb7_in a {
  color: #3ea6ff;
}
.sb7 .sbc .sb7_in a.mailto {
  color: #454545;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .sb7 .sbc > p {
    font-size: calc(13 / 375 * 100vw);
  }
  .sb7 .sbc .sb7_in {
    padding: calc(20 / 375 * 100vw) calc(17 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    height: calc(220 / 375 * 100vw);
  }
}
.page_contents .sb8 {
  padding-top: 0;
}
.page_contents .sb8 h2 {
  background-color: #915ca4;
  color: #fff;
  font-size: 112.5%;
  text-align: center;
  padding: 0.5em;
  margin-bottom: 0.5em;
  border-radius: 100em;
  line-height: 1.5;
}
.page_contents .sb8 .sbc {
  max-width: 37.3125em;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid #915ca4;
  padding: 1.25em 1.5625em;
  border-radius: 2em;
  box-sizing: border-box;
}
.page_contents .sb8 .sbc h3 {
  font-size: 112.5%;
  margin-bottom: 0.2em;
}
.page_contents .sb8 .sbc > div > a {
  font-size: 181.25%;
  text-decoration: none;
  font-weight: 800;
  display: block;
  transition: all ease 0.3s;
}
.page_contents .sb8 .sbc > div > a:hover {
  opacity: 0.8;
}
.page_contents .sb8 .sbc > div > p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.page_contents .sb8 .sbc > div > div p small {
  font-size: 87.5%;
  display: block;
  position: relative;
  padding-left: 1em;
}
.page_contents .sb8 .sbc > div > div p small:before {
  content: "※";
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .page_contents .sb8 h2 {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) 0;
  }
  .page_contents .sb8 .sbc {
    padding: calc(14 / 375 * 100vw) calc(16 / 375 * 100vw);
  }
  .page_contents .sb8 .sbc > div > a {
    font-size: calc(15 / 375 * 100vw);
  }
  .page_contents .sb8 .sbc > div > p {
    font-size: calc(12 / 375 * 100vw);
  }
  .page_contents .sb8 .sbc > div > div {
    text-align: left;
    font-size: calc(12 / 375 * 100vw);
  }
  .page_contents .sb8 {
    padding-bottom: 1em;
  }
  .page_contents .sb8 .sbc {
    border-radius: 1em;
  }
}
.page_copy {
  color: #818181;
  font-size: 75%;
  padding-bottom: 2em;
}/*# sourceMappingURL=style.css.map */