@charset "utf-8";

.solution main {
  background-color: #eef5f7;
}
/*.solution .sec-solution {
  background-color: #eef5f7;
}
*/
.sec-solution .container {
  padding-right: 0;
  padding-left: 0;
}
.solution .sec-solution .content-box {
  padding: 24px 32px;
  margin-top: -100px;
}
.solution .problem-btn-ul {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.solution .problem-btn-ul .problem-btn-li {
  position: relative;
  border: 3px solid #0457a7;
  border-radius: 10px;
  /* margin-bottom: 10px; */
  padding: 20px 10px 35px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  color: #0457a7;
  transition: border 0.3s, color 0.3s;
}
.solution .problem-btn-ul .problem-btn-li:hover {
  border-color: #ca3b75;
  color: #ca3b75;
}
.solution .problem-btn-inner {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
}
.solution .problem-arrow {
  vertical-align: middle;
  color: #0457a7;
  line-height: 1;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  bottom: 20px;
}

.solution .problem-arrow::before,
.solution .problem-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
  transition: background 0.3s;
}
.solution .problem-btn-ul .problem-btn-li:hover .problem-arrow::before,
.solution .problem-btn-ul .problem-btn-li:hover .problem-arrow::after {
  background: #ca3b75;
}

.solution .problem-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.solution .problem-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
}

.solution .problem-strong {
  font-weight: bold;
  font-size: 20px;
}

.solution .problem-btn-ul .problem-btn-li p {
  margin-bottom: 0;
}

.solution .problem-btn-txt1 {
  font-size: 20px;
  font-weight: bold;
}

.solution .problem-btn-txt2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.solution .problem-btn-ul .problem-btn-li.is-active,
.solution .problem-btn-ul .problem-btn-li:hover {
  background-color: #fff;
}

.solution .solving {
  /* margin-bottom: 15px; */
  background-color: #eef5f7;
}

.solution .solving-ttl-box {
  background-color: #0457a7;
  clip-path: polygon(0% 0%, 100% 0, 100% 73%, 50% 94%, 0 73%);
  /* width: 100vw; */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 0 32px 0;
  /* max-width: 1120px; */
  margin: 50px 0;
}

.solution .solving-ttl-box img {
  width: 90px;
  display: inline-block;
}

.solution .solving-txtarea {
  text-align: center;
}

.solution .solving-txt {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: bottom;
  padding-left: 5px;
}
.solution .solving-txt-big {
  font-size: 1.333em;
}
.solution .solving-txt-middle {
  font-size: 1.111em;
}
.solution .problem-yello {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  color: #fffd02;
}

@media all and (min-width: 992px) {
  .solution .solving {
    /* margin-bottom: 44px; */
  }
}

.solution .problem-wrap {
  column-gap: 40px;
}

.solution .problem-head {
  display: grid;
  grid-template-areas: "title-box" "fukidashi" "onayami";
  justify-items: center;
}

.solution .onayami-box {
  margin-top: 30px;
  grid-area: onayami;
  width: clamp(150px, 100%, 200px);
  padding-right: 12px;
  align-self: center;
}

/* .onayami-box::after{
  content: "";
  background-image: url(./img/top/problem-hito1.png);
} */

.solution .onayami-orange {
  font-size: 20px;
  color: #d65e18;
  font-weight: bold;
}

.solution .fukidashi-box {
  grid-area: fukidashi;
  width: 100%;
}
.solution .fukidashi {
  position: relative;
  margin-top: 20px;
  padding: 15px 20px;
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: #d5d5d5;
}
.solution .fukidashi span {
  color: #c93b75;
}

.solution .fukidashi:after {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 20px;
  height: 30px;
  background-color: #d5d5d5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.solution .splide2-wrapper {
  position: relative;
  /* max-width: 540px; */
  margin-inline: auto;
}

.solution .splide2 .onayami-img {
  height: auto;
}

.solution .solution-box {
  display: grid;
  grid-template-areas: "title" "text" "image";
  gap: 20px;
  align-items: start;
  justify-content: center;
  padding: 20px 15px;
  background-color: #fff;
  border: 3px solid #2274a5;
  border-radius: 20px;
}

.solution .solution-ttl-wrap {
  grid-area: title;
  display: flex;
  flex-direction: column;
  gap: 10px 20px;
}

.solution .solution-sub {
  margin: 0;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #0457a7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #eef5f7;
  border-radius: 8px;
  white-space: nowrap;
}
.solution .solution-sub::after {
  display: none;
}
.solution .solution-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.5;
  color: #0457a7;
}

.solution .solution-txt {
  grid-area: text;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(28 / 16);
}

