@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* PC、SPの非表示 */
.yellow__underline {
  -webkit-text-decoration: underline 10px #FFD900;
  text-decoration: underline 10px #FFD900;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  /* インクスキップを無効化 */
}

body {
  color: #333333;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

@media (max-width: 1160px) and (min-width: 768px) {
  html {
    font-size: 0.8620689655vw;
  }
}

@media (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 14.6666666667px);
  }
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* 親テーマの影響をリセット */
.header,
.footer {
  all: unset;
  /* 親テーマのスタイルを無効化 */
}

ul {
  list-style: none !important;
}

.footer__color {
  color: #fff;
  background: -webkit-gradient(linear, left top, right bottom, from(rgb(10, 63, 88)), to(rgb(13, 64, 70)));
  background: linear-gradient(to bottom right, rgb(10, 63, 88), rgb(13, 64, 70));
}

.footer__wrap {
  max-width: 146rem;
  padding-top: 4.5rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 1rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer__wrap {
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}

.footer__flex {
  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;
  margin-bottom: -0.4rem;
}

@media (max-width: 767px) {
  .footer__flex {
    display: block;
    margin-bottom: 3rem;
  }
}

.footer__logo {
  display: block;
  width: 20rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__nav {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.15;
  letter-spacing: -0.05rem;
  -webkit-transform: translateX(2.5rem);
  transform: translateX(2.5rem);
}

.footer__right-item {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  color: #FFF !important;
}

.footer__right-item:hover {
  color: #009FE8;
}

.footer__right-item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0rem;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.footer__right-item:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.footer__contact {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

@media (max-width: 767px) {
  .footer__contact {
    -webkit-transform: unset;
    transform: unset;
    margin-top: 2rem;
  }
}

.footer__contact-text {
  font-size: 1.4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__contact-text {
    margin-bottom: 0.5rem;
  }
}

.footer__btn {
  width: 25rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  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;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0rem;
  padding-left: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__btn:hover {
  opacity: 0.7;
}

.footer__btn p {
  font-size: 1.6rem;
}

.footer__mail {
  width: 1.8rem;
  padding-bottom: 1.4rem;
}

.footer__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
  margin-left: 2rem;
}

.footer__arrow::before,
.footer__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

.footer__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

@media (max-width: 767px) {
  .footer__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__pp,
.footer__sp {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #FFF !important;
}

.footer__pp::after,
.footer__sp::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0rem;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.footer__pp:hover::after,
.footer__sp:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.footer__copyright {
  background-color: #001D2B;
  text-align: center;
  font-size: 10px;
  padding-block: 0.5rem;
  color: #fff;
}

.header__wrap {
  max-width: 128rem;
  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;
  height: 10rem;
  -webkit-column-gap: 0rem;
  -moz-column-gap: 0rem;
  column-gap: 0rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 4rem;
  font-size: 1.6rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .header__wrap {
    height: 4.5rem;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
}

.header__title {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__title:hover {
  opacity: 0.8;
}

.header__title a {
  display: block;
  width: 30rem;
}

@media (max-width: 767px) {
  .header__title a {
    width: 21.7rem;
  }
}

.header__right-nav {
  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;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

@media (max-width: 767px) {
  .header__right-nav {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 4.5rem;
    left: 120%;
    background: -webkit-gradient(linear, left top, left bottom, from(#E9F7EB), to(#E6F5FD));
    background: linear-gradient(to bottom, #E9F7EB, #E6F5FD);
    z-index: 10000;
    padding: 7rem 2rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .header__right-nav.active {
    left: 0;
  }
}

.header__right-item {
  font-size: max(1.6rem, 11px);
  font-weight: 400;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.05rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  color: #333333 !important;
}

.header__right-item:hover {
  color: #009FE8;
}

@media (max-width: 767px) {
  .header__right-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0;
    height: 5rem;
    border-bottom: 0.1rem solid #A6B5C0;
    font-size: 2rem;
    padding-left: 2rem;
    width: 30rem;
  }
}

.header__right-item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #009FE8;
  bottom: 3.5rem;
  /*アンダーラインがaタグの下端から現れる*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.header__right-item:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header__right--btn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #1EAA39;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  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;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.header__right--btn:hover {
  opacity: 0.7;
  color: #fff;
}

@media (max-width: 767px) {
  .header__right--btn {
    margin-top: 2.5rem;
    margin-left: 2rem;
    width: 20rem;
  }
}

.header__mail {
  width: 1.8rem;
  padding-bottom: 0.9rem;
}

@media (max-width: 767px) {
  .sp-border {
    width: 17rem;
    border-bottom: 0.1rem solid #A6B5C0;
  }
}

@media (max-width: 767px) {
  .sp-border-long {
    width: 28rem;
    border-bottom: 0.1rem solid #A6B5C0;
  }
}

@media (max-width: 767px) {
  .header__right-logo {
    display: block;
    width: 13.4rem;
    -webkit-transform: translate(20rem, 4rem);
    transform: translate(20rem, 4rem);
  }
}

.header__hb-btn-wrap {
  border: 0.2rem solid #009FE8;
  padding: 0.75rem;
}

.header__hb-btn {
  width: 2rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
}

.header__hb-btn span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #009FE8;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__hb-btn span:nth-of-type(1) {
  top: 0.2rem;
}

.header__hb-btn span:nth-of-type(2) {
  top: 0.9rem;
}

.header__hb-btn span:nth-of-type(3) {
  top: 1.6rem;
}

.header__hb-btn.active span:nth-of-type(1) {
  top: 1rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__hb-btn.active span:nth-of-type(2) {
  display: none;
}

.header__hb-btn.active span:nth-of-type(3) {
  top: 1rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.FV {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.FV__img {
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .FV__img {
    z-index: 10;
    padding-bottom: 6rem;
  }
}

.FV__text {
  position: absolute;
  top: 19.8275862069vw;
  left: 3.4482758621vw;
  z-index: 11;
}

@media (max-width: 767px) {
  .FV__text {
    top: unset;
    left: unset;
    position: relative;
    margin-top: -30rem;
  }
}

.FV__text p {
  font-size: 1.8965517241vw;
  color: #009FE8;
  letter-spacing: 0.0862068966vw;
}

@media (max-width: 767px) {
  .FV__text p {
    font-size: 1.5rem;
    text-align: center;
  }
}

.FV__text-first {
  margin-bottom: 0.0862068966vw;
}

@media (max-width: 767px) {
  .FV__text-first {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767px) {
  .FV__text-first p {
    width: 20rem;
    margin: 0 auto;
    -webkit-margin-after: -2rem;
    margin-block-end: -2rem;
  }
}

.FV__line {
  width: 24.1379310345vw;
  margin-top: -1.5rem;
}

@media (max-width: 767px) {
  .FV__line {
    width: 18.8rem;
    margin: 0 auto;
  }
}

.FV__text-main {
  font-size: 2.5862068966vw;
  color: #009FE8;
  margin-top: -0.0862068966vw;
}

@media (max-width: 767px) {
  .FV__text-main {
    font-size: 1.9rem;
    text-align: center;
    margin-top: 0rem;
  }
}

.FV__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: -1.1206896552vw;
  letter-spacing: 0.0862068966vw;
}

@media (max-width: 767px) {
  .FV__flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.FV__text-yellow-small {
  font-size: 2.7586206897vw;
  color: #E1AC1B;
  padding-bottom: 0.2586206897vw;
}

@media (max-width: 767px) {
  .FV__text-yellow-small {
    font-size: 2rem;
    text-align: center;
  }
}

.FV__zero {
  width: 3.1896551724vw;
  -webkit-transform: translate(0.1rem, 0.4rem);
  transform: translate(0.1rem, 0.4rem);
}

@media (max-width: 767px) {
  .FV__zero {
    width: 2.3rem;
    -webkit-transform: translate(0.1rem, 0.4rem);
    transform: translate(0.1rem, 0.4rem);
  }
}

.FV__text-yellow {
  font-size: 3.7068965517vw;
  color: #E1AC1B;
}

@media (max-width: 767px) {
  .FV__text-yellow {
    font-size: 2.8rem;
    text-align: center;
  }
}

.FV__text-second {
  width: 34.4827586207vw;
  font-size: 2.4137931034vw;
  font-weight: 400;
  color: #009FE8;
  background-color: #fff;
  padding-inline: 2.5862068966vw;
  padding-top: 1.724137931vw;
  padding-bottom: 1.724137931vw;
  line-height: 3.275862069vw;
  letter-spacing: 0.0862068966vw;
  margin-top: 1.724137931vw;
}

@media (max-width: 767px) {
  .FV__text-second {
    font-size: 2.2rem;
    background-color: unset;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    max-width: unset;
    width: 29rem;
    line-height: 0.5;
    margin: 0 auto 2rem;
    background-color: #fff;
  }
}

.FV__text-blue-small {
  font-size: 2.0689655172vw;
}

@media (max-width: 767px) {
  .FV__text-blue-small {
    font-size: 1.6rem;
    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;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

@media (max-width: 767px) {
  .FV-sp-left {
    width: 0.7rem;
  }
}

@media (max-width: 767px) {
  .FV-sp-right {
    width: 0.7rem;
  }
}

.FV__bottom {
  background: -webkit-gradient(linear, left bottom, right top, from(#CAEBFB), to(#EEF9FE));
  background: linear-gradient(to top right, #CAEBFB, #EEF9FE);
  padding-block: 2.5rem;
}

.FV__bottom-img {
  width: 68.5rem;
  margin: 0 auto;
  -webkit-transform: translateX(-2.5rem);
  transform: translateX(-2.5rem);
}

@media (max-width: 767px) {
  .FV__bottom-img {
    width: 32.5rem;
    -webkit-transform: unset;
    transform: unset;
  }
}

#worried {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 51, 51, 0.1)), to(rgba(51, 51, 51, 0)));
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0));
  width: 100%;
}

.worried {
  max-width: 146rem;
  padding-top: 4.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .worried {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.worried__title {
  margin-bottom: -0.8rem;
  position: relative;
  z-index: 2;
}

.worried__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .worried__title h2 {
    font-size: 2.8rem;
  }
}

.worried__line {
  max-width: 14.7rem;
  margin: 0 auto;
  position: relative;
  -webkit-transform: translate(-10.6rem, -3.2rem);
  transform: translate(-10.6rem, -3.2rem);
  z-index: 1;
}

@media (max-width: 767px) {
  .worried__line {
    width: 10.4rem;
    max-width: unset;
    -webkit-transform: translate(3.4rem, -6.9rem);
    transform: translate(3.4rem, -6.9rem);
  }
}

.worried__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 5rem;
  padding-inline: 5rem;
  margin: 0 auto;
  max-width: 110rem;
  -webkit-box-shadow: 1px 1px 10px -5px #777777;
  box-shadow: 1px 1px 10px -5px #777777;
}

@media (max-width: 767px) {
  .worried__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-inline: 0rem;
    padding-bottom: 0rem;
    width: 100%;
    max-width: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    background-color: unset;
    row-gap: 2rem;
  }
}

.worried__flex-item {
  max-width: 30rem;
  width: 100%;
}

@media (max-width: 767px) {
  .worried__flex-item {
    width: 33.5rem;
    max-width: unset;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 10px -5px #777777;
    box-shadow: 1px 1px 10px -5px #777777;
  }
}

.worried__flex-item h3 {
  font-size: 3rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .worried__flex-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.worried__flex-item p {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .worried__flex-item p {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 auto 1.5rem;
    width: 31.5rem;
  }
}

.worried__flex-img {
  max-width: 30rem;
  margin-bottom: 4.1rem;
}

@media (max-width: 767px) {
  .worried__flex-img {
    width: 100%;
    margin: 0 auto 4rem;
  }
}

.margin-adjust01 {
  margin-top: -2rem;
}

@media (max-width: 767px) {
  .margin-adjust01 {
    margin-top: 0rem;
    text-align: left;
  }
}

.margin-adjust02 {
  margin-top: -2rem;
}

@media (max-width: 767px) {
  .margin-adjust02 {
    margin-top: 0rem;
    text-align: left;
  }
}

#flow {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 245, 231, 0.1)), to(rgb(250, 245, 231)));
  background: linear-gradient(to bottom, rgba(250, 245, 231, 0.1), rgb(250, 245, 231));
}

.flow {
  max-width: 146rem;
  padding-top: 14rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .flow {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.flow__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}

.flow__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .flow__title h2 {
    font-size: 2.8rem;
  }
}

.flow__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.flow__text {
  margin-bottom: 3.6rem;
}

.flow__text p {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .flow__text p {
    font-size: 1.6rem;
    text-align: left;
    width: 33.5rem;
    margin: 0 auto;
  }
}

.flow__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 4.5rem;
  -moz-column-gap: 4.5rem;
  column-gap: 4.5rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .flow__flex {
    position: relative;
    -webkit-column-gap: 0.7rem;
    -moz-column-gap: 0.7rem;
    column-gap: 0.7rem;
  }
}

.flow__flex-item h3 {
  font-size: 3rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.flow__flex-item p {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .flow__flex-item p {
    width: 17.5rem;
  }
}

.flow__flex-chart-img {
  width: 19rem;
}

@media (max-width: 767px) {
  .flow__flex-chart-img {
    width: 15rem;
  }
}

.flow__flex-text {
  font-size: 2.6rem;
  padding-top: 1.5rem;
  width: 40.5rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .flow__flex-text {
    font-size: 1.6rem;
    width: 17.5rem;
    padding-top: 3.5rem;
  }
}

.flow__flex-text-first {
  margin-bottom: 5.2rem;
}

@media (max-width: 767px) {
  .flow__flex-text-first {
    margin-bottom: 9rem;
  }
}

.flow__flex-text-second {
  margin-bottom: 6.9rem;
}

@media (max-width: 767px) {
  .flow__flex-text-second {
    margin-bottom: 10rem;
  }
}

.flow__flex-text-third {
  margin-bottom: 8.2rem;
}

@media (max-width: 767px) {
  .flow__flex-text-third {
    margin-bottom: 9.5rem;
  }
}

.flow__flex-picture-img-first {
  width: 23rem;
  margin-top: 8.4rem;
  margin-bottom: 3rem;
  margin-left: -2.9rem;
}

@media (max-width: 767px) {
  .flow__flex-picture-img-first {
    width: 7rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin-left: 0rem;
    position: absolute;
    top: 12rem;
    left: 75%;
  }
}

.flow__flex-picture-img-second {
  width: 21rem;
  margin-left: -3.2rem;
}

@media (max-width: 767px) {
  .flow__flex-picture-img-second {
    width: 6.7rem;
    margin-left: 0rem;
    position: absolute;
    bottom: 15rem;
    left: 75%;
  }
}

#CTA {
  background-image: url(../img-file/PC-CTA-bg.png);
}

.CTA {
  max-width: 146rem;
  padding-top: 2.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 3.4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CTA {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.CTA__area {
  max-width: 88rem;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  border-radius: 13rem;
}

@media (max-width: 767px) {
  .CTA__area {
    width: 35.5rem;
    max-width: unset;
    border-radius: 15rem;
    padding-bottom: 0rem;
  }
}

.CTA__subtitle {
  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;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .CTA__subtitle {
    font-size: 1.6rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

.CTA-line-left,
.CTA-line-right {
  width: 2.3rem;
}

.CTA__title {
  font-size: 4rem;
  color: #1EAA39;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .CTA__title {
    font-size: 3rem;
  }
}

.CTA__text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CTA__text {
    font-size: 1.4rem;
    text-align: left;
    width: 29rem;
    margin: 0 auto 2rem;
  }
}

.CTA__area-btn {
  width: 45rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  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;
  -webkit-column-gap: 7rem;
  -moz-column-gap: 7rem;
  column-gap: 7rem;
  padding-left: 8rem;
  padding-block: 1.5rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .CTA__area-btn {
    width: 30rem;
    font-size: 1.8rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-left: 0rem;
    padding-block: 2rem;
  }
}

.CTA__area-btn:hover {
  opacity: 0.7;
}

.CTA__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.CTA__arrow::before,
.CTA__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

@media (max-width: 767px) {

  .CTA__arrow::before,
  .CTA__arrow::after {
    top: 50%;
  }
}

.CTA__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.CTA__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.recommend {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 16.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recommend {
    padding-top: 7rem;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.recommend__board-img {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .recommend__board-img {
    width: 100%;
    margin: 0 auto 5rem;
    max-width: 500px;
  }
}

.recommend__text-wrap {
  position: relative;
  z-index: 2;
  margin-top: -42rem;
  margin-inline: auto;
  width: 50rem;
}

@media (max-width: 767px) {
  .recommend__text-wrap {
    width: 100%;
    margin-top: -46rem;
    max-width: 500px;
  }
}

.recommend__title {
  margin-bottom: 3.3rem;
  letter-spacing: 0.1rem;
}

.recommend__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .recommend__title h2 {
    font-size: 2.8rem;
  }
}

.recommend__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.recommend__flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.7rem;
  -moz-column-gap: 2.7rem;
  column-gap: 2.7rem;
  margin-bottom: 2.4rem;
  text-align: left;
}

@media (max-width: 767px) {
  .recommend__flex-item {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.recommend__flex-item-img {
  width: 2.8rem;
}

@media (max-width: 767px) {
  .recommend__flex-item-img {
    width: 2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.recommend__flex-item-text {
  font-size: 2.4rem;
  letter-spacing: 0.06rem;
}

@media (max-width: 767px) {
  .recommend__flex-item-text {
    font-size: 1.8rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

#feature {
  background-color: #E6EFF3;
}

.feature {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 6.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .feature {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.feature__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .feature__title {
    margin-bottom: 3rem;
  }
}

.feature__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .feature__title h2 {
    font-size: 2.8rem;
  }
}

.feature__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.feature__box {
  max-width: 110rem;
  margin: 0 auto 3rem;
}

@media (max-width: 767px) {
  .feature__box {
    max-width: unset;
    width: 33.5rem;
  }
}

.feature__flex {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3.2rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.feature__flex-number {
  width: 5.5rem;
  padding-top: 0.6rem;
}

@media (max-width: 767px) {
  .feature__flex-number {
    width: 4rem;
    max-width: calc(50% - 10px);
    padding-top: unset;
  }
}

.feature__flex-text {
  line-height: 1.5;
  padding-top: 0.8rem;
  width: 62.8rem;
}

@media (max-width: 767px) {
  .feature__flex-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}

.feature__flex-text h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .feature__flex-text h3 {
    font-size: 2rem;
    letter-spacing: 0rem;
  }
}

.feature__flex-text p {
  font-size: 1.8rem;
  padding-left: 2.9rem;
  padding-top: 1rem;
  letter-spacing: 0.06rem;
}

@media (max-width: 767px) {
  .feature__flex-text p {
    font-size: 1.6rem;
    padding-left: 0rem;
    letter-spacing: 0rem;
  }
}

.feature__flex-img {
  width: 30rem;
}

@media (max-width: 767px) {
  .feature__flex-img {
    width: 24.8rem;
    width: 75%;
  }
}

.feature__flex-second {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature__flex-second {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.feature__flex-third {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature__flex-third {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.feature__flex-fourth {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature__flex-fourth {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.feature__flex-fifth {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.1rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature__flex-fifth {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.price {
  max-width: 146rem;
  padding-top: 6.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 9.8rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .price {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.price__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}

.price__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .price__title h2 {
    font-size: 2.8rem;
  }
}

.price__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.price__text {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05rem;
  margin-bottom: 3.8rem;
}

@media (max-width: 767px) {
  .price__text {
    font-size: 1.6rem;
    width: 33.5rem;
    margin-inline: auto;
  }
}

.price__img {
  max-width: 60rem;
  margin: 0 auto;
  /* 中央揃え */
  -webkit-transform: translateX(-7rem);
  transform: translateX(-7rem);
}

@media (max-width: 767px) {
  .price__img {
    width: 30rem;
    -webkit-transform: translateX(-2rem);
    transform: translateX(-2rem);
    margin-bottom: 2rem;
  }
}

.price__attention {
  font-size: 1.4rem;
  text-align: center;
  margin-top: -1.1rem;
}

@media (max-width: 767px) {
  .price__attention {
    font-size: 1.2rem;
    text-align: left;
    margin-inline: auto;
    width: 35rem;
  }
}

#feature-second {
  background-color: #E6EFF3;
}

.feature-second {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 6.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .feature-second {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.feature-second__title {
  margin-bottom: 4.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .feature-second__title {
    margin-bottom: 3rem;
  }
}

.feature-second__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .feature-second__title h2 {
    font-size: 2.8rem;
  }
}

.feature-second__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.feature-second__text {
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.05rem;
  margin-bottom: 3.6rem;
  padding-left: 11rem;
  padding-right: 12rem;
}

@media (max-width: 767px) {
  .feature-second__text {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 33.5rem;
    margin: 0 auto 3rem;
  }
}

.feature-second__box {
  max-width: 110rem;
  margin: 0 auto 3rem;
}

@media (max-width: 767px) {
  .feature-second__box {
    width: 35.5rem;
    background-color: #fff;
  }
}

.feature-second__flex {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 4.6rem;
  padding-bottom: 2.2rem;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .feature-second__flex {
    width: 35.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.feature-second__flex-img {
  width: 30rem;
  min-width: 30rem;
}

@media (max-width: 767px) {
  .feature-second__flex-img {
    width: 24.6rem;
    min-width: unset;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.feature-second__flex-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 68rem;
}

@media (max-width: 767px) {
  .feature-second__flex-text-wrap {
    display: none;
  }
}

.feature-second__flex-number {
  width: 5.2rem;
  padding-top: 1.2rem;
}

@media (max-width: 767px) {
  .feature-second__flex-number {
    width: 4rem;
    max-width: calc(50% - 10px);
    padding-top: unset;
  }
}

.feature-second__flex-text {
  line-height: 1.5;
  padding-top: 0.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .feature-second__flex-text {
    width: 100%;
    padding-top: 0rem;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
  }
}

.feature-second__flex-text h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03rem;
}

@media (max-width: 767px) {
  .feature-second__flex-text h3 {
    font-size: 2rem;
    letter-spacing: 0rem;
  }
}

.feature-second__flex-text p {
  font-size: 1.8rem;
  padding-left: 2rem;
  letter-spacing: 0.06rem;
}

@media (max-width: 767px) {
  .feature-second__flex-text p {
    font-size: 1.6rem;
    padding-left: 0rem;
    letter-spacing: 0rem;
  }
}

#cases {
  background-color: #E6EFF3;
}

.cases {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 8.8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cases {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.cases__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .cases__title {
    margin-bottom: 3rem;
  }
}

.cases__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .cases__title h2 {
    font-size: 2.8rem;
  }
}

.cases__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.cases__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

@media (max-width: 767px) {
  .cases__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
  }
}

.case__flex-box {
  border-radius: 1rem;
}

.case__flex-box h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.7rem;
}

.case__flex-box-item {
  -webkit-box-shadow: 1px 1px 10px -5px #777777;
  box-shadow: 1px 1px 10px -5px #777777;
  border-radius: 1rem;
  width: 33.5rem;
  margin: 0 auto;
}

.case__img {
  display: block;
  width: 35rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .case__img {
    width: 33.5rem;
    margin: 0 auto;
  }
}

.case__img:hover {
  opacity: 0.5;
}

.case__text-wrap {
  background-color: #F9F6F0;
  width: 35rem;
  padding-top: 2rem;
  padding-inline: 2rem;
  padding-bottom: 5rem;
  font-size: 2rem;
  border-radius: 0 0 1rem 1rem;
  height: 37rem;
}

@media (max-width: 767px) {
  .case__text-wrap {
    width: 33.5rem;
    margin: 0 auto;
    height: auto;
  }
}

.case__comment {
  margin-bottom: 0.4rem;
}

@media (max-width: 767px) {
  .case__comment {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
}

.case__industry {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .case__industry {
    font-size: 1.8rem;
  }
}

.case__industry span {
  display: inline-block;
  background-color: #E2EDF5;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .case__industry span {
    font-size: 1.8rem;
  }
}

.case__info {
  font-size: 1.4rem;
}

.message {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 8.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .message {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.message__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .message__title {
    margin-bottom: 3rem;
  }
}

.message__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .message__title h2 {
    font-size: 2.8rem;
  }
}

.message__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.message__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-left: 11rem;
  padding-right: 11rem;
}

@media (max-width: 767px) {
  .message__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.message__flex-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.message__flex-text h3 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2.3rem;
}

@media (max-width: 767px) {
  .message__flex-text h3 {
    font-size: 2rem;
  }
}

.message__flex-info {
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
  padding-right: 4.5rem;
  line-height: 1.45;
  margin-bottom: 4.4rem;
}

@media (max-width: 767px) {
  .message__flex-info {
    font-size: 1.6rem;
    padding-right: 0rem;
  }
}

.message-name {
  font-size: 2rem;
  text-align: right;
  padding-right: 5.2rem;
}

@media (max-width: 767px) {
  .message-name {
    font-size: 1.8rem;
    padding-right: 0rem;
  }
}

.message__flex-img {
  width: 33rem;
  margin-top: -2rem;
}

@media (max-width: 767px) {
  .message__flex-img {
    width: 28.5rem;
    margin-top: 0rem;
    -webkit-margin-before: 2rem;
    margin-block-start: 2rem;
    margin: 0 auto;
  }
}

#members {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(30, 170, 57, 0.1)), to(rgba(0, 159, 232, 0.1)));
  background: linear-gradient(to bottom right, rgba(30, 170, 57, 0.1), rgba(0, 159, 232, 0.1));
}

.members {
  max-width: 146rem;
  padding-top: 7.7rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 12.8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .members {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.members__title {
  margin-bottom: 6.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 767px) {
  .members__title {
    margin-bottom: 3rem;
  }
}

.members__title_text p {
  text-align: center;
  margin: 15px 0;
}

.members__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .members__title h2 {
    font-size: 2.8rem;
  }
}

.members__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.members__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 5.9rem;
  -moz-column-gap: 5.9rem;
  column-gap: 5.9rem;
  row-gap: 4.1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

@media (max-width: 767px) {
  .members__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.5rem;
    margin: 0 auto;
  }
}

.members__box {
  padding-top: 4rem;
  padding-bottom: 4.2rem;
  padding-left: 5rem;
  padding-right: 6rem;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: calc(48% - 10px);
  /* 最大幅を50%に設定 */
  -webkit-box-shadow: 1px 1px 10px -5px #777777;
  box-shadow: 1px 1px 10px -5px #777777;
}

@media (max-width: 767px) {
  .members__box {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: unset;
    width: 33.5rem;
  }
}

.members__box h3 {
  font-size: 2.4rem;
  color: #033151;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .members__box h3 {
    font-size: 2rem;
  }
}

.members__box:after {
  content: "";
  display: block;
  width: 48%;
  height: 0;
}

@media (max-width: 767px) {
  .members__box:after {
    display: none;
  }
}

.members__flex {
  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-left: 1rem;
  padding-right: 1rem;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  flex-direction: row;
}

@media (max-width: 767px) {
  .members__flex {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.members__img {
  width: 18rem;
  max-width: 18rem;
  margin-bottom: 2.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.members__img img {
  width: 180px;
  display: inline-block;
}

@media (max-width: 767px) {
  .members__img {
    width: 14rem;
    max-width: 14rem;
  }
}

.members__text {
  padding-top: 2rem;
  padding-bottom: 0rem;
}

@media (max-width: 767px) {
  .members__text {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }
}

.members__job {
  font-size: 1.6rem;
  background-color: #E2EDF5;
  border-radius: 0.1rem;
  text-align: center;
  margin-bottom: 2.9rem;
  margin-right: -1rem;
  width: 17rem;
  padding-block: 0.5rem;
}

@media (max-width: 767px) {
  .members__job {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

.members__name {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin-top: -1rem;
  padding-left: 1.9rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .members__name {
    font-size: 2rem;
    padding-left: 1rem;
  }
}

.members__en {
  font-size: 1rem;
  text-align: center;
  margin-top: -0.5rem;
  padding-left: 1.9rem;
}

@media (max-width: 767px) {
  .members__en {
    padding-left: 1rem;
  }
}

.members__info {
  font-size: 1.6rem;
  line-height: 1.3;
  padding-left: 1rem;
  letter-spacing: 0.04rem;
}

.members__text02 {
  padding-top: 2rem;
  padding-bottom: 0rem;
}

@media (max-width: 767px) {
  .members__text02 {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }
}

.members__job02 {
  font-size: 1.4rem;
  background-color: #E2EDF5;
  padding: 0.5rem 1rem;
  border-radius: 0.1rem;
  text-align: center;
  margin-bottom: 1.6rem;
  margin-right: -1rem;
}

.members__job02 span {
  font-size: 1.2rem;
}


@media (max-width: 767px) {
  .members__job02 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-inline: 3.5rem;
  }
}

.members__adjust07 {
  padding-left: 0rem;
  letter-spacing: -0.1rem;
}

.plan {
  max-width: 128rem;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .plan {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: -20rem;
  }
}

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

@media (max-width: 767px) {
  .plan__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.plan__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 2.3rem;
  -moz-column-gap: 2.3rem;
  column-gap: 2.3rem;
  position: relative;
  z-index: 2;
  margin-right: -15.9rem;
}

@media (max-width: 767px) {
  .plan__text {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: 33.5rem;
    margin-right: 0rem;
  }
}

.plan__line-img {
  width: 0.5rem;
}

@media (max-width: 767px) {
  .plan__line-img {
    width: 1rem;
  }
}

.plan__line-img img {
  padding-top: 1.6rem;
}

@media (max-width: 767px) {
  .plan__line-img img {
    padding-top: 1.2rem;
  }
}

.plan__title h2 {
  font-size: 4rem;
  color: #E1AC1B;
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .plan__title h2 {
    font-size: 2.6rem;
    margin-bottom: 10rem;
  }
}

.plan__title h2 span {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .plan__title h2 span {
    font-size: 2rem;
  }
}

.plan__title p {
  font-size: 1.8rem;
  max-width: 62rem;
  padding-left: 9rem;
  line-height: 1.45;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .plan__title p {
    font-size: 1.6rem;
    padding-left: 0rem;
  }
}

.plan__img {
  width: 61rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

@media (max-width: 767px) {
  .plan__img {
    width: 24.4rem;
    padding-top: unset;
    -webkit-transform: translate(5rem, -25rem);
    transform: translate(5rem, -25rem);
  }
}

#follow {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(30, 170, 57, 0.1)), to(rgba(0, 159, 232, 0.1)));
  background: linear-gradient(to bottom right, rgba(30, 170, 57, 0.1), rgba(0, 159, 232, 0.1));
}

.follow {
  position: fixed;
  z-index: 1000;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.follow__btn-text {
  font-size: 1.2rem;
  text-align: center;
  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;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 0.1px #FFF;
}

.follow__btn-text p {
  padding-top: 0.6rem;
}

.follow__btn-text-left,
.follow__btn-text-right {
  width: 1rem;
}

.follow__btn {
  width: 45rem;
  color: #FFF;
  background-color: #1EAA39;
  text-align: center;
  margin: 0 auto;
  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;
  -webkit-column-gap: 10rem;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  padding-left: 12rem;
  padding-block: 1.5rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .follow__btn {
    width: 33.5rem;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    padding-left: 4rem;
  }
}

.follow__btn:hover {
  opacity: 0.7;
}

.follow__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.follow__arrow::before,
.follow__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

.follow__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.follow__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pagetop {
  position: fixed;
  z-index: 1000;
  bottom: min(13.4699853587vw, 184px);
  right: min(2.9282576867vw, 40px);
  cursor: pointer;
  border-width: 0;
  background-color: unset;
}

@media (max-width: 767px) {
  .pagetop {
    bottom: min(16vw, 60px);
  }
}

.pagetop__img {
  display: block;
  max-width: 7rem;
  width: 5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .pagetop__img {
    width: min(13.3333333333vw, 50px);
  }
}

.pagetop__img:hover {
  opacity: 0.7;
}

.company__title {
  background-image: url(../img-file/PC-company-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.company__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .company__title h2 {
    font-size: 2.8rem;
  }
}

.company__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.company__message-text {
  font-size: 2rem;
  margin: 0 auto 20px;
}

.company__link-wml {
  text-align: center;
}

.company__link-wml_text {
  color: #033151;
  margin: 0 0 10px;
}

.company__link-wml_img {
  display: inline-block;
  max-width: 300px;
  border: #16669E solid 1px;
  margin: 0 auto;
}

.company {
  max-width: 128rem;
  padding-top: 7rem;
  padding-left: 30rem;
  padding-right: 30rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .company {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
  }
}

.company__message {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 6rem;
}

@media (max-width: 767px) {
  .company__message {
    text-align: left;
  }
}

.company__info {
  width: 60rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .company__info {
    width: 33.5rem;
    width: 100%;
  }
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .company__item {
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}

.company__subtitle {
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.company__content {
  text-align: left;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.company__btn {
  width: 31.5rem;
  color: #FFF;
  background-color: #16669E;
  text-align: center;
  margin-inline: auto;
  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;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  border-radius: 3rem;
  font-size: 2rem;
  letter-spacing: 0rem;
  padding-left: 1.5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-block: 1.2rem;
  margin-top: 6rem;
}

.company__btn:hover {
  opacity: 0.7;
}

.company__btn p {
  font-size: 1.6rem;
}

.company__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
  margin-left: 2rem;
}

.company__arrow::before,
.company__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

.company__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.company__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.privacy-policy__title {
  background-image: url(../img-file/PC-policy-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.privacy-policy__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .privacy-policy__title h2 {
    font-size: 2.8rem;
  }
}

.privacy-policy__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.privacy-policy__new {
  max-width: 168rem;
  padding-top: 1.6rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .privacy-policy__new {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.privacy-policy__item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .privacy-policy__item h3 {
    font-size: 1.8rem;
  }
}

.privacy-policy__item p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .privacy-policy__item p {
    font-size: 1.4rem;
  }
}

.privacy-policy__item ul {
  font-size: 1.6rem;
  margin-top: -2rem;
  margin-bottom: 2.7rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .privacy-policy__item ul {
    font-size: 1.4rem;
  }
}

.privacy-policy__btn {
  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;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.privacy-policy__btn:hover {
  opacity: 0.5;
}

.pp__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.pp__arrow::before,
.pp__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

@media (max-width: 767px) {

  .pp__arrow::before,
  .pp__arrow::after {
    top: 50%;
  }
}

.pp__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pp__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.site-policy__title {
  background-image: url(../img-file/PC-policy-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.site-policy__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .site-policy__title h2 {
    font-size: 2.8rem;
  }
}

.site-policy__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.site-policy {
  max-width: 168rem;
  padding-top: 1.6rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .site-policy {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-policy__item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .site-policy__item h3 {
    font-size: 1.8rem;
  }
}

.site-policy__item p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .site-policy__item p {
    font-size: 1.4rem;
  }
}

.site-policy__item ul {
  font-size: 1.6rem;
  margin-bottom: 2.7rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
}

@media (max-width: 767px) {
  .site-policy__item ul {
    font-size: 1.4rem;
  }
}

.site-policy__btn {
  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;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.site-policy__btn:hover {
  opacity: 0.5;
}

.site__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.site__arrow::before,
.site__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

@media (max-width: 767px) {

  .site__arrow::before,
  .site__arrow::after {
    top: 50%;
  }
}

.site__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.contact-form__title {
  background-image: url(../img-file/PC-contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.contact-form__title h2 {
  font-size: 4.4rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

@media (max-width: 767px) {
  .contact-form__title h2 {
    font-size: 2.8rem;
  }
}

.contact-form__title h2 span {
  display: block;
  font-size: 10px;
  color: #009FE8;
}

.contact-form {
  max-width: 110rem;
  padding-top: 3.8rem;
  padding-left: 20rem;
  padding-right: 20rem;
  padding-bottom: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .contact-form {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contact-form__info {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.05rem;
  line-height: 3.5;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .contact-form__info {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0rem;
  }
}

.contact-form__item {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .contact-form__item {
    font-size: 2rem;
  }
}

.contact-form__name,
.contact-form__company,
.contact-form__tel,
.contact-form__mail,
.contact-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}

/* Contact Form7のカスタマイズ */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #56b379;
  color: #ffffff;
  font-weight: bold;
  padding: 15px;
  border-radius: 20px;
}

.sent .contact-form__item,
.sent .wpcf7-form-control-wrap,
.sent .contact-form__pp-text,
.sent .contact-form__item-btn-wrap,
.sent .recapcha-text {
  display: none;
}

/* Contact Form7のカスタマイズ　ここまで */

.absolutely {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #FCB900;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 0.5rem;
}

@media (max-width: 767px) {
  .absolutely {
    font-size: 1.6rem;
  }
}

.optional {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #888888;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 0.5rem;
}

@media (max-width: 767px) {
  .optional {
    font-size: 1.6rem;
  }
}

.contact-form__item-input {
  width: 100%;
  height: 5.5rem;
  border-radius: 1rem;
  border: 1px solid #BBC9C9;
  padding: 1rem;
  font-size: 1.6rem;
  background-color: #F8F8F8;
}

.contact-form__item-textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #BBC9C9;
  padding: 1rem;
  font-size: 1.6rem;
  background-color: #F8F8F8;
  margin-bottom: 2rem;
}

.contact-form__privacy-policy {
  width: 100%;
  max-width: 55rem;
  letter-spacing: 0.05rem;
  font-size: 2rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  text-align: center !important;
  -webkit-display: flex !important;
  -webkit-justify-content: center !important;
  -webkit-align-items: center !important;
  -webkit-text-align: center !important;
  margin: 0 auto 1.7rem;
}

@media (max-width: 767px) {
  .contact-form__privacy-policy {
    margin-bottom: 1.9rem;
    font-size: 1.4rem;
  }
}

.contact-form__privacy-policy p {
  text-align: center;
  letter-spacing: 0;
}

.wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 3rem;
  position: relative;
  cursor: pointer;
  -webkit-display: flex;
  -webkit-align-items: center;
  -webkit-padding-left: 3rem;
  -webkit-position: relative;
  -webkit-cursor: pointer;
}

.wpcf7-list-item-label::before {
  display: block;
  content: "";
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0rem;
  width: 1.7rem;
  /*チェックボックスの横幅*/
  height: 1.7rem;
  /*チェックボックスの縦幅*/
  position: absolute;
  top: 55%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-list-item-label::after {
  display: block;
  content: "";
  border-bottom: 2.5px solid #fff;
  /*チェックの太さ*/
  border-left: 2.5px solid #fff;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 0.7rem;
  /*チェックの高さ*/
  width: 0.9rem;
  /*チェックの横幅*/
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  /*チェック時の位置調整*/
  left: -0.7rem;
  /*チェック時の位置調整*/
}

/*リセット */
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wpcf7-list-item label input:checked+.wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-opacity: 1;
}

.wpcf7-list-item label input:checked+.wpcf7-list-item-label::before {
  background: #16669E;
  -webkit-background: #16669E;
}

.contact-form__pp-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 4rem;
}

.pp-first {
  border-bottom: 1px solid #333333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.pp-first:hover {
  opacity: 0.5;
}

.contact-form__item-btn-wrap {
  text-align: center;
}

.contact-form__item-btn {
  position: relative;
  display: inline-block;
}

.contact-form__item-btn::after {
  position: absolute;
  content: "";
  background-image: url(../img-file/PC-contact-form-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 2rem;
  height: 1.6rem;
  top: 2.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2rem;
}

.contact-form__btn {
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 5rem;
}

.contact-form__btn:hover {
  opacity: 0.5;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact__recaptcha-pp {
  border-bottom: 1px solid #333333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact__recaptcha-pp:hover {
  opacity: 0.5;
}

.contact__recaptcha-rule {
  border-bottom: 1px solid #333333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact__recaptcha-rule:hover {
  opacity: 0.5;
}

.breadcrumbs {
  margin-bottom: 4.2rem;
}

.breadcrumbs-text-area {
  font-size: 1.4rem;
  color: #777;
}

.not-found {
  max-width: 136.6rem;
  margin: 0 auto;
  padding-top: 7.9rem;
  padding-bottom: 18rem;
  padding-left: 18.3rem;
  padding-right: 18.3rem;
}

@media (max-width: 767px) {
  .not-found {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 10rem;
  }
}

.not-found__title {
  text-align: center;
  margin-bottom: 5.1rem;
}

@media (max-width: 767px) {
  .not-found__title {
    margin-bottom: 2rem;
  }
}

.not-found__title h2 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .not-found__title h2 {
    font-size: 3rem;
    margin-bottom: 0rem;
  }
}

.not-found__title p {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .not-found__title p {
    font-size: 1.6rem;
  }
}

.not-found__text {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3.9rem;
}

.not-found__btn {
  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;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  padding-left: 7rem;
  width: 28rem;
  font-size: 1.8rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  background-color: #16669E;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 13rem;
  margin-bottom: 6.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.not-found__btn:hover {
  opacity: 0.5;
}

.not-found__arrow {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.not-found__arrow::before,
.not-found__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8.2px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}

@media (max-width: 767px) {

  .not-found__arrow::before,
  .not-found__arrow::after {
    top: 50%;
  }
}

.not-found__arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.not-found__arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*# sourceMappingURL=style.css.map */