@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@500&display=swap");
@keyframes top-open {
  0% {
    transform: translateY(0) rotate(0deg);
    transform-origin: center;
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  to {
    transform: translateY(8px) rotate(-45deg);
  }
}
@keyframes bottom-open {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  to {
    transform: translateY(-8px) rotate(45deg);
  }
}
@keyframes top-close {
  0% {
    transform: translateY(8px) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes bottom-close {
  0% {
    transform: translateY(-8px) rotate(45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes overlay-show {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
}
@keyframes overlay-hide {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  90% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    height: 0;
    opacity: 0;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

button,
img {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  font: inherit;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body,
html {
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color: #444;
  font-size: 1.35rem;
  line-height: 1.5;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ Ｐゴシック", sans-serif;
}

ol,
ul {
  list-style: none;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

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

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 0 auto;
  padding: 9px 2rem 9px 9px;
  background: #fff;
}

.header__logo {
  display: inline-block;
  width: 94px;
  height: auto;
  margin-right: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: #e50012;
}

.footer__bottom {
  color: #fff;
}

.footer__copyright {
  font-size: 0.6em;
}

html.is-nav-open {
  height: 100%;
  overflow: auto;
}

html.is-nav-open body {
  height: 100%;
  overflow: hidden;
}

.container {
  margin-bottom: -2rem;
  line-height: 1.6;
}

.header__nav {
  width: calc(45px - 1.5rem);
  height: 45px;
  border-left: 1px solid #ccc;
}

.header__nav-pc {
  display: none;
}

.nav-pc__item {
  display: inline-block;
  margin-left: 2rem;
  letter-spacing: -0.02rem;
}

.nav-pc__item:last-child {
  margin-left: 1.5rem;
}

.nav-pc__link {
  display: block;
  color: #444;
  font-size: 1.15rem;
}

.gnav,
.gnav__ham {
  position: absolute;
  top: 0;
  right: 0;
}

.gnav__ham {
  display: flex;
  z-index: 30;
  flex-flow: column;
  justify-content: center;
  width: 50px;
  height: 48px;
  cursor: pointer;
}

.gnav__part {
  display: block;
  width: 21px;
  height: 3px;
  margin: 0 auto 5px;
  border-radius: 1px;
  background-color: #e50012;
}

.gnav__part:last-child {
  margin-bottom: 0;
}

.gnav__inner {
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  position: fixed;
  top: 0;
  right: -337px;
  width: 337px;
  height: 100vh;
  margin-top: 48px;
  overflow: auto;
  background: #eee;
  transition: all 0.5s ease;
}

.gnav__inner::before {
  display: block;
  z-index: 2;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.15);
  content: "";
}

.is-open .gnav__ham span:nth-of-type(1) {
  animation: top-open 0.5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__ham span:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.5s;
}

.is-open .gnav__ham span:nth-of-type(3) {
  margin-bottom: 0;
  animation: bottom-open 0.5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__inner {
  transform: translateX(-337px);
}

.is-open + .overlay {
  animation: overlay-show 0.5s forwards;
}

.is-close .gnav__ham span:nth-of-type(1) {
  animation: top-close 0.5s forwards;
}

.is-close .gnav__ham span:nth-of-type(2) {
  opacity: 1;
  transition: opacity 0.5s;
}

.is-close .gnav__ham span:nth-of-type(3) {
  animation: bottom-close 0.5s forwards;
}

.is-close .gnav__inner {
  transform: translateX(0);
}

.is-close + .overlay {
  animation: overlay-hide 0.5s forwards;
}

.overlay {
  display: block;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #333;
}

.gnav-innerHead {
  display: grid;
  position: relative;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, 78px);
  grid-template-areas: ". . . ." "search search search search";
  -moz-column-gap: 2px;
  column-gap: 2px;
  padding: 20px 12px 5px;
  background: #fff;
}

.gnav-innerHead__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gnav-innerHead__text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
}

.gnav-iconMenu {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 169px 168px;
  border-top: 1px solid #ccc;
  background: #fff;
}

.gnav-iconMenu > li:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.gnav-iconMenu__item {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 12px;
  border-bottom: 1px solid #ccc;
}

.gnav-iconMenu__item::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 7px;
  border-radius: 15px;
  background-image: url(/course/common/images/icon_category.png);
  background-size: 420% auto;
  background-repeat: no-repeat;
  content: "";
}

.gnav-iconMenu__item--law::before {
  background-position: -48px 2px;
  background-color: #2e4b75;
}

.gnav-iconMenu__item--medical::before {
  background-position: -48px -74px;
  background-color: #e79b8d;
}

.gnav-iconMenu__item--welfare::before {
  background-position: 2.5px -23px;
  background-color: #e7812f;
}

.gnav-iconMenu__item--beauty::before {
  background-position: -74px -73px;
  background-color: #db7093;
}

.gnav-iconMenu__item--cooking::before {
  background-position: -48px -22px;
  background-color: #f4575e;
}

.gnav-iconMenu__item--design::before {
  background-position: 2.5px -49px;
  background-color: #3da7c1;
}

.gnav-iconMenu__item--handwriting::before {
  background-position: -48px -48px;
  background-color: #69543f;
}

.gnav-iconMenu__item--pc::before {
  background-position: -98px 3px;
  background-color: #2e4b75;
}

.gnav-iconMenu__item--psycho::before {
  background-position: -98px -24px;
  background-color: #b282c0;
}

.gnav-iconMenu__item--language::before {
  background-position: 2px -74px;
  background-color: #c8260d;
}

.gnav-iconMenu__item--servant::before {
  background-position: -99px -48px;
  background-color: #e7812f;
}

.gnav-iconMenu__item--construct::before {
  background-position: -22.5px -23px;
  background-color: #d4a231;
}

.gnav-iconMenu__item--travel::before {
  background-position: -99px -73px;
  background-color: #3da7c1;
}

.gnav-iconMenu__item--education::before {
  background-position: -24px -49px;
  background-color: #717d31;
}

.gnav-iconMenu__item--craft::before {
  background-position: -73px -23px;
  background-color: #e79b8d;
}

.gnav-iconMenu__item--art::before {
  background-position: -23px 2px;
  background-color: #b282c0;
}

.gnav-iconMenu__item--life::before {
  background-position: -23px -73px;
  background-color: #717d31;
}

.gnav-iconMenu__item--igo::before {
  background-position: -72.3px -47px;
  background-color: #d4a231;
}

.gnav-iconMenu__text {
  font-size: 14px;
}

.gnav-iconMenu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #444;
  font-size: 14px;
}

.gnav-iconMenu-button:not(.is-open) {
  border-top: 1px solid #ccc;
}

.gnav-iconMenu-button::after {
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg) translate(0, -3px);
  transform-origin: 50% 0%;
  border: 1px solid #444;
  border-top: none;
  border-left: none;
  content: "";
  transition: transform 0.3s ease;
}

.gnav-iconMenu-button.is-open::after {
  transform: rotate(225deg) translate(-2px, -7px);
}

.gnav-iconMenu-button.is-open__close {
  display: none;
}

.gnav-iconMenu-button.is-open:not(.is-open) .js-gnav-iconMenu-button__open {
  display: none;
}

.gnav-iconMenu-button__text {
  display: block;
  width: 90px;
}

.js-gnav-iconMenu {
  overflow: hidden;
}

.js-gnav-iconMenu:not(.is-open) {
  height: 250px;
}

.js-gnav-iconMenu > li:nth-child(even) .gnav-courseList {
  margin-left: -169px;
}

.js-gnav-courseList {
  z-index: 1;
}

.js-gnav-courseList__target {
  background: #fff;
}

.js-gnav-courseList.is-open {
  z-index: 2;
}

.js-gnav-courseList.is-open .js-gnav-courseList__target {
  background: #f2f0eb;
}

.js-gnav-courseList.is-open .js-gnav-courseList__contents {
  display: grid;
}

.gnav-courseList {
  display: none;
  grid-template-columns: 169px 168px;
  grid-auto-rows: 50px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #ccc;
  background: #fcfbf9;
}

.gnav-courseList__item {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.5076923077;
}

.gnav-courseList__item:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.gnav-courseList__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.gnav-courseList__item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.js-gnav-iconMenu-button.is-open::after {
  transform: rotate(225deg) translate(-4px, -7px);
}

.js-gnav-iconMenu-button.is-open .js-gnav-iconMenu-button__close {
  display: none;
}

.js-gnav-iconMenu-button:not(.is-open) .js-gnav-iconMenu-button__open {
  display: none;
}

.gnav-inquiry {
  display: grid;
  position: relative;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(3, 104px);
  grid-template-areas: ". . . " "faq faq faq";
  -moz-column-gap: 2px;
  column-gap: 2px;
  margin: 10px 12px;
  border-radius: 5px;
  background: #fff;
}

.gnav-inquiry__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 5px;
}

.gnav-inquiry__item:not(:last-child) {
  border-right: 1px solid #eee;
}

.gnav-inquiry__text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
}

.gnav-innerFoot {
  margin-bottom: 80px;
  padding: 15px 12px 80px;
}

.gnav-innerFoot__link {
  display: block;
  position: relative;
  padding-left: 13px;
  font-size: 13px;
}

.gnav-innerFoot__link:not(:first-child) {
  margin-top: 12px;
}

.gnav-innerFoot__link::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  transform: rotate(45deg);
  border: 1px solid #444;
  border-bottom: none;
  border-left: none;
  content: "";
}

