@charset "UTF-8";
/* CSS Document */
/***********************************************
***  Pages Common
***********************************************/
.pages-main {
  margin-top: 80px;
  padding-top: 120px;
}
.pages-inner {
  max-width: 1600px;
  width: 98%;
  margin: 0 auto;
}
.pages-heading-default {
  /*
    transform: translateX(-100px);
    opacity: 0;
*/
  transform: translateX(0);
  opacity: 1;
  width: 20%;
  margin-left: 1%;
}
@media only screen and (max-width:1200px) {
  .pages-main {
    padding-top: 80px;
  }
  .pages-heading-default {
    width: 25%;
    margin-left: 1%;
  }
}
@media only screen and (max-width:800px) {
  .pages-heading-default {
    width: 40%;
    margin-left: 1%;
  }
}
@media only screen and (max-width:600px) {
  .pages-main {
    margin-top: 60px;
    padding-top: 40px;
  }
}
.notice-main {
  position: relative;
}
.notice-main:before {
  position: absolute;
  content: "";
  background: url(../img/notice/notice-bg-chara.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  width: 600px;
  height: 900px;
  right: 0;
  top: -30px;
}
.notice-wrapper {
  margin: 0 auto 80px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width:1600px) {
  .notice-main:before {
    width: 40vw;
  }
}
@media only screen and (max-width:800px) {
  .notice-main:before {
    width: 60vw;
    right: -10vw;
  }
}
@media only screen and (max-width:600px) {
  .notice-main:before {
    width: 390px;
    right: -94px;
    top: -10px;
  }
}
@media only screen and (max-width:500px) {
  .notice-main:before {
    width: 80vw;
    right: -84px;
    top: -20px;
  }
}
.modal-fadein-down {
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/***********************************************
***  notice lead
***********************************************/
.notice-lead-wrapper {
  width: 96%;
  display: block;
  margin: 40px auto;
  text-align: center;
}
.notice-lead-text {
  margin-top: 30px;
  font-size: 26px;
  color: #000;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}
@media (max-width: 800px) {
  .notice-lead-wrapper {
    width: 100%;
    display: block;
    margin: 30px auto;
      text-align: left;
  }
  .notice-lead-text {
    margin-top: 10px;
          width: 70%;
  }
}
/***********************************************
***  notice
***********************************************/
.notice-section {
  display: block;
  margin: 0 auto 60px;
  max-width: 1200px;
}
.notice-heading {
  background: #000000;
  color: #fff;
  text-align: center;
  border-radius: 25px 25px 0 0;
  line-height: 1.4;
  padding: 20px;
  letter-spacing: 0.08em;
  font-size: 20px;
  font-weight: 800;
}
.notice-lists-wrapper {
  border: 10px solid #000000;
  border-top: 0;
  border-radius: 0 0 25px 25px;
  padding: 40px 60px;
  background-color: #fff;
}
.notice-lists {
  margin-left: 1.5em;
  color: #000;
}
.notice-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
.notice-list:before {
  position: absolute;
  content: "●";
  left: -1.5em;
  font-size: 10px;
  top: 3px;
  color: #e60013;
}
.notice-num-lists {
  margin-left: 1.5em;
  color: #000;
  margin-top: 10px;
}
.notice-num-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 6px;
  list-style: decimal;
}
.notice-num-list:last-child {
  margin-bottom: 0;
}
.notice-sub-lists {
  margin-left: 1.5em;
  color: #000;
  margin-top: 10px;
}
.notice-sub-list {
  position: relative;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 6px;
}
.notice-sub-list:before {
  position: absolute;
  content: "※";
  left: -1.5em;
  font-size: 10px;
  top: 3px;
  color: #000;
}
@media (max-width: 800px) {
  .notice-section {
    width: 90%;
  }
  .notice-heading {
    padding: 13px;
    font-size: 16px;
  }
  .notice-lists-wrapper {
    border: 8px solid #000000;
    padding: 20px;
  }
  .notice-list {
    font-size: 13px;
  }
}