@charset "UTF-8";
/* -------------------------------------------------
  Reset
------------------------------------------------- */
*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #000;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.65;
}
ul, li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}
input, select, button, textarea {
  font: inherit;
  outline: none;
}

/* -------------------------------------------------
  Common
------------------------------------------------- */
body.js-isFixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
}
.inner {
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
}

/* -------------------------------------------------
  Header
------------------------------------------------- */
.specialHeader {
  text-align: center;
  padding: 30px 0;
}
.specialHeaderLogo__img {
  max-width: 110px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .specialHeader {
    padding: 20px 0;
  }
}

/* -------------------------------------------------
  Footer
------------------------------------------------- */
.specialFooter {
  text-align: center;
  padding: 30px 0;
}
.copyright {
  font-size: 12px;
}

/* -------------------------------------------------
  Mainvisual
------------------------------------------------- */
.mainvisual {
  margin-bottom: 80px;
}
.mainvisual__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mainvisual {
    margin-bottom: 40px;
  }
}

/* -------------------------------------------------
  Section
------------------------------------------------- */
.sectionBlock {
  width: 100%;
  margin-top: 80px;
}
.sectionImage__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.sectionText__desc {
  font-size: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sectionBlock {
    margin-top: 40px;
  }
  .sectionText__desc {
    margin-bottom: 20px;
  }
}

/* -------------------------------------------------
  Item Info
------------------------------------------------- */
.itemInfo {
  width: 100%;
  font-size: 11px;
  font-weight: bold;
}
.itemInfo:nth-of-type(n+2) {
  margin-top: 30px;
}
.itemInfo__category {
  margin-bottom: 2px;
}
.itemInfo__link {
  margin-top: 15px;
}
.itemInfo__link--anchor {
  display: block;
  max-width: 160px;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  background: #fff;
  padding: 10px 0;
  border: 1px solid #000;
  transition: background 0.25s;
}
.itemInfo__link--anchor:hover {
  color: #fff;
  background: #000;
}
.itemInfo__link--anchor.is-disabled {
  color: #fff;
  font-weight: bold;
  background: #999;
  border-color: #999;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .itemInfo__link--anchor {
    max-width: none;
  }
}