@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: 'din-2014', 'Arial', 'Noto Sans JP', 'Meiryo', sans-serif;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.7;
}

p {
  font-size: 1.5rem;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.display-none {
  display: none;
}

.br-mobile {
  display: none;
}

.bg-blue {
  background-color: #1C73CB;
  color: #fff;
  z-index: -2;
}

.frame {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-title {
  padding: 245px 0 145px;
  font-family: vdl-logomaru, sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #FF952B;
}

.fv .page-title {
  text-align: center;
}

section {
  padding: 70px 0 100px;
  text-align: center;
}

.section-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  color: #1C73CB;
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.5;
}

.section-title p {
  font-size: 2rem;
  opacity: 0.5;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -35px;
  width: 15px;
  height: 15px;
  background-color: #1C73CB;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -35px;
  width: 15px;
  height: 15px;
  background-color: #1C73CB;
}

.section-title.white {
  color: #fff;
}

.section-title.white::before, .section-title.white::after {
  background-color: #fff;
}

.section-sub-title {
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 1px dashed #1C73CB;
  font-size: 2rem;
}

.section-sub-title.white {
  border-bottom: 1px dashed #fff;
}

.btn {
  position: relative;
  display: inline-block;
  width: 240px;
  line-height: 48px;
  margin-top: 55px;
  background-color: #FF952B;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  z-index: -1;
  transition: 0.3s;
}

.btn:hover::before {
  top: -4px;
  left: -4px;
}

.btn p {
  position: relative;
  display: inline-block;
  background: transparent;
}

.btn p::after {
  content: url(../../images/right_arrow.svg);
  display: inline-block;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 5px;
  right: -35px;
}

.btn.white::before {
  border: 1px solid #fff;
}

.btn.white p::after {
  content: url(../../images/right_arrow_white.svg);
}

.btn.white :hover::before {
  top: 4px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5% 0;
  background-color: #fff;
  border-bottom: 3px solid #1C73CB;
  box-shadow: 0 4px 9px rgba(112, 112, 112, 0.2);
  z-index: 5;
}

.header-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
  margin-bottom: 10px;
}

.logo {
  display: block;
  width: 240px;
  height: 70px;
  height: auto;
}

.header-btn-wrapper {
  text-align: right;
}

.header-btn-wrapper .link-contact {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1.5;
}

.header-btn-wrapper .link-contact::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/mail-blue.svg);
  background-size: contain;
}

.header-btn-wrapper .header-btn {
  display: inline-block;
  width: 200px;
  line-height: 50px;
  margin-right: 30px;
  background-color: #fff;
  border: 1px solid #FF952B;
  color: #FF952B;
  text-align: center;
  border-radius: 5px;
}

.header-btn-wrapper .header-btn:hover {
  opacity: 0.8;
}

.header-btn-wrapper .header-btn:last-child {
  margin-right: 0;
  background-color: #FF952B;
  border: 1px solid #fff;
  color: #fff;
}