.solution .solution-imgbox {
  grid-area: image;
}

.solution .solution-link-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #2274a5;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 5px;
  margin-bottom: 3px;
}

.solution .solution-link {
  text-align: end;
  margin-top: 20px;
}

.solution .problem-ttl-box {
  grid-area: title-box;
  gap: 0 20px;
  justify-self: start;
}
.solution .problem-icon-box {
  flex-shrink: 0;
  gap: 12px;
}
.solution .problem-icon-img {
  position: relative;
  width: 26px;
}
.solution .problem-icon-img img {
  display: block;
  vertical-align: bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.solution .problem-icon-img img:nth-of-type(1) {
}
.solution .problem-icon-img img:nth-of-type(2) {
  opacity: 0;
}
.solution
  .problem-btn-ul
  .problem-btn-li:hover
  .problem-icon-img
  img:nth-of-type(1) {
  opacity: 0;
}
.solution
  .problem-btn-ul
  .problem-btn-li:hover
  .problem-icon-img
  img:nth-of-type(2) {
  opacity: 1;
}
.solution .problem-btn-txt {
  font-size: 20px;
  font-weight: 700;
  color: #0457a7;
  transition: color 0.3s;
}
.solution .problem-btn-txt .pop {
  font-size: 28px;
}
.solution .problem-ttl {
  font-size: 22px;
  font-weight: 700;
  color: #0457a7;
  transition: color 0.3s;
}
.solution .solution-btn-wrap {
  margin-top: 30px;
  text-align: center;
}
.solution .solution-btn-wrap .solution-btn {
  display: block;
  width: 100%;
  padding-inline: 20px;
  border-radius: 100vh;
}

@media all and (min-width: 576px) {
  .solution .problem-ttl {
    font-size: 26px;
  }
  .solution .solution-box {
    margin-inline: auto;
  }
  .solution .solution-btn-wrap .solution-btn {
    display: inline-block;
    width: unset;
    padding-inline: 55px;
  }
}

@media all and (min-width: 768px) {
  .solution .problem-btn-ul {
    grid-template-columns: 1fr 1fr;
  }

  .solution .problem-head {
    grid-template-areas: "title-box title-box" "fukidashi onayami";
  }
  .solution .fukidashi-box {
    padding-bottom: 30px;
  }
  .solution .fukidashi {
    padding: 25px 30px;
  }
  .solution .fukidashi::after {
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
  }

  .solution .onayami-box {
    /* width: 30%; */
    margin-top: 0;
    width: clamp(150px, 80%, 200px);
    align-self: flex-end;
  }

  .solution .solution-box {
    padding: 40px 30px;
  }
}

@media all and (min-width: 992px) {
  .solution .sec-solution .content-box {
    padding: 40px 48px;
    margin-top: -150px;
  }
  .solution .problem-btn-ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .solution .problem-btn-txt {
    font-size: 22px;
    padding: 0;
  }

  .solution .problem-strong {
    font-size: 25px;
  }

  .solution .problem-btn-ul .problem-btn-li {
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    /* height: 123px; */
    /* max-width: 350px; */
  }

  .solution .problem-arrow {
    display: inline-block;
    vertical-align: middle;
    color: #0457a7;
    line-height: 1;
    position: absolute;
    width: 12px;
    height: 12px;
    transform: translateX(-25%) rotate(135deg);
    bottom: 20px;
  }

  .solution .problem-arrow::before,
  .solution .problem-arrow::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 0.1em;
  }

  .solution .problem-arrow::before {
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
  }

  .solution .problem-arrow::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
  }

  .solution .fukidashi-box {
    padding-bottom: 0;
  }
  .solution .fukidashi {
    margin-top: 20px;
    font-size: 20px;
  }

  .solution .onayami-orange {
    font-size: 25px;
  }

  .solution .onayami-box {
    /* width: 22%; */
    width: clamp(150px, 100%, 240px);
    column-gap: 66px;
  }

  .solution .solution-box {
    grid-template-areas: "title title" "text image";
    grid-template-columns: 1fr 41%;
    grid-template-rows: auto 1fr;
    gap: 20px 50px;
    width: 100%;
    flex-direction: row;
    padding: 40px 30px;
  }

  .solution .solving-ttl-box {
    padding: 22px 0 47px 0;
    width: unset;
    transform: unset;
    left: unset;
  }

  .solution .solution-ttl {
    font-size: 20px;
  }

  .solution .solving-txtarea {
    display: flex;
    justify-content: center;
  }

  .solution .solving-txt {
    font-size: 38px;
    padding-top: 8px;
  }

  .solution .problem-yello {
    font-size: 45px;
    margin-bottom: 0;
  }

  .solution .solving-ttl-box img {
    width: 178.8px;
  }

  .solution .splide2-wrapper {
    /* padding-inline: 15px; */
    /* max-width: 1150px; */
    margin-inline: auto;
  }
}

