@charset "UTF-8";

body {
  font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  line-height: 1.5;
}

/* common */
.section {
  padding: 80px 0;
}

.section-ttl {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-ttl::before {
  content: "";
  width: 60px;
  height: 4px;
  background: #000;
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.content-width {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.title {
  padding: 0 0px;
  margin: 30px 0;
  text-align: center;
  color: #555555;
  font-weight: bold;
}

.title:after {
  content: '';
  display: block;
  height: 3px;
  width: 50px;
  background: #4F6EDE;
  background: -webkit-linear-gradient(right, #ffd803, #4F6EDE);
  background: linear-gradient(to left, #ffd803, #4F6EDE);
  margin: 10px auto; }

@media (min-width: 768px) {
  .title {
    margin: 50px 0;
  }
}

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

input[type="submit"] {
  display: block;
  margin: 20px auto;
  color: #fff;
  background: #ffd803;
  line-height: 40px;
  letter-spacing: .1em;
  min-width: 234px;
  padding: 0 20px;
  text-align: center;
  border-radius: 2px;
  border: none; }

input[type="submit"]:hover {
  cursor: pointer;
  opacity: .9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }

@media screen and (max-width: 670px) {
  .section {
    padding: 60px 0;
  }

  .content-width {
    padding: 0 20px;
  }

  .section-ttl{
    font-size: 20px;
  }
}


/* header */
.home .header,
.subpage .header {
  width: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 40px;
  left: 60px;
  z-index: 999;
  padding: 0;
  background:none;
  color: #000;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 50px;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-item {
  margin: 0 10px;
}

.header-link {
  display: block;
  padding: 10px;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.header-link:hover {
  opacity: 0.7;
}

.header-contact {
  display: inline-block;
  height: 44px;
  padding: 14px 40px;
  color: #38495C;
  background: #fff;
  white-space: nowrap;
  border-radius: 44px;
  margin-left: 20px;
  -webkit-transition: 0.3s color, 0.3s background;
  -o-transition: 0.3s color, 0.3s background;
  transition: 0.3s color, 0.3s background;
}

.header-contact:hover {
  color: #fff;
  background: #38495C;
}

.header-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}

.menu-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-menu:hover .menu-bar:nth-child(2) {
  left: 15px;
}

.menu-bar:nth-child(1) {
  top: 10px;
}

.menu-bar:nth-child(2) {
  top: 20px;
}

.menu-bar:nth-child(3) {
  top: 30px;
}

.header-menu.is-active .menu-bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-menu.is-active .menu-bar:nth-child(2) {
  left: 30px;
  opacity: 0;
}

.header-menu.is-active .menu-bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .header-nav {
    width: 100vw;
    height: 100vh;
    background: -o-linear-gradient(45deg, #ffd803, #e3f6f5);
    background: linear-gradient(45deg, #ffd803, #e3f6f5);
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  .header-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header-item {
    margin: 20px 10px;
  }

  .header-contact {
    margin-left: 0;
    margin-top: 30px;
  }

  .header-menu {
    display: block;
  }
}

@media screen and (max-width: 670px) {
  .header {
    padding: 30px 5%;
  }
  .home .header,
  .subpage .header {
    width: 90%;
    top: 30px;
    left: 2.5%;
  }

  .header-menu {
    top: 30px;
    right: 7.5%;
  }
  .home .header .header-menu,
  .subpage .header .header-menu {
    top: 0;
    right: 0;
  }
}


/* mv */
.mv {
  /* height: 100vh; */
  color: #fff;
  background: url(../img/mv.jpg);
  background-position: 0 0;
  background-size: cover;
}

.mv::before,
.mv::after {
  content: "";
  width: 260px;
  height: 200px;
  position: absolute;
}

.mv::before {
  background: linear-gradient(217deg, rgba(227, 246, 245, 1), rgba(227, 246, 245, 0.8) 50%, rgba(255, 255, 255, 0) 50%);
  top: 0;
  right: 0;
}

.mv::after {
  background: linear-gradient(37deg, rgba(227, 246, 245, 1), rgba(227, 246, 245, 0.8) 50%, rgba(255, 255, 255, 0) 50%);
  bottom: 0;
  left: 0;
}


.mv-all {
  width: 100%;
  height: 100%;
  position: relative;
}

.mv-content {
  color: #000;
  position: absolute;
  bottom: 160px;
  right: 10px;
  z-index: 10;
}

.mv-subcopy,
.mv-subcopy-en,
.mv-ttl {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.mv-subcopy {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}

.mv-ttl {
  font-size: 40px;
  font-weight: bold;
  margin-top: 12px;
  line-height: 130%;
}

@media screen and (max-width: 670px) {
  .mv {
    background-position: top 0 left -111%;
    background-size: cover;
  }

  .mv-ttl {
    font-size: 30px;
  }

  .mv-subcopy {
    font-size: 24px;
  }

  .mv-subcopy-en {
    width: 70%;
  }
}

@media screen and (max-width: 642px) {
  .mv-content {
    left: 20px;
    right: 20px;
    bottom: 50px;
  }

  .mv-ttl {
    font-size: 24px;
  }

  .mv-subcopy {
    font-size: 20px;
  }

  .mv-subcopy-en,
  .mv-copy {
    font-size: 14px;
  }
}


/* solve */
.solve {
  padding: 120px 80px;
  text-align: center;
}

.solve-copy {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 60px;
}

.solve-copy-red {
  display: block;
  color: #ffd803;
  font-size: 24px;
  margin-bottom: 24px;
}

.solve-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.solve-item {
  width: 340px;
  padding: 40px;
  margin-bottom: 150px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 6px #eee;
          box-shadow: 0 3px 6px #eee;
  position: relative;
}

.solve-ttl {
  line-height: 27px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 18px;
}

.solve-img {
  width: 150px;
  margin-bottom: 18px;
}

.solve-txt {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  display: inline-block;
}

.solve-answer {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}

.solve-answer::before {
  content: "";
  width: 670px;
  height: 4px;
  background: #ffd803;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.solve-answer:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-bottom: 4px solid #ffd803;
  border-right: 4px solid #ffd803;
  position: absolute;
  top: -67px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.solve-answer-red {
  color: #ffd803;
  font-size: 40px;
  background:-o-linear-gradient(transparent 70%, #e3f6f5 70%);
  background:-webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #e3f6f5));
  background:linear-gradient(transparent 70%, #e3f6f5 70%);
}

.solve-media-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .solve-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .solve-item {
    width: 100%;
    margin-bottom: 50px;
  }

  .solve-item::before {
    font-size: 100px;
    left: 50px;
  }

  .solve-txt {
    padding: 0 50px;
  }

  .solve-media-br {
    display: block;
  }

  .solve-answer {
    margin-top: 100px;
  }

  .solve-answer::before {
    width: 100%;
  }
}

@media screen and (max-width: 670px) {
  .solve {
    padding: 120px 0;
  }

  .solve-item::before {
    left: 0;
  }

  .solve-copy-red {
    font-size: 20px;
  }

  .solve-txt {
    padding: 0;
  }

  .solve-answer {
    font-size: 20px;
  }

  .solve-answer-red {
    display: block;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 350px) {
  .solve-copy-red {
    font-size: 18px;
  }

  .solve-ttl br {
    display: none;
  }

  .solve-answer {
    font-size: 18px;
  }
}


/* feature */
.feature {
  background: #f4f4f4;
}

.feature-item {
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: center;
}

.feature-content {
  width: 580px;
  position: relative;
  left: -50px;
}

.feature-bar {
  display: block;
  width: 2px;
  background: #ffd803;
  position: absolute;
  left: -18px;
}

.feature-item:last-child .feature-bar {
  display: none;
}

.feature-num {
  font-size: 120px;
  color: #ffd803;
  position: relative;
}

.feature-num::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #ffd803;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.feature-item-ttl {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-txt {
  line-height: 1.5;
}

.feature-txt-span {
  display: block;
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

.feature-img {
  width: 580px;
  height: 320px;
}

.feature-item:nth-child(1) .feature-img {
  background: url(../img/feature-01.jpg) center / cover;
}

.feature-item:nth-child(2) .feature-img {
  background: url(../img/feature-02.jpg) center / cover;
}

.feature-item:nth-child(3) .feature-img {
  background: url(../img/feature-03.jpg) center / cover;
}

@media screen and (max-width: 1024px) {
  .feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .feature-img {
    margin-top: 30px;
  }
}

@media screen and (max-width: 670px) {
  .feature.section {
    padding: 80px 0 0;
  }

  .feature-item .content-width {
    padding: 0 50px;
  }

  .content-width{
    padding: 0 50;
  }

  .feature-num::before{
    position: absolute;
    left: -16px;
  }

  .feature-bar{
    height: 900px;
    position: absolute;
    left: -10px
  }

 .feature-content {
    max-width: 100%;
    height: auto;
    position: relative;
    left: 10px;
  }

  .feature-item-ttl br {
    display: none;
  }

  .feature-item:nth-child(2) .feature-img {
    background-position: 100% 0;
  }

  .feature-img {
    max-width: 90%;
  }
}

@media screen and (max-width: 350px) {
  .feature-item .content-width {
    padding: 0 30px;
  }
}


/* curriculum */
.curriculum-content {
  display: flex;
  justify-content: center;
}
.curriculum-img {
  max-width: 960px;
  margin: 0 auto;
}
.curriculum-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  margin-top: 80px;
}
.curriculum-btn .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 20px);
  min-height: 70px;
  padding: 5px 25px;
  color: #ffd803;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: 0.3s all ease;
  position: relative;
}
.curriculum-btn .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffd803;
  border-bottom: 2px solid #ffd803;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.curriculum-btn .btn:hover  {
  color:#fff;
  background: #ffd803;
  transform: translate3d(0, 0.4rem, 0);
  box-shadow: none;
  text-decoration: none;
}
.curriculum-btn .btn:hover::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 780px) {
  .curriculum-btn {
    gap: 20px;
    margin-top: 60px;
  }
  .curriculum-btn .btn {
    width: 280px;
    font-size: 14px;
  }
}

/* example */
.example {
  background: -o-linear-gradient(45deg, #ffd803, #4F6EDE);
  background: linear-gradient(45deg, #ffd803, #4F6EDE);
}

.example-ttl {
  color: #fff;
}

.section-ttl.example-ttl::before {
  background: #fff;
}

.example-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.example-item {
  width: 31%;
}

.example-item-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

.example-item-ttl::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.example-img {
  width: 100%;
  margin-top: 40px;
}

.example-txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}

@media screen and (max-width: 1024px) {
  .example-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .example-item {
    width: 60%;
    margin: 0 auto;
  }

  .example-item + .example-item {
    margin-top: 60px;
  }

  .example-item br {
    display: none;
  }
}

@media screen and (max-width: 670px) {
  .example-item {
    width: 100%;
  }
}


/* case */
.page-template-page-testtop .case {
  background: #F1F2F3;
}

.case-item {
text-align: center;
padding: 40px 0px;
}

.case-container + .case-container {
margin-top: 20px;
}

.case-container{
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.case-box{
  display: flex;
  flex-wrap: wrap;
}

.case-ttl {
  font-size: 21px;
  font-weight: bold;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  }

.case-img {
  width: 450px;
  height: 340px;
  -o-object-fit: cover;
    object-fit: cover;
  margin-top: 20px;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-box-shadow: 0 0 10px 0 #eee;
          box-shadow: 0 0 10px 0 #eee;
}

.br-sp{
  display: none !important;
}

.case-ttl:hover,
.case-img:hover {
    opacity: 0.6;
}


@media screen and (max-width: 1024px) {
  .case-item + .case-item {
    margin-top: 80px;
  }

  .case-content {
    margin-top: 30px;
  }

  .case-ttl {
    text-align: center;
  }

  .br-sp {display: none !important;
  }
}


@media screen and (max-width: 780px) {
  .case-img {
    max-width: 100%;
    height: auto;
  }

  .case-container {
    width: 100%;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .case-item{
    padding: 0px;
  }

  .case-ttl{
    font-size: 5vw;
  }

  .br-sp {display: block !important;
  }

  .case-box {
    margin-top: 40px;
  }

  .br-pc {
    display: none !important;
  }

}


/* company */
.company {
  background: #f4f4f4;
}

.company-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company-content {
  width: 100%;
}

.company-profile {
  font-size: 14px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.company-table {
  margin-top: 20px;
}

.company-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-tr + .company-tr {
  margin-top: 10px;
}

.company-th {
  font-weight: normal;
  white-space: nowrap;
  width: 8em;
}

.company-tr:first-child .company-td {
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .company-all {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company-content {
    width: 80%;
  }
}

@media screen and (max-width: 670px) {
  .company-content {
    width: 90%;
  }

  .company-th {
    width: 6em;
  }
}


/* question */
.question-list {
  width: 800px;
  margin: 0 auto;
}

.question-item + .question-item {
  margin-top: 12px;
}

.question-q {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  padding: 24px 20px;
  border-radius: 10px;
  background: #ffd803;
  position: relative;
  -webkit-transition: 0.3s border-bottom-left-radius, 0.3s border-bottom-right-radius;
  -o-transition: 0.3s border-bottom-left-radius, 0.3s border-bottom-right-radius;
  transition: 0.3s border-bottom-left-radius, 0.3s border-bottom-right-radius;
}

.question-q::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.question-q::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 27px;
  -webkit-transform: translateY(-70%) rotate(45deg);
      -ms-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  z-index: 2;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}

.question-q.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.question-q.open::after {
  -webkit-transform: translateY(-35%) rotate(225deg);
      -ms-transform: translateY(-35%) rotate(225deg);
          transform: translateY(-35%) rotate(225deg);
}

.question-num {
  font-weight: normal;
  margin-right: 32px;
}

.question-a {
  padding: 30px 70px;
  border-right: 1px solid #cecece;
  border-left: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 1024px) {
  .question-list {
    width: 80%;
  }
}

@media screen and (max-width: 670px) {
  .question-list {
    width: 95%;
  }

  .question-q {
    padding: 24px 45px 24px 20px;
  }

  .question-num {
    display: block;
    margin-bottom: 10px;
  }

  .question-a {
    padding: 30px;
  }
}


/* contact */
#contact {
  padding: 0 0 60px 0;
}
#contact .contact-wrap {
  width: 95%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  margin: 0 auto;
  border: 2px solid #cecece;
  border-radius: 20px;
  background: #f4f4f4;
}

#contact form {
  width: 95%;
  max-width: 702px;
}

#contact .table_contact {
  width: 100%;
}

#contact h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

#contact .table_contact th {
  width: 30%;
  font-size: 16px;
  vertical-align: middle;
  text-align: left;
}

#contact .table_contact td {
  width: 70%;
  max-width: 500px;
  vertical-align: middle;
  padding: 20px 0;
  font-size: 16px;
  text-align: left;
}

#contact .table_contact .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ffd803;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  width: 50px;
  height: 24px;
  vertical-align: middle;
}

#contact .table_contact .ttl {
  margin-left: 20px;
  display: inline-block;
  vertical-align: middle;
}

#contact .table_contact .ttl.optional {
  margin-left: 70px;
}

#contact .table_contact input[type=text],
#contact .table_contact input[type=email],
#contact .table_contact input[type=tel] {
  background: #fff;
  border: 1px solid #353940;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  padding: 15px 20px;
  outline: none;
  border-radius: 5px;
}

