@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;
}
.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 ol {
  margin: 60px 0;
  display: grid;
  gap: 110px;
  grid-template-columns: repeat(3, 1fr);
}
.service-contents .service-contents-list ol section {
  text-align: center;
}
.service-contents .service-contents-list ol section h3 {
  margin: 20px 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 36px;
}
.service-contents .service-contents-list ol section p {
  text-align: left;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
.service-contents .cta-btn {
  width: 390px;
  text-align: center;
  margin: 0 auto;
}
.service-contents .cta-btn 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%;
}
@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;
  }
  .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: 24px;
    line-height: 36px;
  }
  .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 ol {
    width: 100%;
    margin: 60px 0;
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(3, 1fr);
  }
  .service-contents .service-contents-list ol section {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .service-contents .service-contents-list ol section img {
    width: 100%;
  }
}
@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: 24px;
    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 ol {
    width: 100%;
    margin: 60px 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .service-contents .service-contents-list ol section {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .service-contents .service-contents-list ol section img {
    width: 100%;
  }
  .service-contents .cta-btn {
    width: 100%;
  }
  .service-contents .cta-btn a {
    font-size: 18px;
  }
}

/*
* secound ivory
*/
.ivory {
  background-color: #F9F8F4;
  /* TAB setting start */
  /* sp setting start */
}
.ivory .service-contents-bg {
  background-image: url(../image/service-contents-ivory-bg.svg);
  padding-top: 80px;
}
.ivory .service-contents-list ol {
  margin-top: 40px;
  display: block;
}
.ivory .service-contents-list ol li {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: dotted 1px #6C6C6C;
}
.ivory .service-contents-list ol li section {
  text-align: left;
  padding-left: 40px;
}
.ivory .service-contents-list ol li section h3 {
  padding-left: 120px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 42px;
  position: relative;
}
.ivory .service-contents-list ol li section h3::before {
  content: "";
  width: 85px;
  height: 85px;
  position: absolute;
  left: 0;
  top: 10%;
  background-image: url(../image/service-waterproof-icon.svg);
  background-repeat: no-repeat;
}
.ivory .service-contents-list ol li section h3 br {
  display: block;
}
.ivory .service-contents-list ol li:last-child section h3 {
  padding-top: 15px;
}
@media screen and (max-width: 1024px) {
  .ivory {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .ivory .service-contents-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ivory .service-contents-list ol li section {
    text-align: left;
    padding-left: 10px;
  }
  .ivory .service-contents-list ol li section h3 {
    padding-left: 80px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
    position: relative;
  }
  .ivory .service-contents-list ol li section h3::before {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: -10px;
    background-image: url(../image/service-waterproof-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .ivory .service-contents-list ol li:last-child section h3 {
    padding-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .ivory {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .ivory .service-contents-bg {
    background-attachment: scroll;
    background-size: cover;
  }
  .ivory .service-contents-list ol li section {
    text-align: left;
    padding-left: 0;
  }
  .ivory .service-contents-list ol li section h3 {
    padding-left: 80px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
    position: relative;
  }
  .ivory .service-contents-list ol li section h3::before {
    top: 0;
  }
  .ivory .service-contents-list ol li section h3 br {
    display: none;
  }
}

.service-strenghts {
  margin-top: 80px;
  text-align: center;
}
.service-strenghts h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 42px;
  color: #2DB0E3;
  position: relative;
  z-index: 5;
  margin-bottom: 40px;
}
.service-strenghts h3 span {
  color: #101010;
  position: relative;
}
.service-strenghts h3 span::after {
  width: 100%;
  content: "";
  border-bottom: solid 20px #FFE200;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.service-strenghts h3 span br {
  display: none;
}
.service-strenghts ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-strenghts ol li a {
  display: block;
  background-size: cover;
  height: 290px;
  border-radius: 15px;
  position: relative;
}
.service-strenghts ol li a h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0;
  font-size: 42px;
  text-shadow: 3px 3px 3px #101010;
  width: 100%;
}
.service-strenghts ol li a h4 br {
  display: none;
}
.service-strenghts ol li:nth-child(1) a {
  background-image: url(../image/strengths-banner-01.webp);
}
.service-strenghts ol li:nth-child(2) a {
  background-image: url(../image/strengths-banner-02.webp);
}
.service-strenghts ol li:nth-child(3) a {
  background-image: url(../image/strengths-banner-03.webp);
}
.service-strenghts ol li:nth-child(4) a {
  background-image: url(../image/strengths-banner-04.webp);
}
@media screen and (max-width: 1024px) {
  .service-strenghts {
    margin-top: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-strenghts h3 {
    font-size: 23px;
    line-height: 28px;
  }
  .service-strenghts h3 span::after {
    left: 45%;
    transform: translateX(-50%);
  }
  .service-strenghts h3 span br {
    display: block;
  }
  .service-strenghts ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .service-strenghts ol li a {
    display: block;
    background-size: cover;
    height: 200px;
    border-radius: 15px;
    position: relative;
  }
  .service-strenghts ol li a h4 {
    font-size: 31px;
    line-height: 42px;
  }
  .service-strenghts ol li a h4 br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .service-strenghts {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-strenghts h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .service-strenghts h3 span::after {
    left: 45%;
    transform: translateX(-50%);
  }
  .service-strenghts h3 span br {
    display: block;
  }
  .service-strenghts ol {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.service-ceo {
  background-color: #00879A;
  border-radius: 30px;
  margin-top: 40px;
  padding: 60px;
}
.service-ceo .service-ceo-wrap {
  display: flex;
  flex-wrap: wrap;
}
.service-ceo .img-area {
  flex: 0;
  margin-right: 30px;
}
.service-ceo .ceo-message {
  flex: 1;
  color: white;
}
.service-ceo .ceo-message h3 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 47px;
  margin-bottom: 30px;
  position: relative;
}
.service-ceo .ceo-message h3::before {
  content: "";
  width: 25%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 48%;
}
.service-ceo .ceo-message h3::after {
  content: "";
  width: 25%;
  height: 2px;
  background-color: white;
  position: absolute;
  right: 0;
  top: 48%;
}
.service-ceo .ceo-message h3 span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #FFE200;
}
.service-ceo .ceo-message p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 32px;
}
.service-ceo .ceo-message .cta {
  width: 390px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
.service-ceo .ceo-message .cta a {
  color: white;
  display: block;
  font-size: 21px;
  line-height: 32px;
  border: solid 2px white;
  padding: 20px 0;
  border-radius: 50px;
  background-image: url(../image/cta-green.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position-x: 96%;
  background-position-y: 50%;
}
@media screen and (max-width: 1024px) {
  .service-ceo {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-ceo .img-area {
    flex: 0;
    margin-right: 30px;
  }
  .service-ceo .ceo-message h3::before {
    display: none;
  }
  .service-ceo .ceo-message h3::after {
    display: none;
  }
  .service-ceo .ceo-message .cta {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service-ceo {
    padding: 8% 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .service-ceo .service-ceo-wrap {
    display: block;
    flex-wrap: unset;
  }
  .service-ceo .img-area {
    flex: 0;
    margin-right: 30px;
    text-align: center;
    width: 100%;
  }
  .service-ceo .ceo-message h3 {
    margin-top: 30px;
    font-size: 26px;
  }
  .service-ceo .ceo-message h3::before {
    display: none;
  }
  .service-ceo .ceo-message h3::after {
    display: none;
  }
  .service-ceo .ceo-message p {
    font-size: 18px;
    line-height: 27px;
  }
  .service-ceo .ceo-message .cta {
    width: 100%;
  }
}

.case-study-section {
  background-color: #E6EEF2;
  position: relative;
  top: 0;
  /* TAB setting start */
  /* SP setting start */
}
.case-study-section .case-study-wrap {
  position: relative;
  top: -120px;
}
.case-study-section .complete-bg {
  width: 80%;
  border-radius: 0 80px 80px 0;
  background-color: white;
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  bottom: 0;
}
.case-study-section .completed {
  margin-top: -40px;
  padding-bottom: 40px;
}
.case-study-section .section-complete {
  position: relative;
  margin-bottom: 80px;
  /* Navigation arrows */
}
.case-study-section .section-complete .section-complete-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  z-index: 500;
  overflow: hidden; /* Added to contain floated elements */
}
.case-study-section .section-complete .title-area {
  padding-top: 80px;
  margin-bottom: 40px;
  display: block;
  left: 10%;
  width: 80%;
  position: relative;
}
.case-study-section .section-complete .title-area h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  margin-bottom: 30px;
  line-height: 48px;
  position: relative;
  padding-left: 100px;
}
.case-study-section .section-complete .title-area h2 br {
  display: none;
}
.case-study-section .section-complete .title-area h2::before {
  content: "";
  background-image: url(../image/case-study-icon-complete.svg);
  position: absolute;
  width: 100px;
  height: 60px;
  background-repeat: no-repeat;
  left: 0px;
  top: -20px;
  padding-right: 20px;
}
.case-study-section .section-complete .title-area h2 span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2DB0E3;
}
.case-study-section .section-complete .title-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.case-study-section .section-complete .title-area p br {
  display: none;
}
.case-study-section .section-complete .swiper-complete {
  direction: ltr; /* Change to left-to-right */
}
.case-study-section .section-complete .swiper-container {
  width: 100%;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
  position: relative;
  left: 0%;
}
.case-study-section .section-complete .swiper-container .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.case-study-section .section-complete .swiper-button-next,
.case-study-section .section-complete .swiper-button-prev {
  display: block;
}
.case-study-section .section-complete .swiper-button-next::after,
.case-study-section .section-complete .swiper-button-prev::after {
  display: none;
}
.case-study-section .section-complete .swiper-button-next::before,
.case-study-section .section-complete .swiper-button-prev::before {
  display: none;
}
.case-study-section .section-complete .swiper-horizontal {
  width: 96%;
  margin: 0 auto;
  overflow: hidden;
}
.case-study-section .section-complete .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-image: url(../image/slider-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 2.5%;
  top: 50%;
}
.case-study-section .section-complete .swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: url(../image/slider-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
}
.case-study-section .section-complete .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  box-sizing: border-box;
  margin-right: 60px;
}
.case-study-section .section-complete .swiper-slide section {
  width: 280px;
}
.case-study-section .section-complete .swiper-slide section a {
  border: solid 3px #2DB0E3;
  display: block;
  padding: 15px;
  border-radius: 30px;
  box-shadow: 3px 3px 3px #E0E0E0;
  background-color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #101010;
  height: 450px;
}
.case-study-section .section-complete .swiper-slide section .thamnail {
  width: 100%;
  height: 148px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 15px;
}
.case-study-section .section-complete .swiper-slide section .thamnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
}
.case-study-section .section-complete .swiper-slide section dl {
  display: flex;
  align-items: center;
}
.case-study-section .section-complete .swiper-slide section dl dt {
  font-size: 12px;
  width: 80px;
  position: relative;
}
.case-study-section .section-complete .swiper-slide section dl dt::after {
  position: absolute;
  content: ":";
  right: 0;
  padding-right: 10px;
}
.case-study-section .section-complete .swiper-slide section dl dd {
  font-size: 12px;
}
.case-study-section .section-complete .swiper-slide section dl ul li {
  display: inline-block;
  border: unset;
  box-shadow: unset;
  padding: unset;
  background-color: #2DB0E3;
  color: white;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 30px;
}
.case-study-section .section-complete .swiper-slide section dl .area {
  background-color: #064599;
  color: white;
  padding: 10px;
  margin: 4px;
  border-radius: 30px;
}
.case-study-section .section-complete .swiper-slide section h4 {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E0E0E0;
}
.case-study-section .section-complete .swiper-slide section h4 br {
  display: none !important;
}
.case-study-section .section-complete .area-section {
  position: relative;
  display: block;
  left: 10%;
  margin: 40px 0;
}
.case-study-section .section-complete .area-section .area-wrap {
  background-color: #F9F8F4;
  width: 64%;
  border-radius: 30px;
  padding: 40px 30px;
}
.case-study-section .section-complete .area-section .area-wrap h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 20px;
}
.case-study-section .section-complete .area-section .area-wrap .service {
  margin-top: 40px;
}
.case-study-section .section-complete .area-section .area-wrap ol {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  display: flex;
  flex-wrap: wrap;
}
.case-study-section .section-complete .area-section .area-wrap ol li {
  margin-right: 20px;
  line-height: 36px;
}
.case-study-section .section-complete .area-section .area-wrap ol li::after {
  content: "/";
  padding-left: 20px;
}
.case-study-section .section-complete .area-section .area-wrap ol li a {
  color: #101010;
}
.case-study-section .section-complete .cta-btn {
  width: 390px;
  margin-top: 80px;
  text-align: center;
}
.case-study-section .section-complete .cta-btn 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%;
}
@media screen and (max-width: 1024px) {
  .case-study-section {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study-section .section-complete .section-complete-wrap {
    top: 0;
  }
  .case-study-section .section-complete .title-area {
    left: 4%;
  }
  .case-study-section .section-complete .title-area h2 br {
    display: block;
  }
  .case-study-section .section-complete .title-area h2::before {
    left: 0px;
    top: 20px;
  }
  .case-study-section .section-complete .swiper-container {
    transform: unset;
  }
  .case-study-section .section-complete .swiper-slide {
    transform: unset;
  }
  .case-study-section .section-complete .swiper-slide {
    flex: 0 0 auto;
    width: auto;
    box-sizing: border-box;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .case-study-section {
    background-image: url(../image/service-case-study-bg-sp.svg);
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study-section .case-study-wrap {
    top: -60px;
  }
  .case-study-section .complete-bg {
    width: 97.5%;
    border-radius: 0 30px 30px 0;
    background-color: white;
    position: absolute;
    z-index: 300;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .case-study-section .section-complete {
    overflow: hidden;
    margin-bottom: 40px;
  }
  .case-study-section .section-complete .section-complete-wrap {
    position: relative;
    padding-bottom: 5px;
    top: 0;
    margin-top: 40px;
  }
  .case-study-section .section-complete .title-area {
    padding-top: 40px;
  }
  .case-study-section .section-complete .title-area h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .case-study-section .section-complete .title-area h2 br {
    display: block;
  }
  .case-study-section .section-complete .title-area h2::before {
    left: 0px;
    top: 0px;
  }
  .case-study-section .section-complete .title-area p br {
    display: block;
  }
  .case-study-section .section-complete .swiper-container {
    left: 0%;
    margin: 0 auto;
    width: 92%;
    left: 0;
  }
  .case-study-section .section-complete .swiper-button-prev {
    right: 2.5%;
  }
  .case-study-section .section-complete .swiper-slide {
    margin: 0 auto;
  }
  .case-study-section .section-complete .swiper-slide section {
    width: auto;
  }
  .case-study-section .section-complete .area-section {
    position: relative;
    left: 4%;
  }
  .case-study-section .section-complete .area-section .area-wrap {
    width: 87%;
  }
  .case-study-section .section-complete .area-section .area-wrap .service {
    margin-top: 40px;
  }
  .case-study-section .section-complete .area-section .area-wrap ol {
    font-size: 14px;
    line-height: 24px;
  }
  .case-study-section .section-complete .area-section .area-wrap ol li {
    margin-right: 20px;
    line-height: 24px;
  }
  .case-study-section .section-complete .cta-btn {
    width: 92%;
    margin-top: 40px;
  }
  .case-study-section .section-complete .cta-btn a {
    font-size: 17px;
  }
}

.bg-img {
  width: 100%;
  height: 560px;
  position: relative;
  z-index: 0;
  top: -150px;
  margin-bottom: -150px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center bottom;
  /* TAB setting start */
  /* SP setting start */
}
@media screen and (max-width: 1024px) {
  .bg-img {
    height: 450px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .bg-img {
    height: 300px;
    background-attachment: scroll;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.bg-service-amamori-repair {
  background-image: url(../image/service-amamori-repair-img-bg.webp);
}

.bg-service-toi-repair {
  background-image: url(../image/service-toi-repair-img-bg.webp);
}

.bg-service-toi-cleaning {
  background-image: url(../image/service-toi-cleaning-img-bg.webp);
}

.bg-service-roof-repair {
  background-image: url(../image/service-roof-repair-img-bg.webp);
}

.bg-service-wall-repair {
  background-image: url(../image/service-wall-repair-img-bg.webp);
}

.bg-service-wall-paint {
  background-image: url(../image/service-wall-paint-img-bg.webp);
}

.bg-service-waterproof {
  background-image: url(../image/service-waterproof-img-bg.webp);
}

.bg-service-building-repair {
  background-image: url(../image/service-building-repair-img-bg.webp);
}

.case-study-section {
  /* section complete */
  /* section-user-voice */
  /* TAB setting start */
  /* sp setting start */
}
.case-study-section .section-user-voice {
  width: 1280px;
  margin: 0 auto;
  background-color: white;
  border-radius: 80px;
  padding: 70px;
  overflow: hidden;
  /* Navigation arrows */
}
.case-study-section .section-user-voice .contents-title {
  text-align: center;
  margin-bottom: 30px;
}
.case-study-section .section-user-voice .contents-title h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 54px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.case-study-section .section-user-voice .contents-title h2 span {
  color: #00879A;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.case-study-section .section-user-voice .contents-title h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #00879A;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.case-study-section .section-user-voice .contents-title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
}
.case-study-section .section-user-voice .contents-title p br {
  display: none;
}
.case-study-section .section-user-voice .swiper-container {
  width: 100%;
  padding-top: 50px;
  position: relative;
}
.case-study-section .section-user-voice .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.case-study-section .section-user-voice .swiper-button-next-uservoice,
.case-study-section .section-user-voice .swiper-button-prev-uservoice {
  display: none; /* Always display the navigation arrows */
}
.case-study-section .section-user-voice .swiper-button-next-uservoice::after,
.case-study-section .section-user-voice .swiper-button-prev-uservoice::after {
  display: none; /* Remove default Swiper arrow icons */
}
.case-study-section .section-user-voice .swiper-button-prev-uservoice {
  width: 50px;
  height: 50px;
  background-image: url(../image/slider-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Ensure arrows are above other elements */
}
.case-study-section .section-user-voice .swiper-button-next-uservoice {
  width: 50px;
  height: 50px;
  background-image: url(../image/slider-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Ensure arrows are above other elements */
}
.case-study-section .section-user-voice .swiper-slide {
  flex: 0 0 auto;
  width: 33.3333333333%; /* 3つのスライドを表示 */
  box-sizing: border-box;
  padding: 0 10px;
}
.case-study-section .section-user-voice .swiper-slide section a {
  border: solid 3px #00879A;
  display: block;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 3px 3px 3px #E0E0E0;
  background-color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #101010;
}
.case-study-section .section-user-voice .swiper-slide section .image-area {
  width: 100%;
  height: 168px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.case-study-section .section-user-voice .swiper-slide section .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.case-study-section .section-user-voice .swiper-slide section h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  margin: 30px 0;
  line-height: 28px;
  height: 50px;
}
.case-study-section .section-user-voice .swiper-slide section .cta-area {
  width: 100%;
  text-align: center;
  background-color: #00879A;
  border-radius: 50px;
  margin-top: 30px;
}
.case-study-section .section-user-voice .swiper-slide section .cta-area p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  padding: 20px 0;
  color: white;
}
@media screen and (max-width: 1024px) {
  .case-study-section {
    /* section-user-voice */
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study-section .section-user-voice {
    width: 100%;
    border-radius: 30px;
    padding: 4%;
  }
  .case-study-section .section-user-voice .swiper-slide {
    overflow-x: hidden;
  }
  .case-study-section .section-user-voice .swiper-slide section a {
    padding: 8%;
  }
  .case-study-section .section-user-voice .swiper-slide section .image-area {
    height: 140px;
  }
  .case-study-section .section-user-voice .swiper-slide section h3 {
    line-height: 21px;
    height: 60px;
  }
  .case-study-section .section-user-voice .swiper-slide section .cta-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .case-study-section {
    /* section-user-voice */
    transition-property: all;
    transition-duration: 0.3s;
  }
  .case-study-section .section-user-voice {
    width: 92%;
    padding: 8% 4%;
    /* Navigation arrows */
  }
  .case-study-section .section-user-voice .contents-title h2 {
    font-size: 28px;
  }
  .case-study-section .section-user-voice .contents-title p {
    line-height: 32px;
  }
  .case-study-section .section-user-voice .contents-title p br {
    display: block;
  }
  .case-study-section .section-user-voice .swiper-slide-wrapper {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
  }
  .case-study-section .section-user-voice .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  .case-study-section .section-user-voice .swiper-button-next-uservoice,
  .case-study-section .section-user-voice .swiper-button-prev-uservoice {
    display: block;
  }
  .case-study-section .section-user-voice .swiper-button-next-uservoice::after,
  .case-study-section .section-user-voice .swiper-button-prev-uservoice::after {
    display: none;
  }
  .case-study-section .section-user-voice .swiper-button-next-uservoice::before,
  .case-study-section .section-user-voice .swiper-button-prev-uservoice::before {
    display: none;
  }
  .case-study-section .section-user-voice .swiper-button-prev-uservoice {
    width: 50px;
    height: 50px;
    background-image: url(../image/slider-left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure arrows are above other elements */
  }
  .case-study-section .section-user-voice .swiper-button-next-uservoice {
    width: 50px;
    height: 50px;
    background-image: url(../image/slider-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure arrows are above other elements */
  }
  .case-study-section .section-user-voice .swiper-slide {
    flex: 0 0 auto;
    width: 100%; /* スライドの幅を100%に設定 */
    box-sizing: border-box;
    padding: 0 10px;
  }
  .case-study-section .section-user-voice .swiper-slide section {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }
  .case-study-section .section-user-voice .swiper-slide section .image-area {
    height: 180px;
  }
  .case-study-section .section-user-voice .swiper-slide section h3 {
    line-height: 21px;
    height: 60px;
  }
  .case-study-section .section-user-voice .swiper-slide section .cta-area p {
    font-size: 18px;
  }
}

.faq {
  width: 100%;
  padding: 100px 0;
  background-color: #F8F8F8;
}
.faq .inner-box {
  width: 1280px;
  margin: 0 auto;
}
.faq .faq-title {
  text-align: center;
}
.faq .faq-title h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 54px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.faq .faq-title h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: #2DB0E3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.faq .faq-title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
}
.faq ol {
  width: 980px;
  margin: 0 auto;
  position: relative;
  margin-top: 60px;
}
.faq ol li {
  background-color: white;
  border-radius: 5px;
  box-shadow: 3px 3px 3px #E0E0E0;
  padding: 30px;
  margin-bottom: 40px;
}
.faq ol li:last-child {
  margin-bottom: 0;
}
.faq ol li dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 2px #2DB0E3;
  cursor: pointer;
}
.faq ol li dt:hover {
  opacity: 0.5;
}
.faq ol li dt h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 32px;
  padding: 10px 0;
  padding-left: 60px;
  position: relative;
  background-image: url(../image/faq-icon.svg);
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 50%;
  flex: 1;
}
.faq ol li dt span {
  width: 20px;
  height: 12px;
  background-image: url(../image/faq-arrow-open.svg);
  background-repeat: no-repeat;
  display: block;
  background-size: auto;
}
.faq ol li dt span.active {
  background-image: url("../image/faq-arrow-close.svg");
  width: 20px;
  height: 12px;
  background-repeat: no-repeat;
  display: block;
  background-size: auto;
}
.faq ol li dd {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0;
}
.faq ol li dd.active {
  display: block;
  max-height: 200px;
  padding: 10px 0;
}
.faq .faq-cta {
  width: 480px;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
.faq .faq-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%;
}
.faq p {
  margin-top: 40px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.faq p br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .faq {
    width: 100%;
    padding: 8% 4%;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .faq .inner-box {
    width: 100%;
  }
  .faq .faq-title {
    text-align: center;
  }
  .faq .faq-title h2 {
    font-size: 32px;
  }
  .faq .faq-title p {
    font-size: 21px;
  }
  .faq ol {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    transition-property: all;
    transition-duration: 0.3s;
  }
  .faq .faq-title h2 {
    font-size: 28px;
  }
  .faq .faq-title p {
    font-size: 21px;
  }
  .faq ol {
    width: 100%;
    margin-top: 30px;
  }
  .faq ol li {
    padding: 15px;
    margin-bottom: 20px;
  }
  .faq ol li dt h3 {
    font-size: 18px;
    line-height: 24px;
    padding-right: 5px;
  }
  .faq ol li dd {
    font-size: 18px;
  }
  .faq .faq-cta {
    width: 100%;
  }
  .faq .faq-cta a {
    font-size: 16px;
  }
  .faq p {
    font-size: 16px;
    line-height: 24px;
  }
  .faq p br {
    display: block;
  }
}