.header-nav {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-nav .nav-list {
  justify-content: flex-end;
}

.header-nav .nav-list .nav-item {
  margin-right: 30px;
}

.header-nav .nav-list .nav-item:last-child {
  margin-right: 0;
}

.header-nav .nav-list .nav-item a {
  display: block;
}

.barger-btn {
  display: none;
}

body .header.open {
  overflow: hidden;
}

.fv {
  position: relative;
  width: 100%;
  max-height: 100%;
  background-image: url(../images/bg-yellowdot.png);
}

.fv .fv-img {
  width: 100%;
  max-width: 1200px;
  padding-top: 20px;
  height: 100%;
  margin: 0 auto;
}

.fv .fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv .copy-wrapper {
  position: absolute;
  left: 8%;
  top: 73%;
  width: 30%;
  padding: 2% 0;
  background-color: #fff;
  border: 1px solid #5CE6E6;
  text-align: center;
  box-shadow: 15px 15px 0 #5CE6E6;
}

.fv .copy-wrapper .copy-jp {
  font-family: vdl-logomaru, sans-serif;
  font-size: 2.8vw;
  margin-bottom: 1.2vw;
}

.fv .copy-wrapper .copy-en {
  font-size: 1.3vw;
}

.fv .fv-figure {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: block;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  object-fit: contain;
}

.about-us.frame {
  background-image: url(../images/bg-top01.svg);
}

.about-us-text {
  margin-bottom: 30px;
  line-height: 2;
}

.about-us-text:last-of-type {
  margin-bottom: 0;
}

.necessity-list {
  text-align-last: left;
}

.necessity-item {
  margin-bottom: 40px;
}

.necessity-item:last-of-type {
  margin-bottom: 0;
}

.necessity-wrapper .necessity-text {
  width: 50%;
}

.necessity-wrapper .necessity-img {
  width: 42%;
}

.necessity-wrapper .necessity-img img {
  min-height: 200px;
  border-radius: 3%;
}

.feature.feature.frame {
  background-image: url(../images/bg-top02.svg);
}

.feature .btn {
  margin-top: 25px;
}

.feature-list_top {
  flex-wrap: wrap;
  color: #333;
}

.feature-list_top .feature-item {
  position: relative;
  width: 47%;
  height: 42%;
  max-height: 315px;
  margin-bottom: 40px;
  padding: 25px 0 40px;
  background-color: #fff;
  border: 3px solid;
  border-radius: 3%;
  z-index: 2;
}

.feature-list_top .feature-item:nth-of-type(1) {
  border-color: #A1E65C;
  box-shadow: 15px 15px 0 #A1E65C;
}

.feature-list_top .feature-item:nth-of-type(2) {
  border-color: #5CE6E6;
  box-shadow: 15px 15px 0 #5CE6E6;
}

.feature-list_top .feature-item:nth-of-type(3) {
  border-color: #E6E65C;
  box-shadow: 15px 15px 0 #E6E65C;
}

.feature-list_top .feature-item:nth-of-type(4) {
  border-color: #E65CE6;
  box-shadow: 15px 15px 0 #E65CE6;
}

.feature-list_top .feature-item .title {
  font-size: 2rem;
}

.feature-list_top .feature-item .feature-img {
  width: 180px;
  height: 160px;
  margin: 17px auto 0;
}

.course-lead {
  margin-bottom: 40px;
  text-align-last: left;
  line-height: 2;
}

.course-list .course-item {
  width: 47%;
  min-height: 390px;
  padding: 25px 30px 34px;
  border: 3px solid #A1E65C;
  box-shadow: 15px 15px 0 #A1E65C;
  border-radius: 3%;
}

.course-list .course-item:nth-of-type(2) {
  border-color: #5CE6E6;
  box-shadow: 15px 15px 0 #5CE6E6;
}

.course-list .course-item .title {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.course-list .course-item .course-img {
  margin-bottom: 20px;
}

.course-list .course-item .course-img img {
  border-radius: 3%;
}

.flow_top.frame {
  background-image: url(../images/bg-top03.svg);
}

.flow_top .flow-item {
  position: relative;
  width: 200px;
  height: 207px;
  padding: 25px 15px 0;
  background-color: #fff;
  border: 3px solid #A1E65C;
  border-radius: 5%;
  color: #333;
}

.flow_top .flow-item::after {
  content: url(../images/right_arrow_green.svg);
  position: absolute;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  display: inline-block;
  width: 34px;
  height: 34px;
}

.flow_top .flow-item:last-of-type::after {
  content: none;
}

.flow_top .flow-item .num {
  position: absolute;
  top: -35px;
  left: 0;
  color: #A1E65C;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.flow_top .flow-item .title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 10px auto 15px;
  background-color: #5CE6E6;
}

.classroom-list .classroom-item {
  margin-bottom: 40px;
  text-align-last: left;
}

.classroom-list .classroom-item .classroom-text {
  width: 49%;
}

.classroom-list .classroom-item .classroom-img {
  width: 42%;
  height: 200px;
}

.classroom-list .classroom-item .classroom-img img {
  border-radius: 3%;
}

.message-content {
  text-align-last: left;
}

.message-content .message-img {
  width: 42%;
  height: 350px;
}

.message-content .message-img img {
  border-radius: 3%;
}

.message-content .message-text {
  width: 46%;
}

.message-content .message-text p {
  margin-bottom: 20px;
}

.teachers.frame {
  background-image: url(../images/bg-about-teacher.svg);
}

.teachers-list {
  text-align-last: left;
}

.teachers-list .teachers-item {
  margin-bottom: 40px;
}

.teachers-list .teachers-item .teacher-name {
  margin-bottom: 8px;
}

.teachers-list .teachers-item .teacher-img {
  width: 42%;
}

.teachers-list .teachers-item .teacher-img img {
  min-height: 200px;
  border-radius: 3%;
}

.teachers-list .teachers-item .teacher-text {
  width: 46%;
}

.company-info {
  width: 100%;
}

.company-info .company-info-item {
  display: block;
  width: 100%;
  max-width: 700px;
  padding: 25px;
  border-bottom: 1px solid #707070;
}

.company-info .company-info-item th {
  width: 150px;
}

.company-info .company-info-item td {
  padding-left: 25px;
}

.feature.feature.frame {
  background-image: url(../images/bg-feature.svg);
}

.feature-list .feature-item {
  margin-bottom: 55px;
  padding: 25px 70px 40px;
  background-color: #fff;
  border: 3px solid #A1E65C;
  border-radius: 3%;
  color: #333;
  box-shadow: 15px 15px 0 #A1E65C;
}

.feature-list .feature-item:nth-of-type(2) {
  border: 3px solid #5CE6E6;
  box-shadow: 15px 15px 0 #5CE6E6;
}

.feature-list .feature-item:nth-of-type(2) .title-wrapper {
  background-color: #5CE6E6;
}

.feature-list .feature-item:nth-of-type(3) {
  border: 3px solid #E6E65C;
  box-shadow: 15px 15px 0 #E6E65C;
}

.feature-list .feature-item:nth-of-type(3) .title-wrapper {
  background-color: #E6E65C;
}

.feature-list .feature-item:nth-of-type(4) {
  border: 3px solid #E65CE6;
  box-shadow: 15px 15px 0 #E65CE6;
}

.feature-list .feature-item:nth-of-type(4) .title-wrapper {
  background-color: #E65CE6;
}

.feature-list .feature-item .title-wrapper {
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
  background-color: #A1E65C;
}

.feature-list .feature-item .title-wrapper .title {
  background-color: #fff;
}

.feature-list .feature-item .feature-content {
  text-align: left;
}

.feature-list .feature-item .feature-content .feature-img {
  width: 160px;
  height: 180px;
}

.feature-list .feature-item .feature-content .feature-text {
  width: 60%;
}

.feature-step {
  display: block;
  margin-top: 40px;
}

.course.frame {
  background-image: url(../images/bg-course.svg);
}

.course-list.second {
  margin-bottom: 150px;
}

.course-list.second .course-item {
  background-color: #fff;
  color: #333;
}

.course-desc-list {
  text-align: left;
}

.course-desc-list:first-of-type {
  margin-bottom: 70px;
}

.course-desc-item {
  margin-bottom: 40px;
}

.course-desc-item:last-of-type {
  margin-bottom: 0;
}

.course-desc-item .course-desc-wrapper .course-desc-img {
  width: 42%;
}

.course-desc-item .course-desc-wrapper .course-desc-img img {
  border-radius: 3%;
}

.course-desc-item .course-desc-wrapper .curse-desc-text {
  width: 46%;
}

.course-desc-item .fee-list {
  width: 100%;
  color: #333;
}

.course-desc-item .fee-list .fee-row {
  display: block;
  width: 100%;
  letter-spacing: -6px;
  background-color: #fff;
}

.course-desc-item .fee-list .fee-row th {
  display: inline-block;
  width: 32%;
  padding: 25px;
  letter-spacing: 0;
  background-color: #D4FAAE;
}

.course-desc-item .fee-list .fee-row:nth-child(even) {
  background-color: #fff;
}

.course-desc-item .fee-list .fee-row:nth-child(even) th {
  background-color: #B4F0F0;
}

.course-desc-item .fee-list .fee-row td {
  display: inline-block;
  width: 68%;
  padding: 25px;
  border-bottom: 1px solid lightgray;
  letter-spacing: 0;
}

.course-desc-item .fee-list .fee-row:nth-child(4) td {
  padding: 38px 25px;
}

.classroom.frame {
  background-image: url(../images/bg-classroom.svg);
}

.classroom-gallery {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  margin-bottom: 70px;
}

.classroom-gallery .gallery-img {
  border-radius: 3%;
}

.classroom-gallery .gallery-img.big {
  grid-row: 1/3;
  border-radius: 2%;
}

.classroom-list .classroom-item.mb-25 {
  margin-bottom: 25px;
}

.contact-list {
  text-align: left;
}

.form ul .contact-item,
.form ul .documents-item,
.form ul .application-item {
  margin-bottom: 20px;
}

.form ul .contact-item:last-of-type,
.form ul .documents-item:last-of-type,
.form ul .application-item:last-of-type {
  margin-bottom: 50px;
}

.form ul .contact-item label,
.form ul .documents-item label,
.form ul .application-item label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  outline: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #1C73CB;
}

textarea {
  display: inline-block;
  max-width: 100%;
  min-height: 135px;
  resize: vertical;
}

::placeholder {
  color: #c6c6c6;
}

.btn-submit {
  width: 240px;
  line-height: 50px;
  background-color: #FF952B;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}

.btn-submit:hover {
  opacity: .8;
}

.documents-list {
  text-align: left;
}

.application-list {
  text-align: left;
}

.application-list .date-list.flex,
.application-list .time-list.flex {
  justify-content: flex-start;
  column-gap: 50px;
}

select {
  position: relative;
  width: 175px;
}

.arrow {
  position: relative;
  display: inline-block;
}

.arrow::after {
  content: url(../../images/down-arrow.svg);
  position: absolute;
  top: 12px;
  right: 10px;
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.footer {
  text-align: center;
}

.footer-contact {
  min-height: 240px;
  padding: 50px 0;
  background-image: url(../images/bg-footer-link.jpg);
  background-color: #1C73CB;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-contact p {
  margin-bottom: 40px;
  color: #fff;
  font-size: 2rem;
}

.footer-contact .link-contact {
  display: inline-block;
  width: 240px;
  padding: 15px 35px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  text-align: right;
  border-radius: 5px;
}

.footer-contact .link-contact p {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  color: #fff;
  font-size: 2rem;
}

.footer-contact .link-contact p::before {
  content: url(../images/mail_white.svg);
  position: absolute;
  display: inline-block;
  top: -5px;
  left: -50px;
}

.footer-application {
  padding: 100px 0;
}

.footer-application .footer-btn-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.footer-application .footer-btn-wrapper .footer-btn {
  display: inline-block;
  width: 42%;
  height: 130px;
  padding: 45px 0;
  background-color: #fff;
  border: 1px solid #FF952B;
  color: #FF952B;
  font-size: 2.8rem;
  font-weight: 500;
  border-radius: 5px;
}

.footer-application .footer-btn-wrapper .footer-btn:last-of-type {
  padding: 24px 0;
  background-color: #FF952B;
  border: 1px solid #FF952B;
  color: #fff;
  line-height: 42px;
}

.footer-application .footer-btn-wrapper .footer-btn:hover {
  opacity: 0.8;
}

.footer-rights {
  padding: 15px 0;
}

.footer-rights .sns {
  max-width: 1000px;
  margin: 0 auto 15px;
  justify-content: flex-start;
}

.footer-rights .sns .sns-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.footer-rights .logo {
  width: 240px;
  height: 70px;
  margin: 0 auto 15px;
}

@media (max-width: 780px) {
  .flex {
    flex-direction: column;
  }
  .flex.reverse {
    flex-direction: column;
  }
  .br-mobile {
    display: block;
  }
  section {
    padding: 50px 0 100px;
  }
  .section-inner {
    padding: 0 5%;
  }
  .page-title {
    padding-top: 245px;
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-title p {
    font-size: 1rem;
    opacity: 0.5;
  }
  .section-title::before {
    top: 7px;
  }
  .section-title::after {
    top: 7px;
  }
  .section-sub-title {
    display: block;
    font-size: 1.7rem;
  }
  .header .header-btn-wrapper {
    display: none;
  }
  .header .header-nav {
    display: none;
  }
  .header.open .header-btn-wrapper {
    display: block;
    width: 100%;
    padding-top: 70px;
    text-align: center;
  }
  .header.open .header-btn-wrapper .link-contact {
    margin-bottom: 20px;
    text-align: center;
  }
  .header.open .header-btn-wrapper .header-btn {
    margin: 0 auto 20px;
  }
  .header.open .header-nav {
    display: block;
    width: 100%;
    height: 100vh;
  }
  .header.open .header-nav .nav-list .nav-item {
    margin: 0 auto 20px;
  }
  .barger-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    display: block;
    width: 45px;
    height: 40px;
    border: 1px solid #1C73CB;
    border-radius: 5px;
    text-align: center;
  }
  .barger-btn .bar-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 4px 0 10px;
  }
  .barger-btn .bar-wrapper .char {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    color: #1C73CB;
    font-size: 1rem;
    line-height: 1.5;
  }
  .barger-btn .bar-wrapper .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #1C73CB;
    transition: .5s;
    transform-origin: left top;
  }
  .barger-btn .bar-wrapper .bar:last-of-type {
    top: 27px;
  }
  .header.open .bar-wrapper .bar {
    transform: rotate(30deg) translateX(-11px) translateY(7px);
  }
  .header.open .bar-wrapper .bar:last-of-type {
    transform-origin: left top;
    transform: rotate(-30deg) translateX(-15px);
  }
  /*====================
TOPページ_mobile
====================*/
  .fv .fv-img {
    width: 100%;
    padding-top: 50px;
  }
  .fv .fv-img img {
    min-width: 360px;
  }
  .fv .copy-wrapper {
    top: 73%;
    left: 5%;
    min-width: 200px;
    padding: 1.5% 10px;
    box-shadow: 5px 5px 0 #5CE6E6;
  }
  .about-us.frame {
    background-image: url(../images/bg-top01_mobile.svg);
  }
  .about-us-text {
    text-align: left;
  }
  .necessity-item {
    margin-bottom: 30px;
  }
  .necessity-wrapper {
    flex-direction: column-reverse;
  }
  .necessity-wrapper.reverse {
    flex-direction: column-reverse;
  }
  .necessity-wrapper .necessity-text {
    width: 100%;
  }
  .necessity-wrapper .necessity-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .feature.feature.frame {
    background-image: url(../images/bg-top02_mobile.svg);
  }
  .feature-list_top {
    flex-direction: row;
  }
  .feature-list_top .feature-item {
    min-height: 155px;
    padding: 15px 5px 20px;
  }
  .feature-list_top .feature-item .title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .feature-list_top .feature-item .feature-img {
    width: 93px;
    height: 83px;
    margin-top: 8px;
  }
  .course-list .course-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .flow-chart {
    align-items: center;
  }
  .flow_top.frame {
    background-image: url(../images/bg-top03_mobile.svg);
  }
  .flow_top .flow-item {
    margin-bottom: 75px;
  }
  .flow_top .flow-item:last-child {
    margin-bottom: 0;
  }
  .flow_top .flow-item::after {
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .classroom-list .classroom-item .classroom-text {
    width: 100%;
    margin-bottom: 20px;
  }
  .classroom-list .classroom-item .classroom-text p {
    font-size: 1.4rem;
  }
  .classroom-list .classroom-item .classroom-img {
    width: 100%;
  }
  /*====================
aboutページ_mobile
====================*/
  .message-content .message-img {
    width: 100%;
    margin-bottom: 30px;
  }
  .message-content .message-text {
    width: 100%;
  }
  .teachers.frame {
    background-image: url(../images/bg-about-teachers_mobile.svg);
  }
  .teachers-list .teachers-item .teacher-name {
    margin-bottom: 6px;
  }
  .teachers-list .teachers-item .teacher-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .teachers-list .teachers-item .teacher-text {
    width: 100%;
  }
  .company-info {
    text-align: left;
  }
  .company-info .company-info-item {
    padding: 25px 15px;
    font-size: 1.4rem;
  }
  .company-info .company-info-item th {
    width: 60px;
  }
  .company-info .company-info-item td {
    padding-left: 15px;
  }
  /*====================
featureページ_mobile
====================*/
  .feature.feature.frame {
    background-image: url(../images/bg-features_mobile.svg);
  }
  .feature-list .feature-item {
    padding: 25px 15px 40px;
  }
  .feature-list .feature-item .title-wrapper .title {
    font-size: 1.6rem;
  }
  .feature-list .feature-item .feature-content .feature-img {
    margin: 0 auto 15px;
  }
  .feature-list .feature-item .feature-content .feature-text {
    width: 100%;
  }
  /*====================
courseページ_mobile
====================*/
  .course.frame {
    background-image: url(../images/bg-course_mobile.svg);
  }
  .course-list.second {
    margin-bottom: 80px;
  }
  .course-desc-item .course-desc-wrapper .course-desc-img {
    width: 100%;
  }
  .course-desc-item .course-desc-wrapper .curse-desc-text {
    width: 100%;
  }
  .course-desc-item .fee-list .fee-row th {
    width: 46%;
    padding: 25px 15px;
    font-size: 1.4rem;
  }
  .course-desc-item .fee-list .fee-row td {
    padding: 25px 15px;
    width: 54%;
    font-size: 1.3rem;
  }
  .course-desc-item .fee-list .fee-row:nth-child(4) td {
    padding: 38px 15px;
  }
  /*====================
classrooｍページ_mobile
====================*/
  .classroom.frame {
    background-image: url(../images/bg-classroom_mobile.svg);
  }
  .footer-application {
    padding: 50px 0;
  }
  .footer-application .footer-btn-wrapper {
    padding: 0 5%;
  }
  .footer-application .footer-btn-wrapper .footer-btn {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer-application .footer-btn-wrapper .footer-btn:last-child {
    margin-bottom: 0;
  }
  .footer-rights {
    padding: 15px 5%;
  }
  .footer-rights .sns {
    flex-direction: row;
  }
}
/*# sourceMappingURL=style.css.map */