@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* ============== keyframes ============== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes Left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes Left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes Left-sp {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
@keyframes Left-sp {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

a img {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a img:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  width: 767px;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  body {
    width: 100%;
  }
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about__inner {
  margin: 0 40px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 71.875rem;
    margin: auto;
    padding: 0 1.5625rem;
  }
}

.about__area {
  position: relative;
  margin-top: -52px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__area {
    margin-top: -11vw;
  }
}

.about__box01 {
  background: url(../../images/about/about_01-sp.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1243px;
}
@media screen and (min-width: 768px) {
  .about__box01 {
    background: url(../../images/about/about_01.png) left center no-repeat;
    background-size: cover;
    height: 260px;
    max-width: 60rem;
    min-width: 740px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.about__texts {
  padding: 265px 58px 0;
}
@media screen and (min-width: 768px) {
  .about__texts {
    padding: 3.125rem 0 0 10.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .about__texts--re {
    padding: 3.125rem 0 0 5rem;
  }
}

@media screen and (min-width: 768px) {
  .about__title--pa {
    padding: 3.125rem 0 0 171px;
  }
}

.about__title {
  font-size: 39.3333334px;
  color: #1DA58D;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: min(1.5rem, 1.25vw);
    font-size: 24px;
    line-height: 1.2916666667;
  }
}

.about__text {
  font-size: 31.46666672px;
  margin-top: 18px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: min(1.125rem, 0.9375vw);
    font-size: 18px;
    line-height: 1.6666666667;
    margin-top: 1.25rem;
  }
}

.about__img01 {
  background: url(../../images/about/about_01-item-sp.png) center center no-repeat;
  background-size: cover;
  width: 82%;
  height: 543px;
  margin: 33px auto 0;
}
@media screen and (min-width: 768px) {
  .about__img01 {
    min-width: 232px;
    width: 24%;
    height: 220px;
    margin: 1.3125rem 0 0 min(6.25rem, 5.41vw);
  }
}

.about__box02 {
  background: url(../../images/about/about_02-sp.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1213px;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .about__box02 {
    background: url(../../images/about/about_02.png) right center no-repeat;
    background-size: cover;
    height: 260px;
    max-width: 60rem;
    min-width: 740px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-top: 41px;
  }
}

.about__img02 {
  background: url(../../images/about/about_02-item-sp.png) center center no-repeat;
  background-size: cover;
  width: 88%;
  height: 580px;
  margin: 35px auto 0;
}
@media screen and (min-width: 768px) {
  .about__img02 {
    background: url(../../images/about/about_02-item.png) center center no-repeat;
    background-size: cover;
    padding-top: 24%;
    width: min(100%, 238px);
    height: 230px;
    max-height: 17.5rem;
    min-height: 12rem;
    margin: 17px max(154px, 1vw) 0 5.9vw;
  }
}

.about__box03 {
  background: url(../../images/about/about_03-sp.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 900px;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .about__box03 {
    background: url(../../images/about/about_03.png) left center no-repeat;
    background-size: cover;
    height: 260px;
    max-width: 60rem;
    min-width: 740px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 39px;
  }
}

.about__img03 {
  background: url(../../images/about/about_03-item-sp.png) center center no-repeat;
  background-size: cover;
  width: 83%;
  height: 320px;
  margin: 32px auto 0;
}
@media screen and (min-width: 768px) {
  .about__img03 {
    background-size: contain;
    width: 41%;
    height: 220px;
    margin: 21px 0 0 3vw;
  }
}

.case__inner {
  padding: 0 40px 98px;
}
@media screen and (min-width: 768px) {
  .case__inner {
    max-width: 71.875rem;
    padding: 0 1.5625rem 9.375rem;
    margin: auto;
  }
}

.case__area {
  margin-top: 78px;
}
@media screen and (min-width: 768px) {
  .case__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.case__area01 {
  background: url(../../images/case/case_01-sp.png) center center no-repeat;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  height: 533px;
  text-align: center;
  position: relative;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .case__area01 {
    background: url(../../images/case/case_01.png) center top no-repeat;
    background-size: contain;
    max-width: 26.25rem;
    width: 100%;
    max-height: 20.3125rem;
    margin: 1.4375rem 0 0 0;
  }
}

.case__title {
  font-size: 39.3333334px;
  color: #1DA58D;
  padding-top: 57px;
}
@media screen and (min-width: 768px) {
  .case__title {
    font-size: 1.5rem;
    padding-top: 2.1875rem;
  }
}

.case__text {
  font-size: 31.46666672px;
  margin-top: 279px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .case__text {
    font-size: 1.125rem;
    margin-top: 10.5625rem;
  }
}

.case__text span {
  position: relative;
}

.case__text span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 18px;
  background-color: #F0B034;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .case__text span::after {
    height: 9px;
  }
}

.case__area02 {
  background: url(../../images/case/case_02-sp.png) center center no-repeat;
  background-size: cover;
  margin: 59px auto 0;
  width: 100%;
  height: 533px;
  text-align: center;
  position: relative;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .case__area02 {
    background: url(../../images/case/case_02.png) center top no-repeat;
    background-size: contain;
    max-width: 26.25rem;
    width: 100%;
    max-height: 20.3125rem;
    margin: 1.4375rem 0 0 2.5rem;
  }
}

.common {
  position: relative;
}

.common__btn {
  font-size: 49.16666675px;
  font-weight: 700;
  background: #F6A324;
  color: #fff;
  white-space: nowrap;
  padding: 33px 142px 33px 52px;
  border-radius: 62px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: fadeInUp 1.5s ease 5s both;
          animation: fadeInUp 1.5s ease 5s both;
}
@media screen and (min-width: 768px) {
  .common__btn {
    font-size: min(36px, 3vw);
    padding: 1rem 8rem 1rem 4rem;
    -webkit-animation: fadeInUp 1.5s ease 4.5s both;
            animation: fadeInUp 1.5s ease 4.5s both;
  }
}

.common__btn::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 48px;
  height: 50px;
  border-radius: 50%;
  right: 7.5%;
  top: 32%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .common__btn::after {
    width: 2.125rem;
    height: 2.1875rem;
    right: 4rem;
    top: 1.5625rem;
  }
}

.common__btn::before {
  content: "";
  position: absolute;
  top: 46%;
  right: 7.9%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotate(-90deg);
  border-top: 15px solid #F6A324;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .common__btn::before {
    top: 2.34375rem;
    right: 4.15625rem;
    border-top: 0.6875rem solid #F6A324;
    border-right: 0.4375rem solid transparent;
    border-left: 0.4375rem solid transparent;
  }
}

@media screen and (min-width: 768px) {
  .common__btn:hover {
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    color: #F6A324;
  }
}

@media screen and (min-width: 768px) {
  .common__btn:hover::before {
    border-top: 0.6875rem solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .common__btn:hover::after {
    background: #F6A324;
  }
}

.common__title-ja,
.common__title-en {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.common__title-ja h2,
.common__title-en h2 {
  display: inline-block;
  color: #fff;
  font-size: 55.06666676px;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, right top, left top, from(#28967A), to(#5CAD5D));
  background: linear-gradient(right, #28967A, #5CAD5D);
  border-radius: 0 0 40px 40px;
}
@media screen and (min-width: 768px) {
  .common__title-ja h2,
.common__title-en h2 {
    font-size: 2.875rem;
    letter-spacing: 0.01em;
    border-radius: 0 0 21px 21px;
  }
}

.common__title-en h2 {
  padding: 20px 55px 26px;
}
@media screen and (min-width: 768px) {
  .common__title-en h2 {
    padding: 7px 50px 13px;
  }
}

.common__title-ja h2 {
  font-size: 47.20000008px;
  padding: 24px 59px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .common__title-ja h2 {
    font-size: 2.5rem;
    padding: 0.6875rem 2.9375rem 1.125rem;
  }
}

.common__long h2 {
  padding: 20px 56px 35px;
}
@media screen and (min-width: 768px) {
  .common__long h2 {
    padding: 0.4375rem 2.9375rem 0.9375rem;
  }
}

.common__subtitle {
  font-size: 45.23333341px;
  color: #1DA58D;
  position: relative;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .common__subtitle {
    font-size: 2.25rem;
  }
}

.common__subtitle span {
  position: relative;
}

.common__subtitle span::before,
.common__subtitle::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 18px;
  background-color: #F0B034;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.common__subtitle.width span::before,
.common__subtitle.width::before {
  width: 100%;
  -webkit-transition: 1s linear 0.5s;
  transition: 1s linear 0.5s;
}
.common__subtitle.width span.second::before {
  width: 100%;
  -webkit-transition: 1s linear 1.5s;
  transition: 1s linear 1.5s;
}
.common__subtitle--none.width::before {
  width: 0;
}

.common__title-en--service {
  width: 47%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .common__title-en--service {
    width: 292px;
    height: 36px;
    padding: 1px;
    position: relative;
    z-index: 1;
  }
}

.common__title-en--service h2 {
  padding: 25px 48px 27px;
}
@media screen and (min-width: 768px) {
  .common__title-en--service h2 {
    padding: 25px 48px 27px;
  }
}

.contact__inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 40.625rem;
    padding: 0 1.5625rem;
    margin: auto;
  }
}

.contact__area {
  margin-top: 78px;
  margin-left: 3px;
  padding-bottom: 157px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__area {
    margin-top: 3.875rem;
    text-align: center;
    padding-bottom: 9.4375rem;
  }
}

.faq {
  background-color: rgba(0, 0, 0, .05);
}

.faq__inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 53.125rem;
    margin: auto;
    padding: 0 1.5625rem;
  }
}

.faq__area {
  margin-top: 78px;
  text-align: center;
  padding-bottom: 101px;
}
@media screen and (min-width: 768px) {
  .faq__area {
    margin-top: 3.6875rem;
    padding-bottom: 9.25rem;
  }
}

.faq__boxs {
  margin-top: 79px;
}
@media screen and (min-width: 768px) {
  .faq__boxs {
    margin-top: 3.75rem;
  }
}

.faq__title {
  font-size: 39.3333334px;
  color: #fff;
  background-color: #28967A;
  padding: 8px 0 11px;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 1.5rem;
  }
}

.faq__title02 {
  font-size: 39.3333334px;
  color: #fff;
  background-color: #28967A;
  padding: 8px 0 11px;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .faq__title02 {
    font-size: 1.5rem;
    margin-top: 3.75rem;
  }
}

.faq__box {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  margin-top: 38px;
  padding: 40px 38px 34px;
}
@media screen and (min-width: 768px) {
  .faq__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.25rem;
    padding: 0.6875rem 2.75rem 1.8125rem 1.875rem;
  }
}

.faq__box + .faq__box {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .faq__box + .faq__box {
    margin-top: 1.1875rem;
  }
}

.faq__q {
  background: url(../../images/faq/faq_q.png) center center no-repeat;
  background-size: contain;
  width: 13%;
  height: 100px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .faq__q {
    width: 3.125rem;
    margin: 0;
  }
}

.faq__item {
  text-align: left;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .faq__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 2rem;
    margin-left: 1.875rem;
  }
}

.faq__item h5 {
  font-size: 39.3333334px;
  color: #1DA58D;
}
@media screen and (min-width: 768px) {
  .faq__item h5 {
    font-size: 1.5rem;
    font-size: 24px;
    line-height: 1.2916666667;
  }
}

.faq__text {
  font-size: 31.46666672px;
  margin-top: 15px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .faq__text {
    font-size: 1.125rem;
    margin-top: 1.6875rem;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

@media screen and (min-width: 768px) {
  .faq__text--mt1 {
    margin-top: 0.6875rem;
  }
}

.flow__inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    max-width: 71.875rem;
    margin: 0 auto;
    padding: 0 1.5625rem;
  }
}

.flow__area {
  text-align: center;
  margin-top: 79px;
  padding-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .flow__area {
    margin-top: 3.875rem;
    padding-bottom: 9.3125rem;
  }
}

.flow__box {
  margin-top: 72px;
  position: relative;
  -webkit-transition: all 5s;
  transition: all 5s;
}
@media screen and (min-width: 768px) {
  .flow__box {
    margin-top: 3rem;
    padding-left: 18%;
  }
}

.flow__box::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 5px;
  background-color: #C6DE23;
  top: 5px;
  left: 71px;
  z-index: -1;
  -webkit-transition: 6s ease-out 1s;
  transition: 6s ease-out 1s;
}
@media screen and (min-width: 768px) {
  .flow__box::before {
    width: 3px;
    top: 4.125rem;
    left: 22%;
  }
}

