﻿body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* background: #f2f2f2; */
  background: light-blue;
}

:root{
  --green-color:#77bfad;
  --green-hover:#529183;
  --blue-color:#1071c0;
  --blue-hover:#0e5ba3;
  --main-color:var(--blue-color);
  --main-hover:var(--blue-hover);
}

/*------共有部分------*/
/*ヘッダー*/
#headGrp {
  background: var(--main-color);
}

.header {
  width: 90%;
  max-width: 700px;
  line-height: 70px;
  height: 70px;
  /* background: url(../img/spc_img_03-2.svg) no-repeat 30px 20px;
  background-size: 160px;
  padding-left: 210px; */
  position: relative;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: white;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:768px) {
  .header {
    width: 100%;
    max-width: 90%;
    line-height: 130px;
    height: 85px;
    /* background: url(../img/spc_img_03-2.svg) no-repeat 30px 20px; */
    background-size: 50%;
    padding-left: 0;
    color: white;
    font-size: 4.5vw;
    text-align: center;
    background-position: center calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
}
}
/*ステップ*/
#stepGrp {
  margin: 40px auto;
}

.form_text3 p{
    font-size: 1.5rem;
}

.step {
  list-style-type: none;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.step li {
  display: table-cell;
  position: relative;
  background: #a7a7a7;
  padding: 1em 0.5em 1em 2em;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}

.step li:last-child {
  padding-right: 1em;
}

.step li:last-child:before,
.step li:last-child:after {
  display: none;
}

.step li:first-of-type {
  border-radius: 3px 0 0 3px;
}

.step li:last-of-type {
  border-radius: 0 3px 3px 0;
}

.step li:before,
.step li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}

.step li:before {
  top: -17px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}

.step li:after {
  top: -17px;
  right: -.8em;
  border-style: solid;
  border-color: transparent transparent transparent #a7a7a7;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}

.step li.is-current {
  background: var(--main-color);
}

.step li.is-current:after {
  border-color: transparent transparent transparent var(--main-color);
}

.step li span {
  background: #fff;
  padding: 3px 7px;
  margin-right: 10px;
  color: #a7a7a7;
}

.step li.is-current span {
  color: var(--main-color);
}
@media screen and (max-width:768px){
  .step li span{
    font-size: 1vw;
  }
}
/*--------------------------
1-1.アカウント発行画面
1-2.アカウント確認画面
1-3.完了画面
------------------------------------*/
/*コンテンツの幅*/
#formGrp {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 60px;
}

/*説明文章*/
.form_text {
  /*1-1*/
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
}

.form_text2 {
  /*1-2*/
  text-align: left;
  font-size: 1.5rem;
  line-height: 2;
}

.form_text2 p {
  /*1-2*/
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.form_text2 p::before {
  /*1-2*/
  font-family: "Font Awesome 5 Free";
  content: '\f00c';
  font-weight: 900;
  padding-right: 5px;
  color: var(--main-color);
}

.fnt_bold {
  /*1-2*/
  font-weight: bold;
  padding-right: 3px;
}

.form_text3 {
  /*1-3*/
  text-align: left;
  font-size: 1.5rem;
  line-height: 2;
}

.form_text3 p:last-of-type {
  /*1-3*/
  text-indent: -1em;
  margin-left: 1em;
  font-size: 1.25rem;
  color: var(--main-color);
}

/*タイトル*/
#formGrp h2 {
  margin: 40px 0;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
}

/*白枠*/
.form_list {
  background: #fff;
  margin-top: 40px;
  padding: 40px 50px 50px;
  border-radius: 20px;
  /*box-shadow: 0 2rem 2rem -1.5rem hsl(200 50% 20% / 40%);*/
border: 1px solid #eee;
    filter: drop-shadow(5px 5px 7px rgba(0, 0, 0, 0.1));
}

/*入力必須項目の文章*/
.form_list>p {
  text-align: right;
}

/*入力フォームの並び方*/
.form_list form {
  display: flex;
  flex-direction: column;
}

.form_list form>div {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px 5px;
}

