@charset "UTF-8";

/*
------------------------------------------------------------------------------------------------------------
共通部分CSS
------------------------------------------------------------------------------------------------------------
*/
body {
  /*全体の背景*/
  background-image: url(../images/body/background-image.png);
  background-repeat: round;
  /*全体の文字色*/
  font-style: #333333;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;

  /*全体のフォント設定*/
}

img {
  width: 100%;
  /*横幅設定*/
}

.relative {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
}

h1 {
  color: #393939;
  /*文字色設定*/
  font-size: 75px;
  /*文字サイズ*/
  line-height: 1.2;
  /*行間設定*/
  padding: 15px;
  /*内側の余白設定*/
}

h2 {
  font-size: 2.25rem;
  /*文字サイズ*/
  font-weight: bold;
  /*文字の太さ設定*/
  color: #4d4d4d;
  /*文字色設定*/
  line-height: 1.3;
  /*行間設定*/
  padding-top: 60px;
  /*内側上の余白設定*/
  padding-bottom: 40px;
  /*内側下の余白設定*/
}

.recommend h2 span {
  font-size: 24px;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
}

.h2_size_24 {
  font-size: 1.5rem;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
  padding-top: 20px;
  /*内側上の余白設定*/
  color: #c8c8c8;
  /*文字色設定*/
}

.h3 {
  font-size: 1.875rem;
  /*文字サイズ*/
  font-weight: bold;
  /*文字の太さ設定*/
  color: #0a498c;
  /*文字色設定*/
  line-height: 1.4;
  /*行間設定*/
  padding-top: 60px;
  /*内側上の余白設定*/
}

h4 {
  margin-top: 20px;
  /*外側上の余白設定*/
  margin-left: 45px;
  /*外側左の余白設定*/
  font-size: 24px;
  /*文字サイズ*/
  float: left;
  /*要素を左に配置*/
}

.size_20 {
  font-size: 1.25rem;
  /*文字サイズ*/
  padding: 20px 80px 60px;
  /*内側の余白設定*/
}

.sp-none {
  display: block !important;
  /*PC画面で表示*/
}

.sp_none {
  display: block !important;
  /*PC画面で表示*/
}

.pc-none {
  display: none !important;
  /*PC画面で非表示*/
}

.pc_none {
  display: none !important;
  /*PC画面で非表示*/
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
    /*SP画面で非表示*/
  }

  .sp_none {
    display: none !important;
    /*SP画面で非表示*/
  }

  .pc-none {
    display: block !important;
    /*SP画面で表示*/
  }

  .pc_none {
    display: block !important;
    /*SP画面で表示*/
  }
}

/*セクションごとのスペースをあける*/
.section {
  margin-bottom: 100px;
}

@media(max-width:400px) {
  .section {
    margin-bottom: 60px;
  }
}


/*
------------------------------------------------------------------------------------------------------------
表のCSS
------------------------------------------------------------------------------------------------------------
*/
table {
  width: 100%;
  /*横幅設定*/
  font-size: 100%;
  /*文字サイズ*/
  border-spacing: 0;
  /*表組み内のボーダーの隣り合うセルの境界線の間隔を設定*/
}

td,
th {
  border: 1px solid #bbb;
  /*外枠の設定*/
  padding: 10px 20px 7px;
  /*内側の余白設定*/
  line-height: 1.8;
  /*行間設定*/
  background: #fff;
  /*背景色設定*/
}

th {
  width: 25%;
  /*横幅設定*/
  background: #ddd;
  /*背景色設定*/
  font-weight: normal;
  /*文字の太さ設定*/
}

.company_info {
  margin-top: 40px;
  /*外側上の余白設定*/
}

.company_info a {
  color: #0072bc;
  /*文字色設定*/
  text-decoration: underline;
  /*テキストに下線を表示する*/
}

.center {
  text-align: center;
  /*ブロック要素を中央配置*/
}

