@charset "utf-8";

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  box-sizing: border-box;
  font-size: 16px
}

ul,
ol {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1;
}


a {
  color: inherit;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border-style: none;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* カスタム */

label {
  display: inline-block;
}

/* フッター */
footer {
  background-color: #8C0037;
  padding-top: 38px;
}

.footer-nav {
  margin-bottom: 2rem;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5em;
  line-height: 2;
  justify-content: center;
  font-size: 18px;
  color: #FFFFFB;
  font-family: var(--font);
  list-style: disc;
  transition-duration: 0.1s;
}

footer ul li:hover {
  color: #FFC6DD;
}

.f-logo {
  width: 280px;
  max-width: 100%;
  margin: 27px auto;
  transition: 0.3s ease-in-out;
}

.f-logo:hover {
  filter: saturate(4);
}

footer article {
  width: 1440px;
  max-width: 93%;
  margin: 0 auto;
}

.okareco {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
  margin: auto 0;
  font-size: small;
  padding-bottom: 2px;
  color: #FFFFFB;
  filter: opacity(0.9);
}

.okareco a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {

  /* フッター */
  footer ul {
    list-style: none;
    column-gap: 1.8em;
  }

  .okareco {
    display: block;
    text-align: center;
  }
}