@charset "UTF-8";
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  overflow-x: hidden;
  font-family: kinto-sans, -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #444;
  background: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body [lang=en] {
  font-family: basic-sans, kinto-sans, -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-style: normal;
}
body [lang=en].fw-bold {
  font-weight: 600 !important;
}
body .h1,
body .h2,
body .h3,
body .h4,
body .h5 {
  line-height: 1.6;
}
body .fw-bold {
  font-weight: 500 !important;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: underline;
  color: #222;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #222;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

.text-lead {
  margin-top: 240px;
}
@media (max-width: 1199px) {
  .text-lead {
    margin-top: 140px;
  }
}
@media (max-width: 991px) {
  .text-lead {
    margin-top: 16vw;
  }
}
@media (max-width: 767px) {
  .text-lead {
    margin-top: 160px;
  }
}
@media (max-width: 575px) {
  .text-lead {
    margin-top: 28vw;
  }
}

.list-item {
  list-style-type: none;
  padding-left: 8px;
}
.list-item > li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .list-item > li {
    font-size: 14px;
  }
}
.list-item > li a {
  text-decoration: none;
  border-bottom: 1px solid #bbb;
  display: inline-block;
  padding: 0;
  color: #222;
  position: relative;
  white-space: nowrap;
}
.list-item > li span.material-symbols-outlined {
  position: absolute;
  top: -4px;
  right: -1em;
  line-height: 1;
  color: #444;
  opacity: 0.6;
}
.list-item > li img {
  width: 100%;
  max-width: 200px;
}
.list-item > li .f14 {
  font-size: 14px;
}
@media (max-width: 575px) {
  .list-item > li .f14 {
    font-size: 13px;
  }
}

.link-btn {
  background-color: #ffffff;
  color: #222;
  border: 4px double #222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 600px;
  max-width: 80vw;
  margin: 40px auto;
  text-decoration: none;
  padding: 16px 8px;
  position: relative;
}
.link-btn:hover {
  color: #222;
}
.link-btn .material-symbols-outlined {
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 16px;
  opacity: 0.6;
}

.section-itemlist h2 {
  height: 400px;
  margin-bottom: -100px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url("../img/bg-header.png") bottom center no-repeat;
  background-size: 50%;
}
@media (max-width: 991px) {
  .section-itemlist h2 {
    height: 220px;
    margin-bottom: -60px;
  }
}
@media (max-width: 767px) {
  .section-itemlist h2 {
    height: 440px;
    margin-bottom: -100px;
    background-size: 120vw;
  }
}
@media (max-width: 575px) {
  .section-itemlist h2 {
    height: 400px;
    background-size: 160vw;
  }
}
@media (max-width: 430px) {
  .section-itemlist h2 {
    height: 320px;
    background-size: 160vw;
  }
}
.section-itemlist ul {
  max-width: 1000px;
  margin: 0 auto;
}
.section-itemlist .list-item > li {
  line-height: 1.2;
}

.js-scrollAnimate {
  opacity: 0;
}

.animate-fadeinup {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}

footer {
  position: relative;
}
footer .link-pageup {
  position: fixed;
  right: 40px;
  bottom: 20px;
  color: #222;
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 10px;
    bottom: 10px;
  }
}
footer .link-pageup:hover {
  color: #222;
}
footer .link-pageup .material-symbols-outlined {
  font-size: 60px;
}
footer .copyright {
  background-color: #9e9e9e;
}
footer .material-symbols-outlined.icon-pageup::before {
  font-family: "Material Symbols Outlined";
  content: "\f182";
}

header {
  position: relative;
  background: url("../img/bg-header.png") bottom center repeat-x;
  background-size: 60%;
}
@media (max-width: 767px) {
  header {
    background-size: 120%;
  }
}
header .kvtxt {
  max-width: 500px;
  width: 100%;
  top: 24px;
  left: 24px;
}
@media (max-width: 767px) {
  header .kvtxt {
    top: 0;
    left: 0;
    width: 84%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
header h1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
header h1 img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  header h1 img {
    width: 62%;
  }
}
@media (max-width: 767px) {
  header h1 img.txtcollection {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 992px) {
  header h1 img.txtcollection {
    width: 38%;
  }
}
header.animate-fadein {
  animation-name: fadeInAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}