@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

*,
*::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,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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%;
  height: auto;
}

/* 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;
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.h2-title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .h2-title {
    margin-bottom: 3vw;
    font-size: min(9.3vw, 180px);
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1150px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

/******* flex ******/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.bold {
  font-weight: bold;
}

.section__catch {
  font-size: 56px;
  line-height: 1.1714285714;
  font-weight: bold;
  color: #38744f;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .section__catch {
    font-size: 6.6666666667vw;
    text-indent: -2em;
    margin-bottom: 5vw;
  }
}

.section__lead {
  font-size: 28.8px;
  line-height: 1.7222222222;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .section__lead {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
.section__lead strong {
  color: #39b382;
}

.excl {
  display: inline-block;
  -webkit-transform: rotate(20deg) translate(3px, -1px) scale(1.2);
          transform: rotate(20deg) translate(3px, -1px) scale(1.2);
}

/*****スクロール時にふわっと**********/
.fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: unset;
          transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.fadein.scrollin.delay200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/*------------------------
slider
------------------------*/
.swiper-button-prev,
.swiper-button-next {
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  background: no-repeat center/contain url(../images/slider-arrow@2x.png);
}

.swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*------------------------
topnav
------------------------*/
#totop {
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  bottom: 1.875rem;
  right: 30px;
  right: 1.875rem;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#totop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #totop {
    width: 10vw;
    height: 10vw;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

.footer {
  padding: 80px 0;
  padding: 5rem 0;
  background: repeat center/32px 30px url(../images/footer_bg@2x.png);
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0;
  }
}
.footer::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  height: 1.5625rem;
  background-color: #38744f;
}
@media screen and (max-width: 768px) {
  .footer::after {
    height: 1.25rem;
  }
}
.footer .inner {
  max-width: 1370px;
}

.footer__nav-wrapper.flex {
  gap: 30px;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__nav-wrapper.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;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-wrapper.flex {
    gap: 1.25rem;
  }
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
}
@media (max-width: 1024px) {
  .footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__link {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 1rem;
  }
}

