@charset "UTF-8";
/*------------------------- 
	reset
--------------------------*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-feature-settings: "palt";
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(p) {
  line-height: 1.6;
}

table {
  border-collapse: collapse;
}

video {
  max-width: 100%;
}

img {
  border: none;
  line-height: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after, q:before {
  content: "";
}

mark {
  background-color: transparent;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

/* iOSリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

body {
  font-size: 100%;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  text-shadow: 1px 1px 1px black;
}

.bg-gradient {
  background: linear-gradient(300deg, #729fcc 0%, #b2cbe4 30%, #00a1e9 60%, #b2cbe4 100%);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-animation: gradation 6s infinite alternate;
          animation: gradation 6s infinite alternate;
  background-attachment: fixed;
  z-index: -1;
  background: linear-gradient(#a6d900 0%, #ff4454 100%);
}
.animation.color1 {
  background: linear-gradient(#7F7FD5 0%, #86A8E7 50%, #91EAE4 100%);
}
.animation.rainbow {
  background: linear-gradient(118deg, red, orange, yellow, green, aqua, blue, purple);
}

@-webkit-keyframes gradation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes gradation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
header {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  width: clamp(18.75rem, 14.659rem + 20.45vw, 30rem);
  text-align: right;
}
header h1 {
  color: #fff;
  font-size: clamp(1.875rem, 0.625rem + 4.17vw, 3.75rem);
  font-weight: normal;
  font-family: "Itim", cursive;
}
header p {
  font-size: 16px;
  font-family: "Itim", cursive;
  margin-top: 16px;
  line-height: 1.2;
}
header p.text-l {
  font-size: clamp(1.25rem, 0.583rem + 2.22vw, 2.25rem);
}

#contents {
  position: relative;
  height: 100%;
  padding: 28vh 1vw 0 5vw;
  text-align: left;
  font-size: clamp(1.5rem, 0.5rem + 3.33vw, 3rem);
}

a {
  color: #FEF334;
  text-decoration: none;
}
a:hover {
  color: #fef880;
  text-decoration: underline;
}
a:visited {
  color: #eae148;
}

.container-block {
  container-type: inline-size;
}

.site-list {
  width: 100%;
}
.site-list li {
  line-height: 1.8;
  font-family: "Itim", cursive;
}

.site-list2 {
  margin: 10vh 0 2vh;
}
.site-list2 li {
  line-height: 1.8;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.25rem, 0.583rem + 2.22vw, 2.25rem);
}
.site-list2 li time {
  display: inline-block;
  margin-right: 1rem;
}

@container (max-width: 480px) {
  .site-list li,
.site-list2 li {
    width: 360px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#footer {
  text-align: right;
  padding: 1rem;
  font-size: 14px;
}
@media screen and (min-width: 640px) {
  #footer {
    position: fixed;
    right: 3vw;
    bottom: 1.5vh;
  }
}
/*# sourceMappingURL=global.css.map */