@charset "utf-8";

/*全体*/
main {
  font-family: "Inter", sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.breadcrumb {
  display: none;
}
#simplepagetitle {
  display: none;
}


/*fv*/
.fv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
  padding: 70px 20px 90px;
}

.fv-text {
  flex-shrink: 0;
  padding-left: 30px;
  width: 440px;
}

.fv-text h1 {
  position: relative;
  margin: 0;
  padding: 88px 0 0 !important;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4 !important;
}

.fv-text h1::before {
  content: '';  
  position: absolute;
  top: 0px;
  left: 0;
  width: 62px;
  height: 62px;
  background: url('../img/ricoh_balloon.svg') no-repeat;
}

.fv-explanation {
  margin: 30px 0 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.start-btn-top {
  text-align: center;
  margin: 0 0 12px !important;
  max-width: 370px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.start-btn-top span{
  font-size: 24px;
  font-weight: 700;
  color: rgba(207, 20, 43, 1);
}

a.start-btn {
  display: block;
  text-align: center;
  max-width: 370px;
  width: 100%;
  height: 70px;
  font-size: 22px;
  font-weight: 700;
  line-height: 70px;
  color: rgba(255, 255, 255, 1) !important;
  background: rgba(207, 20, 43, 1);
  border-radius: 4px;
  transition: opacity 0.25s ease-out;
}

.start-btn:hover {
  opacity: .6;
  text-decoration: none;
}

.fv img {
  max-width: calc(100% - 527px);
  width: 754px !important;
}

@media only screen and (max-width: 1099px) {
  .fv {
    flex-direction: column;
  }

  .fv-text {
    padding: 0;
    max-width: 100%;
  }

  .fv-text h1 {
    font-size: 30px;
  }

  .pc-br {
    display: none;
  }

  .fv img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 390px) {
  .fv-explanation {
    font-size: 16px;
  }
}

/*trouble*/
.trouble {
  text-align: center;
  background: rgba(227, 235, 248, 1);
}

.trouble h2 {
  height: 99px;
  font-size: 32px !important;
  font-weight: 700;
  line-height: 99px !important;
  color: rgba(255, 255, 255, 1) !important;
  background: rgba(207, 20, 43, 1);
}

.trouble-inner {
  position: relative;
  margin: auto;
  padding: 66px 0 168px;
  max-width: 1440px;
  width: 100%;
}

.trouble-inner img {
  max-width: 759px;
  width: 100%;
  margin: 0 auto;
}

.trouble-text {
  position: absolute;
}

.trouble-text.top {
  top: 88px;
  right: 0;
  left: 0;
  margin: auto;
}

.trouble-text.upper-left {
  top: 160px;
  left: 58px;
}

.trouble-text.upper-right {
  top: 180px;
  right: 44px;
}

.trouble-text.lower-left {
  left: 58px;
  bottom: 63px;
}

.trouble-text.lower-right {
  right: 64px;
  bottom: 63px;
}

.trouble-text p {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 1);
  background: rgba(14, 30, 50, 1);
  border-radius: 4px;
}

.top p::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: -20px;
  width: 51px;
  height: 28px;
  background: url('../img/speech_bubble.svg') no-repeat;
}

.upper-left p::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: -20px;
  width: 51px;
  height: 28px;
  background: url('../img/speech_bubble.svg') no-repeat;
  transform: scaleX(-1);
}

.upper-right p::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 51px;
  height: 28px;
  background: url('../img/speech_bubble.svg') no-repeat;
}

.lower-left p::after {
  content: '';
  position: absolute;
  right: 20px;
  top: -20px;
  width: 51px;
  height: 28px;
  background: url('../img/speech_bubble.svg') no-repeat;
  transform: rotate(180deg);
}

.lower-right p::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 51px;
  height: 28px;
  background: url('../img/speech_bubble.svg') no-repeat;
  transform: rotate(180deg) scaleX(-1);
}

@media only screen and (max-width: 1099px) {
  .trouble h2 {
    font-size: 24px !important;
  }

  .trouble-inner {
    padding: 66px 0 80px;
  }

  .trouble-text {
    position: relative;
    margin-bottom: 96px;
  }

  .trouble-text p {
    width: 335px;
    box-sizing: border-box;
  }

  .trouble-text.top {
    top: auto;
    margin-bottom: 96px;
  }

  .trouble-text.upper-left {
    top: auto;
    left: auto;
  }

  .upper-left p::after {
    transform: scaleX(1);
  }

  .trouble-text.upper-right {
    top: auto;
    right: auto;
  }

  .upper-right p::after {
    right: 20px;
    left: auto;
  }

  .trouble-text.lower-left {
    left: auto;
    bottom: auto;
  }

  .lower-left p::after {
    top: auto;
    bottom: -20px;
    transform: rotate(0);
  }

  .trouble-text.lower-right {
    right: auto;
    bottom: auto;
    margin-bottom: 0;
  }

  .lower-right p::after {
    top: auto;
    right: 20px;
    left: auto;
    bottom: -20px;
    transform: rotate(0) scaleX(1);
  }
}

@media only screen and (min-width: 1100px) {
  .sp-br {
    display: none;
  }
}

/*cta*/
.cta {
  text-align: center;
  padding: 90px 20px 126px;
}

.cta-first {
  position: relative;
  margin: 0 0 95px !important;
  padding: 11px 0 26px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
}

.cta-first::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 77px solid rgba(207, 20, 43, 1);
  border-right: 175px solid transparent;
  border-left: 175px solid transparent;
}

.cta h2 {
  display: inline-block;
  position: relative;
  max-width: 542px !important;
  width: 100%;
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1.4 !important;
  color: rgba(207, 20, 43, 1) !important;
}

.cta h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 42px;
  height: 97px;
  background:url('../img/line.svg');
  transform: translateY(-50%);
}

.cta h2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 97px;
  background:url('../img/line.svg');
  transform: translateY(-50%) scaleX(-1);
}

.cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 152px;
}

.cta-text {
  flex-shrink: 0;
  padding: 69px 0 0;
  width: 439px;
  background: url('../img/chart.png') no-repeat center/contain;
}

.cta-explanation {
  margin: 0 0 21px !important;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.cta-inner .start-btn-top {
  margin: 0 auto 10px !important;
}

.cta-inner a.start-btn {
  margin: auto;
}

.cta-inner img {
  margin-top: 77px;
  width: 480px !important;
}

@media only screen and (max-width: 1099px) {
  .cta-first {
    margin: 0 0 60px;
    font-size: 36px;
  }

  .cta-first::after {
    border-right: 160px solid transparent;
    border-left: 160px solid transparent;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta-inner {
    flex-direction: column;
    gap: 0;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-explanation {
    font-size: 30px;
  }

  .cta-inner img {
    max-width: 100%;
  }
}