.footer__main .footer__links li .footer__link {
  font-size: 24px;
  font-size: 1.5rem;
  padding-inline: 10px;
  padding-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__main .footer__links li .footer__link {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
.footer__main .footer__links li .footer__link::before {
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 2px;
  height: 24px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .footer__main .footer__links li .footer__link::before {
    height: 16px;
    top: 1px;
  }
}
.footer__main .footer__links li:last-child .footer__link::after {
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 2px;
  height: 24px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .footer__main .footer__links li:last-child .footer__link::after {
    height: 16px;
    top: 1px;
  }
}

.footer__company {
  width: 100%;
  max-width: 775px;
  max-width: 48.4375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .footer__company {
    max-width: 37.5rem;
    margin-bottom: 0.3125rem;
  }
}

.footer__time {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px 30px;
  gap: 0rem 1.875rem;
}
.footer__time span {
  display: block;
}
@media (max-width: 1024px) {
  .footer__time {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__time {
    -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;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5em;
  }
}

.copy-right {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.25;
}
@media (max-width: 1024px) {
  .copy-right {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .copy-right {
    font-size: 0.75rem;
  }
}

.footer__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media (max-width: 1024px) {
  .footer__nav {
    width: 100%;
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    padding-top: 0;
  }
}
.footer__nav .footer__links {
  gap: 0 11.2107623318%;
}
@media screen and (max-width: 768px) {
  .footer__nav .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 360px) {
  .footer__nav .footer__links {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.footer__nav .footer__link {
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .footer__nav .footer__link {
    padding-left: 1.375rem;
    font-size: 0.875rem;
  }
}
.footer__nav .footer__link::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  background: no-repeat center/contain url(../images/footer_link@2x.png);
}
@media screen and (max-width: 768px) {
  .footer__nav .footer__link::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.footer__nav--title img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media (max-width: 1024px) {
  .footer__nav--title img {
    height: auto;
  }
}

.header {
  width: 100%;
  height: 80px;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 3.75rem;
  }
}
.header.on-scroll {
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 768px) {
  .header.on-scroll {
    height: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .header.on-scroll .header__inner {
    padding: 0.3125rem 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header.on-scroll .header__btn {
    top: 15px;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}

.header__logo {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 11.25rem;
  }
}

.header__btn {
  width: 36px;
  height: 21px;
  position: fixed;
  top: 19px;
  right: 23px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  display: block;
  left: 0;
}

.header.is-active .header__btn span {
  background-color: #6c6c6c;
}

.header__btn span:nth-child(1) {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 9px;
}

.header__btn span:nth-child(3) {
  top: 19px;
}

.header.is-active .header__btn span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 9px;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: calc(100vw - 80px);
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow-y: scroll;
}
.headerSp__nav .header__nav-items {
  padding: 70px 25px;
  width: 100%;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 0px;
}
.headerSp__nav .header__nav-item.--menu:nth-of-type(7) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.headerSp__nav .header__nav-item.--link {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.headerSp__nav .header__nav-item a {
  color: #3e3e3e;
  font-size: 6.5vw;
  line-height: 2;
  font-weight: 800;
}

body.nav-open {
  overflow: hidden;
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__nav .header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}
.headerPc__nav .header__nav-item {
  width: 160px;
  width: 10rem;
}

.header.is-active .headerSp__nav {
  right: 0;
}

/*------------------------
mv
------------------------*/
.mv__img img {
  width: 100%;
  height: auto;
}

/*------------------------
step
------------------------*/
.step {
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .step {
    padding: 10vw 0 0;
  }
}
.step .section__lead img {
  display: inline-block;
  width: 295px;
  width: 18.4375rem;
  margin-inline: 5px;
  margin-inline: 0.3125rem;
  -webkit-transform: translateY(7%);
          transform: translateY(7%);
}
@media screen and (max-width: 768px) {
  .step .section__lead img {
    width: 33.3333333333vw;
  }
}

.step__item {
  position: relative;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .step__item {
    padding-bottom: 5.3333333333vw;
  }
}
.step__item:nth-of-type(2) {
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(2) {
    padding-top: 13.3333333333vw;
  }
}
.step__item:nth-of-type(2)::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #f2f7f3;
  margin-inline: calc(50% - 50vw);
  z-index: -1;
}
.step__item:nth-of-type(2) .step__item--bg {
  top: 118px;
  right: -28%;
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(2) .step__item--bg {
    top: 5vw;
    right: -17px;
  }
}
.step__item:nth-of-type(2) .step__flowItem--result .step__flowDesc .main {
  background: no-repeat right 52px bottom/255px url(../images/ep02_icon@2x.png);
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(2) .step__flowItem--result .step__flowDesc .main {
    background: no-repeat center bottom/30% url(../images/ep02_icon@2x.png);
  }
}
.step__item:nth-of-type(3) {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(3) {
    padding-top: 13.3333333333vw;
  }
}
.step__item:nth-of-type(3) .step__item--bg {
  top: 55px;
  right: -27%;
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(3) .step__item--bg {
    top: 6vw;
    right: -17px;
  }
}
.step__item:nth-of-type(3) .step__flowItem--result .step__flowDesc .main {
  background: no-repeat right -10px bottom/300px url(../images/ep03_icon@2x.png);
}
@media screen and (max-width: 768px) {
  .step__item:nth-of-type(3) .step__flowItem--result .step__flowDesc .main {
    background: no-repeat center bottom/38% url(../images/ep03_icon@2x.png);
    padding: 3.5vw 2vw 25vw 4vw;
  }
}

.step__item--bg {
  width: 86%;
  position: absolute;
  top: -30px;
  right: -25%;
  z-index: -1;
}
@media (max-width: 1500px) {
  .step__item--bg {
    width: 50% !important;
    right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .step__item--bg {
    width: 50% !important;
    top: -3vw;
    right: -17px !important;
  }
}

.step__item--en {
  width: 263px;
  width: 16.4375rem;
  margin-bottom: -50px;
  margin-bottom: -3.125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .step__item--en {
    width: 18%;
    margin-bottom: -3vw;
    margin-left: 1vw;
  }
}

.step__item--title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .step__item--title {
    font-size: 4.5vw;
    margin-bottom: 3vw;
  }
}
.step__item--title .big {
  font-size: 100px;
  font-size: 6.25rem;
  margin-inline: 10px;
  margin-inline: 0.625rem;
}
@media screen and (max-width: 768px) {
  .step__item--title .big {
    font-size: 10vw;
    margin-inline: 1vw;
  }
}
.step__item--title .baai {
  font-size: 46px;
  font-size: 2.875rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .step__item--title .baai {
    font-size: 5vw;
  }
}

.step__item--text {
  font-size: 28.8px;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 768px) {
  .step__item--text {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}

.step__flowWrapper {
  position: relative;
  padding: 108px 0 108px 0;
  padding: 6.75rem 0 6.75rem 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step__flowWrapper {
    padding: 10vw 0;
  }
}
.step__flowWrapper .dots {
  width: 20px;
  width: 1.25rem;
  position: absolute;
  left: 75px;
  left: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .step__flowWrapper .dots {
    width: 1.5vw;
    left: 6.6vw;
  }
}
.step__flowWrapper .dots.--top {
  top: 0;
}
.step__flowWrapper .dots.--bottom {
  bottom: 0;
}
.step__flowWrapper::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 83px;
  left: 5.1875rem;
  margin: auto;
  width: 3px;
  width: 0.1875rem;
  height: calc(100% - 340px);
  background-color: #b4b4b5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .step__flowWrapper::before {
    left: 7vw;
    width: 0.6vw;
    height: calc(100% - 31vw);
  }
}
.step__flowWrapper .mb0 {
  margin-bottom: 0;
}

.step__flowItem {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .step__flowItem {
    margin-bottom: 2.6666666667vw;
    gap: 2vw;
  }
}
.step__flowItem.--green .step__flowTitle {
  font-size: 28.8px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #38744f;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .step__flowItem.--green .step__flowTitle {
    font-size: 2.6666666667vw;
  }
}
.step__flowItem.--green .step__flowDesc {
  color: #38744f;
}
.step__flowItem.step__flowItem--result {
  margin-top: -36px;
  margin-top: -2.25rem;
}
@media screen and (max-width: 768px) {
  .step__flowItem.step__flowItem--result {
    margin-top: -3vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .step__flowItem.step__flowItem--result .step__flowTitle {
    margin-top: 5vw;
  }
}
.step__flowItem.step__flowItem--result .step__flowDesc .main {
  border: 5px solid #38744f;
  border-radius: 30px;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
  margin-left: -40px;
  margin-left: -2.5rem;
  background: no-repeat right 10px bottom/contain url(../images/ep01_icon@2x.png);
}
@media screen and (max-width: 768px) {
  .step__flowItem.step__flowItem--result .step__flowDesc .main {
    border: 0.8vw solid #38744f;
    border-radius: 4vw;
    padding: 3.5vw 2vw 23vw 4vw;
    margin-left: -4vw;
    background: no-repeat center bottom/30% url(../images/ep01_icon@2x.png);
  }
}

.step__flowTitle {
  color: #38744f;
  width: 168px;
  width: 10.5rem;
  height: 168px;
  height: 10.5rem;
  border-radius: 50%;
  background-color: #f6eaa3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step__flowTitle {
    width: 14.6666666667vw;
    height: 14.6666666667vw;
  }
}
.step__flowTitle span {
  display: inline-block;
  -webkit-transform: translateX(0.1%) scaleX(0.8);
          transform: translateX(0.1%) scaleX(0.8);
  font-size: 25.6px;
  line-height: 1.2;
  font-weight: bold;
  font-family: "Fahkwang", sans-serif;
}
@media screen and (max-width: 768px) {
  .step__flowTitle span {
    font-size: 2.6666666667vw;
  }
}

.step__flowDesc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.step__flowDesc .main {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .step__flowDesc .main {
    font-size: 3.9vw;
  }
}
.step__flowDesc .sub {
  font-size: 22.4px;
  line-height: 1.724137931;
}
@media screen and (max-width: 768px) {
  .step__flowDesc .sub {
    font-size: 3.3vw;
  }
}

/*------------------------
cta
------------------------*/
.cta {
  padding: 38px 0 68px;
  padding: 2.375rem 0 4.25rem;
  background: repeat top left/20px 21px url(../images/cta_bg@2x.png);
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 8vw 0 10vw;
  }
}

.cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------
reason
------------------------*/
.reason {
  padding: 100px 0;
  padding: 6.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 12vw 0;
  }
}
.reason .section__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason .section__title {
    margin-bottom: 4vw;
  }
}

.reason__medals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .reason__medals {
    margin-bottom: 8vw;
  }
}

