@charset "utf-8";

/* CSS Document */
* {
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

html {
  font-size: 62.5%;

}

body {
  zoom: 90%;
}



body {
  align: middle;
  margin: 0px;
  padding: 0px;
  color: #1c1c1c;
  font-size: 1.6rem;
  /* 16px*/
  line-height: 2;
}



/* ----------------------- */
/* header
/* ----------------------- */

.header {
  width: 100%;
  height: 70px;
  background-color: #F2F2F2;
  position: absolute;
  top: 0;
  z-index: 99;
  position: fixed;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 91px;
  height: 100%;
}

.header__logo {
  width: 150px;
}

.header__btn {
  display: flex;
  background: #7F0F1A;
  font-weight: bold;

  padding: 0.8rem 3rem;
}

.header__btn a {
  color: #ffffff;
  text-decoration: none;
}



.burger-btn {
  display: none;
}






h1 {
  font-size: 36px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  /* 24px~36pxで可変*/
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  /* 20px~24pxで可変*/
  line-height: 1.3;
}



/*画像の下のすきまを無くす*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}



.resizeimage img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.logo {
  position: absolute;
  top: 2%;
  right: 2%;
}


.bold {
  font-weight: bold;

}

.bgcGray {
  background-color: #EDEBEB;
}

.top {
  position: relative;

}

.topbutton {
  position: absolute;
  top: 64%;
  left: 15%;
}

.topbutton a {
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 5rem;
  font-size: 2vw;
  background: #7F0F1A;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 4px 4px 0 #D18686;
  box-shadow: 4px 4px 0 #D18686;
}

.topbutton a:hover {
  -webkit-box-shadow: 0px 0px 0 #D18686;
  box-shadow: 0px 0px 0 #D18686;
}

h1.toptitle {
  position: absolute;
  bottom: 47%;
  left: 15%;
  filter: drop-shadow(0px 0px 7px rgb(255, 255, 255));
  font-size: 2vw;
  text-align: left;

}

h1.toptitle .large {
  font-size: 3vw;
}

.inquiry {
  margin-bottom: 100px;
}

.inquiry_small {
  font-size: 12px;
  color: #B3B3B3;
  max-width: 500px;
  margin: auto;
}

.inquiry_btn img {
  width: 360px;
  margin-bottom: 15px;
}

.white-shadow {

  filter: drop-shadow(3px 2px 1px rgb(255, 255, 255));

}

.shadow {
  filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.4));

}


.gray {
  background-color: #d6d6d6;
}


.banner {
  padding-top: 50px;
  padding-bottom: 50px;
}



.flex {
  box-sizing: border-box;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex>* {
  min-width: 8%;
  flex-basis: 20%;
  text-align: center;
}

.flex img {
  padding: 0;
  margin: 20px 0 20px 0;
  max-height: 40px;
}

.section1 {
  background: #f5b9ab;
  padding: 4rem 0;

}

.inner {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}


/* ----------------------- */
/* problem
/* ----------------------- */

.sp_br {
  display: none;
}

.problem {
  padding: 96px 0 52px;
  position: relative;
}



.problem__ttl {
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  line-height: 44px;
}

.problem__ttl--lg {
  font-size: 30px;
}

.problem__list {
  margin-top: 67px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.problem__item {
  flex: 0 1 30.76%;
  list-style: none;

}

.problem__subTtl {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.03em;

  text-align: center;
  padding: 6px 0;
  max-width: 320px;
  margin: 0 auto -45px;
  position: relative;
  z-index: 1;
  position: relative;
}

.problem__subTtl--lg {
  color: #D18686;
  font-size: 28px;
}

.problem__subTtl:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;

}

.problem__itemBody {
  padding: 0px 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 3px 20px rgba(13, 65, 67, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}


.problem__itemImg {
  width: 40%;
  margin: 60px auto;
}

.problem__itemImg img {
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

p.problem__txt {
  width: 60%;
  text-align: left;
  font-weight: bold;
}

p.problem__txt span {
  background-color: #ffe1e1;
}

/* ----------------------- */
/* solution
/* ----------------------- */

.solution {
  padding: 95px 0 132px;


}

.solution__head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution__logo {
  width: 200px;
  margin-right: 28px;
}

.solution__logo img {
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.solution__headTxt {
  color: #DDAFA6;
  font-size: 37px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.solution__txtlarge {
  color: #DDAFA6;
  font-size: 44px;
  font-weight: bold;
  vertical-align: -27%;
  margin: 0px 13px 5px;
}

.solution__ttl {
  color: #FFF;
  font-size: 60px;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.5;
}

.solution__ttl--sm {
  font-size: 52px;
}

.solution__subTxt {
  margin-top: 46px;
  font-size: 33px;
  font-weight: bold;
  color: #808080;
}

.solution__sp_img {
  display: none;
}

.dot {
  position: relative;
}

.dot:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFEB00;
  z-index: 1;
}

.solution__list {
  margin-top: 40px;
}

.solution__item {
  position: relative;
  list-style: none;
}

.solution__item:not(:last-child) {
  margin-bottom: 25px;
}

.solution__item2 {
  margin-top: 25px;
}

.solution__item1,.solution__item2{
  padding: 3vw 4vw 4vw;
  background-color: #DDAFA6;
}

.solution__itemHead {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.03em;
  width: 100%;
  max-width: 320px;
  height: 60px;
  line-height: 56px;
  border-radius: 40px;
  border: 2px solid #fff;
  background-color: #D18686;
  text-align: center;
  box-sizing: border-box;
}

.solution__contWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  padding: 83px 69px 80px 91px;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(13, 65, 67, 0.1);
}

.invoice_text {
  max-width: 870px;
  font-size: 18px;
  text-align: left;
}

.solution__img {
  max-width: 440px;
  height: 80%;
}


.solution__item .last-child {
  top: 112px;
}


.solution__img img {
  object-fit: contain;
  font-family: 'object-fit: contain;';
  height: 250px;
}

.solution__cont {
  flex: 0 1 51.15%;
  max-width: 599px;
  margin-left: 3%;
}

.solution__subTtl {
  font-size: 36px;
  line-height: 1.66;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.solution__txt {
  font-size: 18px;
  line-height: 2;
  text-align: left;
}



.txtPink {
  color: #D18686;

}

.bgcPink {
  background: #ffe8e3;
}





.solution {

  position: relative;
}



.contact {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1rem 0;
  border-radius: 20px;
}



.button {

  margin: 3rem 0 3rem 4%;
}

.button a {
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  background: #7F0F1A;
  padding: 1.5rem 3rem;
  font-size: 2.8vw;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.4));
}

.button a:hover {
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
}


.arrow {
  margin-bottom: 30px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}



.solution .left {
  padding-left: 1rem;
  font-size: 2rem;
  line-height: 2.3rem;
}

.solution__headTxt_1,
.solution__headTxt_2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.modules {
  padding: 3rem 5rem 1rem 5rem;
  background: #fbfbfb;

}

.modules h2 {
  font-size: 4rem;
  margin-bottom: 40px;
}

.modules__subttl {
  font-size: 25px;
}

.module {
  margin: 4rem 0 2rem 0;

}

.modules__text {
  margin: 0 8vw;
}


.circle {
  line-height: 1.4em;
  display: inline-block;
  width: 150px;
  height: 100px;
  font-weight: bold;
  /*border: 4px solid #db1616;*/
  margin: 3rem 5px 0 5px;
  padding: 10px 0 0 0;
}

.circle span {

  display: inline-block;
  width: 130px;
  text-align: center;
}

.circle img {
  height: 75px;

}


.logos {

  margin: 10rem 7rem;
}

.logos h2{
  margin-bottom: 40px;
}

.casestudy {
  background: #DDAFA6;
  padding: 5% 0;
  margin-bottom: 90px;
}

.casestudy h2 {
  font-size: 4rem;
  color: white;

}

.casestudy h3 {
  text-align: left;
}

.cases {
  position: relative;
  margin: 3% auto 5%;
  padding: 3rem 0;
  background: white;
  width: 1000px;
  max-width: 100%;
}

.case .left {
  text-align: left;
}

.cases .case {
  margin: 0 10%;
}

.cases p {
  text-align: left;
}

.cases img {
  float: right;
  margin: 0 1rem;
}



.cases li {
  text-align: left;
}




.title {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.solution1-img1,
.solution2-img1 {

  margin-right: auto;
  margin-left: auto;
}



#top_scroll {
  position: relative;
  z-index: 100;
  margin: 0;
  padding: 0;
}

#page-top1 {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: -250px;
  right: 10px;
  width: 35px;
  height: 35px;
  padding: 0;
  color: #222;
  text-align: center;
  text-decoration: none;
  transition: 1s;
  -webkit-transition: 1s;
}

#page-top1:hover {

  transform: translateY(-10px);
}

