/* =================================================
リセットcss ここから
=====================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* =================== リセットcss ここまで ================================== */

/* views */
.spView {
  display: none !important;
}
@media only screen and (max-width:768px) {
  .spView {
    display: block !important;
  }
  .pcView {
    display: none !important;
  }
}

:root {
  --red: #e60012;
  --gray: #707070;
  --bd: #ddd;
  --bg: #f7f7f7;
  --txt: #333;
  --accent: #c3a775;
}
* {
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Noto Sans JP", sans-serif;
  color: var(--txt);
  background: #fff;
}
.header {
  position: relative;
  width: calc(100% - 40px);
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid #bfbfbf;
  padding-block: 40px;
  border-bottom: none;
}
.header_logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 140px;
}
.header_title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1;
}