html {
  font-size: min(0.521vw, 10px);
}
@media (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

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

ol, ul {
  list-style: none;
}

.global-footer {
  margin-top: 0 !important;
}

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

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

.main_inner {
  background-color: #54867e;
  background-image: url(../images/bg.webp);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}
.main_inner *::before, .main_inner *::after {
  box-sizing: border-box;
}
.main_inner img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@keyframes bound {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(0.98);
  }
  9% {
    transform: scale(1.07);
  }
  14% {
    transform: scale(1);
  }
}
@keyframes katakata {
  0% {
    rotate: 0deg;
  }
  5% {
    rotate: -3deg;
  }
  10% {
    rotate: 3deg;
  }
  15% {
    rotate: -3deg;
  }
  20% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes carousel {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 414rem 0;
  }
}
.js-animation.fadeIn {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.js-animation.fadeIn.is-animated {
  opacity: 1;
}
.js-animation.bound {
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.55, -0.08, 0, 2.99) 0s;
}
.js-animation.bound.is-animated {
  transform: scale(1);
}
.js-animation.boundIn {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.55, -0.08, 0, 2.99) 0s, opacity 0.1s linear;
}
.js-animation.boundIn.is-animated {
  opacity: 1;
  transform: scale(1);
}
.js-animation.boundLoop {
  animation: bound linear infinite 4s forwards;
}
.js-animation.katakata {
  animation: katakata cubic-bezier(0, 1, 0, 1) infinite 4s forwards;
  transform-origin: center bottom;
}
.js-animation.katakata.delay {
  animation-delay: 2s;
}

.line_bg {
  position: relative;
  line-height: 0;
}
.line_bg img {
  position: relative;
}
.line_bg::after {
  content: "";
  position: absolute;
  border: 0.7rem solid #000;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}
.line_bg.white {
  background: #fff;
}
.line_bg.gray {
  background: #3f3f3f;
}
.line_bg.black {
  background: #000;
}

.carousel {
  position: relative;
  width: 100%;
  height: 15.6rem;
  overflow: hidden;
}
.carousel_content {
  position: absolute;
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 414rem;
  height: 100%;
  left: 50%;
  top: 0;
  bottom: 0;
  translate: -50% 0;
  animation: carousel 69s linear infinite;
}

.nav_switch {
  aspect-ratio: 1/1;
  display: block;
  position: fixed;
  cursor: pointer;
  z-index: 550;
}
@media (min-width: 769px) {
  .nav_switch {
    width: 8rem;
    right: 8rem;
    top: 12rem;
  }
}
@media (min-width: 1921px) {
  .nav_switch {
    right: calc(50vw - 880px);
  }
}
@media (max-width: 768px) {
  .nav_switch {
    width: 11rem;
    right: 5.5rem;
    top: 5.5rem;
  }
}
@media (min-width: 769px) {
  .nav_switch.is-top {
    top: calc(144px + 2.5rem);
  }
  .nav_switch.is-top.is-opened {
    top: 12rem;
  }
}
@media (max-width: 768px) {
  .nav_switch.is-top {
    top: calc(112px + 5.5rem);
  }
}
@media (max-width: 768px) {
  .nav_switch.is-top + .nav_content {
    top: 112px;
  }
}
.nav_switch.is-opened::after {
  display: none;
}
.nav_switch::before, .nav_switch::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  inset: 0;
}
.nav_switch::before {
  background-image: url(../images/nav_close.png);
}
.nav_switch::after {
  background-image: url(../images/nav_open.png);
}
.nav_switch:hover {
  opacity: 0.5;
}
.nav_content {
  position: fixed;
  height: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 500;
}
@media (min-width: 769px) {
  .nav_content {
    width: 52.8rem;
  }
}
@media (min-width: 1921px) {
  .nav_content {
    right: calc(50vw - 960px);
  }
}
@media (max-width: 768px) {
  .nav_content {
    width: 100vw;
  }
}
.nav_content.is-opened {
  height: 100svh;
  overflow-y: auto;
}
.nav_inner {
  display: flex;
  flex-direction: column;
  background: #000;
  height: 100%;
}
@media (min-width: 769px) {
  .nav_inner {
    row-gap: 0.7rem;
  }
}
@media (max-width: 768px) {
  .nav_inner {
    row-gap: 1.4rem;
  }
  .nav_inner::after {
    border: 1.4rem solid #000;
  }
}
.nav_menu {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #6b9994;
}
@media (min-width: 769px) {
  .nav_menu {
    row-gap: 4.7rem;
    padding: 23.5rem 0 8.5rem;
  }
}
@media (max-width: 768px) {
  .nav_menu {
    row-gap: 5.7rem;
    padding: 16.6rem 0 11.5rem;
  }
}
.nav_menu::after {
  content: "";
  position: absolute;
  border-bottom: 0 !important;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .nav_menu::after {
    border: 0.7rem solid #000;
  }
}
@media (max-width: 768px) {
  .nav_menu::after {
    border: 1.4rem solid #000;
  }
}
.nav_menu_link {
  display: block;
}
@media (min-width: 769px) {
  .nav_menu_link {
    height: 4.9rem;
  }
}
@media (max-width: 768px) {
  .nav_menu_link {
    height: 8rem;
  }
}
.nav_menu_link > * {
  pointer-events: none;
}
.nav_menu_link:hover img {
  opacity: 0.5;
}
.nav_utility {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #6b9994;
  height: 100%;
}
@media (min-width: 769px) {
  .nav_utility {
    row-gap: 3.6rem;
    padding: 5rem 0 4.5rem;
  }
}
@media (max-width: 768px) {
  .nav_utility {
    row-gap: 4rem;
    padding: 6rem 0;
  }
}
.nav_utility::after {
  content: "";
  position: absolute;
  border-top: 0 !important;
  width: 100%;
  height: 100%;
  inset: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .nav_utility::after {
    border: 0.7rem solid #000;
  }
}
@media (max-width: 768px) {
  .nav_utility::after {
    border: 1.4rem solid #000;
  }
}
.nav_utility_link {
  display: block;
  font-weight: 900;
  color: #fff !important;
}
@media (min-width: 769px) {
  .nav_utility_link {
    line-height: 1;
    font-size: 2.1rem;
  }
}
@media (max-width: 768px) {
  .nav_utility_link {
    line-height: 1;
    font-size: 2.8rem;
  }
}

