@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  min-width: 320px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

.container {
  padding: 0 15px;
}

.main-section {
  background-image: url(../img/bg_pattern.png);
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .main-section {
    padding-bottom: 4%;
  }
}

.header {
  padding: 10px 0;
}
.header__inner {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: auto;
}
.header__login {
  height: 5vw;
  max-height: 33px;
}
.header__login img {
  width: 22vw;
  max-width: 140px;
}
@media screen and (max-width: 750px) {
  .header {
    padding: 0;
  }
}

.hero {
  background-image: url(../img/main_fv.png);
  background-size: 100%;
  background-repeat: no-repeat;
  max-width: 750px;
  margin: 0 auto;
}

.cta.top {
  padding-top: 56%;
}
.cta__inner {
  padding: 0 15px;
  background-image: url(../img/cta_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 4%;
  padding-bottom: 19%;
}
.cta__button {
  display: block;
  position: relative;
  text-align: center;
  width: 96%;
  margin: auto;
  padding-top: 14%;
}
.cta__arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.cta__arrow img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .cta.top {
    padding-top: 52%;
  }
  .cta__button {
    padding-top: 15%;
  }
}

.keiba-area__inner {
  padding: 0 15px;
}

.reasons {
  background: url("../img/bg_pattern.png") repeat;
  background-color: #f5f5f5;
  padding: 5% 0;
}
.reasons__inner {
  padding: 0 15px;
}
.reasons__title {
  text-align: center;
  width: 94%;
  margin: 0 auto 4%;
}
.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  .reasons__list {
    gap: 32px;
  }
}
.reasons__item {
  box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
}
.reasons__item-text {
  background: #ffffff;
  padding: 4%;
  margin-top: -2%;
  position: relative;
}
.reasons__item-text p {
  font-size: 26px;
}
.reasons__item-text p span {
  background: #025f00;
  color: #ffffff;
}
@media screen and (max-width: 750px) {
  .reasons__item-text p {
    font-size: 3.5vw;
  }
}
.reasons__item-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffde00 transparent transparent transparent;
}

.pro-deep {
  padding: 4% 0;
}
.pro-deep__inner {
  padding: 0 15px;
  text-align: center;
}
.pro-deep__inner img {
  max-width: 100%;
}

.faq {
  background: url("../img/question-bg.png") repeat;
  margin-top: 4%;
}
.faq__inner {
  padding: 0 15px;
}
.faq__title {
  text-align: center;
}
.faq__title img {
  margin-top: -4%;
}
.faq__content {
  text-align: center;
}
.faq__content img {
  max-width: 100%;
}
.faq__bottom {
  text-align: center;
}
.faq__bottom img {
  margin-bottom: -2%;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 3%;
}
.faq__item {
  margin: 0 4% 6%;
  padding: 0 0 6%;
  border-bottom: 1px dashed #ffffff;
}
.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 32px;
  color: #ffde00;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .faq__question {
    font-size: 4vw;
  }
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 26px;
  color: #ffffff;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .faq__answer {
    font-size: 3.5vw;
  }
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffde00;
  color: #025f00;
  font-weight: bold;
  font-size: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .faq__icon {
    width: 6vw;
    height: 6vw;
    font-size: 3.5vw;
    min-width: 6vw;
  }
}
.faq__icon--answer {
  background-color: #ffffff;
  color: #025f00;
}

.steps {
  margin-top: 8%;
}
.steps__inner {
  padding: 0 15px;
  text-align: center;
}
.steps__title {
  margin-bottom: -4%;
}
.steps__arrow {
  margin-top: -1%;
  margin-bottom: 2%;
}

.footer {
  background-color: #1a1a1a;
  padding: 20px 0;
}
.footer__inner {
  padding: 0 15px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.footer__nav {
  margin-bottom: 15px;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer__nav-item {
  color: #ffffff;
  font-size: 22px;
}
@media screen and (max-width: 750px) {
  .footer__nav-item {
    font-size: 3vw;
  }
}
.footer__nav-item a {
  color: #ffffff;
}
.footer__nav-item:not(:last-child)::after {
  content: "｜";
  margin: 0 0.5em;
  color: #ffffff;
}
.footer__copyright {
  font-size: 18px;
  color: #ffffff;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    font-size: 2.4vw;
  }
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

@media screen and (min-width: 751px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */