@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video, picture, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-weight: inherit;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 820px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #000;
  margin: 1em 0;
  padding: 0;
}

source,
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  vertical-align: middle;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 819px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=button], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

input[type=button],
button {
  cursor: pointer;
  border: none;
  padding: 0;
  width: auto;
}

/* 02_base
================================================ */
html {
  overflow: auto;
}

body {
  position: relative;
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  color: #1F1F1F;
  background: #F5F5F5;
  background: #f3f8f8;
  background: #f3f8f8;
}
body::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40vw;
  height: 100vw;
  height: 100%;
  background: #D7E8EA;
}
@media all and (min-width: 820px) {
  body {
    min-width: 1030px;
    min-width: auto;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  body::before {
    max-width: 350px;
    width: 22vw;
    height: 100vw;
    height: 100%;
  }
}

body {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  vertical-align: top;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a img,
a svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover img,
a:hover svg {
  opacity: 0.6;
}

.l-wrapper {
  position: relative;
}

@media all and (max-width: 819px) {
  .l-container {
    padding-top: 115px;
    padding-bottom: 0;
    max-width: 100vw;
    overflow: hidden;
  }
}
@media all and (min-width: 820px) {
  .l-container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
a.under {
  position: relative;
}
a.under::after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 1px;
  border-bottom: 1px solid #1F1F1F;
}
a.under:hover {
  opacity: 0.4;
}

/* pc <--> sp
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 820px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 819px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 820px) {
  .u-view-sp {
    display: none !important;
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 820px) {
  a.u-alpha {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 820px) {
  a.u-zoom .u-zoom__img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 819px) {
  .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 820px) {
  .u-inner {
    width: 1542px;
    width: 1180px;
    width: 1286px;
    max-width: 100%;
    margin: auto;
  }
}

/* .l-header
================================================ */
.l-header {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header .logo-white {
  display: none;
}
@media all and (max-width: 819px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    min-width: 320px;
    height: 80px;
  }
  .l-header__wrap {
    padding: 15px 20px 5px;
  }
  .l-header__logo {
    position: relative;
    z-index: 10;
    width: calc(100% - 50px);
  }
  .l-header__logo img {
    width: 99px;
  }
  .l-header .l-header__wrap {
    position: relative;
    z-index: 20;
  }
}
@media all and (min-width: 820px) {
  .l-header {
    padding-top: 10px;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .l-header__logo {
    padding-left: 60px;
  }
  .l-header__logo img {
    width: 132px;
    min-width: 132px;
  }
  .l-header__wrap {
    position: relative;
    margin: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: block;
}
.l-nav-btn__line {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  content: "";
  background: #38B6FF;
  z-index: 999999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 5px;
}
.l-nav-btn__line:nth-child(2) {
  top: 12px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  background: #fff;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  top: 9px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

/* .l-nav

================================================ */
.l-nav {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (max-width: 819px) {
  .l-nav {
    position: absolute;
    top: 70px;
    left: 100vw;
    width: 100%;
    min-width: 320px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    font-size: 1.6rem;
    overflow: auto;
    z-index: 5;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    left: 0;
  }
  .l-nav__wrap {
    padding-bottom: 30px;
    width: 100%;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  position: relative;
}
.l-nav-list a {
  position: relative;
  display: block;
  line-height: 1.3333333333;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: #1F1F1F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (min-width: 820px) {
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 13px;
    height: 91px;
    gap: 2px 28px;
  }
  .l-nav-list a {
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
  }
  .l-nav-list a:hover {
    color: #999;
  }
}

@media (min-width: 820px) and (max-width: 1360px) {
  .l-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 2px 15px;
  }
  .l-header__logo {
    padding-left: 30px;
  }
  .l-nav-list02 .btn01 a,
  .l-nav-list02 .btn02 a {
    width: 120px;
    height: 36px;
  }
}
.l-nav__btn-link {
  width: 295px;
  height: 62px;
  text-align: center;
}
@media all and (max-width: 819px) {
  .l-nav__btn + .l-nav__btn {
    margin-top: 20px;
  }
}
@media all and (min-width: 820px) {
  .l-nav__btn {
    margin-left: 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 4px;
  }
  .l-nav__btn-link {
    font-size: 1.4rem;
    width: 144px;
    height: 41px;
  }
}

@media all and (max-width: 819px) {
  .l-nav-list__item {
    opacity: 0;
  }
  .l-nav-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    background: #38B6FF;
    gap: 20px;
    font-weight: 700;
    padding: 25px 15px;
  }
  .l-nav-list__item a .num,
  .l-nav-list__item a .text .en {
    font-family: "Roboto Condensed";
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .l-nav-list__item a .num {
    font-size: 14px;
  }
  .l-nav-list__item a .text span {
    display: block;
    line-height: 1;
  }
  .l-nav-list__item a .text .en {
    margin-bottom: 4px;
    font-size: 11px;
  }
  .l-nav-list__item a .text .jp {
    font-size: 18px;
  }
  .l-nav-list02 {
    padding: 25px 15px 30px;
    background: #38B6FF;
  }
  .l-nav-list02 a {
    padding: 0px;
  }
}
.l-nav-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media all and (max-width: 819px) {
  body.is-open .l-header {
    background: #38B6FF;
  }
  body.is-open .l-header .logo-normal {
    display: none;
  }
  body.is-open .l-header .logo-white {
    display: block;
  }
  body.is-open .l-nav-list__item {
    -webkit-animation-name: slidein;
            animation-name: slidein;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  body.is-open .item01 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  body.is-open .item02 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  body.is-open .item03 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  body.is-open .item04 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  body.is-open .item05 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  body.is-open .item06 {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  body.is-open .item07 {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}

@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes slidein {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
/*
<li class="" itemprop="name"><a href="#issues">
						<span class="num">01</span>
						<div class="text">
							<span class="en">Awareness of issues</span>
							<span class="jp">当スクールが持つ課題意識</span>
						</div>
						</a></li>
*/
/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 10;
}
@media all and (min-width: 820px) {
  .l-nav-overlay {
    display: none !important;
  }
}

.l-footer {
  position: relative;
  background: #f3f8f8;
  padding-bottom: 100px;
}
@media all and (min-width: 820px) {
  .l-footer {
    padding-bottom: 150px;
  }
}

.l-footer__cr {
  color: #38B6FF;
  text-align: center;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pagetop {
  position: fixed;
  bottom: 80px;
  right: 10px;
}
@media all and (min-width: 820px) {
  .pagetop {
    padding-bottom: 120px;
  }
}

.scroll-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.bbs {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 130px;
  line-height: 130px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}

.bbs ul {
  -webkit-animation: flowing 20s linear infinite;
          animation: flowing 20s linear infinite;
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-size: 15rem;
  height: 130px;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  margin: 0;
  padding: 0;
}

.bbs ul li {
  display: inline-block;
  padding-right: 0.5em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}

.bbs.show ul li {
  color: #38B6FF;
  -webkit-text-stroke: 0px #fff;
  text-stroke: 0px #fff;
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media all and (max-width: 819px) {
  .bbs {
    height: 65px;
    line-height: 65px;
  }
  .bbs ul {
    font-size: 7.5rem;
    height: 65px;
  }
}
.c-btn01 a,
.c-btn02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 101px;
  height: 27px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 22px;
}

@media all and (min-width: 820px) {
  .c-btn01 a, .c-btn02 a {
    width: 140px;
    height: 43px;
    font-size: 1.4rem;
    border-radius: 22px;
  }
}
.c-btn01 a {
  color: #1F1F1F;
  background: #fff;
}

.c-btn02 a {
  color: #fff;
  background: #1F1F1F;
}

/*
<div class="c-cv">
	<div class="c-cv__wrap">
		<p class="c-cv__txt02">無料体験で1ヶ月無料</p>
		<div class="c-cv__btn-set">
			<div class="c-cv__btn">
				<a href="#">
					<div class="c-cv__btn-txt"><span class="en">free consultation</span><span class="jp">無料で相談する</span></div>
					<div class="c-cv__btn-txt"><img src="img/cv_img01.webp" alt=""></div>
				</a>
			</div>
			<div class="c-cv__btn is-white">
				<a href="#">
					<div class="c-cv__btn-txt"><span class="en">Consult on LINE</span><span class="jp">LINEで相談する</span></div>
					<div class="c-cv__btn-txt"><img src="img/cv_img02.webp" alt=""></div>
				</a>
			</div>
		</div>
	</div>
</div>
*/
.c-cv {
  position: relative;
  color: #fff;
  background: #38B6FF;
  margin: auto;
}
.c-cv .en {
  margin-bottom: 5px;
  display: block;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.c-cv .jp {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}
.c-cv__head {
  font-weight: 700;
  font-size: 1.5rem;
  white-space: nowrap;
}
.c-cv__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-cv__btn a::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  bottom: 10px;
  right: 10px;
  background: url(../img/cv_btn01.png) 0 0/100% no-repeat;
}
.c-cv .is-white a::before {
  background: url(../img/cv_btn02.png) 0 0/100% no-repeat;
}
@media all and (max-width: 819px) {
  .c-cv {
    width: 325px;
    padding: 30px 0;
    margin: auto;
  }
  .c-cv__head {
    text-align: center;
  }
  .c-cv__btn-set {
    margin: 15px auto 0;
    padding-top: 30px;
    width: 255px;
    border-top: 1px solid #fff;
  }
  .c-cv__btn + .c-cv__btn {
    margin-top: 20px;
  }
  .c-cv__btn a {
    width: 255px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-cv img {
    min-width: 150px;
    width: 150px;
  }
}
@media all and (min-width: 820px) {
  .c-cv {
    max-width: 100%;
    width: 1287px;
    padding: 60px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .c-cv__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-cv__head {
    font-size: 2rem;
  }
  .c-cv__btn-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 790px;
    padding-left: 84px;
    border-left: 2px solid #fff;
  }
  .c-cv__btn a::before {
    width: 32px;
    height: 32px;
  }
  .c-cv__btn-txt {
    padding-right: 29px;
  }
  .c-cv .is-white {
    margin-left: 48px;
  }
  .c-cv img {
    width: 180px;
  }
}
@media (min-width: 820px) and (max-width: 1200px) {
  .c-cv {
    padding: 5vw 2vw;
  }
  .c-cv__btn-txt {
    padding-right: 2.5vw;
  }
  .c-cv__head {
    padding-right: 5vw;
  }
  .c-cv__btn-set {
    padding-left: 6vw;
  }
  .c-cv .is-white {
    margin-left: 4vw;
  }
}

.c-head01 {
  position: relative;
  margin-bottom: 20px;
}
.c-head01__en {
  display: table;
  margin-bottom: 12px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  padding: 3px 2px 1px 2px;
  color: #fff;
  background: #38B6FF;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.c-head01__jp {
  font-weight: 700;
  font-size: 1.8rem;
}
.c-head01.is-center .c-head01__en {
  margin-left: auto;
  margin-right: auto;
}
.c-head01.is-center .c-head01__jp {
  text-align: center;
}
@media all and (min-width: 820px) {
  .c-head01 {
    margin-bottom: 35px;
  }
  .c-head01__en {
    margin-bottom: 17px;
    font-size: 12px;
    padding: 5px 5px 3px 5px;
  }
  .c-head01__jp {
    font-size: 2.8rem;
  }
}

.c-head02 {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 1.75;
}
@media all and (min-width: 820px) {
  .c-head02 {
    margin-bottom: 43px;
    font-size: 24px;
  }
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

.mv {
  margin-top: 85px;
  position: relative;
  z-index: 2;
}

.mv__inner {
  position: absolute;
  left: 0;
}
@media all and (min-width: 820px) {
  .mv__inner {
    top: -2.5vw;
  }
}
@media all and (max-width: 819px) {
  .mv {
    padding-top: 7vw;
    padding-bottom: 13vw;
  }
  .mv__inner {
    top: -27vw;
  }
}

.mv-head01 {
  max-width: 580px;
}
.mv-head01 span {
  margin-bottom: 4px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 8.4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  padding: 5px 5px 0 8px;
  background: #fff;
  display: inline-block;
}

.mv-head02 span {
  font-weight: 500;
  line-height: 1;
}

@media all and (min-width: 820px) {
  .mv-head02 {
    margin-top: 10px;
    max-width: 580px;
  }
  .mv-head02 .marker-pc {
    margin-bottom: 4px;
    font-size: 3.8rem;
    padding: 5px 5px 8px 8px;
    background: #fff;
    display: inline-block;
  }
}
.mv-catch {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.mv-catch li {
  position: relative;
  width: 160px;
  height: 160px;
  padding-left: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #38B6FF;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  border-radius: 50%;
  padding-left: 8px;
}
.mv-catch li + li::before {
  position: absolute;
  content: "";
  top: 70px;
  left: -30px;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../img/mv_ico01.png) center center/20px no-repeat;
}
@media all and (max-width: 819px) {
  .mv-catch {
    right: 4.4vw;
    left: 4.4vw;
    bottom: 0;
    gap: 5.7vw;
  }
  .mv-catch li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 26.6vw;
    max-width: 150px;
    max-height: 150px;
    height: 26.6vw;
    font-size: 1vw;
    font-size: 11px;
    padding-left: 0;
  }
  .mv-catch li + li::before {
    top: calc(50% - 10px);
    left: calc(-5.7vw + 1.5px);
    background: url(../img/mv_ico01.png) center center/10px no-repeat;
  }
}
@media all and (min-width: 820px) {
  .mv-catch {
    right: 37px;
    bottom: 30px;
  }
}

@media all and (max-width: 819px) {
  .mv-head01 {
    max-width: 290px;
    max-width: 77.3vw;
  }
  .mv-head01 span {
    margin-bottom: 2px;
    white-space: nowrap;
  }
  .mv-head02 {
    margin-top: 5px;
    max-width: 270px;
    max-width: 50vw;
  }
  .mv-head01 span {
    font-size: 4.2rem;
    font-size: 11.2vw;
  }
  .mv-head02 .marker-sp {
    margin-bottom: 3px;
    padding: 3px 5px 3px 8px;
    background: #fff;
    font-size: 1.9rem;
    font-size: 5vw;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;
  }
}
@media (min-width: 530px) and (max-width: 819px) {
  .l-container {
    padding-top: 0vw;
  }
  .mv__inner {
    top: 0;
  }
  .mv-head01 {
    max-width: 300px;
  }
  .mv-head01 span {
    font-size: 43px;
  }
  .mv-head02 {
    max-width: 300px;
  }
  .mv-head02 .marker-sp {
    font-size: 24px;
  }
  .mv-catch {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 820px) and (max-width: 1600px) {
  .mv-head01,
  .mv-head02 {
    max-width: 36vw;
  }
  .mv-head01 span {
    font-size: 5.25vw;
  }
  .mv-head02 span {
    font-size: 2.375vw;
  }
  .mv-catch li {
    width: 10vw;
    height: 10vw;
    font-size: 1vw;
  }
  .mv-catch li + li::before {
    top: calc(50% - 10px);
  }
}
@media all and (min-width: 820px) {
  .slick-list {
    padding-right: 0 !important;
    padding-left: 3.75vw !important;
  }
  .mv-slide li {
    padding-left: 3.75vw;
  }
}
/*
<div class="cv01">
	<p class="cv01-txt01">他社で学ばれて成果が出なかった方にも多く支持をいただいています</p>
	<div class="cv01-wrap">
		<p class="cv01-txt02">無料体験で1ヶ月無料</p>
		<p class="cv01-btn01 c-btn01"><a href="#">無料で相談する</a></p>
		<p class="cv01-btn02 c-btn02"><a href="#">LINEで相談する</a></p>
	</div>
</div>
*/
.cv01-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

.cv01 {
  font-weight: 700;
}
.cv01 .cv01-txt01 br {
  display: none;
}
@media all and (max-width: 819px) {
  .cv01 {
    margin-top: 40px;
    margin-bottom: 175px;
  }
  .cv01 .cv01-wrap {
    width: 340px;
    margin: 5px auto;
    padding-top: 10px;
    border-top: 2px solid #38B6FF;
  }
  .cv01 .cv01-txt01 {
    font-size: 1.1rem;
    text-align: center;
  }
  .cv01 .cv01-txt02 {
    font-size: 1.1rem;
    padding: 0 15px 0 0;
    white-space: nowrap;
  }
}
@media all and (min-width: 820px) {
  .cv01 {
    margin-top: 77px;
    margin-bottom: 370px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
  .cv01 .cv01-wrap {
    position: relative;
  }
  .cv01 .cv01-wrap::before {
    position: absolute;
    content: "";
    top: 14px;
    left: 0px;
    width: 4px;
    height: 17px;
    background: #38B6FF;
  }
  .cv01 .cv01-txt01 {
    font-size: 1.8rem;
  }
  .cv01 .cv01-txt02 {
    padding: 0 15px 0 40px;
    white-space: nowrap;
  }
}

@media (min-width: 820px) and (max-width: 1200px) {
  .cv01 .cv01-txt01 {
    font-size: 1.6rem;
  }
  .cv01 .cv01-txt01 br {
    display: block;
  }
}
.cv02 {
  background: #f3f8f8;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media all and (min-width: 820px) {
  .cv02 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

.cv03 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background: #f3f8f8;
}
.cv03::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: #D7E8EA;
}
@media all and (min-width: 820px) {
  .cv03 {
    padding-top: 0;
    padding-bottom: 300px;
  }
  .cv03::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #D7E8EA;
  }
}

.cv04 {
  background: #f3f8f8;
  padding-top: 75px;
  padding-bottom: 20px;
}
@media all and (min-width: 820px) {
  .cv04 {
    padding-top: 150px;
    padding-bottom: 30px;
  }
}

.issues {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 60px;
  height: 90vh;
  background: url(../img/issues_bg01-sp.webp) top center/100% no-repeat;
}
@media (min-width: 530px) and (max-width: 819px) {
  .issues {
    height: 80vw;
    min-height: 600px;
  }
}
.issues-btm {
  padding-bottom: 60px;
}
.issues-inner {
  background: #fff;
  margin: 0 30px;
}
.issues-inner.is-top {
  padding-top: 60px;
}
.issues-inner.is-bottom {
  padding-bottom: 60px;
}
.issues-catch {
  font-weight: 700;
  color: #000000;
}
.issues-line {
  text-align: center;
}
.issues-list li {
  margin-bottom: 12px;
  background: url(../img/ico_check01.png) 0 3px/13px no-repeat;
  padding-left: 23px;
}
.issues .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(92%, transparent), color-stop(92%, #38B6FF));
  background: linear-gradient(transparent 92%, #38B6FF 92%);
}
@media all and (max-width: 819px) {
  .issues-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
  .issues-catch {
    font-size: 1.3rem;
    line-height: 1.6153846154;
  }
  .issues-list {
    margin-top: 35px;
    margin-bottom: 20px;
  }
  .issues-list li {
    font-size: 1.2rem;
    line-height: 1.625;
  }
  .issues-txt {
    padding-top: 5px;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.6153846154;
  }
}
@media all and (min-width: 820px) {
  .issues {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 250px;
    height: 55.7vw;
    height: 900px;
    background: url(../img/issues_bg01-pc.webp) top center/cover no-repeat;
  }
  .issues-btm {
    padding-bottom: 250px;
  }
  .issues-inner {
    margin: auto;
    width: 733px;
  }
  .issues-inner.is-top {
    padding-top: 80px;
  }
  .issues-inner.is-bottom {
    padding-bottom: 80px;
  }
  .issues-catch {
    width: 492px;
    margin: auto auto 70px;
    font-size: 18px;
    line-height: 34px;
  }
  .issues-list {
    display: table;
    margin: auto auto 20px;
  }
  .issues-list li {
    margin-bottom: 17px;
    background: url(../img/ico_check01.png) 0 3px/19px no-repeat;
    padding-left: 33px;
  }
  .issues-line img {
    width: 573px;
  }
  .issues-txt {
    width: 573px;
    margin: auto;
    font-size: 20px;
    line-height: 36px;
  }
}

.issues::-webkit-scrollbar {
  display: none;
}

.features {
  position: relative;
  padding-top: 120px;
}
.features-catch {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media all and (max-width: 819px) {
  .features {
    background: #f3f8f8;
    position: relative;
  }
  .features::before {
    position: absolute;
    top: 425px;
    left: 0;
    width: 100%;
    height: 169.2vw;
    content: "";
    background: url(../img/features_bg01-sp.webp) top center/100% no-repeat;
  }
}
@media all and (min-width: 820px) {
  .features {
    position: relative;
    padding-top: 241px;
  }
  .features::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 900px;
    content: "";
    background: url(../img/features_bg01-pc.webp) bottom center/cover no-repeat;
  }
  .features-catch {
    margin-bottom: 60px;
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

.features-nav li a {
  display: block;
  position: relative;
  color: #1F1F1F;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features-nav li a::before {
  position: absolute;
  content: "";
  bottom: calc(50% - 8px);
  right: 20px;
  width: 15px;
  height: 15px;
  background: url(../img/ico_down01.png) 0 0/100% no-repeat;
}
.features-nav li a span {
  display: block;
}
.features-nav__num {
  color: #38B6FF;
  font-family: "Roboto Condensed";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.features-nav__head {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt" on, "halt" on;
          font-feature-settings: "palt" on, "halt" on;
}
.features-nav__txt {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}
@media all and (max-width: 819px) {
  .features-nav li {
    margin-bottom: 2px;
  }
  .features-nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 15px;
    height: 60px;
    padding-left: 15px;
    padding-right: 40px;
  }
  .features-nav__num {
    font-size: 12px;
  }
  .features-nav__head {
    font-size: 12px;
  }
  .features-nav__txt {
    margin-top: 1px;
    font-size: 11px;
  }
}
@media all and (min-width: 820px) {
  .features-nav {
    margin-bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  .features-nav li a {
    padding: 33px 30px 0;
    max-width: 254px;
    width: 15.875vw;
    width: 19vw;
    height: 207px;
  }
  .features-nav li a::before {
    bottom: 40px;
    right: 30px;
    width: 18px;
    height: 18px;
  }
  .features-nav__head {
    margin-top: 17px;
  }
}

.feature-box {
  margin-top: 60px;
  padding-top: 60px;
}
.feature-box__head01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 38px;
  padding: 2px 5px;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  background: #38B6FF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.feature-box__head01 span {
  margin-top: 3px;
  margin-right: 5px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.feature-box__head02 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.3rem;
}
.feature-box__list01 {
  gap: 15px;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.feature-box__list01 li {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  line-height: 1.79;
}
.feature-box__catch {
  display: table;
  margin-bottom: 15px;
  padding: 1px 3px 0px 4px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.2rem;
  background: #38B6FF;
}
.feature-box__txt01 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
.feature-box__head03 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5;
}
.feature-box__head03::before {
  position: absolute;
  content: "";
  top: 6px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: #38B6FF;
}
.feature-box02 {
  padding: 25px 30px 30px;
  color: #1F1F1F;
  background: #fff;
  line-height: 1.9;
}
.feature-box02 p + * {
  margin-top: 1.5em;
}
.feature-box02__pic {
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(31, 31, 31, 0.2);
  border-radius: 5px;
}
@media all and (max-width: 819px) {
  .feature-box__list01 li + li {
    margin-top: 4px;
  }
  .feature-box02 {
    font-size: 12px;
    line-height: 1.62;
  }
  .feature-box02__pic .logo2 {
    width: 94px;
  }
}
@media all and (min-width: 820px) {
  .feature-box {
    margin-top: 100px;
    padding-top: 100px;
  }
  .feature-box__head01 {
    margin-bottom: 70px;
    padding: 5px 11px;
    font-size: 2.4rem;
  }
  .feature-box__head01 span {
    margin-top: 3px;
    margin-right: 15px;
    font-size: 20px;
  }
  .feature-box__head02 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .feature-box__list01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .feature-box__list01 li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 30px;
    font-size: 1.4rem;
    line-height: 1.79;
  }
  .feature-box__catch {
    margin-bottom: 17px;
    padding: 2px 3px 2px 8px;
    font-size: 1.2rem;
  }
  .feature-box__txt01 {
    margin-bottom: 55px;
    font-weight: 700;
    font-size: 2rem;
  }
  .feature-box__head03 {
    margin-bottom: 25px;
    padding-left: 25px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .feature-box__head03::before {
    top: 6px;
    bottom: 3px;
    width: 2px;
  }
  .feature-box02 {
    padding: 65px 70px 70px;
    line-height: 1.9;
  }
  .feature-box02 p + * {
    margin-top: 1.5em;
  }
  .feature-box02__pic {
    padding: 75px;
    text-align: center;
    border: 1px solid rgba(31, 31, 31, 0.2);
    border-radius: 10px;
  }
}

.feature-box02 + .feature-box__head03 {
  margin-top: 65px;
}

#features05 {
  padding-bottom: 30px;
}
@media all and (min-width: 820px) {
  #features05 {
    padding-bottom: 240px;
  }
}

@media (min-width: 820px) and (max-width: 1360px) {
  .features-head,
  .features-catch {
    margin-left: 2vw;
  }
  .features-nav__head {
    font-size: 1.4vw;
  }
  .features-nav li a {
    padding-left: 1.5vw;
    padding-right: 0;
  }
}
.features-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 126vw;
  overflow-y: auto;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .features-box {
    max-width: 780px;
    height: 800px;
  }
}

.features-box::-webkit-scrollbar {
  display: none;
}

.curriculum {
  padding-top: 124px;
  background: #D7E8EA url(../img/curriculum_bg01-sp.webp) top center/100% no-repeat;
}
.curriculum-catch {
  font-size: 1.2rem;
  line-height: 1.625;
}
@media all and (min-width: 820px) {
  .curriculum {
    padding-top: 170px;
    padding-bottom: 5px;
    background: #D7E8EA url(../img/curriculum_bg01-pc.webp) top center/100% no-repeat;
  }
  .curriculum-catch {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.curriculum-inner01 {
  margin-bottom: 60px;
  background: #fff;
  width: 290px;
  padding: 30px 25px 25px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .curriculum-inner01 {
    margin-bottom: 140px;
    width: 664px;
    padding: 80px 75px 80px 157px;
  }
}

@media all and (max-width: 819px) {
  .curriculum-inner02 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 820px) {
  .curriculum-inner02 {
    width: 783px;
    width: 980px;
    max-width: 100vw;
    margin: auto;
  }
}

.c-table01 {
  border-collapse: separate;
  border-spacing: 1px;
}
.c-table01 td, .c-table01 th {
  font-weight: 700;
  background: #fff;
}
.c-table01 .th01 {
  text-align: center;
  color: #fff;
  background: #3891FF;
}
.c-table01 .th02 {
  text-align: center;
  color: #fff;
  background: #38B6FF;
}
.c-table01 .th03 {
  text-align: left;
}
.c-table01 .td01 {
  color: #3891FF;
}
.c-table01 img {
  width: 18px;
  vertical-align: top;
}
@media all and (max-width: 819px) {
  .c-table01 {
    margin-bottom: 15px;
    max-width: 200vw;
    width: auto;
  }
  .c-table01__wrap {
    overflow-x: scroll;
    /* スクロールバー全体 */
    /* スクロールバー背景 */
    /* スクロールバーつまみ */
  }
  .c-table01__wrap::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .c-table01__wrap::-webkit-scrollbar-track {
    background: #fff;
    -webkit-box-shadow: inset 0 0 2px #fff;
            box-shadow: inset 0 0 2px #fff;
  }
  .c-table01__wrap::-webkit-scrollbar-thumb {
    background: #38B6FF;
  }
  .c-table01 .th01,
  .c-table01 .th02 {
    font-size: 1.3rem;
    padding: 10px 15px;
    white-space: nowrap;
    vertical-align: middle;
  }
  .c-table01 .th03 {
    padding: 10px 15px;
    font-size: 1.3rem;
    white-space: nowrap;
  }
  .c-table01 td {
    padding: 10px 15px;
    font-size: 1.2rem;
    vertical-align: middle;
    min-width: 175px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media all and (min-width: 820px) {
  .c-table01 {
    margin-bottom: 105px;
  }
  .c-table01 img {
    width: 26px;
  }
  .c-table01 .th01,
  .c-table01 .th02 {
    font-size: 1.6rem;
    padding: 12px;
  }
  .c-table01 .th03 {
    padding: 5px 18px;
    font-size: 1.6rem;
    line-height: 1.5;
    height: 60px;
    vertical-align: middle;
  }
  .c-table01 td {
    font-size: 1.4rem;
    vertical-align: middle;
  }
}

.curriculum-table01 {
  max-width: 200vw;
  width: auto;
}
.curriculum-table01__wrap {
  overflow-x: scroll;
  /* スクロールバー全体 */
  /* スクロールバー背景 */
  /* スクロールバーつまみ */
}
.curriculum-table01__wrap::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.curriculum-table01__wrap::-webkit-scrollbar-track {
  background: #fff;
  -webkit-box-shadow: inset 0 0 2px #fff;
          box-shadow: inset 0 0 2px #fff;
}
.curriculum-table01__wrap::-webkit-scrollbar-thumb {
  background: #38B6FF;
}
.curriculum-table01 th {
  width: auto;
  white-space: nowrap;
}
.curriculum-table01 td {
  padding: 15px 20px;
  font-weight: 400;
  vertical-align: top;
}
@media all and (max-width: 819px) {
  .curriculum-table01 {
    max-width: 210vw;
  }
  .curriculum-table01 .th03 {
    padding-top: 14px;
  }
  .curriculum-table01 td {
    min-width: 175px;
    vertical-align: top;
  }
}
@media all and (min-width: 820px) {
  .curriculum-table01 {
    margin-bottom: 40px;
  }
  .curriculum-table01__wrap {
    margin-bottom: 150px;
  }
  .curriculum-table01 td {
    min-width: 202px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.curriculum-table02 td {
  text-align: center;
  color: #38B6FF;
  vertical-align: middle;
}
.curriculum-table02 .th03 small {
  font-size: 1.1rem;
  font-weight: normal;
}
@media all and (min-width: 820px) {
  .curriculum-table02 {
    max-width: 100vw;
  }
  .curriculum-table02 .th01,
  .curriculum-table02 .th02,
  .curriculum-table02 .th03,
  .curriculum-table02 td {
    min-width: 20%;
    width: 20%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .curriculum-table02 .th03 {
    padding-right: 0;
    white-space: nowrap;
  }
  .curriculum-table02 .th03 small {
    font-size: 1.2rem;
  }
  .curriculum-table02 td {
    font-size: 1.6rem;
  }
}
@media (min-width: 781px) and (max-width: 900px) {
  .curriculum-table02 .th03 small {
    font-size: 1.1rem;
  }
}

.course-set__head {
  font-weight: 700;
  background: #fff;
}
.course-set .course-detail dt {
  margin-bottom: 8px;
  position: relative;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  padding-left: 12px;
}
.course-set .course-detail dt::before {
  position: absolute;
  content: "";
  width: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  background: #38B6FF;
}
.course-set .course-detail dd {
  font-size: 1.2rem;
  line-height: 1.7857142857;
}
.course-set .course-detail li {
  position: relative;
  font-size: 1.2rem;
  padding-left: 1em;
  margin: 0;
  list-style-type: none;
}
.course-set .course-detail li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
@media all and (max-width: 819px) {
  .course-set__head {
    padding: 1px 5px;
    margin-bottom: 25px;
  }
  .course-set .course-detail {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .course-set .course-detail li {
    margin-bottom: 1px;
    line-height: 1.5;
  }
  .course-set + .course-set {
    margin-top: 50px;
  }
}
@media all and (min-width: 820px) {
  .course-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-top: 1px solid #fff;
  }
  .course-set__head {
    width: 193px;
    margin-right: 89px;
    padding-top: 50px;
    padding-left: 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .course-set .course-detail {
    padding-top: 56px;
    padding-bottom: 50px;
  }
  .course-set .course-detail dt {
    margin-bottom: 15px;
    font-size: 1.6rem;
    padding-left: 12px;
  }
  .course-set .course-detail dt::before {
    width: 2px;
    top: 0;
    bottom: 0;
  }
  .course-set .course-detail dd {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
  .course-set .course-detail li {
    font-size: 1.4rem;
  }
  .course-set .course-detail + .course-detail {
    margin-left: 50px;
  }
}

.course-set + .course-set::before {
  position: absolute;
  content: "";
  width: 193px;
  top: -1px;
  left: 0;
  border-top: 1px solid #D7E8EA;
}

.course-set:last-child {
  border-bottom: 1px solid #fff;
}
@media all and (max-width: 819px) {
  .course-set:last-child {
    padding-bottom: 20px;
  }
}

.course-price {
  margin-bottom: 112px;
}
@media all and (max-width: 819px) {
  .course-price {
    margin-top: 60px;
    margin-bottom: 75px;
  }
}

.voice {
  padding-top: 124px;
  padding-bottom: 1px;
  background: #f3f8f8 url(../img/voice_bg01-sp.webp) top center/100% no-repeat;
}
.voice-catch {
  font-size: 1.2rem;
  line-height: 1.625;
}
@media all and (min-width: 820px) {
  .voice {
    padding-top: 170px;
    padding-bottom: 125px;
    background: #f3f8f8 url(../img/voice_bg01-pc.webp) top center/100% no-repeat;
  }
  .voice-catch {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.voice-inner01 {
  margin-bottom: 70px;
  background: #fff;
  margin-left: calc(100% - 290px);
  width: 290px;
  padding: 30px 25px 25px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .voice-inner01 {
    margin-bottom: 140px;
    margin-left: calc(100% - 664px);
    width: 664px;
    padding: 80px 75px 80px 157px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media all and (max-width: 819px) {
  .voice-list {
    margin: 0 15px;
  }
  .voice-list li {
    margin-bottom: 45px;
  }
}
@media all and (min-width: 820px) {
  .voice-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    width: 1032px;
    max-width: 100%;
    gap: 66px;
  }
}

.voice-item__head {
  margin: 20px 0 8px;
  font-weight: 700;
  font-size: 1.3rem;
}
.voice-item__txt {
  font-size: 1.25rem;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media all and (min-width: 820px) {
  .voice-item__head {
    margin: 32px 0 10px;
    font-size: 1.6rem;
  }
  .voice-item__txt {
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

.message {
  padding-bottom: 110px;
  background: #f3f8f8;
}
@media all and (max-width: 819px) {
  .message {
    padding-top: 50px;
  }
}
@media all and (min-width: 820px) {
  .message {
    padding-bottom: 300px;
  }
  .message-catch {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.message-inner01 {
  margin-bottom: 40px;
  background: #fff;
  width: 310px;
  padding: 30px 25px 5px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .message-inner01 {
    margin-bottom: 90px;
    width: 664px;
    padding: 50px 75px 10px 157px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media all and (max-width: 819px) {
  .message-inner02 {
    margin: 0 15px;
  }
}
@media all and (min-width: 820px) {
  .message-inner02 {
    width: 100%;
    max-width: 1033px;
    margin: auto;
  }
}

.message-item__head {
  font-size: 1.3rem;
  font-weight: 700;
}
.message-item__txt {
  margin-right: 15px;
  font-size: 12px;
  line-height: 1.62;
  text-transform: uppercase;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media all and (max-width: 819px) {
  .message-item__head {
    margin: 18px 0 12px;
  }
}
@media all and (min-width: 820px) {
  .message-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .message-item__img {
    width: 45.5%;
  }
  .message-item__text {
    width: 45.5%;
  }
  .message-item__head {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .message-item__txt {
    font-size: 14px;
    line-height: 1.79;
  }
  .message-item.is-reverse .message-item__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .message-item.is-reverse .message-item__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.message-item + .message-item {
  margin-top: 50px;
}
@media all and (min-width: 820px) {
  .message-item + .message-item {
    margin-top: 100px;
  }
}

.faq {
  padding-top: 124px;
  padding-bottom: 10px;
  background: #D7E8EA url(../img/faq_bg01-sp.webp) top center/100% no-repeat;
}
.faq-catch {
  font-size: 1.2rem;
  line-height: 1.625;
}
@media all and (min-width: 820px) {
  .faq {
    padding-top: 170px;
    padding-bottom: 120px;
    background: #D7E8EA url(../img/faq_bg01-pc.webp) top center/100% no-repeat;
  }
  .faq-catch {
    margin-top: -10px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.faq-inner01 {
  margin-bottom: 60px;
  background: #fff;
  width: 290px;
  padding: 30px 25px 25px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .faq-inner01 {
    margin-bottom: 140px;
    width: 664px;
    padding: 75px 75px 80px 157px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media all and (max-width: 819px) {
  .faq-inner02 {
    margin: 0 15px;
  }
}
@media all and (min-width: 820px) {
  .faq-inner02 {
    width: 100%;
    max-width: 1160px;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.faq-item {
  position: relative;
  border-top: 1px solid #fff;
}
.faq-item::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #38B6FF;
}
.faq-item__q {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
.faq-item__q::before, .faq-item__q::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 14px;
  height: 1px;
  background: #3891FF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-item__q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-item__q-head {
  padding: 50px 30px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #38B6FF;
}
.faq-item__q-txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 2.1;
  text-transform: uppercase;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
.faq-item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
}
.faq-item__a-head {
  padding: 20px 30px;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #38B6FF;
}
.faq-item__a-text {
  font-size: 12px;
  line-height: 1.62;
}
@media all and (max-width: 819px) {
  .faq-item__q {
    padding: 25px 45px 25px 0;
  }
  .faq-item__q-head {
    font-size: 1.9rem;
    padding: 0px 30px 0px 10px;
  }
  .faq-item__q-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    -webkit-font-feature-settings: "palt" on;
            font-feature-settings: "palt" on;
  }
  .faq-item__a {
    padding: 20px 20px 20px 0;
    margin-bottom: 50px;
  }
  .faq-item__a-head {
    padding: 0px 30px 0px 10px;
    font-size: 1.9rem;
  }
}
@media all and (min-width: 820px) {
  .faq-item {
    border-top: 2px solid #fff;
  }
  .faq-item::before {
    top: -2px;
    width: 77px;
    height: 2px;
  }
  .faq-item__q {
    padding: 45px 90px 45px 0;
  }
  .faq-item__q-head {
    padding: 0px 60px 0px 30px;
    font-size: 2.8rem;
  }
  .faq-item__q-text {
    font-size: 2rem;
  }
  .faq-item__q::before, .faq-item__q::after {
    width: 20px;
    height: 2px;
  }
  .faq-item__a {
    padding: 25px 44px 25px 0;
    margin-bottom: 60px;
  }
  .faq-item__a-head {
    padding: 20px 60px 20px 30px;
  }
  .faq-item__a-text {
    font-size: 14px;
    line-height: 1.86;
  }
}
.faq-item dt.is-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.contact {
  padding-bottom: 25px;
  background: #D7E8EA;
}
.contact-catch {
  font-size: 1.2rem;
  line-height: 1.625;
}
@media all and (max-width: 819px) {
  .contact {
    padding-top: 50px;
  }
}
@media all and (min-width: 820px) {
  .contact {
    padding-bottom: 110px;
    background: #D7E8EA;
  }
  .contact-catch {
    margin-top: -10px;
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.contact-thanks {
  background: #f3f8f8;
}
.contact-thanks::before {
  display: none;
}

.thanks {
  background: #f3f8f8;
  padding-top: 0;
}
.thanks .contact-inner02 {
  padding: 2em;
  text-align: center;
}
.thanks .contact-inner02 input[type=button] {
  margin-top: 50px;
}

.thanks .contact-inner01 {
  margin: auto;
  padding: 30px 25px 25px 25px;
}
@media all and (min-width: 820px) {
  .thanks .contact-inner01 {
    padding: 75px 75px 80px;
    text-align: center;
  }
}

.contact-inner01 {
  margin-bottom: 35px;
  background: #fff;
  width: 290px;
  padding: 30px 25px 25px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 820px) {
  .contact-inner01 {
    margin-bottom: 110px;
    width: 664px;
    padding: 75px 75px 80px 157px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contact-inner02 input[type=text], .contact-inner02 input[type=email], .contact-inner02 input[type=tel], .contact-inner02 textarea {
  background: #fff;
  min-height: 35px;
  padding: 5px 10px;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-inner02 input[type=button],
.contact-inner02 input[type=submit] {
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 101px;
  height: 27px;
  color: #fff;
  background: #1F1F1F;
  border-radius: 14px;
  border: 0px;
  cursor: pointer;
}
.contact-inner02 dl {
  margin-bottom: 25px;
}
.contact-inner02 dt {
  font-weight: 700;
}
.contact-inner02 dd {
  margin-top: 13px;
}
.contact-inner02 textarea {
  height: 150px;
}
@media all and (max-width: 819px) {
  .contact-inner02 {
    margin: 0 15px;
  }
  .contact-inner02 input[type=text], .contact-inner02 input[type=email], .contact-inner02 input[type=tel], .contact-inner02 textarea {
    font-size: 16px;
  }
}
@media all and (min-width: 820px) {
  .contact-inner02 {
    width: 100%;
    max-width: 1159px;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contact-inner02 input[type=text], .contact-inner02 input[type=email], .contact-inner02 input[type=tel], .contact-inner02 textarea {
    min-height: 63px;
  }
  .contact-inner02 input[type=button],
  .contact-inner02 input[type=submit] {
    margin: 110px auto;
    width: 143px;
    height: 43px;
    border-radius: 22px;
  }
  .contact-inner02 .contact-form__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 60px;
  }
  .contact-inner02 dl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 55px;
  }
  .contact-inner02 dd {
    margin-top: 25px;
  }
  .contact-inner02 textarea {
    height: 300px;
  }
}

/* 以下2023/10/20追加項目 */
.add__section{
    padding: 56px 0 0 0;
    
}

@media screen and (max-width:531px){
  .add__section{
    padding: 0;
  }

}

.add__wrapper{
    min-width: 300px;
    width: 80%;
    margin: 0 auto;
}
.add__label{
    background-color: #37B6FF;
    width: 215px;
    padding: 3px 5px;
    
    

}
.add__label-text{
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 7px;
}
.add__title{
    font-size: 28px;
    font-weight: bold;
    color: #1F1F1F;
    margin-top: 18px;
    
}
@media screen and (max-width:819px){
  .add__title{
    font-size: 22px;
  }
}
.add__sheet{
    background-color: #FFFFFF;
    padding: 80px 70px 80px 80px;
    margin-top: 48px;
    
}

@media screen and (max-width:819px){
  .add__sheet{
    padding: 20px 20px 20px 20px;
  }
}
.add__subtitle{
    display: flex;
    gap: 16px;
    align-items: flex-start;
    
}
.add__subtitle-text{
    font-size: 18px;
    font-weight: 600;
    color: #1F1F1F;
    line-height: 18px;
    
}
.add__marker{
    display: block;
    content: "";
    width: 3px;
    height: 20px;
    background-color: #36B7FF;
}
.add__contents{
    margin: 16px 0 40px 19px;
    color: #020202;
    
}

.add__contents--pri{
  margin: 16px 0 20px 19px;
}



.add__contents:nth-of-type(13){
    margin-bottom: 10px;
}

.add__recommend{
    margin-left: 19px;
}

.add__recommend{
    color: #020202;
    line-height: 25px;
}

.add__windows{
    margin-bottom: 20px;
}

.add__windows-title{
    display: flex;
    align-items: center;
    gap: 2px;
}
.add__box{
    width: 14px;
    height: 14px;
    content: "";
    display: block;
    background-color: #020202;
}

.add__list{
  margin: 0 0 20px 16px;
}

.add__list-item{
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
}

.add__list-item p{
  line-height: 20px;
  flex: 1;
}

.add__ball{
  display: block;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  border: 1px solid #35B8FF;
  background-color: #FFFFFF;
  margin-top: 7px;

}

.add__button{
  width: 150px;
  height: 40px;
  border: 2px solid #35B8FF;
  
  margin: 20px auto;
  color: #35B8FF;
  text-align: center;
  line-height: 40px;
  
}

.add__button:hover{
  opacity: 0.7;
}

/* 以上law.php,privacy.php用スタイルシート */
/* 以下index.php用スタイルシート */

.addition{
  background-color: #F3F8F8;
  padding-bottom: 30px;
}

.addition__wrapper{
  width: 300px;
  margin: 0 auto;
}

.addition__wrapper p{
  text-align: center;
}

.addition__link:hover{
  opacity: 0.6;
}