.flow__box.active::before {
  height: 87%;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px;
}
@media screen and (min-width: 768px) {
  .flow__list {
    gap: 1.875rem;
  }
}

.flow__list + .flow__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .flow__list + .flow__list {
    margin-top: 1.6875rem;
  }
}

.flow__number {
  width: 30%;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .flow__number {
    width: 11.8%;
    margin-top: 0.6875rem;
  }
}

.flow__number img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow__texts {
  width: 100%;
  margin-top: 53px;
}
@media screen and (min-width: 768px) {
  .flow__texts {
    margin-top: 1.875rem;
  }
}

.flow__texts h4 {
  font-size: 45.23333341px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .flow__texts h4 {
    font-size: 2.25rem;
  }
}

.flow__text {
  font-size: 31.46666672px;
  text-align: left;
  margin-top: 28px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .flow__text {
    font-size: 1.125rem;
    margin-top: 1.1875rem;
    color: #414141;
  }
}

.footer {
  background: -webkit-gradient(linear, left top, right top, from(#28967A), to(#5CAD5D));
  background: linear-gradient(left, #28967A, #5CAD5D);
  color: #fff;
}

.footer__area {
  text-align: center;
  padding-top: 78px;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .footer__area {
    padding-top: 40px;
    max-width: 638px;
    margin: auto;
  }
}

.footer__logo {
  display: inline-block;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 200px;
    width: 100%;
  }
}

.footer__title {
  font-size: 35.40000006px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 21px;
    margin-top: 13px;
  }
}

.footer__links {
  display: inline-block;
  margin-top: 77px;
  margin-left: 38px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.4375rem;
    margin-left: 1.3125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link {
  font-size: 27.53333338px;
  text-align: left;
  display: block;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer__link {
    font-size: 0.875rem;
  }
}

.footer__link + .footer__link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .footer__link + .footer__link {
    margin-top: 0;
    margin-left: 4.4375rem;
  }
}

.footer__link span {
  position: absolute;
  width: 29px;
  height: 29px;
  background-color: #fff;
  border-radius: 50px;
  top: 6px;
  left: -40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .footer__link span {
    width: 1rem;
    height: 1rem;
    top: 0.1875rem;
    left: -1.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__link:hover > span {
    border-radius: 0.625rem;
    width: 120%;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .footer__link:hover {
    color: #28967A;
  }
}

.footer__link span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #7a0;
  border-right: 2px solid #7a0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .footer__link span::before {
    left: 0.25rem;
    top: 0.3125rem;
    width: 0.375rem;
    height: 0.375rem;
    border-top: 0.0625rem solid #7a0;
    border-right: 0.0625rem solid #7a0;
  }
}

.footer__copyright {
  font-size: 23.60000004px;
  font-weight: 200;
  margin-top: 76px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.75rem;
    margin-top: 2.5rem;
    margin-left: 0.125rem;
  }
}

