@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Marcellus&subset=latin-ext&family=Noto+Serif+SC:wght@200..900&family=Noto+Serif+KR:wght@200..900&display=swap');
/* =======================================

  BROWSER RESET

 ======================================= */
html,
body,
div,
span,
nav,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
button,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-style: inherit;
  font-weight: inherit;
  background: transparent;
}

html {
  font-size: 62.5%;
  line-height: 1;
  overflow-y: scroll;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

sup {
  display: inline-block;
  font-size: 70%;
  vertical-align: super;
  position: relative;
  inset: -0.2em auto auto;
}

sub {
  font-size: 70%;
  vertical-align: sub;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

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

/* form */
input {
  vertical-align: middle;
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
}

textarea {
  resize: vertical;
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  vertical-align: middle;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

option {
  padding-right: 10px;
}

/* for iOS15 safari */
input,
button,
select {
  color: inherit;
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

/* ------------------------------
  HTML5 ELEMENTS
------------------------------ */
header,
footer,
article,
section,
aside,
main,
nav,
menu,
details,
summary,
figcaption,
figure {
  display: block;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* =======================================

  BASE

======================================= */
body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  color: #231815;
  font-family: "Noto Serif SC", serif;
  font-optical-sizing: auto;
  position: relative;
  background: #fff;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
    line-height: 1.6;
  }
}

p {
  font-weight: 300;
}

a {
  font-weight: 500;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}


header {
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, #ddd, #efefef);
  text-align: center;
  padding: 30px 0 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  .logo {
    width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  header {
    .logo {
    width: 150px;
  }
  }
}

h1 {
  font-family: "Marcellus", serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  font-family: "Marcellus", serif;
  line-height: 1;
}

footer {
  width: 50%;
  margin-left: auto;
  margin-top: auto;
  padding: 8px 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer {
    width: 100%;
  }
}