.search {
  display: block;
}

.search__wrapper {
  padding: 1rem;
  background: #fff;
}

.search__form {
  position: relative;
  overflow: hidden;
}

.search__text {
  display: block;
  width: 100%;
  margin-left: 1px;
  padding: 1.2rem 3.2rem 1.2rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  font-size: 1.6rem;
}

.search__text::-moz-placeholder {
  color: #ccc;
}

.search__text::placeholder {
  color: #ccc;
}

.search__btn {
  -webkit-tap-highlight-color: transparent;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 1px;
  right: -1px;
  width: 42px;
  height: 46px;
  padding: 0;
  transform: translateY(-1px);
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: 0;
  background: #999;
  background-color: transparent;
  color: #fff;
  font-size: 1.1rem;
  line-height: 46px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

.is-portrait {
  display: block;
}

.is-landscape {
  display: none;
}

.u-strong {
  color: var(--accent-color);
  font-weight: 700;
}

br.is-sp {
  display: inline;
}

.main {
  margin-top: 48px;
}
:root {
  --typo: #444;
  --primary: #d52b1d;
  --inverse: #fff;
  --light: #666;
  --bg01: #f7f7f7;
  --bg02: #f4f0ea;
  --bg03: #e0d1b9;
  --border: #6e6e6e;
  --spacing: 0.03em;
}

.contents {
  color: var(--typo);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
.contents * {
  letter-spacing: var(--spacing);
}

.inner {
  padding-right: 9.3333333333vw;
  padding-left: 9.3333333333vw;
}

.text-link[href^="mailto:"] {
  color: var(--primary);
  font-weight: 700;
}

.u-bold-text {
  font-weight: 700;
}

.u-mb1em {
  margin-bottom: 1em;
}

.notes-list__item {
  position: relative;
  padding-left: 1em;
}
.notes-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.dot-list__item {
  position: relative;
  padding-left: 1em;
}
.dot-list__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.terms-list__content + .terms-list__title {
  margin-top: 1em;
}
.terms-list__content ul:not([class]),
.terms-list__content p:not([class]) {
  margin-bottom: 1em;
}

.btn-list {
  max-width: 304px;
  margin-inline: auto;
}
.btn-list__item:not(:last-child) {
  margin-bottom: 8px;
}

.btn-unit {
  max-width: 304px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: var(--primary);
}
.btn-unit__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  background: url(../images/icon_link_btn.svg) no-repeat right 15px center;
  color: var(--inverse);
  font-weight: 700;
  text-align: center;
}

.notes-box {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 18px 22px;
  background: var(--bg01);
  color: var(--light);
  font-size: 11px;
  line-height: 1.5454545455;
}

.num-text {
  font-family: "Oswald", sans-serif;
}

.campaign-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--primary);
  font-weight: 900;
  text-align: center;
}
.campaign-title__shoulder {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-right: 14px;
  padding-left: 23px;
  background: url(../images/bg_sparkling.svg) no-repeat left bottom, url(../images/bg_sparkling.svg) no-repeat right top;
  font-size: 17px;
  line-height: 1.5555555556;
}
.campaign-title__text {
  --spacing: 0.01em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 7.2vw;
  line-height: 1.4814814815;
}

