@charset "UTF-8";
/*
* title contents common setting start
*/
.title-contents {
  /*background-image: url(../image/caontents-title-bg.svg);*/
  background-position-y: bottom;
  background-repeat: repeat-x;
  /* TAB setting start */
  /* SP setting start */
}
.title-contents .inner-box {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 80px;
}
.title-contents .inner-box .title-area, .title-contents .inner-box .title-text {
  position: relative;
  z-index: 100;
}
.title-contents .inner-box .title-area {
  padding: 60px 0;
}
.title-contents .inner-box .title-area h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  margin-bottom: 40px;
  line-height: 60px;
}
.title-contents .inner-box .title-area h2 .sp {
  display: block;
}
.title-contents .inner-box .title-area h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  padding-bottom: 20px;
  /*color: color.$sky-blue;
  background-image: url(../image/contets-title-bar.svg);*/
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: left;
}
.title-contents .inner-box .title-text {
  width: 800px;
  background-color: white;
  border-radius: 30px;
  padding: 30px;
}
.title-contents .inner-box .title-text p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
}
.title-contents .inner-box .image-area {
  position: absolute;
  right: 0;
  top: 0;
  height: 400px;
  z-index: 50;
}
.title-contents .inner-box .image-area img {
  width: 100%;
}
.title-contents .inner-box .pc {
  display: block;
}
.title-contents .inner-box .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .title-contents {
    padding: 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .title-contents .inner-box {
    width: 100%;
    padding: 0;
  }
  .title-contents .inner-box .title-area {
    padding: 30px 0;
    display: table;
    width: 100%;
  }
  .title-contents .inner-box .title-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .title-contents .inner-box .title-area h3 {
    font-size: 18px;
    padding-bottom: 20px;
    display: table-header-group;
    background-image: unset !important;
    height: 30px;
  }
  .title-contents .inner-box .title-text {
    width: 80%;
    padding: 3%;
  }
  .title-contents .inner-box .title-text p {
    font-size: 16px;
  }
  .title-contents .inner-box .image-area {
    width: 64%;
  }
}
@media screen and (max-width: 768px) {
  .title-contents {
    padding: 4% 0;
    padding-bottom: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .title-contents .inner-box .title-area {
    width: 100%;
    text-align: center;
    display: table;
  }
  .title-contents .inner-box .title-area h2 {
    display: table-footer-group;
  }
  .title-contents .inner-box .title-area h2 .sp {
    display: none;
  }
  .title-contents .inner-box .title-text {
    width: 92%;
    margin: 0 4%;
    /*margin-top: 130px;*/
    padding: 6% 4%;
  }
  .title-contents .inner-box .title-text-bg {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top;
  }
  .title-contents .inner-box .image-area {
    width: 100%;
    height: unset;
    top: unset;
  }
  .title-contents .inner-box .image-area img {
    width: 100%;
  }
  .title-contents .inner-box .pc {
    display: none;
  }
  .title-contents .inner-box .sp {
    display: block;
  }
} /*
* title contents common setting start
*/
.title-contents {
  background-image: url(../image/service-title-bg.svg);
  background-repeat: repeat-x;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  /* SP setting start */
}
.title-contents .inner-box .title-area h2 {
  text-shadow: 3px 0px 10px white;
}
.title-contents .inner-box .title-area h2 br {
  display: none;
}
.title-contents .inner-box .title-area h3 {
  margin-top: 20px;
  color: #2DB0E3;
  background-image: url(../image/contets-title-bar.svg);
}
.title-contents .inner-box .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .title-contents {
    display: grid; /* Gridレイアウトを有効化 */
    grid-template-rows: auto 1fr; /* 画像領域とテキスト領域の高さを自動とフレキシブルに設定 */
    transition-property: all;
    transition-duration: 0.3s;
  }
  .title-contents .inner-box {
    grid-row: 2; /* inner-boxを2行目に配置 */
  }
  .title-contents .inner-box .title-area {
    padding-bottom: 0;
  }
  .title-contents .inner-box .title-area h2 {
    display: block;
    line-height: 42px;
  }
  .title-contents .inner-box .title-area h2 br {
    display: block;
  }
  .title-contents .inner-box .title-area p {
    display: table-footer-group;
  }
  .title-contents .inner-box .title-text-bg {
    position: relative;
    bottom: 80px;
  }
  .title-contents .inner-box .image-area {
    grid-row: 1;
    width: 100%;
    height: auto;
    position: relative;
    top: 50px;
  }
  .title-contents .inner-box .image-area img {
    width: 100%;
  }
}

