@charset "UTF-8";

/*---------------------------------------------

	ヘッダー TOPページ

---------------------------------------------*/

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 5rem;
  min-height: 100vh;
  /* background-image: url(../img/bg.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat; */
}

@media screen and (max-width: 540px) {
  .inner {
    gap: 2rem;
    padding-top: 2rem;
  }
}

.mv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-bottom: 4rem;
  width: 25rem;
  max-width: 90%;
  flex-shrink: 0;
  aspect-ratio: 16/5;
}

@media screen and (max-width: 540px) {
  .logo {
    margin-bottom: 2.5rem;
    width: 17.5rem;
  }
}

.textBlock {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  margin: 0 auto;
  width: 620px;
  max-width: 95%;
}

@media screen and (max-width: 540px) {
  .textBlock {
    /* margin-bottom: 2rem; */

    width: 90%;
  }
}

.bg {
  margin-top: -1rem;
}

@media screen and (max-width: 540px) {
  .bg {
    margin-top: 0;
  }
}

.title {
  margin-bottom: 2rem;
  color: var(--Navy, #33456D);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .title {
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}

.text {
  margin-bottom: 1.25rem;
  color: var(--Black, #484848);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: normal;
}

@media screen and (max-width: 540px) {
  .text {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
  }
}

.name {
  color: var(--Black, #484848);
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}

@media screen and (max-width: 540px) {
  .name {
    font-size: 0.9375rem;
  }
}