/* Fonts, I recommend downloading these to your own web host */

@font-face {
  font-family: "rainy";
  src: url("https://files.catbox.moe/r4oudq.ttf");
}

@font-face {
  font-family: "pixel";
  src: url("https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0");
}

@font-face {
  font-family: "Advine Halfpixel";
  src: url(font/advine-halfpixel/AdvineHalfpixel.otf);
}

@font-face {
  font-family: "Angeris Halfpixel";
  src: url(font/angeris-halfpixel/AngerisHalfpixel.otf);
}

@font-face {
  font-family: "CS Anthea Pixel";
  src: url(font/cs-anthea-pixel/CsAntheaPixel.otf);
}

* {
  box-sizing: border-box;
}

/* Basics */

body {
  margin: 0;
  padding: 20px;
  background: #f0f0f0 url(img/bows.png);
  font-family:
    MS PGothic,
    "rainy",
    calibri,
    verdana,
    arial;
  font-size: 13px;
  text-align: left;
  text-shadow: 0px 0px 1px #bbb;
  color: #b97880;
  letter-spacing: 1px;
  line-height: 16px;
}

textarea {
  background: #fff;
  border: 1px solid #8d2524;
  font:
    10px tahoma,
    arial;
}

a {
  color: #d66b6a;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: #ff9d9c;
  text-shadow: 0 0 4px #ff7472;
}

a:active {
  color: #b04544;
}

b {
  font-weight: bold;
  color: hotpink;
}

i {
  color: #b98a9f;
}

::selection {
  background: #ffd9df;
  color: #b94c5c;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff2f2;
}

::-webkit-scrollbar-thumb {
  background: #e7a0a4;
  border-radius: 5px;
  border: 2px solid #fff2f2;
}

::-webkit-scrollbar-thumb:hover {
  background: #d66b6a;
}

/* Containers */

.layout {
  max-width: 722px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px dotted #2c2b2b;
  border-width: 12px;
  border-style: solid;
  border-image: url(img/lace02.png) 10 fill round;
  box-shadow: 0 0 18px rgba(216, 129, 134, 0.25);
  background: #fff7f7;
}

/* Top decoration */

.lace {
  height: 70px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.35),
      rgba(255, 230, 235, 0.25)
    ),
    #fff2f2 url(img/lacetop.gif) repeat-x;
  color: #bcaccc;
}

/* Banner */

.banner {
  width: 100%;
  height: 150px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 239, 245, 0.72),
      rgba(255, 212, 225, 0.42),
      rgba(255, 250, 250, 0.65)
    ),
    url(img/banner03.gif) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px dotted #2c2b2b;
  border-bottom: 1px dotted #f2cbce;
  position: relative;
}

.banner:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: 12px;
  border: 1px dotted rgba(232, 128, 126, 0.55);
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.45);
}

.banner:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(to top, rgba(255, 247, 247, 0.85), transparent);
  pointer-events: none;
}

.banner-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header {
  width: 100%;
  height: 150px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 239, 245, 0.52),
      rgba(255, 212, 225, 0.22),
      rgba(255, 250, 250, 0.32)
    ),
    url(img/landing02.jpg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px dotted #2c2b2b;
  border-bottom: 1px dotted #f2cbce;
  position: relative;
}

.header:before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: 12px;
  border: 1px dotted rgba(232, 128, 126, 0.55);
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.45);
}

.header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(to top, rgba(255, 247, 247, 0.85), transparent);
  pointer-events: none;
}

/* Site name */

.landing-name {
  position: relative;
  display: inline-block;
  padding: 10px 45px 10px;
  font-family:
    "CS Anthea Pixel", "Advine Halfpixel", "Angeris Halfpixel",
    "Bergstena Decorated", "pixel", monospace, sans-serif;
  font-size: 5em;
  letter-spacing: 3px;
  line-height: 1em;
  color: #b58ea4;
  z-index: 2;
  background: -webkit-linear-gradient(pink, hotpink);
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: black;
}

.landing-name::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 252, 252, 0.55) 18%,
    rgba(255, 245, 247, 0.88) 50%,
    rgba(255, 252, 252, 0.55) 82%,
    rgba(255, 255, 255, 0)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 220, 228, 0.45);
  filter: blur(0.2px);
}