.disclaimer {
  overflow-y: scroll;
  /*要素を縦方向にスクロールして表示する*/
  height: 100px;
  /*高さ設定*/
  width: 70%;
  /*横幅設定*/
  padding: 1em;
  /*内側の余白設定*/
  font-size: 80%;
  /*文字サイズ*/
  color: #888;
  /*文字色設定*/
  margin: 20px auto 0;
  /*外側の余白設定*/
  text-align: left;
  /*ブロック要素を左配置*/
}



/*
------------------------------------------------------------------------------------------------------------
メニューCSS
------------------------------------------------------------------------------------------------------------
*/
nav {
  text-align: center;
  /*ブロック要素を中央配置*/
  height: 84px;
  /*高さ設定*/
  background-color: #393939;
  bottom: 0px;
  /*背景色設定*/
}

nav ul {
  margin: 0;
  /*外側の余白設定*/
  padding: 0;
  /*内側の余白設定*/
}

nav li {
  list-style: none;
  /*マーカーの非表示*/
  display: inline-block;
  /*インライン要素に設定*/
  width: 30%;
  /*横幅設定*/
  min-width: 90px;
  /*最小の横幅設定*/
  padding-top: 3%;
  /*内側上の余白設定*/
  padding-bottom: 3%;
  /*内側下の余白設定*/
}

nav li:not(:last-child) {
  border-right: 2px solid #292929;
  /*右外枠の設定*/
}

nav a {
  text-decoration: none;
  /*テキストの下線の非表示*/
  font-size: 150%;
  /*文字サイズ*/
  color: #fff;
  /*文字色設定*/
}

nav a:hover {
  color: #F7CB4D;
  /*文字色設定*/
}



/*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/
a {
  color: #555;
  /*文字色設定*/
  text-decoration: none;
  /*テキストの下線の非表示*/
}

a:hover {
  color: #006ddc;
  /*文字色設定*/
}

a:hover img {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  top: 3pt;
  /*要素の位置を下に3ptずらす*/
  left: 3pt;
  /*要素の位置を右に3ptずらす*/
}


/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
#container {
  width: 750px;
  /*コンテナー幅*/

  /*背景色設定*/
  border-left: 1px solid #ccc;
  /*左外枠の設定*/
  border-right: 1px solid #ccc;
  /*右外枠の設定*/
  margin: 0 auto;
  /*外側の余白設定*/
}


/*
------------------------------------------------------------------------------------------------------------
ヘッダーメニューCSS
------------------------------------------------------------------------------------------------------------
*/

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 150px;
  background-color: #fff;
}


.header_logo {
  max-width: 171px;
}

@media(min-width:401px) {


  .header_logo {
    max-width: 171px;
    margin-right: 30px;
  }

}






.nav ul {
  align-items: center;
  margin: 0;
  /*外側の余白設定*/
  padding: 0;
  /*内側の余白設定*/
}

.nav li {
  list-style: none;
  /*マーカーの非表示*/
  display: inline-block;
  /*インライン要素に設定*/
  max-width: 30%;
  /*横幅設定*/
  /*最小の横幅設定*/
  padding-top: 0;
  /*内側上の余白設定*/
  padding-bottom: 0;
  /*内側下の余白設定*/
}


.nav a {
  text-decoration: none;
  /*テキストの下線の非表示*/
  font-size: 150%;
  /*文字サイズ*/
  color: #333;
  /*文字色設定*/
}

.nav a:hover {
  color: #4d50f7;
  /*文字色設定*/
}



/*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/
a {
  color: #555;
  /*文字色設定*/
  text-decoration: none;
  /*テキストの下線の非表示*/
}

a:hover {
  color: #006ddc;
  /*文字色設定*/
}

a:hover img {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  top: 3pt;
  /*要素の位置を下に3ptずらす*/
  left: 3pt;
  /*要素の位置を右に3ptずらす*/
}