.gotop {
  display: block;
  width: 93px;
  height: 92px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #28967A;
  border: 1px solid #fff;
  padding-top: 30px;
  text-align: center;
  font-size: 62%;
  text-decoration: none;
  position: fixed;
  bottom: 100px;
  right: 38px;
  z-index: 10000;
  opacity: 0;
}
.gotop.is-show {
  opacity: 1;
  visibility: visible;
}

.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  width: 37px;
  height: 37px;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.gotop:hover {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: #28967A 1px solid;
}

.gotop:hover::before {
  border-top-color: #28967A;
  border-right-color: #28967A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .gotop {
    display: block;
    width: 2.9375rem;
    height: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #28967A;
    border: 1px solid #fff;
    padding-top: 1.875rem;
    text-align: center;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    position: fixed;
    bottom: 90px;
    right: 3.125rem;
    z-index: 10000;
  }
  .gotop::before {
    content: "";
    display: block;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    width: 42%;
    height: 40%;
    top: 42%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .gotop:hover {
    opacity: 1;
  }
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.kv {
  background: url(../../images/common/bg-sp.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 216.5%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv {
    background: url(../../images/common/bg.png) right center no-repeat;
    background-size: cover;
    padding-top: 66.666666%;
    min-height: 860px;
  }
}

.kv__logo {
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 393px;
  -webkit-animation: fadeIn 1s ease 5s both;
          animation: fadeIn 1s ease 5s both;
}
@media screen and (min-width: 768px) {
  .kv__logo {
    width: 14.75rem;
    top: -0.375rem;
    -webkit-animation: fadeIn 1.5s ease 4.5s both;
            animation: fadeIn 1.5s ease 4.5s both;
  }
}

.kv__header {
  position: absolute;
  color: #fff;
  top: 9.3%;
  left: 5%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .kv__header {
    top: 10.3%;
    left: 15.6%;
  }
}

.kv__title {
  font-size: 86.53333348px;
  font-weight: 900;
  position: relative;
  -webkit-animation: fadeInUp 1.5s ease 0.8s both;
          animation: fadeInUp 1.5s ease 0.8s both;
}
@media screen and (min-width: 768px) {
  .kv__title {
    font-size: min(5.1875rem, 4.322vw);
  }
}

.kv__title::before {
  content: "";
  position: absolute;
  width: 94.5%;
  height: 44px;
  background: #F0B034;
  bottom: 0;
  z-index: -1;
  -webkit-animation: Left-sp 1.5s ease 4s both;
          animation: Left-sp 1.5s ease 4s both;
}
@media screen and (min-width: 768px) {
  .kv__title::before {
    width: 100%;
    height: 1.875rem;
    bottom: 0.5rem;
    -webkit-animation: Left 1.5s ease 3s both;
            animation: Left 1.5s ease 3s both;
  }
}

.kv__title span {
  font-size: 137.6666669px;
}
@media screen and (min-width: 768px) {
  .kv__title span {
    font-size: min(7.1875rem, 5.989vw);
  }
}

.kv__title span::before {
  content: "";
  position: absolute;
  width: 94.5%;
  height: 44px;
  background: #F0B034;
  top: 46%;
  z-index: -1;
  -webkit-animation: Left-sp 1.5s ease 3s both;
          animation: Left-sp 1.5s ease 3s both;
}
@media screen and (min-width: 768px) {
  .kv__title span::before {
    display: none;
  }
}

.kv__subtitle {
  font-size: 45.23333341px;
  margin-top: 97px;
  display: inline-block;
  background: #fff;
  color: #28967A;
  opacity: 0.7;
  font-weight: 700;
  padding: 15px 0px 15px 21px;
  letter-spacing: 0.06em;
  -webkit-animation: fadeInUp1 1.5s ease 2s both;
          animation: fadeInUp1 1.5s ease 2s both;
}
@media screen and (min-width: 768px) {
  .kv__subtitle {
    font-size: min(2.25rem, 1.875vw);
    margin-top: 3.3125rem;
    padding: 0.5rem 0 0.5rem 1.3125rem;
  }
}

.kv__text {
  font-size: 51.13333342px;
  margin-top: 37px;
  padding-left: 3px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  -webkit-animation: fadeInUp 1.5s ease 2s both;
          animation: fadeInUp 1.5s ease 2s both;
}
@media screen and (min-width: 768px) {
  .kv__text {
    font-size: min(2.5625rem, 2.135vw);
    line-height: 1.8;
    margin-top: 1.875rem;
  }
}

.kv__btn-area {
  position: absolute;
  bottom: 13.3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .kv__btn-area {
    bottom: 32.5%;
  }
}

.service {
  background-color: rgba(0, 0, 0, .05);
}

.service__inner {
  margin: 100px 39px 0 40px;
  padding-bottom: 94px;
}
@media screen and (min-width: 768px) {
  .service__inner {
    max-width: 71.875rem;
    margin: 152px auto 0;
    padding: 0 1.5625rem 1.3125rem;
  }
}

.service__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .service__area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.service__img {
  background: url(../../images/service/service_item-sp.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 560px;
}
@media screen and (min-width: 768px) {
  .service__img {
    background-size: contain;
    max-width: 500px;
    margin-top: -37px;
  }
}

.service__description {
  margin-top: 77px;
}
@media screen and (min-width: 768px) {
  .service__description {
    margin-top: 7.75rem;
    padding-left: 3.75rem;
  }
}

.service__description-title {
  font-size: 39.3333334px;
  color: #1DA58D;
}
@media screen and (min-width: 768px) {
  .service__description-title {
    font-size: 1.5rem;
  }
}

.service__texts {
  font-size: 31.46666672px;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .service__texts {
    font-size: 1.125rem;
    font-size: 18px;
    line-height: 1.6666666667;
    margin-top: 3.25rem;
  }
}

.service__text + .service__text {
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .service__text + .service__text {
    margin-top: 1.875rem;
  }
}

.support {
  background-color: rgba(0, 0, 0, .05);
}

@media screen and (min-width: 768px) {
  .support__inner {
    max-width: 71.875rem;
    margin: 0 auto;
    padding: 0 1.5625rem;
  }
}

.support__area {
  margin-top: 66px;
}
@media screen and (min-width: 768px) {
  .support__area {
    margin-top: 4.6875rem;
  }
}

.support__img {
  width: 54.5%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .support__img {
    width: 91.5%;
  }
}

.support__btn-area {
  text-align: center;
  margin-top: 105px;
  padding-bottom: 131px;
}
@media screen and (min-width: 768px) {
  .support__btn-area {
    padding-bottom: 10.1875rem;
  }
}

.width1.width::after {
  width: 100%;
  -webkit-transition: 1s linear 0.5s;
  transition: 1s linear 0.5s;
}

.width2.width::after {
  width: 100%;
  -webkit-transition: 1s linear 1.5s;
  transition: 1s linear 1.5s;
}

.wrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .wrap {
    overflow: visible;
    overflow: initial;
  }
}

.zcwf_col_lab {
  font-size: 27.53333338px;
}

#form {
  margin-top: 73px;
  margin-left: -11px;
}
@media screen and (min-width: 768px) {
  #form {
    margin-top: 3.3125rem;
    margin-left: -0.5625rem;
  }
}
/*# sourceMappingURL=styles.css.map */
