@charset "UTF-8";
@import url("grid.css");
/* サイト全体のフォント指定 */
body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

img {
  width: 100%;
  height: auto;
  /*高さ自動*/
  vertical-align: bottom;
}

a {
  display: block;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}

a:hover {
  opacity: 0.5;
  transition: 0.5s;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*表示・非表示切り替え
-------------------------------------*/
.pc_mode {
  display: block;
}

.sp_mode {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_mode {
    display: none;
  }

  .sp_mode {
    display: block;
  }
}
/*ヘッダー
-------------------------------------*/
header {
  position: fixed;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 999;
  padding: 0;
  background: #fff;
  box-shadow: 0 1px 1px 2px rgba(0, 0, 1, 0.055);
}

.header_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_wrap h1 {
  width: 20%;
  margin: 10px;
}
.header_wrap nav {
  width: 80%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
  font-weight: normal;
}

@media screen and (max-width: 779px) {
  .header_wrap nav {
    width: 80%;
    padding: 0;
    margin: 0;
    display: block;
  }
}
ul.gnav {
  width: 100%;
  max-width: 1024px;
  display: inline;
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}
ul.gnav li {
  margin-right: 10px;
  margin-bottom: 0;
  /*&:last-child{
      margin-right: 10px;
  }*/
}

nav li a {
  text-decoration: none;
  text-align: center;
  align-items: center;
  width: 100%;
  display: block;
  color: #282771;
  font-weight: bolder;
  padding: 0.5em 1em;
  line-height: 1.3;
}

nav .gnav li a {
  font-size: 95%;
  padding: 0.5em;
}

@media screen and (max-width: 1024px) {
  .gnav li span {
    display: block;
  }
}
@media screen and (max-width: 779px) {
  .gnav li span {
    display: inline;
  }
}
nav a:hover {
  -webkit-text-decoration: under_line;
          text-decoration: under_line;
}

#navi {
  display: flex;
}

.cv_head_area {
  display: flex;
  justify-content: flex-end;
  width: 80%;
  margin-left: auto;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.navi ul {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 779px) {
  /* PC時はMENUボタンを非表示 */
  #open,
#close {
    display: none !important;
  }

  #navi {
    display: block !important;
  }
}
@media screen and (max-width: 779px) {
  header {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  header .container {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  header .row {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
  }

  .header_wrap {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
  }
  .header_wrap h1 {
    width: 60%;
    margin: 0;
    margin: 10px;
  }
  .header_wrap nav {
    width: 100%;
  }

  .header_wrap #open,
#close {
    position: absolute;
    top: 5px;
    right: 10px;
  }

  nav {
    background: #282771;
  }

  nav ul {
    max-width: 90%;
    margin: auto;
    padding: 0 2em;
    flex-direction: column;
  }
  nav ul li:last-child {
    margin-bottom: 2em;
  }

  #navi a {
    color: #fff;
  }

  .header_wrap li {
    padding-top: 0;
  }

  .cv_head_area {
    margin: auto;
    display: flex;
    flex-direction: column;
    max-width: 700px;
    justify-content: center;
    margin-top: 2em;
  }
  .cv_head_area img {
    margin-bottom: 10px;
  }

  /* スマホ時はMENUボタンを表示 */
  #open,
#close {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 5px;
    right: 10px;
  }

  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}
/*メインコンテンツ
-------------------------------------*/
.contnt_wrap {
  max-width: 780px;
  margin: auto;
}

main {
  margin: auto;
}

@media screen and (max-width: 769px) {
  main {
    margin: auto;
  }
}
.gray-back {
  background-color: #f4f4f4;
}

/*スライドボタン
-------------------------------------*/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 9999;
  min-height: 30px;
}

.slide-arrow {
  position: absolute;
  top: 0;
  height: 100%;
}

.prev-arrow {
  left: 0;
  top: 30%;
  width: 15%;
  height: 15%;
  background: none;
}

.next-arrow {
  right: 0;
  top: 30%;
  width: 15%;
  height: 15%;
  background: none;
}

.slide_box {
  width: 90%;
  margin: auto;
}

.slider_1 {
  margin-top: 30px;
}
.slider_1 .prev-arrow {
  top: 28%;
}
.slider_1 .next-arrow {
  top: 28%;
}

.slider_2 {
  margin-top: 30px;
}
.slider_2 .prev-arrow {
  top: 30%;
}
.slider_2 .next-arrow {
  top: 30%;
}

.slider .slick-slide {
  position: relative;
}
.slider .slick-slide a {
  color: #282828;
}

.slider .slick-slide .slick-slide-content {
  position: absolute;
  bottom: 5%;
  right: 10%;
  padding-right: 0.5em;
  font-size: 1.2em;
}

.slick-slide-content::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 30%;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

@media screen and (max-width: 470px) {
  .slider .slick-slide .slick-slide-content {
    font-size: 0.8em;
  }
}
.taiken_box {
  margin-top: 60px;
}

/*MVエリア
-------------------------------------*/
.mv_wrap {
  width: 100%;
  height: auto;
  margin: 0;
  padding-top: 123px;
}

