@charset "UTF-8";
/* ========== 色 ========== */
/* ========== フォントサイズ ========== */
/* ========== フォント ========== */
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* A elements that don't have a class get default styles */
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ====================================================
  BASE CSS – Reusable Utility & Foundation Styles
  Author: ChatGPT
==================================================== */
/* -----------------------------
  Font sizing & root setup
----------------------------- */
html {
  font-size: clamp(10px, 2.6vw, 16px);
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
}

/* -----------------------------
  Base styles
----------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
  font-weight: 700;
}

/* Reset for common elements */
a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* -----------------------------
  Image styling
----------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* -----------------------------
  Animation classes
----------------------------- */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation: fade-in 1s ease forwards;
  animation-delay: 2s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation: fade-out 0.5s ease forwards;
}

.fadeup.is-animated {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoomIn.is-animated {
  animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fuwafuwa {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.left-to-right::after {
  transform: scaleX(0);
}
.left-to-right.is-animated::after {
  animation: leftToRight 5s ease forwards;
  transform-origin: left;
}

@keyframes leftToRight {
  0% {
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0) translateY(-50%) translatex(-5%);
  }
  30% {
    transform: scaleX(1) translateY(-50%) translateX(0);
  }
  100% {
    transform: scaleX(1) translateY(-50%) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.left-to-right2::after {
  transform: scaleX(0);
}
.left-to-right2.is-animated::after {
  animation: leftToRight2 5s ease forwards;
  transform-origin: left;
}

@keyframes leftToRight2 {
  0% {
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0) translatex(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.move-arrow {
  animation: move-arrow 3s ease infinite;
}

@keyframes move-arrow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  70% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.textanimetion.is-animated {
  animation: textAnimation 3s ease forwards;
}

.textanimetion-delay1s.is-animated {
  animation: textAnimation 2s 0.5s ease forwards;
}

@keyframes textAnimation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/* 角度用のカスタムプロパティ定義 */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
/* 最初は非アニメ状態（何も見えない） */
.circle-chart__progress-wrap {
  --angle: 0deg;
  mask-image: conic-gradient(from -10deg, #000 0deg var(--angle), transparent var(--angle) 360deg);
  -webkit-mask-image: conic-gradient(from -10deg, #000 0deg var(--angle), transparent var(--angle) 360deg);
}

/* .is-animated が付いたときにアニメ開始 */
.circle-chart.is-animated .circle-chart__progress-wrap {
  animation: chart-fill 2s ease forwards;
}

/* 0deg → 324deg (＝9割) まで描く */
@keyframes chart-fill {
  to {
    --angle: 360deg;
  }
}
/*---------------
少しふわふわ
------------------*/
.fuwafuwa2 {
  animation: fuwafuwa2 2s ease-in-out infinite;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-7deg);
  }
}
/*---------------
あしらい１
------------------*/
.fuwafuwa-3 {
  animation: fuwafuwa3 4s ease-in-out infinite;
}

@keyframes fuwafuwa3 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-0.7rem, -0.7rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------
あしらい2
------------------*/
.fuwafuwa-4 {
  animation: fuwafuwa4 8s ease infinite;
}

@keyframes fuwafuwa4 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-1rem, -1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------
あしらい3
------------------*/
.fuwafuwa-5 {
  animation: fuwafuwa5 8s ease infinite;
}

@keyframes fuwafuwa5 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-0.7rem, 0.7rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------
あしらい4
------------------*/
.fuwafuwa-6 {
  animation: fuwafuwa6 4s ease-in-out infinite;
}

@keyframes fuwafuwa6 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2rem, 2rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* -----------------------------
  Layout container
----------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* -----------------------------
  Prevent tel link on desktop
----------------------------- */
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    text-decoration: none;
    color: inherit;
  }
}
/*
レスポンシブ
*/
.sp__only {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp__only {
    display: none;
  }
}

.pc__only {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc__only {
    display: block;
  }
}

.number {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  vertical-align: text-bottom;
  line-height: 0.9;
}

.line {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.line::after {
  position: absolute;
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/線-黄色.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 11rem;
  z-index: -1;
}

.footer * {
  color: #009cff;
}
.footer__inner {
  width: 31.5rem;
  margin: 0 auto;
}
.footer .flex {
  display: flex;
  justify-content: space-between;
}
.footer .flex.bottom {
  margin-top: 1.38rem;
  align-items: flex-end;
}
.footer__btn {
  width: 9.5rem;
  padding-top: 2.3rem;
  text-align: center;
}
.footer__btn .catch {
  font-size: 0.7rem;
  font-weight: 500;
  margin-left: -0.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  font-family: "Fredoka", sans-serif;
}
.footer__btn .link {
  position: relative;
  display: block;
  width: 2.8rem;
  aspect-ratio: 1/1;
}
.footer__btn .link > img {
  display: block;
  position: absolute;
  width: 1rem;
  aspect-ratio: 1/1;
  width: 100%;
}
.footer__btn .link .hover {
  opacity: 0;
}
.footer__btn .link:hover > .hover {
  opacity: 1;
}
.footer .logo {
  width: 9.6rem;
}
.footer .copy {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  margin-right: 0.3rem;
  letter-spacing: 0.02rem;
}

@media screen and (min-width: 769px) {
  .footer * {
    color: #009cff;
  }
  .footer__inner {
    width: 41.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .footer .flex {
    display: flex;
    justify-content: space-between;
  }
  .footer .flex.bottom {
    margin-top: 1.38rem;
    align-items: flex-end;
  }
  .footer__btn {
    width: 8.2rem;
    padding-top: 3.3rem;
    text-align: center;
  }
  .footer__btn .catch {
    font-size: 0.6rem;
    margin-left: -0.2rem;
    margin-bottom: 0.2rem;
  }
  .footer__btn .link {
    position: relative;
    display: block;
    width: 2.4rem;
    aspect-ratio: 1/1;
  }
  .footer__btn .link > img {
    display: block;
    position: absolute;
    width: 1rem;
    aspect-ratio: 1/1;
    width: 100%;
  }
  .footer__btn .link .hover {
    opacity: 0;
  }
  .footer__btn .link:hover > .hover {
    opacity: 1;
  }
  .footer .logo {
    width: 10.5rem;
    position: absolute;
    left: 50%;
    top: 2.2rem;
    transform: translate(-50%);
  }
  .footer .copy {
    font-size: 0.58rem;
    margin-bottom: -0.1rem;
    margin-right: 0.2rem;
    letter-spacing: 0;
  }
}
.fv {
  position: relative;
  overflow: hidden;
  background-image: url(../img/①FV/FV背景①グラデ_optimized_.png);
  background-size: cover;
  background-position-y: calc(100% - 26rem);
  background-repeat: no-repeat;
}
.fv__bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  offset: 0;
}
.fv__bg > img {
  height: 100%;
  width: 100%;
  max-width: none;
}
.fv__bg-mark {
  position: absolute;
  opacity: 0.5;
  mix-blend-mode: color-dodge;
  width: 100vw;
  height: 10rem;
}
.fv__bg-mark > img {
  position: absolute;
  width: 2rem;
  aspect-ratio: 1/1;
}
.fv__bg-mark .group {
  width: 100vw;
  height: auto;
}
.fv__bg-mark .id1 {
  top: 4rem;
  top: 16.41vw;
  left: 70vw;
  animation-duration: 6s;
}
.fv__bg-mark .id3 {
  top: 13.5rem;
  top: 55.38vw;
  left: 49.2vw;
  rotate: 6deg;
  width: 3rem;
  height: 2rem;
  animation-duration: 6s;
}
.fv__bg-mark .id4 {
  top: 8.5rem;
  top: 34.87vw;
  left: 53.5vw;
  rotate: 6deg;
  animation-delay: 2s;
}
.fv__bg-mark .id5 {
  top: 6.5rem;
  top: 26.67vw;
  left: 70.5vw;
}
.fv__bg-mark .id6 {
  top: 6.2rem;
  top: 25.44vw;
  left: 57.9vw;
  width: 1rem;
  height: 0.5rem;
  rotate: -7deg;
}
.fv__bg-mark .id7 {
  top: -2.8rem;
  top: -11.49vw;
  left: 65.9vw;
  width: 1rem;
  rotate: -7deg;
}
.fv__bg-mark .id8 {
  top: 12.9rem;
  top: 52.92vw;
  left: 92.4vw;
  width: 3rem;
  height: 1rem;
}
.fv__bg-mark .id9 {
  top: 1.5rem;
  top: 6.15vw;
  left: 50.8vw;
  width: 1.5rem;
}
.fv__bg-mark .id10 {
  top: 0.2rem;
  top: 0.82vw;
  left: 56.8vw;
  width: 2.5rem;
}
.fv__bg-mark .id11 {
  top: 0.6rem;
  top: 2.46vw;
  left: 79.8vw;
  width: 1.5rem;
}
.fv__bg-mark .id12 {
  top: 6.2rem;
  top: 25.44vw;
  left: 93.8vw;
  width: 2rem;
  height: 2.5rem;
}
.fv__bg-mark .id13 {
  top: 12.8rem;
  top: 52.51vw;
  left: 61vw;
  width: 1.5rem;
  height: 1.5rem;
  animation-duration: 10s;
}
.fv__bg-mark .id14 {
  top: 10.8rem;
  top: 44.31vw;
  left: 47.5vw;
  width: 1.6rem;
  height: 2rem;
}
.fv__bg-mark .id15 {
  top: 1.2rem;
  top: 4.92vw;
  left: 70.5vw;
  width: 1.6rem;
  height: 2rem;
}
.fv__bg-mark .id16 {
  top: 0.5rem;
  top: 2.05vw;
  left: 89.5vw;
  width: 3rem;
  height: 3rem;
}
.fv__bg-mark .id17 {
  top: 32.5rem;
  top: 133.33vw;
  left: 66.5vw;
  width: 3rem;
  height: 3rem;
}
.fv__logo {
  position: absolute;
  left: 2.1rem;
  width: 22vw;
  top: 1.8rem;
  z-index: 1;
}
.fv__man {
  position: absolute;
  right: -10.2rem;
  bottom: -5rem;
  width: 33.8rem;
  z-index: 0;
}
.fv__inner {
  position: relative;
  width: 82.6%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 15.7vw;
  z-index: 1;
}
.fv__text {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.fv__text-top {
  position: relative;
  z-index: 1;
  width: 13.4rem;
  text-align: center;
  line-height: 2.2;
  font-size: 1rem;
  margin-left: 0.08rem;
}
.fv__text-top > img {
  position: absolute;
  z-index: -1;
}
.fv__text-top .fv__text-emphasis {
  font-size: 1.2rem;
}
.fv__text-middle {
  line-height: 1.6;
  margin-top: 0.1rem;
  font-size: 2rem;
}
.fv__text-middle .fv__text-emphasis {
  font-size: 1.9rem;
}
.fv__text-middle .fv__text-emphasis.bottom {
  font-size: 2.4rem;
  letter-spacing: 0.07em;
}
.fv__text-middle .fv__text-emphasis > .dot {
  font-size: 2.2rem;
  letter-spacing: 0;
}
.fv__text-middle .fv__text-emphasis > .dot > span {
  position: relative;
}
.fv__text-middle .fv__text-emphasis > .dot > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: -0.27rem;
  left: 50%;
  transform: translateX(-87%);
  background: #f8f8f8;
}
.fv__text-middle .fv__text-emphasis > .big {
  font-size: 2.8rem;
  margin-right: -0.2rem;
}
.fv__text-middle .fv__text-emphasis > .litle-big {
  font-size: 2.3rem;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.fv__text-middle > .fv__text-cloud {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #009cff;
  width: 13.8rem;
  padding-left: 0.8rem;
  line-height: 1.4;
  font-size: 2rem;
}
.fv__text-middle > .fv__text-cloud > img {
  position: absolute;
  z-index: -1;
  left: 0.2rem;
}
.fv__text-middle > .fv__text-cloud > .fv__text-emphasis {
  font-size: 3rem;
}
.fv__text-middle > .fv__text-yellow {
  display: inline-block;
  color: #ffff00;
  margin-top: 0.8rem;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 1.5rem;
}
.fv__text-middle > .fv__text-yellow .fv__text-emphasis {
  font-size: 2.8rem;
}
.fv__text-middle > .fv__text-yellow .fv__text-emphasis.sense {
  font-size: 2.4rem;
}
.fv__text-bottom {
  font-size: 3rem;
  margin-top: -0.2rem;
}
.fv__text-bottom > .fv__text-emphasis {
  font-size: 4.6rem;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .fv {
    position: relative;
  }
  .fv__bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    offset: 0;
    overflow: hidden;
  }
  .fv__bg > img {
    height: 100%;
    width: 100%;
    max-width: none;
  }
  .fv__bg-mark {
    position: absolute;
    opacity: 0.5;
    mix-blend-mode: color-dodge;
    width: 100vw;
    height: 10rem;
  }
  .fv__bg-mark .id1 {
    top: clamp(7.8rem, 16.23vw, 7.8rem);
    left: 60.2vw;
  }
  .fv__bg-mark .id3 {
    top: clamp(17.7rem, 36.82vw, 17.7rem);
    left: 49.2vw;
    rotate: 5deg;
    width: 3.5rem;
    height: 2.5rem;
  }
  .fv__bg-mark .id4 {
    top: clamp(11rem, 22.88vw, 11rem);
    left: 53.5vw;
    rotate: 6deg;
    animation-delay: 2s;
    width: 2.5rem;
  }
  .fv__bg-mark .id5 {
    top: clamp(9.3rem, 19.36vw, 9.3rem);
    left: 69.5vw;
    width: 3rem;
    height: 2rem;
  }
  .fv__bg-mark .id6 {
    top: clamp(8.6rem, 17.89vw, 8.6rem);
  }
  .fv__bg-mark .id7 {
    top: clamp(0.6rem, 1.25vw, 0.6rem);
    left: 66.8vw;
    width: 1rem;
    rotate: -7deg;
  }
  .fv__bg-mark .id8 {
    top: clamp(16.9rem, 35.18vw, 16.9rem);
    left: 93.4vw;
  }
  .fv__bg-mark .id9 {
    top: clamp(2.5rem, 5.2vw, 2.5rem);
  }
  .fv__bg-mark .id10 {
    top: clamp(1rem, 2.08vw, 1rem);
    left: 57vw;
    width: 3rem;
  }
  .fv__bg-mark .id11 {
    top: clamp(1.3rem, 2.71vw, 1.3rem);
    left: 79.5vw;
    width: 2rem;
  }
  .fv__bg-mark .id12 {
    top: clamp(8.5rem, 17.69vw, 8.5rem);
    left: 93.8vw;
    width: 2.5rem;
    height: 3rem;
  }
  .fv__bg-mark .id13 {
    top: clamp(16.5rem, 34.34vw, 16.5rem);
    left: 61.5vw;
    width: 1.7rem;
    height: 2rem;
  }
  .fv__bg-mark .id14 {
    top: clamp(14.2rem, 29.55vw, 14.2rem);
    left: 47.2vw;
    width: 2rem;
    height: 2.5rem;
  }
  .fv__bg-mark .id15 {
    top: clamp(2.2rem, 4.58vw, 2.2rem);
    left: 70.5vw;
    width: 1.8rem;
    height: 2.8rem;
  }
  .fv__bg-mark .id16 {
    top: clamp(1.2rem, 2.5vw, 1.2rem);
    left: 89.5vw;
    width: 3.5rem;
    height: 3.5rem;
  }
  .fv__bg-mark .id17 {
    top: clamp(16.5rem, 34.34vw, 16.5rem);
  }
  .fv__bg-star {
    position: absolute;
    z-index: 1;
    width: 100vw;
  }
  .fv__bg-star img {
    position: absolute;
  }
  .fv__bg-star .yellow {
    top: 19.5rem;
    left: 95vw;
    width: 1.3rem;
    rotate: 26deg;
  }
  .fv__bg-star .lightblue.id1 {
    top: 6.75rem;
    left: 92.2vw;
    width: 0.9rem;
    rotate: -11deg;
  }
  .fv__bg-star .lightblue.id2 {
    top: 5.1rem;
    left: 65.7vw;
    width: 1rem;
    rotate: -7deg;
  }
  .fv__logo {
    left: 1rem;
    width: 8rem;
    top: 1.1rem;
  }
  .fv__man {
    right: -7.5rem;
    bottom: -9.4rem;
    width: 23rem;
  }
  .fv__inner {
    position: relative;
    width: 78.7%;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 2rem;
  }
  .fv__text {
    font-size: 2rem;
    line-height: 2;
    font-weight: 700;
    position: relative;
    z-index: 1;
    width: 28.5rem;
  }
  .fv__text-top {
    width: 11.9rem;
    font-size: 0.9rem;
    margin-left: 8.2rem;
  }
  .fv__text-top .fv__text-emphasis {
    font-size: 1.1rem;
  }
  .fv__text-middle {
    line-height: 1.6;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    text-align: left;
  }
  .fv__text-middle .fv__text-emphasis {
    font-size: 1.3rem;
    letter-spacing: -1;
    position: relative;
  }
  .fv__text-middle .fv__text-emphasis.id1 {
    margin-left: 4rem;
  }
  .fv__text-middle .fv__text-emphasis.bottom {
    font-size: 1.7rem;
    letter-spacing: 0.05rem;
    margin-left: 0.1rem;
    margin-right: 0.3rem;
  }
  .fv__text-middle .fv__text-emphasis .dot {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .fv__text-middle .fv__text-emphasis .dot > span {
    position: relative;
  }
  .fv__text-middle .fv__text-emphasis .dot > span::after {
    width: 0.4rem;
  }
  .fv__text-middle .fv__text-emphasis > .big {
    position: relative;
    font-size: 2.1rem;
    margin-right: -0.13rem;
    bottom: -0.1rem;
  }
  .fv__text-middle .fv__text-emphasis > .litle-big {
    font-size: 1.6rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .fv__text-middle > .fv__text-cloud {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #009cff;
    width: 10rem;
    padding-left: 0rem;
    line-height: 1;
    font-size: 1.4rem;
    left: 0.5rem;
    top: -0.15rem;
  }
  .fv__text-middle > .fv__text-cloud > img {
    left: -0.45rem;
    top: -0.25rem;
  }
  .fv__text-middle > .fv__text-cloud > .fv__text-emphasis {
    font-size: 2.3rem;
    margin-right: 0.2rem;
    margin-left: 0.05rem;
    bottom: -0.11rem;
  }
  .fv__text-middle > .fv__text-yellow {
    display: inline-block;
    color: #ffff00;
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.15rem;
    margin-left: 0.28rem;
    margin-right: -0.3rem;
  }
  .fv__text-middle > .fv__text-yellow .fv__text-emphasis {
    font-size: 2.1rem;
    letter-spacing: 0.05rem;
  }
  .fv__text-middle > .fv__text-yellow .fv__text-emphasis.sense {
    font-size: 1.9rem;
    margin-left: -0.2rem;
    letter-spacing: -0.12rem;
    margin-right: 0.1rem;
  }
  .fv__text-bottom {
    font-size: 2.8rem;
    margin-top: 0.2rem;
    text-wrap: nowrap;
  }
  .fv__text-bottom > .fv__text-emphasis {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.07em;
    position: relative;
    top: -0.2rem;
  }
  .fv__text-bottom > .fv__text-emphasis.id2 {
    font-size: 4.3rem;
    top: -0.2rem;
    left: -0.3rem;
    letter-spacing: -0.05rem;
  }
}
.worries {
  position: relative;
  text-align: center;
  z-index: 2;
  color: #009cff;
  background-image: url(../img/①FV/FV背景②-お悩み部分（あしらい有り）_optimized_.png);
  background-position: center calc(100% + clamp(1.2rem, 3.1vw, 1.47rem));
  background-size: 140vw 100%;
  background-repeat: no-repeat;
  padding-bottom: 4rem;
  margin-top: -3.7rem;
  padding-top: 3.7rem;
}
.worries-bg {
  position: absolute;
  width: 100vw;
  height: clamp(56.78rem, 123vw, 59.78rem);
  margin-top: -1.2rem;
  transform-origin: left top;
  z-index: -1;
}
.worries-bg > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worries-bg-star > img {
  position: absolute;
  aspect-ratio: 1/1;
}
.worries-bg-star .yellow {
  top: 7.5rem;
  left: 1.7rem;
  width: 1.4rem;
}
.worries-bg-star .blue {
  top: 2.9rem;
  left: 8.8rem;
  width: 1.1rem;
}
.worries-bg-star .lightblue {
  top: 14.5rem;
  left: 4.65rem;
  width: 1.4rem;
}
.worries-bg-mark {
  position: absolute;
  transform: translate(24%, -23%) rotate(0deg) scale(0.55);
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: color-dodge;
  z-index: 0;
}
.worries-catch {
  padding-top: 5rem;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-left: -2rem;
  transform: translateY(50%);
  opacity: 0;
}
.worries-catch .emphasis {
  font-size: 3.8rem;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.worries-catch .logo {
  display: inline-block;
  width: 11rem;
  height: 2.4rem;
  position: relative;
  z-index: -1;
  margin-left: 2rem;
  mix-blend-mode: darken;
}
.worries-catch .logo > img {
  position: absolute;
  width: 100%;
  height: 5rem;
  top: -40%;
  left: 3%;
}
.worries-catch .bottom {
  letter-spacing: 0.08em;
}
.worries-question {
  margin-top: 7.2rem;
  font-size: 1.6rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.worries-question::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 1px;
  background: #009cff;
  top: 55%;
  left: -2vw;
  transform: translate(-100%, 50%);
}
.worries-question::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 1px;
  background: #009cff;
  top: 55%;
  right: -2.5vw;
  transform: translate(100%, 50%);
}
.worries-question > .emphasis {
  font-size: 2.1rem;
  margin-right: 0.1rem;
}
.worries-question > .emphasis > .dot {
  position: relative;
}
.worries-question > .emphasis > .dot::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.65rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffff00;
}
.worries-list {
  width: 27rem;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0.1rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.3rem;
}
.worries-list .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 50%;
  transform: translateX(-3rem) translateY(-50%);
}
.worries-list .checkmark {
  position: absolute;
  left: -1;
  z-index: 0;
  width: 1rem;
  aspect-ratio: 1/1;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.worries-item {
  color: #224960;
  position: relative;
  text-align: left;
  font-size: 0.8rem;
  line-height: 2.36rem;
  padding-left: 2.6rem;
}
.worries__img {
  display: flex;
  justify-content: space-between;
  width: 53vw;
  margin: 0 auto;
}
.worries__img > img {
  position: relative;
  display: block;
  width: 14.5vw;
  margin-bottom: -0.5rem;
  z-index: 1;
}
.worries__img .girl {
  width: 14vw;
  bottom: -0.7rem;
  transform: scaleY(0.9) translateY(-4px);
}

@media screen and (min-width: 769px) {
  .worries {
    position: relative;
    text-align: center;
    color: #009cff;
    background-position: center calc(100% + clamp(0rem, 0.5vw, 2rem));
    padding-bottom: clamp(4.2rem, 5vw, 5.2rem);
    background-size: 102vw 104.5%;
    margin-top: -1rem;
    padding-top: 1rem;
  }
  .worries-bg {
    position: absolute;
    width: 100vw;
    height: 51.7rem;
    margin-top: -2.1rem;
    z-index: -1;
  }
  .worries-bg > img {
    width: 104%;
    max-width: none;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .worries-bg-star > img {
    position: absolute;
    aspect-ratio: 1/1;
  }
  .worries-bg-star .yellow {
    top: 7.5rem;
    left: 1.7rem;
    width: 1.4rem;
  }
  .worries-bg-star .blue {
    top: 2.9rem;
    left: 8.8rem;
    width: 1.1rem;
  }
  .worries-bg-star .lightblue {
    top: 14.5rem;
    left: 4.65rem;
    width: 1.4rem;
  }
  .worries-bg-mark {
    position: absolute;
    transform: none;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: darken;
    z-index: 0;
    display: flex;
    width: 100vw;
    height: 24rem;
    bottom: 0;
    background-image: url(/img/①FV/背景あしらいーグループ_optimized_.png);
    background-size: auto;
    background-repeat: repeat;
  }
  .worries-bg-mark.sp__only {
    display: none;
  }
  .worries-catch {
    padding-top: 13.3vw;
    font-size: 1.7rem;
    line-height: 1;
    margin-left: -0.3rem;
    letter-spacing: 0.01em;
    transform: translateY(50%);
    opacity: 0;
  }
  .worries-catch .emphasis {
    font-size: 2.7rem;
    position: relative;
    bottom: -0.25rem;
    margin-left: 0.15rem;
    margin-right: 0.15rem;
  }
  .worries-catch .logo {
    width: 8rem;
    height: 2.4rem;
    margin-left: 1.3rem;
  }
  .worries-catch .logo > img {
    height: 3.9rem;
    top: -11%;
    left: 3%;
  }
  .worries-catch .bottom {
    letter-spacing: 0.02em;
    font-size: 1.8rem;
  }
  .worries-question {
    margin-top: 7.5rem;
    font-size: 1.6rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    letter-spacing: -0.07rem;
    margin-left: 0.1rem;
  }
  .worries-question::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 1px;
    background: #009cff;
    top: 55%;
    left: -2vw;
    transform: translate(-100%, 50%);
  }
  .worries-question::after {
    content: "";
    position: absolute;
    width: 50vw;
    height: 1px;
    background: #009cff;
    top: 55%;
    right: -0.5vw;
    transform: translate(100%, 50%);
  }
  .worries-question > .emphasis {
    font-size: 2rem;
    margin-right: 0.1rem;
    position: relative;
    left: -0.1rem;
    top: -0.1rem;
  }
  .worries-question > .emphasis > .dot {
    position: relative;
  }
  .worries-question > .emphasis > .dot::after {
    content: "";
    position: absolute;
    display: block;
    width: 0.6rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ffff00;
  }
  .worries-list {
    width: 24.8rem;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-top: 1.7rem;
    left: -0.15rem;
  }
  .worries-list .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 50%;
    transform: translateX(-2.35rem) translateY(-50%);
  }
  .worries-list .checkmark {
    position: absolute;
    left: -1;
    z-index: 0;
    width: 1rem;
    aspect-ratio: 1/1;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
  }
  .worries-item {
    color: #224960;
    position: relative;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    line-height: 2.2rem;
    padding-left: 2.35rem;
  }
  .worries-item.id1 {
    letter-spacing: 0;
  }
  .worries-item.id2 {
    letter-spacing: -0.71px;
  }
  .worries-item.id3 {
    letter-spacing: 0;
  }
  .worries__img {
    width: 41.8rem;
    position: relative;
    z-index: 10;
    margin-top: -7rem;
  }
  .worries__img > img {
    position: relative;
    display: block;
    width: 8.1rem;
    height: 11.3rem;
    margin-bottom: -0.5rem;
    z-index: 1;
  }
  .worries__img > img.man {
    width: 8.4rem;
    height: 12.5rem;
    margin-top: -0.8rem;
  }
  .worries__img > img.girl {
    width: 8.1rem;
    bottom: -0.1rem;
    transform: none;
  }
}
.solution {
  position: relative;
  padding-top: 3.5rem;
  margin-top: -3.9rem;
  padding-bottom: 2.02rem;
  background-color: #ffffff;
}
.solution__bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  z-index: -1;
}
.solution__bg > img {
  height: 100%;
  width: 100%;
  max-width: none;
}
.solution__inner {
  display: flex;
  justify-content: space-between;
  width: 72%;
  margin: 0 auto;
  transform: scale(0.5);
  opacity: 0;
}
.solution__img {
  width: 42%;
  margin-left: 5%;
}
.solution__text {
  width: 46.7%;
  font-size: 1.6rem;
  padding-top: 0.3rem;
}
.solution__sentence {
  position: relative;
  color: #009cff;
  line-height: 1;
  padding-top: 0.8rem;
}
.solution__sentence .logo {
  display: inline-block;
  width: 7.7rem;
  height: 3.7rem;
  position: relative;
  vertical-align: text-bottom;
  margin-top: 0.65rem;
  margin-right: 0.3rem;
}
.solution__sentence .logo > img {
  position: absolute;
  offset: 0;
  width: 100%;
  height: 100%;
}
.solution__sentence .top {
  font-size: 2rem;
  letter-spacing: -1.3px;
}
.solution__sentence .bottom {
  display: inline-block;
  font-size: 1.9rem;
  margin-top: 0.5rem;
  padding-left: 0.3rem;
  text-wrap: nowrap;
}
.solution__sentence .bottom > .box {
  display: inline-block;
  vertical-align: text-bottom;
  width: 2.7rem;
  font-size: 2.3rem;
  aspect-ratio: 1/1;
  border: solid 1px #009cff;
}
.solution__sentence .bottom > .box + .box {
  margin-left: -3px;
  margin-right: -3px;
}

@media screen and (min-width: 769px) {
  .solution {
    position: relative;
    padding-top: 3.3rem;
    padding-bottom: 1.1rem;
    margin-top: -4.5rem;
  }
  .solution__bg {
    width: 72%;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    top: 0px;
    z-index: -1;
  }
  .solution__bg > img {
    height: 100%;
    width: 100%;
    max-width: none;
  }
  .solution__inner {
    display: flex;
    justify-content: space-between;
    width: 72%;
    max-width: 640px;
    margin: 0 auto;
    transform: scale(0.5);
    opacity: 0;
  }
  .solution__img {
    width: 14.5rem;
    margin-left: 3.7%;
  }
  .solution__text {
    width: 47.6%;
    font-size: 1.8rem;
    padding-top: 0;
    display: flex;
    align-items: center;
    margin-top: -1.5rem;
  }
  .solution__sentence {
    position: relative;
    color: #009cff;
    line-height: 1.1;
    padding-top: 0.8rem;
  }
  .solution__sentence .logo {
    display: inline-block;
    width: 9.7rem;
    height: 4.7rem;
    position: relative;
    vertical-align: text-bottom;
    margin-top: 0.65rem;
    margin-right: 0.3rem;
  }
  .solution__sentence .logo > img {
    position: absolute;
    offset: 0;
    width: 100%;
    height: 100%;
  }
  .solution__sentence .top {
    font-size: 2.4rem;
    letter-spacing: -1.3px;
  }
  .solution__sentence .bottom {
    display: inline-block;
    font-size: 2.4rem;
    margin-top: 0.5rem;
    padding-left: 0.3rem;
    text-wrap: nowrap;
  }
  .solution__sentence .bottom > .box {
    display: inline-block;
    vertical-align: text-bottom;
    width: 3.4rem;
    height: 3.4rem;
    font-size: 2.8rem;
    text-align: center;
    aspect-ratio: 1/1;
    border: solid 1px #009cff;
  }
  .solution__sentence .bottom > .box + .box {
    margin-left: -4px;
    margin-right: -6px;
  }
}
.present {
  background: linear-gradient(270deg, #0798ff, #05d1ff);
  padding-top: 1.7rem;
}
.present__inner {
  width: 64%;
  margin: 0 auto;
  padding-bottom: 6rem;
  text-align: center;
}
.present__catch {
  position: relative;
  z-index: 1;
  width: 24rem;
  margin: 0 auto;
}
.present__catch > .bg {
  position: absolute;
  offset: 0;
  width: 100%;
  z-index: -1;
}
.present__catch-text {
  color: #3eb157;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.028em;
  position: relative;
  z-index: 1;
}
.present__catch-text .icon {
  display: inline-block;
  width: 1.7rem;
  aspect-ratio: 1/1;
  position: relative;
  vertical-align: text-bottom;
  margin-left: 0.7rem;
  top: -0.15rem;
}
.present__catch-text .icon > img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.present__catch-text .icon-line--hover {
  display: none;
}
.present__catch-text .dot {
  position: relative;
}
.present__catch-text .dot::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f9d358;
}
.present__text {
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.4;
  margin-top: 1.8rem;
  text-wrap: nowrap;
  text-align: center;
  font-feature-settings: "palt";
}
.present__text .dot {
  position: relative;
}
.present__text .dot::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f9d358;
}
.present__text .line {
  display: inline-block;
  color: #009cff;
  position: relative;
  z-index: 0;
  margin-left: 0.5em;
  transform-origin: left;
}
.present__text .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.2rem;
  top: 53%;
  left: 0;
  transform-origin: left;
  transform: scaleX(0) translateY(-50%);
  display: block;
  background: #f8f8f8;
  z-index: -1;
}
.present__text .emphasis {
  font-size: 1.8rem;
  display: inline-block;
}
.present__text .emphasis.bottom {
  letter-spacing: 0.07em;
}
.present__text .emphasis.bottom.m-l {
  margin-left: 0.7rem;
}
.present__claim {
  display: inline-block;
  margin: 0 auto;
  font-weight: 500;
  margin-top: 1.1rem;
  letter-spacing: -0.2;
  position: relative;
}
.present__claim::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 1px;
  background: #ffffff;
  left: -0.82rem;
  top: 56%;
  transform: translateY(-50%) rotate(72deg);
}
.present__claim::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 1px;
  background: #ffffff;
  right: -0.82rem;
  top: 56%;
  transform: translateY(-50%) rotate(-72deg);
}
.present__btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 24.4rem;
  margin-top: 3.15rem;
}
.present__btn > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.present__btn .present__btn-img {
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 1;
}
.present__btn .present__btn-img--hover {
  transition: all 0.5s ease;
  z-index: 0;
  opacity: 0;
}
.present__btn:hover .present__btn-img {
  z-index: 0;
  opacity: 0;
}
.present__btn:hover .present__btn-img--hover {
  opacity: 1;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .present {
    padding-top: 1.1rem;
  }
  .present__inner {
    width: 64%;
    padding-bottom: 2.9rem;
  }
  .present__catch {
    width: 16.4rem;
  }
  .present__catch-text {
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    text-align: left;
    padding-left: 1.7rem;
  }
  .present__catch-text .icon {
    width: 1.15rem;
    top: -0.17rem;
    margin-right: -0.1rem;
  }
  .present__catch-text .icon > img {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .present__catch-text .icon-line--hover {
    display: none;
  }
  .present__catch-text .dot {
    position: relative;
  }
  .present__text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-left: 0.3rem;
    text-align: center;
  }
  .present__text .dot {
    position: relative;
  }
  .present__text .dot::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #f9d358;
  }
  .present__text .line {
    display: inline-block;
    color: #009cff;
    position: relative;
    z-index: 0;
    margin-left: 0.5em;
    transform-origin: left;
  }
  .present__text .line::after {
    height: 1.4rem;
    top: 52%;
  }
  .present__text .emphasis {
    font-size: 1.2rem;
    display: inline-block;
    letter-spacing: 0.04em;
  }
  .present__text .emphasis.id2 {
    margin-left: -0.2rem;
  }
  .present__text .emphasis.bottom {
    letter-spacing: 0.1em;
  }
  .present__text .emphasis.bottom.m-l {
    margin-left: 0rem;
    letter-spacing: 0.15em;
    margin-right: -0.2rem;
  }
  .present__claim {
    margin-top: 0.6rem;
    letter-spacing: -0.5;
    font-size: 0.7rem;
  }
  .present__claim::before {
    width: 0.6rem;
    left: -0.6rem;
  }
  .present__claim::after {
    width: 0.6rem;
    right: -0.6rem;
  }
  .present__btn {
    width: 17rem;
    margin-top: 2.15rem;
  }
  .present__btn > img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .present__btn .present__btn-img {
    z-index: 1;
    transition: all 0.5s ease;
    opacity: 1;
  }
  .present__btn .present__btn-img--hover {
    transition: all 0.5s ease;
    z-index: 0;
    opacity: 0;
  }
  .present__btn:hover .present__btn-img {
    z-index: 0;
    opacity: 0;
  }
  .present__btn:hover .present__btn-img--hover {
    opacity: 1;
    z-index: 1;
  }
}
.about {
  position: relative;
  z-index: 1;
}
.about__bg {
  z-index: 0;
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  background-image: url(../img/⑥理由解説部分/背景グループ_optimized_.png);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: cover;
  height: 100%;
}
.about__inner {
  margin: 0 auto;
  width: 84%;
  margin-top: 5.1rem;
  left: 1%;
  position: relative;
}
.about__card {
  height: 20.4rem;
  position: relative;
}
.about__card::after {
  content: "";
  background-image: url(../img/⑤塾長紹介/名前部分-背景.png);
  background-size: 100%;
  display: block;
  position: absolute;
  top: 5rem;
  width: 98%;
  height: 4.8rem;
  mix-blend-mode: darken;
}
.about__card-bg {
  position: absolute;
  height: 100%;
  width: 100%;
}
.about__card-bg > img {
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
  display: block;
}
.about__card-tag {
  position: absolute;
  left: -2.4rem;
  top: -0.42rem;
  width: 12.2rem;
}
.about__card-tag .text {
  color: #ffffff;
  position: absolute;
  top: 1.4rem;
  left: 3.8rem;
  transform: rotate(-14deg);
  letter-spacing: 0.15em;
  font-size: 1.4rem;
}
.about__card-text {
  position: relative;
  color: #224960;
  margin: 0 auto;
  width: 70%;
  padding-top: 6rem;
  z-index: 1;
}
.about__card-text > .img {
  position: absolute;
  width: 12.5rem;
  height: auto;
  right: 0;
  top: -7rem;
}
.about__card-name {
  font-family: "Shippori Mincho B1", serif;
  padding-left: 0.5rem;
  line-height: 1;
}
.about__card-name .japanese {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
}
.about__card-name .english {
  font-size: 1.1rem;
  margin-top: 0.4rem;
  letter-spacing: 0.07em;
  padding-left: 0.1rem;
}
.about__card-list {
  margin-top: 1rem;
  margin-left: 1.7rem;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.about__card-item {
  position: relative;
}
.about__card-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  background: #224960;
}
.about__card-item:nth-child(1)::before {
  top: 71%;
}
.about__card-item:nth-child(2)::before {
  top: 69%;
  aspect-ratio: auto;
  height: 1.1px;
  width: 9px;
  left: -1.4rem;
  border-radius: 0;
}
.about__card-item:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  top: 60%;
  left: -0.8rem;
  width: 3px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #224960;
  border-right: 1px solid #224960;
  transform: rotate(-45deg);
}
.about__card-item.wide {
  line-height: 1.75;
  letter-spacing: 0.08em;
}
.about__card-item.wide.id2 {
  letter-spacing: 0.01em;
}
.about__card-item.wide.id2 > .id1 {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}
.about__card-item .emphasis {
  font-size: 1.3rem;
  line-height: 1;
}
.about__card-item .emphasis.big {
  font-size: 2rem;
  vertical-align: text-bottom;
}
.about__card-item .emphasis.big.id2 {
  margin-right: -0.5rem;
}
.about__card-item.arrow {
  bottom: 0.1rem;
}
.about__card-item .id3 {
  letter-spacing: 0.01em;
  margin-right: -0.2rem;
}
.about__card-item .id4 {
  letter-spacing: 0.01em;
  bottom: 0.1em;
  position: relative;
  margin-right: -0.4rem;
}
.about__card-item .id5 {
  margin-left: -0.4rem;
}

