@charset "utf-8";

/* =============================================
	redirects
============================================= */
.redirects-notice{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 20px 10em;
}
.redirects-notice p{
  margin: 15px 0 0;
  font-size: 1.6rem;
  
}
.redirects-notice__ttl{
  margin: 0 auto 20px;
  font-size: 2.8rem;
  line-height: 1.3;
  color: #5c6a98;
  text-align: center;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 26px auto;
}
.redirects-notice p a{
  word-wrap:break-word;
  overflow-wrap: anywhere;
	white-space: normal;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.redirects-notice p a:hover{
  opacity: 0.7;
}

/* ===========================================
	MediaQueries
=========================================== */

/* PC----------------------------- */
@media screen and (width >= 768px){
  .redirects-notice{
 text-align: center;
  }
  .redirects-notice p{
  margin: 15px 0 0;
  font-size: 1.8rem;
}
  .redirects-notice__ttl{
  margin: 0 auto 20px;
  font-size: 2.8rem;
  }
}

