
@charset "utf-8";

@font-face {
    font-family: "mamelon";
    src: url("../fonts/Mamelon.woff2") format("woff2");
    src: url("../fonts/Mamelon.woff") format("woff");
    font-display: swap;
}

@font-face {
  font-family: "makinas-scrap";
  src: url("../fonts/Makinas-Scrap-5.woff2") format("woff2");
  src: url("../fonts/Makinas-Scrap-5.woff") format("woff");
  font-display: swap;
}

body {
  height: 100%;
  width: 100%;
  background: darksalmon;
  background-size:cover;
  margin: 0;
  overflow-y: auto;
}

body::before {
  content: "";
//  background: repeating-linear-gradient(-.7turn,hsla(54, 64%, 72%, .83), hsla(54, 64%, 72%, .83) 2%, hsla(240, 67%, 94%, .83) 2%, hsla(240, 67%, 94%, .83) 4%, hsla(340, 52%, 78%, .83) 4%, hsl(340, 52%, 78%, .92) 6%);
  background-position: center;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  margin: 0;
  border: 0;
}

main {
  margin: auto;
  border: 0;
  height: 100%;
  width: min(34rem, calc(100vw - 3rem));
  min-width: 22rem;
  overflow-y:auto;
  display: flex;
  flex-flow: column wrap;
  justify-content: start;
  align-content: center;
  min-height: 62rem;
}

figure {
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

figure#icon img:nth-child(1) {
  height: min(14rem, 90vw);
  width: min(14rem, 90vw);
  position: relative;
  z-index: 0;
  border-radius: 52% / 7%;
  border: antiquewhite .4rem solid;
  margin: auto 0;
}

figure#icon img:nth-child(2) {
  height: min(26rem, calc(90vw + 4rem));
  position: relative;
  z-index: 0;
  margin: auto 0;
}

main p {
  display: none;
  width: auto;
  text-align: center;
  margin: .2rem 0 .7rem;
  font-size: 2.3rem;
}

section#links {
  display: flex;
  flex-flow: column wrap;
  justify-content: start;
  height: max-content;
  align-content:center;
  border-top: dashed lemonchiffon .2rem;
}

#links a {
  border:solid .2rem slategrey;
  margin: .7rem auto;
  width: calc(100% - 9rem);
  height: 3rem;
  background: hsla(.29turn, 20%, 57%, .7);
  line-height: 3.2rem;
  padding-left: 4rem;
  padding-right: 2rem;
  text-decoration: none;
  color: darkslategray;
  transition: .7 13ms ease-in-out;
}

#links a:hover {
  width: calc(100% - 8rem);
  height: 3rem;
}

#links a.link_twitter::before {
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-image: url(../img/twitter_social_icon_r_blue.png);
  background-size: contain;
  margin-top: .5rem;
  margin-left: -3rem;
  position: absolute;
}

#links a.link_pixiv::before {
  content: "";
  display: inline-block;
  height: 2rem;
  width: 2rem;
  background-image: url(../img/pixiv_logo_icon_r.png);
  background-size: contain;
  margin-top: .5rem;
  margin-left: -3rem;
  position: absolute;
}

footer {
  width: 100%;
  margin-top: 2rem;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
}

footer div {
  width: max-content;
  display: flex;
  flex-flow: column wrap;
  align-items: end;
}

footer div * {
  display: block;
  text-align: right;
}

footer div small {
  width: max-content;
  background: lemonchiffon;
  padding: .1rem .7rem .1rem .7rem;
  border: double .3rem tan;
  border-left: none;
  border-right: none;
  border-radius: 172% / 29%;
  color: slategray;
  font-size:.77rem;
}

footer div a {
  font-size: smaller;
  color: bisque;
  background: coral;
  padding: .2rem;
  text-decoration: none;
}

footer div span {
  display: inline;
 font-family: mamelon;
  font-size: .93rem;
}

