@charset "UTF-8";
/* reset */
html, body, div, ol, ul, dl {
  margin: 0;
  padding: 0;
}

p, h1, h2, h3, h4, h5, h6, dt, dd, a, span, form, fieldset, legend, input, textarea, button, select {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

h1, h2, h3, h4, h5, h6, dt, dd {
  font-weight: normal;
}

table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border: none;
}

td, th, caption, thead {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
}

ol, ul, li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  color: #333333;
  text-decoration: none;
}

/* base */
html {
  font-size: 62.5%;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

* {
  box-sizing: border-box;
}

@media (min-width: 901px) {
  a {
    transition: .3s;
  }
  a:hover {
    opacity: .7;
  }
  .hover {
    transition: .3s;
    cursor: pointer;
  }
  .hover:hover {
    opacity: .7;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .pc {
    display: none;
  }
}

@media (min-width: 901px) {
  .sp {
    display: none;
  }
}

.flex {
  display: flex;
}

.flex.between {
  justify-content: space-between;
}

.flex.center {
  align-items: center;
}

.flex.end {
  justify-content: flex-end;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .inner {
    max-width: 100%;
    padding: 0 18px;
  }
}

h1, h3 {
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 5rem;
}

@media (max-width: 900px) {
  h2 {
    font-size: 3.7rem;
  }
}

h3 {
  font-size: 2.8rem;
}

@media (max-width: 900px) {
  h3 {
    font-size: 1.9rem;
  }
}

/* menu */
.menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
}

.menu .menu_btn {
  position: absolute;
  right: 29px;
  top: 29px;
  width: 50px;
  height: 38px;
  z-index: 1002;
}

@media (max-width: 900px) {
  .menu .menu_btn {
    width: 35px;
    height: 28px;
    top: 18px;
    right: 18px;
  }
}

.menu .menu_btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 6px;
  left: 0;
  background: #f3471c;
  border-radius: 3px;
  transition: .5s ease-in-out;
}

@media (max-width: 900px) {
  .menu .menu_btn span {
    height: 5px;
  }
}

.menu .menu_btn span:first-child {
  top: 0;
}

.menu .menu_btn span:nth-child(2) {
  top: 16px;
}

@media (max-width: 900px) {
  .menu .menu_btn span:nth-child(2) {
    top: 11px;
  }
}

.menu .menu_btn span:last-child {
  top: 32px;
}

@media (max-width: 900px) {
  .menu .menu_btn span:last-child {
    top: 23px;
  }
}

.menu .menu_btn.open span {
  background: #000;
}

.menu .menu_btn.open span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media (max-width: 900px) {
  .menu .menu_btn.open span:nth-child(1) {
    top: 10px;
  }
}

.menu .menu_btn.open span:nth-child(2) {
  width: 0;
  left: 50%;
}

.menu .menu_btn.open span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 900px) {
  .menu .menu_btn.open span:nth-child(3) {
    top: 10px;
  }
}

.menu .menu_btn.open + nav {
  right: 0;
}

.menu .menu_btn.open + nav + .background {
  display: block;
}

.menu nav {
  transition: .6s;
  width: 420px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -420px;
  background: #fff;
  z-index: 1001;
  padding: 143px 60px 60px;
  overflow: auto;
}

@media (max-width: 900px) {
  .menu nav {
    width: 247px;
    right: -247px;
    padding: 73px 25px 25px;
  }
}

.menu nav li {
  margin-bottom: 50px;
}

@media (max-width: 900px) {
  .menu nav li {
    margin-bottom: 23px;
  }
}

.menu nav li a {
  font-weight: bold;
  font-size: 1.8rem;
  display: block;
}

@media (max-width: 900px) {
  .menu nav li a {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }
}

.menu .btn {
  margin-top: 74px;
}

@media (max-width: 900px) {
  .menu .btn {
    margin-top: 27px;
  }
}

.menu .btn a {
  text-align: center;
  padding: 18px 0;
  display: block;
  background: #f3471c;
  border-radius: 10px;
  color: #fff;
}

@media (max-width: 900px) {
  .menu .btn a {
    font-size: 1.2rem;
    border-radius: 5px;
    padding: 13px 0;
  }
}

.menu .background {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

/* main */
.main {
  background: url("../image/main_bg.png") no-repeat center top;
  background-size: cover;
}

@media (max-width: 900px) {
  .main {
    background: url("../image/main_bg_sp.png") no-repeat center top;
    background-size: cover;
  }
}

.main .inner {
  max-width: 1040px;
  height: 780px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 900px) {
  .main .inner {
    max-width: 100%;
    height: 550px;
    padding: 0 18px;
  }
}

.main .inner .h1_wrap {
  background: rgba(255, 255, 255, 0.85);
  padding: 53px 88px;
}

@media (max-width: 900px) {
  .main .inner .h1_wrap {
    margin-bottom: 20px;
    padding: 35px 20px;
  }
}

.main .inner .h1_wrap .ttl_txt {
  font-size: 2.6rem;
  color: #f3471c;
  margin: 0 auto 20px;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1;
}

.main .inner .h1_wrap .ttl_txt span {
  position: relative;
  display: inline-block;
}

.main .inner .h1_wrap .ttl_txt span:before, 
.main .inner .h1_wrap .ttl_txt span:after {
  content: "";
  display: block;
  width: 1px;
  height: 25px; 
  background-color: #f3471c;
  position: absolute;
  top: 50%;
}
.main .inner .h1_wrap .ttl_txt span:before {
  left: -25px;
  transform: translate(0, -50%) rotateZ(-26deg);
} 
.main .inner .h1_wrap .ttl_txt span:after {
  right: -20px;
  transform: translate(0, -50%) rotateZ(26deg);
}

@media (max-width: 900px) {
  .main .inner .h1_wrap .ttl_txt {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .main .inner .h1_wrap .ttl_txt span:before, 
  .main .inner .h1_wrap .ttl_txt span:after {
    height: 20px; 
  }
  .main .inner .h1_wrap .ttl_txt span:before {
    left: -15px;
  } 
  .main .inner .h1_wrap .ttl_txt span:after {
    right: -15px;
  }
}

.main .inner .h1_wrap h1 {
  font-size: 4.4rem;
  color: #209bb8;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 3px;
}

@media (max-width: 900px) {
  .main .inner .h1_wrap h1 {
    font-size: 3.3rem;
    letter-spacing: 1px;
  }
}

.main .inner .h1_wrap p {
  font-size: 2rem;
  text-align: center;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 25px;
}

@media (max-width: 900px) {
  .main .inner .h1_wrap p {
    font-size: 1.5rem;
    letter-spacing: 0;
    margin-top: 25px;
    line-height: 1.6;
  }
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.main .inner .scroll {
  animation: move-y 1s infinite alternate ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
  height: 90px;
}

@media (max-width: 900px) {
  .main .inner .scroll {
    width: 125px;
    height: 85px;
  }
}

.main .inner .scroll img {
  width: 140px;
  height: 90px;
}

@media (max-width: 900px) {
  .main .inner .scroll img {
    width: 125px;
    height: 85px;
  }
}

/* popup */
.popup_wrap {
  position: fixed;
  bottom: 90px;
  right: 0;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 900px) {
  .popup_wrap {
    bottom: 75px;
    width: 60px;
    transition: 0.3s;
    padding: 10px 0 10px 10px;
  }
  .popup_wrap.open {
    width: 304px;
  }
}

.popup {
  background: #fff;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px 0 0 20px;
  padding: 25px 20px;
  border-top: solid 1px #f3471c;
  border-left: solid 1px #f3471c;
  border-bottom: solid 1px #f3471c;
}

@media (max-width: 900px) {
  .popup {
    width: 294px;
    border-radius: 10px 0 0 10px;
    padding: 15px 18px 15px 15px;
  }
  .popup dl {
    display: flex;
  }
}

.popup dt {
  color: #f3471c;
  font-size: 1.8rem;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
}

@media (max-width: 900px) {
  .popup dt {
    font-size: 1.4rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-right: 14px;
  }
}

.popup dd p {
  margin: 8px 0 15px;
  line-height: 1.7;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .popup dd p {
    font-size: 1.2rem;
    margin: 0 0 10px;
  }
}

.popup dd .btn a {
  border: 1px solid #f3471c;
  color: #f3471c;
  display: block;
  width: 180px;
  margin-left: auto;
  padding: 6px 0;
  text-align: center;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .popup dd .btn a {
    font-size: 1.2rem;
    width: 150px;
    padding: 10px 0;
  }
}

.popup dd .btn a span {
  padding-right: 20px;
  background: url("../image/btn_icon.svg") no-repeat right center;
  background-size: 14px 7px;
}

@media (max-width: 900px) {
  .popup dd .btn a span {
    padding-right: 15px;
    background-size: 12px 5px;
  }
}

/* problem */
.problem {
  background: url("../image/problem_bg.png") no-repeat center top;
  background-size: cover;
}

@media (max-width: 900px) {
  .problem {
    background: url("../image/problem_bg_sp.png") no-repeat center top;
    background-size: cover;
  }
}

.problem .inner {
  padding-top: 140px;
  padding-bottom: 84px;
}

@media (min-width: 901px) {
  .problem .inner {
    max-width: 1564px;
    background: url("../image/problem_img.png") no-repeat left 32px bottom 880px;
    background-size: 47.3%;
  }
}

@media (max-width: 900px) {
  .problem .inner {
    padding-top: 60px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.problem .box {
  background: #606060;
  margin-left: auto;
  margin-right: 95px;
  padding: 64px 60px 80px;
  color: #fff;
  border-radius: 20px;
  width: 42.7%;
  position: relative;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

.problem .box:after {
  content: "";
  position: absolute;
  background: url("../image/problem_icon.svg") no-repeat;
  background-size: 75px 82px;
  width: 75px;
  height: 82px;
  top: 0;
  bottom: 0;
  left: -55px;
  margin: auto;
}

@media (max-width: 900px) {
  .problem .box:after {
    background: url("../image/problem_icon_sp.svg") no-repeat;
    background-size: 26px 23px;
    width: 26px;
    height: 23px;
    top: auto;
    bottom: -20px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 900px) {
  .problem .box {
    width: calc(100% - 36px);
    border-radius: 10px;
    margin: 0 auto;
    padding: 27px 25px 32px;
  }
}

.problem .box h2 {
  text-align: center;
}

.problem .box h3 {
  text-align: center;
  margin: 10px 0 30px;
}

@media (max-width: 900px) {
  .problem .box h3 {
    margin: 4px 0 10px;
  }
}

.problem .box p {
  line-height: 1.8;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .problem .box p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.problem .img {
  text-align: center;
}

.problem .img2 {
  margin-top: 86px;
}

@media (max-width: 900px) {
  .problem .img2 {
    margin-top: 28px;
    padding: 0 12px 58px;
  }
}

/* about */
.about {
  background: url("../image/about_bg.png") no-repeat center top;
  background-size: cover;
  padding-top: 92px;
  padding-bottom: 87px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about {
    background: #24aecf;
    padding-top: 55px;
    padding-bottom: 48px;
  }
}

.about p:first-child {
  font-size: 2rem;
  background: url("../image/about_icon.svg") no-repeat center bottom 20px;
  background-size: 48px 20px;
  padding-bottom: 65px;
}

@media (max-width: 900px) {
  .about p:first-child {
    font-size: 1.3rem;
    letter-spacing: 0px;
    background-size: 33px 15px;
    background-position: center bottom 5px;
    padding-bottom: 30px;
  }
}

.about p:first-child span {
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
}

.about p:nth-child(2) {
  font-size: 2.4rem;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .about p:nth-child(2) {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 17px;
    line-height: 1.8;
  }
}

.about p:nth-child(2) span {
  padding-bottom: 5px;
  background: url("../image/border.png") repeat-x bottom;
  background-size: auto 2px;
}

@media (max-width: 900px) {
  .about p:nth-child(2) span {
    padding-bottom: 3px;
    background-size: auto 1px;
  }
}

/* solution */
.solution {
  background: url("../image/solution_bg.png") no-repeat center top;
  background-size: cover;
}

@media (max-width: 900px) {
  .solution {
    background: url("../image/solution_bg_sp.png") no-repeat center top;
    background-size: cover;
  }
}

.solution .inner {
  padding-top: 120px;
  padding-bottom: 84px;
}

@media (min-width: 901px) {
  .solution .inner {
    max-width: 1564px;
  }
}

@media (max-width: 900px) {
  .solution .inner {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.solution .box {
  background: #fff;
  margin-left: 10px;
  margin-right: auto;
  padding: 64px 60px 80px;
  border-radius: 20px;
  width: 42.7%;
  position: relative;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .solution .box {
    width: 100%;
    border-radius: 10px;
    margin-left: 0;
    padding: 27px 25px 32px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  }
}

.solution .box h2 {
  text-align: center;
  color: #209bb8;
}

.solution .box h3 {
  text-align: center;
  margin: 10px 0 30px;
}

@media (max-width: 900px) {
  .solution .box h3 {
    margin: 4px 0 10px;
  }
}

.solution .box p {
  line-height: 1.8;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .solution .box p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.solution .img {
  margin-top: 5px;
  text-align: center;
}

.solution .img img {
  width: 100%;
}

.solution .img2 {
  margin-top: 90px;
}

@media (max-width: 900px) {
  .solution .img2 {
    margin-top: 0;
    padding: 0 12px 50px;
  }
}

/* features curriculum */
.features {
  padding-top: 84px;
  padding-bottom: 100px;
  background: url("../image/features_bg.png") repeat top 35px left;
}

@media (max-width: 900px) {
  .features {
    padding-top: 45px;
    padding-bottom: 49px;
    background-size: 25px 25px;
  }
}

.features h2 {
  color: #209bb8;
  text-align: center;
}

@media (max-width: 900px) {
  .features h2 {
    letter-spacing: -0.5px;
  }
}

.features h3 {
  margin-top: 12px;
  text-align: center;
}

.features .txt1 {
  text-align: center;
  line-height: 2.2;
  margin: 45px 0 100px;
}

.features .curriculum {
  margin-top: 105px;
}

@media (max-width: 900px) {
  .features .curriculum {
    margin-top: 30px;
  }
}

.features .curriculum_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  /* margin-bottom: 115px; */
}

@media (max-width: 900px) {
  .features .curriculum_list {
    display: block;
    margin-top: 20px;
    /* margin-bottom: 40px; */
    padding: 0 15px;
  }
}

.features .curriculum_list.curriculum_list2 {
  margin-bottom: 115px;
}

@media (max-width: 900px) {
  .features .curriculum_list.curriculum_list2 {
    margin-bottom: 40px;
    display: flex;
  }
}

.features .curriculum_list-title {
  display: block;
  width: 100%;
  font-size: 2.6rem;
  margin: 0 0 15px;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #f3471c;
}

@media (max-width: 900px) {
  .features .curriculum_list-title {
    font-size: 1.8rem;
  }
}

.features .curriculum_list-title_mb {
  margin-bottom: 5.5%;
}

.features .curriculum_list li {
  position: relative;
  width: 48%;
  box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 20px;
  margin-bottom: 4%;
  padding: 46px 35px 30px;
}

.features .curriculum_list li.sql_pd {
  padding: 46px 50px 46px;
}

.features .curriculum_list li.course_pt {
  padding-top: 11%;
}

.features .curriculum_list li.course_pt2 {
  padding-top: 12.5%;
}

@media (max-width: 900px) {
  .features .curriculum_list li {
    width: 100%;
    border-radius: 10px;
    padding: 40px 24px !important;
    margin-bottom: 20px;
  }
  .features .curriculum_list li.lr20 {
    padding: 40px 20px!important;
  }
}

@media (max-width: 900px) {
  .features .curriculum_list.curriculum_list2 li {
    width: 48%;
  }
}

@media (max-width: 900px) {
  .features .curriculum_list.curriculum_list2 li .mt15 {
    margin-top: 15px;
  }
}
.features .curriculum_list li:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .features .curriculum_list li:last-child {
    margin-bottom: 20px !important;
  }
}

.features .curriculum_list li .course {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  border-radius: 20px 20px 0 0;
  content: "";
}

@media (max-width: 900px) {
  .features .curriculum_list li .course {
    border-radius: 10px 10px 0 0;
    height: 40px;
  }
}

.features .curriculum_list li .course.bg1 {
  background: #56bd6c;
}

.features .curriculum_list li .course.bg2 {
  background: #e78944;
}

.features .curriculum_list li .course p {
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro";
  /* font-family: "ヒラギノ角ゴ ProN W6", sans-serif; */
  font-weight: bold;
  line-height: 70px;
}

@media (max-width: 900px) {
  .features .curriculum_list li .course p {
    font-size: 1.8rem;
    line-height: 40px;
  }
}

.features .curriculum_list li h4 {
  font-size: 2.4rem;
  color: #209bb8;
  text-align: center;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  margin-top: 22px;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .features .curriculum_list li h4 {
    font-size: 1.7rem;
    margin: 15px 0 10px;
  }
}

.features .curriculum_list li p {
  line-height: 1.9;
}

@media (max-width: 900px) {
  .features .curriculum_list li p {
    font-size: 1.3rem;
  }
}

.features .curriculum_list li .img {
  text-align: center;
}

.features .curriculum_list-big {
  width: 100% !important;
  margin-bottom: 4% !important;
  text-align: center;
}

.features .curriculum_list-big_mb {
  margin-bottom: 7%!important;
}

@media (max-width: 900px) {
  .features .curriculum_list-big {
    text-align: left;
    margin-bottom: 35px !important;
  }
}

@media (min-width: 901px) {
  .features .flex-list {
    display: flex;
  }
  .features .flex-list .text {
    text-align: left;
  }
  .features .curriculum_list li.flex-list .text h4 {
    text-align: left;
  }
}

.features .period .period_list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .features .period .period_list {
    display: block;
    margin-top: 20px;
    padding: 0;
  }
}

.features .period .period_list li {
  border-radius: 20px;
  padding: 50px 45px;
  margin-right: 2%;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  .features .period .period_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 20px;
    border-radius: 10px;
  }
}

.features .period .period_list li h4 {
  font-size: 2.4rem;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  margin-bottom: 11px;
}

@media (max-width: 900px) {
  .features .period .period_list li h4 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

.features .period .period_list li p {
  font-size: 1.8rem;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68%;
}

@media (max-width: 900px) {
  .features .period .period_list li p {
    font-size: 1.3rem;
    height: auto;
    line-height: 1.5;
  }
}

.features .period .period_list .html {
  background: #47c0b6;
  width: 18%;
}

@media (max-width: 900px) {
  .features .period .period_list .html {
    width: 100%;
  }
}

.features .period .period_list .sql {
  background: #479fc0;
  width: 18%;
}

@media (max-width: 900px) {
  .features .period .period_list .sql {
    width: 100%;
  }
}

.features .period .period_list .php {
  background: #c09747;
  width: 25%;
}

@media (max-width: 900px) {
  .features .period .period_list .php {
    width: 100%;
    padding: 18px 20px;
  }
}

.features .period .period_list .laravel {
  background: #c06347;
  margin-right: 0;
  width: 33%;
}

@media (max-width: 900px) {
  .features .period .period_list .laravel {
    width: 100%;
    padding: 28px 20px;
  }
}

/* attendance */
.attendance {
  background: url("../image/attendance_bg.png") no-repeat center top;
  background-size: cover;
  padding-top: 84px;
  padding-bottom: 100px;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  .attendance {
    background: url("../image/attendance_bg_sp.png") no-repeat center top;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

@media (max-width: 900px) {
  .attendance h2 {
    line-height: 1.1;
  }
}

.attendance h3 {
  margin: 15px auto 45px;
}

@media (max-width: 900px) {
  .attendance h3 {
    margin: 10px auto 15px;
  }
}

@media (max-width: 900px) {
  .attendance p {
    font-size: 1.3rem;
  }
}

.attendance .video {
  max-width: 950px;
  margin: 50px auto 0;
}

@media (max-width: 900px) {
  .attendance .video {
    margin: 35px auto 0;
  }
}

.attendance .video img {
  display: block;
  width: 100%;
  height: 100%;
}

.attendance video {
  width: 100%;
  height: 100%;
}

/* price */
.price {
  padding: 85px 0 90px;
  background: #e3f6fa;
}

@media (max-width: 900px) {
  .price {
    padding: 47px 0 54px;
  }
}

.price h2 {
  color: #209bb8;
  text-align: center;
}

.price h3 {
  margin-top: 12px;
  margin-bottom: 38px;
  text-align: center;
}

@media (max-width: 900px) {
  .price h3 {
    margin-top: 0;
    margin-bottom: 12px;
  }
}

.price h3 + p {
  margin-bottom: 38px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 900px) {
  .price h3 + p {
    margin-bottom: 33px;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.price .price-list_mb {
  margin-bottom: 13px;
}

.price h3 + p .red {
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #f3471c;
}

@media (max-width: 900px) {
  .price h3 + p .red {
    font-size: 1.4rem;
  }
}

.price h3 + p .small {
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .price h3 + p .small {
    font-size: 1.1rem;
  }
}

.price .course_list {
  margin-bottom: 35px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .price .course_list {
    margin-bottom: 20px;
    display: block;
    padding: 0 15px;
  }
}

.price .course_list li {
  width: 31.2%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .price .course_list li {
    width: 100%;
    min-height: 244px;
    margin: auto;
    border-radius: 10px;
  }
}

@media (max-width: 900px) {
  .price .course_list li.laravel .txt {
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .price .course_list li + li {
    margin-top: 16px;
  }
}

.price .course_list h4 {
  margin-bottom: 25px;
  padding: 20px 0 16px;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 900px) {
  .price .course_list h4 {
    margin-bottom: 20px;
    padding: 15px 0 12px;
    font-size: 1.5rem;
  }
}

.price .course_list h4 span {
  margin-top: 5px;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
}

@media (max-width: 900px) {
  .price .course_list h4 span {
    font-size: 1.4rem;
    margin-top: 0;
  }
}

.price .course_list h4 + p {
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .price .course_list h4 + p {
    margin-bottom: 11px;
    font-size: 1.3rem;
  }
}

.price .course_list dl {
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .price .course_list dl {
    margin-bottom: 3px;
  }
}

.price .course_list dt {
  margin-bottom: 10px;
  padding: 5px 31px;
  display: inline-block;
  border-radius: 35px;
}

@media (max-width: 900px) {
  .price .course_list dt {
    margin-bottom: 3px;
    padding: 4px 22px;
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .price .course_list dd {
    font-size: 1.3rem;
  }
}

.price .course_list .txt {
  margin: auto 0 30px;
  font-size: 2.8rem;
}

@media (max-width: 900px) {
  .price .course_list .txt {
    margin-top: 5px;
    margin-bottom: 18px;
    font-size: 1.9rem;
  }
}

.price .course_list .txt span {
  font-size: 1.8rem;
}

@media (max-width: 900px) {
  .price .course_list .txt span {
    font-size: 1.4rem;
  }
}

.price .course_list li.basic h4 {
  background: #47c0b6;
}

.price .course_list li.basic dt {
  background: #d6f4f2;
}

.price .course_list li.laravel h4 {
  background: #c09747;
}

.price .course_list li.laravel dt {
  background: #f7f0e4;
}

.price .course_list li.all h4 {
  background: #c06347;
}

.price .course_list li.all dt {
  background: #f9e5df;
}

.price .note {
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.857;
  text-indent: -1em;
  color: #f3471c;
}

@media (max-width: 900px) {
  .price .note {
    font-size: 1.1rem;
  }
}

.price .note::before {
  content: "※";
}

.price .indent {
  display: inline-block;
  text-indent: 1em;
}

.price .subsidy {
  margin-top: 102px;
}

@media (max-width: 900px) {
  .price .subsidy {
    margin-top: 30px;
  }
}

.price .subsidy h3 {
  margin-bottom: 50px;
}

@media (max-width: 900px) {
  .price .subsidy h3 {
    margin-bottom: 15px;
  }
}

.price .subsidy li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .price .subsidy li {
    font-size: 1.2rem;
  }
}

.price .subsidy li::before {
  content: "・";
}

.price .subsidy li span {
  color: #f3471c;
}

.price .subsidy li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .price .subsidy li + li {
    margin-top: 2px;
  }
}

.price .subsidy .subsiby_box_wrap {
  margin: 45px 0 35px;
}

@media (max-width: 900px) {
  .price .subsidy .subsiby_box_wrap {
    width: 100%;
    margin: 19px 0;
  }
}

.price .subsidy .subsidy_box {
  width: 100%;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .price .subsidy .subsidy_box {
    width: 100%;
    display: block;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
  }
}

.price .subsidy tbody {
  display: block;
}

.price .subsidy tr {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .price .subsidy tr {
    display: block;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  }
}

.price .subsidy tr + tr {
  border-top: 1px solid #d3d3d3;
}

@media (max-width: 900px) {
  .price .subsidy tr + tr {
    margin-top: 15px;
    border: none;
  }
}

.price .subsidy th {
  width: 240px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  background: #479fc0;
  color: #fff;
}

@media (max-width: 900px) {
  .price .subsidy th {
    width: 100%;
    padding: 10px 0;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 10px 10px 0 0;
    display: block;
  }
}

.price .subsidy td {
  width: 100%;
  padding: 26px 40px;
}

@media (max-width: 900px) {
  .price .subsidy td {
    width: 100%;
    padding: 12px 10px;
    font-size: 1.2rem;
    background: #fff;
    border-radius: 0 0 10px 10px;
    display: block;
    text-align: center;
    letter-spacing: 0px;
  }
  .price .subsidy td span {
    text-align: right;
    display: inline-block;
  }
  .price .subsidy td.td {
    letter-spacing: 0.5px;
    padding: 18px 10px;
  }
}

/* contact */
.contact {
  padding: 85px 0 100px;
}

@media (max-width: 900px) {
  .contact {
    padding: 43px 0 60px;
  }
}

.contact h2 {
  color: #209bb8;
  text-align: center;
}

.contact h3 {
  margin-top: 12px;
  margin-bottom: 55px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact h3 {
    margin: 0 0 20px;
  }
}

.contact .form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.contact .form > input[name="contact_tab"] {
  display: none;
}

.contact .form__tab {
  width: 200px;
  margin-right: 9px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1ba2c9;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: #1ba2c9;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
}

@media (max-width: 900px) {
  .contact .form__tab {
    width: 32%;
    margin-right: 2%;
    padding: 12px 0 8px;
    font-size: 1.3rem;
    border-radius: 5px 5px 0 0;
  }
  .contact .form__tab:nth-child(3) {
    margin-right: 0;
  }
}

.contact .form > input[name="contact_tab"]:checked + label {
  background: #1ba2c9;
  border-color: #1ba2c9;
  color: #fff;
}

.contact .form .mw_wp_form {
  width: 100%;
}

.contact .form .mw_wp_form form {
  width: 100%;
}

.contact .form .mw_wp_form form > .tab_content {
  width: 100%;
  padding-top: 40px;
  display: none;
  border-top: 1px solid #1ba2c9;
}

@media (max-width: 900px) {
  .contact .form .mw_wp_form form > .tab_content {
    padding-top: 20px;
  }
}

.contact .form .mw_wp_form form .document {
  display: block;
}

.contact .form #info:checked ~ .mw_wp_form form .info,
.contact .form #document:checked ~ .mw_wp_form form .document,
.contact .form #contact:checked ~ .mw_wp_form form .contact {
  display: block;
}

.contact label {
  cursor: pointer;
}

.contact .info dl,
.contact .document dl,
.contact .contact dl {
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .contact .info dl,
  .contact .document dl,
  .contact .contact dl {
    margin-bottom: 18px;
    display: block;
  }
}

@media (min-width: 901px) {
  .contact .info dt,
  .contact .info dd,
  .contact .document dt,
  .contact .document dd,
  .contact .contact dt,
  .contact .contact dd {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
  }
  .contact .info dt:last-of-type,
  .contact .info dd:last-of-type,
  .contact .document dt:last-of-type,
  .contact .document dd:last-of-type,
  .contact .contact dt:last-of-type,
  .contact .contact dd:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
}

.contact .info dt,
.contact .document dt,
.contact .contact dt {
  width: 280px;
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
}

@media (max-width: 900px) {
  .contact .info dt,
  .contact .document dt,
  .contact .contact dt {
    width: 100%;
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}

.contact .info dt.must::after,
.contact .document dt.must::after,
.contact .contact dt.must::after {
  content: "必須";
  margin-left: 7px;
  padding: 0 8px;
  display: inline-block;
  background: #c06347;
  color: #fff;
}

.contact .info dd,
.contact .document dd,
.contact .contact dd {
  width: calc(100% - 280px);
}

@media (max-width: 900px) {
  .contact .info dd,
  .contact .document dd,
  .contact .contact dd {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
  }
  .contact .info dd:last-of-type,
  .contact .document dd:last-of-type,
  .contact .contact dd:last-of-type {
    border-bottom: none;
  }
}

.contact .info input[type="text"],
.contact .info input[type="email"],
.contact .info input[type="tel"],
.contact .info textarea,
.contact .document input[type="text"],
.contact .document input[type="email"],
.contact .document input[type="tel"],
.contact .document textarea,
.contact .contact input[type="text"],
.contact .contact input[type="email"],
.contact .contact input[type="tel"],
.contact .contact textarea {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #dddddd;
  outline: none;
}

@media (max-width: 900px) {
  .contact .info input[type="text"],
  .contact .info input[type="email"],
  .contact .info input[type="tel"],
  .contact .info textarea,
  .contact .document input[type="text"],
  .contact .document input[type="email"],
  .contact .document input[type="tel"],
  .contact .document textarea,
  .contact .contact input[type="text"],
  .contact .contact input[type="email"],
  .contact .contact input[type="tel"],
  .contact .contact textarea {
    padding: 6px 14px;
    border-radius: 0;
    -webkit-appearance: button;
    appearance: button;
    font-size: 16px;
  }
}

.contact .info input[type="text"]::placeholder,
.contact .info input[type="email"]::placeholder,
.contact .info input[type="tel"]::placeholder,
.contact .info textarea::placeholder,
.contact .document input[type="text"]::placeholder,
.contact .document input[type="email"]::placeholder,
.contact .document input[type="tel"]::placeholder,
.contact .document textarea::placeholder,
.contact .contact input[type="text"]::placeholder,
.contact .contact input[type="email"]::placeholder,
.contact .contact input[type="tel"]::placeholder,
.contact .contact textarea::placeholder {
  color: #cecece;
}

.contact .info textarea,
.contact .document textarea,
.contact .contact textarea {
  height: 300px;
}

@media (max-width: 900px) {
  .contact .info textarea,
  .contact .document textarea,
  .contact .contact textarea {
    height: 175px;
  }
}

.contact .info .radio input,
.contact .document .radio input,
.contact .contact .radio input {
  display: none;
}

.contact .info .radio .mwform-radio-field-text,
.contact .document .radio .mwform-radio-field-text,
.contact .contact .radio .mwform-radio-field-text {
  padding-left: 30px;
  position: relative;
}

@media (max-width: 900px) {
  .contact .info .radio .mwform-radio-field-text,
  .contact .document .radio .mwform-radio-field-text,
  .contact .contact .radio .mwform-radio-field-text {
    font-size: 1.2rem;
    padding-left: 20px;
  }
}

.contact .info .radio .mwform-radio-field-text::before,
.contact .document .radio .mwform-radio-field-text::before,
.contact .contact .radio .mwform-radio-field-text::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .contact .info .radio .mwform-radio-field-text::before,
  .contact .document .radio .mwform-radio-field-text::before,
  .contact .contact .radio .mwform-radio-field-text::before {
    width: 13px;
    height: 13px;
  }
}

.contact .info .radio .mwform-radio-field-text::after,
.contact .document .radio .mwform-radio-field-text::after,
.contact .contact .radio .mwform-radio-field-text::after {
  content: none;
  width: 12px;
  height: 12px;
  margin: auto;
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  background: #1ba2c9;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .contact .info .radio .mwform-radio-field-text::after,
  .contact .document .radio .mwform-radio-field-text::after,
  .contact .contact .radio .mwform-radio-field-text::after {
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
  }
}

.contact .info .radio input:checked + .mwform-radio-field-text::after,
.contact .document .radio input:checked + .mwform-radio-field-text::after,
.contact .contact .radio input:checked + .mwform-radio-field-text::after {
  content: "";
}

.contact .info .radio + .radio,
.contact .document .radio + .radio,
.contact .contact .radio + .radio {
  margin-top: 11px;
}

@media (max-width: 900px) {
  .contact .info .radio + .radio,
  .contact .document .radio + .radio,
  .contact .contact .radio + .radio {
    margin-top: 5px;
  }
}

.contact .info input[type="submit"],
.contact .document input[type="submit"],
.contact .contact input[type="submit"] {
  width: 300px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3471c;
  border: none;
  border-radius: 10px;
  color: #fff;
}

@media (max-width: 900px) {
  .contact .info input[type="submit"],
  .contact .document input[type="submit"],
  .contact .contact input[type="submit"] {
    width: 200px;
    height: 46px;
    border-radius: 5px;
    font-size: 1.2rem;
    -webkit-appearance: button;
    appearance: button;
  }
}

/* bnr */
.bnr {
  background: #e3f6fa;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 900px) {
  .bnr {
    padding-top: 59px;
    padding-bottom: 59px;
  }
}

.bnr .inner {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .bnr .inner {
    display: block;
  }
}

.bnr .inner .box {
  width: 50%;
  text-align: center;
}

@media (max-width: 900px) {
  .bnr .inner .box {
    width: 100%;
  }
}

.bnr .inner .box:first-child p {
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .bnr .inner .box:first-child p {
    margin-bottom: 5px;
  }
}

.bnr .inner .box p {
  font-family: "ヒラギノ角ゴ ProN W6", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .bnr .inner .box p {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

.bnr .inner .box .logo1 {
  width: 380px;
}

@media (max-width: 900px) {
  .bnr .inner .box .logo1 {
    width: 209px;
    margin-bottom: 23px;
  }
}

.bnr .inner .box .logo2 {
  width: 222px;
}

@media (max-width: 900px) {
  .bnr .inner .box .logo2 {
    width: 122px;
  }
}

.wpcf7c-conf {
  background-color: #fff !important;
  border: none !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  color: #333 !important;
  opacity: 1 !important;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #333 !important;
}

.active {
  background: #1ba2c9 !important;
  border-color: #1ba2c9 !important;
  color: #fff !important;
}

.mw_wp_form_input .form__confirm {
  display: none;
}

.mw_wp_form_confirm .form__confirm {
  width: 100%;
  display: block !important;
  text-align: center;
}

.mw_wp_form_confirm .form__confirm input {
  display: inline-block !important;
  vertical-align: middle !important;
}

.mw_wp_form_confirm .form__confirm input:first-child {
  margin: 0 30px 0 0 !important;
  background-color: #999 !important;
}

@media (max-width: 900px) {
  .mw_wp_form_confirm .form__confirm input:first-child {
    margin: 0 auto 30px !important;
  }
}

@media (max-width: 900px) {
  .mw_wp_form_confirm .form__confirm input {
    display: block !important;
  }
}

.complete {
  width: 100%;
  padding-top: 40px;
  display: none;
  border-top: 1px solid #1ba2c9;
}

@media (max-width: 900px) {
  .complete {
    padding-top: 20px;
  }
}

.complete .complete-message {
  text-align: left;
  line-height: 1.5;
}

