@charset "utf-8";
/* base */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  background-color: #000;
  color: #FFF;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-kerning: normal;
  -webkit-font-kerning: normal;
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-family: Futo Go B101, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: bottom;
  height: auto;
  width: 100%;
  transition-duration: 0.3s;
}
::selection {
  background: #9B0300;
  color: #FFF;
}
::-moz-selection {
  background: #9B0300;
}
/* link */
a:link, a:visited, a:active {
  text-decoration: none;
  color: #FFFFFF !important;
}
a:visited {
  text-decoration: none;
  color: #FFFFFF !important;
}
a:hover {
  transition: all 0.3s;
}
a:hover img {
  transform: scale(1.03);
  transition-duration: 0.3s;
}
/* button */
.button {
  display: block;
  text-align: center;
  line-height: 1.1;
  padding: 1em 0.5em;
  width: 100%;
  cursor: pointer;
  border: 1px solid #FFF;
  background-size: 8%;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: right 5px top 10px;
}
.button a:link, a:visited, a:active {
  color: #333 !important;
}
.button2 {
  display: inline-block;
  text-align: center;
  font-size: 0.85em;
  line-height: 1.1;
  padding: 0.2em 2.5em;
  border-radius: 20px;
  width: auto;
  cursor: pointer;
  border: 1px solid #FFF;
  background-size: 8%;
  background-image: url(../images/arrow2.svg);
  background-repeat: no-repeat;
  background-position: right 5px top 4px;
  margin-left: 1em;
}
/* arrow */
.arrow {
  position: relative;
}
.arrow:after {
  content: "→";
  font-size: 1rem;
  position: absolute;
  right: 0.5em;
}
/* option */
.chotai {
  transform: scale(0.86, 1);
  transform-origin: 0 0;
  width: 120%;
  letter-spacing: 0.2em;
  display: block;
}
.mincho {
  transform: scale(1.2, 1);
  transform-origin: 0 0;
  width: 120%;
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #707070;
}
.spbr {
  display: none;
}
.pcbr {
  display: block;
}
/* iOS */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
button, input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
input[type="radio"] {
  display: inline-block;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}