@charset "UTF-8";
/* _base.scss */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1280px) {
  .tab {
    display: unset;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: unset !important;
  }
}

/* _reset.scss */
/* foundation/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-weight: 500;
}

.js-fade {
  opacity: 0;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}

.l-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    width: 100%;
    padding: 0 3.5vw;
  }
}

.l-main {
  padding: 4rem 0;
}

.l-section {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 10vw 0;
  }
}

/* リセットとかは別途 */
.header {
  position: relative;
  z-index: 1000;
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #28499D;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

.hamburger.is-active span {
  background: #FFF;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-header__spnav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #28499D;
  color: #FFF;
  overflow: hidden;
  height: 0;
}
.l-header__spnav ul {
  list-style: none;
  margin: 0;
  padding: 5.5rem 10vw 2rem;
}
.l-header__spnav ul li {
  position: relative;
  border-bottom: 2px solid #9cabd0;
}
.l-header__spnav ul li:last-child {
  border-bottom: 0;
}
.l-header__spnav ul li a {
  padding: 0.75em;
  display: block;
}
.l-header__spnav ul li svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-size: 1em;
}
.l-header__spnav-button {
  margin: 0 auto;
  width: calc(100% - 20vw);
  max-width: 400px;
}
.l-header__spnav-button .c-btn {
  width: 100%;
}
.l-header__spnav-logo {
  width: 130px;
  margin: 4rem auto;
}
.l-header__spnav-logo img {
  width: 100%;
}

@media (min-width: 820px) {
  .hamburger {
    display: none;
  }
  .l-header__spnav {
    position: static;
    height: auto !important;
    display: block;
  }
}
/* _header.scss */
.l-header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 0 2rem 0.5rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l-header {
    min-height: 65px;
    padding: 0.5vw 3.5vw;
    display: grid;
    justify-content: start;
    align-items: center;
  }
}
.l-header__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    display: flex;
    align-items: center;
  }
}
.l-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.l-header__logo {
  width: clamp(250px, 83vw, 500px);
}
.l-header__logo img {
  width: 100%;
}
.l-header__cta {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__cta .c-btn__entry {
  display: inline-block;
  background-color: #1EAD4C;
  color: #fff;
  border-radius: 100px;
  font-weight: bold;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  text-align: center;
  transition: background-color 0.3s;
  width: 300px;
}
.l-header__cta .c-btn__entry:hover {
  background-color: #1EAD4C;
}
@media screen and (max-width: 820px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  justify-content: end;
  gap: 2em;
  list-style: none;
}
.l-header__nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  position: relative;
}
.l-header__nav a:hover {
  color: #1EAD4C;
}
.l-header__nav-button {
  position: absolute;
  top: 27%;
  right: 3%;
}
@media (min-width: 768px) {
  .l-header__cta {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 2rem auto;
  font-size: 1.4rem;
}
.l-footer__logo {
  display: block;
  margin: 0 auto;
  width: clamp(280px, 30vw, 400px);
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__copyright {
  background-color: #28499D;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 0;
}
.l-footer__sns {
  width: fit-content;
  margin: 0 auto 2rem;
  display: flex;
  gap: 1rem;
}

.c-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.75em 2em 0.78em;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #fff;
  background-color: #1EAD4C;
}
.c-btn:hover {
  background-color: #1EAD4C;
}
.c-btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.c-btn svg {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5em;
}

.c-btn--entry {
  position: relative;
  background-color: #28a745;
}
.c-btn--entry:hover {
  background-color: #218838;
}

.c-heading__sub {
  font-family: "Urbanist", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #E83436;
  display: block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-heading__sub {
    font-size: 1.8rem;
  }
}

.c-heading__main {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #28499D;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-heading__main {
    font-size: 1.8rem;
  }
}

.c-heading__sectiontitle {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: bold;
  color: #28499D;
  text-align: center;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 768px) {
  .c-heading__sectiontitle {
    margin: 0 auto 2rem;
    line-height: 1.25;
  }
}