@media screen and (min-width: 769px) {
  .about__inner {
    width: 66%;
    margin-top: 1.8rem;
    left: 2.2%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about__bg {
    background-size: 100% clamp(88.5rem, 78rem + 20vw, 108.5rem);
  }
  .about__card {
    width: 32rem;
    height: 15.4rem;
    position: relative;
  }
  .about__card::after {
    width: 24rem;
    top: 3.9rem;
    height: 2.225rem;
  }
  .about__card-bg {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .about__card-bg > img {
    -o-object-fit: fill;
       object-fit: fill;
    height: 100%;
    display: block;
  }
  .about__card-tag {
    left: -2.2rem;
    width: 11.8rem;
  }
  .about__card-tag .text {
    top: 1.45rem;
    left: 3.6rem;
    letter-spacing: 0.11em;
  }
  .about__card-text {
    width: 91%;
    padding-top: 4.2rem;
  }
  .about__card-text > .img {
    position: absolute;
    width: 11.7rem;
    height: auto;
    left: 17.15rem;
    top: -0.98rem;
  }
  .about__card-name {
    font-family: "Shippori Mincho B1", serif;
    padding-left: 1.8rem;
    line-height: 1;
    display: flex;
  }
  .about__card-name .japanese {
    font-size: 1.5rem;
    letter-spacing: 0.11em;
  }
  .about__card-name .english {
    font-size: 0.9rem;
    margin-top: 0.45rem;
    letter-spacing: 0.01em;
    padding-left: 0.7rem;
  }
  .about__card-list {
    margin-top: 1.25rem;
    margin-left: 3.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.025em;
    line-height: 1.7;
  }
  .about__card-item {
    position: relative;
  }
  .about__card-item::before {
    width: 0.2rem;
    left: -0.78rem;
  }
  .about__card-item:nth-child(1)::before {
    top: 71%;
  }
  .about__card-item:nth-child(2)::before {
    top: 58%;
    height: 1.1px;
    width: 12px;
    left: -1.2rem;
  }
  .about__card-item:nth-child(2)::after {
    top: 51%;
    left: -0.75rem;
    width: 5px;
  }
  .about__card-item.arrow {
    margin-bottom: -0.1rem;
  }
  .about__card-item.arrow .id3 {
    letter-spacing: -1.5;
    margin-left: -0.2rem;
  }
  .about__card-item.arrow .id4 {
    letter-spacing: -0.07em;
    margin-right: -0.18rem;
  }
  .about__card-item.arrow .id5 {
    margin-left: -0.2rem;
    letter-spacing: -0.1em;
  }
  .about__card-item.wide {
    letter-spacing: 0.01em;
    margin-bottom: -0.2rem;
  }
  .about__card-item.wide .id1 {
    margin-right: 0.2rem;
  }
  .about__card-item.wide.id2 {
    letter-spacing: -0.02em;
    margin-left: -0.1rem;
  }
  .about__card-item.wide.id2 .id1 {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
  .about__card-item .emphasis {
    font-size: 1.1rem;
    margin-left: 0.09rem;
    margin-right: -0.06rem;
    letter-spacing: 0.1;
  }
  .about__card-item .emphasis.big {
    font-size: 1.6rem;
    margin-left: 0.1rem;
    margin-right: -0.05rem;
  }
  .about__card-item .emphasis.big.id2 {
    margin-right: -0.1rem;
  }
}
.explanation {
  position: relative;
  margin-top: 1.5rem;
  /* ベースとラベルはそのまま表示 */
  /* ブルーの円グラフ用ラッパー */
  /* 中の画像 */
}
.explanation__inner {
  text-align: center;
}
.explanation__catch {
  color: #009cff;
  font-size: 1.3rem;
  line-height: 1.1;
  position: relative;
}
.explanation__catch::after {
  content: "";
  position: absolute;
  background-image: url(../img/⑥理由解説部分/あしらい上.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32rem;
  height: 3rem;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.explanation__catch .emphasis {
  font-size: 1.74rem;
}
.explanation__catch .emphasis.big {
  font-size: 2.5rem;
}
.explanation__img {
  position: relative;
  width: 26.2rem;
  margin: 0 auto;
  margin-top: 1rem;
  left: 0.48rem;
}
.explanation__img.id2 {
  width: 100vw;
  position: relative;
  margin-top: 1.75rem;
  left: 0;
  z-index: 1;
}
.explanation__img.id2 .group {
  width: 17.58rem;
  margin: 0 auto;
  left: -0.4rem;
  position: relative;
  margin-top: 10.2rem;
}
.explanation__img.id2 .group > img {
  position: absolute;
  aspect-ratio: 1/1;
}
.explanation__img.id2 .group > img:nth-child(1) {
  width: 8.95rem;
  left: 0;
  bottom: -0.3rem;
}
.explanation__img.id2 .group > img:nth-child(2) {
  width: 9.2rem;
  right: 0rem;
  bottom: -0.35rem;
}
.explanation__img.id2 .group > img:nth-child(3) {
  width: 9.4rem;
  left: -0.28rem;
  top: -0.1rem;
}
.explanation__img.id2 .group > img:nth-child(4) {
  width: 9.2rem;
  right: 0;
  top: 0;
}
.explanation__img.id2 .bg * {
  animation-duration: 5s;
}
.explanation__img.id2 .bg img {
  position: absolute;
}
.explanation__img.id2 .bg .yellow.id1 {
  width: 1rem;
  top: -1rem;
  left: 10vw;
}
.explanation__img.id2 .bg .yellow.id2 {
  width: 1.1rem;
  top: 6.4rem;
  left: 79.5vw;
  rotate: 13deg;
}
.explanation__img.id2 .bg .blue.id1 {
  width: 0.9rem;
  top: -2rem;
  left: 21vw;
}
.explanation__img.id2 .bg .blue.id2 {
  width: 0.7rem;
  top: -8.7rem;
  left: 87.3vw;
  rotate: -4deg;
}
.explanation__img.id2 .bg .blue.id3 {
  width: 0.7rem;
  top: 13.3rem;
  left: 5.3vw;
  rotate: -4deg;
}
.explanation__img.id2 .bg .lightblue.id1 {
  width: 1.5rem;
  top: -10.5rem;
  left: 9vw;
  animation-duration: 8s;
  animation-delay: 1s;
}
.explanation__img.id2 .bg .lightblue.id2 {
  width: 1.5rem;
  top: 12.8rem;
  left: 92.6vw;
  rotate: -10deg;
}
.explanation__img.id2 .bg .lightblue.id3 {
  position: absolute;
  width: 0.7rem;
  aspect-ratio: 1/1;
  top: -8.15rem;
  left: 77vw;
  background-color: #b2e2e8;
  border-radius: 50%;
  animation-duration: 8s;
  animation-delay: 1s;
}
.explanation__img.id2 .bg .lightblue.id4 {
  position: absolute;
  width: 0.7rem;
  aspect-ratio: 1/1;
  top: 5.5rem;
  left: 13.7vw;
  background-color: #b2e2e8;
  border-radius: 50%;
}
.explanation__img.id2 .bg .lightblue.id5 {
  position: absolute;
  width: 0.7rem;
  aspect-ratio: 1/1;
  top: -1.2rem;
  left: 82.7vw;
  background-color: #009cff;
  border-radius: 50%;
  animation-duration: 8s;
  animation-delay: 1s;
}
.explanation__text {
  color: #ffffff;
  font-size: 1.8rem;
  display: inline-block;
  line-height: 1.4;
  vertical-align: baseline;
}
.explanation__text .emphasis {
  font-size: 2.4rem;
  vertical-align: bottom;
  margin-right: 0.5rem;
  margin-left: 0.4rem;
}
.explanation__text.bg {
  position: relative;
  z-index: 1;
}
.explanation__text.bg::after {
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/言葉背景①.png);
  position: absolute;
  display: block;
  width: 102%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.explanation__text.id1 + .id2 {
  margin-top: 0.3rem;
}
.explanation__text.id3 {
  color: #009cff;
  font-size: 1.6rem;
  margin-top: 1.7rem;
  letter-spacing: -0.5px;
  text-wrap: nowrap;
  line-height: 1.4;
}
.explanation__text.id3 .number {
  font-size: 2.8rem;
  vertical-align: baseline;
}
.explanation__text.id3 .line {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  z-index: 1;
}
.explanation__text.id3 .line::after {
  position: absolute;
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/線-黄色.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  z-index: -1;
}
.explanation__text.id3 .line.top::after {
  bottom: 0.2em;
  left: -3px;
}
.explanation__text.id3 .line:nth-child(3) {
  margin-left: 0rem;
}
.explanation__text.id4 {
  color: #009cff;
  margin-top: 3.8rem;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-left: -1.3rem;
  text-align: left;
}
.explanation__text.id4 .emphasis {
  font-size: 1.5rem;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  bottom: -0.2rem;
}
.explanation__text.id4 .emphasis > .number {
  font-size: 2.5rem;
  position: relative;
  left: 0.25rem;
}
.explanation__text.id4 .emphasis.bottom {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
.explanation__text.id4 .questionnaire {
  margin-left: 0.7rem;
  margin-right: 0.7rem;
}
.explanation__text.id5 {
  margin-top: 1.1rem;
  font-size: 1.6rem;
  padding-left: 0.8rem;
  text-wrap: nowrap;
  line-height: 1.3;
  font-feature-settings: "palt";
}
.explanation__text.id5 .emphasis {
  font-size: 2.3rem;
  vertical-align: baseline;
  margin-right: 0;
}
.explanation__text.id5 .number {
  margin: 0;
  font-size: 2.5rem;
  margin-right: 0.2rem;
}
.explanation__text.id5 .lebel {
  font-size: 1.4rem;
}
.explanation__text.id5.bg::after {
  transform: scaleX(0);
}
.explanation__text.id5.bottom {
  margin-top: 0.3rem;
  font-size: 1.8rem;
  padding-left: 0.5rem;
  letter-spacing: 0.1em;
  margin-left: -2rem;
}
.explanation__text.id5.bottom .emphasis {
  margin-left: 0;
  letter-spacing: -0.6;
  margin-right: 0.2rem;
}
.explanation__text.id6 {
  text-align: center;
  color: #224960;
  font-size: 1.4rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.explanation__text.id6 .emphasis {
  font-size: 1.9rem;
  margin: 0;
  margin-left: -0.8rem;
  letter-spacing: -0.5;
}
.explanation__text.id6 .bottom {
  letter-spacing: -1;
  margin-left: -1.5rem;
}
.explanation__text.id6 .line {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.explanation__text.id6 .line::after {
  position: absolute;
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/線-黄色.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 11rem;
  z-index: -1;
  transform: scaleX(0);
}
.explanation__text.id7 {
  color: #224960;
  font-size: 1.28rem;
  width: 23rem;
  margin: 0 auto;
  margin-top: 11.7rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  left: -0.7rem;
}
.explanation__text.id7 .english {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}
.explanation__text.id7 .bottom {
  position: relative;
  left: 0.2rem;
}
.explanation__text.id8 {
  color: #224960;
  font-size: 1.4rem;
  width: 23rem;
  margin: 0 auto;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}
.explanation__text.id9 {
  color: #224960;
  font-size: 1.4rem;
  width: 24rem;
  margin: 0 auto;
  margin-top: 1.4rem;
  position: relative;
  left: -0.5rem;
  z-index: 1;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.explanation__text.id10 {
  color: #224960;
  font-size: 1.4rem;
  width: 23rem;
  margin: 0 auto;
  margin-top: 1.8rem;
  position: relative;
  left: -0.5rem;
  z-index: 1;
  letter-spacing: 0.02em;
}
.explanation__text.id10 .line::after {
  transform: scaleX(0);
}
.explanation__text.id11 {
  color: #224960;
  font-size: 1.4rem;
  width: 27rem;
  margin: 0 auto;
  margin-top: 1.4rem;
  position: relative;
  line-height: 1.15;
  left: -0.5rem;
  z-index: 1;
  letter-spacing: 0.02em;
}
.explanation__text.id11 .bottom {
  position: relative;
  left: 0.4rem;
}
.explanation__text-wrapper {
  text-align: left;
  width: 24.4rem;
  margin: 0 auto;
  margin-top: 2.26rem;
}
.explanation .circle-chart {
  margin: 0 auto;
  margin-top: 3.7rem;
  width: 19.1rem;
  position: relative;
  left: 0.15rem;
  aspect-ratio: 1/1;
}
.explanation .circle-chart img,
.explanation .circle-chart__progress-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.explanation .circle-chart__base {
  z-index: 1;
}
.explanation .circle-chart__label {
  z-index: 3;
  width: 6rem !important;
  margin: 0 auto;
  padding-top: 0.5rem;
}
.explanation .circle-chart__progress-wrap {
  z-index: 2;
}
.explanation .circle-chart__progress {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.explanation__arrow {
  width: 2.3rem;
  margin: 0 auto;
  margin-top: 3.64rem;
  position: relative;
  left: 0.3rem;
  overflow: hidden;
}
.explanation__arrow.bottom {
  margin-top: 8.3rem;
  left: 0;
  padding-bottom: 2rem;
}
.explanation__box.id3 {
  display: flex;
  flex-direction: column;
}
.explanation .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .explanation {
    margin-top: 4.36vw;
  }
  .explanation__catch {
    left: 0.4rem;
    letter-spacing: 0.01em;
  }
  .explanation__catch::after {
    width: 41rem;
    top: 0.95rem;
    left: 49.2%;
  }
  .explanation__catch::before {
    content: "";
    position: absolute;
    background-image: url(../img/⑥理由解説部分/あしらい上.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 41rem;
    height: 3rem;
    top: 34rem;
    left: 49.2%;
    transform: translateX(-50%) rotate(180deg);
  }
  .explanation__catch .emphasis {
    letter-spacing: -0.02em;
    margin-right: 0.12rem;
  }
  .explanation__catch .emphasis.big {
    position: relative;
    bottom: -0.1rem;
  }
  .explanation__img {
    position: relative;
    width: 17.5rem;
    margin: 0;
    left: -0.2rem;
  }
  .explanation__img.id2 {
    width: 100vw;
    position: relative;
    margin-top: 0;
    left: 0;
    z-index: 1;
  }
  .explanation__img.id2 .group {
    width: 21.15rem;
    height: 5.4rem;
    margin: 0 auto;
    left: 0rem;
    position: relative;
    margin-top: 1.4rem;
    display: flex;
  }
  .explanation__img.id2 .group > img {
    position: relative;
    aspect-ratio: 1/1;
  }
  .explanation__img.id2 .group > img:nth-child(1) {
    width: 8.95rem;
    left: 0;
    bottom: 0;
  }
  .explanation__img.id2 .group > img:nth-child(2) {
    width: 9.2rem;
    right: 0.35rem;
    bottom: 0.1rem;
  }
  .explanation__img.id2 .group > img:nth-child(3) {
    width: 9.4rem;
    left: -0.4rem;
    top: 0;
  }
  .explanation__img.id2 .group > img:nth-child(4) {
    width: 9.2rem;
    right: 0.6rem;
    top: -0.1rem;
  }
  .explanation__img.id2 > .bg {
    position: absolute;
    width: 100vw;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
  }
  .explanation__text {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .explanation__text .emphasis {
    font-size: 1.7rem;
    margin-right: 0rem;
    margin-left: 0rem;
    position: relative;
  }
  .explanation__text.bg {
    position: relative;
    z-index: 1;
  }
  .explanation__text.bg::after {
    top: 0.2rem;
  }
  .explanation__text.id1 .emphasis {
    bottom: -0.15rem;
  }
  .explanation__text.id1 .emphasis.id1 {
    margin-left: 0.2rem;
    margin-right: 0.35rem;
  }
  .explanation__text.id1 .emphasis.id2 {
    margin-left: 0.45rem;
    margin-right: 0.25rem;
  }
  .explanation__text.id1 + .id2 {
    margin-top: 0.3rem;
    padding-left: 0.35rem;
    letter-spacing: 0.03em;
  }
  .explanation__text.id3 {
    font-size: 1.15rem;
    margin-top: 1.35rem;
  }
  .explanation__text.id3 .number {
    font-size: 2rem;
    margin-right: 0.45rem;
  }
  .explanation__text.id3 .line {
    margin-left: 0.3rem;
  }
  .explanation__text.id3 .line::after {
    height: 4rem;
  }
  .explanation__text.id3 .line.top::after {
    bottom: 0.2em;
    left: -3px;
  }
  .explanation__text.id3 .line:nth-child(3) {
    margin-left: 0rem;
  }
  .explanation__text.id4 {
    margin-top: 2.3rem;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.05em;
  }
  .explanation__text.id4 .emphasis {
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    bottom: -0.2rem;
    letter-spacing: -0.05em;
  }
  .explanation__text.id4 .emphasis > .number {
    font-size: 2rem;
    margin-left: 0.3rem;
    margin-right: 0.15rem;
  }
  .explanation__text.id4 .emphasis.bottom {
    font-size: 1.4rem;
    letter-spacing: 0.024em;
  }
  .explanation__text.id4 .questionnaire {
    margin-left: 0.8rem;
  }
  .explanation__text.id5 {
    margin-top: 0.95rem;
    font-size: 1.2rem;
    padding-left: 0;
    text-align: left;
    letter-spacing: 0.05em;
  }
  .explanation__text.id5 .emphasis {
    font-size: 1.8rem;
    vertical-align: baseline;
    margin-right: 0;
  }
  .explanation__text.id5 .emphasis.id2 {
    margin-left: 0.35rem;
  }
  .explanation__text.id5 .number {
    font-size: 2.1rem;
    margin-right: 0.1rem;
    margin-left: 0.55rem;
  }
  .explanation__text.id5 .lebel {
    font-size: 1rem;
    margin-right: 0.2rem;
  }
  .explanation__text.id5.bg::after {
    transform: scaleX(0);
  }
  .explanation__text.id5.bottom {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
  }
  .explanation__text.id6 {
    font-size: 0.9rem;
    margin-top: 4.9rem;
    left: 0.4rem;
    letter-spacing: 0.15em;
  }
  .explanation__text.id6 .emphasis {
    font-size: 1.3rem;
    margin-top: 0.6rem;
    margin-top: 0.1rem;
    margin-left: -0.6rem;
    letter-spacing: 0.025em;
  }
  .explanation__text.id6 .bottom {
    letter-spacing: 0.04em;
    margin-left: -1rem;
    position: relative;
    bottom: -0.2rem;
    font-size: 0.9rem;
  }
  .explanation__text.id6 .line {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .explanation__text.id6 .line::after {
    bottom: -2px;
    left: -1px;
    height: 8rem;
    width: 104%;
  }
  .explanation__text.id7 {
    font-size: 1rem;
    width: 28rem;
    margin: 0;
    margin-top: 1.4rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  .explanation__text.id7 .english {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
  .explanation__text.id7 .bottom {
    position: relative;
    left: 0.2rem;
  }
  .explanation__text.id8 {
    font-size: 1rem;
    margin-top: 1.4rem;
    left: 0.3rem;
  }
  .explanation__text.id9 {
    font-size: 1rem;
    width: 27rem;
    margin-top: 1.4rem;
    left: 0;
    line-height: 1.4;
  }
  .explanation__text.id10 {
    font-size: 1rem;
    width: 25rem;
    margin-top: 0rem;
    left: 0;
    letter-spacing: 0.03em;
  }
  .explanation__text.id10 .line::after {
    transform: scaleX(0);
  }
  .explanation__text.id11 {
    font-size: 1rem;
    width: 32rem;
    margin-top: 1.6rem;
    left: 0.2rem;
    letter-spacing: 0.02em;
  }
  .explanation__text.id11 .bottom {
    position: relative;
    left: 0;
  }
  .explanation__text-wrapper {
    text-align: left;
    width: 19.4rem;
    margin: 0;
    margin-top: 3.45rem;
    padding-left: 2.25rem;
  }
  .explanation .circle-chart {
    margin: 0;
    margin-top: 2rem;
    width: 10.7rem;
    left: 1.5rem;
  }
  .explanation .circle-chart__progress-wrap,
  .explanation .circle-chart img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .explanation .circle-chart__base {
    z-index: 1;
  }
  .explanation .circle-chart__label {
    width: 3.5rem !important;
  }
  .explanation .circle-chart__progress-wrap {
    z-index: 2;
  }
  .explanation .circle-chart__progress {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .explanation .circle-chart__arrow {
    width: 2.3rem;
    margin: 0 auto;
    margin-top: 3.64rem;
    position: relative;
    left: 0.3rem;
    overflow: hidden;
  }
  .explanation .circle-chart__arrow.id1 {
    margin-top: 1.7rem;
    left: 0;
  }
  .explanation .circle-chart__arrow.bottom {
    margin-top: 8.3rem;
    left: 0;
    padding-bottom: 2rem;
  }
  .explanation__box {
    display: flex;
    justify-content: center;
  }
  .explanation__box.id1 {
    margin-top: -0.2rem;
  }
  .explanation__box.id2 .text {
    position: relative;
    width: 21rem;
    text-align: left;
    left: -2.2rem;
  }
  .explanation__box.id3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .explanation__arrow.id1 {
    margin-top: 1.55rem;
    left: 0;
  }
  .explanation__arrow.id2 {
    left: 0;
    margin-top: 3.8rem;
  }
  .explanation__arrow.bottom {
    margin-top: clamp(6.1rem, 12vw, 20rem);
    padding-bottom: 0;
  }
}
.achievements {
  position: relative;
}
.achievements .lattice {
  position: absolute;
  width: 100vw;
  height: 150%;
  top: -10rem;
  background-image: url(../img/⑦実績部分/格子背景_optimized_.png);
  background-repeat: repeat;
  background-size: contain;
}
.achievements__inner {
  text-align: center;
}
.achievements__catch {
  color: #009cff;
  padding-top: 0.3rem;
  transform: scale(0);
}
.achievements__text {
  font-size: 1.7rem;
  position: relative;
}
.achievements__text.emphasis {
  font-size: 2.4rem;
}
.achievements__text.id1 {
  left: -0.2rem;
  letter-spacing: 0.02em;
}
.achievements__text.id2 {
  margin-top: 0.5rem;
  line-height: 1.3;
  position: relative;
  left: -0.2rem;
}
.achievements__text.id2 .box {
  position: relative;
  left: -0.2rem;
  color: #ffffff;
  z-index: 1;
}
.achievements__text.id2 .box::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #009cff;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.achievements__text.id2 .box + .box {
  margin-left: 0.4rem;
}
.achievements__text.id3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  position: relative;
  left: 0.2rem;
}
.achievements__text.id3 .emphasis {
  font-size: 3.1rem;
  margin-left: -0.1em;
}
.achievements__text.id4 {
  position: relative;
  font-size: 1.4rem;
  left: 0;
  margin-top: 0.1em;
  letter-spacing: -0.4;
}
.achievements__text.id4 .emphasis {
  font-size: 2rem;
}
.achievements__text.id4 .number {
  font-size: 4.2rem;
  margin-left: -0.5rem;
  margin-right: 0.5rem;
  letter-spacing: -2;
}
.achievements .logo {
  width: 12.8rem;
  margin: 0 auto;
  position: relative;
  margin-top: 0.4rem;
  left: -0.3rem;
}
.achievements__card {
  margin-top: 6.3rem;
  position: relative;
  z-index: 10;
}
.achievements__card .catch {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 31.4rem;
}
.achievements__card .content {
  position: relative;
  width: 31.7rem;
  margin: 0 auto;
}
.achievements__card .content__inner {
  width: 25.9rem;
  margin: 0 auto;
}
.achievements__card .content__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.achievements__card .content__bg.id1 {
  height: 38rem;
  max-height: 570px;
}
.achievements__card .content__bg.id1 > img {
  width: 100%;
  height: 100%;
}
.achievements__card .content__img {
  padding-top: 3.2rem;
}
.achievements__card .content__youtube {
  width: 11.2rem;
  margin: 0 auto;
  margin-top: 0.67rem;
}
.achievements__card .content__text {
  position: relative;
}
.achievements__card .content__text.bg::after {
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/言葉背景①.png);
  position: absolute;
  display: block;
  height: 2.5rem;
  top: 50%;
  left: -1.9rem;
  right: 0;
  transform: translateY(-50%) scaleX(0);
  z-index: -1;
}
.achievements__card .content__text.bg.id1::after {
  width: 30.05rem;
}
.achievements__card .content__text.bg.id2::after {
  width: 29.65rem;
}
.achievements__card .content__text.top {
  margin-top: 1rem;
  font-size: 1.3rem;
  margin-left: -0.7rem;
  letter-spacing: 0;
  text-wrap: nowrap;
}
.achievements__card .content__text.top + .top {
  margin-top: 0.95rem;
  margin-left: -0.8rem;
  letter-spacing: 0.04em;
}
.achievements__card .content__text.bottom {
  color: #224960;
  width: 26rem;
  margin-top: 1.05rem;
  font-size: 0.98rem;
  letter-spacing: 0.3;
  margin-left: 0.1rem;
  text-align: left;
  line-height: 1.8;
}
.achievements__card + .achievements__card {
  margin-top: 6.5rem;
}
.achievements__card + .achievements__card .content {
  width: 31.9rem;
  position: relative;
  left: -0.05rem;
}
.achievements__card + .achievements__card .content__youtube {
  margin-top: 0.87rem;
}
.achievements__card + .achievements__card .content__text {
  text-align: left;
}
.achievements__card + .achievements__card .content__text.top {
  margin-left: 0.15rem;
  letter-spacing: 0.6;
}
.achievements__card + .achievements__card .content__text.top .number {
  line-height: 1.2;
  margin-left: 0.35rem;
  margin-right: 0.35rem;
}
.achievements__card + .achievements__card .content__text.bottom {
  line-height: 1.7;
  margin-top: 1rem;
}
.achievements__card + .achievements__card .content__text.bottom .name {
  text-align: right;
  display: block;
  margin-top: -0.3rem;
  margin-right: 0.7rem;
  letter-spacing: 0.09em;
}
.achievements__card + .achievements__card .content__text.bg::after {
  left: -2.75rem;
}
.achievements__card + .achievements__card .content__text.bg.id1::after {
  width: 23.25rem;
}
.achievements__card + .achievements__card .content__text.bg.id2::after {
  width: 28.3rem;
}
.achievements__circle {
  position: relative;
}
.achievements__circle .bg {
  position: absolute;
  top: -2.4rem;
  width: 37.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.achievements__circle .text {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.achievements__circle .text__top {
  font-size: 1.52rem;
  padding-top: 4.21rem;
  letter-spacing: 0.04rem;
  position: relative;
  left: 0.4rem;
  clip-path: inset(0 89.9% 0 0);
}
.achievements__circle .text__middle {
  font-size: 1.6rem;
  margin-top: 1.3rem;
  letter-spacing: -0.5;
  line-height: 1.4;
  clip-path: inset(0 89.9% 0 0);
}
.achievements__circle .text__middle .emphasis {
  font-size: 1.78rem;
  letter-spacing: 0.03em;
}
.achievements__circle .text__middle .emphasis.bottom {
  margin-left: 1.5rem;
  letter-spacing: 0.12em;
}
.achievements__circle .text__middle .english {
  margin-right: 0.5rem;
  letter-spacing: -0.2px;
  margin-left: -0.1rem;
}
.achievements__circle .text__middle .number {
  margin-right: 0.02rem;
  margin-left: 0.02rem;
  font-size: 2.7rem;
}
.achievements__circle .cta {
  position: relative;
  z-index: 10;
}
.achievements__circle .cta__catch {
  color: #ffffff;
  margin-top: 2.55rem;
  font-size: 1.2rem;
  line-height: 1.55;
  letter-spacing: 0.025em;
  margin-left: 0.1rem;
  display: inline-block;
  position: relative;
}
.achievements__circle .cta__catch::before {
  content: "";
  display: block;
  position: absolute;
  width: 3.2rem;
  height: 1px;
  background: #ffffff;
  left: -2.2rem;
  top: 53%;
  transform: translateY(-50%) rotate(74deg);
}
.achievements__circle .cta__catch::after {
  content: "";
  display: block;
  position: absolute;
  width: 3.2rem;
  height: 1px;
  background: #ffffff;
  right: -2rem;
  top: 53%;
  transform: translateY(-50%) rotate(-74deg);
}
.achievements__circle .cta__catch .bottom {
  margin-left: -0.9rem;
  letter-spacing: 0.05em;
}
.achievements__circle .cta__catch .icon {
  display: inline-block;
  width: 1.55rem;
  vertical-align: baseline;
  aspect-ratio: 1/1;
  margin-bottom: -0.2rem;
}
.achievements__circle .cta__btn {
  display: block;
  margin: 0 auto;
  margin-top: 0.7rem;
  width: 24.5rem;
  position: relative;
  left: -0.15rem;
}
.achievements__circle .cta__btn > img {
  position: absolute;
}
.achievements__circle .cta__btn .normal {
  z-index: 1;
}
.achievements__circle .cta__btn .hover {
  z-index: 0;
  opacity: 0;
}
.achievements__circle .cta__btn:hover .normal {
  z-index: 0;
  opacity: 0;
}
.achievements__circle .cta__btn:hover .hover {
  z-index: 1;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .achievements {
    margin-top: 1rem;
  }
  .achievements__inner {
    text-align: center;
  }
  .achievements__catch {
    margin: 0 auto;
    padding-top: 0.3rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 33.5rem;
    align-items: flex-start;
  }
  .achievements__text {
    font-size: 1.7rem;
    position: relative;
  }
  .achievements__text.emphasis {
    font-size: 2.2rem;
  }
  .achievements__text.id1 {
    letter-spacing: -0.03em;
  }
  .achievements__text.id2 {
    margin-top: 0.35rem;
    line-height: 1.3;
    position: relative;
    left: -0.3rem;
    letter-spacing: 0.035em;
  }
  .achievements__text.id2 .box {
    left: 0.35rem;
  }
  .achievements__text.id2 .box::after {
    content: "";
    display: block;
    position: absolute;
    width: 2.4rem;
    aspect-ratio: 1/1;
    background: #009cff;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .achievements__text.id2 .box + .box {
    margin-left: 0.37rem;
  }
  .achievements__text.id2 .box:last-child {
    margin-right: 0.7rem;
  }
  .achievements__text.id3 {
    margin-top: 1.25rem;
    font-size: 1.2rem;
    position: relative;
    left: 1.1rem;
    text-wrap: nowrap;
    letter-spacing: 0.05em;
  }
  .achievements__text.id3 .emphasis {
    font-size: 2.6rem;
    margin-left: -0.1em;
    position: relative;
    bottom: -0.05rem;
    margin-right: -0.25rem;
  }
  .achievements__text.id3 .id1 {
    letter-spacing: -0.07em;
  }
  .achievements__text.id4 {
    position: relative;
    font-size: 1.2rem;
    left: 1rem;
    margin-top: 0.4rem;
    letter-spacing: -0.4;
    text-wrap: nowrap;
  }
  .achievements__text.id4 .emphasis {
    font-size: 1.7rem;
    margin-left: 0.2rem;
    position: relative;
    bottom: 0;
    letter-spacing: 0.08em;
    margin-right: -0.3rem;
  }
  .achievements__text.id4 .line {
    vertical-align: bottom;
    margin-right: 0.2rem;
  }
  .achievements__text.id4 .number {
    font-size: 3.5rem;
    margin-left: -0.85rem;
    margin-right: 0.3rem;
  }
  .achievements__box.id1 {
    display: flex;
  }
  .achievements__box.id2 {
    display: flex;
  }
  .achievements__box.id3 {
    display: flex;
    justify-content: center;
  }
  .achievements .logo {
    width: 10.8rem;
    margin-top: 1.4rem;
    left: 0.15rem;
  }
  .achievements__card {
    margin-top: 3.6rem;
    position: relative;
    z-index: 10;
    left: -0.5rem;
  }
  .achievements__card .catch {
    top: 0.05rem;
    left: 102.5%;
    width: 20.5rem;
  }
  .achievements__card .content {
    position: relative;
    width: 20.4rem;
    margin: 0 auto;
    left: 0.2rem;
  }
  .achievements__card .content__inner {
    width: 16.8rem;
    margin: 0 auto;
  }
  .achievements__card .content__bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .achievements__card .content__bg.id1 {
    transform: rotate(180deg);
    bottom: -3.5rem;
    height: auto;
    max-height: none;
  }
  .achievements__card .content__img {
    padding-top: 2.2rem;
  }
  .achievements__card .content__youtube {
    width: 7.2rem;
    margin-top: 0.45rem;
  }
  .achievements__card .content__text {
    position: relative;
  }
  .achievements__card .content__text.bg::after {
    content: "";
    height: 1.67rem;
    top: 50%;
    left: -1.3rem;
    right: 0;
    transform: translateY(-50%) scaleX(0);
    z-index: -1;
  }
  .achievements__card .content__text.bg.id1::after {
    width: 19.6rem;
  }
  .achievements__card .content__text.bg.id2::after {
    width: 19.1rem;
  }
  .achievements__card .content__text.top {
    margin-top: 0.65rem;
    font-size: 0.8rem;
    margin-left: -0.3rem;
    letter-spacing: 0.05em;
  }
  .achievements__card .content__text.top + .top {
    margin-top: 0.6rem;
    margin-left: -0.2rem;
    letter-spacing: 0.1em;
  }
  .achievements__card .content__text.bottom {
    width: 17rem;
    margin-top: 0.75rem;
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    margin-left: 0.1rem;
    line-height: 1.9;
  }
  .achievements__card + .achievements__card {
    margin-top: 3.6rem;
    z-index: 1;
  }
  .achievements__card + .achievements__card .content {
    width: 20.4rem;
    position: relative;
    left: 0.7rem;
  }
  .achievements__card + .achievements__card .content__youtube {
    margin-top: 0.45rem;
  }
  .achievements__card + .achievements__card .content__text {
    text-align: left;
  }
  .achievements__card + .achievements__card .content__text.top {
    margin-left: 0.15rem;
    letter-spacing: 0.1em;
  }
  .achievements__card + .achievements__card .content__text.top .number {
    line-height: 1.2;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
  .achievements__card + .achievements__card .content__text.bottom {
    line-height: 1.75;
    margin-top: 0.8rem;
  }
  .achievements__card + .achievements__card .content__text.bottom .name {
    text-align: right;
    display: block;
    margin-top: -0.3rem;
    margin-right: 0.7rem;
    letter-spacing: 0.09em;
  }
  .achievements__card + .achievements__card .content__text.bg::after {
    left: -1.9rem;
  }
  .achievements__card + .achievements__card .content__text.bg.id1::after {
    width: 15.1rem;
  }
  .achievements__card + .achievements__card .content__text.bg.id2::after {
    width: 18.4rem;
  }
  .achievements__circle {
    position: relative;
  }
  .achievements__circle .bg {
    position: absolute;
    top: -2.4rem;
    width: 40.9rem;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
    z-index: 0;
  }
  .achievements__circle .text {
    position: relative;
    z-index: 1;
    color: #ffffff;
  }
  .achievements__circle .text__top {
    font-size: 1.3rem;
    padding-top: 2.9rem;
    letter-spacing: 0.1em;
  }
  .achievements__circle .text__middle {
    font-size: 1.35rem;
    margin-top: 1.3rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
    clip-path: inset(0 89.9% 0 0);
  }
  .achievements__circle .text__middle .emphasis {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .achievements__circle .text__middle .emphasis.bottom {
    margin-left: 1.2rem;
    position: relative;
    bottom: 0.1rem;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
  }
  .achievements__circle .text__middle .english {
    margin-right: 0.5rem;
    letter-spacing: 0;
    margin-left: -0.05rem;
  }
  .achievements__circle .text__middle .number {
    margin-right: 0.02rem;
    margin-left: 0.02rem;
    font-size: 2.7rem;
  }
  .achievements__circle .cta {
    position: relative;
    z-index: 10;
  }
  .achievements__circle .cta__catch {
    margin-top: 1.3rem;
    margin-top: 1.3rem;
    font-size: 0.75rem;
    line-height: 1.55;
    letter-spacing: 0.06em;
    margin-left: -0.5rem;
  }
  .achievements__circle .cta__catch::before {
    width: 0.7rem;
    left: -0.7rem;
    transform: translateY(-50%) rotate(72deg);
  }
  .achievements__circle .cta__catch::after {
    width: 0.7rem;
    right: -1.2rem;
    transform: translateY(-50%) rotate(-72deg);
  }
  .achievements__circle .cta__catch .bottom {
    margin-left: -0.2rem;
    letter-spacing: 0.05em;
  }
  .achievements__circle .cta__catch .icon {
    display: inline-block;
    width: 1rem;
    vertical-align: baseline;
    aspect-ratio: 1/1;
    margin-bottom: -0.2rem;
    margin-right: 0.1rem;
  }
  .achievements__circle .cta__btn {
    margin-top: 0.75rem;
    width: 16rem;
    left: 0;
  }
}
.reason {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 6rem;
  background-image: url(../img/⑧実績②/背景_optimized_.png);
  background-size: 100vw 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.reason__bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.reason__catch {
  color: #009cff;
  padding-top: 7.2rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-left: -0.6rem;
}
.reason__catch .emphasis {
  font-size: 2.2rem;
  line-height: 1;
}
.reason__catch .emphasis.id2 {
  margin-left: 0.3rem;
}
.reason__catch .emphasis.id3 {
  margin-left: -0.8rem;
  letter-spacing: -0.7;
  margin-right: 0.15rem;
}
.reason__point {
  position: relative;
  margin: 0 auto;
  margin-top: 6.5rem;
  width: 31.8rem;
  height: 91.5rem;
}
.reason__point .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.reason__point .bg-img > img {
  width: 100%;
  height: 100%;
}
.reason__point .title {
  position: absolute;
  top: -6rem;
  width: 13.3rem;
  left: 2.75rem;
  z-index: 10;
}
.reason__point .title.id2 {
  left: 14.8rem;
  top: -5.87rem;
  width: 14.5rem;
}
.reason__point .text {
  color: #224960;
  text-align: left;
  width: 26.3rem;
  margin: 0 auto;
  display: inline-block;
  font-size: 1.2rem;
}
.reason__point .text .emphasis {
  font-size: 1.8rem;
}
.reason__point .text.bg {
  position: relative;
  z-index: 1;
}
.reason__point .text.bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  height: 2.8rem;
  background-image: url(../img/⑧実績②/グラデ-言葉背景-①.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.reason__point .text.id1 {
  margin-top: 3.2rem;
}
.reason__point .text.id2 {
  font-size: 1.8rem;
  margin-top: 0.1rem;
  margin-left: 0.8rem;
  color: #ffffff;
}
.reason__point .text.id2::after {
  left: -0.25rem;
  width: 9.7rem;
}
.reason__point .text.id3 {
  font-size: 1.8rem;
  margin-top: 0.4rem;
  margin-left: 0.8rem;
  color: #ffffff;
}
.reason__point .text.id3::after {
  left: -0.25rem;
  width: 18.35rem;
  height: 3rem;
  top: 59%;
}
.reason__point .text.id3-1 {
  display: none;
}
.reason__point .text.id3-2 {
  display: none;
}
.reason__point .text.id4 {
  margin-top: 0.6rem;
}
.reason__point .text.id5 {
  margin-top: 2.37rem;
}
.reason__point .text.id6 {
  margin-top: 1.8rem;
  line-height: 1.7;
}
.reason__point .text.id7 {
  margin-top: 0.2rem;
  vertical-align: text-bottom;
}
.reason__point .text.id7 .emphasis {
  letter-spacing: 0.01em;
  line-height: 0.9;
}
.reason__point .text.id7 .number {
  line-height: 1.25;
  margin-left: 0.35rem;
}
.reason__point .text.id7.line::after {
  width: 21.5rem;
}
.reason__point .text.id8 {
  letter-spacing: -0.1;
  margin-top: 0.6rem;
  margin-left: 0.3rem;
}
.reason__point .text.id9 {
  margin-top: 1.2rem;
  line-height: 1.68;
  text-wrap: nowrap;
}
.reason__point .text.id9 .number {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  position: relative;
  top: -0.15rem;
}
.reason__point .text.id9 .line::after {
  bottom: 0.4rem;
}
.reason__point .text.id9 .line .emphasis {
  letter-spacing: -0.12rem;
}
.reason__point .text.id9 .line .emphasis.id2 {
  letter-spacing: -0.05rem;
}
.reason__point .text.id9 .line .number {
  top: -0.44rem;
  margin-left: 0;
  margin-right: -0.1rem;
}
.reason__point .text.id10 {
  margin-top: 2.5rem;
  line-height: 1.68;
  text-wrap: nowrap;
}
.reason__point .text.id10 .number {
  margin-left: 0.3rem;
  margin-right: 0.4rem;
  position: relative;
  top: -0.2rem;
}
.reason__point .text.id11 {
  margin-top: 2.1rem;
  line-height: 1.8;
}
.reason__point .img {
  width: 28rem;
  margin: 0 auto;
  margin-top: 2.4rem;
}
.reason__point .img.id2 {
  width: 28rem;
  margin-top: -4.85rem;
  position: relative;
  right: -1.15rem;
  z-index: 10;
}
.reason__point .img.id2 > .girl {
  position: absolute;
  width: 3.9rem;
  top: 5.45rem;
  left: 10.25rem;
}
.reason__point.id2 {
  height: 44.8rem;
  margin-top: 3.5rem;
}
.reason__point.id2 .bg-img {
  z-index: -1;
}
.reason__point.id2 .text {
  color: #224960;
}
.reason__point.id2 .text .checkmark {
  display: inline-block;
  width: 1.5rem;
}
.reason__point.id2 .text.id1 {
  color: #ffffff;
  z-index: 10;
  font-size: 1.65rem;
  position: relative;
  left: 0.2rem;
  margin-top: 2.9rem;
}
.reason__point.id2 .text.id1::after {
  width: 15.55rem;
  left: -0.4rem;
  top: 56%;
}
.reason__point.id2 .text.id1 .number {
  margin-left: 0rem;
  margin-right: 0.3rem;
  position: relative;
  bottom: 0.3rem;
}
.reason__point.id2 .text.id1 .number.id2 {
  margin-left: 0.3rem;
  margin-right: 0.4rem;
}
.reason__point.id2 .text.id2 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-top: 0.5rem;
  margin-left: 0.4rem;
  letter-spacing: -0.01em;
}
.reason__point.id2 .text.id2::after {
  left: -0.45rem;
  width: 12.9rem;
  top: 56%;
}
.reason__point.id2 .text.id3 {
  font-size: 1.1rem;
  margin-top: 2.65rem;
  margin-left: 0;
  padding-left: 0.3rem;
  letter-spacing: 0.018em;
}
.reason__point.id2 .text.id3 .checkmark {
  margin-right: 0.4rem;
  margin-bottom: -0.2rem;
}
.reason__point.id2 .text.id4 {
  font-size: 1.1rem;
  margin-top: 0.4rem;
  padding-left: 0.3rem;
  letter-spacing: 0.018em;
}
.reason__point.id2 .text.id4 .checkmark {
  margin-right: 0.28rem;
  margin-bottom: -0.25rem;
}
.reason__point.id2 .text.id5 {
  font-size: 1.1rem;
  margin-top: 2.15rem;
  letter-spacing: 0.018em;
  margin-left: 0.5rem;
  line-height: 1.8;
}
.reason__point.id2 .text.id5 .emphasis {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-right: -0.25rem;
}
.reason__point.id2 .text.id5 .line {
  position: relative;
}
.reason__point.id2 .text.id5 .line::after {
  height: 9rem;
}
.reason__point.id2 .img {
  margin: 0 auto;
  margin-top: 1.5rem;
  width: 23rem;
  position: relative;
  left: 0.7rem;
}

@media screen and (min-width: 769px) {
  .reason {
    position: relative;
    z-index: 5;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    background-size: 100vw 187%;
    background-position: center 3.4rem;
  }
  .reason__bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 3.5rem;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
  }
  .reason__bg > img {
    width: 100%;
  }
  .reason__catch {
    padding-top: 9.2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.6;
    margin-left: 54%;
    text-align: left;
  }
  .reason__catch .emphasis {
    font-size: 2.1rem;
    line-height: 1;
  }
  .reason__catch .emphasis.id2 {
    margin-left: 0.3rem;
  }
  .reason__catch .emphasis.id3 {
    margin-left: 0;
    letter-spacing: -0.7;
    margin-right: 0;
  }
  .reason__point {
    margin-top: 1.6rem;
    width: 42rem;
    height: 32.4rem;
  }
  .reason__point .title {
    top: -4.7rem;
    width: 11rem;
    left: 1.6rem;
  }
  .reason__point .title.id2 {
    left: 28.2rem;
    top: -4.8rem;
    width: 12rem;
  }
  .reason__point .text {
    width: 38.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .reason__point .text .emphasis {
    font-size: 1rem;
  }
  .reason__point .text.bg {
    position: relative;
    z-index: 1;
  }
  .reason__point .text.bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    height: 1.6rem;
    background-image: url(../img/⑧実績②/グラデ-言葉背景-①.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .reason__point .text.id1 {
    margin-top: 2.35rem;
  }
  .reason__point .text.id2 {
    font-size: 1rem;
    margin-top: 0.18rem;
    margin-left: 0.5rem;
    letter-spacing: -0.01em;
    color: #ffffff;
  }
  .reason__point .text.id2::after {
    left: -0.2rem;
    width: 5.32rem;
  }
  .reason__point .text.id3 {
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-left: 0.5rem;
    letter-spacing: -0.01em;
    color: #ffffff;
  }
  .reason__point .text.id3::after {
    left: -0.2rem;
    width: 10.1rem;
    height: 1.6rem;
    top: 52%;
  }
  .reason__point .text.id4 {
    margin-top: 0.35rem;
  }
  .reason__point .text.id5 {
    margin-top: 1.4rem;
    line-height: 1.6;
  }
  .reason__point .text.id6 {
    margin-top: 1.1rem;
    line-height: 1.7;
  }
  .reason__point .text.id7 {
    vertical-align: text-bottom;
    width: -moz-fit-content;
    width: fit-content;
    text-wrap: nowrap;
  }
  .reason__point .text.id7 .emphasis {
    letter-spacing: 0.01em;
    line-height: 0.9;
  }
  .reason__point .text.id7 .number {
    line-height: 1.25;
    margin-left: 0.1rem;
  }
  .reason__point .text.id7.line::after {
    width: 11.725rem;
    height: 6rem;
  }
  .reason__point .text.id8 {
    letter-spacing: 0.09em;
    margin-top: 0.4rem;
    margin-left: 0.1rem;
  }
  .reason__point .text.id9 {
    margin-top: 1.8rem;
    line-height: 1.68;
    text-wrap: nowrap;
  }
  .reason__point .text.id9 .number {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    position: relative;
    top: -0.1rem;
  }
  .reason__point .text.id9 .line {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
  .reason__point .text.id9 .line::after {
    bottom: 0.4rem;
  }
  .reason__point .text.id9 .line .emphasis {
    letter-spacing: 0rem;
  }
  .reason__point .text.id9 .line .emphasis.id2 {
    letter-spacing: 0rem;
  }
  .reason__point .text.id9 .line .number {
    top: -0.3rem;
  }
  .reason__point .text.id10 {
    margin-top: 1.2rem;
    line-height: 2;
    text-wrap: nowrap;
  }
  .reason__point .text.id10 .number {
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    position: relative;
    top: -0.1rem;
  }
  .reason__point .text.id11 {
    margin-top: 1.1rem;
    line-height: 1.9;
  }
  .reason__point .img {
    width: 26.75rem;
    margin: 0 auto;
    margin-top: 0;
    position: absolute;
    top: 1.3rem;
    right: 1.4rem;
  }
  .reason__point .img.id2 {
    width: 21.8rem;
    height: 20rem;
    margin-top: 0;
    position: absolute;
    right: 2.2rem;
    top: 12rem;
    z-index: -1;
    overflow: hidden;
  }
  .reason__point .img.id2 > .step {
    position: absolute;
    width: 25rem;
    top: -2rem;
    right: -2.5rem;
    max-width: none;
  }
  .reason__point .img.id2 > .girl {
    position: absolute;
    width: 3.6rem;
    top: 2.6rem;
    left: 8.35rem;
  }
  .reason__point.id2 {
    height: 16.6rem;
    margin-top: 2.9rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .reason__point.id2 .bg-img {
    z-index: -1;
  }
  .reason__point.id2 .text {
    color: #224960;
    margin: 0;
  }
  .reason__point.id2 .text-box {
    width: 20rem;
  }
  .reason__point.id2 .text-box.id1 {
    display: flex;
    margin-top: 3rem;
    margin-left: 1.5rem;
  }
  .reason__point.id2 .text .checkmark {
    display: inline-block;
    width: 1rem;
  }
  .reason__point.id2 .text.id1 {
    z-index: 10;
    font-size: 1rem;
    position: relative;
    left: 0;
    margin-top: 0;
    text-wrap: nowrap;
    z-index: 1;
    letter-spacing: 0.05em;
  }
  .reason__point.id2 .text.id1::after {
    width: 16.9rem;
    left: -0.4rem;
    top: 56%;
  }
  .reason__point.id2 .text.id1 .number {
    margin-left: 0rem;
    margin-right: 0.1rem;
    position: relative;
    bottom: 0.2rem;
    font-size: 1rem;
  }
  .reason__point.id2 .text.id1 .number.id2 {
    margin-left: 0.15rem;
    margin-right: 0.2rem;
  }
  .reason__point.id2 .text.id2 {
    font-size: 1rem;
    margin-top: 0;
    margin-left: -2.1rem;
    letter-spacing: 0.04em;
    text-wrap: nowrap;
    z-index: 2;
  }
  .reason__point.id2 .text.id2::after {
    display: none;
  }
  .reason__point.id2 .text.id3 {
    display: none;
    font-size: 1.1rem;
    margin-top: 2.65rem;
    margin-left: 0;
    padding-left: 0.3rem;
    letter-spacing: 0.018em;
  }
  .reason__point.id2 .text.id3 .checkmark {
    margin-right: 0.4rem;
    margin-bottom: -0.2rem;
  }
  .reason__point.id2 .text.id3-1 {
    font-size: 0.65rem;
    margin-top: 1.7rem;
    margin-left: 1.5rem;
  }
  .reason__point.id2 .text.id3-2, .reason__point.id2 .text.id4 {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    padding-left: 1.575rem;
    letter-spacing: 0;
  }
  .reason__point.id2 .text.id3-2 .checkmark, .reason__point.id2 .text.id4 .checkmark {
    margin-right: 0;
    margin-bottom: -0.1rem;
  }
  .reason__point.id2 .text.id4 {
    margin-top: 0.2rem;
  }
  .reason__point.id2 .text.id5 {
    font-size: 0.7rem;
    margin-top: 1.3rem;
    letter-spacing: -0.01em;
    margin-left: 1.5rem;
    line-height: 1.8;
  }
  .reason__point.id2 .text.id5 .emphasis {
    font-size: 1rem;
    line-height: 1.4;
    margin-right: 0.15rem;
    margin-top: 0.05rem;
    letter-spacing: 0.035em;
  }
  .reason__point.id2 .text.id5 .line::after {
    height: 6.2rem;
    bottom: -0.5px;
  }
  .reason__point.id2 .img {
    margin: 0;
    margin-top: 2rem;
    width: 14rem;
    margin-left: 3.9rem;
    position: relative;
    left: 0;
  }
  .reason__box.id1 {
    display: flex;
    margin-top: 0.2rem;
    margin-left: 1.5rem;
  }
}
.more {
  position: relative;
  left: -0.3rem;
  height: 50.8rem;
  width: 31.75rem;
  margin: 0 auto;
  margin-top: 4.1rem;
}
.more__inner {
  width: 28.4rem;
  margin: 0 auto;
  padding-top: 4.1rem;
}
.more__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  offset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: 2rem;
}
.more__bg > img {
  height: 110%;
  width: 110%;
  max-width: 110%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.more__icon {
  position: absolute;
  top: -2.2rem;
  left: 2rem;
  width: 15.1rem;
}
.more__catch {
  color: #ffffff;
  letter-spacing: -0.05rem;
  line-height: 1.46;
  font-size: 1.6rem;
  text-wrap: nowrap;
}
.more__catch .line-icon {
  display: inline-block;
  width: 2.5rem;
  position: relative;
  left: 0.1rem;
  top: 0.4rem;
}
.more__catch .emphasis {
  font-size: 2.1rem;
}
.more__catch .dot {
  position: relative;
}
.more__catch .dot::after {
  content: "";
  position: absolute;
  display: block;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.7rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ffff00;
}
.more__catch .bg {
  margin-left: -0.3rem;
  margin-right: 0;
  letter-spacing: 0.06rem;
  color: #009cff;
  position: relative;
}
.more__catch .bg::after {
  content: "";
  display: block;
  background: #f8f8f8;
  width: 92%;
  height: 2.6rem;
  position: absolute;
  top: 59%;
  left: 9px;
  z-index: -1;
}
.more__catch .bottom {
  letter-spacing: 0.05rem;
}
.more .middle {
  display: flex;
  margin-top: 0.3rem;
  justify-content: space-between;
}
.more .middle > img {
  display: block;
  width: 11rem;
  position: relative;
  left: 1.3rem;
  top: -0.1rem;
}
.more__text {
  font-size: 1.3rem;
  padding-top: 0.55rem;
  letter-spacing: 0;
  line-height: 1.67;
  margin-left: 0.32rem;
}
.more__text .number {
  margin-left: 0.2rem;
  margin-right: 0.4rem;
  position: relative;
  bottom: 0.2rem;
}
.more__text .number.id2 {
  bottom: 0.15rem;
  margin-right: 0.05rem;
  margin-left: 0.3rem;
}
.more__text .number.id3 {
  margin-left: 0.3rem;
  margin-right: 0;
  bottom: 0.15rem;
}
.more__text .arrow {
  position: relative;
  width: 1rem;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-left: 0rem;
  margin-right: 0rem;
}
.more__text .arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.1rem;
  height: 0.08rem;
  top: 57%;
  left: 0;
  transform: translateY(-50%);
  background: #ffffff;
}
.more__text .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 33%;
  right: -0.1rem;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(-45deg);
}
.more__text .parentheses {
  margin-left: -0.7rem;
}
.more .text {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding-left: 0.8rem;
}
.more .text .checkmark {
  display: inline-block;
  width: 1.7rem;
  aspect-ratio: 1/1;
  position: relative;
  left: -0.5rem;
  bottom: -0.5rem;
}
.more .text.id1 {
  margin-top: 0.7rem;
}
.more .text.id4 {
  font-size: 1rem;
  text-align: center;
  text-wrap: nowrap;
  margin-top: 2rem;
}
.more .text .number {
  margin-left: 0rem;
  margin-right: 0.3rem;
  position: relative;
  bottom: 0.15rem;
}
.more .text .number.id2 {
  margin-left: 0.25rem;
}
.more .line {
  display: block;
  width: 27.5rem;
  margin: 0 auto;
  margin-top: -0.8rem;
  transform: scaleY(0.5) translateX(-0.3rem);
  z-index: -1;
}
.more .cta {
  text-align: center;
}
.more .cta .craim {
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
  margin-top: 1.24rem;
  letter-spacing: 0.09em;
  margin-left: -1.2rem;
}
.more .cta .craim::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 1px;
  background: #ffffff;
  left: -0.82rem;
  top: 56%;
  transform: translateY(-50%) rotate(72deg);
}
.more .cta .craim::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.8rem;
  height: 1px;
  background: #ffffff;
  right: -0.82rem;
  top: 56%;
  transform: translateY(-50%) rotate(-72deg);
}
.more .cta__btn {
  display: block;
  width: 24.5rem;
  margin: 0 auto;
  margin-top: 0.5rem;
  margin-left: 1.3rem;
  position: relative;
}
.more .cta__btn .hover {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
}
.more .cta__btn:hover .normal {
  opacity: 0;
}
.more .cta__btn:hover .hover {
  opacity: 1;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .more {
    position: relative;
    left: 0.2rem;
    height: 30rem;
    width: 41.75rem;
    margin: 0 auto;
    margin-top: 3.5rem;
    z-index: 10;
  }
  .more__inner {
    width: 34.5rem;
    margin: 0 auto;
    padding-top: 3.1rem;
    position: relative;
  }
  .more__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    offset: 0;
    z-index: -1;
  }
  .more__bg > img {
    height: 100%;
  }
  .more__icon {
    top: -1.6rem;
    left: -0.2rem;
    width: 11rem;
  }
  .more__catch {
    color: #ffffff;
    line-height: 1.55;
    font-size: 1.1rem;
    text-wrap: nowrap;
    letter-spacing: 0.01em;
  }
  .more__catch .line-icon {
    width: 1.7rem;
    margin-right: 0.1rem;
  }
  .more__catch .emphasis {
    font-size: 1.4rem;
  }
  .more__catch .dot {
    position: relative;
  }
  .more__catch .dot::after {
    content: "";
    position: absolute;
    display: block;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.7rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #ffff00;
  }
  .more__catch .bg {
    margin-left: -0.3rem;
    margin-right: -0.4rem;
    letter-spacing: 0.12rem;
  }
  .more__catch .bottom {
    letter-spacing: 0.05rem;
  }
  .more .middle {
    display: flex;
    margin-top: 0.3rem;
    justify-content: space-between;
  }
  .more .middle > img {
    display: none;
  }
  .more__text {
    font-size: 0.8rem;
    padding-top: 0.65rem;
    letter-spacing: 0;
    line-height: 1.8;
    margin-left: 0.15rem;
  }
  .more__text .number {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    bottom: 0.1rem;
    font-size: 1.1rem;
  }
  .more__text .number.id2 {
    bottom: 0.1rem;
    margin-right: 0;
    margin-left: 0.25rem;
  }
  .more__text .number.id3 {
    margin-left: 0.05rem;
    margin-right: 0;
    bottom: 0.1rem;
  }
  .more__text .arrow {
    position: relative;
    width: 1rem;
    aspect-ratio: 1/1;
    display: inline-block;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .more__text .arrow::before {
    width: 0.9rem;
    height: 1px;
    top: 63%;
  }
  .more__text .arrow::after {
    top: 48%;
    right: 0.1rem;
    width: 0.3rem;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
  .more__text .parentheses {
    margin-left: -0.4rem;
    margin-top: -1.1rem;
    position: relative;
    top: -0.2rem;
  }
  .more__text .bottom {
    position: relative;
    top: -0.3rem;
  }
  .more .text {
    font-size: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    padding-left: 0.4rem;
  }
  .more .text .checkmark {
    width: 1.1rem;
    left: -0.35rem;
    bottom: -0.35rem;
  }
  .more .text.id1 {
    margin-top: 0.9rem;
  }
  .more .text .number {
    margin-left: 0rem;
    margin-right: 0.15rem;
    position: relative;
    bottom: 0.15rem;
  }
  .more .text .number.id2 {
    margin-left: 0.25rem;
  }
  .more .text.id4 {
    font-size: 0.75rem;
    margin-top: 1.2rem;
    margin-left: -0.1rem;
    padding-left: 0;
    position: relative;
    text-align: left;
  }
  .more .line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 20.4rem;
    left: -0.25rem;
    bottom: -0.1rem;
    height: 0.6rem;
    margin: 0;
  }
  .more .cta {
    text-align: center;
    width: 20rem;
  }
  .more .cta .craim {
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
    margin-top: 0.6rem;
    letter-spacing: 0.01em;
    margin-left: 0;
  }
  .more .cta .craim::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.8rem;
    height: 1px;
    background: #ffffff;
    left: -0.82rem;
    top: 56%;
    transform: translateY(-50%) rotate(72deg);
  }
  .more .cta .craim::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.8rem;
    height: 1px;
    background: #ffffff;
    right: -0.82rem;
    top: 56%;
    transform: translateY(-50%) rotate(-72deg);
  }
  .more .cta__btn {
    width: 100%;
    margin-top: 0.4rem;
    margin-left: 0;
  }
  .more .phone {
    position: absolute;
    bottom: -1.75rem;
    right: -2.5rem;
    width: 16.5rem;
  }
}
.principal {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  background-image: url(../img/⑨CTAバナー②-フッター/活動理念背景部分_optimized_.png);
  background-size: 200vw 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
.principal__inner {
  width: 31rem;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.principal__bg {
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.principal__bg > img {
  height: 100%;
  max-width: none;
}
.principal__man {
  width: 20.8rem;
  margin: 0 auto;
  padding-top: 6.6rem;
  position: relative;
  left: -0.2rem;
}
.principal__catch {
  font-size: 2.5rem;
  margin-top: 1.7rem;
  position: relative;
  letter-spacing: 0.02em;
  margin-left: 0.8rem;
  z-index: 1;
  text-wrap: nowrap;
  transform: translateY(50%);
  opacity: 0;
}
.principal__text .palt {
  margin-left: -0.5rem;
  margin-right: 0.25rem;
  letter-spacing: 0.025em;
}
.principal__text .palt.id2 {
  margin-right: 0.8rem;
}
.principal__text .palt.id3 {
  margin-right: -0.2rem;
}
.principal__text .palt.id4 {
  margin-right: -0.2rem;
}
.principal__text .palt.id5 {
  margin-right: 0.8rem;
}
.principal__text.nowrap {
  text-wrap: nowrap;
}
.principal__text-box {
  width: 31rem;
  text-align: left;
  margin-top: 2.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  position: relative;
  left: 0.2rem;
  letter-spacing: 0.025em;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.principal__text-box.id2 {
  margin-left: -0.1rem;
  margin-right: 0.9rem;
}
.principal__text-box.id3 {
  margin-left: -0.6rem;
  margin-right: 0rem;
  letter-spacing: 0.025em;
}
.principal__text-box.id4 {
  margin-left: -0.6rem;
  margin-right: 0.2rem;
  letter-spacing: 0.025em;
}
.principal__text .number {
  position: relative;
  bottom: 0.1rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.principal__text .number.id1 {
  margin-left: 0.2rem;
}
.principal__text .number.id2 {
  margin-left: 0.2rem;
  margin-right: 0.4rem;
}
.principal__text .number.id3 {
  margin-left: 0.05rem;
  margin-right: 0.2rem;
}
.principal__text .number.id4 {
  margin-left: 0.25rem;
  margin-right: 0.8rem;
}
.principal__text .number.id4 .arrow {
  position: relative;
  width: 0.8rem;
  top: 0.1rem;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-left: -0.05rem;
  margin-right: 0.35rem;
}
.principal__text + .principal__text {
  margin-top: 2.01rem;
}

@media screen and (min-width: 769px) {
  .principal {
    position: relative;
    z-index: 1;
    text-align: left;
    background-size: 100vw 100%;
    background-position: center 1.8rem;
  }
  .principal__inner {
    width: 32rem;
    margin: 0 auto;
    padding-bottom: 0.45rem;
    position: relative;
  }
  .principal__bg {
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100%;
    top: 1.8rem;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .principal__bg > img {
    height: 100%;
    width: 100%;
  }
  .principal__man {
    width: 9.35rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: auto;
    right: 0.8rem;
    top: 6.35rem;
  }
  .principal__catch {
    font-size: 1.3rem;
    margin-top: 0;
    padding-top: 6rem;
    letter-spacing: 0.01em;
    margin-left: 0.2rem;
  }
  .principal__text .palt {
    margin-left: -0.25rem;
    margin-right: -0.2rem;
    letter-spacing: 0;
  }
  .principal__text .palt.id2 {
    margin-right: 0;
  }
  .principal__text .palt.id3 {
    margin-right: 0;
  }
  .principal__text .palt.id4 {
    margin-right: -0.2rem;
  }
  .principal__text .palt.id5 {
    margin-right: 0.8rem;
  }
  .principal__text.nowrap {
    text-wrap: nowrap;
  }
  .principal__text-box {
    width: 31rem;
    margin-top: 1.5rem;
    font-size: 0.6rem;
    left: 0.2rem;
    letter-spacing: 0.01em;
    line-height: 1.74;
    margin-bottom: 3rem;
  }
  .principal__text-box.id2 {
    margin-left: -0.1rem;
    margin-right: 0.9rem;
  }
  .principal__text-box.id3 {
    margin-left: -0.6rem;
    margin-right: 0rem;
    letter-spacing: 0.025em;
  }
  .principal__text-box.id4 {
    margin-left: -0.6rem;
    margin-right: 0.2rem;
    letter-spacing: 0.025em;
  }
  .principal__text .number {
    bottom: 0.05rem;
    font-size: 0.6rem;
  }
  .principal__text .number.id1 {
    margin-left: 0.05rem;
  }
  .principal__text .number.id2 {
    margin-left: 0.1rem;
    margin-right: 0.2rem;
  }
  .principal__text .number.id3 {
    margin-left: 0.05rem;
    margin-right: 0.2rem;
  }
  .principal__text .number.id4 {
    margin-left: 0.01rem;
    margin-right: 0.45rem;
    bottom: -0.2rem;
  }
  .principal__text .number.id4 .arrow {
    width: 0.8rem;
    top: 0.01rem;
    margin-left: -0.01rem;
    margin-right: -0.25rem;
  }
  .principal__text + .principal__text {
    margin-top: 1.05rem;
  }
}/*# sourceMappingURL=main.css.map */