:root {
  --main-color: #9148ff;
  --main-text-color: #333;
  --highlight-text-color: #791fff;
  --section-bg-color: #f2f2f2;
  --footer-bg-color: #f4f1ee;
  --brand-color: #fc7400;
  --family-noto-sans-jp: "Noto Sans JP", sans-serif;
  --family-hiragino-kaku-gothic-pro: "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: Hiragino Kaku Gothic Pro, Noto Sans JP, sans-serif;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  padding: 16px 24px 12px;
  display: block;
}

.header-logo img {
  width: 120px;
  height: auto;
}

.header-button {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.54px;
  padding: 0 24px;
  height: 58px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  padding-top: 57px;
}

.fv-section {
  position: relative;
  height: 49vw;
  min-height: 720px;
  max-height: 1080px;
}

.fv-wrapper {
  background-color: #fff;
  background-image: url("../images/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.fv-main-copy-area {
  padding-left: 88px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  top: -5%;
}

.fv-main-copy {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 80.172px;
  font-style: normal;
  font-weight: 900;
  line-height: 102.721px;
}

.fv-sub-copy {
  display: block;
  font-size: 43px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 4px;
}

.fv-sub-copy .fv-highlight {
  color: var(--highlight-text-color);
  font-weight: 900;
}

.fv-cv-area {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
}

.fv-cv-text {
  color: var(--main-text-color);
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}

.fv-cv-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(0deg, #791fff -37.83%, #954eff 87.83%);
  color: #fff;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  padding: 16px 32px;
  border-radius: 40px;
}

.feature-section {
  background-image: url("../images/section-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.feature-wrapper {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-title {
  text-align: center;
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-title .section-title-highlight {
  color: var(--highlight-text-color);
}

.feature-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  gap: 16px;
}

.feature-item {
  padding: 24px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-item-text {
  color: var(--main-text-color);
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.feature-item-text .feature-item-highlight {
  color: var(--highlight-text-color);
  font-size: 24px;
}

.about-section {
  background-color: var(--section-bg-color);
}

.about-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.about-section .section-title {
  color: var(--highlight-text-color);
}

.about-content-area {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.26);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
}

.about-image-area {
  width: 100%;
}

.about-image-area img {
  width: 100%;
  height: auto;
}

.about-text-area {
  display: grid;
  row-gap: 16px;
}

.about-content-text {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-content-text .about-content-highlight {
  color: var(--highlight-text-color);
  font-weight: 700;
}

.curriculum-section {
  background-color: #fff;
}

.curriculum-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title-area {
  display: grid;
  grid-template-columns: 108px auto 108px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.curriculum-section .section-title {
  font-size: 32px;
  width: fit-content;
}

.curriculum-section .section-title-highlight {
  font-size: 64px;
}

.curriculum-contents {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.curriculum-item {
  padding: 24px;
  border-radius: 16px;
  background: var(
    --sssssss,
    linear-gradient(0deg, #791fff -37.83%, #954eff 87.83%)
  );
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.25);
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.curriculum-item-title {
  color: #fff;
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.curriculum-item-list {
  list-style: disc;
  padding-left: 24px;
}

.curriculum-item-list-item {
  color: #fff;
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.campaign-section {
  background-color: var(--section-bg-color);
}

.campaign-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.campaign-tag {
  color: #fff;
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: var(--highlight-text-color);
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 24px;
}

.campaign-image {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.campaign-details {
  margin: 40px auto;
}

.campaign-details-title {
  padding: 12px;
  color: #fff;
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: var(--highlight-text-color);
}

.campaign-details-content-area {
  background-color: #fff;
}

.campaign-details-content {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--section-bg-color);
}

.campaign-details-text {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.campaign-details-description {
  color: #333;
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.campaign-details-description-lists {
  list-style: disc;
  padding-left: 18px;
}

.campaign-details-description-item {
  line-height: 25px;
  margin-bottom: 4px;
}

.campaign-button {
  color: #fff;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 40px;
  background: var(
    --sssssss,
    linear-gradient(0deg, #791fff -37.83%, #954eff 87.83%)
  );
  width: fit-content;
  margin: 0 auto;
}

.cv-section {
  background-color: #222;
  background-image: url("../images/cv-section-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cv-section-inner {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cv-section-title {
  color: #fff;
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cv-section-text {
  color: #fff;
  text-align: center;
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 41px;
  margin: 16px auto 20px;
}

.cv-section-button {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 56px;
  border-radius: 40px;
  background: #fff;
}

.footer {
  background-color: var(--footer-bg-color);
  border-bottom: 6px solid var(--brand-color);
}

.footer-inner {
  padding: 48px 24px;
  max-width: 1176px;
  margin: 0 auto;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-logo .footer-logo-text {
  color: var(--brand-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.footer-address {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.footer-container {
  display: flex;
  gap: 92px;
  margin-top: 24px;
}

.footer-copyright {
  display: block;
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: right;
  margin: 16px 0 0 auto;
  width: fit-content;
}

.footer-nav {
  display: grid;
  row-gap: 8px;
}

.footer-nav-item a {
  color: var(--main-text-color);
  font-family: var(--family-noto-sans-jp);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.fv-cv-area-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .fv-wrapper {
    background-position: -167px;
  }
  .fv-main-copy-area {
    padding-left: 40px;
  }
  .fv-main-copy {
    font-size: 64.172px;
    line-height: 81.721px;
  }
  .fv-sub-copy {
    font-size: 34px;
  }
  .fv-cv-text {
    font-size: 20px;
  }
  .fv-cv-button {
    font-size: 20px;
  }
}

@media screen and (max-width: 1154px) {
  .fv-wrapper {
    background-position: -291px;
  }
}

@media screen and (max-width: 1024px) {
  .fv-section {
    height: 100vw;
    min-height: 920px;
  }
  .fv-wrapper {
    background-image: url("../images/fv-bg-tablet.webp");
    background-position: center;
  }
  .fv-main-copy-area {
    top: 4%;
    justify-content: flex-start;
  }
  .fv-cv-area {
    margin-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .header-button {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.42px;
    padding: 0 16px;
  }
  .fv-section {
    height: 72vh;
    min-height: initial;
  }
  .fv-wrapper {
    background-image: url("../images/fv-bg-sp.webp");
  }
  .fv-cv-area-pc {
    display: none;
  }
  .fv-main-copy-area {
    top: 0;
    padding: 0;
    padding-top: 32px;
    align-items: center;
    height: auto;
  }
  .fv-main-copy {
    font-size: 38px;
    line-height: 45.8px;
  }
  .fv-sub-copy {
    font-size: 22px;
  }
  .fv-cv-area-sp {
    display: block;
    margin: 16px auto;
  }
  .fv-cv-text {
    font-size: 16px;
  }
  .fv-cv-button {
    font-size: 16px;
    padding: 12px 22px;
  }
  .section-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
  .feature-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title {
    font-size: 32px;
  }
  .feature-items {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }
  .about-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-content-area {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }
  .about-content-text {
    font-size: 16px;
  }
  .curriculum-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .curriculum-section .section-title {
    font-size: 16px;
  }
  .curriculum-section .section-title-highlight {
    font-size: 24px;
  }
  .section-title-area {
    grid-template-columns: 46px auto 46px;
    gap: 10px;
  }
  .saraba-image {
    width: 100%;
    height: auto;
  }
  .curriculum-contents {
    margin-top: 16px;
    display: grid;
    row-gap: 16px;
    width: 100%;
    justify-content: initial;
  }
  .curriculum-item {
    width: auto;
  }
  .curriculum-item-title {
    font-size: 24px;
  }
  .campaign-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .campaign-tag {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .campaign-image {
    margin-top: 24px;
  }
  .campaign-details {
    margin-top: 24px;
  }
  .campaign-details-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
  }
  .campaign-button {
    font-size: 16px;
    padding: 12px 16px;
  }
  .cv-section-inner {
    padding: 24px 16px;
  }
  .cv-section-title {
    font-size: 32px;
  }
  .cv-section-text {
    font-size: 16px;
    margin: 16px auto;
    line-height: 1.6;
  }
  .cv-section-button {
    font-size: 16px;
    padding: 12px;
    width: 90%;
  }
  .footer-inner {
    padding: 24px 16px;
  }
  .footer-container {
    flex-wrap: wrap;
    row-gap: 24px;
    margin-top: 12px;
  }
  .footer-address {
    font-size: 14px;
  }
  .footer-nav {
    row-gap: 4px;
  }
  .footer-nav-item a {
    font-size: 14px;
  }
  .footer-copyright {
    margin: 16px auto 0 0;
  }
}
.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}