@charset "UTF-8";
.header {
  padding-top: 25px;
}
.header .logo {
  width: 180px;
}

.header_unei {
  padding-top: 35px;
}
.header_unei .logo {
  width: 250px;
}

.main_header {
  border-left: 5px solid #14AC6E;
  padding-left: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 4.3rem;
}
@media screen and (max-width: 768px) {
  .main_header {
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 6vw;
  }
}
.main_header h1 {
  letter-spacing: -0.2rem;
}

a:hover {
  opacity: 0.7;
}

.cta {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .cta {
    width: 100%;
  }
}

table {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}
table.unei_table {
  font-size: 1.6rem;
}
table.unei_table th, table.unei_table td {
  border: 1px solid #000;
}
table.unei_table th {
  background-color: #14AC6E;
  color: #fff;
  padding: 20px 5px;
}
table.unei_table td {
  padding: 20px;
}

.midashi01 {
  background-color: #D9F6D9;
  border-left: 5px solid #14AC6E;
  color: #14AC6E;
  padding: 10px;
  font-size: 2.4rem;
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .midashi01 {
    margin-top: 50px;
    font-size: 2rem;
  }
}

.midashi02 {
  background-color: #fffedc;
  padding: 10px;
  margin-top: 80px;
  margin-bottom: 30px;
  color: #af7500;
}
@media screen and (max-width: 480px) {
  .midashi02 {
    margin-top: 50px;
  }
}

.updown {
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.tyuyaku {
  display: flex;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.flex_text ul {
  display: flex;
  max-width: 100%;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  justify-content: center;
}
.flex_text ul li:nth-child(1), .flex_text ul li:nth-child(3) {
  width: 40px;
}

/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

footer a {
  color: #14AC6E;
}

.copyrights {
  font-size: 1.2rem;
  margin-top: 30px;
  padding: 10px 0 100px 0;
  text-align: center;
  margin-bottom: 20px;
}/*# sourceMappingURL=main.css.map */