/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
#container {
  width: 750px;
  /*コンテナー幅*/

  /*背景色設定*/

  /*左外枠の設定*/

  /*右外枠の設定*/
  margin: 0 auto;
  /*外側の余白設定*/
}

/*
------------------------------------------------------------------------------------------------------------
CVT周辺CSS
------------------------------------------------------------------------------------------------------------
*/

.cvt-fream {
  background-image: url(../images/body/3-cvt-fream-f.png);
  max-width: 750px;
  height: 650px;
  text-align: center;
}

.cvt1 {
  max-width: 70%;
  margin-top: 100px;

}

.cvt2 {
  max-width: 80%;
}


.cvt-fream-2 {
  background-image: url(../images/body/cvt-fream.png);
  max-width: 750px;
  height: 400px;
  text-align: center;
}

.cvt1 {
  max-width: 70%;
  margin-top: 100px;

}

.cvt-fream-3 {
  background-image: url(../images/body/cvt-fream2.png);
  max-width: 750px;
  height: 400px;
  text-align: center;
}

.cvt2 {
  max-width: 70%;
  margin-top: 20px;

}







/*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/


.footer {
  width: 100%;
  /*横幅設定*/
  height: auto;
  /*高さ設定*/
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal #333;
  /*文字色設定*/
  padding-top: 20px;
}


.footer-main {

  display: flex;
  align-items: center;
  justify-content: left;
  background-color: #fff;
}

.footer-logo {
  margin-left: 50px;

}




.footer__inner {
  margin-left: 100px;


}

.footer__inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: auto;
  background-color: #fff;
}

.footer__inner li {
  list-style: none;

  /*内側の余白設定*/
  font-size: 100%;
  /*文字サイズ*/
  /*下外枠の設定*/
}

.footer__inner a {
  /*内側の余白設定*/
  color: #333;
  /*文字色設定*/
  /*内側左の余白設定*/
  /*footerの矢印画像の設定*/
  display: block;
  width: 100%;
}

.footer__inner a::before {
  display: inline-block;

  margin-right: 10px;
}



.footer__inner a:hover {
  opacity: 0.9;
  background-color: #3a6f5f;
  color: #fff;
}


.footer-copy p {
  text-align: center;
  /*ブロック要素を中央配置*/
  padding: 20px 0;
  /*内側の余白設定*/
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  /*文字サイズ*/
}



/*
===================================================================================================================================
スマホ版のCSS
===================================================================================================================================
*/

