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: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Black.ttf") format("truetype"), local(sans-serif);
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Bold.ttf") format("truetype"), local(sans-serif);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Higure";
  src: url("../font/HigureGothic-Medium.ttf") format("truetype"), local(sans-serif);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Higure", sans-serif;
  font-size: 62.5%;
}

h1 {
  font-size: 4.8rem;
  line-height: 80px;
  font-weight: 900;
}

h2 {
  font-size: 4rem;
  line-height: 60px;
  font-weight: 900;
}

h3 {
  font-size: 2.4rem;
  line-height: 38px;
  font-weight: 900;
}

p {
  font-size: 1.6rem;
  line-height: 26px;
}

.footer {
  margin-top: 6rem;
  background: #222;
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1600px;
  gap: 2rem;
  margin-bottom: 10rem;
}
.footer__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__center {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__center .footer__nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.2rem;
}
.footer__center .footer__nav li {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer__center .footer__nav li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
}
.footer__center .footer__nav li a:hover {
  color: #ddd;
  background: rgba(255, 255, 255, 0.08);
}
.footer__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.2rem;
}
.footer__bottom {
  border-top: 2px solid #fff;
  padding-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__bottom .footer__copyright {
  font-size: 1.3rem;
  color: #fff;
}
.footer__bottom .footer__privacy {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    text-align: center;
  }
  .footer__left,
  .footer__center,
  .footer__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .footer__left .footer__logo img,
  .footer__center .footer__logo img,
  .footer__right .footer__logo img {
    width: 280px;
  }
  .footer__left ul.footer__nav,
  .footer__center ul.footer__nav,
  .footer__right ul.footer__nav {
    font-size: 1.7rem;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}