.reason__item {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.reason__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .reason__item {
    margin-bottom: 6vw;
  }
}
.reason__item:nth-child(1) .reason__item--img {
  width: 97%;
  padding-top: 78px;
  padding-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(1) .reason__item--img {
    width: 87%;
    padding-top: 15vw;
  }
}
.reason__item:nth-child(1) .reason__item--title {
  top: 24px;
  top: 1.5rem;
  left: 144px;
  left: 9rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(1) .reason__item--title {
    top: 2vw;
    left: 4vw;
  }
}
.reason__item:nth-child(1) .reason__item--title::before {
  left: -53px;
  left: -3.3125rem;
  height: 140px;
  height: 8.75rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(1) .reason__item--title::before {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    left: -3.5vw;
    height: 16vw;
  }
}
.reason__item:nth-child(1) .reason__item--title::after {
  right: -20px;
  right: -1.25rem;
  height: 80px;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(1) .reason__item--title::after {
    -webkit-transform: rotate(16deg);
            transform: rotate(16deg);
    right: -2vw;
    height: 11vw;
  }
}
.reason__item:nth-child(2) .reason__item--img {
  width: 60%;
  padding-top: 295px;
  padding-top: 18.4375rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__item--img {
    padding-top: 24vw;
  }
}
.reason__item:nth-child(2) .reason__item--title {
  top: 129px;
  top: 8.0625rem;
  left: auto;
  right: 118px;
  right: 7.375rem;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__item--title {
    top: 5vw;
    right: 4vw;
  }
}
.reason__item:nth-child(2) .reason__item--title::before {
  -webkit-transform: rotate(-21deg);
          transform: rotate(-21deg);
  left: -38px;
  left: -2.375rem;
  height: 137px;
  height: 8.5625rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__item--title::before {
    -webkit-transform: rotate(-19deg);
            transform: rotate(-19deg);
    left: -1vw;
    height: 16vw;
  }
}
.reason__item:nth-child(2) .reason__item--title::after {
  bottom: -10px;
  bottom: -0.625rem;
  right: -48px;
  right: -3rem;
  height: 189px;
  height: 11.8125rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__item--title::after {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    right: -1vw;
    height: 21vw;
  }
}
.reason__item:nth-child(3) .reason__item--img {
  width: 66%;
  padding-top: 295px;
  padding-top: 18.4375rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(3) .reason__item--img {
    padding-top: 24vw;
  }
}
.reason__item:nth-child(3) .reason__item--title {
  top: 112px;
  top: 7rem;
  left: 120px;
  left: 7.5rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(3) .reason__item--title {
    top: 5vw;
    left: 4vw;
  }
}
.reason__item:nth-child(3) .reason__item--title::before {
  left: -41px;
  left: -2.5625rem;
  height: 178px;
  height: 11.125rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(3) .reason__item--title::before {
    -webkit-transform: rotate(-16deg);
            transform: rotate(-16deg);
    left: -2vw;
    height: 20vw;
  }
}
.reason__item:nth-child(3) .reason__item--title::after {
  right: -33px;
  right: -2.0625rem;
  height: 147px;
  height: 9.1875rem;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(3) .reason__item--title::after {
    -webkit-transform: rotate(21deg);
            transform: rotate(21deg);
    right: -3vw;
    height: 17vw;
  }
}

.reason__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reason__top {
    margin-bottom: 4vw;
  }
}

.reason__item--title {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1.0714285714;
  font-weight: bold;
  text-align: center;
  color: #38744f;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 22px;
  padding-inline: 1.375rem;
}
@media screen and (max-width: 768px) {
  .reason__item--title {
    font-size: 8vw;
    padding-inline: 2vw;
  }
}
.reason__item--title::before, .reason__item--title::after {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  background-color: #38744f;
}
@media screen and (max-width: 768px) {
  .reason__item--title::before, .reason__item--title::after {
    width: 1vw;
  }
}
.reason__item--title::before {
  bottom: -10px;
  bottom: -0.625rem;
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
}
@media screen and (max-width: 768px) {
  .reason__item--title::before {
    -webkit-transform: rotate(-16deg);
            transform: rotate(-16deg);
    bottom: -1vw;
  }
}
.reason__item--title::after {
  bottom: 0;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
}

.reason__item--img {
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason__item--img {
    margin: 0 auto 4vw;
  }
}

.reason__item--lead {
  font-size: 32px;
  line-height: 1.65;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .reason__item--lead {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.reason__item--lead img {
  display: inline-block;
  width: 259.2px;
  margin-right: 5px;
  margin-right: 0.3125rem;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  .reason__item--lead img {
    width: 35vw;
  }
}

.reason__item--desc .item {
  font-size: 24px;
  line-height: 1.6666666667;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .reason__item--desc .item {
    font-size: 3vw;
    padding-bottom: 1.5vw;
    margin-bottom: 2vw;
  }
}

/*------------------------
google口コミ
------------------------*/
.evaluation__cont {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.evaluation__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .evaluation__title {
    margin-bottom: 1.875rem;
  }
}
.evaluation__title .google-percent {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 150px;
  font-size: 9.375rem;
  line-height: 0.8;
  color: #e94738;
  font-weight: bold;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  font-family: "Archivo Black", sans-serif;
}
@media (max-width: 1140px) {
  .evaluation__title .google-percent {
    top: 0;
    font-size: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .evaluation__title .google-percent {
    top: 16vw;
    right: 0vw;
    font-size: 17vw;
  }
}
.evaluation__title .google-percent .number {
  font-size: 240px;
  font-size: 15rem;
  line-height: 0.8;
}
@media (max-width: 1140px) {
  .evaluation__title .google-percent .number {
    font-size: 19vw;
  }
}
@media screen and (max-width: 768px) {
  .evaluation__title .google-percent .number {
    font-size: 25vw;
  }
}
.evaluation__title.--02 .all-rate {
  position: absolute;
  top: 9%;
  left: 48%;
  font-size: 46px;
  font-size: 2.875rem;
  font-family: "Fahkwang", sans-serif;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1150px) {
  .evaluation__title.--02 .all-rate {
    font-size: clamp(20px, 4.1vw, 46px);
  }
}
@media screen and (max-width: 768px) {
  .evaluation__title.--02 .all-rate {
    top: 9.6%;
    font-size: clamp(10px, 3.6vw, 46px);
  }
}
.evaluation__title.--03 {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .evaluation__title.--03 {
    margin-bottom: 1vw;
  }
}

.evaluation__catch {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .evaluation__catch {
    font-size: clamp(12px, 3vw, 20px);
    margin-bottom: 3vw;
  }
}

.review-card {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 30px;
  padding: 1.875rem;
}

.google-icon {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  z-index: -1;
}

.author-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.author-wrap .left .img {
  width: 50px;
  width: 3.125rem;
}
.author-wrap .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.author-wrap .right .author {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
}
.author-wrap .right .date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #a9a9a9;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.rating img {
  display: block;
  width: 30px;
  width: 1.875rem;
}

.review-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.evaluation .swiper {
  padding-inline: 18px;
  padding-inline: 1.125rem;
}
.evaluation .swiper-slide {
  min-height: 420px;
  min-height: 26.25rem;
}
.evaluation .swiper-button-prev,
.evaluation .swiper-button-next {
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
}
.evaluation .swiper-button-prev {
  left: 0 !important;
}
.evaluation .swiper-button-next {
  right: 0 !important;
}

.evaluation__bottom {
  width: 95%;
  margin: 0 auto;
}

/*------------------------
service
------------------------*/
.service {
  padding: 100px 0;
  padding: 6.25rem 0;
  background-color: #f2f7f3;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 12vw 0;
  }
}
.service .section__lead img {
  display: inline-block;
  width: 295px;
  width: 18.4375rem;
  margin-right: 0.1em;
}
@media screen and (max-width: 768px) {
  .service .section__lead img {
    width: 30vw;
  }
}
.service .section__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service .section__title {
    margin-bottom: 4vw;
  }
}

