@charset "utf-8";

/* CSS Document */

/***********
mainVisual
************/

.mainVisual {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mainVisual-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.5);
}
.mainVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


body.is-loaded .mainVisual-img {
  transform: scale(1);
  transition: 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.mainVisual-container {
}
.mainVisual-block {
  display: inline-block;
  background-color: #fff;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.4);
  padding: 3em 5%;
  position: relative;
  z-index: 10;
  opacity: 0;
}

body.is-loaded .mainVisual-block {
  opacity: 1;
  transition: 0.5s ease 0.5s;
}

.mainVisual-logo {
  padding-bottom: 0.5em;
}
.mainVisual-logo img {
  width: 220px;
  height: 40px;
}

/*
lead
*/

.mainVisual-lead {
  padding-bottom: 2em;
  white-space: nowrap;
}
.mainVisual-lead-item {
  font-feature-settings: "palt";
  font-size: max(3.3vw,370%);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.mainVisual-lead-text {
  display: inline-block;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.mainVisual-lead-accent {
  color: #009442;
  font-size: 180%;
}


.mainVisual-subLead-text span,
.mainVisual-lead-text span {
  display: inline-block;
  transform: translateY(1.5em);
  transition: 1.2s;
}
body.is-loaded .mainVisual-subLead-text span,
body.is-loaded .mainVisual-lead-text span{
  transform: translateY(0);
}

/*
intro
*/

.mainVisual-intro {
  display: inline-block;
  position: relative;
  margin-top: -1em;
  margin-bottom: 3.5em;
  opacity: 0;
}
.mainVisual-intro::before {
  content: "";
  display: block;
  width: 108%;
  height: 80%;
  position: absolute;
  left: -4%;
  bottom: -2em;
  background: #ffea00;
}
.mainVisual-intro-inner {
  position: relative;
  z-index: 2;
}
.mainVisual-intro-text {
  font-feature-settings: "palt";
  font-size: max(3.3vw,370%);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #e60012;
}

.mainVisual-intro-text .mainVisual-intro-accent {
  display: inline-block;
  font-size: 131%;
}
.mainVisual-intro-text .mainVisual-intro-num {
  display: inline-block;
  font-size: 240%;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.05em;
  margin-left: -0.1em;
  margin-right: 0.08em;
  line-height: 0.9;
  transform: translateY(0.05em);
  opacity: 0;
  transform: scale(1.5);
}

.mainVisual-intro-subText {
  display: inline-block;
  font-size: 240%;
  font-weight: 900;
  font-size: max(1.5vw,154%);
  letter-spacing: -0.04em;
  line-height: 1.5;
  padding-top: 0.2em;
}




body.is-loaded .mainVisual-intro {
  opacity: 1;
  transition: 0.8s ease 1.8s;
}
body.is-loaded .mainVisual-intro-num {
  opacity: 1;
  transition: 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.8s;
  transform: scale(1);
}

/*
text
*/

.mainVisual-title {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-feature-settings: "palt";
  font-size: max(1.8vw,200%);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.mainVisual-title .mainVisual-title-subText {
  border: 3px double #000;
  border-right: none;
  border-left: none;
  padding: 0.2em 0 0.4em;
}
.mainVisual-title .mainVisual-title-text {
  padding-left: 0.5em;
  padding-bottom: 0.2em;
  font-size: 185%;
}


/*
Scroll
*/

.mainVisual-scroll {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 9;
  opacity: 0;
  transition: all 1.5s ease 2s;
}
body.is-loaded .mainVisual-scroll {
  opacity: 1;
}
.mainVisual-scroll a {
  display: inline-block;
  width: 100px;
  height: 100px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.mainVisual-scroll-icon{
  display: block;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 10px auto;
  position: relative;
}
.mainVisual-scroll-icon::before{
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  transform: rotate(45deg);
}
.mainVisual-scroll-icon::after{
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: -54px;
  top: -54px;
  pointer-events: none;
  transform: scale(0);
  animation: anim-mainVisualScroll 2.5s ease infinite;
}

@keyframes anim-mainVisualScroll {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  60% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width:834px) {

  .mainVisual {
    height: 100svh;
    min-height: 500px;
  }

  .mainVisual-block {
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.4);
    padding: 1em 1.5em 2em;
  }

  .mainVisual-logo {
    padding-bottom: 0.2em;
  }
  .mainVisual-logo img {
    width: 140px;
    height: 30px;
  }

  /*
  lead
  */

  .mainVisual-lead {
    padding-bottom: 1em;
  }
  .mainVisual-lead-item {
    font-size: min(7vw,270%);
  }

  /*
  intro
  */

  .mainVisual-intro {
    margin-top: -1em;
    margin-bottom: 2.5em;
  }
  .mainVisual-intro::before {
    content: "";
    display: block;
    width: 104%;
    height: 90%;
    position: absolute;
    left: -2%;
    bottom: -1em;
    background: #ffea00;
  }

  .mainVisual-intro-text {
    font-size: min(7vw,270%);
  }

  .mainVisual-intro-subText {
    font-size: min(4vw,154%);
  }

  /*
  text
  */

  .mainVisual-title {
    font-size: min(4vw,170%);
  }

  /*
  Scroll
  */

  .mainVisual-scroll {
    transform: scale(0.9);
  }

}

/***********
homeVisual
************/

.homeVisual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.homeVisual-block {
  position: relative;
}
.homeVisual-lead {
  font-size: clamp(200%,3.5vw, 600%);
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: -0.04em;
}
.homeVisual-lead-item:not(:last-of-type) {
  margin-bottom: 0.1em;
}
.homeVisual-lead-text {
  display: inline-block;
  white-space: nowrap;
  background-color: #fff;
  transform: skewX(-8deg);
  padding: 0.1em 0.5em;
}

/*
01
*/

.homeVisual01 {
  padding-bottom: 150px;
  min-height: 700px;
  background: url(../../img/visual_img01.jpg) repeat 0 0 ;
  animation: anim-bg 100s linear infinite ;
}

/*
02
*/

.homeVisual02 {
  min-height: 550px;
  background: url(../../img/visual_img02.jpg) repeat 0 0 ;
  animation: anim-bg 100s linear reverse infinite ;
}

/*
01
*/

.homeVisual03 {
  min-height: 450px;
  background: url(../../img/visual_img03.jpg) repeat 0 0 ;
  animation: anim-bg 100s linear infinite ;
}

@keyframes anim-bg {
  0%  {
    background-position: 0 0;
  }
  100%  {
    background-position: -2000px 0;
  }
}

@media screen and (max-width:834px) {

  .homeVisual-lead {
    font-size: clamp(154%,6vw, 250%);
  }

  /*
  01
  */

  .homeVisual01 {
    padding-bottom: 70px;
    min-height: 350px;
    background-size: auto 350px;
    animation: anim-bg 100s linear infinite ;
  }

  /*
  02
  */

  .homeVisual02 {
    min-height: 275px;
    background-size: auto 275px;
  }

  /*
  01
  */

  .homeVisual03 {
    min-height: 225px;
    background-size: auto 225px;
  }

  @keyframes anim-bg {
    0%  {
      background-position: 0 0;
    }
    100%  {
      background-position: -1000px 0;
    }
  }

}


/***********
homeIntro
************/

.homeIntro {
  background-color: #e4f5ea;
  padding-top: 10em;
  padding-bottom: 12em;
}

.homeIntro-heading {
  text-align: center;
  padding-bottom: 8em;
}
.homeIntro-lead {
  font-size: min(2.3vw,331%);
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1.3;
  padding-bottom: 0.5em;
}
.homeIntro-title {
  font-size: min(3.8vw,570%);
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1.2;
}
.homeIntro-title small {
  display: inline-block;
}
.homeIntro-title span {
  display: inline-block;
}
.homeIntro-text {
  padding-top: 1.5em;
  font-weight: 700;
  font-size: min(1.5vw,254%);
}


@media screen and (max-width:834px) {

  .homeIntro {
    padding-top: 3em;
    padding-bottom: 6em;
  }

  .homeIntro-heading {
    padding-bottom: 4em;
  }
  .homeIntro-lead {
    font-size: min(6vw,231%);
    line-height: 1.4;
  }
  .homeIntro-title {
    font-size: min(7vw,270%);
    line-height: 1.4;
  }
  .homeIntro-text {
    font-size: min(4.5vw,139%);
  }

}


/***********
courseHeadline
************/

.courseHeadline {
  text-align: center;
  padding-bottom: 6em;
}
.courseHeadline-title {
  display: inline-block;
  font-size: min(3vw,354%);
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1.2;
  background-color: #009442;
  color: #fff;
  padding: 0.2em 1.5em;
}
.courseHeadline-title .courseHeadline-title-num {
  font-size: 139%;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
}

@media screen and (max-width:834px) {

  .courseHeadline {
    padding-bottom: 4em;
  }
  .courseHeadline-title {
    font-size: min(6vw,300%);
    padding: 0.2em 1em;
  }
  .courseHeadline-title .courseHeadline-title-num {
  }

}

/***********
course
************/

.course {
  position: relative;
}
.course + .course{
  margin-top: 10em;
}
.course::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #fff;
}
.course-container {
  position: relative;
  z-index: 2;
  padding: 0 6% 5em;
}
.course-container-inner {
}
.course-heading {
  text-align: center;
  padding-bottom: 5em;
}
.course-heading-lead {
  font-weight: 700;
  font-feature-settings: "palt";
  font-size: clamp(154%,1.4vw, 300%);
  position: relative;
  z-index: 2;
}
.course-heading-block {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -3em;
  margin-bottom: 2em;
}
.course-heading-num {
  background-color: #ffea00;
  color: #e60012;
  font-weight: 900;
  font-size: min(1.8vw,300%);
  font-size: clamp(154%,1.8vw, 300%);
  transform: skewX(-8deg);
  white-space: nowrap;
  letter-spacing: -0.05em;
  padding: 2.5em 1.2em 0.6em 1em;
  clip-path: polygon(0% 90%, 25% 0%, 100% 60%,80% 100%);
}
.course-heading-num span {
  display: inline-block;
  font-size: 185%;
  font-family: 'Roboto', sans-serif;
  line-height: 0.8;
  transform: translateY(0.1em);
}
.course-heading-title {
  white-space: nowrap;
  font-feature-settings: "palt";
  font-size: clamp(200%,3.8vw, 600%);
  font-weight: 900;
  line-height: 1;
  margin-left: -0.4em;
  position: relative;
  z-index: 9;
}
.course-heading-money {
  display: inline-block;
  font-size: 200%;
  font-family: 'Roboto', sans-serif;
  line-height: 0.8;
  transform: translateY(0.05em);
  letter-spacing: -0.05em;
  margin-right: 0.08em;
}

.course-heading-text {
  font-weight: 600;
  font-feature-settings: "palt";
  font-size: clamp(154%,1.4vw, 300%);
  line-height: 1.8;
}



.course-chart {
  text-align: center;
  padding-bottom: 4em;
}
.course-chart img {
}
.course-separate {
  display: flex;
  justify-content: space-between;
}
.course-separate-item {
  width: 47.5%;
}
.course-title {
  font-size: 231%;
  font-feature-settings: "palt";
  font-weight: 900;
  padding-left: 1.8em;
  padding-bottom: 0.2em;
  margin-bottom: 0.2em;
  background: url(../../img/icon/check.png) no-repeat left 0.2em / 1.5em auto;
}


/*
table
*/

.course-table {
}
.course-table th,
.course-table td{
  border: 1px solid #fff;
}
.course-table thead th{
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 116%;
  padding: 1em 0.2em;
  text-align: center;
}
.course-table thead th .course-table-heading{
  font-size: 131%;
}
.course-table tbody td,
.course-table tbody th{
  background-color: #eee;
  padding: 0.8em 0.5em;
  text-align: center;
  font-size: 139%;
  font-weight: 700;
  white-space: nowrap;
}
.course-table tbody td{
  width: 24%;
}
.course-table tbody th{
  background-color: #ffea00;
}
.course-table-num{
  font-weight: 900;
  font-size: 185%;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  transform: translateY(0.05em);
}

.course-table.is-green thead th {
  background-color: #009442;
}
.course-table.is-green tbody td {
  background-color: #e4f5ea;
}

.course-table.is-red thead th {
  background-color: #e60012;
}
.course-table.is-red tbody td {
  background-color: #fff1d7;
}


@media screen and (max-width:834px) {

  .course + .course{
    margin-top: 5em;
  }
  .course::before {
    height: calc(100% - 80px);
  }
  .course-container {
    padding: 0 4% 2em;
  }
  .course-heading {
    padding-bottom: 2em;
  }
  .course-heading-lead {
    font-size: clamp(124%,4vw, 200%);
  }
  .course-heading-block {
    margin-top: -1em;
    margin-bottom: 2em;
  }
  .course-heading-num {
    font-size: clamp(139%,5vw, 340%);
  }
  .course-heading-title {
    font-size: clamp(200%,7vw, 500%);
    padding-bottom: 0.5em;
  }
  .course-heading-text {
    font-size: 108%;
  }


  .course-chart {
    text-align: center;
    padding-bottom: 3em;
  }
  .course-chart img {
  }
  .course-separate {
    display: block;
  }
  .course-separate-item {
    width: auto;
  }
  .course-separate-item + .course-separate-item {
    padding-top: 3em;
  }
  .course-title {
    font-size: 154%;
  }


  /*
  table
  */

  .course-table {
  }
  .course-table th,
  .course-table td{
  }
  .course-table thead th{
    font-size: 93%;
  }
  .course-table tbody td,
  .course-table tbody th{
    font-size: 108%;
  }
  .course-table-num{
    font-size: 154%;
  }

}

@media screen and (max-width:520px) {

  .course-heading-text {
    text-align: justify;
  }
}

/***********
homeMessage
************/

.homeMessage{
  background-color: #e4f5ea;
  padding-bottom: 8em;
}

.homeMessage-container {
  position: relative;
}
.homeMessage-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
}
.homeMessage-img {
}
.homeMessage-img img {
}
.homeMessage-inner {
  padding-top: 6em;
  margin-left: -50px;
  position: relative;
  z-index: 2;
}


.homeMessage-heading {
  position: relative;
  display: inline-block;
  color: #fff;
}
.homeMessage-heading::before {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: calc(100% - 30px);
  position: absolute;
  left: -30px;
  bottom: 0;
  background-color: #000;
  transform: skewX(-6deg);
}
.homeMessage-heading-inner {
  position: relative;
  padding: 0 4em 4em 3em;
}
.homeMessage-heading-subTitle {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 185%;
  font-weight: 700;
  background-color: #009442;
  padding: 0.4em 1em 0.2em;
  margin-bottom: 1em;
  transform: skewX(-6deg) translateX(-0.8em);
}
.homeMessage-heading-title {
  font-size: 254%;
  font-weight: 900;
  font-feature-settings: "palt";
  line-height: 1.4em;
}
.homeMessage-heading-sign {
  font-size: 200%;
  font-weight: 900;
  font-feature-settings: "palt";
  padding-top: 0.5em;
}
.homeMessage-heading-sign small {
  font-size: 70%;
  padding-right: 1em;
}

.homeMessage-box {
  max-width: 650px;
  position: relative;
  margin-top: -1em;
}
.homeMessage-box::before {
  content: "";
  display: block;
  width: calc(100% + 80px);
  height: 100%;
  position: absolute;
  left: -50px;
  top: 0;
  background-color: #fff;
  transform: skewX(-6deg);
}
.homeMessage-box-inner {
  position: relative;
  z-index: 2;
  padding: 4em 3em;
}
.homeMessage-text {
  font-size: 131%;
  font-weight: 600;
  line-height: 1.8;
}

@media screen and (max-width:834px) {

  .homeMessage{
    padding-bottom: 4em;
  }

  .homeMessage-visual {
    position: static;
    width: auto;
    text-align: right;
  }
  .homeMessage-img {
  }
  .homeMessage-img img {
    width: 70%;
    max-width: 400px;
  }
  .homeMessage-inner {
    padding-top: 0;
    padding-right: 10vw;
    margin-left: -10px;
    margin-top: -40vw;
  }

  .homeMessage-heading {
  }
  .homeMessage-heading::before {
  }
  .homeMessage-heading-inner {
    position: relative;
    padding: 0 1em 3em 1.5em;
  }
  .homeMessage-heading-subTitle {
    font-size: 124%;
    font-weight: 500;
  }
  .homeMessage-heading-title {
    font-size: 139%;
  }
  .homeMessage-heading-sign {
    font-size: 116%;
  }

  .homeMessage-box {
    max-width: 450px;
    margin-left: 5vw;
    margin-top: -1.5em;
  }
  .homeMessage-box::before {
    width: calc(100% + 60px);
    height: 100%;
    left: -30px;
  }
  .homeMessage-box-inner {
    padding: 1.5em 4vw;
  }
  .homeMessage-text {
    font-size: 100%;
    font-weight: 500;
    line-height: 1.6;
  }

}


/***********
pickup
************/

.pickup{
  display: flex;
  justify-content: center;
  padding: 10em 0;
  font-family: 'Roboto','Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
}

.pickup li {
  background-color: #000;
  color: #fff;
  margin: 0 0.4em;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-feature-settings: "palt";
  font-size: clamp(170%,1.8vw, 300%);
  width: 9em;
  height: 9em;
  line-height: 1.3;
  white-space: nowrap;
}

.pickup-text + .pickup-text {
  padding-top: 0.2em;
}
.pickup-text small {
  font-size: 60%;
}

.pickup.is-green li {
  background-color: #009442;
}
.pickup.is-red li {
  background-color: #e60012;
}


@media screen and (max-width:834px) {

  .pickup{
    padding: 4em 0;
    margin-left: -4vw;
    margin-right: -4vw;
  }

  .pickup li {
    width: 9em;
    height: 9em;
    margin: 0.1em 0.1em;
    font-size: clamp(85%,3.6vw, 154%);
  }

  .pickup-text + .pickup-text {
    padding-top: 0.2em;
  }
  .pickup-text small {
    font-size: 60%;
  }

  .pickup.is-green li {
    background-color: #009442;
  }
  .pickup.is-red li {
    background-color: #e60012;
  }

}


/***********
homeCv
************/

.homeCv{
  padding-bottom: 8em;
}

.homeCv-container {
}
.homeCv-heading {
  text-align: center;
  font-size: 370%;
  font-weight: 900;
  padding: 0.5em;
}

.homeCv-table {
  font-size: 154%;
}
.homeCv-table tr{
  border-bottom: 2px solid #000;
}
.homeCv-table th{
  width: 10em;
  font-weight: 600;
  color: #009442;
  padding: 1em 0;
  vertical-align: top;
}
.homeCv-table td{
  padding: 1em 0;
  font-weight: 500;
}


.homeCv-tel {
  padding: 3em 0;
  text-align: center;
}
.homeCv-tel-title {
  font-size: 170%;
  font-weight: 700;
  font-feature-settings: "palt";
  padding-bottom: 0.2em;
}
.homeCv-tel-num {
  font-family: 'Roboto', sans-serif;
  font-size: 500%;
  font-weight: 900;
  line-height: 1;
}
.homeCv-tel-num i {
  transform: scale(0.6) rotate(45deg);
  margin-right: 0.1em;
}
.homeCv-tel-num a {
  text-decoration: none;
}
.homeCv-tel-text {
  font-size: 154%;
  font-weight: 600;
  padding-top: 0.5em;
}

.homeCv-link{
  text-align: center;
}

@media screen and (max-width:834px) {

  .homeCv{
    padding-bottom: 4em;
  }

  .homeCv-heading {
    font-size: 200%;
  }

  .homeCv-table {
    font-size: 108%;
  }
  .homeCv-table tr{
    border-width: 1px;
    border-color: #888;
  }
  .homeCv-table th{
    width: 5.5em;
    text-align: left;
  }
  .homeCv-table td{
    padding: 1em 0;
    font-weight: 500;
  }


  .homeCv-tel {
    padding: 2em 0;
  }
  .homeCv-tel-title {
    font-size: 124%;
  }
  .homeCv-tel-num {
    font-size: 270%;
  }
  .homeCv-tel-text {
    font-size: 100%;
  }

}
































