@font-face {
  font-family: "Chillax";
  src: url(fonts/Chillax-Medium.woff2);
}

@font-face {
  font-family: "LINE Seed JP";
  src: url(fonts/LINESeedJP_OTF_Bd.woff2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 118px 80px;

  background-image: url("img/reel-capture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100dvh;

  justify-self: center;
  overflow-x: hidden;
}

hr {
  width: 100%;

  height: 2px;
  background-color: #edf0f2;
  border: none;
}

p {
  font-size: 14px;
  font-family: "LINE Seed JP";
  line-height: 176%;

  color: #edf0f2;
}

.main-card {
  padding: 65px 70px 28px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 690px;

  border: 2px solid #edf0f2;
  background-color: #edf0f236;
  border-radius: 6px;
  backdrop-filter: blur(16px);

  gap: 58px;
}

.self-introduction {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;

  gap: 32px;
}

.self-introduction-detail {
  padding: 0 10px;
}

.my-logo {
  user-select: none;
}

.self-introduction p {
  text-align: center;
}

.action-button {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 6px;
  border: 2px solid #edf0f2;
  text-decoration: none;
}

.action-button:hover {
  background-color: #edf0f250;
}

.action-button p {
  font-family: "Chillax";
  font-size: 24px;

  text-transform: capitalize;
}

.social-list {
  display: flex;
  flex-direction: row;

  gap: 20px;

  user-select: none;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 36px;
  height: 36px;

  border-radius: 6px;
  border: 2px solid #edf0f2;
}

.social-icon:hover {
  background-color: #edf0f250;
}

.information {
  padding: 0 10px;

  display: flex;
  flex-direction: column;
  gap: 44px;
}

.info-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* これがinformationのtitle */
h2 {
  font-family: "Chillax";
  text-transform: capitalize;

  font-size: 16px;
  line-height: 165%;

  width: 120px;
  flex-shrink: 0;

  color: #edf0f2;
}

.info-detail {
  flex: 1 0 0;
}

.mail-address {
  font-family: "Chillax";
  font-size: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 22px;
}

.footer .my-logo {
  width: 200px;
}

.copyright {
  font-family: "Chillax";
}

@media (max-width: 736px) {
  body {
    padding: 56px 48px;
  }

  .main-card {
    padding: 40px 46px 28px 46px;
    gap: 46px;
  }

  .self-introduction {
    gap: 28px;
  }

  .my-logo {
    width: 334px;
  }

  .information {
    gap: 34px;
  }

  .info-content {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 546px) {
  body {
    padding: 26px 18px;
  }

  p {
    font-size: 12px;
  }

  .main-card {
    padding: 36px 28px;
    gap: 40px;
  }

  .self-introduction-detail {
    padding: 0 6px;
  }

  .self-introduction {
    gap: 24px;
  }

  .action-button {
    height: 44px;
  }

  .action-button p {
    font-size: 20px;
  }

  h2 {
    font-size: 14px;
  }

  .my-logo {
    width: 200px;
  }

  .information {
    padding: 0 6px;
    gap: 28px;
  }

  .mail-address {
    font-size: 14px;
  }
}