#top_scroll:hover {
  background: #fff;
}



/* ----------------------- */
/* 以下よりレスポンシブ設定
  /* ----------------------- */




@media (min-width: 1200px) {

  /* 1200px以上*/
  h1 {
    font-size: 3.6rem;
    /* 36px*/
  }

  h2 {
    font-size: 2.4rem;
    /* 24px*/
  }



  .contact {
    width: 80%;
  }

  
  .modules {
    padding: 9rem 10rem 6rem 10rem;
  }

  .flex img {
    padding: 0 20px 0 20px;
  }

  .flex {
    padding: 2.5% 0;
  }

  .button a {
    padding: 1rem 3rem;
    font-size: 2.3vw;
  }

}


/* 1024px 
--------------------------------------------- */
@media (max-width: 1024px) {

  /* ----------------------- */
  /* problem 1024px
  /* ----------------------- */

  .problem__itemImg {
    height: auto;
  }

  /* ----------------------- */
  /* solution 1024px
  /* ----------------------- */

  .solution__contWrap {
    padding: 83px 59px 80px 71px;
  }

}


/* 990px 
--------------------------------------------- */
@media (max-width: 990px) {

  .resizeimage .pc {
    margin-top: 45px;
  }



  /* ----------------------- */
  /* problem 990px
  /* ----------------------- */
  .problem__subTtl {
    font-size: 14px;
  }

  .problem__subTtl--lg {
    font-size: 24px;
  }



  /* ----------------------- */
  /* solution 990px
  /* ----------------------- */

  .solution {
    padding: 70px 0 63px;
  }

  .solution .inner {
    padding: 0 8px;
  }

  .solution__logo {
    width: 195.5px;
    height: 44.5px;
    margin-right: 9px;
    margin-bottom: 17px;
  }

  .solution__headTxt {
    font-size: 22px;
    letter-spacing: 0;
  }

  .solution__ttl {
    font-size: 50px;
    line-height: 1;
    margin-top: 16px;
  }

  .solution__txtlarge {
    font-size: 36px;
    margin: 0px 13px 8px;
  }

  .solution__ttl .txtWhite {
    font-size: 29px;
  }

  .solution__ttl--sm {
    font-size: 32px;
  }

  .dot:before {
    top: 0px;
  }

  .solution__list {
    margin-top: 27px;
  }



  .solution__item .mt20,
  .solution__item .mt40 {
    margin-top: 0 !important;
  }

  .solution__contWrap {
    flex-direction: column;
    padding: 56px 35px 41px;
  }

  .solution__img {
    max-width: 100%;
    height: 220px;
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
  }

  .solution__cont {
    flex: 0 1 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .solution__subTtl {
    font-size: 20px;
    margin-bottom: 270px;
    width: 100%;

    margin: 0 auto 270px;
  }


  .solution__subTtl {
    font-size: 28px;
  }

  .invoice_text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

}


/* 810px 
--------------------------------------------- */
@media (max-width: 810px) {

  .header__inner {
    padding: 0 33px;

  }

  .header__btn {
    padding: 0.8rem 2rem;
  }


  /* ----------------------- */
  /* top 810px
  /* ----------------------- */

  .top {
    background-color: #ffd5d5;

    height: 340px;
  }

  .resizeimage .pc {
    display: none !important;
  }

  .resizeimage {
    padding-top: 114px;
  }

  .resizeimage .sp {
    display: inline !important;

    width: 180px;
    max-width: 100%;
    margin-left: 60%;
  }

  h1.toptitle {
    position: absolute;
    top: 96px;
    filter: drop-shadow(0px 0px 7px rgb(255, 255, 255));
    font-size: 2.5vw;
    text-align: left;
  }

  h1.toptitle .large {
    font-size: 4vw;
  }



  .topbutton {
    position: absolute;
    top: 70%;
  }


  .topbutton a {
    font-size: 3vw;

  }

  /* ----------------------- */
  /* problem 810px
  /* ----------------------- */

  .problem {
    padding: 50px 0 51px;
    position: relative;
  }

  .problem__ttl {
    font-size: 16px;
    line-height: 2;
  }

  .problem__ttl--lg {
    font-size: 24px;
    line-height: 1.5;
  }

  .problem__list {
    margin-top: 29px;
    flex-direction: column;
    justify-content: center;
  }

  .problem__item {
    flex: 0 1 100%;
    max-width: 352px;
    margin: 0 auto;
  }

  .problem__item:not(:last-child) {
    margin-bottom: 24px;
  }

  .problem__subTtl {
    font-size: 17px;
  }

  .problem__subTtl--lg {
    font-size: 25px;
  }

  .problem__itemBody {
    padding: 0px 16px;
  }

  .problem__itemImg {
    height: auto;
    margin-bottom: 0px;
    margin: 35px auto;
  }



  /* ----------------------- */
  /* solution 810px
  /* ----------------------- */

  .solution__subTtl {
    font-size: 20px;
    margin-bottom: 270px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 270px;
  }


  .solution__img img {
    height: 215px;
  }

  .solution__txtlarge {
    font-size: 24px;
    margin: 0px 13px 3px;
  }

  .solution__logo {
    width: 166.5px;
  }

  .solution__subTxt {
    font-size: 26px;
  }

  .times img {
    width: 55px;
  }

  .modules h2 {
    font-size: 3rem;
  }

  .modules__subttl {
    font-size: 20px;
  }

  .modules {
    font-size: 14px;
  }

  .solution__sp_img {
    display: inline;

  }

  .solution__sp_img img {

    max-width: 500px;
    width: 100%;
  }

  .solution__pc_img {
    display: none;
  }

  /*810px以下*/
}


/* 744px 
--------------------------------------------- */
@media screen and (max-width: 744px) {
  /*744px以下*/

  .topsubtitle {
    position: absolute;
    top: 5%;
    right: 0%;
    text-align: right;
    color: #ffffff;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    font-size: calc(60% + 1.1vw);
  }



  .solution h3 {
    font-size: 120%;
  }

  .contact {
    margin-right: auto;
    font-size: 2rem;
  }

  .button {
    margin: 1rem 0 2rem 0;
  }

  .button a {
    font-weight: bold;
    padding: 1rem 3rem;
    font-size: 2rem;
  }


  .circle {
    width: 100px;
    height: 76px;
    margin: 0 1rem 0 1rem;
  }

  .circle span {
    width: 76px;
    font-size: 80%;
  }

  .cases .case {
    margin: 0 10%;
  }

  .cases img {
    max-width: 25%;
  }

  .cases #buildsystem {
    max-width: 30%;
  }

  .cases .casestudy__logo_1 {
    max-width: 46%;
  }

  .cases .casestudy__logo_3 {
    max-width: 37%;
  }

  .logos {
    margin: 7rem 0px;
  }


  .aboutus img {
    max-width: 30%;
  }

  #page-top1 img {
    width: auto !important;
    max-width: 100%;
  }

}