.kv_section {
  width: 100vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .kv_section {
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .kv_section {
    padding: 2rem 0;
  }
}
.kv_content {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .kv_content {
    aspect-ratio: 120/49;
    width: 192rem;
  }
}
@media (max-width: 768px) {
  .kv_content {
    aspect-ratio: 750/1069;
    width: 75rem;
  }
}
.kv_content > * {
  position: absolute;
  opacity: 0;
}
.is-animated.kv_content > * {
  opacity: 1;
}

.kv_content [class*=line] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
}
.kv_content [class*=line]:not([class*=line_]) {
  transition: opacity 0.4s linear 4.2s;
}
.kv_content [class*=copy] {
  z-index: 2;
}
.kv_content [class*=image] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.kv_content .line1 {
  top: 0;
}
@media (min-width: 769px) {
  .kv_content .line1 {
    aspect-ratio: 38/14;
    background-image: url(../images/kv/line1_pc.png);
    width: 3.8rem;
    left: 22.6rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line1 {
    aspect-ratio: 28/119;
    background-image: url(../images/kv/line1_sp.png);
    width: 2.9rem;
    left: 51.1rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line2 {
    aspect-ratio: 214/57;
    background-image: url(../images/kv/line2_pc.png);
    width: 21.4rem;
    right: 4.9rem;
    top: 0.2rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line2 {
    aspect-ratio: 200/12;
    background-image: url(../images/kv/line2_sp.png);
    width: 20rem;
    left: 1.6rem;
    top: 11.9rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line3 {
    aspect-ratio: 215/53;
    background-image: url(../images/kv/line3_pc.png);
    width: 21.5rem;
    left: 5.1rem;
    top: 12.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line3 {
    aspect-ratio: 170/54;
    background-image: url(../images/kv/line3_sp.png);
    width: 17rem;
    left: 49.3rem;
    top: 18.3rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line4 {
    aspect-ratio: 620/69;
    background-image: url(../images/kv/line4_pc.png);
    width: 62rem;
    left: 27rem;
    top: 12.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line4 {
    aspect-ratio: 29/185;
    background-image: url(../images/kv/line4_sp.png);
    width: 2.9rem;
    right: 1.6rem;
    top: 18.3rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line5 {
    aspect-ratio: 37/61;
    background-image: url(../images/kv/line5_pc.png);
    width: 3.7rem;
    left: 27.1rem;
    top: 20rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line5 {
    aspect-ratio: 58/79;
    background-image: url(../images/kv/line5_sp.png);
    width: 6rem;
    left: 40.7rem;
    top: 28.9rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line6 {
    aspect-ratio: 84/62;
    background-image: url(../images/kv/line6_pc.png);
    width: 8.4rem;
    right: 65.3rem;
    top: 19.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line6 {
    aspect-ratio: 64/182;
    background-image: url(../images/kv/line6_sp.png);
    width: 6.4rem;
    left: 1.6rem;
    top: 42.3rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line7 {
    aspect-ratio: 76/99;
    background-image: url(../images/kv/line7_pc.png);
    width: 7.6rem;
    right: 4.7rem;
    top: 21.7rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line7 {
    aspect-ratio: 37/79;
    background-image: url(../images/kv/line7_sp.png);
    width: 3.7rem;
    left: 1.6rem;
    top: 60.5rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line8 {
    aspect-ratio: 113/51;
    background-image: url(../images/kv/line8_pc.png);
    width: 11.3rem;
    right: 40.6rem;
    top: 26.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line8 {
    aspect-ratio: 328/21;
    background-image: url(../images/kv/line8_sp.png);
    width: 32.8rem;
    right: 8.8rem;
    top: 65.9rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line9 {
    aspect-ratio: 135/126;
    background-image: url(../images/kv/line9_pc.png);
    width: 13.5rem;
    left: 12.9rem;
    top: 36.5rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line9 {
    aspect-ratio: 251/75;
    background-image: url(../images/kv/line9_sp.png);
    width: 25.1rem;
    left: 12.2rem;
    top: 80rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line10 {
    aspect-ratio: 114/164;
    background-image: url(../images/kv/line10_pc.png);
    width: 11.4rem;
    left: 40.1rem;
    bottom: 25.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line10 {
    aspect-ratio: 84/70;
    background-image: url(../images/kv/line10_sp.png);
    width: 8.8rem;
    right: 20.5rem;
    bottom: 11.7rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line11 {
    aspect-ratio: 60/195;
    background-image: url(../images/kv/line11_pc.png);
    width: 6rem;
    right: 45.9rem;
    bottom: 25.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line11 {
    aspect-ratio: 31/109;
    background-image: url(../images/kv/line11_sp.png);
    width: 3.1rem;
    left: 24.4rem;
    bottom: 0;
  }
}
@media (min-width: 769px) {
  .kv_content .line12 {
    aspect-ratio: 93/36;
    background-image: url(../images/kv/line12_pc.png);
    width: 9.3rem;
    right: 2.1rem;
    top: 41.2rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line12 {
    aspect-ratio: 109/48;
    background-image: url(../images/kv/line12_sp.png);
    width: 11.7rem;
    right: 8.8rem;
    bottom: 25.2rem;
  }
}
@media (min-width: 769px) {
  .kv_content .line13 {
    aspect-ratio: 184/26;
    background-image: url(../images/kv/line13_pc.png);
    width: 18.4rem;
    left: 8rem;
    top: 59.5rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line13 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_content .line14 {
    aspect-ratio: 147/30;
    background-image: url(../images/kv/line14_pc.png);
    width: 14.7rem;
    left: 77rem;
    top: 57.3rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line14 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_content .line15 {
    aspect-ratio: 203/68;
    background-image: url(../images/kv/line15_pc.png);
    width: 20.3rem;
    right: 45.9rem;
    top: 57.3rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line15 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_content .line16 {
    aspect-ratio: 134/89;
    background-image: url(../images/kv/line16_pc.png);
    width: 13.4rem;
    right: 26.5rem;
    top: 55.2rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line16 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_content .line17 {
    aspect-ratio: 130/59;
    background-image: url(../images/kv/line17_pc.png);
    width: 13rem;
    left: 92.4rem;
    top: 64.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line17 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_content .line18 {
    aspect-ratio: 212/45;
    background-image: url(../images/kv/line18_pc.png);
    width: 21.2rem;
    right: 5.1rem;
    top: 73.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .line18 {
    display: none;
  }
}
.kv_content .copy1 {
  top: 0;
  transition-delay: 0.8s !important;
}
@media (min-width: 769px) {
  .kv_content .copy1 {
    width: 57rem;
    left: 26.4rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy1 {
    width: 49.5rem;
    left: 1.6rem;
  }
}
.kv_content .copy2 {
  bottom: 0;
  transition-delay: 1.2s !important;
}
@media (min-width: 769px) {
  .kv_content .copy2 {
    width: 60.3rem;
    right: 26.3rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy2 {
    width: 46rem;
    right: 1.6rem;
  }
}
.kv_content .copy3 {
  transition-delay: 2.2s !important;
}
@media (min-width: 769px) {
  .kv_content .copy3 {
    width: 53.3rem;
    left: 82.7rem;
    top: 1.4rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy3 {
    width: 47.8rem;
    left: 25.7rem;
    top: 13.1rem;
  }
}
.kv_content .copy4 {
  transition-delay: 1.8s !important;
}
@media (min-width: 769px) {
  .kv_content .copy4 {
    width: 48.7rem;
    left: 87.3rem;
    top: 5.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy4 {
    width: 39.1rem;
    left: 1.6rem;
    top: 28.2rem;
  }
}
.kv_content .copy5 {
  transition-delay: 2.5s !important;
}
@media (min-width: 769px) {
  .kv_content .copy5 {
    width: 39rem;
    right: 26.3rem;
    top: 21rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy5 {
    width: 35rem;
    left: 25.7rem;
    top: 23.7rem;
  }
}
.kv_content .copy6 {
  transition-delay: 1.9s !important;
}
@media (min-width: 769px) {
  .kv_content .copy6 {
    width: 13.7rem;
    left: 26.4rem;
    top: 26.1rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy6 {
    width: 10.6rem;
    left: 1.6rem;
    bottom: 0;
  }
}
.kv_content .copy7 {
  transition-delay: 2.8s !important;
}
@media (min-width: 769px) {
  .kv_content .copy7 {
    width: 14.3rem;
    right: 26.3rem;
    top: 26.1rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy7 {
    width: 10.7rem;
    left: 60rem;
    top: 17.6rem;
  }
}
.kv_content .copy8 {
  transition-delay: 2.7s !important;
}
@media (min-width: 769px) {
  .kv_content .copy8 {
    width: 6rem;
    right: 39.9rem;
    top: 31.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy8 {
    width: 7.2rem;
    right: 1.6rem;
    bottom: 24.5rem;
  }
}
.kv_content .copy9 {
  transition-delay: 2s !important;
}
@media (min-width: 769px) {
  .kv_content .copy9 {
    width: 34.1rem;
    left: 91.7rem;
    bottom: 13.6rem;
  }
}
@media (max-width: 768px) {
  .kv_content .copy9 {
    width: 34.4rem;
    right: 8.1rem;
    bottom: 30.2rem;
  }
}
.kv_content .copy10 {
  transition-delay: 2.1s !important;
}
@media (min-width: 769px) {
  .kv_content .copy10 {
    width: 29.7rem;
    left: 76.3rem;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .kv_content .copy10 {
    width: 34.7rem;
    left: 11.5rem;
    bottom: 11rem;
  }
}
.kv_content .image1 {
  aspect-ratio: 183/110;
  background-image: url(../images/kv/image1.webp);
  z-index: 3;
  transition-delay: 1.6s !important;
}
@media (min-width: 769px) {
  .kv_content .image1 {
    width: 18.3rem;
    left: 32.5rem;
    top: 9.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image1 {
    width: 12.1rem;
    left: 27.6rem;
    top: 17.4rem;
  }
}
.kv_content .image2 {
  aspect-ratio: 304/215;
  background-image: url(../images/kv/image2.webp);
  transition-delay: 1.4s !important;
}
@media (min-width: 769px) {
  .kv_content .image2 {
    width: 30.4rem;
    right: 26.3rem;
    top: 0.2rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image2 {
    width: 21.7rem;
    left: 11.5rem;
    top: 65.2rem;
  }
}
.kv_content .image3 {
  aspect-ratio: 376/266;
  background-image: url(../images/kv/image3.webp);
  transition-delay: 1s !important;
}
@media (min-width: 769px) {
  .kv_content .image3 {
    width: 37.6rem;
    left: 39.4rem;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .kv_content .image3 {
    width: 24.8rem;
    left: 1.6rem;
    top: 13.1rem;
  }
}
.kv_content .image4 {
  aspect-ratio: 179/121;
  background-image: url(../images/kv/image4.webp);
  transition-delay: 3.1s !important;
}
@media (min-width: 769px) {
  .kv_content .image4 {
    width: 17.9rem;
    left: 4.7rem;
    top: 0.7rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image4 {
    width: 14rem;
    left: 46.7rem;
    top: 28.2rem;
  }
}
.kv_content .image5 {
  aspect-ratio: 143/121;
  background-image: url(../images/kv/image5.webp);
  transition-delay: 3s !important;
  z-index: 3;
}
@media (min-width: 769px) {
  .kv_content .image5 {
    width: 14.3rem;
    left: 77.5rem;
    top: 8.6rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image5 {
    width: 9rem;
    right: 20.2rem;
    bottom: 10.4rem;
  }
}
.kv_content .image6 {
  aspect-ratio: 224/158;
  background-image: url(../images/kv/image6.webp);
  transition-delay: 3.4s !important;
}
@media (min-width: 769px) {
  .kv_content .image6 {
    width: 22.4rem;
    right: 4.6rem;
    top: 5.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image6 {
    width: 19.5rem;
    left: 54rem;
    top: 0;
  }
}
.kv_content .image7 {
  aspect-ratio: 238/184;
  background-image: url(../images/kv/image7.webp);
  transition-delay: 3.5s !important;
}
@media (min-width: 769px) {
  .kv_content .image7 {
    width: 23.8rem;
    left: 3.3rem;
    top: 18.1rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image7 {
    display: none;
  }
}
.kv_content .image8 {
  aspect-ratio: 120/86;
  background-image: url(../images/kv/image8.webp);
  transition-delay: 2.6s !important;
  z-index: 3;
}
@media (min-width: 769px) {
  .kv_content .image8 {
    width: 12rem;
    right: 62.7rem;
    top: 18.4rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image8 {
    width: 13.3rem;
    right: 7.5rem;
    bottom: 23.8rem;
  }
}
.kv_content .image9 {
  aspect-ratio: 165/143;
  background-image: url(../images/kv/image9.webp);
  transition-delay: 3.9s !important;
  z-index: 3;
}
@media (min-width: 769px) {
  .kv_content .image9 {
    width: 16.5rem;
    right: 8.7rem;
    top: 18.4rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image9 {
    width: 9.2rem;
    right: 13.2rem;
    top: 16.8rem;
  }
}
.kv_content .image10 {
  background-image: url(../images/kv/image10.webp);
  transition-delay: 2.4s !important;
}
@media (min-width: 769px) {
  .kv_content .image10 {
    aspect-ratio: 128/93;
    width: 12.8rem;
    left: 39.4rem;
    top: 28.6rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image10 {
    aspect-ratio: 180/120;
    width: 18rem;
    right: 19.8rem;
    bottom: 18.9rem;
  }
}
.kv_content .image11 {
  aspect-ratio: 160/108;
  background-image: url(../images/kv/image11.webp);
  transition-delay: 3.7s !important;
}
@media (min-width: 769px) {
  .kv_content .image11 {
    width: 16rem;
    right: 11rem;
    top: 31.1rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image11 {
    display: none;
  }
}
.kv_content .image12 {
  aspect-ratio: 198/138;
  background-image: url(../images/kv/image12.webp);
  transition-delay: 4s !important;
}
@media (min-width: 769px) {
  .kv_content .image12 {
    width: 19.8rem;
    left: 37.4rem;
    top: 39.2rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image12 {
    width: 14.3rem;
    left: 11.3rem;
    bottom: 18.2rem;
  }
}
.kv_content .image13 {
  aspect-ratio: 150/104;
  background-image: url(../images/kv/image13.webp);
  transition-delay: 3.8s !important;
}
@media (min-width: 769px) {
  .kv_content .image13 {
    width: 15rem;
    left: 12.1rem;
    bottom: 18.9rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image13 {
    display: none;
  }
}
.kv_content .image14 {
  aspect-ratio: 204/138;
  background-image: url(../images/kv/image14.webp);
  transition-delay: 3.6s !important;
}
@media (min-width: 769px) {
  .kv_content .image14 {
    width: 20.4rem;
    right: 1.7rem;
    bottom: 19.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image14 {
    display: none;
  }
}
.kv_content .image15 {
  aspect-ratio: 130/108;
  background-image: url(../images/kv/image15.webp);
  transition-delay: 2.9s !important;
}
@media (min-width: 769px) {
  .kv_content .image15 {
    width: 13rem;
    right: 27.4rem;
    top: 55.1rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image15 {
    width: 13.2rem;
    right: -0.2rem;
    top: 35.9rem;
    z-index: 3;
  }
}
.kv_content .image16 {
  aspect-ratio: 199/135;
  background-image: url(../images/kv/image16.webp);
  transition-delay: 3.3s !important;
}
@media (min-width: 769px) {
  .kv_content .image16 {
    width: 19.9rem;
    left: 7.2rem;
    bottom: 2.8rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image16 {
    width: 12.9rem;
    left: 11.5rem;
    bottom: 0;
  }
}
.kv_content .image17 {
  background-image: url(../images/kv/image17.webp);
  transition-delay: 2.3s !important;
}
@media (min-width: 769px) {
  .kv_content .image17 {
    aspect-ratio: 161/111;
    width: 16.1rem;
    left: 76.3rem;
    bottom: 7rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image17 {
    aspect-ratio: 189/142;
    width: 18.9rem;
    right: 1.6rem;
    bottom: 11rem;
  }
}
.kv_content .image18 {
  aspect-ratio: 223/159;
  background-image: url(../images/kv/image18.webp);
  transition-delay: 3.2s !important;
}
@media (min-width: 769px) {
  .kv_content .image18 {
    width: 22.3rem;
    right: 4.6rem;
    bottom: 4.6rem;
  }
}
@media (max-width: 768px) {
  .kv_content .image18 {
    display: none;
  }
}
@media (min-width: 769px) {
  .kv_title {
    width: 116rem;
    height: 37.6rem;
    left: 30.8rem;
    top: 19.7rem;
  }
}
@media (max-width: 768px) {
  .kv_title {
    width: 65.4rem;
    height: 29rem;
    left: 1.6rem;
    top: 36.9rem;
  }
}
.kv_title > p {
  position: absolute;
  left: 0;
  top: 0;
  transition-delay: 0.4s !important;
}
@media (min-width: 769px) {
  .kv_title > p {
    width: 87.7rem;
  }
}
@media (max-width: 768px) {
  .kv_title > p {
    width: 61.7rem;
  }
}
.kv_title > h1 {
  position: absolute;
  z-index: 2;
}
@media (min-width: 769px) {
  .kv_title > h1 {
    width: 88.6rem;
    left: 20.7rem;
    top: 6.4rem;
  }
}
@media (max-width: 768px) {
  .kv_title > h1 {
    width: 59rem;
    left: 6.3rem;
    top: 4.6rem;
  }
}
.kv_title > h1 > span {
  display: block;
  width: 100%;
  animation-delay: 7s !important;
}
.kv_title > h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  transition-delay: 0.6s !important;
}
@media (min-width: 769px) {
  .kv_title > h2 {
    width: 70.6rem;
  }
}
@media (max-width: 768px) {
  .kv_title > h2 {
    width: 61.7rem;
  }
}

.about_section {
  width: 100vw;
  overflow: hidden;
}
@media (min-width: 769px) {
  .about_section {
    padding: 18.2rem 0 13.2rem;
  }
}
@media (max-width: 768px) {
  .about_section {
    padding: 11.7rem 0 10.3rem;
  }
}
.about_section .carousel_content {
  background-image: url(../images/about/carousel.webp);
}
.about_content {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .about_content {
    width: 91.8rem;
    margin-bottom: 13.9rem;
  }
}
@media (max-width: 768px) {
  .about_content {
    width: 51.2rem;
    margin-bottom: 11.6rem;
  }
}
.about_content [class^=line] {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .about_content [class^=line].line1 {
    aspect-ratio: 176/119;
    background-image: url(../images/about/line1_pc.png);
    width: 17.6rem;
    right: 100%;
    top: 0;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line1 {
    aspect-ratio: 122/194;
    background-image: url(../images/about/line1_sp.png);
    width: 12.2rem;
    left: 100%;
    top: 0;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line2 {
    aspect-ratio: 120/37;
    background-image: url(../images/about/line2_pc.png);
    width: 12rem;
    right: 3.9rem;
    top: 50.4rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line2 {
    aspect-ratio: 116/71;
    background-image: url(../images/about/line2_sp.png);
    width: 11.6rem;
    right: 100%;
    top: 17.1rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line3 {
    aspect-ratio: 37/37;
    background-image: url(../images/about/line3_pc.png);
    width: 3.7rem;
    left: 16.3rem;
    top: 69.8rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line3 {
    aspect-ratio: 122/146;
    background-image: url(../images/about/line3_sp.png);
    width: 12.2rem;
    left: 100%;
    top: 29rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line4 {
    aspect-ratio: 115/37;
    background-image: url(../images/about/line4_pc.png);
    width: 11.5rem;
    right: 11.2rem;
    top: 69.8rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line4 {
    aspect-ratio: 60/30;
    background-image: url(../images/about/line4_sp.png);
    width: 6rem;
    left: 7.7rem;
    top: 60.9rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line5 {
    aspect-ratio: 184/40;
    background-image: url(../images/about/line5_pc.png);
    width: 18.4rem;
    right: 100%;
    top: 75.6rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line5 {
    aspect-ratio: 100/30;
    background-image: url(../images/about/line5_sp.png);
    width: 10rem;
    right: 11.1rem;
    top: 60.9rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line6 {
    display: none;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line6 {
    aspect-ratio: 122/106;
    background-image: url(../images/about/line6_sp.png);
    width: 12.2rem;
    left: 100%;
    top: 68.5rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=line].line7 {
    display: none;
  }
}
@media (max-width: 768px) {
  .about_content [class^=line].line7 {
    aspect-ratio: 138/31;
    background-image: url(../images/about/line7_sp.png);
    width: 13.8rem;
    left: 4.3rem;
    top: 81.4rem;
  }
}
.about_content [class^=image] {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about_content [class^=image].image1 {
  aspect-ratio: 640/80;
  background-image: url(../images/about/image1.webp);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 769px) {
  .about_content [class^=image].image1 {
    width: 64rem;
    top: -7.5rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image1 {
    width: 42.4rem;
    top: -4.8rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image2 {
    aspect-ratio: 160/230;
    background-image: url(../images/about/image2_pc.png);
    width: 16rem;
    right: -20.3rem;
    bottom: 71.9rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image2 {
    aspect-ratio: 122/162;
    background-image: url(../images/about/image2_sp.webp);
    width: 12.6rem;
    left: 100%;
    top: 5.1rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image3 {
    aspect-ratio: 210/250;
    background-image: url(../images/about/image3_pc.png);
    width: 21rem;
    left: -19.6rem;
    bottom: 18.8rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image3 {
    aspect-ratio: 116/180;
    background-image: url(../images/about/image3_sp.webp);
    width: 11.6rem;
    right: 100%;
    bottom: 20rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image4 {
    aspect-ratio: 127/90;
    background-image: url(../images/about/image4_pc.webp);
    width: 25.4rem;
    left: calc(100% - 0.7rem);
    top: 6.8rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image4 {
    aspect-ratio: 121/180;
    background-image: url(../images/about/image4_sp.webp);
    width: 12.6rem;
    right: calc(100% - 0.7rem);
    top: -1.1rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image5 {
    aspect-ratio: 221/158;
    background-image: url(../images/about/image5_pc.webp);
    width: 22.1rem;
    right: calc(100% - 0.7rem);
    top: 11.9rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image5 {
    aspect-ratio: 128/96;
    background-image: url(../images/about/image5_sp.webp);
    width: 12.6rem;
    left: calc(100% - 0.7rem);
    top: 19.4rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image6 {
    aspect-ratio: 230/164;
    background-image: url(../images/about/image6_pc.webp);
    width: 23rem;
    left: calc(100% - 0.7rem);
    top: 40.6rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image6 {
    aspect-ratio: 128/119;
    background-image: url(../images/about/image6_sp.webp);
    width: 12.6rem;
    left: calc(100% - 0.7rem);
    top: 56.6rem;
  }
}
@media (min-width: 769px) {
  .about_content [class^=image].image7 {
    aspect-ratio: 201/156;
    background-image: url(../images/about/image7_pc.webp);
    width: 20.1rem;
    right: calc(100% - 0.7rem);
    top: 60rem;
  }
}
@media (max-width: 768px) {
  .about_content [class^=image].image7 {
    aspect-ratio: 111/207;
    background-image: url(../images/about/image7_sp.webp);
    width: 11.1rem;
    right: calc(100% - 0.7rem);
    bottom: 2.6rem;
  }
}
@media (min-width: 769px) {
  .about_lead {
    height: 50.4rem;
  }
}
@media (max-width: 768px) {
  .about_lead {
    height: 60.9rem;
  }
}
@media (min-width: 769px) {
  .about_copy {
    height: 15.7rem;
    margin-top: 3.7rem;
  }
}
@media (max-width: 768px) {
  .about_copy {
    height: 17.5rem;
    margin-top: 3rem;
  }
}
@media (min-width: 769px) {
  .about_text {
    height: 8.1rem;
    margin-top: 3.7rem;
  }
}
@media (max-width: 768px) {
  .about_text {
    height: 12.8rem;
    margin-top: 3.1rem;
  }
}

.qa_section .carousel_content.carousel1 {
  background-image: url(../images/qa/carousel1.webp);
}
.qa_section .carousel_content.carousel2 {
  background-image: url(../images/qa/carousel2.webp);
}
.qa_section .carousel_content.carousel3 {
  background-image: url(../images/qa/carousel3.webp);
}
.qa_title {
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .qa_title h2 {
    width: 78rem;
  }
}
@media (max-width: 768px) {
  .qa_title h2 {
    width: 54.6rem;
  }
}
.qa_content {
  position: relative;
  margin: 0 auto;
  transition: margin-bottom 0.4s, padding-bottom 0.4s;
}
@media (min-width: 769px) {
  .qa_content {
    width: 110rem;
    margin-top: 18rem;
  }
}
@media (max-width: 768px) {
  .qa_content {
    width: 100vw;
    margin-top: 12.25rem;
  }
  .qa_content .qa_correct_content [class^=line]:not(.line_bg), .qa_content .qa_correct_content [class^=image] {
    top: -18.4rem;
  }
}
.qa_content [class^=line]:not(.line_bg), .qa_content [class^=image] {
  position: absolute;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 769px) {
  .qa_content [class^=line]:not(.line_bg), .qa_content [class^=image] {
    background-position: center center;
    background-size: 100% 100%;
  }
}
@media (max-width: 768px) {
  .qa_content [class^=line]:not(.line_bg), .qa_content [class^=image] {
    background-position: center top;
    background-size: contain;
    background-color: transparent;
  }
  .qa_content [class^=line]:not(.line_bg)::after, .qa_content [class^=image]::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .qa_content [class^=line]:not(.line_bg) {
    width: 100vw;
    left: 50%;
    top: 0;
    translate: -50% 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 {
    margin-top: 2.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 {
    margin-top: 6.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1:has(.qa_correct_content.is-opened) {
    margin-bottom: -6.55rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line1 {
    aspect-ratio: 191/121;
    background-image: url(../images/qa1/line1_pc.png);
    width: 19.1rem;
    left: -16.9rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .line1 {
    aspect-ratio: 750/751;
    background-image: url(../images/qa1/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line2 {
    aspect-ratio: 223/256;
    background-image: url(../images/qa1/line2_pc.png);
    width: 22.3rem;
    right: -14.3rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa1/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line4 {
    aspect-ratio: 230/66;
    background-image: url(../images/qa1/line4_pc.png);
    width: 23rem;
    right: -14.3rem;
    top: 41.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa1/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .line5 {
    aspect-ratio: 750/1452;
    background-image: url(../images/qa1/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa1/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line7 {
    aspect-ratio: 281/448;
    background-image: url(../images/qa1/line7_pc.png);
    width: 28.1rem;
    right: -28.1rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .line8 {
    aspect-ratio: 249/86;
    background-image: url(../images/qa1/line8_pc.png);
    width: 24.9rem;
    left: -24.9rem;
    bottom: 30.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image1 {
    aspect-ratio: 160/230;
    background-image: url(../images/qa1/image1.webp);
    width: 16rem;
    left: -10.8rem;
    top: -17.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image1 {
    aspect-ratio: 140/220;
    background-image: url(../images/qa1/image1_sp.png);
    width: 14rem;
    left: 2.8rem;
    top: 44.1rem;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image2 {
    aspect-ratio: 256/174;
    background-image: url(../images/qa1/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image2 {
    aspect-ratio: 750/751;
    background-image: url(../images/qa1/image2_sp.webp);
    width: 100vw;
    left: 50%;
    top: 0;
    translate: -50% 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image3 {
    aspect-ratio: 160/270;
    background-image: url(../images/qa1/image3.webp);
    width: 16rem;
    right: -10.3rem;
    top: 2.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image3 {
    aspect-ratio: 143/180;
    background-image: url(../images/qa1/image3_sp.png);
    width: 14.3rem;
    left: 56.2rem;
    top: -6.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image4 {
    aspect-ratio: 230/156;
    background-image: url(../images/qa1/image4.webp);
    width: 23rem;
    right: -14.3rem;
    top: 25.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image5 {
    aspect-ratio: 188/128;
    background-image: url(../images/qa1/image5.webp);
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image6 {
    aspect-ratio: 200/260;
    background-image: url(../images/qa1/image6.webp);
    width: 20rem;
    right: -24.7rem;
    top: 22.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image6 {
    aspect-ratio: 167/225;
    background-image: url(../images/qa1/image6_sp.png);
    width: 16.7rem;
    left: 48.2rem;
    top: 37.9rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image7 {
    aspect-ratio: 288/194;
    background-image: url(../images/qa1/image7.webp);
    width: 28.8rem;
    right: -28.1rem;
    top: 44.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image8 {
    aspect-ratio: 195/270;
    background-image: url(../images/qa1/image8.webp);
    width: 19.5rem;
    left: -20.1rem;
    bottom: 53.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image8 {
    aspect-ratio: 161/215;
    background-image: url(../images/qa1/image8_sp.png);
    width: 16.1rem;
    left: -12.4rem;
    top: 92rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .image9 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa1/image9.webp);
    width: 25.6rem;
    left: -24.9rem;
    bottom: 39.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .image9 {
    aspect-ratio: 750/1452;
    background-image: url(../images/qa1/image4_sp.webp);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_correct_head {
    width: 27.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .qa_correct_head {
    width: 26rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs {
    padding-bottom: 9.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .qa_chart_indexs {
    background-image: url(../images/qa1/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs > li:nth-of-type(1) {
    width: 3.6rem;
    left: -0.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs > li:nth-of-type(2) {
    width: 4.8rem;
    left: 5.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs > li:nth-of-type(3) {
    width: 7.1rem;
    left: 36.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_chart_indexs > li:nth-of-type(4) {
    width: 5rem;
    left: 72.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa1 .qa_correct_image {
    row-gap: 1.4rem;
    width: 39.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa1 .qa_correct_image {
    row-gap: 0.8rem;
    width: 36.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2:has(.qa_correct_content.is-opened) {
    padding-bottom: 9.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2:has(.qa_correct_content.is-opened) {
    margin-bottom: -12.05rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line1 {
    aspect-ratio: 120/60;
    background-image: url(../images/qa2/line1_pc.png);
    width: 12rem;
    left: -3.3rem;
    top: 26.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .line1 {
    aspect-ratio: 750/794;
    background-image: url(../images/qa2/line1_sp.png);
    top: -4.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line2 {
    aspect-ratio: 163/96;
    background-image: url(../images/qa2/line2_pc.png);
    width: 16.3rem;
    right: -14.2rem;
    top: 20.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa2/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line4 {
    aspect-ratio: 68/107;
    background-image: url(../images/qa2/line4_pc.png);
    width: 6.8rem;
    right: 0;
    top: -10.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa2/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .line5 {
    aspect-ratio: 750/1309;
    background-image: url(../images/qa2/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa2/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line7 {
    aspect-ratio: 280/239;
    background-image: url(../images/qa2/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .line8 {
    aspect-ratio: 280/98;
    background-image: url(../images/qa2/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -9.8rem;
  }
}
.qa_content.qa2 .image1 {
  aspect-ratio: 165/240;
  background-image: url(../images/qa2/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa2 .image1 {
    width: 16.5rem;
    left: -12.8rem;
    top: -11.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image1 {
    width: 14rem;
    left: -0.7rem;
    top: 25.8rem;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .image2 {
    aspect-ratio: 255/173;
    background-image: url(../images/qa2/image2.webp);
    width: 25.5rem;
    left: -16.8rem;
    top: 9.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image2 {
    aspect-ratio: 750/794;
    background-image: url(../images/qa2/image2_sp.png);
    width: 100vw;
    left: 50%;
    top: -4.3rem;
    translate: -50% 0;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .image3 {
    aspect-ratio: 175/170;
    background-image: url(../images/qa2/image3.webp);
    width: 17.5rem;
    right: -11.7rem;
    top: -9.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image3 {
    aspect-ratio: 191/209;
    background-image: url(../images/qa2/image3_sp.png);
    width: 19.1rem;
    left: 59.8rem;
    top: 44rem;
    z-index: 2;
  }
}
.qa_content.qa2 .image4 {
  aspect-ratio: 229/157;
  background-image: url(../images/qa2/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa2 .image4 {
    width: 22.9rem;
    right: -14.2rem;
    top: 4.7rem;
  }
}
.qa_content.qa2 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa2/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa2 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .image6 {
    aspect-ratio: 180/296;
    background-image: url(../images/qa2/image6.webp);
    width: 18rem;
    right: -22.3rem;
    top: -2.9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image6 {
    aspect-ratio: 265/480;
    background-image: url(../images/qa2/image6_sp.webp);
    width: 26.5rem;
    left: 42rem;
    top: 64.7rem;
    z-index: 6;
  }
}
.qa_content.qa2 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa2/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa2 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 23.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .image8 {
    aspect-ratio: 205/390;
    background-image: url(../images/qa2/image8.webp);
    width: 20.5rem;
    left: -22rem;
    bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image8 {
    aspect-ratio: 245/444;
    background-image: url(../images/qa2/image8_sp.webp);
    width: 24.5rem;
    left: -17.1rem;
    top: -6.5rem;
    z-index: 6;
  }
}
.qa_content.qa2 .image9 {
  aspect-ratio: 256/173;
  background-image: url(../images/qa2/image9.webp);
}
@media (min-width: 769px) {
  .qa_content.qa2 .image9 {
    width: 25.6rem;
    left: -24.9rem;
    bottom: -9.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .image9 {
    aspect-ratio: 750/1309;
    background-image: url(../images/qa2/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
.qa_content.qa2 .qa_correct_head {
  width: 39.7rem;
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs {
    padding-bottom: 9.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .qa_chart_indexs {
    background-image: url(../images/qa2/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs > li:nth-of-type(1) {
    width: 3.8rem;
    left: -0.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs > li:nth-of-type(2) {
    width: 5rem;
    left: 10.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs > li:nth-of-type(3) {
    width: 5rem;
    left: 29.1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_chart_indexs > li:nth-of-type(4) {
    width: 9rem;
    left: 55.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa2 .qa_correct_image {
    width: 28.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa2 .qa_correct_image {
    width: 25.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 {
    margin-bottom: 18rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 {
    margin-bottom: 11.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line1 {
    aspect-ratio: 191/122;
    background-image: url(../images/qa3/line1_pc.png);
    width: 19.1rem;
    left: -16.9rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .line1 {
    aspect-ratio: 750/750;
    background-image: url(../images/qa3/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line2 {
    aspect-ratio: 223/257;
    background-image: url(../images/qa3/line2_pc.png);
    width: 22.3rem;
    right: -14.3rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa3/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line4 {
    aspect-ratio: 230/73;
    background-image: url(../images/qa3/line4_pc.png);
    width: 23rem;
    right: -14.3rem;
    top: 41.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa3/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .line5 {
    aspect-ratio: 750/1355;
    background-image: url(../images/qa3/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa3/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line7 {
    aspect-ratio: 280/819;
    background-image: url(../images/qa3/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .line8 {
    aspect-ratio: 249/154;
    background-image: url(../images/qa3/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: 19.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .image1 {
    aspect-ratio: 150/230;
    background-image: url(../images/qa3/image1.webp);
    width: 15rem;
    left: -12rem;
    top: -16.9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image1 {
    aspect-ratio: 194/302;
    background-image: url(../images/qa3/image1_sp.png);
    width: 19.4rem;
    left: 0;
    top: 39.1rem;
    z-index: 4;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .image2 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa3/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 3.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image2 {
    aspect-ratio: 750/750;
    background-image: url(../images/qa3/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
.qa_content.qa3 .image3 {
  aspect-ratio: 158/270;
  background-image: url(../images/qa3/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image3 {
    width: 15.8rem;
    right: -9.8rem;
    top: 1.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image3 {
    width: 14rem;
    left: 61rem;
    top: 24.3rem;
    z-index: 2;
  }
}
.qa_content.qa3 .image4 {
  aspect-ratio: 230/156;
  background-image: url(../images/qa3/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image4 {
    width: 23rem;
    right: -14.3rem;
    top: 25.7rem;
  }
}
.qa_content.qa3 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa3/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa3 .image6 {
  aspect-ratio: 180/296;
  background-image: url(../images/qa3/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image6 {
    width: 18rem;
    right: -22.3rem;
    top: 56.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image6 {
    width: 15rem;
    left: 48.3rem;
    top: 4.5rem;
    z-index: 6;
  }
}
.qa_content.qa3 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa3/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 81.9rem;
  }
}
.qa_content.qa3 .image8 {
  aspect-ratio: 190/285;
  background-image: url(../images/qa3/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa3 .image8 {
    width: 19rem;
    left: -21.9rem;
    bottom: 48.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image8 {
    width: 20rem;
    left: -13.8rem;
    top: 71.5rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .image9 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa3/image9.webp);
    width: 25.6rem;
    left: -24.9rem;
    bottom: 34.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .image9 {
    aspect-ratio: 750/1355;
    background-image: url(../images/qa3/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .qa_correct {
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_correct_head {
    width: 20.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .qa_correct_head {
    width: 24.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs {
    padding-bottom: 9.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .qa_chart_indexs {
    background-image: url(../images/qa3/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs > li:nth-of-type(1) {
    width: 7.2rem;
    left: 19.1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs > li:nth-of-type(2) {
    width: 4.9rem;
    left: 53rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs > li:nth-of-type(3) {
    width: 4.7rem;
    left: 69rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_chart_indexs > li:nth-of-type(4) {
    width: 3.7rem;
    left: 76.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa3 .qa_correct_image {
    width: 51.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa3 .qa_correct_image {
    width: 42rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 {
    margin-top: 28.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4:has(.qa_correct_content.is-opened) {
    padding-bottom: 4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4:has(.qa_correct_content.is-opened) {
    margin-bottom: -6.95rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line1 {
    aspect-ratio: 295/121;
    background-image: url(../images/qa4/line1_pc.png);
    width: 29.5rem;
    left: -16.9rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .line1 {
    aspect-ratio: 750/620;
    background-image: url(../images/qa4/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line2 {
    aspect-ratio: 207/160;
    background-image: url(../images/qa4/line2_pc.png);
    width: 20.7rem;
    right: -12.7rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa4/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line4 {
    aspect-ratio: 214/161;
    background-image: url(../images/qa4/line4_pc.png);
    width: 21.4rem;
    right: -12.7rem;
    top: 32.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa4/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .line5 {
    aspect-ratio: 750/1436;
    background-image: url(../images/qa4/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa4/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line7 {
    aspect-ratio: 280/240;
    background-image: url(../images/qa4/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .line8 {
    aspect-ratio: 280/48;
    background-image: url(../images/qa4/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -4.1rem;
  }
}
.qa_content.qa4 .image1 {
  aspect-ratio: 172/235;
  background-image: url(../images/qa4/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image1 {
    width: 17.2rem;
    left: -12.8rem;
    top: -17.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image1 {
    width: 16.6rem;
    left: -2.7rem;
    top: 25.5rem;
    z-index: 2;
  }
}
.qa_content.qa4 .image2 {
  aspect-ratio: 256/174;
  background-image: url(../images/qa4/image2.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image2 {
    width: 25.6rem;
    left: -16.9rem;
    top: 3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image2 {
    aspect-ratio: 750/620;
    background-image: url(../images/qa4/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .image3 {
    aspect-ratio: 156/250;
    background-image: url(../images/qa4/image3.webp);
    width: 15.6rem;
    right: -10.7rem;
    top: -4.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image3 {
    aspect-ratio: 172/225;
    background-image: url(../images/qa4/image3_sp.png);
    width: 17.2rem;
    left: 60.1rem;
    top: 14.2rem;
    z-index: 2;
  }
}
.qa_content.qa4 .image4 {
  aspect-ratio: 230/165;
  background-image: url(../images/qa4/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image4 {
    width: 23rem;
    right: -12.7rem;
    top: 16rem;
  }
}
.qa_content.qa4 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa4/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa4 .image6 {
  aspect-ratio: 185/270;
  background-image: url(../images/qa4/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image6 {
    width: 18.5rem;
    right: -23.8rem;
    top: -0.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image6 {
    width: 17rem;
    left: 46.9rem;
    top: 36rem;
    z-index: 6;
  }
}
.qa_content.qa4 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa4/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 24rem;
  }
}
.qa_content.qa4 .image8 {
  aspect-ratio: 236/278;
  background-image: url(../images/qa4/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa4 .image8 {
    width: 23.6rem;
    left: -23.6rem;
    bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image8 {
    width: 20rem;
    left: -14.2rem;
    top: 86rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .image9 {
    aspect-ratio: 256/174;
    background-image: url(../images/qa4/image9.webp);
    width: 25.6rem;
    left: -24.9rem;
    bottom: -4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .image9 {
    aspect-ratio: 750/1436;
    background-image: url(../images/qa4/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_choice.grande {
    width: calc(90.226% + 0.35rem);
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_choice.large {
    width: calc(85.903% + 0.35rem);
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_choice.medium {
    width: calc(80.452% + 0.35rem);
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_correct_head {
    width: 76.1rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .qa_correct_head {
    width: 41.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs {
    padding-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .qa_chart_indexs {
    background-image: url(../images/qa4/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs > li:nth-of-type(1) {
    width: 5.7rem;
    left: -1.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs > li:nth-of-type(2) {
    width: 8.4rem;
    left: 4.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs > li:nth-of-type(3) {
    width: 11.6rem;
    left: 17.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_chart_indexs > li:nth-of-type(4) {
    width: 23.8rem;
    left: 48.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa4 .qa_correct_image {
    width: 35.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa4 .qa_correct_image {
    width: 25.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5:has(.qa_correct_content.is-opened) {
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5:has(.qa_correct_content.is-opened) {
    margin-bottom: -0.75rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line1 {
    aspect-ratio: 120/61;
    background-image: url(../images/qa5/line1_pc.png);
    width: 12rem;
    left: -4rem;
    top: 26.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .line1 {
    aspect-ratio: 750/616;
    background-image: url(../images/qa5/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line2 {
    aspect-ratio: 165/95;
    background-image: url(../images/qa5/line2_pc.png);
    width: 16.5rem;
    right: -14.3rem;
    top: 20.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa5/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line4 {
    aspect-ratio: 69/109;
    background-image: url(../images/qa5/line4_pc.png);
    width: 6.9rem;
    right: 0;
    top: -10.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa5/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .line5 {
    aspect-ratio: 750/1732;
    background-image: url(../images/qa5/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa5/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line7 {
    aspect-ratio: 280/374;
    background-image: url(../images/qa5/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .line8 {
    aspect-ratio: 280/48;
    background-image: url(../images/qa5/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -4.8rem;
  }
}
.qa_content.qa5 .image1 {
  aspect-ratio: 175/235;
  background-image: url(../images/qa5/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image1 {
    width: 17.5rem;
    left: -12.7rem;
    top: -11.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image1 {
    width: 16rem;
    left: -1rem;
    top: 12.5rem;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .image2 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa5/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 9.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image2 {
    aspect-ratio: 750/616;
    background-image: url(../images/qa5/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
.qa_content.qa5 .image3 {
  aspect-ratio: 190/205;
  background-image: url(../images/qa5/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image3 {
    width: 19rem;
    right: -9.8rem;
    top: -12.7rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image3 {
    width: 22rem;
    left: 55.5rem;
    top: -6.7rem;
  }
}
.qa_content.qa5 .image4 {
  aspect-ratio: 230/157;
  background-image: url(../images/qa5/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image4 {
    width: 23rem;
    right: -14.3rem;
    top: 4.7rem;
  }
}
.qa_content.qa5 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa5/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa5 .image6 {
  aspect-ratio: 190/320;
  background-image: url(../images/qa5/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image6 {
    width: 19rem;
    right: -23.8rem;
    top: -5.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image6 {
    width: 13rem;
    left: 46.1rem;
    top: 116.2rem;
    z-index: 6;
  }
}
.qa_content.qa5 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa5/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 24rem;
  }
}
.qa_content.qa5 .image8 {
  aspect-ratio: 205/270;
  background-image: url(../images/qa5/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image8 {
    width: 20.5rem;
    left: -22.5rem;
    bottom: 9.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image8 {
    width: 16rem;
    left: -12.5rem;
    top: 37.3rem;
    z-index: 6;
  }
}
.qa_content.qa5 .image9 {
  aspect-ratio: 256/173;
  background-image: url(../images/qa5/image9.webp);
}
@media (min-width: 769px) {
  .qa_content.qa5 .image9 {
    width: 25.6rem;
    left: -24.9rem;
    bottom: -4.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .image9 {
    aspect-ratio: 750/1732;
    background-image: url(../images/qa5/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_correct_head {
    width: 32rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .qa_correct_head {
    width: 32.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs {
    padding-bottom: 9.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .qa_chart_indexs {
    background-image: url(../images/qa5/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs > li:nth-of-type(1) {
    width: 11rem;
    left: -0.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs > li:nth-of-type(2) {
    width: 8.8rem;
    left: 13.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs > li:nth-of-type(3) {
    width: 8.8rem;
    left: 24.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_chart_indexs > li:nth-of-type(4) {
    width: 7.3rem;
    left: 50.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa5 .qa_correct_image {
    width: 29.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa5 .qa_correct_image {
    width: 26rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6:has(.qa_correct_content.is-opened) {
    padding-bottom: 4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6:has(.qa_correct_content.is-opened) {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line1 {
    aspect-ratio: 191/121;
    background-image: url(../images/qa6/line1_pc.png);
    width: 19.1rem;
    left: -16.9rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .line1 {
    aspect-ratio: 750/618;
    background-image: url(../images/qa6/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line2 {
    aspect-ratio: 163/97;
    background-image: url(../images/qa6/line2_pc.png);
    width: 16.3rem;
    right: -14.1rem;
    top: 20.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa6/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line4 {
    aspect-ratio: 230/74;
    background-image: url(../images/qa6/line4_pc.png);
    width: 23rem;
    right: -14.3rem;
    top: 41.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa6/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .line5 {
    aspect-ratio: 750/1593;
    background-image: url(../images/qa6/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa6/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line7 {
    aspect-ratio: 280/374;
    background-image: url(../images/qa6/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .line8 {
    aspect-ratio: 280/41;
    background-image: url(../images/qa6/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -4.1rem;
  }
}
.qa_content.qa6 .image1 {
  aspect-ratio: 165/210;
  background-image: url(../images/qa6/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image1 {
    width: 16.5rem;
    left: -10.7rem;
    top: -15rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .image2 {
    aspect-ratio: 256/174;
    background-image: url(../images/qa6/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .image2 {
    aspect-ratio: 750/618;
    background-image: url(../images/qa6/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
.qa_content.qa6 .image3 {
  aspect-ratio: 210/230;
  background-image: url(../images/qa6/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image3 {
    width: 21rem;
    right: -13.4rem;
    top: 5.5rem;
  }
}
.qa_content.qa6 .image4 {
  aspect-ratio: 230/156;
  background-image: url(../images/qa6/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image4 {
    width: 23rem;
    right: -14.3rem;
    top: 25.6rem;
  }
}
.qa_content.qa6 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa6/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa6 .image6 {
  aspect-ratio: 192/264;
  background-image: url(../images/qa6/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image6 {
    width: 19.2rem;
    right: -21.5rem;
    top: 14.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .image6 {
    width: 19rem;
    left: 45rem;
    top: 26rem;
    z-index: 6;
  }
}
.qa_content.qa6 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa6/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 37.4rem;
  }
}
.qa_content.qa6 .image8 {
  aspect-ratio: 175/305;
  background-image: url(../images/qa6/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa6 .image8 {
    width: 17.5rem;
    left: -20.7rem;
    bottom: 10.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .image8 {
    width: 15rem;
    left: -13.3rem;
    top: 95.7rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .image9 {
    aspect-ratio: 257/174;
    background-image: url(../images/qa6/image9.webp);
    width: 25.7rem;
    left: -25rem;
    bottom: -4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .image9 {
    aspect-ratio: 750/1593;
    background-image: url(../images/qa6/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .qa_correct_content > .line_bg:not(.black) {
    padding-bottom: 3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_correct_head {
    width: 72.7rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .qa_correct_head {
    width: 40.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs {
    padding-bottom: 9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .qa_chart_indexs {
    background-image: url(../images/qa6/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs > li:nth-of-type(1) {
    width: 30.3rem;
    left: 2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs > li:nth-of-type(2) {
    width: 4.6rem;
    left: 38.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs > li:nth-of-type(3) {
    width: 5.6rem;
    left: 57.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_chart_indexs > li:nth-of-type(4) {
    width: 6rem;
    left: 74.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa6 .qa_correct_image {
    width: 35rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa6 .qa_correct_image {
    width: 30rem;
    padding-top: 0.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 {
    margin-bottom: 18rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 {
    margin-bottom: 9.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7:has(.qa_correct_content.is-opened) {
    padding-bottom: 9.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line1 {
    aspect-ratio: 163/97;
    background-image: url(../images/qa7/line1_pc.png);
    width: 16.3rem;
    right: -14.1rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .line1 {
    aspect-ratio: 750/620;
    background-image: url(../images/qa7/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line2 {
    aspect-ratio: 122/61;
    background-image: url(../images/qa7/line2_pc.png);
    width: 12.2rem;
    left: -4.2rem;
    top: 26.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa7/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line4 {
    aspect-ratio: 68/107;
    background-image: url(../images/qa7/line4_pc.png);
    width: 6.8rem;
    right: 0;
    top: -10.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa7/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .line5 {
    aspect-ratio: 750/1418;
    background-image: url(../images/qa7/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa7/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line7 {
    aspect-ratio: 280/560;
    background-image: url(../images/qa7/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .line8 {
    aspect-ratio: 280/98;
    background-image: url(../images/qa7/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -9.8rem;
  }
}
.qa_content.qa7 .image1 {
  aspect-ratio: 170/230;
  background-image: url(../images/qa7/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image1 {
    width: 17rem;
    right: -10.3rem;
    top: -14.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image1 {
    width: 16rem;
    left: 44rem;
    top: -4.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .image2 {
    aspect-ratio: 229/158;
    background-image: url(../images/qa7/image2.webp);
    width: 22.9rem;
    right: -14.2rem;
    top: 4.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image2 {
    aspect-ratio: 750/620;
    background-image: url(../images/qa7/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
  }
}
.qa_content.qa7 .image3 {
  aspect-ratio: 214/250;
  background-image: url(../images/qa7/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image3 {
    width: 21.4rem;
    left: -15.1rem;
    top: -12.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image3 {
    width: 15rem;
    left: 1rem;
    top: 45rem;
    z-index: 2;
  }
}
.qa_content.qa7 .image4 {
  aspect-ratio: 256/173;
  background-image: url(../images/qa7/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image4 {
    width: 25.6rem;
    left: -16.9rem;
    top: 9.1rem;
  }
}
.qa_content.qa7 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa7/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa7 .image6 {
  aspect-ratio: 190/300;
  background-image: url(../images/qa7/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image6 {
    width: 19rem;
    right: -23.2rem;
    top: 27.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image6 {
    width: 14rem;
    left: 48rem;
    top: 23.3rem;
    z-index: 6;
  }
}
.qa_content.qa7 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa7/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 56rem;
  }
}
.qa_content.qa7 .image8 {
  aspect-ratio: 188/308;
  background-image: url(../images/qa7/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa7 .image8 {
    width: 18.8rem;
    left: -23rem;
    bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image8 {
    width: 19rem;
    left: -12.5rem;
    top: 75.6rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .image9 {
    aspect-ratio: 257/174;
    background-image: url(../images/qa7/image9.webp);
    width: 25.7rem;
    left: -25rem;
    bottom: -9.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .image9 {
    aspect-ratio: 750/1418;
    background-image: url(../images/qa7/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .qa_correct_content > .line_bg:not(.black) {
    padding-bottom: 3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_correct_head {
    width: 68.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .qa_correct_head {
    width: 36.1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs {
    padding-bottom: 9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .qa_chart_indexs {
    background-image: url(../images/qa7/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs > li:nth-of-type(1) {
    width: 24.2rem;
    left: 17.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs > li:nth-of-type(2) {
    width: 9.6rem;
    left: 56.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs > li:nth-of-type(3) {
    width: 9.1rem;
    left: 65.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_chart_indexs > li:nth-of-type(4) {
    width: 8rem;
    left: 74.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_correct_image {
    width: 50.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .qa_correct_image {
    width: 32.4rem;
    padding-top: 1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa7 .qa_correct_image figure:nth-of-type(2) {
    margin-top: -3.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa7 .qa_correct_image figure:nth-of-type(2) {
    margin-top: -2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 {
    margin-top: 30.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 {
    margin-top: 14.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8:has(.qa_correct_content.is-opened) {
    padding-bottom: 4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8:has(.qa_correct_content.is-opened) {
    margin-bottom: -5.65rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line1 {
    aspect-ratio: 190/121;
    background-image: url(../images/qa8/line1_pc.png);
    width: 19rem;
    left: -16.8rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .line1 {
    aspect-ratio: 750/654;
    background-image: url(../images/qa8/line1_sp.png);
    top: -5.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line2 {
    aspect-ratio: 223/256;
    background-image: url(../images/qa8/line2_pc.png);
    width: 22.3rem;
    right: -14.3rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa8/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line4 {
    aspect-ratio: 230/73;
    background-image: url(../images/qa8/line4_pc.png);
    width: 23rem;
    right: -14.3rem;
    top: 41.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa8/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .line5 {
    aspect-ratio: 750/1210;
    background-image: url(../images/qa8/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa8/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line7 {
    aspect-ratio: 280/240;
    background-image: url(../images/qa8/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .line8 {
    aspect-ratio: 280/41;
    background-image: url(../images/qa8/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -4.1rem;
  }
}
.qa_content.qa8 .image1 {
  aspect-ratio: 173/253;
  background-image: url(../images/qa8/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image1 {
    width: 17.3rem;
    left: -11.7rem;
    top: -18.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image1 {
    width: 14rem;
    left: 0.5rem;
    top: 23.4rem;
    z-index: 2;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .image2 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa8/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 3.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image2 {
    aspect-ratio: 750/654;
    background-image: url(../images/qa8/image2_sp.png);
    width: 100vw;
    left: 50%;
    top: -5.8rem;
    translate: -50% 0;
    z-index: 3;
  }
}
.qa_content.qa8 .image3 {
  aspect-ratio: 196/367;
  background-image: url(../images/qa8/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image3 {
    width: 19.6rem;
    right: -12.8rem;
    top: -7.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image3 {
    width: 14rem;
    left: 61.1rem;
    top: 22.4rem;
    z-index: 2;
  }
}
.qa_content.qa8 .image4 {
  aspect-ratio: 230/156;
  background-image: url(../images/qa8/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image4 {
    width: 23rem;
    right: -14.3rem;
    top: 25.6rem;
  }
}
.qa_content.qa8 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa8/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa8 .image6 {
  aspect-ratio: 233/310;
  background-image: url(../images/qa8/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image6 {
    width: 23.3rem;
    right: -24.5rem;
    top: -2.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image6 {
    width: 14rem;
    left: 46.8rem;
    top: 8rem;
    z-index: 6;
  }
}
.qa_content.qa8 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa8/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 24rem;
  }
}
.qa_content.qa8 .image8 {
  aspect-ratio: 230/320;
  background-image: url(../images/qa8/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa8 .image8 {
    width: 23rem;
    left: -23.7rem;
    bottom: 8.9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image8 {
    width: 17rem;
    left: -13.5rem;
    top: 63.9rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .image9 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa8/image9.webp);
    width: 25.6rem;
    left: -24.9rem;
    bottom: -4.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .image9 {
    aspect-ratio: 750/1210;
    background-image: url(../images/qa8/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_correct_head {
    width: 72rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .qa_correct_head {
    width: 40.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs {
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .qa_chart_indexs {
    background-image: url(../images/qa8/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs > li:nth-of-type(1) {
    width: 28.2rem;
    left: 7.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs > li:nth-of-type(2) {
    width: 29.1rem;
    left: 44.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs > li:nth-of-type(3) {
    width: 20.3rem;
    left: 56.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_chart_indexs > li:nth-of-type(4) {
    width: 11rem;
    left: 70.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa8 .qa_correct_image {
    width: 58.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa8 .qa_correct_image {
    width: 43rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9:has(.qa_correct_content.is-opened) {
    padding-bottom: 8.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9:has(.qa_correct_content.is-opened) {
    margin-bottom: -5.45rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line1 {
    aspect-ratio: 122/61;
    background-image: url(../images/qa9/line1_pc.png);
    width: 12.2rem;
    left: -4.2rem;
    top: 26.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .line1 {
    aspect-ratio: 750/558;
    background-image: url(../images/qa9/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line2 {
    aspect-ratio: 165/96;
    background-image: url(../images/qa9/line2_pc.png);
    width: 16.5rem;
    right: -14.3rem;
    top: 20.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa9/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line4 {
    aspect-ratio: 69/107;
    background-image: url(../images/qa9/line4_pc.png);
    width: 6.9rem;
    right: 0;
    top: -10.7rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa9/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .line5 {
    aspect-ratio: 750/1390;
    background-image: url(../images/qa9/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa9/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line7 {
    aspect-ratio: 280/240;
    background-image: url(../images/qa9/line7_pc.png);
    width: 28rem;
    right: -28rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .line8 {
    aspect-ratio: 280/44;
    background-image: url(../images/qa9/line8_pc.png);
    width: 28rem;
    left: 0;
    bottom: -4.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .image1 {
    aspect-ratio: 184/230;
    background-image: url(../images/qa9/image1.webp);
    width: 18.4rem;
    left: -13.4rem;
    top: -11.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image1 {
    aspect-ratio: 150/232;
    background-image: url(../images/qa9/image1_sp.png);
    width: 15rem;
    left: 2.1rem;
    top: 36.7rem;
    z-index: 4;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .image2 {
    aspect-ratio: 255/173;
    background-image: url(../images/qa9/image2.webp);
    width: 25.5rem;
    left: -16.8rem;
    top: 9.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image2 {
    aspect-ratio: 750/558;
    background-image: url(../images/qa9/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
.qa_content.qa9 .image3 {
  aspect-ratio: 150/193;
  background-image: url(../images/qa9/image3.webp);
}
@media (min-width: 769px) {
  .qa_content.qa9 .image3 {
    width: 15rem;
    right: -9.8rem;
    top: -12.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image3 {
    width: 15rem;
    left: 60.2rem;
    top: 22.4rem;
    z-index: 2;
  }
}
.qa_content.qa9 .image4 {
  aspect-ratio: 230/157;
  background-image: url(../images/qa9/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa9 .image4 {
    width: 23rem;
    right: -14.3rem;
    top: 4.7rem;
  }
}
.qa_content.qa9 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa9/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa9 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .image6 {
    aspect-ratio: 133/285;
    background-image: url(../images/qa9/image6.webp);
    width: 13.3rem;
    right: -21.3rem;
    top: -1.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image6 {
    aspect-ratio: 167/303;
    background-image: url(../images/qa9/image6_sp.png);
    width: 16.7rem;
    left: 46.9rem;
    top: 1.9rem;
    z-index: 6;
  }
}
.qa_content.qa9 .image7 {
  aspect-ratio: 287/195;
  background-image: url(../images/qa9/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa9 .image7 {
    width: 28.7rem;
    right: -28rem;
    top: 24rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .image8 {
    aspect-ratio: 200/300;
    background-image: url(../images/qa9/image8.webp);
    width: 20rem;
    left: -21.7rem;
    bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image8 {
    aspect-ratio: 188/342;
    background-image: url(../images/qa9/image8_sp.png);
    width: 18.8rem;
    left: -15.3rem;
    top: 54.4rem;
    z-index: 6;
  }
}
.qa_content.qa9 .image9 {
  aspect-ratio: 256/173;
  background-image: url(../images/qa9/image9.webp);
}
@media (min-width: 769px) {
  .qa_content.qa9 .image9 {
    width: 25.6rem;
    left: -24.9rem;
    bottom: -4.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .image9 {
    aspect-ratio: 750/1390;
    background-image: url(../images/qa9/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .qa_correct {
    z-index: 4;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_correct_head {
    width: 37.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .qa_correct_head {
    width: 37.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs {
    padding-bottom: 8.5rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .qa_chart_indexs {
    background-image: url(../images/qa9/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs > li:nth-of-type(1) {
    width: 9.4rem;
    left: 14.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs > li:nth-of-type(2) {
    width: 8.3rem;
    left: 43.3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs > li:nth-of-type(3) {
    width: 11.7rem;
    left: 53.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_chart_indexs > li:nth-of-type(4) {
    width: 9.1rem;
    left: 67.1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa9 .qa_correct_image {
    width: 58.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa9 .qa_correct_image {
    width: 38.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 {
    margin-bottom: 18rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 {
    margin-bottom: 12rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10:has(.qa_correct_content.is-opened) {
    padding-bottom: 4.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line1 {
    aspect-ratio: 190/121;
    background-image: url(../images/qa10/line1_pc.png);
    width: 19rem;
    left: -16.9rem;
    top: 20.4rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .line1 {
    aspect-ratio: 750/616;
    background-image: url(../images/qa10/line1_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line2 {
    aspect-ratio: 222/256;
    background-image: url(../images/qa10/line2_pc.png);
    width: 22.2rem;
    right: -14.2rem;
    top: 0;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line3 {
    aspect-ratio: 220/73;
    background-image: url(../images/qa10/line3_pc.png);
    width: 22rem;
    left: 8.7rem;
    top: 40.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line4 {
    aspect-ratio: 229/74;
    background-image: url(../images/qa10/line4_pc.png);
    width: 22.9rem;
    right: -14.2rem;
    top: 41.1rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line5 {
    aspect-ratio: 70/42;
    background-image: url(../images/qa10/line5_pc.png);
    width: 7rem;
    left: 34.5rem;
    top: -4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .line5 {
    aspect-ratio: 750/1140;
    background-image: url(../images/qa10/line2_sp.png);
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line6 {
    aspect-ratio: 140/42;
    background-image: url(../images/qa10/line6_pc.png);
    width: 14rem;
    right: 0;
    top: -4.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line7 {
    aspect-ratio: 257/235;
    background-image: url(../images/qa10/line7_pc.png);
    width: 25.7rem;
    right: -25rem;
    top: 15.2rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .line8 {
    aspect-ratio: 284/46;
    background-image: url(../images/qa10/line8_pc.png);
    width: 28.4rem;
    left: 0;
    bottom: -4.6rem;
  }
}
.qa_content.qa10 .image1 {
  aspect-ratio: 175/250;
  background-image: url(../images/qa10/image1.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image1 {
    width: 17.5rem;
    left: -13.1rem;
    top: -19rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image1 {
    aspect-ratio: 135/257;
    background-image: url(../images/qa10/image1_sp.png);
    width: 13.5rem;
    left: 4.6rem;
    top: 40.8rem;
    z-index: 4;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .image2 {
    aspect-ratio: 256/176;
    background-image: url(../images/qa10/image2.webp);
    width: 25.6rem;
    left: -16.9rem;
    top: 2.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image2 {
    aspect-ratio: 750/616;
    background-image: url(../images/qa10/image2_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 3;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .image3 {
    aspect-ratio: 145/280;
    background-image: url(../images/qa10/image3.webp);
    width: 14.5rem;
    right: -9.6rem;
    top: 0;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image3 {
    aspect-ratio: 176/338;
    background-image: url(../images/qa10/image3_sp.png);
    width: 17.6rem;
    left: 59rem;
    top: 14.2rem;
    z-index: 2;
  }
}
.qa_content.qa10 .image4 {
  aspect-ratio: 229/155;
  background-image: url(../images/qa10/image4.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image4 {
    width: 22.9rem;
    right: -14.2rem;
    top: 25.6rem;
  }
}
.qa_content.qa10 .image5 {
  aspect-ratio: 188/128;
  background-image: url(../images/qa10/image5.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image5 {
    width: 18.8rem;
    left: -10.1rem;
    top: 40.5rem;
  }
}
.qa_content.qa10 .image6 {
  aspect-ratio: 215/317;
  background-image: url(../images/qa10/image6.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image6 {
    width: 21.5rem;
    right: -23.1rem;
    top: 10.1rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image6 {
    width: 17rem;
    left: 47.6rem;
    top: 0.7rem;
    z-index: 6;
  }
}
.qa_content.qa10 .image7 {
  aspect-ratio: 257/228;
  background-image: url(../images/qa10/image7.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image7 {
    width: 25.7rem;
    right: -25rem;
    top: 38.7rem;
  }
}
.qa_content.qa10 .image8 {
  aspect-ratio: 190/275;
  background-image: url(../images/qa10/image8.webp);
}
@media (min-width: 769px) {
  .qa_content.qa10 .image8 {
    width: 19rem;
    left: -20.9rem;
    bottom: 10.3rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image8 {
    aspect-ratio: 257/437;
    background-image: url(../images/qa10/image8_sp.png);
    width: 25.7rem;
    left: -15.3rem;
    top: 47.2rem;
    z-index: 6;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .image9 {
    aspect-ratio: 256/173;
    background-image: url(../images/qa10/image9.webp);
    width: 25.6rem;
    left: -24.9rem;
    bottom: -4.6rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .image9 {
    aspect-ratio: 750/1140;
    background-image: url(../images/qa10/image9_sp.png);
    width: 100vw;
    left: 50%;
    translate: -50% 0;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .qa_correct {
    z-index: 4;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_correct_head {
    width: 23.9rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .qa_correct_head {
    width: 23.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs {
    padding-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .qa_chart_indexs {
    background-image: url(../images/qa10/chart_indexs_sp.png);
    height: 16.6rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs > li {
    top: -3rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs > li:nth-of-type(1) {
    width: 4.9rem;
    left: 2.5rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs > li:nth-of-type(2) {
    width: 3.6rem;
    left: 9.4rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs > li:nth-of-type(3) {
    width: 4.5rem;
    left: 18.7rem;
    top: 1.8rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_chart_indexs > li:nth-of-type(4) {
    width: 7rem;
    left: 42.9rem;
  }
}
@media (min-width: 769px) {
  .qa_content.qa10 .qa_correct_image {
    width: 49.8rem;
  }
}
@media (max-width: 768px) {
  .qa_content.qa10 .qa_correct_image {
    width: 33rem;
    padding-top: 1rem;
  }
}
.qa_question {
  position: relative;
  margin: 0 auto;
  line-height: 0;
}
@media (min-width: 769px) {
  .qa_question {
    background: #fff;
    width: 94rem;
  }
  .qa_question::after {
    content: "";
    position: absolute;
    border: 0.7rem solid #000;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
  }
}
.qa_question img {
  position: relative;
}
.qa_choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .qa_choices {
    width: 105.7rem;
    height: 24.9rem;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .qa_choices {
    display: block;
    width: 100vw;
  }
}
.qa_choices > li {
  display: flex;
}
.qa_choices > li:nth-last-of-type(n+3) {
  align-items: flex-end;
}
.qa_choices > li:nth-last-of-type(n+3) .qa_choice {
  margin-bottom: -0.35rem;
}
.qa_choices > li:nth-of-type(n+3) {
  align-items: flex-start;
}
.qa_choices > li:nth-of-type(n+3) .qa_choice {
  margin-top: -0.35rem;
}
.qa_choices > li:nth-of-type(odd) {
  justify-content: flex-end;
}
.qa_choices > li:nth-of-type(odd) .qa_choice {
  margin-right: -0.35rem;
}
.qa_choices > li:nth-of-type(even) {
  justify-content: flex-start;
}
.qa_choices > li:nth-of-type(even) .qa_choice {
  margin-left: -0.35rem;
}
.qa_choice.grande {
  width: calc(100% + 0.35rem);
}
@media (min-width: 769px) {
  .qa_choice.large {
    width: calc(88.91% + 0.35rem);
  }
}
@media (max-width: 768px) {
  .qa_choice.large {
    width: calc(92.806% + 0.35rem);
  }
}
@media (min-width: 769px) {
  .qa_choice.medium {
    width: calc(82.331% + 0.35rem);
  }
}
@media (max-width: 768px) {
  .qa_choice.medium {
    width: calc(92.806% + 0.35rem);
  }
}
@media (min-width: 769px) {
  .qa_choice.small {
    width: calc(76.128% + 0.35rem);
  }
}
@media (max-width: 768px) {
  .qa_choice.small {
    width: calc(85.612% + 0.35rem);
  }
}
.qa_correct {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
  z-index: 3;
}
@media (min-width: 769px) {
  .qa_correct {
    width: 94rem;
    margin-top: 3.2rem;
  }
}
@media (min-width: 769px) {
  .qa_correct:has(.is-opened) {
    row-gap: 4.2rem;
  }
}
@media (max-width: 768px) {
  .qa_correct:has(.is-opened) {
    row-gap: 4.5rem;
  }
}
.qa_correct_switch {
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media (min-width: 769px) {
  .qa_correct_switch {
    width: 94rem;
    height: 11.5rem;
  }
}
@media (max-width: 768px) {
  .qa_correct_switch {
    width: 62.5rem;
    height: 14rem;
  }
}
.qa_correct_switch * {
  width: 100%;
  height: 100%;
}
.qa_correct_switch > * {
  fill: #d45d55;
  pointer-events: none;
}
.qa_correct_switch > *.close {
  display: none;
}
.qa_correct_switch:hover {
  background: #d45d55 !important;
}
.qa_correct_switch:hover > * {
  fill: #fff;
}
.qa_correct_switch.is-opened > *.close {
  display: block;
}
.qa_correct_switch.is-opened > *.open {
  display: none;
}
.qa_correct_head {
  margin: 0 auto;
}
.qa_correct_content {
  position: relative;
  height: 0;
  margin: 0 auto;
  overflow: hidden;
  transition: height 0.4s;
}
@media (min-width: 769px) {
  .qa_correct_content {
    width: 87rem;
  }
}
.qa_correct_content.is-opened {
  overflow: visible;
}
.qa_correct_content.is-opened > *:not(.line_bg.white) {
  opacity: 1;
  transition: opacity 0.1s linear 0.6s;
}
.qa_correct_content > *:not(.line_bg.white) {
  opacity: 0;
  transition: opacity 0.1s linear 0s;
}
.qa_correct_content > .line_bg:not(.black) {
  position: relative;
  margin: 0 auto;
  z-index: 5;
}
@media (min-width: 769px) {
  .qa_correct_content > .line_bg:not(.black) {
    padding: 5.5rem 3.5rem 5rem;
  }
}
@media (max-width: 768px) {
  .qa_correct_content > .line_bg:not(.black) {
    width: 50rem;
    padding: 6rem 0 5.5rem;
  }
}
.qa_correct_image {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  padding-top: 3.5rem;
}
.qa_correct_image.js-animation {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.55, -0.08, 0, 2.99) 0.6s, opacity 0.1s linear 0.6s;
}
.qa_correct_image > figure.absolute {
  position: absolute;
  width: 100%;
  inset: auto 0 0;
}
.qa_correct_image > figure.js-animation.slideLeftIn {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.4s linear 1s;
}
.qa_correct_image > figure.js-animation.boundIn {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.55, -0.08, 0, 2.99) 1s, opacity 0.1s linear 1s;
}
.qa_correct_image > figure.js-animation.delay2 {
  transition-delay: 1.2s;
}
.qa_correct_image > figure.js-animation.delay3 {
  transition-delay: 1.4s;
}
.qa_correct_image > figure.js-animation.delay4 {
  transition-delay: 1.6s;
}
.is-opened .qa_correct_image.is-animated {
  opacity: 1;
  transform: scale(1);
}
.is-opened .qa_correct_image.is-animated > figure.slideLeftIn {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.is-opened .qa_correct_image.is-animated > figure.boundIn {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 769px) {
  .qa_detail {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .qa_detail {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .qa_detail > dt {
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .qa_detail > dt:nth-of-type(1) {
    width: 9.2rem;
  }
}
@media (max-width: 768px) {
  .qa_detail > dt:nth-of-type(1) {
    width: 12rem;
  }
}
@media (min-width: 769px) {
  .qa_detail > dt:nth-of-type(2) {
    width: 10.8rem;
  }
}
@media (max-width: 768px) {
  .qa_detail > dt:nth-of-type(2) {
    width: 14rem;
  }
}
@media (max-width: 768px) {
  .qa_detail > dd {
    margin-top: 1.5rem;
  }
}
@media (min-width: 769px) {
  .qa_detail > dd:nth-of-type(1) {
    margin-top: 1rem;
  }
}
@media (min-width: 769px) {
  .qa_detail > dd:nth-of-type(2) {
    margin-top: 0.5rem;
  }
}
.qa_chart {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .qa_chart {
    width: 80rem;
  }
}
@media (max-width: 768px) {
  .qa_chart {
    width: 100%;
  }
}
.qa_chart_image {
  display: flex;
  background: #000;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.4s ease 0.6s;
}
@media (min-width: 769px) {
  .qa_chart_image {
    column-gap: 0.7rem;
    width: 100%;
    height: 7.7rem;
    padding: 0.7rem;
  }
}
@media (max-width: 768px) {
  .qa_chart_image {
    column-gap: 0.5rem;
    width: 41.2rem;
    height: 9.2rem;
    margin: 0 auto 7.5rem;
    padding: 0.5rem;
  }
}
.is-opened .is-animated .qa_chart_image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.qa_chart_image > li {
  background: #989898;
  height: 100%;
}
.qa_chart_image > li.is-correct {
  background: #d45d55;
}
.qa_chart_indexs {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s linear 1s;
}
.is-opened .is-animated .qa_chart_indexs {
  opacity: 1;
}
@media (max-width: 768px) {
  .qa_chart_indexs {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
  }
}
.qa_chart_indexs > li {
  position: absolute;
}
@media (max-width: 768px) {
  .qa_chart_indexs > li {
    display: none;
  }
}
.qa_text {
  letter-spacing: -0.01em;
  font-weight: 900;
  text-align: justify;
}
@media (min-width: 769px) {
  .qa_text {
    line-height: 1.637;
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .qa_text {
    width: 40rem;
    margin: 0 auto;
    line-height: 1.385;
    font-size: 2.6rem;
  }
}

@media (min-width: 769px) {
  .result_section {
    padding: 16.5rem 0 12.7rem;
  }
}
@media (max-width: 768px) {
  .result_section {
    padding: 14.6rem 0 12.1rem;
  }
}
.result_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .result_title {
    padding-bottom: 6.6rem;
  }
}
@media (max-width: 768px) {
  .result_title {
    padding-bottom: 2.4rem;
  }
}
@media (min-width: 769px) {
  .result_title h2 {
    width: 54rem;
    margin-bottom: -0.7rem;
  }
}
@media (max-width: 768px) {
  .result_title h2 {
    width: 37.2rem;
  }
}
@media (min-width: 769px) {
  .result_title p {
    width: 100rem;
  }
}
@media (max-width: 768px) {
  .result_title p {
    background: none !important;
    width: 38.4rem;
  }
  .result_title p::after {
    display: none;
  }
}
.result_content {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .result_content {
    width: 100rem;
  }
}
@media (max-width: 768px) {
  .result_content {
    width: 100vw;
  }
}
.result_content [class^=line]:not(.line_bg), .result_content [class^=image] {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 769px) {
  .result_content .line1 {
    aspect-ratio: 226/75;
    background-image: url(../images/result/line1_pc.png);
    width: 22.6rem;
    left: -4.6rem;
    top: -22.8rem;
  }
}
@media (max-width: 768px) {
  .result_content .line1 {
    aspect-ratio: 750/1394;
    background-image: url(../images/result/line1_sp.png);
    width: 100vw;
    left: 0;
    top: -25rem;
  }
}
@media (min-width: 769px) {
  .result_content .line2 {
    aspect-ratio: 174/270;
    background-image: url(../images/result/line2_pc.png);
    width: 17.4rem;
    left: -17.4rem;
    top: 3.7rem;
  }
}
@media (min-width: 769px) {
  .result_content .line3 {
    aspect-ratio: 264/94;
    background-image: url(../images/result/line3_pc.png);
    width: 26.4rem;
    left: 0;
    bottom: -9.4rem;
  }
}
@media (min-width: 769px) {
  .result_content .line4 {
    aspect-ratio: 150/173;
    background-image: url(../images/result/line4_pc.png);
    width: 15rem;
    right: -14.3rem;
    top: 13rem;
  }
}
.result_content .image1 {
  aspect-ratio: 190/276;
  background-image: url(../images/result/image1.webp);
}
@media (min-width: 769px) {
  .result_content .image1 {
    width: 19rem;
    right: -20.5rem;
    top: -27.8rem;
  }
}
@media (max-width: 768px) {
  .result_content .image1 {
    width: 18rem;
    left: 59.2rem;
    top: -26.2rem;
  }
}
.result_content .image2 {
  aspect-ratio: 198/300;
  background-image: url(../images/result/image2.webp);
}
@media (min-width: 769px) {
  .result_content .image2 {
    width: 19.8rem;
    left: -20.4rem;
    bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .result_content .image2 {
    width: 15rem;
    left: 0;
    top: 76.6rem;
  }
}
.result_content .image3 {
  aspect-ratio: 230/173;
  background-image: url(../images/result/image3.webp);
}
@media (min-width: 769px) {
  .result_content .image3 {
    width: 23rem;
    right: -22.3rem;
    top: -4.3rem;
  }
}
.result_content .image4 {
  aspect-ratio: 181/136;
  background-image: url(../images/result/image4.webp);
}
@media (min-width: 769px) {
  .result_content .image4 {
    width: 18.1rem;
    left: -22.7rem;
    top: -22.8rem;
  }
}
.result_content .image5 {
  aspect-ratio: 181/136;
  background-image: url(../images/result/image5.webp);
}
@media (min-width: 769px) {
  .result_content .image5 {
    width: 18.1rem;
    left: -17.4rem;
    top: -9.9rem;
  }
}
.result_content .image6 {
  aspect-ratio: 230/173;
  background-image: url(../images/result/image6.webp);
}
@media (min-width: 769px) {
  .result_content .image6 {
    width: 23rem;
    left: -22.3rem;
    bottom: -9.4rem;
  }
}
@media (min-width: 769px) {
  .result_content .image7 {
    aspect-ratio: 181/136;
    background-image: url(../images/result/image7.webp);
    width: 18.1rem;
    right: -17.4rem;
    bottom: -12.9rem;
  }
}
@media (max-width: 768px) {
  .result_content .image7 {
    aspect-ratio: 750/1394;
    background-color: transparent;
    background-image: url(../images/result/image7_sp.png);
    width: 100vw;
    left: 0;
    top: -25rem;
  }
  .result_content .image7::after {
    display: none;
  }
}
.result_table {
  display: grid;
  background: #000;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .result_table {
    grid-template-columns: 82.252% 1fr;
    grid-template-rows: 4.1rem repeat(4, 7.6rem);
    gap: 0.7rem;
    width: 100%;
    padding: 0.7rem;
  }
}
@media (max-width: 768px) {
  .result_table {
    grid-template-columns: 100%;
    gap: 0.65rem;
    width: 48.2rem;
    padding: 0.65rem;
  }
}
.result_table_head {
  display: flex;
  align-items: center;
  background: #fff;
}
@media (min-width: 769px) {
  .result_table_head {
    padding: 0 1.9rem;
  }
}
@media (max-width: 768px) {
  .result_table_head.index {
    display: none;
  }
}
.result_table_body {
  background: #fff;
  position: relative;
}
@media (min-width: 769px) {
  .result_table_body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 3.4rem 0 0;
  }
}
@media (min-width: 769px) {
  .result_table_body.index {
    padding: 0 1.1rem;
  }
}
@media (max-width: 768px) {
  .result_table_body.index {
    display: none;
  }
}
.result_table_body figure {
  position: relative;
}
@media (min-width: 769px) {
  .result_table_body figure {
    display: none;
  }
}
.result_table_body p {
  font-weight: 900;
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
}
@media (min-width: 769px) {
  .result_table_body p {
    line-height: 1;
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .result_table_body p {
    position: absolute;
    right: 3rem;
    bottom: 2rem;
    text-align: right;
    line-height: 1;
    font-size: 3.8rem;
  }
}

@media (min-width: 769px) {
  .gallery_section {
    padding: 10.5rem 0 0;
  }
}
@media (max-width: 768px) {
  .gallery_section {
    padding: 11.6rem 0 0;
  }
}
.gallery_title {
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .gallery_title h2 {
    width: 72.6rem;
  }
}
@media (max-width: 768px) {
  .gallery_title h2 {
    width: 48.2rem;
  }
}
@media (min-width: 769px) {
  .gallery_content {
    padding-top: 3.7rem;
  }
}
@media (max-width: 768px) {
  .gallery_content {
    padding-top: 4.7rem;
  }
}
.gallery_list {
  display: grid;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .gallery_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.8rem 3.2rem;
    width: 120.4rem;
  }
}
@media (max-width: 768px) {
  .gallery_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2.4rem;
    width: 57rem;
  }
}
@media (min-width: 769px) {
  .gallery_list > li:nth-of-type(3n+1) {
    transition-delay: 0s !important;
  }
  .gallery_list > li:nth-of-type(3n+2) {
    transition-delay: 0.2s !important;
  }
  .gallery_list > li:nth-of-type(3n) {
    transition-delay: 0.4s !important;
  }
}
@media (max-width: 768px) {
  .gallery_list > li:nth-of-type(2n+1) {
    transition-delay: 0s !important;
  }
  .gallery_list > li:nth-of-type(2n) {
    transition-delay: 0.2s !important;
  }
}

@media (min-width: 769px) {
  .last_content {
    padding: 13.9rem 0 14.7rem;
  }
}
@media (max-width: 768px) {
  .last_content {
    padding: 7.6rem 0 14.1rem;
  }
}
.last_content p {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .last_content p {
    width: 85.8rem;
  }
}
@media (max-width: 768px) {
  .last_content p {
    width: 37.7rem;
  }
}

.event_section {
  background: #fff;
}
@media (min-width: 769px) {
  .event_section {
    padding: 12.7rem 0 11.7rem;
  }
}
@media (max-width: 768px) {
  .event_section {
    padding: 13rem 0 12.5rem;
  }
}
.event_title {
  display: flex;
  justify-content: center;
}
.event_title h3 {
  height: 4.2rem;
}
@media (min-width: 769px) {
  .event_content {
    padding-top: 4.4rem;
  }
}
@media (max-width: 768px) {
  .event_content {
    padding-top: 2.8rem;
  }
}
@media (min-width: 769px) {
  .event_content + .event_title {
    padding-top: 10.2rem;
  }
}
@media (max-width: 768px) {
  .event_content + .event_title {
    padding-top: 7.8rem;
  }
}
.event_banners {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .event_banners {
    width: 136.8rem;
  }
}
@media (max-width: 768px) {
  .event_banners {
    flex-direction: column;
    row-gap: 1.8rem;
    width: 50rem;
  }
}
@media (min-width: 769px) {
  .event_banners.size1 {
    column-gap: 3.3rem;
  }
}
@media (min-width: 769px) {
  .event_banners.size2 {
    column-gap: 1.9rem;
  }
}
@media (min-width: 769px) {
  .event_banners.size3 {
    column-gap: 2.2rem;
  }
}
.event_banners > li {
  width: 100%;
}
.event_banner {
  display: block;
}
.event_banner:hover img {
  opacity: 0.5;
}

.pagetop_anchor {
  position: fixed;
  z-index: 450;
  transition: opacity 0.2s;
}
@media (min-width: 769px) {
  .pagetop_anchor {
    width: 13.4rem;
    right: 5rem;
    bottom: 9rem;
  }
}
@media (min-width: 1921px) {
  .pagetop_anchor {
    right: calc(50vw - 1010px);
  }
}
@media (max-width: 768px) {
  .pagetop_anchor {
    width: 14rem;
    right: 2.5rem;
    bottom: 5rem;
  }
}
.pagetop_anchor.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.pagetop_anchor a {
  aspect-ratio: 134/161;
  display: block;
}
.pagetop_anchor a > * {
  pointer-events: none;
}
.pagetop_anchor a:hover img {
  opacity: 0.5;
}