.campaign-deadline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.campaign-deadline__text {
  display: block;
  padding-bottom: 3px;
  font-weight: 900;
  line-height: 1.4285714286;
}
.campaign-deadline__date {
  display: flex;
  align-items: center;
  padding: 0 4px 0 3px;
  color: var(--primary);
  font-weight: 700;
  font-size: 21px;
  line-height: 31px;
}
.campaign-deadline__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--inverse);
  font-size: 15px;
  line-height: 22px;
  text-align: center;
}

.mv {
  display: flex;
  flex-direction: column;
}
.mv__img {
  display: block;
}
.mv__text {
  flex: 1;
  padding: 18px 5.8666666667vw 22px;
  background: url(../images/bg_sp.svg) repeat center center;
}
.mv__title {
  margin-bottom: 9px;
}
.mv__campaign {
  display: block;
  max-width: 331px;
  margin-inline: auto;
}

.campaign .btn-unit {
  width: 100%;
  max-width: 304px;
  height: 56px;
}
.campaign .btn-unit__link {
  font-size: 13px;
  line-height: 1.4615384615;
}
.campaign__lead-block {
  box-sizing: content-box;
  max-width: 925px;
  margin-inline: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
.campaign__lead-title {
  padding: 7px;
  background: var(--primary);
}
.campaign__lead-title-text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 26px;
  background: url(../images/icon_present.svg) no-repeat left center;
  color: var(--inverse);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.7142857143;
}
.campaign__lead {
  position: relative;
}
.campaign__lead-img {
  position: relative;
}
.campaign__lead-text {
  --spacing: 0.09em;
  position: relative;
  top: -14px;
  left: 0;
  margin-bottom: -14px;
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}
.campaign__target {
  margin-top: 14px;
  line-height: 1.5714285714;
  text-align: center;
}
.campaign__goodnews {
  margin-top: 15px;
  text-align: center;
}
.campaign__goodnews-header {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6875;
}
.campaign__goodnews-header strong {
  display: inline-block;
  margin: 0 3px;
  padding: 0 17px;
  background: url(../images/bg_goodnews_l.svg) no-repeat left center, url(../images/bg_goodnews_r.svg) no-repeat right center;
}
.campaign__goodnews-main {
  margin-top: 15px;
  overflow: hidden;
  line-height: 1.4285714286;
}
.campaign__goodnews-main-strong {
  display: block;
  margin: 1px -7px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.campaign__goodnews-main-strong strong {
  font-size: 22px;
}
.campaign__goodnews-footer {
  margin-top: 18px;
  margin-inline: -5px;
  font-size: 13px;
  line-height: 1.6923076923;
}
.campaign__goodnews-footer strong {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4666666667;
}
.campaign__btn {
  margin-top: 25px;
}
.campaign__deadline {
  max-width: 305px;
  margin: 25px auto 0;
  padding: 20px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-align: center;
}
.campaign__deadline-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5333333333;
}
.campaign__deadline-title::before, .campaign__deadline-title::after {
  display: block;
  position: absolute;
  bottom: 3px;
  width: 2px;
  height: 16px;
  background: var(--primary);
  content: "";
}
.campaign__deadline-title::before {
  left: 5px;
  transform: rotate(-30deg);
}
.campaign__deadline-title::after {
  right: 5px;
  transform: rotate(30deg);
}
.campaign__deadline-content .campaign-deadline {
  font-size: 16px;
}
.campaign__deadline-content .campaign-deadline__date {
  font-size: 23px;
}
.campaign__deadline-content .campaign-deadline__day {
  width: 25px;
  height: 25px;
  font-size: 17px;
  line-height: 25px;
}
.campaign__detail-block {
  padding: 20px 0 40px;
  background: url(../images/bg_sp.svg) repeat center top;
}
.campaign__detail-inner {
  box-sizing: content-box;
  max-width: 925px;
  margin-inline: auto;
}
.campaign__title {
  position: relative;
  margin-bottom: 23px;
  padding-top: 37px;
}
.campaign__title-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 16.8vw;
  height: 16.8vw;
}
.campaign__title-shoulder {
  position: relative;
  margin-left: 45px;
  font-size: 16px;
  line-height: 1.625;
}
.campaign__title-text {
  position: relative;
  margin-inline: -5px;
  font-size: 24px;
  line-height: 1.48;
}

