@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Old+Mincho&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

section {
  width: 100%;
}

body,
a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: normal;
}

a {
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

ul li {
  list-style: none;
}

.subtitle {
  width: 30%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .subtitle {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .subtitle {
    width: 92%;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(4px);
  }
}
.to-top {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 4%;
  right: 4%;
  z-index: 100000;
  transition: all 0.4s;
  /* 表示状態 */
}
.to-top__box {
  width: 60px;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 100%;
  background-color: #fff;
  border: 1.5px solid #cd2d87;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
.to-top__box span {
  font-size: 32px;
  font-weight: 500;
  color: #cd2d87;
}
.to-top__box:hover {
  background-color: rgb(255, 255, 255);
  transform: translateY(-4px);
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: none !important;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 28px;
  padding-left: 2.4%;
}
@media screen and (max-width: 1200px) {
  header {
    padding-block: 20px;
  }
}
@media screen and (max-width: 991px) {
  header {
    padding-block: 15px;
  }
}
header .logo {
  display: block;
  width: 24%;
  aspect-ratio: 379.99/44.99;
  height: auto;
}
@media screen and (max-width: 1200px) {
  header .logo {
    width: 28%;
  }
}
@media screen and (max-width: 599px) {
  header .logo {
    width: 46%;
  }
}
header .logo a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
header .logo a img {
  position: absolute;
  top: 0;
  left: 0;
}

.footer {
  background-color: #cd2d87;
  width: 100%;
  padding: 36px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 36px 6%;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 5px;
    padding-block: 20px;
  }
}
.footer__logo {
  width: 320px;
  aspect-ratio: 320/38;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo {
    width: 220px;
  }
}
.footer__copyright {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
  }
}

.fv {
  position: relative;
  overflow: visible;
  z-index: 2;
}
.fv__main {
  width: 100%;
  aspect-ratio: 1280/652;
  height: auto;
  background-image: url(../image/fv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .fv__main {
    background-image: url(../image/fv-bg-sp.webp);
    aspect-ratio: 320/556;
  }
}
.fv__btn {
  position: absolute;
  display: block;
  width: 10%;
  aspect-ratio: 1/1;
  height: auto;
  bottom: 10%;
  right: 2%;
  filter: drop-shadow(3px 4px 13px rgba(0, 0, 0, 0.3));
}
.fv__btn:hover:hover {
  animation: bounce 0.6s;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .fv__btn {
    width: 30%;
    right: auto;
    left: 4%;
    bottom: 14%;
  }
}
.fv__title {
  width: 75%;
  aspect-ratio: 916.44/225.86;
  height: auto;
  display: block;
  margin-inline: auto;
  margin-top: -6%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .fv__title {
    display: none;
  }
}
.fv__side-bar {
  display: block;
  width: 6%;
  aspect-ratio: 95/225;
  height: auto;
  position: fixed;
  top: 6%;
  right: 0;
  z-index: 10000;
  filter: drop-shadow(-2.57px 2.57px 7.71px rgba(0, 0, 0, 0.2));
}
.fv__side-bar:hover {
  animation: bounce 0.6s;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .fv__side-bar {
    width: 10%;
    top: auto;
    bottom: 15%;
  }
}

.ideas {
  background-image: url(../image/ideas-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 55px 108px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .ideas {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .ideas {
    padding-block: 128px 120px;
    margin-top: -40px;
    background-position: top;
    position: relative;
    z-index: 1;
    background-image: url(../image/ideas-bg-sp.webp);
    background-size: contain;
  }
}
.ideas__wrap {
  background-image: url(../image/ideas-frame.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 630px;
  aspect-ratio: 650/528;
  height: auto;
  margin-inline: auto;
  padding: 50px 70px;
}
@media screen and (max-width: 660px) {
  .ideas__wrap {
    max-width: 630px;
    width: 98%;
    margin-inline: auto;
    background-size: contain;
    padding: 50px 50px;
  }
}
@media screen and (max-width: 599px) {
  .ideas__wrap {
    background-image: url(../image/ideas-frame-sp.webp);
    aspect-ratio: 287.59/431.66;
    width: 92%;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.ideas__title {
  width: 55%;
  margin-left: auto;
  margin-right: 20%;
}
@media screen and (max-width: 599px) {
  .ideas__title {
    width: 80%;
    margin-right: 3%;
  }
}
.ideas__sentence {
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .ideas__sentence {
    margin-top: 20px;
    font-size: 5.1vw;
  }
}

.compare__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1280/600;
  height: auto;
  overflow-y: visible;
}
@media screen and (max-width: 599px) {
  .compare__wrap {
    aspect-ratio: auto;
  }
}
.compare__wrap:first-of-type {
  z-index: 2;
}
.compare__wrap:last-of-type {
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .compare__wrap:last-of-type {
    display: none;
  }
}
.compare__title {
  position: absolute;
  bottom: -6.8%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .compare__title {
    bottom: -11.5%;
  }
}
@media screen and (max-width: 599px) {
  .compare__title {
    bottom: auto;
    top: -4.65%;
  }
}

.learn {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .learn {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 599px) {
  .learn .compare__wrap {
    aspect-ratio: 320.07/843;
  }
}
.learn .compare__wrap .compare__title {
  bottom: -6%;
}
@media screen and (max-width: 991px) {
  .learn .compare__wrap .compare__title {
    bottom: -9.8%;
  }
}
.learn__school {
  background-image: url(../image/learn-school.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .learn__school {
    background-image: url(../image/learn-content-sp.webp);
  }
}
.learn__university {
  background-image: url(../image/learn-university.webp);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1280/800;
}

.job {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .job {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 599px) {
  .job .compare__wrap {
    aspect-ratio: 320/843;
  }
}
@media screen and (max-width: 599px) {
  .job .compare__wrap .compare__title {
    top: -4.8%;
  }
}
.job__school {
  background-image: url(../image/job-school.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .job__school {
    background-image: url(../image/job-content-sp.webp);
  }
}
.job__university {
  background-image: url(../image/job-university.webp);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1280/800;
}

.rest {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .rest {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 599px) {
  .rest .compare__wrap {
    aspect-ratio: 320/809;
  }
}
@media screen and (max-width: 599px) {
  .rest .compare__wrap .compare__title {
    top: -5.25%;
  }
}
.rest__school {
  background-image: url(../image/rest-school.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .rest__school {
    background-image: url(../image/rest-content-sp.webp);
  }
}
.rest__university {
  background-image: url(../image/rest-university.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.university {
  padding-block: 120px;
  background-color: #fdf3ea;
  position: relative;
  z-index: 1;
  overflow-y: visible;
}
@media screen and (max-width: 991px) {
  .university {
    padding-block: 60px;
  }
}
@media screen and (max-width: 599px) {
  .university {
    padding-block: 40px 64px;
  }
}
.university .subtitle {
  margin-inline: auto;
}
.university__choice {
  margin-top: 20px;
  background-image: url(../image/university-choice.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 85%;
  aspect-ratio: 1100/564;
  height: auto;
  margin-inline: auto;
  margin-bottom: 42px;
}
@media screen and (max-width: 599px) {
  .university__choice {
    background-image: url(../image/university-choice-sp.webp);
    aspect-ratio: 286/570;
    margin-top: 25px;
    width: 92%;
    margin-bottom: 25px;
  }
}
.university__title-sub {
  width: 50%;
  aspect-ratio: 655.43/85.43;
  height: auto;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
  .university__title-sub {
    width: 85%;
    margin-bottom: 6px;
  }
}
.university__location {
  background-image: url(../image/university-location.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 85%;
  aspect-ratio: 1160.22/709.04;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .university__location {
    background-image: url(../image/university-location-sp.webp);
    aspect-ratio: 587/2173;
    width: 92%;
    background-size: contain;
  }
}

.bridge {
  background-color: #cd2d87;
  padding-top: 4%;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 599px) {
  .bridge {
    padding-top: 9%;
  }
}
.bridge::before {
  content: "";
  display: block;
  width: 80%;
  aspect-ratio: 1025/75;
  height: auto;
  background-image: url(../image/oc-ring.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}
@media screen and (max-width: 599px) {
  .bridge::before {
    background-image: url(../image/oc-ring-sp.webp);
    aspect-ratio: 275.98/45.29;
    width: 85%;
  }
}

.oc {
  background-color: #cd2d87;
  padding-block: 80px 105px;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .oc {
    padding-block: 60px 60px;
  }
}
@media screen and (max-width: 599px) {
  .oc {
    padding-top: 90px;
    padding-bottom: 32px;
  }
}
.oc::before {
  display: none;
}
@media screen and (max-width: 500px) {
  .oc::before {
    content: "";
    display: block;
    width: 100px;
    aspect-ratio: 100/78.5;
    height: auto;
    background-image: url(../image/oc-star-sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0%;
    right: 15%;
  }
}
.oc__wrap {
  width: 85%;
  margin-inline: auto;
  padding-block: 60px;
  background-color: #fdf3ea;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .oc__wrap {
    padding-bottom: 32px;
    width: 92%;
  }
}
.oc__wrap::before {
  content: "";
  display: block;
  width: 800px;
  aspect-ratio: 800/331;
  height: auto;
  background-image: url(../image/oc-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .oc__wrap::before {
    width: 90%;
    top: 32%;
  }
}
@media screen and (max-width: 768px) {
  .oc__wrap::before {
    display: none;
  }
}
.oc__wrap h2 {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 36px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #cd2d87;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .oc__wrap h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .oc__wrap h2 {
    font-size: 6vw;
    line-height: 1;
  }
  .oc__wrap h2 .sp {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .oc__wrap h2 {
    font-size: 8.4vw;
    line-height: 1;
    padding-top: 8px;
  }
}
.oc__wrap h2::before {
  content: "";
  display: block;
  width: 132px;
  aspect-ratio: 132/125;
  height: auto;
  background-image: url(../image/oc-fukidashi.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 40%;
  left: 2%;
  transform: translate(-100%, -100%);
}
@media screen and (max-width: 599px) {
  .oc__wrap h2::before {
    top: -6%;
    left: 25%;
    width: 150px;
    transform: translate(-50%, -100%);
  }
}
.oc__sentence {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 599px) {
  .oc__sentence {
    font-size: 5.1vw;
    margin-bottom: 20px;
  }
}
.oc__image {
  width: 480px;
  margin-inline: auto;
  margin-bottom: 32px;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 991px) {
  .oc__image {
    width: 56%;
  }
}
@media screen and (max-width: 768px) {
  .oc__image {
    width: 92%;
  }
}
.oc__comment {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  text-align: center;
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .oc__comment {
    font-size: 5.6vw;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 64px;
  }
}
.oc__comment::before {
  content: "";
  display: block;
  width: 186px;
  aspect-ratio: 1/1;
  height: auto;
  background-image: url(../image/oc-fukidashi2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 60%;
  right: -20%;
  transform: translate(100%, -100%);
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .oc__comment::before {
    right: 0;
  }
}
@media screen and (max-width: 660px) {
  .oc__comment::before {
    top: 24%;
    right: 8%;
  }
}
@media screen and (max-width: 599px) {
  .oc__comment::before {
    width: 48%;
    top: -8%;
    right: 14%;
  }
}
.oc__comment span {
  font-size: 24px;
}
.oc__comment span:first-of-type {
  margin-right: 10px;
}
.oc__comment span:last-of-type {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .oc__comment span {
    font-size: 12vw;
    font-weight: 200;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .oc__comment span:first-of-type {
    left: -10%;
  }
  .oc__comment span:last-of-type {
    right: -10%;
  }
}
.oc__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  margin-inline: auto;
  max-width: 720px;
  width: 90%;
  height: 125px;
  background-color: #cd2d87;
  border: 2px solid #000;
  position: relative;
}
@media screen and (max-width: 599px) {
  .oc__btn {
    width: 92%;
    height: 85px;
  }
}
.oc__btn p {
  font-size: 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
@media screen and (max-width: 599px) {
  .oc__btn p {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 24px;
    margin-bottom: 1px;
  }
}
.oc__btn p::after {
  content: "";
  width: 45px;
  aspect-ratio: 1/1;
  height: auto;
  background-image: url(../image/oc-arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
  display: inline-block;
  vertical-align: -12px;
}
@media screen and (max-width: 599px) {
  .oc__btn p::after {
    display: none;
  }
}

.term {
  padding-block: 95px 114px;
  background-image: url(../image/term-dot.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
@media screen and (max-width: 991px) {
  .term {
    padding-block: 80px 140px;
  }
}
@media screen and (max-width: 599px) {
  .term {
    padding-bottom: 240px;
  }
}
.term::before {
  content: "";
  display: block;
  width: 56%;
  aspect-ratio: 395/144;
  height: auto;
  background-image: url(../image/term-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0%;
  left: 0%;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .term::before {
    display: none;
  }
}
.term::after {
  content: "";
  display: block;
  width: 38%;
  aspect-ratio: 506/470.59;
  height: auto;
  background-image: url(../image/term-bg2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .term::after {
    background-image: url(../image/term-bg2-sp.webp);
    aspect-ratio: 320/201;
    width: 68%;
  }
}
@media screen and (max-width: 500px) {
  .term::after {
    width: 74%;
  }
}
@media screen and (max-width: 450px) {
  .term::after {
    width: 82%;
  }
}
@media screen and (max-width: 400px) {
  .term::after {
    width: 90%;
  }
}
@media screen and (max-width: 375px) {
  .term::after {
    width: 98%;
  }
}
.term .subtitle {
  margin-inline: auto;
  position: relative;
}
.term .subtitle::before {
  content: "";
  display: block;
  width: 30%;
  aspect-ratio: 125/140;
  height: auto;
  background-image: url(../image/term-illust.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -36%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .term .subtitle::before {
    display: none;
  }
}
.term__sentence {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .term__sentence {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .term__sentence {
    font-size: 5.1vw;
    margin-bottom: 12px;
  }
}
.term__content {
  position: relative;
  width: 764px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .term__content {
    width: 740px;
  }
}
@media screen and (max-width: 768px) {
  .term__content {
    width: 100%;
  }
}
.term__tab {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .term__tab {
    justify-content: center;
    margin-left: 0;
  }
}
.term .tablinks {
  width: 76px;
  height: 130px;
  background-color: #fff;
  border: 1px solid #807e7e;
  position: relative;
  padding: 16px 13px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #807e7e;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
  line-height: 120%;
}
@media screen and (max-width: 991px) {
  .term .tablinks {
    height: 150px;
  }
}
@media screen and (max-width: 599px) {
  .term .tablinks {
    width: 70px;
    height: 200px;
    font-weight: 500;
  }
}
.term .tablinks.active {
  background-color: #cd2d87;
  color: #fff;
}
.term .tablinks::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #bababa;
  position: absolute;
  top: 6px;
  right: -6px;
  z-index: -1;
}
.term__book {
  width: 100%;
  aspect-ratio: 764/569;
  height: auto;
  background-image: url(../image/term-book.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-top: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .term__book {
    background-position: center;
    margin-top: -24px;
  }
}
@media screen and (max-width: 768px) {
  .term__book {
    aspect-ratio: auto;
    background-size: cover;
    padding: 18% 0;
  }
}
@media screen and (max-width: 599px) {
  .term__book {
    padding: 28% 0;
    margin-top: -78px;
  }
}
.term__book .tabcontent {
  width: 605px;
  aspect-ratio: 605/400;
  height: auto;
  padding: 38px;
  margin-top: -24px;
}
@media screen and (max-width: 768px) {
  .term__book .tabcontent {
    width: 100%;
    padding-inline: 12%;
    aspect-ratio: 692/385;
  }
}
@media screen and (max-width: 660px) {
  .term__book .tabcontent {
    padding-inline: 10%;
    aspect-ratio: 600/422;
  }
}
@media screen and (max-width: 599px) {
  .term__book .tabcontent {
    padding-inline: 6%;
    aspect-ratio: 460/620;
  }
}
.term__book .tabcontent h3 {
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 26px;
}
@media screen and (max-width: 660px) {
  .term__book .tabcontent h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .term__book .tabcontent h3 {
    font-size: 5.8vw;
  }
}
.term__book .tabcontent h3 .pc {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .term__book .tabcontent h3 .pc {
    display: none;
  }
}
.term__book .tabcontent h3 .indent-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .term__book .tabcontent h3 .indent-sp {
    display: inline-block;
    width: 5.8vw;
  }
}
.term__book .tabcontent p {
  font-size: 20px;
  line-height: 200%;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
@media screen and (max-width: 599px) {
  .term__book .tabcontent p {
    font-size: 5.1vw;
  }
}
.term__point-pc {
  position: absolute;
  width: 200px;
  top: 2px;
  right: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 991px) {
  .term__point-pc {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .term__point-pc {
    display: none;
  }
}
.term__point-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .term__point-sp {
    display: block;
    width: 40%;
    margin-left: auto;
    margin-right: 24%;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 768px) and (max-width: 599px) {
  .term__point-sp {
    width: 60%;
    margin-right: 12%;
    margin-bottom: 18px;
  }
}/*# sourceMappingURL=style.css.map */