@media all and (min-width: 1200px) {
  .solution .problem-head {
    grid-template-areas: "title-box onayami" "fukidashi onayami";
    grid-template-columns: 1fr 21.3%;
    column-gap: 40px;
  }

  .solution .fukidashi-box {
    padding-bottom: 30px;
  }
  .solution .solution-box {
    grid-template-areas: "title image" "text image";
  }
  .solution .solution-ttl-wrap {
    flex-direction: row;
  }
}

.br-small {
  display: none;
}

@media all and (max-width: 350px) {
  .br-small {
    display: block;
  }
}
@media all and (min-width: 351px) {
  .d-ssm-none {
    display: none;
  }
}

/* スライダー見た目調整 */
.solution .splide2 .splide__arrow {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  cursor: pointer;
  /* transition: 0.8 ease-in; */
  background-color: #0457a7;
  border-radius: 50%;
  border: none;
}

.solution .splide2 .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
}

.solution .splide2 .arrow-icon::before,
.solution .splide2 .arrow-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.solution .splide2 .arrow-icon::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.solution .splide2 .arrow-icon::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
}

.solution .splide2 {
  position: relative;
  margin-top: 14px;
  padding-bottom: 60px;
}

.solution .splide2 .splide__arrow--next,
.solution .splide2 .splide__arrow--prev {
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: auto;
}

.solution .splide2 .splide__arrow--next:disabled,
.solution .splide2 .splide__arrow--prev:disabled {
  opacity: 0;
}

.solution .splide2 .splide__arrow--prev {
  transform: translateY(-50%) rotate(180deg);
}

.solution .splide2 .splide__arrow--next {
  right: 0.2%;
  transform: translateY(-50%);
}

.solution .splide2 .splide__arrow--prev {
  left: 0.2%;
}

.solution .splide2 .splide__track {
}

.solution .splide2 .splide__list {
  align-items: flex-start;
}
.solution .splide2 .splide__slide {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  height: 0 !important;
}
.solution .splide2 .splide__slide.is-active {
  height: auto !important;
}

.solution .splide2 .splide__pagination {
  margin-top: 22px;
}
.solution .splide2 .splide__pagination__page {
  width: 24px;
  height: 24px;
  border: none;
  appearance: none;
  position: relative;
  background: none;
}
.solution .splide2 .splide__pagination__page::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border: 1px solid #0457a7;
  border-radius: 100vh;
}
.solution .splide2 .splide__pagination__page.is-active::after {
  background-color: #0457a7;
}

.solution .splide2 .splide__pagination li {
  padding: 0;
}
@media all and (min-width: 576px) {
  .solution .splide2 .splide__arrow--next {
    right: -20px;
  }

  .solution .splide2 .splide__arrow--prev {
    left: -20px;
  }

  .solution .splide2 .splide__arrow {
    width: 40px;
    height: 40px;
  }
}

@media all and (min-width: 992px) {
  .solution .splide2 {
    padding-bottom: 100px;
  }
  .solution .splide2 .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .solution .splide2 .splide__arrow--next,
  .splide2 .splide__arrow--prev {
    /* top: 145px; */
  }

  .solution .splide2 .splide__arrow--next {
    right: -10px;
  }

  .solution .splide2 .splide__arrow--prev {
    left: -10px;
  }

  .solution .splide2 .splide__slide {
    padding: 60px 40px;
  }
}

/* コンポーネント１の記述 */

@media all and (min-width: 576px) {
}

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}

/* //コンポーネント１の記述 */

/* コンポーネント２の記述 */

@media all and (min-width: 576px) {
}

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}

/* //コンポーネント２の記述 */

/* セクション１の記述 */

@media all and (min-width: 576px) {
}

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}

/* //セクション１の記述 */

/* セクション２の記述 */

@media all and (min-width: 576px) {
}

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}

/* //セクション２の記述 */

/* セクション３の記述 */

@media all and (min-width: 576px) {
}

@media all and (min-width: 768px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}

/* //セクション３の記述 */

/*デスクトップ*/
@media all and (min-width: 992px) and (max-width: 1199px) {
}

/*中デバイス*/
@media all and (min-width: 768px) and (max-width: 991px) {
}

/*小デバイス*/
@media all and (min-width: 576px) and (max-width: 767px) {
}

@media all and (max-width: 400px) {
}

/*iPhone5:SE*/
@media all and (max-width: 320px) {
}