#contact .foot {
  font-size: 16px;
  text-align: center;
  line-height: 1.75;
}

#contact .foot.upper {
  padding: 40px 0 60px;
}

#contact .foot.bottom {
  padding: 40px 0 0;
}

#contact .foot a {
  text-decoration: underline;
  transition: 0.3s all ease;
}

#contact .foot a:hover {
  opacity: 0.7;
}

#contact .btn,
.subpage .btn {
  width: 285px;
  line-height: 70px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s all ease;
}

#contact .btn:hover,
.subpage .btn:hover  {
  background: #ffd803;
  transform: translate3d(0, 0.4rem, 0);
  box-shadow: none;
  text-decoration: none;
}

@media screen and (max-width: 780px) {
  #contact .contact-wrap {
    padding: 40px 0;
  }

  #contact form {
    width: calc(100% - 80px);
    max-width: 500px;
  }

  #contact h2 {
    font-size: 20px;
  }

  #contact .table_contact th {
    display: block;
    width: 100%;
    font-size: 14px;
  }

  #contact .table_contact .ttl {
    margin-left: 10px;
  }

  #contact .table_contact .ttl.optional {
    margin-left: 0;
  }

  #contact .table_contact td {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 8px 0 16px;
    font-size: 14px;
  }

  #contact .table_contact .required {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    width: 40px;
    height: 20px;
    padding-left: 0.2em;
  }

  #contact .table_contact input[type=text], #contact .table_contact input[type=email], #contact .table_contact input[type=tel] {
    font-size: 14px;
    padding: 8px 16px;
  }

  #contact .btn,
  .subpage .btn {
    width: 220px;
    min-width: 220px;
    line-height: 50px;
    font-size: 16px;
  }

  #contact .foot {
    font-size: 14px;
    text-align: left;
  }

  #contact .foot.upper {
    padding: 12px 0 24px;
  }
  
  #contact .foot.bottom {
    padding: 24px 0 0;
  }
}

