@charset "UTF-8";
/*
  /rakurakucloud/jidootai/asset/css/object/module/m-solution-scene.css
  実現できること用CSS
*/
.m-solution-scene-button{
  @media screen and (max-width: 840px) {
    max-width: calc(100% - 70px);
    margin-inline: auto;
  }
}
.m-solution-scene-button-list {
  display: flex;
  margin: 0 0 60px;
  gap: 30px;
  @media screen and (max-width: 840px) {
    flex-direction: column;
    gap: 5px;
    padding: 0 0 10px;
    margin: 0 0 40px;
  }
}
.m-solution-scene-button-item {
  display: block;
  flex: 1;
  position: relative;
  background-color: var(--white);
  color: var(--rjidootai-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 25px 10px 35px;
  transition: color 0.3s;
  &::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 20px;
    width: 10px;
    height: 10px;
    left: 50%;
    margin: auto;
    transform: translateX(-50%) rotate(45deg);
    transition: all 0.3s ease;
    border-right: 2px solid var(--rjidootai-primary);
    border-bottom: 2px solid var(--rjidootai-primary);
  }
  &:hover{
    &::after {
    transform: translate(-50%, 50%) rotate(45deg);
    }
  }
  @media screen and (max-width: 840px) {
    padding: 10px 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: color 0.3s, background-color 0.3s;
    &::after {
      width: 8px;
      height: 8px;
      bottom: 10px;
    }
    &:hover{
      &::after {
      transform: translate(-50%, 50%) rotate(45deg);
      }
    }
  }
}
.m-solution-scene-detail{
  position: relative;
}
.m-solution-scene-detail-title{
  position: absolute;
  color: var(--rjidootai-primary);
  background-color: var(--gray-bg-02);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  top: 0;
  left: 50%;
  max-width: 400px;
  width: 100%;
  transform: translate(-50%, -50%);
  @media screen and (max-width: 840px) {
    font-size: 16px;
    padding: 8px 5px;
    max-width: calc(100% - 60px);
  }
}
.m-solution-scene-detail {
  background-color: var(--gray-bg-02);
  border-radius: 10px;
  &:not(:last-child){
    margin: 0 0 60px;
  }
  @media screen and (max-width: 840px) {
    &:not(:last-child){
      margin: 0 0 40px;
    }
  }
}
.m-solution-scene-detail-item {
  border-radius: 10px;
  padding: 50px 70px 0px;
  @media screen and (max-width: 840px) {
    padding: 30px 20px 20px;
  }
}
.m-solution-scene-detail__wrap {
  display: grid;
  grid-template-columns: minmax(auto, 510px) 1fr;
  gap: 0 30px;
  text-align: left;
  grid-template-areas:         
  "a b"        
  "a c";      
  @media screen and (max-width: 1024px) {
    grid-template-columns: 1fr;
    grid-template-areas:         
    "b"        
    "a"
    "c";
    gap: 5px;
  }
}
.m-solution-scene-detail__subtitle{
  display: inline-block;
  padding: 3px 10px;
  color: var(--white);
  background-color: var(--rjidootai-primary);
  font-weight: bold;
  border-radius: 5px;
  margin: 0 0 10px;
}
.m-solution-scene-detail-heading {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  @media screen and (max-width: 840px) {
    display: block;
    font-size: 20px;
  }
}
.m-solution-scene-detail__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  @media screen and (max-width: 840px) {
    font-size: 14px;
    text-align: left;
  }
}
.m-solution-scene-detail__strong {
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  @media screen and (max-width: 840px) {
    font-size: 24px;
  }
}
.m-solution-scene-detail__strong-em {
  color: var(--rjidootai-primary);
}
.m-solution-scene-detail__strong-large {
  font-size: 85px;
  @media screen and (max-width: 840px) {
    font-size: 40px;
  }
}
.m-solution-scene-detail__supplement {
  margin-top: 20px;
  font-size: 12px;
  @media screen and (max-width: 840px) {
    font-size: 11px;
  }
}
.m-solution-scene-detail__image-wrap {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 20px;
  grid-area: a;
}
.m-solution-scene-detail__image.m-solution-scene-detail__image--sp {
  display: none;
}
.m-solution-scene-detail__texts{
  grid-area: b;
  align-self: center;
}
.c-point-box{
  grid-area: c;
}
/* slick */
/* benefit */
.m-solution-scene {
  position: relative;
}
.m-solution-scene-detail__autoplay {
  position: relative;
  bottom: 30px;
  left: -100px;
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: 840px) {
    padding: 0;
    bottom: 20px;
  }
}
/* autoplay */
.js-slick-autoplay button {
  width: 46px;
  height: 46px;
  border: none;
  @media screen and (max-width: 840px) {
    width: 36px;
    height: 36px;
  }
}
.js-slick-autoplay-button {
  background: url(/rakurakucloud/jidootai/asset/image/common/icon/icon_play-primary_100-100.svg)
    no-repeat center center;
  background-size: cover;
}
.js-slick-autoplay-button.js-slick-autoplay-button--active {
  background: url(/rakurakucloud/jidootai/asset/image/common/icon/icon_pause-gray.svg)
    no-repeat center center;
  background-size: cover;
}
.m-solution-scene-button .slick-track {
  transform: translate3d(0, 0, 0) !important;
}
.js-slick-arrow {
  position: absolute;
  z-index: 10;
  &::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 30px;
    background-color: var(--rjidootai-primary);
  }
  &::before {
    position: absolute;
    content: "";
    border: none;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    z-index: 10;
    transform: rotate(-135deg);
  }
  @media screen and (max-width: 840px) {
    width: 30px;
    height: 30px;
    &::after {
      width: 30px;
      height: 30px;
    }
    &::before {
      width: 8px;
      height: 8px;
    }  
  }
}
.js-slick-arrow.js-slick-arrow--next {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  &::before {
    top: 15px;
    right: 18px;
  }
  &::after {
    top: 0;
    right: 0;
  }
  @media screen and (max-width: 840px) {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    &::before {
      top: 11px;
      right: 12px;
    }
  }
}
.js-slick-arrow.js-slick-arrow--prev {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  &::before {
    top: 15px;
    left: 18px;
    transform: rotate(45deg);
  }
  &::after {
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 840px) {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    &::before {
      top: 11px;
      left: 12px;
    }
  }
}
/* .slick-dotted.slick-slider{
  @media screen and (max-width: 840px) {
    margin: 0px;
  }
} */
