@charset "UTF-8";
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.delay11 {
  transition-delay: 1.1s !important;
}

.delay12 {
  transition-delay: 1.2s !important;
}

.delay13 {
  transition-delay: 1.3s !important;
}

.delay14 {
  transition-delay: 1.4s !important;
}

.delay15 {
  transition-delay: 1.5s !important;
}

.delay16 {
  transition-delay: 1.6s !important;
}

.delay17 {
  transition-delay: 1.7s !important;
}

.delay18 {
  transition-delay: 1.8s !important;
}

.delay19 {
  transition-delay: 1.9s !important;
}

.delay20 {
  transition-delay: 2s !important;
}

.delay21 {
  transition-delay: 2.1s !important;
}

.delay22 {
  transition-delay: 2.2s !important;
}

.delay23 {
  transition-delay: 2.3s !important;
}

.delay24 {
  transition-delay: 2.4s !important;
}

/* スクロール時のアニメーション */
.laser {
  position: relative;
  overflow: hidden;
}
.laser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 3s ease;
  transition: all 3s ease;
}
.laser .hide {
  opacity: 0;
  transition: all 3s ease;
  transition-delay: 1s !important;
}
.laser.inview-on::after {
  left: 100%;
}
.laser.inview-on .hide {
  opacity: 1;
}

/* fade in */
.fade-in {
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in up */
.fade-in-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-up {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in left */
.fade-in-left {
  transform: translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-left {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in right */
.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-right.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-right {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main {
  overflow: hidden;
}
.main .sec--01 {
  font-size: 1.4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .main .sec--01 {
    font-size: 1.5rem;
  }
}
.main .sec--01 h3 {
  display: block;
  border-left: solid 3px #231815;
  background-color: #fff;
  margin: 1.5em 0 1.5em;
  padding: 0.5em 0 0.5em 1em;
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .main .sec--01 h3 {
    font-size: 2rem;
  }
}
.main .sec--01 h4 {
  padding: 0.5em 1em;
  margin: 1.5em 0 1em 0;
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  position: relative;
  background: #dcdddd;
}
@media screen and (max-width: 767px) {
  .main .sec--01 h4 {
    font-size: 1.8rem;
  }
}
.main .sec--01 h4.text-align--center {
  text-align: center;
  display: block;
  padding: 0 0 0.5em 0;
  margin: 2em 0 1em 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #111;
  position: relative;
  border-bottom: solid 1px #231815;
  background: none;
}
.main .sec--01 p {
  margin-top: 2rem;
  line-height: 1.8;
}
.main .sec--01 .policy-color {
  color: #0b3190;
  display: block;
}
.main .sec--01 .icon__pdf--small {
  width: 42px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  color: #fff;
  margin: 0 5px;
  color: #fff;
  background-color: #c8161e;
}
.main .sec--01 .margin-left-25 {
  margin-left: 2.5rem;
}
.main .sec--01 a {
  color: #e73534;
  word-break: break-word;
}
.main .sec--01 table,
.main .sec--01 th,
.main .sec--01 td {
  padding: 1em;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  border-right: solid 1px #ddd;
  vertical-align: middle;
}
.main .sec--01 table:last-child,
.main .sec--01 th:last-child,
.main .sec--01 td:last-child {
  border-right: none;
}
.main .sec--01 table {
  border-right: none;
  margin-top: 2rem;
}
.main .sec--01 table thead th {
  color: #fff;
  background-color: #333;
}
.main .sec--01 table th {
  width: 20%;
  background-color: #f5f2e9;
}
@media screen and (max-width: 767px) {
  .main .sec--01 table th {
    width: 30%;
  }
}
.main .sec--01 table td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .main .sec--01 table td {
    width: 70%;
  }
}
.main .sec--01 .indent-list {
  margin: 0 0 1em;
  display: table;
}
.main .sec--01 .indent-list > li {
  display: table;
  border-spacing: 0 0.2em;
}
.main .sec--01 .indent-list > li:before {
  display: table-cell;
  padding: 0.25em 0;
  width: 1%;
  white-space: nowrap;
  content: attr(data-indent-head);
  padding-right: 0.5em;
  vertical-align: inherit;
  font-family: "游ゴシック", "YuGothic", "メイリオ", Meiryo, sans-serif;
}
.main .sec--01 .indent-list .indent-sub {
  margin-top: 0 0 1em;
  display: table;
}
.main .sec--01 .indent-list .indent-sub > li {
  display: table;
  border-spacing: 0 0.2em;
}
.main .sec--01 .indent-list .indent-sub > li:before {
  display: table-cell;
  padding: 0.25em 0;
  width: 1%;
  white-space: nowrap;
  content: attr(data-indent-head);
  padding-right: 0.5em;
  vertical-align: inherit;
  font-family: "游ゴシック", "YuGothic", "メイリオ", Meiryo, sans-serif;
}
.main .sec--01 .date {
  text-align: right;
  margin-top: 5rem;
}
.main .sec--01 .last {
  margin-top: 5rem;
  font-size: 1.3rem;
  text-align: center;
}

/*footer {
	margin-top: 10rem;
}*//*# sourceMappingURL=unique.css.map */