@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;
}

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

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

  .table td {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */