@charset "utf-8";
/*----------------------------
* 全体のfont-family
*----------------------------*/
* {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/* body */
body {
  background-color: #E5E9F2;
}

/* header */
header {
  width: 100%;
  padding: 48px 0px;
}
.header_title h1 {
  font-size: 32px;
  text-align: center;
}
.header_span {
  border-bottom: solid 5px #702f8e;
}

/* main */
.main_trial {
  width: 80%;
  height: 100vh;
  display: block;
  margin: auto;
}
.trial_quiz_show01 {
  display: flex;
  justify-content: space-around;
}
.trail_quiz {
  width: 400px;
  height: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}
.trail_quiz h2 {
  text-align: center;
  margin: 32px 0px;
  font-size: 24px;
}
.trail_quiz p {
  width: 60%;
  line-height: 1.3em;
  text-align: center;
  display: block;
  margin: auto;
  font-size: 16px;
}
.trial_btn {
  width: 40%;
  display: block;
  margin: auto;
  margin-top: 30px;
  text-align: center;
}
.trial_btn a {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: auto;
	padding: 16px 30px;
	font-weight: bold;
  border-radius: 100vh;
	background: #702f8e;
	color: #fff;
}
.trial_btn a:hover {
  opacity: 0.7;
}
/* .trial_quiz_show02 */
.trial_quiz_show02 {
  margin: 32px 0px;
  display: flex;
  justify-content: space-around;
}

/* main comming soon */
.trial_comming {
  width: 400px;
  height: 300px;
  line-height: 300px;
  background-color: #702f8e;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}
.trial_comming p {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;

 }
 
 /* ホームに戻るボタン */
 .trial_back {
   text-align: center;
   margin: 56px 0;
}
.trial_back a {
  display: block;
	text-align: center;
	text-decoration: none;
	width: 120px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border-radius: 100vh;
	background: #702f8e;
	color: #fff;
}
.trial_back a:hover {
  opacity: 0.7;
}

/* footer */
footer {
  width: 100%;
  height: 280px;
  background-color: #702f8e;
}

footer .footer-title {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 24px;
}

.footer-sns .sns-nav .sns-ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 16px;
}

.sns-ul .sns-li a {
  color: rgba(223, 222, 222, 0.9);
  font-size: 40px;
  text-decoration: none;
  cursor: pointer;
}

.sns-ul .sns-li a:hover {
  color: #fff;
}

.public-ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 10px;
}

.public-ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
}

.public-ul li a:hover {
  background-color: rgba(216, 216, 216, 0.3);
}

.copy-title {
  font-size: 12px;
  color: #fff;
  margin-top: 30px;
  text-align: center;
}

/* スマホサイズ */
@media screen and (max-width:880px) {
  
  /*　画面サイズが800px以下の場合ここの記述が適用される　*/
  /* main */
  .main_trial {
    width: 80%;
    height: 100%;
    display: block;
    margin: auto;
  }
  .trial_quiz_show01 {
    display: block;
  }
  .trail_quiz {
    width: 100%;
    height: 280px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
  }
  .trail_quiz h2 {
    text-align: center;
    /* margin: 30px 40px; */
    padding: 16px 0px;
    font-size: 24px;
  }
  .trail_quiz p {
    width: 80%;
    display: block;
    margin: auto;
    font-size: 16px;
  }
  .trial_btn {
    width: 60%;
    display: block;
    margin: auto;
    margin-top: 30px;
    text-align: center;
  }
  .trial_btn a {
    display: block;
    text-align: center;
    text-decoration: none;
    margin: auto;
    padding: 16px 30px;
    font-weight: bold;
    border-radius: 100vh;
    background: #702f8e;
    color: #fff;
  }

  /* .trial_quiz_show02 */
  .trial_quiz_show02 {
    margin: 32px 0px;
    display: block;
  }
  
  /* main comming soon */
.trial_comming {
  width: 100%;
  height: 300px;
  line-height: 300px;
  background-color: #702f8e;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
  margin: 32px 0;
}
.trial_comming p {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  
}
/* footer public */
.public-ul {
  text-align: center;
  display: block;
  list-style: none;
}
  
  .public-ul li {
    color: #fff;
    margin: 16px 0px;
    text-decoration: none;
  }

  /* footer copy */
  .copy-title {
    font-size: 12px;
    color: #fff;
    margin-top: 30px;
    text-align: center;
  }
}
