﻿@charset "utf-8";

/* 固定金利を選ぶことで将来の金利不安をゼロに */
.aruaru-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.aruaru-item {
  flex: 0 0 31.25%;
}

.aruaru-item .problem {
  background: url(../images/img_future-risk_01.webp) no-repeat center top;
  background-size: cover;
}

.aruaru-item-2 .problem {
  background-image: url(../images/img_future-risk_02.webp);
}

.aruaru-item-3 .problem {
  background-image: url(../images/img_future-risk_03.webp);
}

.aruaru-item .problem p {
  font-size: clamp(12px, 1.8vw, 20px);
  padding: 5% 0 75% 0;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

.aruaru-item .problem .line2 {
  padding: 10% 0 75% 0;
}

.problem-inner {
  padding: 3em;
}

@media only screen and (max-width:640px) {
  .aruaru-wrap {
    display: block;
  }

  .aruaru-item {
    margin-bottom: 40px;
  }

  .aruaru-item .problem {
    width: 90%;
    margin: 0 auto;
  }

  .aruaru-item .problem p {
    font-size: 5.0vw;
  }

  .aruaru-item .catch,
  .aruaru-item .ico,
  .aruaru-item .title {
    font-size: 5.4vw;
  }

  .problem-inner {
    padding: 1em;
  }
}

.cta {
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}

.cta::before,
.cta::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #000;
  position: absolute;
  top: 50%;
}

.cta::before {
  left: -10px;
  -webkit-transform: rotate(-25deg) translate(0, -50%);
  transform: rotate(-25deg) translate(0, -50%);
}

.cta::after {
  right: -10px;
  -webkit-transform: rotate(25deg) translate(0, -50%);
  transform: rotate(25deg) translate(0, -50%);
}

.deco-icon {
  display: block;
  position: relative;
  width: 70px;
  height: 35px;
  margin: 4em auto 10px;
}

.deco-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/ico_light.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.content-read {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 3em auto 1em;
}

/* ボタン */
a.cta-primary {
  display: block;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 2px rgba(35, 24, 21, 0.2);
  box-shadow: 2px 2px 2px rgba(35, 24, 21, 0.2);
  background: #EC6D33;
  color: #FFF;
  line-height: 1.46;
  text-align: center;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  margin: auto;
}

a.cta-primary::after {
  content: '';
  top: 50%;
  right: 0;
  position: absolute;
  background-image: url(../images/btn-arrow.svg);
  display: inline-block;
  background-size: 100%;
  -webkit-transform: translate(-35px, -50%);
  transform: translate(-35px, -50%);
}

a.cta-primary:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) {
  a.cta-primary {
    line-height: 90px;
    max-width: 480px;
    letter-spacing: .07em;
    padding-left: 10px;
  }

  a.cta-primary .button-icon {
    width: 55px;
    height: 55px;
    -webkit-transform: translate(30px, -55%);
    transform: translate(30px, -55%);
  }

  a.cta-primary::after {
    width: 13px;
    height: 24px;
  }

  a.cta-primary .text_1 {
    font-size: 24px;
  }
}

@media not all and (min-width: 768px) {
  a.cta-primary {
    padding: 1em 2.5em;
  }

  a.cta-primary .text_1 {
    font-size: 20px;
  }

  a.cta-primary::after {
    width: 6px;
    height: 11px;
    -webkit-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
  }
}

@media print {
  .no-print {
    display: none;
  }
}