@charset "utf-8";

/****************************************
テスター
****************************************/
/**********登録ボタン**********/
.registrationBtn {
  background-color: #003F75;
  line-height: 1.4;
  margin: 20px auto 80px;
  display: block;
}

.registrationBtn i {
  margin-left: 5px;
}

/**********インフォメーション**********/
.infoCts {
  text-align: center;
  margin: 30px 0;
  border: 3px solid #DDD;
  background-color: #FFF;
  padding: 25px 30px 30px;
}

.infoCts dt {
  font-weight: 900;
  color: #003F75;
  font-size: 1.8rem;
}

.infoCts dd {
  margin-top: 10px;
}

.infoCts dd button {
  margin: 15px auto 0;
  background-color: #003F75;
}

/* 左寄せ調整専用クラス */
.infoCts dd.leftAlign {
  text-align: left;
  margin-left: 7.5em;
  padding-left: 0.5em;
}

/**********必須条件**********/
.conditionCts {
  background-color: #E8EFF6;
  margin-top: 15px;
  padding: 15px 20px 20px;
}

.conditionCts dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003F75;
}

.conditionCts dd ul li {
  list-style-type: disc;
  margin-top: 5px;
  font-weight: 600;
  margin-left: 25px;
}

/*仮登録画面用
*/
h4 {
  margin-top: 25px;
  font-size: 2.4rem;
  line-height: 1.4;
  border-left: 5px solid #003F75;
  padding-left: 15px;
}

/*
本登録用画面
*/
.flexInput {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.flexInput li {
  display: flex;
  align-items: center;
}

.flexInput label {
  display: flex;
  align-items: center;
  gap: 5px;
}

/*本登録完了画面用
*/
/*ボタンスタイル */
.buttonStyle {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #003F75; /* ボタンの背景色 */
  text-align: center;
  text-decoration: none; /* 下線を削除 */
  border-radius: 50px; /* 角を丸くする */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 20px auto; /* ボタンを中央に配置 */
}

.buttonStyle:hover {
  background-color: #002F5A; /* ホバー時の背景色 */
}

/****************************************
テスターとは
****************************************/
.testerAboutWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testerAboutWrap li {
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  width: 49%;
  margin-top: 20px;
  padding-right: 25px;
}

.testerAbout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testerAbout dt {
  width: 35%;
  background-size: cover;
  background-position: center;
  height: 150px;
}

.testerAboutWrap li:first-child .testerAbout dt {
  background-image: url("../img/tester/about_01.jpg");
}

.testerAboutWrap li:nth-child(2) .testerAbout dt {
  background-image: url("../img/tester/about_02.jpg");
}

.testerAboutWrap li:nth-child(3) .testerAbout dt {
  background-image: url("../img/tester/about_03.jpg");
}

.testerAboutWrap li:last-child .testerAbout dt {
  background-image: url("../img/tester/about_04.jpg");
}

.testerAbout dd {
  font-weight: 500;
  width: 60%;
}

@media only screen and (max-width: 768px) {
  .testerAboutWrap li {
    width: 100%;
    margin-top: 20px;
  }
}

/**********募集**********/
.testerRecruitCts {
  margin-top: 30px;
  border: 2px solid #FC9D59;
  padding: 15px 20px 20px;
  background-color: #FFF;
  border-radius: 10px;
}

.testerRecruitCts dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FC9D59;
  line-height: 1.6;
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}

.testerRecruitCts dd {
  margin-top: 5px;
}

.registerBtn {
  background-color: #FC9D59;
  color: #FFF;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 1.4rem;
  text-align: center;
}

.registerBtn i {
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .testerRecruitCts {
    margin-top: 20px;
  }

  .registerBtn {
    width: 100%;
    font-size: 1.6rem;
  }
}

/**********種別**********/
.testerTypeCtsWrap {
  margin-bottom: 15px;
}

.testerTypeCtsWrap li {
  margin-top: 20px;
  border: 1px solid #CCC;
  background-color: #FFF;
  padding: 15px 20px 15px 15px;
  border-radius: 10px;
}

.testerTypeCts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testerTypeCts dt {
  width: 20%;
}