.form_list form>div>div {
  width: 48%;
  /* IE8以下とAndroid4.3以下用フォールバック */
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
}

/*入力フォームの入力欄デザイン*/
.form_list form input {
  height: 40px;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
}

.form_list form input:focus {
  border: 1px solid var(--main-color);
  outline: 0;
}

.form_list form input::placeholder {
  color: #c7c7c7;
}

/*確認するのボタン設定*/
/* .form_list>form>input:last-of-type {
  background: var(--main-color);
  color: #fff;
  border: none;
  width: 100%;
  max-width: 400px;
  height: 50px;
  font-size: 1.75rem;
  margin: 20px auto 0;
  transition: all 0.3s ease 0s;
}

.form_list>form>input:last-of-type:hover {
  background: var(--green-hover);
  cursor: hand;
  cursor: pointer;
} */

/*一つ前に戻る、アカウント作成のボタン*/
.form_list form .check_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.form_list form .check_btn input {
  width: 90%;
  max-width: 300px;
  background: var(--main-color);
  color: #fff;
  border: none;
  height: 40px;
  margin-bottom: 0;
  font-size: 1.75rem;
  transition: all 0.3s ease 0s;
}

.form_list form .check_btn input:hover {
  background: var(--main-hover);
  cursor: hand;
  cursor: pointer;
}

.prevBtn2 {
  background: #fff;
  color: var(--main-color);
  border: none;
  width: 90%;
  max-width: 400px;
  height: 50px;
  font-size: 1.75rem;
  margin: 20px auto 0px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 2px solid var(--main-color);
}
.prevBtn2:hover{
  cursor: pointer;
  background: #dae9ff;
}
/*入力フォームのテキスト部分*/
.form_list p {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #595959;
}

.form_list p span {
  color: #cf1300;
  padding-right: 5px;
}

.form_list form p .form_note {
  display: block;
  color: var(--main-color);
}

/*確認・登録のボタン*/
input.touroku,
input.kakunin{
  background: var(--main-color);
  color: #fff;
  border: none;
  width: 100%;
  max-width: 400px;
  height: 50px!important;
  font-size: 2rem;
  margin: 20px auto 10px;
  padding: 0 10px;
  transition: all 0.3s ease 0s;
  font-weight: bold;
}
input.touroku:hover,
input.kakunin:hover{
  background: var(--main-hover);
  cursor: hand;
  cursor: pointer;
}

/*完了画面のログインボタン*/
.sitegate_a{
  display:block;
  text-align: center;
  font-size: 1.5rem;
  width: 90%;
    max-width: 330px;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 15px 10px;
    border-radius: 3px;
  transition: all 0.3s ease 0s;
  margin: 20px auto;
}
.sitegate_a:hover{
  background: var(--main-hover);;
}
#formGrp p,
#formGrp form{
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (max-width:768px){
  .form_list{
    padding: 40px 25px 30px;
  }
  .form_list p{
    font-size: 3vw;
  }
  .form_list form > div > div {
    width: calc(50% - 10px);
}
.form_text{
  text-align: left;
}

#formGrp p{
  font-size: 3.25vw;
  line-height: 1.75;
}
#formGrp p br,
.form_text2 p br{
  display: none;
}
.prevBtn2 {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0px;
}

}
/*--------------------------
2-1.ログイン画面
------------------------------------*/
/*コンテンツの幅*/
#loginGrp {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 60px;
}

/*白枠*/
.login_list {
  background: #fff;
  padding: 40px 50px 50px;
  margin-top: 60px;
  border-radius: 20px;
  /*box-shadow: 0 2rem 2rem -1.5rem hsl(200 50% 20% / 40%);*/
border: 1px solid #eee;
    filter: drop-shadow(5px 5px 7px rgba(0, 0, 0, 0.1));
}

/*タイトル*/
.login_list h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
}

/*公開期間*/
.login_list h3 {
  margin: 30px 0;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}

/*入力フォームの並び方*/
.login_form form {
  display: flex;
  flex-direction: column;
}

