@charset "utf-8";

.breadCrumb {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 24px;
}
@media screen and (max-width: 428px){
  .breadCrumb{
    display: none;
  }
}
.breadCrumb__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.breadCrumbItem__link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: #272727;
}
.breadCrumbItem__link--gray {
  color: #afafaf;
}
.breadArrow {
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #afafaf;
  border-right: 1px solid #afafaf;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadArrow--brack {
  border-top: 1px solid #272727;
  border-right: 1px solid #272727;
}

.title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.titleContainer {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 36px;
}
@media screen and (max-width: 428px){
  .titleContainer{
    max-width: none;
    padding: 0 27px;
  }
}
.titleContainer__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 428px){
  .titleContainer__item {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.titleContainer__item h1 {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
}
@media screen and (max-width: 428px){
  .titleContainer__item h1 {
    margin: 0;
  }
}
.titleContainer__item span {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
}
@media screen and (max-width: 428px){
  .titleContainer__item span{
    font-size: 14px;
  }
}
.line {
  width: 1px;
  height: 40px;
  background-color: #272727;
}
@media screen and (max-width: 428px){
  .line{
    display: none;
  }
}

.resetPassword{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 77px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #AFAFAF;
}
@media screen and (max-width: 428px){
  .resetPassword{
    border-top: none;
    padding: 40px 27px 0px 27px;
  }
}
.resetPassword h1{
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.08rem;
}
.resetPassword p{
  margin-top: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  letter-spacing: 0.08rem;
  line-height: 1.75;
  text-align: center;
}
.mailForm{
  max-width: 840px;
  margin-top: 48px;
  width: 100%;
}
.mb-3{
  padding: 0;
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 428px){
  .mb-3{
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mb-3 label{
  width: 30%;
  display: flex;
  align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 428px){
  .mb-3 label{
    width: 100%;
  }
}
.mb-3 label::after{
  content: "必須";
  width: 45px;
  height: 28px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  background-color: #B80808;
}
.mb-3 input{
  width: 70%;
  padding: 18px 24px;
  border: none;
  background-color: #F7F7F7;
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
}
@media screen and (max-width: 428px){
  .mb-3 input{
    width: 100%;
  }
}
.formButton{
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 320px;
  height: 80px;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  background-color: #00437C;
}
.formButton:hover{
  opacity: 0.8;
}

/* check_email */
.checkEmail{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 77px;
  text-align: center;
}
@media screen and (max-width: 428px){
  .checkEmail{
    max-width: none;
    padding: 0 27px;
    margin-top: 40px;
  }
}
.checkEmail h1{
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 428px){
  .checkEmail h1{
    line-height: 1.6;
  }
}
.checkEmail p{
  margin-top: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  letter-spacing: 0.08rem;
  line-height: 1.75;
  text-align: center;
}
.checkEmail p a{
  text-decoration: underline;
  color: #00437C;
}



/* brタグ（改行）スタイル */
.br__spStyle{
  display: none;
}
.br__pcStyle{
  display: inline;
}
@media screen and (max-width: 428px){
  .br__spStyle{
    display: inline;
  }
  .br__pcStyle{
    display: none;
  }
}
