@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/*
overview
---------------------------*/
#overview {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FEF8DE), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/*
main-title
---------------------------*/
#main-title > .wrap {
  padding-bottom: 100px;
}
#main-title .title__wrap {
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
}
#main-title .title__wrap h2 {
  padding: 17px 30px;
  font-size: min(6.3vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #026934;
  text-align: center;
  paint-order: stroke;
  background: #FFF9B1;
  border: 1px solid #026934;
  border-radius: 10px;
}
#main-title .title__wrap h2 .img__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 55%;
  max-width: 150px;
}
#main-title .detail__wrap {
  margin-top: 32px;
}
#main-title .detail__wrap p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.5;
}
#main-title .detail__wrap p + p {
  margin-top: 10px;
}
#main-title .link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 0;
  margin-top: 50px;
}
#main-title .link__wrap .btn {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}
#main-title .link__wrap .btn.work a {
  background: #FAD0BB;
}
#main-title .link__wrap .btn.life a {
  background: #FAECAE;
}
#main-title .link__wrap .btn.active a {
  background: #C7D3F0;
}
#main-title .link__wrap .btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 21px 30px;
  font-size: min(4.7vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border: 1px solid #026934;
  border-radius: 10px;
}
#main-title .link__wrap .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
}
#main-title .link__wrap .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url("/img/common/icon-arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 769px) {
  #main-title .title__wrap h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7px 15px 9px;
    font-size: min(3.5vw, 40px);
  }
  #main-title .title__wrap h2 .img__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 26%;
    max-width: initial;
  }
  #main-title .detail__wrap {
    margin-top: 30px;
  }
  #main-title .detail__wrap p {
    font-size: min(2.1vw, 20px);
    text-align: center;
  }
  #main-title .detail__wrap p + p {
    margin-top: 15px;
  }
}
@media (min-width: 900px) {
  #main-title .link__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 30px;
  }
  #main-title .link__wrap .btn {
    width: calc((100% - 60px) / 3);
  }
  #main-title .link__wrap .btn a {
    padding: 26px 15px 30px;
    font-size: min(1.6vw, 20px);
  }
  #main-title .link__wrap .btn a::before {
    right: 10px;
    width: 40px;
    height: 40px;
  }
  #main-title .link__wrap .btn a::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1400px) {
  #main-title .link__wrap {
    gap: 0 60px;
  }
  #main-title .link__wrap .btn {
    width: calc((100% - 120px) / 3);
  }
  #main-title .link__wrap .btn a {
    padding: 26px 40px 30px;
    font-size: min(1.4vw, 20px);
  }
  #main-title .link__wrap .btn a::before {
    right: 20px;
    width: 50px;
    height: 50px;
  }
  #main-title .link__wrap .btn a::after {
    right: 32px;
    width: 24px;
    height: 24px;
  }
}

/*
assist
---------------------------*/
#assist .wrap {
  padding: 76px 0 100px;
  margin-bottom: 100px;
  background: #FEF8DE;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-bottom: 1px solid #026934;
  border-radius: 0 0 25px 25px;
}
#assist .title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 57px;
}
#assist .title::before, #assist .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 47px;
}
#assist .title::before {
  left: 0;
  background: url("/img/use/line-start.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#assist .title::after {
  right: 0;
  background: url("/img/use/line-end.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#assist .title p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(5vw, 18px);
  font-weight: 700;
  text-align: center;
}
#assist .title p span {
  font-size: min(7vw, 24px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  paint-order: stroke;
  border-radius: 10px;
  text-stroke: 2px #026934;
  -webkit-text-stroke: 2px #026934;
}
#assist .btn {
  max-width: 580px;
  margin: 50px auto 0;
  border-radius: 10px;
}
#assist .btn a {
  display: block;
  padding: 22px 50px 26px;
  font-size: min(5.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 10px;
}
@media (min-width: 769px) {
  #assist .wrap {
    border-radius: 0 0 50px 50px;
  }
  #assist .title {
    padding: 0 70px;
  }
  #assist .title::before, #assist .title::after {
    top: 0;
    bottom: auto;
    width: 32px;
    height: 50px;
  }
  #assist .title p {
    font-size: min(2.5vw, 24px);
  }
  #assist .title p span {
    font-size: min(3.5vw, 34px);
  }
  #assist .btn {
    border-radius: 30px;
  }
  #assist .btn a {
    padding: 31px 50px;
    font-size: 24px;
    border-radius: 30px;
  }
}