.campaign-details__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 30px;
  margin: 0 auto 12px;
  border-radius: 15px;
  background: var(--bg03);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.campaign-details__content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.5714285714;
}
.campaign-details__content--center {
  text-align: center;
}

.campaign-terms__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: url(../images/icon_plus.svg) no-repeat right 20px center rgba(255, 255, 255, 0.9);
  background-size: 12px auto;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
}
.campaign-terms__title.is-opened {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: url(../images/icon_minus.svg);
}
.campaign-terms__content {
  display: none;
  padding: 15px;
  border: 1px solid var(--primary);
  border-top: none;
  background: var(--inverse);
}
.course .btn-list__item {
  width: auto;
  margin-inline: 0;
}
.course .btn-unit {
  height: 60px;
}
.course .btn-unit__link {
  font-size: 15px;
  line-height: 1.6;
}
.course__mv {
  position: relative;
  border-top: 5px solid var(--primary);
}
.course__mv-badge {
  display: flex;
  position: absolute;
  top: -15px;
  left: 6.9333333333vw;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--inverse);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2857142857;
  text-align: center;
}
.course__inner {
  box-sizing: content-box;
  max-width: 925px;
  margin-inline: auto;
}
.course__title {
  --spacing: 0.05em;
  position: relative;
  top: -12px;
  left: 0;
  margin-bottom: -12px;
  color: var(--primary);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.course__lead {
  margin-top: 14px;
  line-height: 1.7142857143;
}
.course__btn {
  margin-top: 24px;
}
.course__voice {
  margin-top: 40px;
}
.course__feature {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--primary);
}
.course1433 .course__feature {
  margin-top: 55px;
}
.course__beforeafter {
  margin-top: 30px;
}

