<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.mainVisual{
    padding-bottom: 200px;
}

.mainVisual__headline{
    color: #000;
}

.toPdfList{
    text-align: center;
    margin: 20px auto 50px;
    padding: 40px;
  }
  
  .toPdfList a {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 30px;
  }
  .pdfList {
    text-align: center;
  }
  .pdfList h2 {
    width: 50%;
    margin: 60px auto 20px;
    text-align: center;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
        width: 400px;
  }
  .pdfList ul {
    margin: 30px auto 100px;
      width: 400px;
      display: inline-block;
      margin-left: 40px;
  }
  .pdfList ul li {
    list-style: disc;
    text-align: left;
    margin: 10px 0;
  
  }
  
  .pdfList ul li a {
    text-decoration: underline;
  }
  
  .pdfList ul li a:hover {
    text-decoration: none;
  }
  

.backBtn{
    width: 100%;
    margin: 30px auto 80px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    position: relative;
}

.backBtn a{
    position: relative;
}

.backBtn a::after{
    content: '';
    position: absolute;
    top: 110%;
    left: -95%;
    width: 80px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    transform: skew(135deg);
    transition: 0.5s;
}

.backBtn a:hover::after{
    width: 80px;
    left: calc(-120%);
}


.loginFormArea {
  position: relative;
  margin: 0 auto 80px;
  padding: 80px 0;
  max-width: 1000px;
  background-color: #c0b79e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 739px) {
  .loginFormArea {
    padding: 40px 20px;
    margin-bottom: 50px;
  }
}

.loginFormArea .passwordArea {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 570px;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 739px) {
  .loginFormArea .passwordArea {
    margin-bottom: 20px;
  }
}

.loginFormArea .passwordArea__title {
  position: absolute;
  top: 50%;
  left: -100px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font-size: 16px;
  line-height: calc(30 / 16);
}

@media only screen and (max-width: 739px) {
  .loginFormArea .passwordArea__title {
    position: static;
    text-align: left;
  }
}

.loginFormArea .passwordArea__input {
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.15em;
}

.loginFormArea .btn--login {
  display: block;
  margin: 0 auto;
  border: 1px solid #42475a;
  padding: 14px 60px;
  text-align: center;
  background-color: #42475a;
  font-size: 14px;
  line-height: 12px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
  color: #fff;
}

.loginFormArea .btn--login:hover {
  background-color: #fff;
  color: #42475a;
}</pre></body></html>