/*
detail__contents
---------------------------*/
.detail__contents {
  margin-bottom: 100px;
}
.detail__contents#work .box {
  background: #FEF3EE;
}
.detail__contents#work .box .box__title {
  background: #FAD0BB;
}
.detail__contents#work .box .box__title .inner::before {
  background: url("/img/use/work-title-ilust-left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents#work .box .box__title .inner::after {
  background: url("/img/use/work-title-ilust-right.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents#life .box {
  background: #FEFAEB;
}
.detail__contents#life .box .box__title {
  background: #FAECAE;
}
.detail__contents#life .box .box__title .inner::before {
  background: url("/img/use/life-title-ilust-left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents#life .box .box__title .inner::after {
  background: url("/img/use/life-title-ilust-right.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents#active .box {
  background: #EBF0FA;
}
.detail__contents#active .box .box__title {
  background: #C7D3F0;
}
.detail__contents#active .box .box__title .inner::before {
  background: url("/img/use/active-title-ilust-left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents#active .box .box__title .inner::after {
  background: url("/img/use/active-title-ilust-right.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents > .wrap {
  border: 1px solid #026934;
  border-radius: 25px;
}
.detail__contents .box {
  border-radius: 25px;
}
.detail__contents .box .box__title {
  padding: 75px 0 30px;
  border-radius: 25px 25px 0 0;
}
.detail__contents .box .box__title .inner {
  position: relative;
  max-width: 400px;
  padding-bottom: 150px;
}
.detail__contents .box .box__title .inner::before, .detail__contents .box .box__title .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30vw;
  max-width: 120px;
  height: 30vw;
  max-height: 120px;
}
.detail__contents .box .box__title .inner::before {
  left: 34px;
}
.detail__contents .box .box__title .inner::after {
  right: 34px;
}
.detail__contents .box .box__title .text__wrap {
  width: 100%;
  margin: 0 auto;
}
.detail__contents .box .box__title .text__wrap h3 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
  paint-order: stroke;
  text-stroke: 2px #026934;
  -webkit-text-stroke: 2px #026934;
}
.detail__contents .box .box__title .text__wrap p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.detail__contents .box__detail {
  padding: 80px 0 150px;
}
.detail__contents .box__detail--title h4 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 11px 22px;
  font-size: min(6.5vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
.detail__contents .box__detail--title h4::before, .detail__contents .box__detail--title h4::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 136px;
}
.detail__contents .box__detail--title h4::before {
  left: 0;
  background: url("/img/common/brackets-start-slim.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents .box__detail--title h4::after {
  right: 0;
  background: url("/img/common/brackets-end-slim.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents .box__detail--title h4.sp-long::before, .detail__contents .box__detail--title h4.sp-long::after {
  height: 228px;
}
.detail__contents .box__detail--title h4.sp-long::before {
  background: url("/img/common/brackets-start-slim-long.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents .box__detail--title h4.sp-long::after {
  background: url("/img/common/brackets-end-slim-long.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.detail__contents .box__detail--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px 0;
  margin-top: 40px;
}
.detail__contents .box__detail--content dl {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.detail__contents .box__detail--content dl:nth-of-type(1) dt .label {
  background: #D2F3A7;
}
.detail__contents .box__detail--content dl:nth-of-type(2) dt .label {
  background: #FFD342;
}
.detail__contents .box__detail--content dl:nth-of-type(3) dt .label {
  background: #5EA6FF;
}
.detail__contents .box__detail--content dl + dl dt {
  position: relative;
}
.detail__contents .box__detail--content dl + dl dt::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url("/img/common/icon-arrow-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.detail__contents .box__detail--content dt {
  position: relative;
  width: 100%;
  padding-top: 40px;
}
.detail__contents .box__detail--content dt .label {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: -10px;
  width: 24%;
  max-width: 80px;
  height: auto;
  border: 1px solid #026934;
  border-radius: 40px;
  -webkit-box-shadow: 2px 2px 0 #026934;
          box-shadow: 2px 2px 0 #026934;
  aspect-ratio: 1/1;
}
.detail__contents .box__detail--content dt .label .text-img__wrap {
  width: 36%;
  max-width: 28px;
}
.detail__contents .box__detail--content dt .label .icon-img__wrap {
  width: 31%;
  max-width: 24px;
  margin-top: 7px;
}
.detail__contents .box__detail--content dt .img__wrap {
  border: 1px solid #026934;
  border-radius: 15px;
}
.detail__contents .box__detail--content dt .img__wrap img {
  width: 100%;
  border-radius: 15px;
}
.detail__contents .box__detail--content dd {
  margin-top: 30px;
}
.detail__contents .box__detail--content dd .title p {
  font-size: min(6.3vw, 24px);
  font-weight: 700;
  text-align: center;
}
.detail__contents .box__detail--content dd .detail {
  margin-top: 20px;
}
.detail__contents .box__detail--content dd .detail p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
.detail__contents .box__detail--content dd .list ul {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #026934;
  border-radius: 10px;
}
.detail__contents .box__detail--content dd .list ul li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #026934;
}
.detail__contents .box__detail--content dd .list ul li p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 40px;
  font-size: min(5vw, 18px);
  font-weight: 500;
}
.detail__contents .box__detail--content dd .list ul li p::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #026934;
  border-radius: 5px;
}
.detail__contents .box__detail--content dd .list ul li p::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("/img/common/icon-check-orange.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .detail__contents .wrap {
    border-radius: 50px;
  }
  .detail__contents .box {
    border-radius: 50px;
  }
  .detail__contents .box .box__title {
    padding: 80px 0 70px;
    border-radius: 50px 50px 0 0;
  }
  .detail__contents .box .box__title .inner {
    max-width: 1200px;
    padding-bottom: 0;
  }
  .detail__contents .box .box__title .inner::before, .detail__contents .box .box__title .inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 13vw;
    max-width: 130px;
    height: 13vw;
    max-height: 130px;
  }
  .detail__contents .box .box__title .inner::before {
    left: 0;
  }
  .detail__contents .box .box__title .inner::after {
    right: 0;
  }
  .detail__contents .box .box__title .text__wrap {
    width: 68%;
    padding: 20px 0 10px;
  }
  .detail__contents .box .box__title .text__wrap h3 {
    font-size: min(5.5vw, 72px);
    line-height: 1;
  }
  .detail__contents .box .box__title .text__wrap p {
    font-size: min(2.4vw, 24px);
  }
  .detail__contents .box__detail--title h4 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: initial;
    padding: 14px 100px;
    font-size: min(2.5vw, 34px);
  }
  .detail__contents .box__detail--title h4.sp-long::before, .detail__contents .box__detail--title h4.sp-long::after {
    height: 136px;
  }
  .detail__contents .box__detail--title h4.sp-long::before {
    background: url("/img/common/brackets-start-slim.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .detail__contents .box__detail--title h4.sp-long::after {
    background: url("/img/common/brackets-end-slim.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (min-width: 900px) {
  .detail__contents .box__detail--content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
    margin-top: 80px;
  }
  .detail__contents .box__detail--content dl {
    width: calc((100% - 100px) / 3);
    max-width: initial;
    margin: 0;
  }
  .detail__contents .box__detail--content dl + dl dt {
    position: relative;
  }
  .detail__contents .box__detail--content dl + dl dt::before {
    top: 35px;
    bottom: 0;
    left: -48px;
    right: auto;
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .detail__contents .box__detail--content dt .label {
    left: -30px;
  }
  .detail__contents .box__detail--content dt .label .icon-img__wrap {
    margin-top: 3px;
  }
  .detail__contents .box__detail--content dt .img__wrap {
    border-radius: 30px;
  }
  .detail__contents .box__detail--content dt .img__wrap img {
    border-radius: 30px;
  }
  .detail__contents .box__detail--content dd {
    margin-top: 30px;
  }
  .detail__contents .box__detail--content dd .title p {
    font-size: min(1.7vw, 24px);
  }
  .detail__contents .box__detail--content dd .list ul {
    padding: 25px 15px;
  }
  .detail__contents .box__detail--content dd .list ul li + li {
    margin-top: 20px;
    padding-top: 20px;
  }
  .detail__contents .box__detail--content dd .list ul li p {
    padding-left: 40px;
    font-size: min(1.7vw, 18px);
  }
}
@media (min-width: 1000px) {
  .detail__contents .box .box__title .inner::before, .detail__contents .box .box__title .inner::after {
    width: 160px;
    max-width: initial;
    height: 160px;
    max-height: initial;
  }
  .detail__contents .box .box__title .text__wrap {
    width: calc(100% - 360px);
  }
  .detail__contents .box .box__title .text__wrap h3 {
    font-size: min(5.5vw, 72px);
  }
  .detail__contents .box__detail--content {
    gap: 0 90px;
  }
  .detail__contents .box__detail--content dl {
    width: calc((100% - 180px) / 3);
  }
  .detail__contents .box__detail--content dl + dl dt::before {
    left: -72px;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1400px) {
  .detail__contents .box__detail--content dt .label .icon-img__wrap {
    margin-top: 7px;
  }
  .detail__contents .box__detail--content dd .list ul {
    padding: 30px;
  }
  .detail__contents .box__detail--content dd .list ul li + li {
    margin-top: 20px;
    padding-top: 20px;
  }
  .detail__contents .box__detail--content dd .list ul li p {
    padding-left: 40px;
    font-size: 18px;
  }
}

/*
assist-bottom
---------------------------*/
#assist-bottom .wrap {
  padding: 76px 0 100px;
  margin-bottom: 100px;
  background: #FEF8DE;
  border: 1px solid #026934;
  border-radius: 25px;
}
#assist-bottom .title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 57px;
}
#assist-bottom .title::before, #assist-bottom .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 47px;
}
#assist-bottom .title::before {
  left: 0;
  background: url("/img/use/line-start.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#assist-bottom .title::after {
  right: 0;
  background: url("/img/use/line-end.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#assist-bottom .title p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(5vw, 18px);
  font-weight: 700;
  text-align: center;
}
#assist-bottom .title p span {
  font-size: min(7vw, 24px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  paint-order: stroke;
  border-radius: 10px;
  text-stroke: 2px #026934;
  -webkit-text-stroke: 2px #026934;
}
#assist-bottom .btn {
  max-width: 580px;
  margin: 50px auto 0;
  border-radius: 10px;
}
#assist-bottom .btn a {
  display: block;
  padding: 22px 50px 26px;
  font-size: min(5.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 10px;
}
@media (min-width: 769px) {
  #assist-bottom .wrap {
    border-radius: 50px;
  }
  #assist-bottom .title {
    padding: 0 70px;
  }
  #assist-bottom .title::before, #assist-bottom .title::after {
    top: 0;
    bottom: auto;
    width: 32px;
    height: 50px;
  }
  #assist-bottom .title p {
    font-size: min(2.5vw, 24px);
  }
  #assist-bottom .title p span {
    font-size: min(3.5vw, 34px);
  }
  #assist-bottom .btn {
    border-radius: 30px;
  }
  #assist-bottom .btn a {
    padding: 31px 50px;
    font-size: 24px;
    border-radius: 30px;
  }
}/*# sourceMappingURL=use.css.map */