/* -----------------------
お問い合わせ確認・送信画面
----------------------- */
.subpage .contact-wrap h1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin: 170px 0 80px;
}

.subpage .contact-wrap {
  padding: 84px 0 160px;
}

.subpage .table_confirm {
  width: 100%;
  max-width: 622px;
  margin: 0 auto 60px;
  font-size: 16px;
}

.subpage .table_confirm tr {
  border-bottom: 1px solid #D9D9D9;
}

.subpage .table_confirm tr:first-of-type {
  border-top: 1px solid #D9D9D9;
}

.subpage .table_confirm th {
  width: 33%;
  font-size: 16px;
  vertical-align: middle;
  text-align: left;
}

.subpage .table_confirm .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ffd803;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  width: 50px;
  height: 24px;
  vertical-align: middle;
}

.subpage .table_confirm .ttl {
  margin-left: 20px;
  display: inline-block;
  vertical-align: middle;
}

.subpage .table_confirm .ttl.optional {
  margin-left: 70px;
}

.subpage .table_confirm td {
  width: 67%;
  height: 80px;
  vertical-align: middle;
  padding-left: 2em;
  font-size: 16px;
  text-align: left;
}

.subpage .btn_confirm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 604px;
  margin: 0 auto;
}

.subpage .btn.back {
  text-align: center;
  background: #D9D9D9;
  color: #353940;
}