@media screen and (max-width: 769px) {
  .mv_wrap {
    padding-top: 64px;
  }
}
/*タブ切り替え
-------------------------------------*/
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  margin: auto;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 1em;
  text-align: center;
  color: #666666;
  display: block;
  float: left;
  text-align: center;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #666666;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 1.4em;
  clear: both;
  overflow: hidden;
  line-height: 2;
  font-size: 1.2em;
  font-weight: normal;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #282828;
  border: 1px solid #868687;
  border-bottom: 1px solid #fff;
  font-size: 1.4em;
  font-weight: normal;
}

/*ナビボタンエリア
-------------------------------------*/
/*2列組の記述*/
.navbtn_box {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
}

ul.col2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
ul.col2 li.col_child {
  list-style: none;
  width: 48%;
}

/*ナビボタンエリア
-------------------------------------*/
.spring_bg {
  position: relative;
}

.campain_btn {
  width: 100%;
  position: absolute;
  bottom: 5%;
  width: 90%;
  margin-left: 5%;
}

@media screen and (max-width: 779px) {
  .campain_btn {
    width: 90%;
    bottom: 5%;
  }
}
/*cvエリア
-------------------------------------*/
a.cv_btn {
  width: 90%;
  margin: auto;
  text-align: center;
  max-width: 670px;
}

.cv_area,
.cv_area_last {
  margin-bottom: 50px;
  margin-top: 50px;
}

.cv_area_last {
  padding-top: 50px;
  border-top: 1px solid #868687;
}

/*特徴
-------------------------------------*/
input[type=checkbox].toggle {
  display: none;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 1em;
  border-top: solid 1px #ccc;
}
.option + .qa_fisrt {
  border-top: solid 1px #fff;
}
.option + .qa_last {
  border-bottom: solid 1px #ccc;
}

.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  padding: 0 50px 0 0;
  display: block;
  color: #333;
  font-weight: normal;
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #999;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: normal;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(45deg) !important;
}

.toggle:checked + .title::after {
  transform: rotate(135deg) !important;
}

/*フッター
-------------------------------------*/
footer {
  background: #101564;
  padding: 40px;
}

/*logo+電話番号*/
.footer_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.footer_info .footer_logo {
  max-width: 315px;
  margin-bottom: 40px;
}
.footer_info .footer_tel {
  max-width: 702px;
}

@media screen and (max-width: 779px) {
  .footer_info {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .footer_info .footer_logo {
    max-width: 50%;
    margin-bottom: 20px;
  }
}
/*コピーライト*/
.copyright {
  text-align: center;
  padding: 1rem 0;
}
.copyright a {
  color: #ffffff;
  text-decoration: none;
  display: inline;
}

/*個人情報保護*/
.privacy {
  text-align: center;
}
.privacy a {
  text-decoration: underline;
  color: #ffffff;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#pagetop a {
  display: block;
  background: #4fa339;
  color: #fff;
  width: 50px;
  padding: 10px 5px;
  text-align: center;
}

#pagetop a:hover {
  background: #666;
}