@media screen and (max-width: 400px) {

  h1 {
    font-size: 250%;
    /*文字サイズ*/
    padding: 5px;
    /*内側の余白設定*/
  }

  h2 {
    font-size: 180%;
    /*文字サイズ*/
    font-weight: bold;
    /*文字の太さ設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    color: #4d4d4d;
    /*文字色設定*/
    line-height: 1.3;
    /*行間設定*/
    padding-top: 60px;
    /*内側上の余白設定*/
    padding-bottom: 40px;
    /*内側下の余白設定*/
  }

  .h3 {
    font-size: 130%;
    /*文字サイズ*/
    font-weight: bold;
    /*文字の太さ設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    color: #0a498c;
    /*文字色設定*/
    line-height: 1.4;
    /*行間設定*/
    padding-top: 60px;
    /*内側上の余白設定*/
    padding-left: 4%;
    /*内側左の余白設定*/
    padding-right: 4%;
    /*内側左の余白設定*/
  }

  h4 {
    margin-top: 20px;
    /*外側上の余白設定*/
    margin-left: 4%;
    /*外側左の余白設定*/
    font-size: 120%;
    /*文字サイズ*/
    float: none;
    /*floatの初期値*/
  }

  .size_20 {
    font-size: 100%;
    /*文字サイズ*/
    padding: 20px 4% 60px;
    /*内側の余白設定*/
  }

  /*
------------------------------------------------------------------------------------------------------------
メニューCSS
------------------------------------------------------------------------------------------------------------
*/
  .sp_menu {
    display: flex;
    /*要素を横並びに設定*/
    width: 100%;
    /*横幅設定*/
    flex-direction: row;
    /*フレックスアイテムの配置方向を指定(初期値)*/
    padding: 0;
    /*内側の余白設定*/
    margin-bottom: -2px;
    /*外側下の余白設定*/
  }


  /*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
  #container {
    width: 100%;
    /*横幅設定*/
  }



  /*
------------------------------------------------------------------------------------------------------------
FVのCSS
------------------------------------------------------------------------------------------------------------
*/

  .fv-lead {
    height: 50px;
    /*高さ設定*/
    margin-top: 10px;
    /*外側上の余白設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    background-image: url(../images/fv_02.png);
    /*Webデザイン体験オンラインイベントのテキストの両サイドの吹き出し*/
    background-size: contain;
    /*縦横比を保ったまま、背景画像が領域に収まる表示サイズに調整*/
    background-repeat: no-repeat;
    /*背景画像を繰り返さない*/
  }

  .fv-lead p {
    font-size: 90%;
    /*文字サイズ*/
  }


  /*
------------------------------------------------------------------------------------------------------------
  SP-CVTのCSS
------------------------------------------------------------------------------------------------------------
*/

  .cvt-fream {
    background-image: url(../images/body/3sp-cvt-fream-f.png);
    background-size: 390px;
    max-width: 390px;
    height: 400px;
    text-align: center;
  }

  .cvt1 {
    max-width: 80%;
    margin-top: 50px;

  }

  .cvt2 {
    max-width: 90%;
    margin-top: 30px;
    margin-bottom: 20px;
  }


  .cvt-fream-2 {
    background-image: url(../images/body/cvt-fream.png);
    background-size: 390px;
    height: 250px;
    text-align: center;
  }


  .cvt-fream-3 {
    background-image: url(../images/body/cvt-fream2.png);
    background-size: 390px;
    height: 250px;
    text-align: center;
  }









  /*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/
  footer {
    /*mobile*/
    width: 100%;
    /*横幅設定*/
    font-size: 60%;
    /*文字サイズ*/
    margin-bottom: 15px;
    /*外側下の余白設定*/
  }

  .footer__inner li {
    font-size: 80%;
    /*文字サイズ*/
  }

  footer .img-center {
    font-size: 80%;
    /*文字サイズ*/
  }

  .footer {
    width: 100%;
    /*横幅設定*/
    height: auto;
    /*高さ設定*/
    font-family: "kozuka-gothic-pr6n", sans-serif;
    font-weight: 700;
    font-style: normal #333;
    /*文字色設定*/
    padding-top: 20px;
  }


  .footer-main {

    display: flex;
    align-items: center;
    justify-content: left;
    background-color: #fff;
  }

  .footer-logo {
    margin-left: 20px;
    margin-top:10px;
    width:100px;

  }




  .footer__inner {
    margin-left: 10px;


  }

  .footer__inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: auto;
    background-color: #fff;
  }

  .footer__inner li {
    list-style: none;

    /*内側の余白設定*/
    font-size: 100%;
    /*文字サイズ*/
    /*下外枠の設定*/
  }

  .footer__inner a {
    /*内側の余白設定*/
    color: #333;
    /*文字色設定*/
    /*内側左の余白設定*/
    /*footerの矢印画像の設定*/
    display: block;
    width: 100%;
  }

  .footer__inner a::before {
    display: inline-block;

    margin-right: 10px;
  }



  .footer__inner a:hover {
    opacity: 0.9;
    background-color: #3a6f5f;
    color: #fff;
  }


  .footer-copy p {
    text-align: center;
    /*ブロック要素を中央配置*/
    padding: 20px 0;
    /*内側の余白設定*/
    font-family: "kozuka-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    /*文字サイズ*/
  }


}