.c-heading__subtitle {
  font-size: 2rem;
  text-align: center;
  color: #28499D;
  background-color: #F8FF25;
  border: 3px solid #28499D;
  border-radius: 2em;
  padding: 0.5em 1em;
  width: clamp(320px, 85vw, 400px);
  margin: 0 auto 4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-heading__subtitle {
    border: 2px solid #28499D;
    font-size: 1.6rem;
    margin: 0 auto 2rem;
  }
}

/* _article.scss */
.p-top-fv__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 113px 2rem 0;
  background: url("@../../../images/fv_pc.jpg") no-repeat center center;
  background-size: 100%;
  aspect-ratio: 2800/1216;
}
@media screen and (max-width: 768px) {
  .p-top-fv__top {
    background: url("@../../../images/fv_sp.jpg") no-repeat center center;
    background-size: cover;
    aspect-ratio: 390/335;
    padding: 55px 0 0;
  }
}
.p-top-fv__content {
  flex: 1 1 50%;
  max-width: 600px;
}
.p-top-fv__title {
  text-align: center;
}
.p-top-fv__maintitle {
  color: #28499D;
  font-size: clamp(2.4rem, 2.5vw, 4rem);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-top-fv__maintitle span {
  background-color: #F8FF25;
  padding: 0 0.5em;
}
.p-top-fv__maintitle span:first-child {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .p-top-fv__maintitle span:first-child {
    padding: 0 0.5em;
  }
}
.p-top-fv__maintitle span:last-child {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .p-top-fv__maintitle span:last-child {
    padding: 0 0.5em;
  }
}
.p-top-fv__subtitle {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2.9rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #28499d;
  margin-top: 0.25em;
  text-shadow: rgb(255, 255, 255) 2px 0 5px;
}
.p-top-fv__bottom {
  background: #28499D;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-fv__bottom {
    padding: 1.5rem 0;
  }
}
.p-top-fv__bottom-copy {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top-fv__bottom-copy::before, .p-top-fv__bottom-copy::after {
  content: "";
  background-color: #fff;
  height: 3px;
  width: 40px;
}
.p-top-fv__bottom-copy::before {
  margin-right: 5px;
  transform: rotate(60deg);
}
.p-top-fv__bottom-copy::after {
  margin-left: 5px;
  transform: rotate(-60deg);
}
.p-top-fv__bottom-copy p {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.p-top-fv__bottom-copy p span {
  color: #F8FF25;
}
.p-top-fv__bottom-button {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-fv__bottom-button {
    margin-top: 1rem;
  }
}
.p-top-fv__bottom-button .c-btn--entry {
  width: clamp(320px, 85vw, 460px);
  font-size: 2.4rem;
  border-radius: 2em;
  padding: 0.75em 2em;
}
@media screen and (max-width: 768px) {
  .p-top-fv__bottom-button .c-btn--entry {
    width: fit-content;
    font-size: 1.6rem;
    padding: 0.75em 3em;
  }
}
.p-top-fv__banner {
  position: relative;
}
.p-top-fv__banner a {
  position: absolute;
  bottom: -5vw;
  right: 1vw;
  display: block;
  width: clamp(100px, 10vw, 200px);
  transition: all 0.3s;
}
.p-top-fv__banner a:hover {
  opacity: 0.8;
}

.p-top-about {
  background-color: #f7f8f9;
}
.p-top-about__inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-about__inner {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.p-top-about__catch {
  flex: 1 1 50%;
  position: relative;
}
.p-top-about__image {
  position: absolute;
  right: 0;
  left: -778px;
  margin: auto;
  border-radius: 3rem;
  overflow: hidden;
  width: 738px;
  height: 480px;
}
@media screen and (max-width: 1280px) {
  .p-top-about__image {
    left: -622.4px;
    width: 590.4px;
    height: 384px;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-about__image {
    position: relative;
    right: unset;
    left: 0;
    margin: 0;
    margin-right: 3.5vw;
    border-radius: 0 3rem 3rem 0;
    width: calc(100% - 5vw);
    height: auto;
  }
}
.p-top-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-about__text {
  flex: 1 1 50%;
}
.p-top-about__text p {
  font-size: 1.6rem;
  margin-bottom: 2em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-top-about__text p {
    font-size: 1.4rem;
  }
}
.p-top-about__heading {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: bold;
  color: #28499D;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 50rem;
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .p-top-about__heading {
    margin-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-about__heading {
    font-size: 2.8rem;
    margin-top: 2rem;
    line-height: 1.25;
  }
}
.p-top-about__heading span {
  color: #E83436;
}

.p-top-point {
  background-color: #fff;
}
.p-top-point__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-point__inner {
    gap: 0;
    padding: 2rem 0;
  }
}
.p-top-point__item {
  width: calc(50% - 2rem);
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-point__item {
    width: 100%;
    border-bottom: 2px solid #e9e9e9;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-point__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}
.p-top-point__item h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #28499D;
  margin-bottom: 0.5em;
  min-height: 3em;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .p-top-point__item h3 {
    font-size: 1.6rem;
    min-height: 2.5em;
    margin-bottom: 0.25em;
  }
}
.p-top-point__item p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-point__item p {
    font-size: 1.3rem;
  }
}
.p-top-point__image {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-top-point__image {
    width: 100px;
    display: grid;
    align-items: center;
  }
}
.p-top-point__text {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .p-top-point__text {
    width: calc(100% - 100px);
  }
}

.p-top-lesson {
  background-color: #f1f7fb;
}
.p-top-lesson__section {
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__section {
    margin: 0 3vw 0;
  }
}
.p-top-lesson__section > p {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__section > p {
    font-size: 1.4rem;
    margin: 0 auto 2rem;
    padding: 0 3vw;
  }
}
.p-top-lesson__section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 60%;
  height: 0;
  border: 2px dashed #28499D;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__section::before {
    display: none;
  }
}
.p-top-lesson__section:nth-child(3)::before {
  display: none;
}
.p-top-lesson__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__list {
    padding: 0 0 15vw;
  }
}
.p-top-lesson__card {
  width: calc(25% - 2rem);
  background: #fff;
  border: 3px solid #28499D;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__card {
    width: 100%;
    margin: 0 auto;
    border: 2px solid #28499D;
  }
}
.p-top-lesson__card-title {
  font-size: 2rem;
  font-weight: bold;
  background: #28499D;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
  border-radius: 15px 15px 0 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__card-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-lesson__card-title span {
    padding-left: 0.5em;
  }
}
.p-top-lesson__card-body {
  padding: 15px;
}
.p-top-lesson__card-catch {
  color: #28499D;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__card-catch {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-lesson__card-text {
    font-size: 1.4rem;
  }
}
.p-top-lesson__card-label {
  font-family: "Urbanist", sans-serif;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #28499D;
  background: #fbff8f;
  line-height: 1;
  padding: 0.5em 1.5em;
  width: fit-content;
  margin: 1rem auto 0;
  border-radius: 2em;
  letter-spacing: 0.1em;
}
.p-top-lesson__box {
  position: relative;
  width: 780px;
  margin: 4rem auto 0;
  padding: 4rem 4rem 3rem;
  background: #fff;
  border: 3px solid #28499D;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__box {
    width: 100%;
    padding: 2rem 2rem 1rem;
    border: 2px solid #28499D;
  }
}
.p-top-lesson__box-title {
  position: absolute;
  top: -2.7rem;
  font-size: 2rem;
  text-align: center;
  color: #28499d;
  border: 3px solid #28499d;
  border-radius: 2em;
  background: #fff;
  padding: 0.5em 1em;
  width: fit-content;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__box-title {
    top: -1.8rem;
    font-size: 1.4rem;
    border: 2px solid #28499D;
  }
}
.p-top-lesson__box-list {
  list-style: disc;
  line-height: 2;
  padding-left: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-lesson__box-list li {
    font-size: 1.4rem;
  }
}

.p-top-price {
  background-color: #fcf8e1;
}
.p-top-price > p {
  text-align: center;
  margin: 0 auto 7rem;
}
@media screen and (max-width: 768px) {
  .p-top-price > p {
    font-size: 1.4rem;
    margin: 0 auto 15vw;
  }
}
.p-top-price__box {
  position: relative;
  width: 600px;
  margin: 4rem auto 8rem;
  padding: 4rem 4rem 3rem;
  background: #fff;
  border: 3px solid #28499D;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-price__box {
    width: 100%;
    margin: 5vw auto 10vw;
    padding: 6rem 4rem 3rem;
    border: 2px solid #28499D;
  }
}
.p-top-price__box > p {
  font-size: 1.6rem;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-price__box > p {
    font-size: 1.4rem;
    margin-bottom: 1em;
    text-align: left;
  }
}
.p-top-price__box-title {
  position: absolute;
  top: -2.7rem;
  font-size: 2rem;
  text-align: center;
  color: #28499d;
  border: 3px solid #28499d;
  background: #F8FF25;
  border-radius: 2em;
  padding: 0.5em 2em;
  width: fit-content;
  max-width: clamp(300px, 80vw, 440px);
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-price__box-title {
    font-size: 1.6rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
    left: 5vw;
    border: 2px solid #28499D;
  }
}
.p-top-price__box-title span {
  font-size: 1.4rem;
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-top-price__box-title span {
    font-size: 1.3rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-price__box:nth-child(2) {
    padding: 10vw 5vw 5vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-price__box:nth-child(2) .p-top-price__box-title {
    top: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-price__box:nth-child(2) dl {
    font-size: 1.4rem;
  }
}
.p-top-price__box:nth-child(2) dl dt {
  width: 100%;
}
.p-top-price__box:nth-child(2) dl dd {
  width: 100%;
}
.p-top-price__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 430px;
  margin: 0 auto 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-price__list {
    font-size: 1.4rem;
  }
}
.p-top-price__list dt {
  width: 50%;
  background: #e5ebfc;
  padding: 15px 0;
  text-align: center;
}
.p-top-price__list dd {
  width: 50%;
  background: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}
.p-top-price__text {
  max-width: 430px;
  margin: 0 auto;
}
.p-top-price__text p {
  font-size: 1.4rem;
}

.p-top-opencampus {
  background: url("@../../../images/opencampus_bg.jpg") center center;
  background-size: 100%;
}
.p-top-opencampus__title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  text-align: center;
  color: #28499d;
  background-color: #f8ff25;
  border-radius: 2em;
  padding: 0.5em 1em;
  width: clamp(320px, 85vw, 460px);
  margin: 0 auto 4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__title {
    margin: 0 auto 10vw;
  }
}
.p-top-opencampus__subtitle {
  position: relative;
  text-align: center;
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: bold;
  color: #fff;
  width: fit-content;
  margin: 0 auto 4rem;
}
.p-top-opencampus__subtitle::before, .p-top-opencampus__subtitle::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 4px;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__subtitle::before, .p-top-opencampus__subtitle::after {
    height: 2px;
    width: 100px;
  }
}
.p-top-opencampus__subtitle::before {
  position: absolute;
  left: -1.5em;
  bottom: 1em;
  margin-right: 5px;
  transform: rotate(60deg);
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__subtitle::before {
    left: -3.5em;
    bottom: 2em;
  }
}
.p-top-opencampus__subtitle::after {
  position: absolute;
  right: -1.5em;
  bottom: 1em;
  margin-left: 5px;
  transform: rotate(-60deg);
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__subtitle::after {
    right: -3.5em;
    bottom: 2em;
  }
}
.p-top-opencampus__image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.p-top-opencampus__info {
  position: relative;
  width: 600px;
  margin: 6rem auto 0;
  padding: 4rem 4rem 3rem;
  background: #fff;
  border: 3px solid #28499D;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__info {
    width: 100%;
    padding: 10vw 5vw 5vw;
    border: 2px solid #28499D;
  }
}
.p-top-opencampus__info-title {
  position: absolute;
  top: -1em;
  right: 0;
  left: 0;
  margin: auto;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-align: center;
  color: #28499d;
  border: 3px solid #28499d;
  border-radius: 2em;
  background: #fff;
  padding: 0.5em 1em;
  width: fit-content;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-opencampus__info-title {
    border: 2px solid #28499D;
  }
}
.p-top-opencampus__info strong {
  text-align: center;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  margin: 0 auto;
  padding: 0 0.5em;
  display: block;
  width: fit-content;
  background: linear-gradient(transparent 60%, #f8ff25 60%);
}
.p-top-opencampus__info p {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-align: center;
  margin: 2rem auto;
}

.p-top-instructors {
  background: url("@../../../images/instructors_bg.jpg") center center;
  background-size: 100%;
}
.p-top-instructors__card {
  position: relative;
  width: 600px;
  margin: 4rem auto 0;
  padding: 4rem 4rem 3rem;
  background: #fff;
  border: 3px solid #28499D;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-instructors__card {
    width: 100%;
    padding: 2rem 2rem 1rem;
    border: 2px solid #28499D;
  }
}
.p-top-instructors__card-header {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-instructors__card-header {
    gap: 1rem;
  }
}
.p-top-instructors__image {
  width: 145px;
}
@media screen and (max-width: 768px) {
  .p-top-instructors__image {
    width: 100px;
  }
}
.p-top-instructors__image-inner {
  width: 145px;
  height: fit-content;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-instructors__image-inner {
    width: 100px;
  }
}
.p-top-instructors__message {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top-instructors__message {
    margin-bottom: 3vw;
  }
}
.p-top-instructors__message span {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  display: inline-block;
  background: linear-gradient(transparent 60%, #f8ff25 60%);
  color: #28499D;
}
.p-top-instructors__name p {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: #28499D;
}
.p-top-instructors__profile {
  font-size: 1.4rem;
}
.p-top-instructors__profile-header {
  position: relative;
  margin-bottom: 1rem;
}
.p-top-instructors__profile-header span {
  position: relative;
  font-family: "Urbanist", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #28499D;
  background: #fff;
  padding: 0 0.5em 0 0;
  z-index: 1;
}
.p-top-instructors__profile-header::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #28499D;
}
.p-top-instructors__profile P {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.p-top-instructors__profile ul {
  list-style: disc;
  padding-left: 2rem;
}
.p-top-instructors__profile ul li {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.p-top-access {
  background-color: #fff;
  padding-bottom: 8rem;
}
.p-top-access__image {
  max-width: 980px;
  margin: 0 auto 4rem;
}
.p-top-access__info {
  width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-access__info {
    width: calc(100% - 5vw);
  }
}
.p-top-access__info dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-access__info dl {
    gap: 0;
  }
}
.p-top-access__info dl dt,
.p-top-access__info dl dd {
  display: grid;
  align-items: center;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .p-top-access__info dl dt,
  .p-top-access__info dl dd {
    margin-bottom: 1em;
  }
}
.p-top-access__info dl dt span {
  width: 110px;
  display: inline-block;
  background: #F8FF25;
  padding: 0.25em 1em;
  text-align: center;
  border-radius: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-top-access__info dl dt span {
    width: 80px;
  }
}
.p-top-access__info dl dd {
  width: calc(100% - 130px);
}
@media screen and (max-width: 768px) {
  .p-top-access__info dl dd {
    width: calc(100% - 90px);
  }
}

.p-top-contact {
  background-color: #28499d;
  color: #fff;
}
.p-top-contact__title {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  text-align: center;
  margin: -10rem auto 4rem;
  padding: 0.5em 1em;
  width: fit-content;
  border-radius: 2em;
  background-color: #fff;
  color: #28499D;
  border: 3px solid #28499d;
}
@media screen and (max-width: 768px) {
  .p-top-contact__title {
    margin: -16.5vw auto 0;
    border: 2px solid #28499D;
  }
}
.p-top-contact p {
  text-align: center;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin: 4rem auto;
}
@media screen and (max-width: 768px) {
  .p-top-contact p {
    margin: 6vw auto;
  }
}
.p-top-contact__icon {
  display: flex;
  gap: 2rem;
  margin: 0 auto 4rem;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-top-contact__icon {
    gap: 2rem;
    margin: 0 auto 6vw;
  }
}

/* _text-align.scss */

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