.testerTypeCts dt img {
  object-fit: cover;
  height: 100%;
  border-radius: 5px;
}

.testerTypeCts dd {
  width: 78%;
  padding-bottom: 10px;
}

/* .testerTypeCts dd p:first-child {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003F75;
} */

/* .testerTypeCts dd p:first-child:before {
  content: "■";
} 上記2つのクラスは1ヶ所しか使用されていないレイアウトが変わったため無効化。
  */

.feeTtl {
  font-weight: 600;
  color: #003F75;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .testerTypeCtsWrap li {
    margin-top: 15px;
    padding: 15px;
  }

  .testerTypeCts dt {
    width: 100%;
    height: 200px;
  }

  .testerTypeCts dd {
    padding: 10px;
    width: 100%;
  }
}

/**********始め方**********/
.testerStartCtsWrap li {
  border: 2px solid #003F75;
  position: relative;
  padding: 20px 25px 25px 15px;
  border-radius: 10px;
  margin-top: 50px;
  background-color: #FFF;
}

.testerStartNumber {
  position: absolute;
  top: -40px;
  left: 0;
  line-height: 1;
  font-size: 4rem;
  color: #003F75;
  opacity: 0.5;
}

.testerStartTtl {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003F75;
}

.testerStartCts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.testerStartCts dt {
  width: 100px;
  height: 100px;
  background-color: #003F75;
  border-radius: 50%;
  overflow: hidden;
}

.testerStartCts dd {
  width: calc(100% - 115px);
}

.testerStartCts dd .registerBtn {
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  .testerStartCtsWrap li {
    padding: 20px;
  }

  .testerStartTtl {
    text-align: center;
    margin-top: 5px;
  }

  .testerStartCts {
    display: block;
  }

  .testerStartCts dt {
    width: 120px;
    height: 120px;
    margin: auto;
  }

  .testerStartCts dd {
    width: 100%;
  }

  .testerStartCts dd .registerBtn {
    margin-left: 0;
  }
}

/****************************************
NDA
****************************************/
.ndaTtl {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 20px;
}

.ndaTtl span {
  font-size: 1.4rem;
  font-weight: 400;
}

.ndaCts > dt {
  font-weight: 600;
  color: #003F75;
  margin-top: 20px;
  font-size: 1.8rem;
}

.ndaCts > dt:not(:first-child) {
  margin-top: 30px;
}

.ndaCts > dt:before {
  content: "■";
}

.ndaCts > dd > p:not(:first-of-type) {
  margin-top: 10px;
}

.ndaCts dd ul li {
  list-style-type: disc;
  margin-top: 5px;
  font-weight: 600;
  margin-left: 25px;
}

.ndaCts dd ol {
  counter-reset: my-counter;
  list-style-type: none;
}

.ndaCts dd ol li {
  padding-left: 35px;
  position: relative;
  font-weight: 600;
  margin-top: 5px;
}

.ndaCts dd ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #D05D60;
  color: #FFF;
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
}

.ndaSendCts {
  border: 1px solid #CCC;
  padding: 10px 15px;
  margin: 5px 0 10px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.ndaSendCts dt {
  border-bottom: 1px dotted #CCC;
  padding-bottom: 5px;
}

.ndaSendCts dd {
  margin-top: 5px;
  font-weight: 500;
}

.downloadBtn {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  background-color: #80AF6C;
  color: #FFF;
  margin: 50px auto 0;
  padding: 15px 45px;
  width: fit-content;
  border-radius: 50px;
}

.downloadBtn i {
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .downloadBtn {
    margin: 30px auto 0;
  }
}

.displayNone {
  display:none;
}

/****************************************
利用規約
****************************************/
.registrationTermWrap {
  font-size: 1.4rem;
  border: 1px solid #CCC;
  padding: 20px;
  margin: 15px auto;
  height: 500px;
  overflow-y: scroll;
}

.registrationTermWrap dt {
  font-weight: 600;
  font-size: 1.6rem;
  margin-top: 15px;
}

.registrationTermWrap dd {
  margin-top: 5px;
}

.registrationTermWrap dd ul {
  list-style-type: disc;
}

.registrationTermWrap dd li {
  margin-top: 5px;
  margin-left: 20px;
}