/* 545px 
--------------------------------------------- */
@media screen and (max-width: 545px) {

  .sp_br {
    display: inline;
  }

  .logo {
    width: 30%;
  }

  .resizeimage .sp {
    width: 150px;
  }

  .topsubtitle {
    display: none;
  }

  .topbutton a {
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
  }

  .topbutton {
    top: 72%;
  }

  .top {
    height: 295px;
  }

  .topsmall {
    position: absolute;
    top: 50%;
    right: 0%;
    font-size: 1.5rem;
  }




  .modules {
    padding: 3rem 0 1rem 0;

  }

  .circle {
    height: 63px;
    margin: 0 1px 0 1px;
  }

  .circle span {
    width: 63px;
    font-size: 78%;
  }

  .solution h3 {
    font-size: 100%;
  }


  .solution .feature {
    margin: 1rem 5%;
  }

  .solution__logo {
    width: 115px;
    margin-bottom: -4px;
  }

  .solution__headTxt {
    font-size: 22px;
  }

  .solution__txtlarge {
    font-size: 23px;
    margin: 0px 6px 3px;
  }

  .solution__subTxt {
    font-size: 15px;
  }

  .solution__head {
    display: inline-block;
    margin: 0 auto;
  }

  .solution__headTxt_1 {
    justify-content: center
  }



  .aboutus div {
    font-size: 1.1rem;

  }


  .banner {
    padding-top: 0;
  }



  .cases .casestudy__logo_2 {
    max-width: 30%;
  }


  .cases .casestudy__logo_4 {
    max-width: 26%;
  }


}

