@charset "UTF-8";

:root {
  --black: #280a0a;
  --white: #fff;
  --main: #b4972e;
}

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0 auto;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

html {
    font-size: min(4vw, 1.6rem);
}

#sparkle{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  filter: blur(.4px);
}

body {
    position: relative;
    color: var(--white);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-feature-settings: "palt";
    font-weight: 400;
    font-style: normal;
    text-align: center;
    background: url(../img/bg.webp), #280a0a;
    background-position: center top;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    max-width: 900px;
    padding: 2rem 1rem;
}
h1 {
    max-width: 1000px;
    width: 94%;
}
main p {
    display: block;
    width: 100%;
    margin: 1rem 0 0;
}
main p.catch {
    font-size: 160%;
    background: linear-gradient(90deg, #fae6b4, #e6c878, #fae6b4);
    color: var(--black);
    font-weight: 800;
    border-top: 4px solid #d2aa6e;
    border-bottom: 4px solid #d2aa6e;   
}

@media screen and (min-width: 500px) {
    main p.share {
        font-size: .8rem;
    }
}

.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    font-weight: normal;
}
.sns li {
    list-style: none;
    margin: 5px;
    color: var(--white);
}
.sns li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
}
#t-icon a {
    padding: 10px;
    fill: #000;
}
#f-icon a {
    fill: #0866ff;
}
#l-icon a {
    fill: #00B900;
}
.gee_logo {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto .5rem;
}
.gee_logo a {
    background: var(--white);
    padding: .5em;
    margin: 5px;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;    
}


footer {
    width: 100%;
    margin: 0 auto;
    background: #111;
    font-size: .8rem;
    padding: 1rem 0;
    border-top: 2px solid #d2aa6e;
    font-size: 12px;
}