@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-functions
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
solutions
-----------------------------------------------------*/
.p-solutions-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem 0;
  margin-bottom: clamp(152px, 2.14vw + 145.1px, 180px);
}
@media screen and (min-width: 1080px) {
  .p-solutions-lead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-solutions-lead h2 {
  padding-left: clamp(32px, 1.22vw + 28.1px, 48px);
  position: relative;
  margin-bottom: clamp(14px, 0.76vw + 11.6px, 24px);
}
.p-solutions-lead h2 span {
  color: #005AAA;
  font-size: clamp(18px, 0.92vw + 15px, 30px);
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.p-solutions-lead h2::before {
  content: "";
  display: block;
  width: clamp(23px, 0.53vw + 21.4px, 30px);
  height: auto;
  aspect-ratio: 30/24;
  background: url(../img/common/icon_speech.svg) no-repeat 0 0/cover;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.p-solutions-lead h3 {
  font-size: clamp(24px, 1.68vw + 18.6px, 46px);
  font-weight: 700;
  margin-bottom: clamp(26px, 2.29vw + 18.7px, 56px);
}
.p-solutions-lead .-L {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-solutions-lead .-L {
    width: 55%;
  }
}
.p-solutions-lead .-L p {
  max-width: 560px;
}
.p-solutions-lead .-R {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-solutions-lead .-R {
    width: 41%;
  }
}
.p-solutions-lead .-R img {
  width: 100%;
  height: auto;
}
.p-solutions-talk + .p-solutions-talk {
  margin-top: 150px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk + .p-solutions-talk {
    margin-top: 270px;
  }
}
.p-solutions-talk {
  width: 100%;
  background: rgba(0, 90, 170, 0.1);
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk {
    width: 94%;
    padding: 0;
    border-radius: 0 1.25rem 1.25rem 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse {
    margin-left: 6%;
    padding: 0;
    border-radius: 1.25rem 0 0 1.25rem;
  }
}
.p-solutions-talk .-inner {
  position: relative;
  z-index: 1;
  top: -70px;
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk .-inner {
    top: -70px;
    width: 73%;
    margin-left: 20%;
  }
}
.p-solutions-talk .-inner::before {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk .-inner::before {
    width: 18%;
    aspect-ratio: 190/500;
    left: -18%;
    top: 80px;
    background: url(../img/solutions/client01.png) no-repeat 0 0/contain;
  }
}
.p-solutions-talk .-inner::after {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk .-inner::after {
    width: 18%;
    aspect-ratio: 190/500;
    right: -18%;
    top: 80px;
    background: url(../img/solutions/bluedge01.png) no-repeat 0 0/contain;
  }
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse .-inner {
    margin-left: 13.5%;
  }
}
.p-solutions-talk.-reverse .-inner::before {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse .-inner::before {
    width: 18%;
    aspect-ratio: 190/500;
    left: -18%;
    top: 80px;
    background: url(../img/solutions/client02.png) no-repeat 0 0/contain;
  }
}
.p-solutions-talk.-reverse .-inner::after {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse .-inner::after {
    width: 18%;
    aspect-ratio: 190/500;
    right: -18%;
    top: 80px;
    background: url(../img/solutions/bluedge02.png) no-repeat 0 0/contain;
  }
}
.p-solutions-talk dl {
  margin-bottom: 2rem;
}
.p-solutions-talk dl dt {
  width: 86%;
  margin-left: 18%;
  padding: 1.2rem 1.2rem;
  background: #005AAA;
  border-radius: 1.25rem;
  color: #fff;
  font-size: clamp(15px, 0.69vw + 12.8px, 24px);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dt {
    width: 86.7%;
    margin: 0;
    padding: 1.5rem 1.5rem;
  }
}
.p-solutions-talk dl dt .-small {
  font-size: clamp(15px, 0.08vw + 14.7px, 16px);
}
.p-solutions-talk dl dt::before {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
  width: 29.3vw;
  aspect-ratio: 110/130;
  left: -24vw;
  bottom: -26px;
  background: url(../img/solutions/client01_sp.png) no-repeat 0 0/contain;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dt::before {
    display: none;
  }
}
.p-solutions-talk dl dt::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background: url(../img/solutions/fukidashi_b.svg) no-repeat 0 0/contain;
  position: absolute;
  left: 3rem;
  bottom: -26px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dt::after {
    bottom: -35px;
  }
}
.p-solutions-talk dl dt .-number {
  position: absolute;
  top: -1.9rem;
  left: -1.9rem;
  font-style: normal;
  aspect-ratio: 1/1;
  width: clamp(44px, 0.99vw + 40.9px, 57px);
  height: auto;
  font-size: clamp(18px, 0.31vw + 16.9px, 22px);
  font-weight: 700;
  color: #005AAA;
  line-height: 1;
  font-family: "Lexend Deca";
  background: #fff;
  border-radius: 50%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-solutions-talk dl dd {
  width: 84%;
  margin-top: 36px;
  margin-left: -4%;
  padding: 1.2rem 1.2rem;
  background: #fff;
  border-radius: 1.25rem;
  font-size: clamp(15px, 0.69vw + 12.8px, 24px);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dd {
    width: 86%;
    margin-top: 50px;
    margin-left: 14%;
    padding: 1.5rem 1.5rem;
  }
}
.p-solutions-talk dl dd::before {
  content: "";
  display: block;
  height: auto;
  position: absolute;
  z-index: 1;
  width: 29.3vw;
  aspect-ratio: 110/130;
  right: -24vw;
  bottom: -26px;
  background: url(../img/solutions/bluedge01_sp.png) no-repeat 0 0/contain;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dd::before {
    display: none;
  }
}
.p-solutions-talk dl dd::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background: url(../img/solutions/fukidashi_w2.svg) no-repeat 0 0/contain;
  position: absolute;
  right: 3rem;
  bottom: -26px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk dl dd::after {
    background: url(../img/solutions/fukidashi_w.svg) no-repeat 0 0/contain;
    top: -35px;
    bottom: unset;
  }
}
.p-solutions-talk.-reverse dl dt {
  width: 87%;
  margin-left: 17%;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse dl dt {
    width: 86.7%;
    margin: 0;
  }
}
.p-solutions-talk.-reverse dl dt::before {
  left: -22vw;
  background: url(../img/solutions/client02_sp.png) no-repeat 0 0/contain;
}
.p-solutions-talk.-reverse dl dd {
  width: 86%;
  margin-top: 36px;
  margin-left: -4%;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk.-reverse dl dd {
    width: 86%;
    margin-top: 50px;
    margin-left: 14%;
  }
}
.p-solutions-talk.-reverse dl dd::before {
  right: -23vw;
  background: url(../img/solutions/bluedge02_sp.png) no-repeat 0 0/contain;
}
.p-solutions-talk .-service {
  margin-top: 2rem;
}
.p-solutions-talk .-service h4 {
  font-size: clamp(15px, 0.23vw + 14.3px, 18px);
  font-weight: 700;
  margin-bottom: clamp(10px, 0.61vw + 8.1px, 18px);
  color: #005AAA;
}
.p-solutions-talk .-service .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 4%;
}
.p-solutions-talk .-service .-flex .-card {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #fff;
  padding-top: clamp(20px, 0.76vw + 17.6px, 30px);
  padding-bottom: clamp(20px, 0.76vw + 17.6px, 30px);
  padding-left: clamp(15px, 1.15vw + 11.3px, 30px);
  padding-right: clamp(15px, 1.15vw + 11.3px, 30px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk .-service .-flex .-card {
    width: 22%;
    display: block;
  }
}
.p-solutions-talk .-service .-flex .-card i.-icon {
  display: block;
  width: 50px;
  height: 50px;
}
.p-solutions-talk .-service .-flex .-card div {
  width: calc(100% - 70px);
  position: relative;
}
@media screen and (min-width: 1080px) {
  .p-solutions-talk .-service .-flex .-card div {
    width: auto;
    margin-top: 20px;
  }
}
.p-solutions-talk .-service .-flex .-card h2 {
  font-size: clamp(15px, 0.23vw + 14.3px, 18px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(2px, 0.61vw + 0.1px, 10px);
}
.p-solutions-talk .-service .-flex .-card p {
  font-size: 14px;
  line-height: 1.6;
}
@media (hover: hover) and (pointer: fine) {
  .p-solutions-talk .-service .-flex .-card:hover {
    cursor: pointer;
    border: 1px solid #005AAA;
  }
}
.p-solutions-nayami {
  margin-top: 1.5rem;
  border: 1px solid #C0CEDB;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem 0;
  padding: 15px 10% 60px;
  position: relative;
  margin-bottom: clamp(14px, 0.76vw + 11.6px, 24px);
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami {
    padding: 30px;
  }
}
.p-solutions-nayami .-L {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-L {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-solutions-nayami .-R {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R {
    width: 45%;
  }
}
.p-solutions-nayami .-R img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R img {
    width: 70%;
  }
}
.p-solutions-nayami .-R i {
  fill: #fff;
  width: 33px;
  height: auto;
  aspect-ratio: 1/1;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #005AAA;
  border: 1px solid #005AAA;
  border-radius: 0.75rem;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: -3%;
  bottom: -40px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R i {
    width: 44px;
  }
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R i {
    right: clamp(40px, 0vw + 40px, 40px);
    bottom: clamp(40px, 0vw + 40px, 40px);
  }
}
.p-solutions-nayami .-R i svg {
  width: 15px;
  height: auto;
}
.p-solutions-nayami .-R i {
  overflow: hidden;
  width: 33px;
  line-height: 1;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R i {
    width: 44px;
  }
}
.p-solutions-nayami .-R i:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  width: 33px;
  height: 33px;
  background: url(../img/common/arrowW.svg) no-repeat 50% 50%/13px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R i:before {
    width: 44px;
    height: 44px;
  }
}
.p-solutions-nayami .-R i:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  width: 33px;
  height: 33px;
  background: url(../img/common/arrowB.svg) no-repeat 50% 50%/13px;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami .-R i:after {
    width: 44px;
    height: 44px;
  }
}
.p-solutions-nayami .-R i:after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.p-solutions-nayami h2 {
  padding-left: clamp(32px, 1.22vw + 28.1px, 48px);
  position: relative;
  margin-bottom: clamp(14px, 0.76vw + 11.6px, 24px);
}
.p-solutions-nayami h2 span {
  color: #005AAA;
  font-size: clamp(15px, 0.38vw + 13.8px, 20px);
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.p-solutions-nayami h2::before {
  content: "";
  display: block;
  width: clamp(18px, 0.92vw + 15px, 30px);
  height: auto;
  aspect-ratio: 30/24;
  background: url(../img/common/icon_speech.svg) no-repeat 0 0/cover;
  position: absolute;
  left: 0;
  top: 60%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami h2::before {
    top: 50%;
  }
}
.p-solutions-nayami h3 {
  font-size: clamp(24px, 0.76vw + 21.6px, 34px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.p-solutions-nayami h3 br {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-solutions-nayami h3 br {
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-solutions-nayami:hover {
    cursor: pointer;
    border: 1px solid #005AAA;
  }
  .p-solutions-nayami:hover i {
    fill: #005AAA;
    background: #fff;
  }
  .p-solutions-nayami:hover i:before {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .p-solutions-nayami:hover i:after {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  @-webkit-keyframes transformLeftRight {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes transformLeftRight {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @-webkit-keyframes transformRightLeft {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  @keyframes transformRightLeft {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
}
.p-solutions-nayami a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.swiper {
  width: 86% !important;
  margin: 0 0 0 7% !important;
}
@media screen and (min-width: 1080px) {
  .swiper {
    margin: 0;
    padding-left: 11%;
    width: auto;
  }
}

.p-home-projectSlide .swiper-slide .-overflow {
  overflow-x: unset;
}

.p-home-projectSlide .swiper-slide .-overflow::after {
  display: none;
}

.p-home-projectSlide .swiper-slide .-tag {
  width: 100%;
}

.p-home-projectSlide .swiper {
  width: 82%;
  margin: 0 0 0 7%;
}
@media screen and (min-width: 1080px) {
  .p-home-projectSlide .swiper {
    margin: 0 !important;
    width: 100% !important;
    padding-left: 11%;
    width: auto;
  }
}

.p-home-projectSlide {
  padding-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .p-home-projectSlide {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=solutions.css.map */