@charset "UTF-8";
/*
@mixin bgRadiusLeft( $bgColor:#fff,$topPC:0,$topSP:0) {
  content: "";
  background: $bgColor;
  width: 75%;
  max-width: 1030px;
  position: absolute;
  height: 1470px;
  border-radius: 0 420px 420px 0;
  background: #fff;
  top: $topPC + px;
  left: 0;
  z-index: -1;
  @include bp( max, 1366px ) {
    height: vw_pc( 1470 );
    max-width: vw_pc( 1030 );
    border-radius: 0 vw_pc( 420 ) vw_pc( 420 ) 0;
    top: vw_pc( $topPC );
  }
  @include bp( max, 828px ) {
    width: vw_sp( 351 );
    max-width: 100%;
    height: vw_sp( 502 );
    border-radius: 0 vw_sp( 140 ) vw_sp( 140 ) 0;
    top: vw_sp( $topSP );
  }
}
@mixin bgRadiusRight($bgColor:#fff,$topPC:0,$topSP:0) {
  content: "";
  background: $bgColor;
  width: 75%;
  max-width: 1030px;
  position: absolute;
  height: 1470px;
  border-radius: 420px 0 0 420px;
  background: #fff;
  top: $topPC + px;
  right: 0;
  z-index: -1;
  @include bp( max, 1366px ) {
    height: vw_pc( 1470 );
    max-width: vw_pc( 1030 );
    border-radius: vw_pc( 420 ) 0 0 vw_pc( 420 );
    top: vw_pc( $topPC );
  }
  @include bp( max, 828px ) {
    width: vw_sp( 351 );
    max-width: 100%;
    height: vw_sp( 502 );
    border-radius: vw_sp( 140 ) 0 0 vw_sp( 140 );
    top: vw_sp( $topSP );
  }
}
*/
/*
// セクションリード
@mixin sectionLead($fontSizePC:16,$lineHeightPC:2.2,$letterSpacingPC:40,$fontSizeSP:14,$lineHeightSP:2.2,$letterSpacingSP:40) {
  .sectionLead {
    font-family: "ShipporiMincho-Regular";
    font-size: $fontSizePC / 10 + rem;
    line-height: $lineHeightPC;
    letter-spacing: ls( $letterSpacingPC );
    text-align: center;
    @include bp( max, 1366px ) {
      font-size: vw_pc( $fontSizePC );
    }
    @include bp( max, 828px ) {
      font-size: vw_sp( $fontSizeSP );
      line-height: $lineHeightSP;
      letter-spacing: ls( $letterSpacingSP );
    }
  }
}

@mixin pageLead() {
  font-family: "ShipporiMincho-Regular";
  font-size: 2.4rem;
  line-height: 2.4;
  letter-spacing: ls( 200 );
  text-align: center;
  @include bp( max, 1366px ) {
    font-size: vw_pc( 24 );
  }
  @include bp( max, 828px ) {
    font-size: vw_sp( 17 );
    letter-spacing: ls( 40 );
    text-align: left;
  }
}



@mixin notice($fontSize:11) {
  //font-size: 1.2rem;
  font-size: $fontSize / 10 + rem;
  line-height: 1.8;
  color: #777;
  @include bp( max, 1366px ) {
    //font-size: vw_pc( 12 );
    font-size: vw_pc( $fontSize );
  }
  @include bp( max, 828px ) {
    font-size: vw_sp( 10 );
    //font-size: vw_sp( $fontSize );
  }
}

@mixin noticeMark($fontSize:10) {
  font-size: $fontSize / 10 + rem;
  line-height: 1;
  color: #777;
  @include bp( max, 1366px ) {
    font-size: vw_pc( $fontSize );
  }
  @include bp( max, 828px ) {
    font-size: vw_sp( $fontSize );
  }
}
*/
.pageNavi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1366px) {
  .pageNavi {
    gap: 2.3426061493vw;
  }
}
@media screen and (max-width: 828px) {
  .pageNavi {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.8647342995vw;
  }
}
.pageNavi_item a {
  border-bottom: 1px solid #bbb;
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1366px) {
  .pageNavi_item a {
    font-size: 1.0980966325vw;
  }
}
@media screen and (max-width: 828px) {
  .pageNavi_item a {
    font-size: 3.6231884058vw;
  }
}
@media screen and (max-width: 1366px) {
  .pageNavi_item a {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (max-width: 828px) {
  .pageNavi_item a {
    padding-bottom: 2.8985507246vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.pageNavi_item a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 0.1em solid #666;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 10px;
  margin: auto;
}
@media screen and (max-width: 1366px) {
  .pageNavi_item a::before {
    width: 0.7320644217vw;
    height: 0.7320644217vw;
    bottom: 0.7320644217vw;
  }
}
@media screen and (max-width: 828px) {
  .pageNavi_item a::before {
    width: 2.4154589372vw;
    height: 2.4154589372vw;
    bottom: 2.4154589372vw;
  }
}

.mainTitle {
  padding: 80px 0 64px;
}
@media screen and (max-width: 1366px) {
  .mainTitle {
    padding: 5.8565153734vw 0 4.6852122987vw;
  }
}
@media screen and (max-width: 828px) {
  .mainTitle {
    padding: 7.729468599vw 0 11.5942028986vw;
  }
}
.mainTitle_main, .mainTitle_sub {
  display: block;
  color: #1D4294;
}
.mainTitle_main {
  font-size: 6rem;
  font-family: futura-pt, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.05;
}
@media screen and (max-width: 1366px) {
  .mainTitle_main {
    font-size: 4.39238653vw;
  }
}
@media screen and (max-width: 828px) {
  .mainTitle_main {
    font-size: 11.5942028986vw;
  }
}
.mainTitle_sub {
  font-size: 1.8rem;
  margin-top: 10px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 1366px) {
  .mainTitle_sub {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 828px) {
  .mainTitle_sub {
    font-size: 3.6231884058vw;
  }
}
@media screen and (max-width: 1366px) {
  .mainTitle_sub {
    margin-top: 0.7320644217vw;
  }
}
@media screen and (max-width: 828px) {
  .mainTitle_sub {
    margin-top: 3.3816425121vw;
  }
}

.polygonBorderTitle {
  padding: 2px 0 2px 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1366px) {
  .polygonBorderTitle {
    padding: 0.1464128843vw 0 0.1464128843vw 1.756954612vw;
    font-size: 1.756954612vw;
  }
}
@media screen and (max-width: 828px) {
  .polygonBorderTitle {
    padding: 0.4830917874vw 0 0.4830917874vw 5.7971014493vw;
    font-size: 5.7971014493vw;
  }
}
.polygonBorderTitle::before {
  content: "";
  background: url("../img/common/line_polygon.webp") no-repeat center center/cover;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1366px) {
  .polygonBorderTitle::before {
    width: 0.439238653vw;
  }
}
@media screen and (max-width: 828px) {
  .polygonBorderTitle::before {
    width: 1.4492753623vw;
  }
}

.table {
  width: 100%;
  border: 1px solid #ccc;
}
.table tr:not(:last-child) th, .table tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 829px) {
  .table tr > th {
    border-right: 1px solid #ccc;
  }
}
.table th,
.table td {
  padding: 24px;
}
@media screen and (max-width: 1366px) {
  .table th,
  .table td {
    padding: 1.4641288433vw;
  }
}
@media screen and (max-width: 828px) {
  .table th,
  .table td {
    padding: 5.7971014493vw;
    display: block;
  }
}
.table th {
  background: #f8f8f8;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 829px) {
  .table th {
    min-width: 200px;
  }
}
@media screen and (min-width: 829px) and (max-width: 1366px) {
  .table th {
    min-width: 14.6412884334vw;
  }
}
@media screen and (max-width: 828px) {
  .table th {
    border-bottom: 1px solid #ccc;
  }
}
.table td {
  width: 100%;
}
.table td p:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 1366px) {
  .table td p:not(:first-child) {
    margin-top: 1.756954612vw;
  }
}
@media screen and (max-width: 828px) {
  .table td p:not(:first-child) {
    margin-top: 5.7971014493vw;
  }
}
.table a {
  display: inline;
  color: #1D4294;
  text-decoration: underline;
}
@media screen and (min-width: 829px) {
  .table a:hover {
    color: #009FE6;
  }
}

.polygonBorderTitle {
  margin-bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .polygonBorderTitle {
    margin-bottom: 3.513909224vw;
  }
}
@media screen and (max-width: 828px) {
  .polygonBorderTitle {
    margin-bottom: 7.729468599vw;
  }
}

.bgTitle {
  padding-left: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #1D4294;
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .bgTitle {
    padding-left: 1.756954612vw;
  }
}
@media screen and (max-width: 828px) {
  .bgTitle {
    padding-left: 3.8647342995vw;
  }
}
@media screen and (max-width: 1366px) {
  .bgTitle {
    padding-top: 1.1713030747vw;
    padding-bottom: 1.1713030747vw;
  }
}
@media screen and (max-width: 828px) {
  .bgTitle {
    padding-top: 3.8647342995vw;
    padding-bottom: 3.8647342995vw;
  }
}
@media screen and (max-width: 1366px) {
  .bgTitle {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 828px) {
  .bgTitle {
    font-size: 4.347826087vw;
  }
}

.button {
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 80px;
  padding: 0 20px;
  border-radius: 80px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 829px) {
  .button {
    cursor: pointer;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  .button:hover {
    background: #009FE6;
    color: #fff;
  }
}
@media screen and (max-width: 1366px) {
  .button {
    width: 21.9619326501vw;
    height: 5.8565153734vw;
    padding: 0 1.4641288433vw;
    border-radius: 5.8565153734vw;
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 828px) {
  .button {
    width: 57.9710144928vw;
    height: 13.5265700483vw;
    padding: 0 4.8309178744vw;
    border-radius: 13.5265700483vw;
    font-size: 3.8647342995vw;
  }
}
@media screen and (max-width: 1366px) {
  .button {
    margin-top: 8.78477306vw;
  }
}
@media screen and (max-width: 828px) {
  .button {
    margin-top: 19.3236714976vw;
  }
}

.table p {
  line-height: 2;
}

.educationHeader {
  margin-bottom: 120px;
}
@media screen and (max-width: 1366px) {
  .educationHeader {
    margin-bottom: 8.78477306vw;
  }
}
@media screen and (max-width: 828px) {
  .educationHeader {
    margin-bottom: 11.5942028986vw;
  }
}

.group {
  margin-top: 64px;
}
@media screen and (max-width: 1366px) {
  .group {
    margin-top: 4.6852122987vw;
  }
}
@media screen and (max-width: 828px) {
  .group {
    margin-top: 15.4589371981vw;
  }
}
.group .section:not(:first-child) {
  margin-top: 120px;
}
@media screen and (max-width: 1366px) {
  .group .section:not(:first-child) {
    margin-top: 8.78477306vw;
  }
}
@media screen and (max-width: 828px) {
  .group .section:not(:first-child) {
    margin-top: 15.4589371981vw;
  }
}
.group .section_title {
  padding-left: 16px;
  border-left: 4px solid #1D4294;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .group .section_title {
    padding-left: 1.1713030747vw;
    font-size: 1.4641288433vw;
    border-left-width: 0.2928257687vw;
  }
}
@media screen and (max-width: 828px) {
  .group .section_title {
    padding-left: 3.8647342995vw;
    line-height: 1.6;
    font-size: 4.347826087vw;
    letter-spacing: 0.02em;
    border-left-width: 0.9661835749vw;
  }
}
@media screen and (max-width: 1366px) {
  .group .section_title {
    margin-bottom: 3.513909224vw;
  }
}
@media screen and (max-width: 828px) {
  .group .section_title {
    margin-bottom: 9.6618357488vw;
  }
}
.group .section_text {
  margin-top: 48px;
  margin-bottom: 40px;
  line-height: 2;
}
@media screen and (max-width: 1366px) {
  .group .section_text {
    margin-top: 3.513909224vw;
  }
}
@media screen and (max-width: 828px) {
  .group .section_text {
    margin-top: 9.6618357488vw;
  }
}
@media screen and (max-width: 1366px) {
  .group .section_text {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (max-width: 828px) {
  .group .section_text {
    margin-bottom: 9.6618357488vw;
  }
}
.group .description {
  margin-top: 48px;
  padding: 24px;
  background: #f8f8f8;
}
@media screen and (max-width: 1366px) {
  .group .description {
    margin-top: 3.513909224vw;
  }
}
@media screen and (max-width: 828px) {
  .group .description {
    margin-top: 9.6618357488vw;
  }
}
@media screen and (max-width: 1366px) {
  .group .description {
    padding: 1.756954612vw;
  }
}
@media screen and (max-width: 828px) {
  .group .description {
    padding: 5.7971014493vw;
  }
}
.group .description p {
  line-height: 2;
}
.group .description a {
  display: inline;
  color: #1D4294;
  text-decoration: underline;
}
@media screen and (min-width: 829px) {
  .group .description a:hover {
    color: #009FE6;
  }
}

.education {
  margin-top: 80px;
}
@media screen and (max-width: 1366px) {
  .education {
    margin-top: 5.8565153734vw;
  }
}
@media screen and (max-width: 828px) {
  .education {
    margin-top: 15.4589371981vw;
  }
}
.education_imageWrapper {
  max-width: 645px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1920px) {
  .education_imageWrapper {
    max-width: 645px;
  }
}
@media screen and (max-width: 1366px) {
  .education_imageWrapper {
    max-width: 47.2181551977vw;
  }
}
@media screen and (max-width: 828px) {
  .education_imageWrapper {
    max-width: 84.5410628019vw;
  }
}

#all .lead {
  margin-bottom: 64px;
}
@media screen and (max-width: 1366px) {
  #all .lead {
    margin-bottom: 4.6852122987vw;
  }
}
@media screen and (max-width: 828px) {
  #all .lead {
    margin-bottom: 9.6618357488vw;
  }
}
#all .lead .learning-support {
  border: 1px solid #bbb;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1366px) {
  #all .lead .learning-support {
    max-width: 46.8521229868vw;
  }
}
@media screen and (max-width: 828px) {
  #all .lead .learning-support {
    max-width: initial;
  }
}
#all .pageNavi {
  margin-bottom: 108px;
}
@media screen and (max-width: 1366px) {
  #all .pageNavi {
    margin-bottom: 7.906295754vw;
  }
}
@media screen and (max-width: 828px) {
  #all .pageNavi {
    margin-bottom: 15.4589371981vw;
  }
}
#all .ojt, #all .off-jt, #all .self_development, #all .career_design {
  margin-top: 80px;
}
@media screen and (max-width: 1366px) {
  #all .ojt, #all .off-jt, #all .self_development, #all .career_design {
    margin-top: 5.8565153734vw;
  }
}
@media screen and (max-width: 828px) {
  #all .ojt, #all .off-jt, #all .self_development, #all .career_design {
    margin-top: 11.5942028986vw;
  }
}
#all .off-jt .scroll-X, #all .self_development .scroll-X {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1366px) {
  #all .off-jt .scroll-X, #all .self_development .scroll-X {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (max-width: 828px) {
  #all .off-jt .scroll-X, #all .self_development .scroll-X {
    margin-bottom: 7.729468599vw;
  }
}
#all .off-jt img, #all .self_development img {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 1366px) {
  #all .off-jt img, #all .self_development img {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (max-width: 828px) {
  #all .off-jt img, #all .self_development img {
    margin-bottom: 7.729468599vw;
  }
}
@media screen and (max-width: 1366px) {
  #all .off-jt img, #all .self_development img {
    max-width: 46.8521229868vw;
  }
}
@media screen and (max-width: 828px) {
  #all .off-jt img, #all .self_development img {
    max-width: initial;
  }
}
#all .ojt img {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 1366px) {
  #all .ojt img {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (max-width: 828px) {
  #all .ojt img {
    margin-bottom: 7.729468599vw;
  }
}
@media screen and (max-width: 1366px) {
  #all .ojt img {
    max-width: 46.8521229868vw;
  }
}
@media screen and (max-width: 828px) {
  #all .ojt img {
    max-width: initial;
  }
}
#all .self_development .scroll-X {
  max-width: 640px;
}
@media screen and (max-width: 1366px) {
  #all .self_development .scroll-X {
    max-width: 46.8521229868vw;
  }
}
#all .self_development .scroll-X img {
  border: 1px solid #bbb;
}
#all .self_development .bgTitle:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 1366px) {
  #all .self_development .bgTitle:not(:first-of-type) {
    margin-top: 5.8565153734vw;
  }
}
@media screen and (max-width: 828px) {
  #all .self_development .bgTitle:not(:first-of-type) {
    margin-top: 11.5942028986vw;
  }
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 1366px) {
  .column {
    margin-top: 2.3426061493vw;
  }
}
@media screen and (max-width: 828px) {
  .column {
    margin-top: 7.729468599vw;
  }
}
.column .section_text, .column .section_image {
  margin: 0;
}
.column .section_text img, .column .section_image img {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 828px) {
  .column .section_text {
    margin-bottom: 7.729468599vw;
  }
}
.column_item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 47.9166666667%;
}
@media screen and (max-width: 828px) {
  .column_item {
    width: 100%;
  }
}
@media screen and (max-width: 828px) {
  .column_item:last-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 828px) {
  .scroll-X {
    overflow-x: scroll;
    margin-left: auto;
    padding-bottom: 1.9323671498vw;
    padding-right: 0.9661835749vw;
    max-width: initial !important;
  }
}
@media screen and (max-width: 828px) {
  .scroll-X img {
    max-width: initial;
    width: 115.9420289855vw;
    margin-left: 0;
  }
}