@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%;
  }
}

@media screen and (max-width: 1024px) {
  .title-contents {
    background-size: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.service-contents {
  padding: 0;
  background-color: #E6EEF2;
  position: relative;
  /* TAB setting start */
  /* SP setting start */
}
.service-contents .service-contents-bg {
  background-image: url(../image/service-contents-bg.svg);
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 80px;
}
.service-contents .inner-wrap {
  width: 1280px;
  margin: 0 auto;
  background-color: white;
  border-radius: 80px;
  padding: 80px;
  z-index: 500;
  position: relative;
}
.service-contents .inner-wrap .title-area {
  text-align: center;
}
.service-contents .inner-wrap .title-area h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 54px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.service-contents .inner-wrap .title-area h2 br {
  display: none;
}
.service-contents .inner-wrap .title-area h2 span {
  color: #2DB0E3;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.service-contents .inner-wrap .title-area h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #2DB0E3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.service-contents .inner-wrap .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 32px;
}
.service-contents .inner-wrap .title-area p br {
  display: none;
}
.service-contents .service-contents-list .page-nav {
  background-color: #F9F8F4;
  border-radius: 30px;
  padding: 40px;
}
.service-contents .service-contents-list .page-nav ol {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.service-contents .service-contents-list .page-nav ol li {
  padding-right: 50px;
}
.service-contents .service-contents-list .page-nav ol li a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 42px;
  color: #101010;
  position: relative;
}
.service-contents .service-contents-list .page-nav ol li a::after {
  content: "";
  width: 20px;
  height: 15px;
  background-image: url(../image/service-nav-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 30%;
  right: -25px;
}
.service-contents .service-contents-list .services {
  margin-top: 40px;
}
.service-contents .service-contents-list .services ol li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.service-contents .service-contents-list .services ol li:last-child {
  margin-bottom: 0;
}
.service-contents .service-contents-list .services ol li .img-area img {
  width: 100%;
  border-radius: 30px;
}
.service-contents .service-contents-list .services ol li .title-area {
  text-align: left;
}
.service-contents .service-contents-list .services ol li .title-area h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
.service-contents .service-contents-list .services ol li .title-area h3:before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../image/service-archive-title-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 30%;
}
.service-contents .service-contents-list .services ol li .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
.service-contents .service-contents-list .services ol li .title-area .cta {
  width: 390px;
  text-align: center;
  margin-top: 40px;
}
.service-contents .service-contents-list .services ol li .title-area .cta 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%;
}
.service-contents .twin {
  margin-top: 40px;
}
.service-contents .twin .services ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-contents .twin .services ol li {
  display: block;
}
.service-contents .twin .services ol li .title-area {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .service-contents {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-contents .service-contents-bg {
    padding: 0 4%;
    background-attachment: scroll;
    background-size: cover;
    padding-bottom: 40px;
  }
  .service-contents .inner-wrap {
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 30px;
    padding: 8% 4%;
  }
  .service-contents .inner-wrap .title-area h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .service-contents .inner-wrap .title-area h2 br {
    display: block;
  }
  .service-contents .inner-wrap .title-area h2 span {
    color: #2DB0E3;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .service-contents .inner-wrap .title-area p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
  }
  .service-contents .inner-wrap .title-area p br {
    display: none;
  }
  .service-contents .service-contents-list .page-nav ol {
    width: 100%;
  }
  .service-contents .service-contents-list .page-nav ol li {
    padding-right: 50px;
  }
  .service-contents .service-contents-list .page-nav ol li a {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 42px;
    color: #101010;
    position: relative;
  }
  .service-contents .service-contents-list .page-nav ol li a::after {
    content: "";
    width: 20px;
    height: 15px;
    background-image: url(../image/service-nav-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 30%;
    right: -25px;
  }
  .service-contents .service-contents-list .services {
    margin-top: 40px;
  }
  .service-contents .service-contents-list .services ol li .title-area h3 {
    font-size: 24px;
  }
  .service-contents .service-contents-list .services ol li .title-area h3:before {
    content: "";
    width: 16px;
    height: 16px;
  }
  .service-contents .service-contents-list .services ol li .title-area p {
    font-size: 16px;
  }
  .service-contents .service-contents-list .services ol li .title-area .cta {
    width: 100%;
  }
  .service-contents .service-contents-list .services ol li .title-area .cta a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .service-contents {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-contents .service-contents-bg {
    padding: 0 4%;
    padding-bottom: 40px;
    padding-top: 0;
  }
  .service-contents .inner-wrap {
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 30px;
  }
  .service-contents .inner-wrap .title-area h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .service-contents .inner-wrap .title-area h2 span {
    color: #2DB0E3;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .service-contents .inner-wrap .title-area p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
  }
  .service-contents .inner-wrap .title-area p br {
    display: block;
  }
  .service-contents .service-contents-list .page-nav {
    padding: 4%;
  }
  .service-contents .service-contents-list .page-nav ol {
    width: 100%;
  }
  .service-contents .service-contents-list .page-nav ol li {
    padding-right: 50px;
  }
  .service-contents .service-contents-list .page-nav ol li a {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 42px;
    color: #101010;
    position: relative;
  }
  .service-contents .service-contents-list .page-nav ol li a::after {
    content: "";
    width: 20px;
    height: 15px;
    background-image: url(../image/service-nav-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 30%;
    right: -25px;
  }
  .service-contents .service-contents-list .services {
    margin-top: 40px;
  }
  .service-contents .service-contents-list .services ol li {
    display: block;
    margin-bottom: 0;
  }
  .service-contents .service-contents-list .services ol li .img-area {
    width: 100%;
    position: relative;
  }
  .service-contents .service-contents-list .services ol li .img-area img {
    border-radius: 15px 15px 0 0;
  }
  .service-contents .service-contents-list .services ol li .title-area {
    position: relative;
    width: 94%;
    margin: 0 auto;
    background-color: white;
    z-index: 200;
    top: -40px;
    padding: 15px;
    border-radius: 15px;
    border-top: solid 15px #2DB0E3;
    box-shadow: 0px 3px 10px #E0E0E0;
  }
  .service-contents .service-contents-list .services ol li .title-area h3 {
    font-size: 24px;
  }
  .service-contents .service-contents-list .services ol li .title-area h3:before {
    content: "";
    width: 16px;
    height: 16px;
  }
  .service-contents .service-contents-list .services ol li .title-area p {
    font-size: 16px;
  }
  .service-contents .service-contents-list .services ol li .title-area .cta {
    width: 100%;
  }
  .service-contents .service-contents-list .services ol li .title-area .cta a {
    font-size: 18px;
  }
  .service-contents .twin {
    margin-top: 40px;
  }
  .service-contents .twin .services ol {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .service-contents .twin .services ol li {
    display: block;
  }
  .service-contents .twin .services ol li .title-area {
    margin-top: 0;
  }
}