@charset "UTF-8";
.header, .header_unei {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .header, .header_unei {
    padding-top: 15px;
  }
}
.header .logo, .header_unei .logo {
  display: none;
}
@media screen and (max-width: 480px) {
  .header .logo, .header_unei .logo {
    display: none;
  }
}

.mv {
  margin-top: 50px;
  margin-bottom: 50px;
  border-left: 5px solid #ff9fb3;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 6vw;
    padding-left: 15px;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    padding-left: 10px;
  }
}
.mv h1 {
  font-size: 3.5rem;
  padding-top: 10px;
  margin-bottom: 5px;
  line-height: 4.5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv h1 {
    font-size: 5.7vw;
    line-height: 6vw;
  }
}
.mv h1 .color {
  color: #ff0095;
}
.mv p {
  padding: initial;
}
.mv__p01 {
  font-size: 2.2rem;
  line-height: 3rem;
  background-color: #ffff00;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv__p01 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__p01 {
    font-size: 1.6rem;
  }
}
.mv__p02 {
  font-size: 3.2rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .mv__p02 {
    font-size: 5vw;
    line-height: 6vw;
  }
}

a:hover {
  opacity: 0.7;
}

.cta {
  width: 80%;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .cta {
    width: 90%;
  }
}

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

.midashi01 {
  background-color: #ff9fb3;
  border-left: 5px solid #ff7895;
  color: #fff;
  padding: 10px 25px 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 {
    padding: 10px 10px;
    margin-top: 50px;
    font-size: 2rem;
  }
}

.midashi02 {
  background-color: #bce7ef;
  padding: 10px 25px 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) {
  .midashi02 {
    padding: 10px 10px;
    margin-top: 50px;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.tyuyaku {
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: right;
}

.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);
  }
}
.u-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==================================================
ふわっ
===================================*/
/* 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;
}
footer a {
  color: #ff0096;
}

.copyrights {
  font-size: 1.2rem;
  margin-top: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.zoom-in {
  animation: zoom-in-anim 1.5s infinite;
}

@keyframes zoom-in-anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=main.css.map */