/* 2022 summer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.n_c2a_button {
    display: block;
    position: relative;
    margin: 1em auto !important;
    padding: .8em .7em .75em 0;
    border-radius: .2em;
    border-bottom: .3em solid #A12229;
    font-size: min(5.3vw,36px);
    line-height: 1;
    text-align: center;
    color: #fff;
    background-color: #E70012;
}
.n_c2a_button::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%) rotate(45deg);
    width: .4em;
    height: .4em;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all .3s;
}
.n_c2a_button:hover::after {
    transform: translate(50%, -50%) rotate(45deg);
    width: .6em;
    height: .6em;
}
.sp_head_c2a {
    display: none;
}

.slick-slide {
    opacity: 1;
    font-size: 1.2em;
    color: #153AC1;
}

.cv_head_area .n_c2a_button {
    margin: .1em auto !important;
    padding: .6em .7em .55em 0;
    font-size: min(4vw,20px);
}

.n_sec_title {
    font-size: min(6vw,36px);
    text-align: center;
    margin: 1.5em 0 .5em;
    font-weight: bold;
}

.n_banner_base {
    margin: .75em auto 0 !important;
    text-align: center;
}
.n_banner_base img {
    width: 60%;
}

.n_info_base ul {
    margin: 0 auto 6em;
}
.n_info_base ul li {
    list-style-type: none;
}

.n_info_box {
    background-color: #f7f7f7;
    border-radius: 4px;
    border: 1px solid #f1f1f1;
    padding: 1em 1.5em 1em 2em;
}
.n_info_date {
    font-size: 80%;
    color: #4FA439;
    line-height: 1.2;
}
.n_info_text {
    font-size: 15px;
}
.n_info_box a {
    display: inline;
    font-weight: bold;
}

.n_desc_box {
    font-size: min(4vw,22px);
    padding: .5em 0 1em;
    line-height: 1.7;
}
.n_desc_box .marker {
    position: relative;
    background: linear-gradient(transparent 70%, rgb(255 255 0 /.5) 20%);
}


#n_feature .n_sec_title {
    margin: 3em 0 0;
}
.n_title_desc {
    text-align: center;
    padding: .5em 0 1em;
}
.n_title_desc p {
    display: inline-block;
    text-align: left;
    font-size: min(4vw,22px);
    line-height: 1.7;
}

#anc_4 {
    margin-top: 3em;
}

.n_flow_base {
    margin: 6em auto 3em;
    padding: 1.75em 1.75em 4em;
    background-color: #ECEDE9;
}

.n_flow_base .n_sec_title {
}


.n_flow_desc {
    text-align: center;
    padding: .5em 0 3em;
}
.n_flow_desc p {
    display: inline-block;
    text-align: left;
    font-size: min(4vw,20px);
    line-height: 1.7;
}

.n_flow_list li {
    list-style-type: none;
    position: relative;
    margin: 2em .5em 7em;
    padding: 4em 1.5em 1.5em;
    border-radius: .7em;
    background-color: #fff;
    font-size: min(4vw,18px);
}
.n_flow_list li:nth-last-child(1) {
    margin: 0 .5em 0;
}
.n_flow_list li a {
    display: inline;
    font-weight: bold;
}
.n_flow_list li h3 {
    text-align: center;
    padding-bottom: .4em;
    font-size: min(5vw,26px);
}
.n_flow_list li h3 span {
    padding: 0 .3em;
    background: linear-gradient(transparent 70%, rgb(79 164 57 /.4) 20%);
}



.n_flow_icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 150px;
    height: 140px;
    border-radius: 50%;
    background-color: #ECEDE9;
    text-align: center;
}
.n_flow_icon_text {
    font-size: 130%;
    font-weight: normal;
    color: #4FA439;
}

.n_flow_icon_inner {
    width: 100%;
    height: 100%;
    background-position: 50% 60%;
    background-size: auto 60%;
    background-repeat: no-repeat;
}

.n_step1 .n_flow_icon_inner {
    background-image: url(../../img/n_2022cs_step1.png);
}
.n_step2 .n_flow_icon_inner {
    background-image: url(../../img/n_2022cs_step2.png);
}
.n_step3 .n_flow_icon_inner {
    background-image: url(../../img/n_2022cs_step3.png);
}
.n_step4 .n_flow_icon_inner {
    background-image: url(../../img/n_2022cs_step4.png);
}

#n_2022_schools .n_sec_title {
    margin-top: 2em;
    padding: 3em 0 .2em;
    background-image: url(../../img/n_2022cs_schools.png);
    background-position: 50% 0;
    background-size: auto 60%;
    background-repeat: no-repeat;
}

.n_2022_schools_desc {
    text-align: center;
    padding: .5em 0 1em;
}
.n_2022_schools_desc p {
    display: inline-block;
    text-align: left;
    font-size: min(4vw,20px);
    line-height: 1.7;
}

.n_2022 .header_wrap nav {
    width: 80%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: flex-end;
    font-weight: normal;
}

.n_sp {
    display: none;
}


/* 幅779px以下の表示
-------------------------------------*/
@media screen and (max-width: 779px) {
  /*ヘッダー
  -------------------------------------*/
  .header_wrap-box {
    display: none;
  }

  /*お問い合わせ
  -------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }

  .table td {
    display: block;
  }


    .n_banner_base img {
        width: 75%;
    }
    .contnt_wrap {
        margin: 0 1em;
    }

    .n_flow_base {
        padding: 1.75em .75em 4em;
    }
    .n_flow_base.contnt_wrap {
        margin: 4em 0 3em;
    }

    .n_2022 .header_wrap nav {
        width: 100%;
        justify-content: center;
    }
    .n_2022 .header_wrap nav #navi {
        width: 100%;
    }

    .n_flow_list li {
        margin: 2em .5em 9em;
        padding: 5.5em 1.5em 1.5em;
    }

    .header_wrap h1 {
        display: flex;
        width: 80%;
        margin: 0;
        margin: 10px;
        justify-content: space-between;
        align-items: center;
    }
    .n_header_logo {
        width: auto;
        height: 44px;
    }
    .sp_head_c2a {
        display: block;
        position: relative;
        margin: 0 0 !important;
        padding: 1em 2em .8em 1.25em;
        border-radius: 0.2em;
        border-bottom: 0.3em solid #A12229;
        font-size: min(5.3vw,15px);
        line-height: 1;
        text-align: center;
        color: #fff;
        background-color: #E70012;
    }
    .n_c2a_button::after {
        right: .75em;
    }


}

/* 幅400px以下の表示
-------------------------------------*/
@media screen and (max-width: 400px) {

    .sp_head_c2a {
        margin: 0 0 !important;
        padding: .4em 1.75em .3em 1em;
        border-radius: 0.2em;
        border-bottom: 0.3em solid #A12229;
        font-size: min(4.1vw,15px);
        line-height: 1;
        text-align: center;
        color: #fff;
        background-color: #E70012;
    }
    .n_sp {
        display: block;
    }

}/*# sourceMappingURL=style.css.map */