/*545px以下*/


/* 414px 
--------------------------------------------- */
@media (max-width: 414px) {

  .topbutton {
    top: 72%;
  }

  /* ----------------------- */
  /* solution 414px
  /* ----------------------- */

  .solution__contWrap {
    padding: 56px 15px 41px;
  }

  .solution__subTtl {
    font-size: 18px;
    margin-bottom: 260px;
  }

  .solution__img {
    height: 315px;
    width: 290px;
    top: 118px;
  }

  .solution__item1 .solution__subTtl {
    margin-bottom: 230px;
  }

  .solution__item3 .solution__img {
    top: 100px;
  }


  /* ----------------------- */
  /* function 414px
  /* ----------------------- */

  .function__itemTtl {
    font-size: 26px;
  }

}

@media screen and (max-width: 400px) {
  /*400px以下*/

  .header__logo {
    width: 110px;
  }

  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 20px;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .top {
    height: 355px;
  }

  .resizeimage {
    margin-top: 60px;
  }

  .resizeimage .sp {
    display: inline !important;

    max-width: 100%;
    margin-left: 0%;
  }


  h1.toptitle {
    position: absolute;
    top: 25px;
    left: 8%;
    right: 10%;
    font-size: 1.2rem;
    text-align: center;

  }


  h1.toptitle .large {
    font-size: 1.7rem;
  }



  .topbutton {
    top: 78%;
    right: 0;
    left: 0%;
  }

  .topbutton a {
    padding: 0.5rem 3rem;
    font-size: 2rem;

  }

  .topsmall {
    position: absolute;
    top: 75%;
    right: 0%;
    left: 0%;
    padding: 0;
    font-size: 1.8rem;
    text-align: center;

  }

  .problem__ttl--lg {
    font-size: 19px;

  }

  .problem__ttl {
    font-size: 13px;
    line-height: 1.8;
  }

  .problem__txt {

    font-size: 1.3rem;
  }

  .problem__itemImg {

    margin: 20px auto;
  }

  .flex>* {
    min-width: 8%;
    flex-basis: 24%;
    text-align: center;
  }


  .flex img {
    padding: 10px 5px 10px 5px;
    margin: 0px 0 0px 0;
    max-height: 30px;
    vertical-align: middle;
  }

  .section1 {
    padding: 2rem 0 2rem 0;

  }



  .solution__txtlarge {
    font-size: 18px;
    margin: 0px 6px 3px;
  }

  .solution__headTxt {
    font-size: 15px;
  }


  .times img {
    width: 39px;
  }

  .contact {
    margin-right: auto;
    font-size: 1.3rem;
    width: 100%;
    padding: 1rem 0 2rem;
  }


  .button a {
    width: 90%;
    margin-top: 1rem;
  }

 
  .modules {
    padding: 2rem 0 1rem 0;
  }

  .circle img {
    height: 55px;
  }



  .cases {
    margin: 4% auto 11%;
  }

  .casestudy h2 {
    font-size: 3rem;
  }

  .casestudy h3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }

  .cases .case {
    margin: 0 5%;
  }

  .case {
    font-size: 84%;
  }

  .case .bold {
    font-size: 1.5rem;
  }

  .case ul {
    list-style: none;
  }

  .aboutus .title {
    margin-top: 2rem;
  }

  .cases img {
    float: none;
    max-width: 100%;

    margin: 20px auto 35px;
  }

}



/* 320px 
--------------------------------------------- */
@media (max-width: 320px) {


  /* ----------------------- */
  /* solution 320px
  /* ----------------------- */



  .solution__headTxt {
    font-size: 18px;
  }

  .solution__ttl {
    font-size: 40px;
  }

}