.service__item {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  border-radius: 1.875rem;
  padding: 3.6363636364% 5.4545454545%;
}
@media screen and (max-width: 768px) {
  .service__item {
    margin-bottom: 3vw;
    border-radius: 3vw;
  }
}
.service__item:last-child {
  margin-bottom: 0;
}
.service__item:nth-child(1) {
  background: no-repeat right 50px bottom/21% url(../images/service_bg01@2x.png);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .service__item:nth-child(1) {
    padding-bottom: 40vw;
    background: no-repeat center bottom/40% url(../images/service_bg01@2x.png);
    background-color: #fff;
  }
}
.service__item:nth-child(2) {
  background: no-repeat right 45px bottom/26% url(../images/service_bg02@2x.png);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .service__item:nth-child(2) {
    padding-bottom: 35vw;
    background: no-repeat center bottom/50% url(../images/service_bg02@2x.png);
    background-color: #fff;
  }
}
.service__item:nth-child(3) {
  background: no-repeat right 30px bottom 25px/29% url(../images/service_bg03@2x.png);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .service__item:nth-child(3) {
    padding-bottom: 33vw;
    background: no-repeat center bottom/50% url(../images/service_bg03@2x.png);
    background-color: #fff;
  }
}

.service__item--title {
  font-size: 48px;
  line-height: 1.5;
  font-weight: 900;
  color: #38744f;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  border-bottom: 3px solid #38744f;
}
@media screen and (max-width: 768px) {
  .service__item--title {
    font-size: 6vw;
    padding-bottom: 1vw;
    margin-bottom: 2vw;
    border-bottom: 1vw solid #38744f;
  }
}
.service__item--title span {
  display: inline-block;
  margin-right: 35px;
  margin-right: 2.1875rem;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
@media screen and (max-width: 768px) {
  .service__item--title span {
    display: block;
    margin-right: 3vw;
    margin-bottom: 2vw;
    -webkit-transform: translateY(0.5vw);
            transform: translateY(0.5vw);
  }
}
.service__item--title span img {
  height: 44.8px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left bottom;
     object-position: left bottom;
}
@media screen and (max-width: 768px) {
  .service__item--title span img {
    height: 7vw;
  }
}

.service__item--desc {
  font-size: 28.8px;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .service__item--desc {
    font-size: 4vw;
  }
}
.service__item--desc span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/*------------------------
case
------------------------*/
.case {
  padding: 100px 0;
  padding: 6.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case {
    padding: 12vw 0;
  }
}
.case .section__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .case .section__title {
    margin-bottom: 3vw;
  }
}
.case .swiper-button-prev,
.case .swiper-button-next {
  width: 80px;
  width: 5rem;
  top: auto !important;
  bottom: 0 !important;
}
@media (max-width: 1400px) {
  .case .swiper-button-prev,
.case .swiper-button-next {
    zoom: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .case .swiper-button-prev,
.case .swiper-button-next {
    width: 13vw;
    height: 13vw;
    zoom: 1;
  }
}
.case .swiper-button-prev {
  left: calc(50% - 123px);
}
@media screen and (max-width: 768px) {
  .case .swiper-button-prev {
    left: calc(50% - 19vw);
  }
}
.case .swiper-button-next {
  right: calc(50% - 123px);
}
@media screen and (max-width: 768px) {
  .case .swiper-button-next {
    right: calc(50% - 19vw);
  }
}
.case .swiper-button-disabled {
  opacity: 0.1;
}

@media (max-width: 1400px) {
  .case__cont {
    zoom: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .case__cont {
    zoom: 1;
  }
}

.case__slider {
  overflow: visible;
}

.case__slider-wrapper {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media (max-width: 1400px) {
  .case__slider-wrapper {
    padding-bottom: 9.375rem;
  }
}
@media screen and (max-width: 768px) {
  .case__slider-wrapper {
    padding-bottom: 19vw;
  }
}

.case__slide {
  position: relative;
  border: 4px solid #3e3a39;
  padding: 5.9090909091%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1600px) {
  .case__slide {
    -webkit-transform: scale(0.75) translateY(-17%) translateZ(0) !important;
            transform: scale(0.75) translateY(-17%) translateZ(0) !important;
    margin-bottom: -26%;
  }
}
@media screen and (max-width: 768px) {
  .case__slide {
    -webkit-transform: translateZ(0) !important;
            transform: translateZ(0) !important;
    margin-bottom: 0;
    border: 0.6vw solid #3e3a39;
    padding: 4% 3% 5%;
  }
}
.case__slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.case__slide .icon {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .case__slide .icon {
    display: none;
  }
}
.case__slide:nth-child(1) .icon {
  bottom: 82px;
  bottom: 5.125rem;
  right: -164px;
  right: -10.25rem;
  width: 308px;
  width: 19.25rem;
  height: 451px;
  height: 28.1875rem;
}
.case__slide:nth-child(2) .icon {
  bottom: 0;
  right: -200px;
  right: -12.5rem;
  width: 225px;
  width: 14.0625rem;
  height: 562px;
  height: 35.125rem;
}
.case__slide:nth-child(3) .icon {
  bottom: 0;
  right: -196px;
  right: -12.25rem;
  width: 348px;
  width: 21.75rem;
  height: 418px;
  height: 26.125rem;
}
.case__slide:nth-child(4) .icon {
  bottom: -12px;
  bottom: -0.75rem;
  right: -243px;
  right: -15.1875rem;
  width: 378px;
  width: 23.625rem;
  height: 565px;
  height: 35.3125rem;
}
.case__slide:nth-child(4) .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.case__tag {
  position: absolute;
  top: 0;
  left: 20px;
  left: 1.25rem;
  width: 196px;
  width: 12.25rem;
  height: 230px;
  height: 14.375rem;
  background-color: #3e3a39;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-family: "Fahkwang", sans-serif;
  color: #fff;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .case__tag {
    left: 2vw;
    width: 19vw;
    height: 23vw;
    padding-bottom: 2vw;
  }
}
.case__tag .title {
  display: block;
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  -webkit-transform: translateX(0.1%) scaleX(0.8);
          transform: translateX(0.1%) scaleX(0.8);
}
@media screen and (max-width: 768px) {
  .case__tag .title {
    font-size: 3.5vw;
  }
}
.case__tag .number {
  font-size: 80px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-inline: auto;
  -webkit-transform: translateX(5%) scaleX(0.8);
          transform: translateX(5%) scaleX(0.8);
}
@media screen and (max-width: 768px) {
  .case__tag .number {
    font-size: 8vw;
    -webkit-transform: translateX(1vw);
            transform: translateX(1vw);
  }
}

.case__img {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .case__img {
    margin-bottom: 3vw;
  }
}
.case__img img {
  aspect-ratio: 960/535;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case__slide--title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .case__slide--title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}

.case__slide--details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.case__slide--detail .title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #38744f;
}
@media screen and (max-width: 768px) {
  .case__slide--detail .title {
    font-size: 4vw;
  }
}
.case__slide--detail .text {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .case__slide--detail .text {
    font-size: 4vw;
    line-height: 1.5;
  }
}

/*------------------------
message
------------------------*/
.message {
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
  background-color: #f2f7f3;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 12vw 0 0;
  }
}
.message .section__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .message .section__title {
    margin-bottom: 4vw;
  }
}