.title-contents, .sereis {
  background-color: #F9F8F4;
  background-image: unset;
}

.title-contents {
  /* SP setting start */
}
.title-contents .inner-box {
  padding-bottom: 0;
}
.title-contents .inner-box .title-area {
  display: table;
}
.title-contents .inner-box .title-area h2 {
  margin-top: 20px;
}
.title-contents .inner-box .title-area h2 span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F58B31;
}
.title-contents .inner-box .title-area h3 {
  color: #F58B31;
  background-image: none;
  display: table-header-group;
}
.title-contents .inner-box br {
  display: none;
}
@media screen and (max-width: 768px) {
  .title-contents {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .title-contents .inner-box .title-area h2 {
    margin-top: 0px;
  }
  .title-contents .inner-box br {
    display: block;
  }
}

.intro {
  background-color: white;
  padding: 40px;
  box-shadow: 0px 5px 5px #E0E0E0;
  border-radius: 30px;
  position: relative;
  z-index: 200;
  margin-top: -100px;
  top: 100px;
  /* tab setting start */
  /* SP setting start */
}
.intro .inner-box {
  width: 100%;
}
.intro .inner-box .img-box {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}
.intro .inner-box .img-box img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.intro .inner-box section {
  width: 970px;
  margin: 70px auto;
  margin-bottom: 0;
  display: flex;
}
.intro .inner-box section h3 {
  margin-right: 150px;
}
.intro .inner-box section p {
  font-size: 21px;
  line-height: 48px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.intro .inner-box section span {
  color: #F58B31;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.intro .inner-box section br {
  display: block;
}
.intro .inner-box section .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .intro {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .intro .inner-box section {
    width: 100%;
  }
  .intro .inner-box section .sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    margin: 0 4%;
    margin-top: -70px;
    padding: 8% 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .intro .inner-box {
    border-radius: 15px;
  }
  .intro .inner-box .img-box {
    height: 350px;
    border-radius: 15px;
  }
  .intro .inner-box section {
    display: block;
    text-align: center;
    margin-top: 40px;
  }
  .intro .inner-box section h3 {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .intro .inner-box section p {
    font-size: 18px;
    line-height: 32px;
  }
  .intro .inner-box section .sp {
    display: block;
  }
}

.service {
  position: relative;
  z-index: 100;
  margin-bottom: 80px;
  /* tab setting start */
}
.service .inner-box {
  width: 1280px;
  margin: 0 auto;
  margin-top: 180px;
}
.service .inner-box h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #E0E0E0;
}
.service .inner-box h2::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url(../image/service-factory-arrow.svg);
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 0 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service .inner-box {
    width: 100%;
    margin: 0 auto;
    margin-top: 140px;
  }
  .service .inner-box h2 {
    font-size: 24px;
  }
  .service .inner-box h2::before {
    top: 30%;
  }
}
.service .service-wrap {
  margin-top: 40px;
  display: flex;
  position: relative;
  /* tab setting start */
}
.service .service-wrap .title-area {
  width: 450px;
  flex: none;
  margin-right: 160px;
  top: 150px; /* 150pxのマージンを追加 */ /* Safari */
  position: sticky;
  align-self: flex-start; /* 高さが合うように調整 */
}
.service .service-wrap .title-area .title-content {
  height: 100%; /* 高さを100%に設定 */
}
.service .service-wrap .title-area h3 {
  font-size: 32px;
  line-height: 42px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F58B31;
  margin-bottom: 20px;
}
.service .service-wrap .title-area h3 br {
  display: none;
}
.service .service-wrap .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.service .service-wrap .detaile-area {
  width: auto;
}
.service .service-wrap .detaile-area .img-area {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 40px;
}
.service .service-wrap .detaile-area .img-area img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service .service-wrap .detaile-area .detaile-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #E0E0E0;
}
.service .service-wrap .detaile-area .detaile-title h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  margin-bottom: 40px;
}
.service .service-wrap .detaile-area .detaile-title h3 span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F58B31;
}
.service .service-wrap .detaile-area .detaile-title h3 br {
  display: none;
}
.service .service-wrap .detaile-area .detaile-title .green, .service .service-wrap .detaile-area .detaile-title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
}
.service .service-wrap .detaile-area .detaile-title .green {
  font-weight: 800;
  color: #00879A;
  margin-bottom: 20px;
}
.service .service-wrap .detaile-area .detaile-title p {
  font-weight: 400;
  line-height: 24px;
}
.service .service-wrap .detaile-area .detaile-list ol li {
  background-color: #F4F4F4;
  margin-bottom: 20px;
  padding: 40px 20px;
  border-radius: 30px;
}
.service .service-wrap .detaile-area .detaile-list ol li h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 42px;
  color: #00879A;
  margin-bottom: 10px;
}
.service .service-wrap .detaile-area .detaile-list ol li p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 1024px) {
  .service .service-wrap {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service .service-wrap .title-area {
    width: 100%;
    display: block;
    margin-right: 0px;
    margin-bottom: 40px;
    position: unset;
  }
  .service .service-wrap .title-area h3 {
    font-size: 24px;
    line-height: 38px;
  }
  .service .service-wrap .title-area p {
    font-size: 18px;
    line-height: 28px;
  }
  .service .service-wrap .detaile-area {
    width: auto;
  }
  .service .service-wrap .detaile-area .img-area {
    height: 160px;
    border-radius: 15px;
  }
  .service .service-wrap .detaile-area .detaile-title h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .service .service-wrap .detaile-area .detaile-title h3 br {
    display: block;
  }
  .service .service-wrap .detaile-area .detaile-title .green {
    line-height: 24px;
  }
  .service .service-wrap .detaile-area .detaile-list ol li {
    border-radius: 15px;
    padding: 20px;
  }
  .service .service-wrap .detaile-area .detaile-list ol li h4 {
    font-size: 21px;
  }
}

.series {
  background-color: #F9F8F4;
  padding: 80px 0;
  /* tab setting start */
  /* tab setting start */
  /* sp setting start */
}
.series .inner-box, .series .series-wrap {
  width: 1280px;
  margin: 0 auto;
}
.series .inner-box {
  width: 1280px;
  margin-bottom: 80px;
}
.series .inner-box h2 {
  width: 900px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 54px;
  padding-left: 130px;
  position: relative;
  margin: 0 auto;
}
.series .inner-box h2::before {
  content: "";
  width: 110px;
  height: 90px;
  background-image: url(../image/service-factory-mamoru-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.series .inner-box h2 span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #F58B31;
}
.series .inner-box h2 br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .series {
    padding: 40px 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .series .inner-box, .series .series-wrap {
    width: 100%;
  }
  .series .inner-box {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .series .inner-box h2 {
    width: unset;
    font-size: 28px;
    line-height: 42px;
    padding-left: 0;
    position: relative;
    margin: 0 auto;
    padding-top: 110px;
  }
  .series .inner-box h2::before {
    content: "";
    width: 110px;
    height: 90px;
    background-image: url(../image/service-factory-mamoru-logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translatex(-50%);
  }
  .series .inner-box h2 span {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #F58B31;
  }
  .series .inner-box h2 br {
    display: block;
  }
}
.series .series-wrap ol {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.series .series-wrap ol li {
  background-color: white;
  padding: 40px;
  border-radius: 30px;
}
.series .series-wrap ol .title-area {
  border-bottom: solid 1px #E0E0E0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.series .series-wrap ol .title-area h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #F58B31;
  padding-left: 50px;
  margin-bottom: 15px;
  position: relative;
}
.series .series-wrap ol .title-area h3:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 35px;
  background-image: url(../image/service-factory-mamoru-logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.series .series-wrap ol .title-area h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 35px;
}
.series .series-wrap ol .title-area h5 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 30px;
}
.series .series-wrap ol .service-area {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.series .series-wrap ol .service-area .img-area {
  text-align: center;
}
.series .series-wrap ol .service-area .img-area img {
  width: 80%;
}
.series .series-wrap ol .service-area .img-area .small {
  width: 50%;
}
.series .series-wrap ol .service-area h5 {
  text-align: center;
  width: 100%;
  padding: 15px 0;
  background-color: #F58B31;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 18px;
  border-radius: 25px;
  margin-bottom: 25px;
}
.series .series-wrap ol .service-area .contents-wrap {
  border: solid 1px #E0E0E0;
  border-radius: 15px;
  height: 300px;
  padding: 20px 10px;
}
.series .series-wrap ol .service-area .contents-wrap dl {
  margin-bottom: 10px;
}
.series .series-wrap ol .service-area .contents-wrap dt {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.series .series-wrap ol .service-area .contents-wrap .border {
  border-bottom: solid 1px #E0E0E0;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.series .series-wrap ol .service-area .contents-wrap dd {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .series {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .series .series-wrap ol .title-area h4 {
    font-size: 24px;
  }
  .series .series-wrap ol .title-area h5 {
    font-size: 18px;
  }
  .series .series-wrap ol .service-area {
    display: block;
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .series .series-wrap ol .service-area .right-contents {
    margin-top: 30px;
  }
  .series .series-wrap ol .service-area .img-area {
    text-align: center;
  }
  .series .series-wrap ol .service-area .img-area img {
    width: 80%;
  }
  .series .series-wrap ol .service-area .img-area .small {
    width: 50%;
  }
  .series .series-wrap ol .service-area .contents-wrap {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .series {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .series .series-wrap ol {
    display: block;
    gap: unset;
    grid-template-columns: unset;
  }
  .series .series-wrap ol li {
    margin-bottom: 30px;
  }
}

.case-study {
  padding: 80px 0;
  border-bottom: solid 1px #E0E0E0;
  /* tab setting start */
}
@media screen and (max-width: 1024px) {
  .case-study {
    padding: 0 4%;
    padding-top: 40px;
    padding-bottom: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.case-study .inner-box {
  width: 1280px;
  margin: 0 auto;
  /* tab setting start */
}
.case-study .inner-box h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #E0E0E0;
}
.case-study .inner-box h2::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url(../image/service-factory-arrow.svg);
  background-repeat: no-repeat;
  left: 0;
  top: 40%;
  transform: translateY(-40%);
}
@media screen and (max-width: 1024px) {
  .case-study .inner-box {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study .inner-box h2 {
    font-size: 24px;
  }
}
.case-study ol {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0;
  /* tab setting start */
}
@media screen and (max-width: 1024px) {
  .case-study ol {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.case-study ol li {
  background-color: #F9F8F4;
  border-radius: 30px;
  padding: 30px;
  /* tab setting start */
}
@media screen and (max-width: 1024px) {
  .case-study ol li {
    margin-bottom: 30px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol li:last-child {
    margin-bottom: 0;
  }
}
.case-study ol .title-area {
  margin-bottom: 20px;
  /* tab setting start */
}
.case-study ol .title-area h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 42px;
  border-bottom: solid 1px #E0E0E0;
  margin-bottom: 20px;
}
.case-study ol .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .case-study ol .title-area {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol .title-area h3 {
    font-size: 18px;
  }
  .case-study ol .title-area p {
    font-size: 16px;
  }
}
.case-study ol .before {
  margin-top: 20px;
  text-align: center;
  /* tab setting start */
  /* sp setting start */
}
.case-study ol .before h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 42px;
  color: #2DB0E3;
  text-align: left;
}
.case-study ol .before img {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .case-study ol .before {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol .before h3 {
    font-size: 18px;
  }
  .case-study ol .before p {
    font-size: 16px;
  }
  .case-study ol .before img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .case-study ol .before {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol .before img {
    width: 100%;
  }
}
.case-study ol .after {
  margin-top: 20px;
  text-align: center;
  /* tab setting start */
  /* sp setting start */
}
.case-study ol .after h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 42px;
  text-align: left;
  color: #F58B31;
}
.case-study ol .after img {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .case-study ol .after {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol .after h3 {
    font-size: 18px;
  }
  .case-study ol .after p {
    font-size: 16px;
  }
  .case-study ol .after img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .case-study ol .after {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study ol .after img {
    width: 100%;
  }
}

.cta-area {
  width: 480px;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
  /* sp setting start */
}
.cta-area a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  display: block;
  font-size: 21px;
  line-height: 32px;
  background-color: #2DB0E3;
  padding: 20px 0;
  border-radius: 50px;
  background-image: url(../image/pro-cta-btn-icon.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position-x: 96%;
  background-position-y: 50%;
  margin-bottom: 20px;
}
.cta-area a br {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta-area {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .cta-area a {
    font-size: 18px;
    line-height: 24px;
  }
  .cta-area a br {
    display: block;
  }
}
.cta-area p {
  font-size: 16px;
  line-height: 24px;
}