.login_form form div {
  display: flex;
  flex-direction: column;
  margin: 0px auto 0;
  width: 100%;
}

/*入力フォームの入力欄デザイン*/
.login_form form p {
  color: #595959;
  margin-bottom: 5px;
  font-size: 15px;
}
.login_form form p.kochira{
  text-align: center;
  margin-top: 15px;
}
.login_form form input {
  height: 40px;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  font-size: 17px;
}



.login_form form input:focus {
  border: 1px solid var(--main-color);
  outline: 0;
}

.login_form form input::placeholder {
  color: #c7c7c7;
}

/*サインインのボタン設定*/
.login_form form .login_submit {
  background: var(--main-color);
  color: #fff;
  border: none;
  width: 100%;
  max-width: 400px;
  height: 50px;
  font-size: 2rem;
  font-weight: bold;
  margin: 20px auto 10px;
  transition: all 0.3s ease 0s;
}

.login_form form .login_submit:hover {
  background: var(--main-hover);
  cursor: hand;
  cursor: pointer;
}
/*アカウント登録がまだの方はこちた、パスワードをお忘れの方はこちら*/
p.kochira{
  margin: 10px;
}

/*テキスト部分（パスワードを忘れた～）*/
.login_form form .re_registration_p {
  font-size: 1.25rem;
  text-align: center;
  margin: 20px auto 0;
  color: #595959;
}

.login_form form p a {
  background: var(--main-color);
  color:#fff;
  padding: 0.2em 0.25em;
  margin: 0 0.25em;
  border-radius: 5px;
}
.login_form form p a:hover{
  background: var(--main-hover);
}
/*エラーの文章*/
.text_error {
  text-align: center;
  margin: 30px auto 0;
  color: #595959;
}


@media screen and (max-width:768px) {
  .login_list h3{
    font-size: 3.25vw;
  }
  .login_list{
    padding: 40px 20px 50px;
  }
}
/*--------------------------
2-3.動画再生画面
------------------------------------*/
/*コンテンツの幅*/
#videoGrp {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
}

/*白枠*/
.video_list {
  display: flex;
  flex-direction: column;
  text-align: center;
  /*background: #fff;*/
  /*padding: 40px 50px 50px;*/
  /*margin-top: 60px;*/
}

/*動画のタイトル*/
.video_list h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
}

/*動画*/
.video_item {
  display: inline-block;
  margin: 40px auto;
  /* width: 100%;
  max-width: 900px; */
}

/*もどるボタン*/
.back_btn {
  background: var(--main-color);
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 20px 10px;
  border-radius: 5px;
}

/*--------------------------
レジュメの画面
------------------------------------*/
#dlGrp {
  width: 90%;
  max-width: 700px;
  margin: 40px auto 60px;
}
.dl_setsumei{
  padding: 20px 0;
  font-size: 18px;
  text-align: center;
}
.dl_text {
  text-align: center;
    font-size: 1.5rem;
    line-height: 2;
    margin: 40px 0;
}
.dl_text p{
  text-align: left;
  padding-left: 1.5em;
  text-indent: -1.5em;
  display: inline-block;
  margin-top: 1em;
}
.dl_btn {
  display: block;
  background: #7bdd6e;
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1.5rem;
  margin: 20px auto 0;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}

.dl_btn:hover {
  background: #4d9c43;
}
.dl_btn_2 {
  display: block;
  background: #1c8856;
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1.5rem;
  margin: 20px auto 0;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}

.dl_btn_2:hover {
  background: #11613c;
}

.dl_btn_3 {
  display: block;
  background: #2751ac;
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1.5rem;
  margin: 20px auto 0;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}

.dl_btn_3:hover {
  background: #1a387a;
}



.check_back_btn{
  background: var(--main-color);
  color: #fff;
  padding: 1px 10px;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}
.check_back_btn:hover {
  background: var(--main-hover);
  cursor: pointer;
}





/*20230516追加----------安田*/
div.footer_plus{
  text-align: center;
  margin: 30px auto 50px;
}
div.footer_plus p{
  font-size: 17px;
}