.message__column {
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media (max-width: 1149px) {
  .message__column {
    margin-bottom: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .message__column {
    gap: 5vw;
  }
}
.message__column .img {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .message__column .img {
    width: 100%;
  }
}
.message__column .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.7647058824;
  font-weight: 500;
  margin-top: -0.3em;
}
@media (max-width: 1149px) {
  .message__column .text {
    font-size: 2.6956521739vw;
  }
}
@media screen and (max-width: 768px) {
  .message__column .text {
    font-size: 4.2vw;
  }
}
.message__column .text img {
  display: inline-block;
  width: 280px;
  width: 17.5rem;
  margin-inline: 5px;
}
@media (max-width: 1149px) {
  .message__column .text img {
    width: 21.7391304348vw;
  }
}
@media screen and (max-width: 768px) {
  .message__column .text img {
    width: 36vw;
  }
}

.massage__cont {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 2.2307692308;
  font-weight: 500;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1149px) {
  .massage__cont {
    font-size: 2.3vw;
    line-height: 2;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .massage__cont {
    font-size: clamp(12px, 3.5vw, 16px);
  }
}

.massage__name {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3888888889;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media (max-width: 1149px) {
  .massage__name {
    font-size: 3vw;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .massage__name {
    font-size: clamp(18px, 5vw, 24px);
  }
}

.message__bottom {
  margin-top: -190px;
  margin-top: -11.875rem;
}
@media (max-width: 1149px) {
  .message__bottom {
    margin-top: -5vw;
  }
}

/*------------------------
company
------------------------*/
.company {
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 8vw 0 12vw;
  }
}

.company__detail {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .company__detail {
    margin-bottom: 6vw;
  }
}

.company__title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.875;
  font-weight: 500;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company__title {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}

.company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 75px;
  min-height: 4.6875rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .company__row {
    min-height: 7.5vw;
    margin-bottom: 1vw;
  }
}

.company__head {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: #dce0d7;
  padding: 1em;
  width: 7em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 768px) {
  .company__head {
    font-size: 3vw;
  }
}

.company__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f7f7f7;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .company__data {
    font-size: 3vw;
  }
}

.company__map {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .company__map {
    margin-bottom: 2vw;
  }
}
.company__map iframe {
  width: 100%;
  aspect-ratio: 1100/740;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__access--text {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .company__access--text {
    font-size: 3vw;
  }
}

/*------------------------
fixed-banner
------------------------*/
.fixed-banner {
  position: fixed;
  bottom: 110px;
  bottom: 6.875rem;
  right: 30px;
  right: 1.875rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .fixed-banner {
    bottom: calc(10vw + 30px);
    right: 0.625rem;
  }
}
.fixed-banner.is-show {
  opacity: 1;
  visibility: visible;
}
.fixed-banner a {
  display: block;
  width: clamp(280px, 20vw, 400px);
  -webkit-box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, .35);
          box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, .35);
  position: relative;
}
@media screen and (max-width: 768px) {
  .fixed-banner a {
    width: clamp(175px, 35vw, 400px);
  }
}
.fixed-banner .close-btn {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  right: 0px;
  right: 0rem;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  background: no-repeat center/contain url(../images/close_btn@2x.png);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="8" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.35)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, .35));
          filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, .35));
}
@media screen and (max-width: 768px) {
  .fixed-banner .close-btn {
    width: 1.5625rem;
    height: 1.5625rem;
    top: -1.75rem;
  }
}
/*# sourceMappingURL=styles.css.map */
