@charset "UTF-8";

/* CSS Document */
/**{outline:1px solid #AA2E30;}*/
body {
  background-color: white;
  font-family: "Noto Sans JP", sans-serif;
}

.header {
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
}

.list-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(90%, 1800px);
  height: 80px;
  margin-inline: auto;

  .header-nav ul {
    display: flex;

    li {
      list-style: none;

      a {
        text-decoration: none;
        margin-left: 30px;
        color: black;
        font-size: 16px;
        font-weight: 500;
      }
    }
  }

}

footer {
  width: 100%;
  height: 305px;
  margin-top: 200px;
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-view {
  background-color: rgba(255, 255, 255, 0.80);
  height: 305px;

  .footer-text {
    text-align: center;
    position: relative;
    top: 30%;

    .footer-p {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 25px;
    }

    .link-button a {
      display: flex;
      justify-content: center;
      width: 228px;
      margin-inline: auto;
      padding: 16px 20px;
      color: white;
      text-decoration: none;
      background-color: #F13C68;

      .dli-mail {
        display: inline-block;
        vertical-align: middle;
        color: #ffffff;
        line-height: 1;
        position: relative;
        width: 1.06667em;
        height: 0.8em;
        border: 0.15em solid currentColor;
        border-radius: 0.1em;
        box-sizing: content-box;
        overflow: hidden;
        margin-top: 5px;
        margin-right: 5px;
      }

      .dli-mail::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 0.75425em;
        height: 0.75425em;
        border: 0.15em solid currentColor;
        border-top-color: transparent;
        border-right-color: transparent;
        border-radius: 0 0 0 0.1em;
        box-sizing: content-box;
        transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
      }

      p {
        font-weight: 700;
      }
    }
  }
}

.black-box {
  background-color: black;
  height: 45px;

  p {
    color: white;
    text-align: center;
    font-weight: 300;
    padding-top: 12px;
  }
}