.course-voice {
  padding-top: 30px;
  border-top: 1px solid var(--primary);
}
.course-voice__title {
  margin-bottom: 25px;
  color: var(--primary);
  text-align: center;
}
.course-voice__shoulder {
  display: block;
  font-weight: 700;
  line-height: 1.2857142857;
}
.course-voice__title-text {
  display: block;
  font-weight: 900;
  font-size: 22px;
}
.course-voice__unit {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin-bottom: 20px;
}
.course-voice__unit--inverse {
  flex-direction: row-reverse;
}
.course-voice__unit-img {
  position: relative;
  flex-basis: 61.3333333333vw;
  max-width: 230px;
}
.course-voice__unit-comment-group {
  position: relative;
  flex-basis: 53.8666666667vw;
  align-self: flex-start;
  max-width: 201px;
  margin-left: -33.0666666667vw;
  padding-top: 12vw;
}
.course-voice__unit-comment {
  --border: #a8a8a8;
  position: relative;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--inverse);
}
.course-voice__unit-comment::after {
  display: block;
  position: absolute;
  top: -14px;
  left: 5px;
  width: 22.71px;
  height: 23.251px;
  background: url(../images/icon_comment.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.course-voice__unit-comment + .course-voice__unit-comment {
  margin-top: 8px;
}
.course-voice__unit--inverse .course-voice__unit-comment-group {
  margin-right: -33.0666666667vw;
  margin-left: 0;
}
.course-voice__unit-comment-inner {
  overflow: hidden;
}
.course-voice__unit-text {
  margin-top: -1px;
  padding-bottom: 1px;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #444 1px, transparent 1px);
  background-size: 3px 100%, 100% 1.75em;
  font-size: 12px;
  line-height: 1.75;
}
.course-voice__unit-student {
  margin-top: 4px;
  color: var(--light);
  font-size: 11px;
  line-height: 1.6363636364;
}

.course-feature__title {
  margin-bottom: 19px;
  color: var(--primary);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2727272727;
  text-align: center;
}
.course-feature__title .num-text {
  --spacing: 0.05em;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.46875;
}
.course-feature__img {
  max-width: 460px;
  margin: 0 auto 15px;
}

.course-step {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  max-width: 360px;
  margin-inline: auto;
}
.course-step__unit {
  padding: 8px 10px 24px;
  border-radius: 5px;
  background: var(--bg02);
}
.course-step__unit--04 {
  padding-right: 8px;
}
.course-step__unit-title {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 43px;
  margin-bottom: 11px;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8666666667;
  font-family: "Oswald", sans-serif;
}
.course-step__unit-title-num {
  -spacing: 0.05em;
  margin-left: 4px;
  font-size: 20px;
  line-height: 1.4;
}
.course-step__unit-text {
  padding: 0 14px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.course-step__unit--04 .course-step__unit-text {
  padding-right: 0;
  padding-left: 6px;
}

.course-beforeafter__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 13px;
  padding: 0 14px 0 21px;
  background: url(../images/bg_sparkling_double_l.svg) no-repeat left center, url(../images/bg_sparkling_double_r.svg) no-repeat right center;
  color: var(--primary);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.4857142857;
}
.course-beforeafter__img01 {
  max-width: 460px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 5px;
}
.course-beforeafter__img02 {
  display: block;
  max-width: 460px;
  margin-inline: auto;
}
.course-beforeafter__lead {
  margin-bottom: 19px;
  line-height: 1.7142857143;
}

.course-tech {
  max-width: 460px;
  margin-inline: auto;
}
.course-tech__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.course-tech__list {
  line-height: 1.5;
}
.course-tech__item {
  display: flex;
  align-items: flex-start;
}
.course-tech__item:not(:last-child) {
  margin-bottom: 8px;
}
.course-tech__item-title {
  --border: #a8a8a8;
  flex-basis: 95px;
  padding: 7px;
  border: 1px solid var(--border);
  font-weight: 700;
  line-height: 1.2857142857;
  text-align: center;
}
.course-tech__item-data {
  flex: 1;
  padding: 7px 0 0 15px;
}

.course1313 {
  padding-top: 45px;
}

.course1433 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.campaign-appeal {
  padding: 21px 0 29.5px;
  background: url(../images/bg_sp.svg) repeat center center;
}
.campaign-appeal .btn-unit {
  height: 72px;
}
.campaign-appeal .btn-unit__link {
  font-size: 15px;
  line-height: 1.6;
}
.campaign-appeal__inner {
  margin-inline: auto;
}
.campaign-appeal__deadline {
  padding-right: 35px;
}
.campaign-appeal__box {
  position: relative;
  max-width: 305px;
  margin: 14px auto 15px;
  padding: 16px 0 19px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: transparent;
}
.campaign-appeal__badge {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 19.4666666667vw;
  height: 19.4666666667vw;
}
.campaign-appeal__badge img {
  width: 100%;
}
.campaign-appeal__text {
  position: relative;
  max-width: 264px;
  margin-inline: auto;
}

.inquiry {
  padding: 35px 0;
}
.inquiry__title {
  margin-bottom: 19px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.inquiry__contact {
  line-height: 1.6428571429;
  text-align: center;
}
.inquiry__mail {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.inquiry__notes {
  margin-top: 19px;
}
@media screen and (min-width: 375px) {
  html {
    font-size: 67.5%;
  }
  body {
    font-size: 1.4rem;
  }
  .search__btn {
    width: 48px;
    height: 51px;
    line-height: 49px;
  }
  .inner {
    padding-right: 35px;
    padding-left: 35px;
  }
  .campaign-title__text {
    --spacing: 0.02em;
    font-size: 27px;
  }
  .mv__text {
    padding-right: 22px;
    padding-left: 22px;
  }
  .campaign__title-badge {
    width: 63px;
    height: 63px;
  }
  .campaign__title-text {
    font-size: 25px;
  }
  .campaign-appeal__badge {
    width: 73px;
    height: 73px;
  }
}
@media screen and (min-width: 414px) {
  .header__nav {
    width: calc(50px - 2rem);
  }
  .campaign-title__text {
    --spacing: 0.03em;
  }
  .campaign__goodnews-main-strong {
    margin-inline: 0;
  }
  .campaign__goodnews-footer {
    margin-inline: 0;
  }
  .campaign__title-text {
    margin-inline: 0;
  }
  .course-voice__unit {
    max-width: 500px;
    margin-bottom: 30px;
  }
  .course-voice__unit--inverse {
    margin-left: auto;
  }
  .course-voice__unit-img {
    max-width: 345px;
  }
}
@media screen and (min-width: 568px) {
  html {
    font-size: 72.5%;
  }
  .search__btn {
    width: 53px;
    height: 53px;
    line-height: 53px;
  }
  .is-portrait {
    display: none;
  }
  .is-landscape {
    display: block;
  }
  .mv {
    flex-direction: row;
  }
  .mv__img01, .mv__img02 {
    flex-basis: 21.1267605634%;
  }
  .mv__img {
    height: 100%;
    overflow: hidden;
  }
  .mv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right 50%;
    object-position: right 50%;
  }
  .mv__text {
    padding: 2.6408450704vw 1.7605633803vw;
  }
  .mv__title-text {
    --spacing: 0;
    font-size: 25px;
  }
  .campaign__lead-block {
    padding-top: clamp(40px, 5.2083333333vw, 75px);
    padding-bottom: clamp(40px, 5.2083333333vw, 75px);
  }
  .campaign__lead-title {
    padding-top: 11.5px;
    padding-bottom: 14.5px;
  }
  .campaign__lead-title-text {
    min-height: 36px;
    padding-left: 49px;
    background-size: 36px auto;
    font-size: clamp(16px, 3.1351351351vw, 29px);
    line-height: 2;
  }
  .campaign__lead-text {
    top: clamp(-1.6216216216vw, -1.6216216216vw, 15px);
    margin-bottom: clamp(-1.6216216216vw, -1.6216216216vw, 15px);
    font-size: clamp(16px, 4.3243243243vw, 40px);
    line-height: 1.2;
  }
  .campaign__target {
    margin-top: clamp(3.3513513514vw, 3.3513513514vw, 31px);
    font-size: clamp(15px, 1.9459459459vw, 18px);
    line-height: 1.7777777778;
  }
  .campaign__goodnews {
    margin-top: clamp(2.7027027027vw, 2.7027027027vw, 25px);
  }
  .campaign__goodnews-header {
    font-size: clamp(17px, 2.5945945946vw, 24px);
  }
  .campaign__goodnews-header strong {
    padding: 0 26px;
    background-size: 15px auto, 15px auto;
  }
  .campaign__goodnews-main {
    font-size: clamp(15px, 1.9459459459vw, 18px);
    line-height: 1.4210526316;
  }
  .campaign__goodnews-main-strong {
    margin-inline: 0;
    font-size: clamp(19px, 3.2432432432vw, 30px);
    line-height: 1.3;
  }
  .campaign__goodnews-main-strong strong {
    font-size: clamp(23px, 3.6756756757vw, 34px);
  }
  .campaign__goodnews-footer {
    margin-top: clamp(2.7027027027vw, 2.7027027027vw, 25px);
    font-size: clamp(14px, 1.9459459459vw, 18px);
    line-height: 1.7777777778;
  }
  .campaign__goodnews-footer strong {
    font-size: clamp(14px, 1.9459459459vw, 18px);
    line-height: 1.7777777778;
  }
  .campaign__btn {
    margin-top: clamp(25px, 3.4722222222vw, 50px);
  }
  .campaign__deadline {
    margin-top: clamp(25px, 3.4722222222vw, 50px);
    padding: clamp(20px, 2.0833333333vw, 30px) clamp(10px, 1.3888888889vw, 20px);
  }
  .campaign-appeal {
    padding-top: clamp(25px, 2.7777777778vw, 40px);
    padding-bottom: clamp(30px, 4.1666666667vw, 60px);
    background-image: url(../images/bg_pc.svg);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 82.5%;
  }
  .header__inner {
    height: 68px;
    padding: 14px 2rem 14px 26px;
  }
  .header__logo {
    width: 124px;
  }
  .header__nav-pc {
    display: flex;
    align-items: center;
  }
  .nav-pc__link:active,
  .nav-pc__link:hover {
    text-decoration: underline;
  }
  .header__nav {
    display: none;
  }
  .gnav__ham {
    top: 1.8rem;
  }
  .gnav__part {
    width: 23px;
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
  br.is-sp {
    display: none;
  }
  br.is-pc {
    display: inline;
  }
  .main {
    margin-top: 70px;
  }
  .contents {
    font-size: 18px;
  }
  .btn-list {
    display: flex;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
  }
  .btn-list__item {
    width: calc(50% - 10px);
    min-width: 320px;
    max-width: 350px;
    margin: 0 5px 0;
  }
  .btn-list__item:not(:last-child) {
    margin-bottom: 0;
  }
  .btn-unit {
    min-width: 320px;
    max-width: 350px;
  }
  .notes-box {
    font-size: 15px;
  }
  .campaign-title__shoulder {
    padding-right: 20px;
    padding-left: 30px;
    background-size: 20px auto;
    font-size: clamp(17px, 3.027027027vw, 28px);
    line-height: 1.4642857143;
  }
  .campaign-title__text {
    font-size: clamp(27px, 5.4054054054vw, 50px);
    line-height: 1.48;
  }
  .campaign-deadline__text {
    padding-bottom: 0;
    line-height: 1;
  }
  .campaign-deadline__date {
    font-size: 32px;
    line-height: 32px;
  }
  .campaign-deadline__day {
    align-self: flex-end;
    width: 30px;
    height: 30px;
    padding-bottom: 2px;
    font-size: 20px;
    line-height: 1;
  }
  .mv {
    max-height: 430px;
  }
  .mv__img01, .mv__img02 {
    flex-basis: 21.875%;
  }
  .mv__text {
    padding: 3.2638888889vw 1.7605633803vw 2.8472222222vw;
    background-image: url(../images/bg_pc.svg);
  }
  .mv__title {
    margin-bottom: 16px;
  }
  .mv__campaign {
    max-width: 615px;
  }
  .campaign .btn-unit {
    height: 65px;
  }
  .campaign .btn-unit__link {
    font-size: 18px;
  }
  .campaign__deadline {
    max-width: 500px;
  }
  .campaign__deadline-title {
    font-size: 22px;
  }
  .campaign__deadline-title::before, .campaign__deadline-title::after {
    height: 22px;
  }
  .campaign__deadline-title::before {
    left: 2px;
  }
  .campaign__deadline-title::after {
    right: 2px;
  }
  .campaign__deadline-content .campaign-deadline {
    font-size: 20px;
  }
  .campaign__deadline-content .campaign-deadline__date {
    font-size: 32px;
  }
  .campaign__deadline-content .campaign-deadline__day {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1;
  }
  .campaign__detail-block {
    padding-top: clamp(20px, 4.3243243243vw, 40px);
    padding-bottom: clamp(40px, 7.5675675676vw, 70px);
    background-image: url(../images/bg_pc.svg);
  }
  .campaign__title {
    margin-bottom: 2.5rem;
  }
  .campaign__title-badge {
    display: none;
  }
  .campaign__title-shoulder {
    margin-inline: auto;
  }
  .campaign__title-shoulder::before {
    display: block;
    position: absolute;
    top: -32px;
    left: -45px;
    width: 63px;
    height: 63px;
    background: url(../images/badge_web_limited01.svg) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .campaign-details__title {
    margin-bottom: clamp(13px, 2.5945945946vw, 24px);
    font-size: clamp(16px, 2.1621621622vw, 20px);
  }
  .campaign-details__content {
    margin-bottom: clamp(25px, 4.3243243243vw, 40px);
  }
  .campaign-details__content {
    font-size: clamp(15px, 1.9459459459vw, 18px);
  }
  .campaign-terms__title {
    font-size: 22px;
  }
  .campaign-terms__content {
    padding: clamp(15px, 2.7027027027vw, 25px);
  }
  .course {
    box-sizing: content-box;
    max-width: 925px;
    margin-inline: auto;
  }
  .course .btn-unit__link {
    font-size: 18px;
  }
  .course__mv-badge {
    top: -62px;
    width: 105px;
    height: 105px;
    font-size: 27px;
    line-height: 1.2962962963;
  }
  .course__inner {
    padding-right: 0;
    padding-left: 0;
  }
  .course__title {
    top: -23px;
    margin-bottom: -23px;
    font-size: clamp(25px, 5.0810810811vw, 47px);
    line-height: 1.3617021277;
  }
  .course__lead {
    max-width: 702px;
    margin-top: 40px;
    margin-inline: auto;
    font-size: 20px;
    line-height: 1.8;
  }
  .course__voice {
    margin-top: clamp(40px, 6.4864864865vw, 60px);
  }
  .course-voice {
    padding-top: clamp(30px, 5.4054054054vw, 50px);
    padding-right: 35px;
    padding-left: 35px;
  }
  .course-voice__title {
    margin-bottom: clamp(25px, 4.3243243243vw, 40px);
  }
  .course-voice__title-text {
    font-size: clamp(22px, 3.2432432432vw, 30px);
  }
  .course-voice__grid {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .course-voice__unit {
    flex-direction: column;
    justify-content: flex-start;
    max-width: clamp(47.5675675676vw, 47.5675675676vw, 440px);
  }
  .course-voice__unit--inverse {
    flex-direction: column;
    margin-left: 0;
  }
  .course-voice__unit-img {
    flex-basis: auto;
    max-width: 460px;
  }
  .course-voice__unit-comment-group {
    flex-basis: auto;
    align-self: flex-start;
    max-width: calc(70% + 25px);
    margin-top: clamp(-50px, -5.4054054054vw, -50px);
    margin-left: -20px;
    padding-top: 0;
  }
  .course-voice__unit-comment::after {
    top: -20px;
    width: 29.523px;
    height: 30.2263px;
  }
  .course-voice__unit-comment + .course-voice__unit-comment {
    margin-top: 15px;
  }
  .course-voice__unit--inverse .course-voice__unit-comment-group {
    align-self: flex-end;
    margin-right: -25px;
  }
  .course-voice__unit-text {
    font-size: 16px;
  }
  .course-voice__unit-student {
    font-size: 14px;
  }
  .course-feature__title {
    margin-bottom: clamp(25px, 4.3243243243vw, 40px);
    font-size: clamp(22px, 3.2432432432vw, 30px);
  }
  .course-feature__title .num-text {
    font-size: clamp(32px, 4.3243243243vw, 40px);
  }
  .course-feature__img {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .course-step {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: none;
    margin-inline: 35px;
  }
  .course-step__unit-title {
    font-size: clamp(19px, 2.1621621622vw, 20px);
  }
  .course-step__unit-title-num {
    font-size: clamp(22px, 2.7027027027vw, 25px);
  }
  .course-beforeafter__title {
    margin-bottom: clamp(15px, 2.7027027027vw, 25px);
    font-size: clamp(22px, 2.3783783784vw, 22px);
  }
  .course-beforeafter__img01 {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .course-beforeafter__img02 {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-right: 35px;
    padding-left: 35px;
  }
  .course-beforeafter__lead {
    margin-bottom: clamp(20px, 3.7837837838vw, 35px);
    padding-right: 35px;
    padding-left: 35px;
  }
  .course-tech {
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
  }
  .course-tech__title {
    font-size: clamp(20px, 2.7027027027vw, 25px);
  }
  .course1313 {
    padding-top: clamp(45px, 14.3783783784vw, 133px);
  }
  .course1433 {
    padding-top: clamp(40px, 12.972972973vw, 120px);
    padding-bottom: clamp(40px, 8.6486486486vw, 80px);
  }
  .campaign-appeal .btn-unit {
    height: 90px;
  }
  .campaign-appeal .btn-unit__link {
    font-size: 20px;
  }
  .campaign-appeal__deadline {
    padding-right: 0;
  }
  .campaign-appeal__box {
    max-width: 500px;
    margin-top: clamp(15px, 2.0833333333vw, 30px);
    margin-bottom: clamp(15px, 2.0833333333vw, 30px);
    padding: clamp(20px, 2.0833333333vw, 30px);
  }
  .campaign-appeal__badge {
    top: -53px;
    right: -43px;
    width: 90px;
    height: 90px;
  }
  .campaign-appeal__text {
    max-width: 530px;
  }
  .inquiry {
    padding-top: clamp(40px, 4.8611111111vw, 70px);
  }
  .inquiry__title {
    margin-bottom: 1.5rem;
    font-size: 26px;
  }
  .inquiry__mail {
    margin-top: 1rem;
    font-size: 17px;
  }
  .inquiry__notes {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .mv__img01, .mv__img02 {
    flex-basis: 315px;
  }
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/* finish */
.finished__msg {
  color: #e50012;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .finished__msg {
    font-size: 24px;
  }
}

.campaign__lead-block {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .campaign-appeal__box {
    margin-top: 34px;
  }
}

.u-mt-1 {
  margin-top: -10px;
}
.u-mt1 {
  margin-top: 10px;
}
.u-mt2 {
  margin-top: 20px;
}
.u-mb2 {
  margin-bottom: 20px;
}