/* 最小限のリセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Meiryo", "メイリオ",
    "Yu Gothic", "游ゴシック体",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
  font-size: 14px;
  background-color: #4c4d47;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

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

li,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-0 {
  padding-left: 0 !important;
}

/* nav */
.navbar {
  width: 100%;
  height: 60px;
  position: relative;
  z-index: 10;
}

.nav-logo {
  width: 60%;
  height: auto;
  max-height: 150px;
  margin-left: 30px;
}

.nav-X {
  width: 40%;
  height: auto;
  max-height: 100px;
}

.nav-logo:hover,
.nav-X:hover,
.apply-btn:hover,
.footer-o-logo:hover{
  opacity: 0.7
}

@media screen and (min-width: 768px) {
  .navbar {
    height: 70px;
  }

  .nav-logo {
    width: 50%;
  }

  .nav-X {
    width: 30%;
    margin-left: 50px;
  }
}

@media screen and (min-width: 992px) {
  .navbar {
    height: 80px;
  }

  .nav-X {
    margin-left: 100px;
  }
}

/* TOP */
.top-row {
  position: relative;
  z-index: 1;
  top: -64px;
  left: 0;
}

.spy-top {
  background-image: url('img/event/top_fin.jpg');
  background-size: cover;
  background-position: center;
  height: 40vh;
  width: 100%;
}

/* TOP画像のグレー三角に幅を合わせているのでブレイクポイントがバラバラ */
@media screen and (min-width: 530px) {
  .spy-top {
    background-repeat: no-repeat;
    width: 100vw;
    height: 60vh;
  }
}

@media screen and (min-width: 768px) {
  .top-row {
    top: -74px;
  }
}

@media screen and (min-width: 790px) {
  .spy-top {
    width: 100vw;
    height: 80vh;
  }
}

@media screen and (min-width: 992px) {
  .top-row {
    top: -84px;
  }
}

@media screen and (min-width: 1090px) {
  .spy-top {
    width: 100vw;
    height: 100vh;
  }
}

@media screen and (min-width: 1200px) {
  .top-row {
    top: -104px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1140px !important;
}
}

/* section */
ul.dot li {
  list-style: disc;
}

ol.number {
  padding-left: 2rem;
}

ol.number li {
  list-style: decimal;
}

.title-img {
  max-height: 80px;
  margin: 0 auto;
}

.apply-fin-btn {
  max-height: 170px;
}


/* footer */
.footer {
  position: relative;
  color: #4c4d47;
  background-color: #fff;
  margin-top: 80px;
  padding: 32px 0;
}

.footer-o-logo {
  width: 60%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .footer-o-logo {
    width: 100%;
    max-width: 100px;
    padding-left: 48px;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
  }
}