.subpage .btn.back:hover {
  background: #ececec;
}

@media screen and (max-width: 780px) {
  .subpage .contact-wrap {
    padding: 70px 0 80px;
  }

  .subpage .table_confirm {
    width: 90%;
    max-width: 500px;
  }

  .subpage .contact-wrap h1 {
    margin: 80px 0 40px;
    font-size: 20px;
  }

  .subpage .table_confirm th {
    display: block;
    width: 100%;
    padding-top: 15px;
    font-size: 14px;
  }

  .subpage .table_confirm .required {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    width: 40px;
    height: 20px;
    padding-left: 0.2em;
  }

  .subpage .table_confirm .ttl {
    margin-left: 10px;
  }

  .subpage .table_confirm .ttl.optional {
    margin-left: 0;
  }

  .subpage .table_confirm td {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 40px;
    padding: 8px 0 16px;
    font-size: 14px;
  }

  .subpage .btn_confirm {
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .subpage .btn.back {
    margin-bottom: 20px;
    background: #D9D9D9;
  }
}

.subpage.mail .btn.back-top {
  display: block;
  margin: 100px auto 0;
  border: 2px solid currentColor;
  background: #fff;
  color: #ffd803;
  text-align: center;
}

.subpage.mail .btn.back-top:hover {
  color: #fff;
  background: #ffd803;
  border: 2px solid #ffd803;
}

.subpage.mail .contact-wrap p {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .subpage.mail .contact-wrap p {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 16px;
  }
}

/* footer */
.footer {
  color: #fff;
  background: #5b6262;
  padding: 60px 0 20px;
}

.footer-content,
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-logo {
  width: 240px;
}

/* .footer-list + .footer-list {
  margin-left: 40px;
} */

.footer-item + .footer-item {
  margin-top: 16px;
}

.footer-link {
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.footer-link:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 50px;
  }

  /* .footer-list + .footer-list {
    margin-left: 0;
    margin-top: 50px;
  } */
}