.site-name {
  position: relative;
  display: inline-block;
  padding: 10px 45px 12px;
  font-family:
    "CS Anthea Pixel", "Advine Halfpixel", "Angeris Halfpixel",
    "Bergstena Decorated", "pixel", monospace, sans-serif;
  font-size: 5em;
  letter-spacing: 3px;
  color: #b58ea4;
  text-shadow:
    0 1px 0 #fff,
    0 0 8px rgba(255, 254, 254, 0.9),
    0 0 12px rgba(190, 155, 160, 0.45);
  z-index: 2;
}

.site-name::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 252, 252, 0.55) 18%,
    rgba(255, 245, 247, 0.88) 50%,
    rgba(255, 252, 252, 0.55) 82%,
    rgba(255, 255, 255, 0)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 220, 228, 0.45);
  filter: blur(0.2px);
}

/* Navi */

.navigation {
  background: linear-gradient(to bottom, #fffafa, #fff0f2);
  border-top: 1px dotted #a69382;
  border-bottom: 1px dotted #a69382;
  padding: 7px;
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 #ffdfe4;
}

.navi-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.navi-link a {
  display: inline-block;
  font-family: "Pixelify Sans", "Gaegu", "Silkscreen", monospace;
  font-size: 13px;
  font-style: normal;
  line-height: 14px;
  padding: 2px 12px 2px 12px;
  letter-spacing: 1px;
  font-weight: normal;
  color: #ffffff;
  white-space: nowrap;
  background: linear-gradient(to bottom, #ffd3de, #ffd3de);
  border: 1px solid #f4afde;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(190, 88, 94, 0.18),
    0 1px 3px rgba(213, 112, 117, 0.18);
  text-shadow: 0 1.5px 1px rgba(87, 61, 63, 0.45);
}

.navi-link a:hover {
  color: #fff;
  background: linear-gradient(to bottom, #fd10a8, #fd10a8);
  border-color: #ca0f85;
  text-shadow:
    0 1px 1px rgba(166, 70, 76, 0.38),
    0 0 5px rgba(255, 255, 255, 0.6);
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(190, 88, 94, 0.14),
    0 1px 2px rgba(213, 112, 117, 0.14);
}

/* Main columns */

.main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background: #ffeef1;
  gap: 1px;
  border-top: 1px solid #f0c7d9;
  border-bottom: 1px solid #f5ccd1;
}

.column {
  padding: 8px;
  background: linear-gradient(to bottom, #fff9f9, #fff1f3);
  min-width: 0;
}

.column:nth-child(1) {
  border-right: 1px dotted #8f6977;
}

.column:nth-child(2) {
  background: linear-gradient(to bottom, #fffdfd, #fff4f5);
}

.column:nth-child(3) {
  border-left: 1px dotted #8f6977;
}

/* Boxes */

.box {
  background: linear-gradient(to bottom, #ffffff, #fff8f8);
  border: 1px solid #f1c2c6;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.85),
    2px 2px 0 rgba(246, 202, 206, 0.45);
}

.box:last-child {
  margin-bottom: 0;
}

.box p {
  margin: 0 0 7px;
}

.box p:last-child {
  margin-bottom: 0;
}

/* Titles */

.title {
  background: linear-gradient(to right, #fff, #fff0f3);
  border-left: 5px solid #f2cbce;
  border-right: 1px dotted #efb0b6;
  border-top: 1px dotted #efb0b6;
  border-bottom: 1px dotted #efb0b6;
  text-transform: lowercase;
  font-family: "Gaegu", arial;
  font-size: 15px;
  color: #e87eca;
  line-height: 12px;
  padding: 3px 5px 3px 5px;
  margin-bottom: 5px;
  letter-spacing: 1px;
  border-radius: 7px 7px 3px 3px;
  box-shadow: inset 0 0 6px rgba(255, 214, 220, 0.55);
}

.icon {
  float: right;
  opacity: 0.8;
  margin-top: -1px;
  width: 15px;
  height: auto;
}

.icon-left {
  float: left;
  opacity: 0.8;
  margin-top: -1px;
  width: 15px;
  height: auto;
}

.title-big {
  background: linear-gradient(to right, #fff1f4, #fff, #fff1f4);
  text-align: center;
  text-transform: lowercase;
  font-family: "Gaegu", arial;
  font-size: 17px;
  color: #e87eca;
  line-height: 13px;
  padding: 4px 6px 3px 6px;
  margin-bottom: 6px;
  letter-spacing: 2px;
  border: 1px dotted #efb0b6;
  border-radius: 10px;
  box-shadow:
    inset 0 0 8px rgba(255, 219, 235, 0.9),
    0 2px 0 rgba(246, 202, 231, 0.65);
}

/* Textual Styling */

h1 {
  font-size: 2em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.3em;
  margin: 20px 0;
  padding: 0 1em;
  background: #ffcfd8;
  border-radius: 5px;
  border: 1px dashed;
  box-shadow: 0 0 0 4px #ffcfd8;
}

h3 {
  background: url(img/crossband.gif) no-repeat;
  font-size: 1.3em;
  gap: 10px;
  border-bottom: 1px dashed;
  font-weight: 400;
  height: 24px;
  line-height: 24px;
  margin: 20px 0;
}

dt {
  color: #d79c9a;
  font-weight: 700;
  float: left;
  clear: both;
  margin: 0 0 5px;
  width: 12em;
}

dd {
  border-bottom: 1px dotted;
  margin: 0 0 5px 13em;
}

em {
  background: #fff3cc; /* Ie9 */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #fff),
    color-stop(0.49, #fff),
    color-stop(0.5, #fff3cc),
    color-stop(1, #fff3cc)
  );
  background: -webkit-linear-gradient(transparent 50%, #fff3cc 0%);
  background: linear-gradient(transparent 50%, #fff3cc 0%);
  font-weight: 700;
}

input {
  background: #fae5e5;
  border: 1px solid;
  margin: 3px 0;
  width: 400px;
}

hr {
  display: block;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  height: 1px;
}

.marker {
  background: #ffc8d1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #fff),
    color-stop(0.49, #fff),
    color-stop(0.5, #ffc8d1),
    color-stop(1, #ffc8d1)
  );
  background: -webkit-linear-gradient(transparent 50%, #ffc8d1 0%);
  background: linear-gradient(transparent 50%, #ffc8d1 0%);
  padding: 1px 5px;
}

.dcline {
  border-left: 5px solid #ffcfde;
  margin: 5px 0;
  padding: 3px;
}

.textbox {
  border: 1px solid;
  margin: 10px 0;
  padding: 3px;
  text-align: center;
}

.txt {
  border-left: 1px dotted;
  color: #999;
  margin: 1em;
  padding: 0 0 0 1em;
}

.frame {
  background: #fff;
  border-radius: 3px;
  padding: 6px;
  box-shadow: 4px 4px 4px #ccc;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

/* Profile */

.profile-card {
  text-align: center;
}

.profile-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  display: block;
  margin: 10px auto 8px;
  padding: 3px;
  background: #fff;
  border: 1px dashed #a97782;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(242, 203, 206, 0.45);
}

.profile-name {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 12px 3px;
  font-family: "Gaegu", georgia, cursive;
  font-size: 17px;
  line-height: 17px;
  color: #d96f79;
  letter-spacing: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 246, 247, 0.9),
    rgba(255, 255, 255, 0)
  );
}

.profile-text {
  text-align: justify;
  color: #b97880;
  margin-bottom: 6px;
}

.profile-details {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.profile-details li {
  padding: 2px 0;
  border-bottom: 1px dotted #f1c2c6;
  color: #c8a88f;
}

.profile-details li:last-child {
  border-bottom: 0;
}

.profile-details b {
  color: #d57574;
  font-weight: bold;
}

/* Notes and Lists */

.note {
  background: #fff8f8;
  border-left: 3px solid #f2cbce;
  padding: 5px;
  margin-top: 6px;
  margin-bottom: 6px;
  border-radius: 0 6px 6px 0;
  color: #b97880;
  line-height: 15px;
  font-size: 13px;
}

.tiny-list {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.tiny-list li {
  border-bottom: 1px dotted #f1c2c6;
  padding: 2px 0;
  color: #b98a9f;
}

/* Mini boxes */

.mini-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 7px;
}

.mini-box {
  background: #fff4f6;
  border: 1px dotted #efb0b6;
  border-radius: 7px;
  padding: 5px;
  text-align: center;
  color: #ad7f92;
  font-size: 13px;
}

/* Miniblog */

.miniblog {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-post {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 7px;
  align-items: start;
  background: #fffafa;
  border: 1px dotted #f1c2c6;
  border-radius: 8px;
  padding: 5px;
  box-shadow: inset 0 0 7px rgba(255, 225, 231, 0.45);
}

.mini-post img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border: 1px solid #efb0b6;
  border-radius: 7px;
  opacity: 0.9;
  filter: saturate(0.9) brightness(1.04);
}

.mini-post-content {
  min-width: 0;
}

.mini-post-title {
  display: block;
  margin-bottom: 2px;
  font-family: "Gaegu", georgia, cursive;
  font-size: 15px;
  line-height: 14px;
  color: #d96f79;
  letter-spacing: 1px;
}

.mini-post-meta {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  color: #b97880;
  opacity: 0.85;
}

.mini-post-text {
  color: #c8a88f;
  line-height: 14px;
}

/* Buttons */

.button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-list a {
  display: block;
  width: 96px;
  padding: 3px;
  background: #fffafa;
  border: 1px solid #efb0b6;
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    2px 2px 0 rgba(242, 203, 206, 0.45);
}

.button-list a:hover {
  background: #fff2f4;
  border-color: #e39a9d;
  transform: translateY(1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    1px 1px 0 rgba(242, 203, 206, 0.45);
}

.button-list img {
  display: block;
  width: 88px;
  height: 31px;
  opacity: 0.8;
}

/* page doll*/

.page-doll {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 1000;
  pointer-events: none;
  animation: jerky 1s infinite;
}

@keyframes jerky {
  0% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  51% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

.page-doll img {
  width: 300px;
  height: auto;
  filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(310deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
  -webkit-filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(310deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
  -moz-filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(310deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
}

.page-doll-left {
  position: fixed;
  top: 20px;
  left: 80px;
  z-index: 1000;
  pointer-events: none;
  animation: jerky 1s infinite;
}

@keyframes jerky {
  0% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  51% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

.page-doll-left img {
  width: 250px;
  height: auto;
  filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(280deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
  -webkit-filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(280deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
  -moz-filter: grayscale(69%) sepia(24%) brightness(102%) hue-rotate(280deg)
    saturate(170%) contrast(115%)
    drop-shadow(-5px 10px 4px rgba(196, 73, 148, 0.29));
}

.icon-links {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  gap: 11px;
  padding: 3px 7px;
  border: 1px solid rgba(224, 204, 209, 0.9);
  border-radius: 999px;
  background: rgba(255, 247, 248, 0.3);
  box-shadow: 0 0 0 1px rgba(235, 218, 222, 0.18) inset;
}

/* jquerey scroll button */

#pagetop {
  /* 位置はscroll.jsで設定 */
  background: rgba(254, 149, 153, 0.5); /* 背景 */
  color: #fff; /* 色 */
  border-radius: 5px;
  display: block;
  padding: 5px;
  position: fixed;
  text-align: center;
  z-index: 10;
}
#fl a {
  background: rgba(254, 149, 153, 0.5);
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  padding: 10px;
}

#pagetop:hover,
#fl a:hover {
  background: rgba(72, 59, 60, 0.6);
  transition: 0.3s;
}

/* tooltip styling */

#invis {
  display: flex;
  width: 100%;
  height: 0px;
}

#s-m-t-tooltip {
  /* basic */
  max-width: 300px;
  z-index: 1000000000;
  margin: 24px 14px 7px 12px;
  /* style and design */
  padding: 8px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-image: linear-gradient(
    #ffeff6,
    #ffffff,
    20%,
    #fffafc,
    30%,
    #ffd6e7,
    #ffbcd9
  );
  text-shadow:
    -1px 0 #000000,
    0 1px #000000,
    1px 0 #000000,
    0 -1px #000000;
  color: #fca4e7;
  /* font */
  font-family:
    "MS PGothic", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", Meiryo,
    sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

/* Footer */

.footer {
  background: linear-gradient(to bottom, #fff7f7, #ffe8ec);
  color: #c47f78;
  border-top: 1px dotted #e39b52;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 8px;
  text-align: center;
  line-height: 14px;
  letter-spacing: 1px;
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 0 8px rgba(255, 215, 222, 0.7);
}

.footer a {
  color: #d66b6a;
  border-bottom: 1px dotted #e8807e;
}

.footer a:hover {
  color: #ff8d8b;
  text-shadow: 0 0 4px #fff;
}

/* Animations */

.jerky {
  animation: jerky 0.8s infinite;
}

@keyframes jerky {
  0% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  51% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

/* Responsiveness */

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .layout {
    margin: 20px auto;
  }

  .main {
    grid-template-columns: 1fr;
  }

  .column:nth-child(1),
  .column:nth-child(2),
  .column:nth-child(3) {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px dotted #efb0b6;
  }

  .navi-link {
    justify-content: center;
  }

  .navi-link a {
    width: calc(50% - 5px);
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }

  .banner {
    height: 130px;
  }

  .site-name {
    font-size: 18px;
    line-height: 20px;
    padding: 8px 12px 10px;
  }
}

@media (max-width: 420px) {
  .navi-link a {
    width: 100%;
  }

  .mini-boxes {
    grid-template-columns: 1fr;
  }
}
