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

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

.mv {
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 6vw;
  }
}
.mv h1 {
  background-color: #ff0096;
  padding: 10px 0px 0px;
  line-height: 3.8rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .mv h1 {
    line-height: 7.9vw;
    padding: 2vw 0px 0px;
  }
}
.mv p {
  padding: initial;
}
.mv__p01 {
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  .mv__p01 {
    font-size: 6.25vw;
  }
}
.mv__p02 {
  font-size: 2.8rem;
}
@media screen and (max-width: 480px) {
  .mv__p02 {
    font-size: 5.8vw;
  }
}
.mv__p03 {
  font-size: 3.8rem;
}
@media screen and (max-width: 480px) {
  .mv__p03 {
    font-size: 7.9vw;
  }
}

a:hover {
  opacity: 0.7;
}

.cta {
  width: 80%;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .cta {
    width: 90%;
  }
}
.cta p {
  padding: initial;
}
.cta a {
  width: 100%;
  background-color: #ff0096;
  padding: 20px 5px;
  display: inline-block;
  font-size: 3rem;
  font-family: "Noto Sans JP 700";
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-bottom: 10px solid #b7026b;
}
@media screen and (max-width: 480px) {
  .cta a {
    font-size: 5.8vw;
  }
}
.cta a:hover {
  margin-top: 5px;
  border-bottom: 5px solid #b7026b;
}

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 #ff7896;
}
table.unei_table th {
  background-color: #ffa0b4;
  color: #fff;
  padding: 20px 5px;
}
table.unei_table td {
  padding: 20px;
}

.midashi01 {
  background-color: #ffa0b4;
  border-left: 5px solid #ff7896;
  color: #fff;
  padding: 10px;
  font-size: 2.4rem;
  line-height: 3.5rem;
  margin-top: 80px;
  margin-bottom: 30px;
  font-family: "Noto Sans JP 700";
}
@media screen and (max-width: 480px) {
  .midashi01 {
    margin-top: 50px;
    font-size: 2rem;
  }
}

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

@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 {
  text-align: center;
}
.flex_text ul li:nth-child(1), .flex_text ul li:nth-child(3) {
  width: 40px;
}

.box01 {
  background-color: #f0f0f0;
  padding: 30px 20px 30px 30px;
  width: 430px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .box01 {
    width: 100%;
    padding: 15px;
  }
}
.box01 ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .box01 ul li {
    margin-bottom: 15px;
  }
}
.box01 ul li:last-child {
  margin-bottom: initial;
}

.box02 {
  background-color: #fff000;
  color: #ff0096;
  padding: 30px;
  width: 450px;
  margin: 0 auto;
  line-height: 3.5rem;
}
@media screen and (max-width: 500px) {
  .box02 {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .box02 {
    padding: 15px;
  }
}
.box02 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .box02 ul li {
    width: 100%;
  }
}

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

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

footer {
  text-align: center;
  padding-top: 50px;
}
footer a {
  color: #ff0096;
}

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