@media screen and (max-width: 670px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer-nav {
    margin: 50px 0 0 0;
  }
}


/* privacy */
.subpage .privacy.section {
  padding: 84px 0 160px;
}

.subpage #privacy h1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin: 170px 0 80px;
}

.subpage #privacy h2,
.subpage #sub-curriculum h2 {
  margin: 2em 0 1em;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
  border-bottom: 1px solid #ced4d9;
}

.subpage #privacy p,
.subpage .sub-curriculum p {
  margin-bottom: 1.5em;
  line-height: 1.75;
}

@media screen and (max-width: 780px) {
  .subpage .privacy.section {
    padding: 70px 0 80px;
  }

  .subpage #privacy h1 {
    margin: 80px 0 40px;
    font-size: 20px;
  }

  .subpage #privacy h2,
  .subpage #sub-curriculum h2 {
    font-size: 18px;
  }

  .subpage #privacy p,
  .subpage .sub-curriculum p {
    font-size: 14px;
  }
}

/* curriculum subpage */
#sub-curriculum {
  padding: 120px 0 80px;
}

.subpage-mv {
  padding-top: 15em;
  margin-bottom: 3em;
  font-size: 30px;
}

.subpage-mv.exim {
  background: url(../img/exim_mv.jpg);
  background-position: 50% 70%;
  background-size: cover;
}
.subpage-mv.trade-skill-job {
  background: url(../img/trade-skill-job_mv.jpg);
  background-position: center;
  background-size: cover;
}
.subpage-mv.trade-skill-shot {
  background: url(../img/trade-skill-shot_mv.jpg);
  background-position: 50% 30%;
  background-size: cover;
}
.subpage-mv.start-up {
  background: url(../img/mv.jpg);
  background-position: center;
  background-size: cover;
}

.subpage #sub-curriculum h1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 80px;
}

.subpage .curriculum-item li {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  background: #f4f4f4;
  border-bottom: 1px solid #cecece;
}

.subpage .curriculum-item h3 {
  background: #5b6262;
  color: #FFFFFF;
  margin-bottom: 0.5em;
  padding: 5px;
  font-size: 18px;
  font-weight: normal;
}

@media screen and (max-width: 780px) {
  #sub-curriculum{
    padding: 100px 0 80px;
  }

  .subpage-mv {
    padding-top: 7.5em;
    margin-bottom: 1.5em;
    font-size: 20px;
  }

  .subpage #sub-curriculum h1 {
    margin: 40px 0;
    font-size: 20px;
  }

  .subpage .curriculum-item h3 {
    font-size: 16px;
  }

  .subpage .curriculum-item li {
    padding: 10px;
  }
}