/*----------
reset
------------*/
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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 100%;
  font: inherit;
  border-collapse: collapse;
  border-spacing: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body,
html {
  width: 100%;
  height: 100%;
}
ol, ul, li {
  list-style: none;
}
input, textarea {
  font-family: 'Noto Sans JP', sans-serif;
}
select {
  background-color: #fff;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a, a:link {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
a[href] {
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: inherit;
}
a:hover {
  opacity: .7;
}
a[href]:hover {
  opacity: .7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}
a:focus {
  color: #000;
}
figure {
  font-size: 0;
  line-height: 0;
}
/*----------
base
------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #000000;
  letter-spacing: .07em;
  position: relative;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: calc(0.8125rem + ((1vw - 0.234375rem) * 0.7653));
    min-height: 0vw;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}
/*----------
header
------------*/
.header{
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, #DA291C, #BF0D3E);
  position: fixed;
  z-index: 10;
}
.header-inner{
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display:-webkit-box;
  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;
}
.header-inner a{
  display: inline-block;
}
.header-logo{
  width: 200px;
  height: 25px;
  display: block;
}
@media screen and (max-width: 767px) {
  .header-logo{
    width: 150px;
    height: 19px;
  }
}
/*----------
footer
------------*/
.footer{
  width: 100%;
  background-color: #030c18;
  padding: 2.5rem 1rem;
}
.footer-inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo{
  width: 200px;
  height: auto;
}
.footer-list{
  display:flex;
  margin-top: 30px;
}
.footer-item{
  font-size: 0;
}
.footer-item a{
  color: #ffffff;
  font-size: 12px;
  padding: 0 8px 0 10px;
  white-space: nowrap;
}
.footer-item:last-of-type a{
  padding-left: 10px;
  padding-right: 0;
}
.footer-item:not(:last-of-type)::after{
  content: "";
  width: 1px;
  height: 12px;
  background: #cccccc;
  display: inline-block;
  position: relative;
  top: 2px;
}
.footer-item a:hover{
  text-decoration: underline;
}
/*----------
Supporting graphic device
------------*/
.header-banner{
  overflow: visible;
  position: relative;
  min-height: 500px;
  z-index: 1;
  height: 100%;
}
.button--default{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-weight: 500;
  height: 100%;
  color: #ffffff;
  background-color: #1c304b;
  border-radius: 8px;
  width: 100%;
  padding: 1em;
}
.button--default b{
  display: inline-block;
  color: #ffffff;
  font-size: 1.25rem;
}
.button--default[href]:hover{
  opacity: 1;
  background-color: #030c18;
}
