@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-optical-sizing: auto;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dl,
dt,
dd,
table,
th,
td,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
}

.inter_light {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}

.top_main {
  overflow: hidden;
  position: relative;
}

.bot_cta {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
  z-index: 9;
}
.bot_cta a {
  width: 200px;
  margin-top: 10px;
  transition: all 0.6s;
}
.bot_cta a:hover img {
  opacity: 0.6;
  transition: all 0.6s;
}
.bot_cta a img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
}

/*-----header-----*/
header {
  width: 100% !important;
  margin: 0;
  padding: 16px 0 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 10;
}
header .header_inner {
  width: 98%;
  height: 68px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  header .header_inner {
    width: 90%;
    box-sizing: border-box;
  }
}
header .header_inner .header_logo {
  position: absolute;
  top: 26px;
  left: 2%;
  z-index: 100;
}
@media screen and (max-width: 1100px) {
  header .header_inner .header_logo {
    left: 2%;
  }
}
@media screen and (max-width: 767px) {
  header .header_inner .header_logo {
    left: 10px;
  }
}
header .header_inner .header_logo a img {
  width: auto;
  height: 20px;
}
header .nav {
  display: block;
  position: absolute;
  top: 11px;
  right: 1%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header .nav {
    display: none;
  }
}
header .nav ul {
  display: flex;
}
header .nav ul li {
  margin: 0 20px;
  position: relative;
}
header .nav ul li a {
  font-size: 1.4rem;
  color: #333333;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  text-align: left;
}
header .nav ul li a:hover {
  color: #4763E2;
  transition: 0.3s;
}
header .nav ul li a:hover::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
header .nav ul li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #4763E2;
}
header .nav ul .is-active {
  z-index: 10;
}
header .nav ul .is-active::after {
  transform: rotate(180deg);
  transition: all 0.3s;
}
header .nav ul .is-active .panel {
  opacity: 1 !important;
  transition: 0.5s;
}
header .nav .contact_link {
  margin-left: 24px;
}
header .nav .contact_link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px 10px 30px;
  background-color: #FF882E;
  border: 1px solid #FF882E;
  box-sizing: border-box;
  border-radius: 8px;
  transition: 0.3s;
}
header .nav .contact_link a:hover {
  background-color: #fff;
  border: 1px solid #FF882E;
  color: #FF882E;
}
header .nav_wrap_sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .nav_wrap_sp {
    display: block;
  }
  header .nav_wrap_sp .toggle_wrap {
    width: 50px;
    height: 50px;
    z-index: 100;
  }
  header .nav_wrap_sp #nav_toggle {
    display: block;
    width: 30px;
    height: 20px;
    z-index: 100;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
    -webkit-transform: translateY(-50%) translateX(0);
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  header .nav_wrap_sp #nav_toggle {
    right: 2%;
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  header .nav_wrap_sp #nav_toggle {
    right: 10px;
  }
}
@media screen and (max-width: 1100px) {
  header .nav_wrap_sp #nav_toggle div {
    position: relative;
  }
  header .nav_wrap_sp #nav_toggle span {
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s ease-in-out;
    background-color: #04C99E;
    border-radius: 4px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(2) {
    top: 10px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(3) {
    top: 20px;
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
}
header .nav_sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .nav_sp {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px 0;
  }
}
header .nav_sp .nav_inner {
  display: flex;
  align-items: center;
  height: 50vh;
  width: 100%;
}
header .nav_sp .nav_inner .first_shelf {
  width: 100%;
}
header .nav_sp .nav_inner .first_shelf li {
  position: relative;
  margin-bottom: 14px;
}
header .nav_sp .nav_inner .first_shelf li a {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
}
header .nav_sp .nav_inner .first_shelf .contact_link {
  width: 65%;
  margin: 40px auto 0;
}
header .nav_sp .nav_inner .first_shelf .contact_link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px 10px 30px;
  background-color: #FF882E;
  border: 1px solid #FF882E;
  box-sizing: border-box;
  border-radius: 8px;
  transition: 0.3s;
}
header .nav_sp .nav_inner .first_shelf .contact_link a:hover {
  background-color: #fff;
  border: 1px solid #FF882E;
  color: #FF882E;
}

/*-----footer-----*/
footer {
  padding: 150px 0 130px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 150px 0 160px;
  }
}
footer .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  footer .content_wrap {
    width: 96%;
  }
}
footer .content_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap {
    display: block;
  }
}
footer .content_wrap .flex_wrap .ttl_wrap {
  width: 30%;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap .ttl_wrap {
    width: 100%;
  }
}
footer .content_wrap .flex_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 0 -20px;
}
footer .content_wrap .flex_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
}
@media screen and (max-width: 768px) {
  footer .content_wrap .flex_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
footer .content_wrap .flex_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px 0 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
footer .content_wrap .flex_wrap .link_wrap {
  width: 70%;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap .link_wrap {
    width: 100%;
  }
}
footer .content_wrap .flex_wrap .link_wrap .inner {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap .link_wrap .inner {
    display: block;
  }
}
footer .content_wrap .flex_wrap .link_wrap .inner figure {
  width: 30%;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap .link_wrap .inner figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .content_wrap .flex_wrap .link_wrap .inner figure a {
  display: block;
  width: 100%;
}
footer .content_wrap .flex_wrap .link_wrap .inner figure a:hover img {
  opacity: 0.5;
  transition: all 0.6s;
}
footer .content_wrap .flex_wrap .link_wrap .inner figure a img {
  width: 100%;
  display: block;
  transition: all 0.6s;
}
footer .content_wrap .flex_wrap .link_wrap .inner .txt_wrap {
  width: 70%;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap .link_wrap .inner .txt_wrap {
    width: 100%;
  }
}
footer .content_wrap .flex_wrap .link_wrap .inner .txt_wrap h4 {
  font-size: 2rem;
  color: #1FC9A6;
  margin-bottom: 20px;
}
footer .content_wrap .flex_wrap .link_wrap .inner .txt_wrap h5 {
  font-size: 1.6rem;
  color: #1FC9A6;
  margin-top: 20px;
}
footer .content_wrap .flex_wrap .link_wrap .inner .txt_wrap p {
  font-size: 1.6rem;
  color: #333;
}
footer .content_wrap .flex_wrap_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap_b {
    display: block;
  }
}
footer .content_wrap .flex_wrap_b h2 {
  width: 200px;
}
@media screen and (max-width: 767px) {
  footer .content_wrap .flex_wrap_b h2 {
    width: 50%;
    margin-bottom: 20px;
  }
}
footer .content_wrap .flex_wrap_b h2 a {
  width: 100%;
}
footer .content_wrap .flex_wrap_b h2 a:hover img {
  opacity: 0.5;
  transition: all 0.6s;
}
footer .content_wrap .flex_wrap_b h2 a img {
  width: 100%;
  height: auto;
  transition: all 0.6s;
}
footer .content_wrap .flex_wrap_b .inner {
  width: -moz-fit-content;
  width: fit-content;
}
footer .content_wrap .flex_wrap_b .inner p {
  font-size: 1.4rem;
  color: #333;
}

/*-----トップページ-----*/
.fix_bnr {
  width: 100%;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #04C99E;
}
.fix_bnr .content_wrap {
  width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .fix_bnr .content_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap {
    display: block;
  }
}
.fix_bnr .content_wrap figure {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap figure {
    width: 70%;
    margin: 0 auto 10px;
  }
}
.fix_bnr .content_wrap figure .pc_only {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap figure .pc_only {
    display: none;
  }
}
.fix_bnr .content_wrap figure .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap figure .sp_only {
    display: block;
    width: 100%;
    height: auto;
  }
}
.fix_bnr .content_wrap .btn_wrap {
  width: 40%;
}
@media screen and (max-width: 1080px) {
  .fix_bnr .content_wrap .btn_wrap {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap .btn_wrap {
    width: 100%;
  }
}
.fix_bnr .content_wrap .btn_wrap a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 14px 0px 14px 0px;
  background-color: #FF882E;
  border: 1px solid #FF882E;
  box-sizing: border-box;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  text-align: center;
  width: 100%;
}
.fix_bnr .content_wrap .btn_wrap a::before {
  content: "";
  background: url(../images/mail.webp);
  background-size: cover;
  width: 20px;
  height: 16px;
  position: absolute;
  left: 26px;
  top: 19px;
  opacity: 1;
  transition: all 0.6s;
}
.fix_bnr .content_wrap .btn_wrap a::after {
  content: "";
  background: url(../images/arrow_r.png);
  background-size: cover;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 26px;
  top: 20px;
  opacity: 1;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .fix_bnr .content_wrap .btn_wrap a {
    margin: 0 auto;
  }
}
.fix_bnr .content_wrap .btn_wrap a:hover {
  background-color: #fff;
  border: 1px solid #FF882E;
  color: #FF882E;
}
.fix_bnr .content_wrap .btn_wrap a:hover::after {
  right: 0;
  opacity: 0;
  transition: all 0.6s;
}

.top_mv {
  width: 100%;
  height: 96vh;
  background: url(../images/bg_pc.webp);
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_mv {
    height: 100vh;
  }
}
.top_mv .mv_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap {
    display: block;
    padding-top: 70px;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_logo {
  width: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap .mv_logo {
    display: none;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_logo img {
  width: 100%;
  height: auto;
}
.top_mv .mv_wrap .mv_ttl_wrap h1 {
  width: 100%;
  margin-bottom: 30px;
}
.top_mv .mv_wrap .mv_ttl_wrap h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap h1 {
    font-size: 4rem;
    text-align: center;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap h1 .black {
  display: flex;
  align-items: baseline;
}
.top_mv .mv_wrap .mv_ttl_wrap h1 .mini {
  font-size: 5rem;
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap h1 .mini {
    font-size: 3rem;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap h1 .green {
  color: #04C99E;
  display: flex;
  align-items: baseline;
  font-size: 7rem;
  line-height: 7rem;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap h1 .green {
    font-size: 5rem;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap h1 .green .box {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #04C99E;
  color: #fff;
  padding: 4px 16px;
  font-size: 7rem;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap h1 .green .box {
    font-size: 5rem;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 14px 50px 14px 50px;
  background-color: #FF882E;
  border: 1px solid #FF882E;
  box-sizing: border-box;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_btn::after {
  content: "";
  background: url(../images/arrow_r.png);
  background-size: cover;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 26px;
  top: 20px;
  opacity: 1;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .mv_ttl_wrap .mv_btn {
    margin: 0 auto;
  }
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_btn:hover {
  background-color: #fff;
  border: 1px solid #FF882E;
  color: #FF882E;
}
.top_mv .mv_wrap .mv_ttl_wrap .mv_btn:hover::after {
  right: 0;
  opacity: 0;
  transition: all 0.6s;
}
.top_mv .mv_wrap .img_wrap {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_wrap .img_wrap {
    width: 100%;
  }
}
.top_mv .mv_wrap .img_wrap img {
  width: 100%;
}
.top_mv .slide_wrap {
  width: 100%;
  position: absolute;
  bottom: -10px;
  overflow: hidden;
}
.top_mv .slide_wrap ul {
  display: flex;
  width: 200%;
  animation: loop-slide 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .top_mv .slide_wrap ul {
    width: 400%;
  }
}
.top_mv .slide_wrap ul li {
  width: 50%;
}
.top_mv .slide_wrap ul li img {
  width: 100%;
  vertical-align: bottom;
  /* Removes potential gap below image */
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.problem_area {
  padding: 100px 0;
  width: 100%;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .problem_area {
    padding: 60px 0;
  }
}
.problem_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .problem_area .content_wrap {
    width: 96%;
  }
}
.problem_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.problem_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.problem_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .problem_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.problem_area .content_wrap .ttl_wrap h2 span {
  color: #04C99E;
}
.problem_area .content_wrap .flex_wrap {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .problem_area .content_wrap .flex_wrap {
    display: block;
  }
}
.problem_area .content_wrap .flex_wrap .inner {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .problem_area .content_wrap .flex_wrap .inner {
    width: 100%;
    margin-bottom: 40px;
  }
}
.problem_area .content_wrap .flex_wrap .inner figure {
  width: 100%;
  margin-bottom: 20px;
}
.problem_area .content_wrap .flex_wrap .inner figure img {
  width: 100%;
  height: auto;
}
.problem_area .content_wrap .flex_wrap .inner p {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.about_area {
  padding: 100px 0;
  width: 100%;
  background: url(../images/about_bg_pc.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .about_area {
    padding: 60px 0;
    background: url(../images/about_bg_sp.webp);
    background-position: center;
  }
}
.about_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .about_area .content_wrap {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .about_area .content_wrap {
    display: block;
  }
}
.about_area .content_wrap .txt_wrap {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .about_area .content_wrap .txt_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.about_area .content_wrap .txt_wrap span {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.about_area .content_wrap .txt_wrap span img {
  width: 162px;
  display: block;
}
.about_area .content_wrap .txt_wrap span p {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  margin-left: 20px;
}
.about_area .content_wrap .txt_wrap h2 {
  font-size: 3.4rem;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about_area .content_wrap .txt_wrap h2 {
    font-size: 2.2rem;
  }
}
.about_area .content_wrap .txt_wrap .read {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
.about_area .content_wrap figure {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .about_area .content_wrap figure {
    width: 100%;
  }
}
.about_area .content_wrap figure img {
  width: 100%;
}

.feature_area {
  padding: 150px 0;
  width: 100%;
  background: linear-gradient(135deg, #E9FFFB, #D2FFF5);
}
@media screen and (max-width: 767px) {
  .feature_area {
    padding: 60px 0;
  }
}
.feature_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .feature_area .content_wrap {
    width: 96%;
  }
}
.feature_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.feature_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.feature_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.feature_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.feature_area .content_wrap .flex_wrap_a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_a {
    display: block;
  }
}
.feature_area .content_wrap .flex_wrap_a .txt_wrap {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_a .txt_wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.feature_area .content_wrap .flex_wrap_a .txt_wrap span {
  width: 140px;
  display: block;
  margin-bottom: 30px;
}
.feature_area .content_wrap .flex_wrap_a .txt_wrap span img {
  width: 100%;
}
.feature_area .content_wrap .flex_wrap_a .txt_wrap h3 {
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .feature_area .content_wrap .flex_wrap_a .txt_wrap h3 {
    font-size: 2.2rem;
  }
}
.feature_area .content_wrap .flex_wrap_a .txt_wrap p {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
}
.feature_area .content_wrap .flex_wrap_a figure {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_a figure {
    width: 100%;
  }
}
.feature_area .content_wrap .flex_wrap_a figure img {
  width: 100%;
}
.feature_area .content_wrap .flex_wrap_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_b {
    display: block;
  }
}
.feature_area .content_wrap .flex_wrap_b .txt_wrap {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_b .txt_wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.feature_area .content_wrap .flex_wrap_b .txt_wrap span {
  width: 140px;
  display: block;
  margin-bottom: 30px;
}
.feature_area .content_wrap .flex_wrap_b .txt_wrap span img {
  width: 100%;
}
.feature_area .content_wrap .flex_wrap_b .txt_wrap h3 {
  font-size: 2.6rem;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .feature_area .content_wrap .flex_wrap_b .txt_wrap h3 {
    font-size: 2.2rem;
  }
}
.feature_area .content_wrap .flex_wrap_b .txt_wrap p {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
}
.feature_area .content_wrap .flex_wrap_b figure {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .feature_area .content_wrap .flex_wrap_b figure {
    width: 100%;
  }
}
.feature_area .content_wrap .flex_wrap_b figure img {
  width: 100%;
}

.function_area {
  padding: 150px 0;
  width: 100%;
  background: url(../images/section_bg.webp);
  background-repeat: repeat;
  background-position: left;
}
@media screen and (max-width: 767px) {
  .function_area {
    padding: 60px 0;
  }
}
.function_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .function_area .content_wrap {
    width: 96%;
  }
}
.function_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.function_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.function_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.function_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.function_area .content_wrap .txt_wrap {
  width: 100%;
  margin: 0 auto;
}
.function_area .content_wrap .txt_wrap .read {
  font-size: 2rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  color: #333;
  font-weight: bold;
}
.function_area .content_wrap .txt_wrap .read::after {
  content: "";
  display: block;
  margin: 10px auto 30px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.function_area .content_wrap .txt_wrap p {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .txt_wrap p {
    text-align: left;
  }
}
.function_area .content_wrap .txt_wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .txt_wrap ul {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.function_area .content_wrap .txt_wrap ul li {
  width: 300px;
  padding: 16px 0;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .txt_wrap ul li {
    display: block;
    width: 100%;
    margin: 0 auto 10px;
  }
}
.function_area .content_wrap .function_list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .function_list {
    display: block;
  }
}
.function_area .content_wrap .function_list li {
  width: 24%;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .function_list li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.function_area .content_wrap .function_list li img {
  width: 100%;
  height: auto;
}
.function_area .content_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .flex_wrap {
    display: block;
  }
}
.function_area .content_wrap .flex_wrap .inner {
  width: 44%;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .flex_wrap .inner {
    width: 100%;
    box-sizing: border-box;
  }
}
.function_area .content_wrap .flex_wrap .inner h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
.function_area .content_wrap .flex_wrap .inner figure {
  width: 100%;
}
.function_area .content_wrap .flex_wrap .inner figure img {
  width: 100%;
  height: auto;
}
.function_area .content_wrap .flex_wrap span {
  width: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .flex_wrap span {
    margin: 20px auto;
  }
}
.function_area .content_wrap .flex_wrap span img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .function_area .content_wrap .flex_wrap span img {
    width: 100%;
    transform: rotate(90deg);
  }
}
.function_area .content_wrap .right {
  margin-top: 20px;
  text-align: right;
}
.function_area .content_wrap .read {
  font-size: 2rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  color: #333;
  font-weight: bold;
}
.function_area .content_wrap .read::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #80E7EC 0%, #80E7EC 40%, #2331FF 100%);
}

.cta_area {
  padding: 80px 0;
  width: 100%;
  background: url(../images/cta_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .cta_area {
    padding: 60px 0;
    background: url(../images/cta_bg_sp.webp);
  }
}
.cta_area .flex_wrap {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1300px) {
  .cta_area .flex_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .cta_area .flex_wrap {
    width: 96%;
    display: block;
  }
}
.cta_area .flex_wrap figure {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .cta_area .flex_wrap figure {
    width: 90%;
    margin: 0 auto 60px;
  }
}
.cta_area .flex_wrap figure img {
  width: 100%;
  height: auto;
}
.cta_area .flex_wrap .btn_wrap {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .cta_area .flex_wrap .btn_wrap {
    width: 100%;
  }
}
.cta_area .flex_wrap .btn_wrap span {
  width: 70%;
  display: block;
  margin: 0 auto 10px;
}
.cta_area .flex_wrap .btn_wrap span img {
  width: 100%;
}
.cta_area .flex_wrap .btn_wrap a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 18px 100px 18px 100px;
  background-color: #FF882E;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cta_area .flex_wrap .btn_wrap a {
    padding: 18px 0 18px 0;
    width: 100%;
    text-align: center;
  }
}
.cta_area .flex_wrap .btn_wrap a::before {
  content: "";
  background: url(../images/mail.webp);
  background-size: cover;
  width: 20px;
  height: 16px;
  position: absolute;
  left: 26px;
  top: 24px;
  opacity: 1;
  transition: all 0.6s;
}
.cta_area .flex_wrap .btn_wrap a::after {
  content: "";
  background: url(../images/arrow_r.png);
  background-size: cover;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 26px;
  top: 24px;
  opacity: 1;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .cta_area .flex_wrap .btn_wrap a {
    margin: 0 auto;
  }
}
.cta_area .flex_wrap .btn_wrap a:hover {
  background-color: #fff;
  border: 2px solid #FF882E;
  color: #FF882E;
}
.cta_area .flex_wrap .btn_wrap a:hover::after {
  right: 0;
  opacity: 0;
  transition: all 0.6s;
}

.voice_area {
  padding: 150px 0;
  width: 100%;
  background: linear-gradient(135deg, #F7FCFF, #E4F1FD);
}
@media screen and (max-width: 767px) {
  .voice_area {
    padding: 60px 0;
  }
}
.voice_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .voice_area .content_wrap {
    width: 96%;
  }
}
.voice_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.voice_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.voice_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .voice_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.voice_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #80E7EC 0%, #80E7EC 40%, #2331FF 100%);
}
.voice_area .content_wrap .content_inner {
  margin: 100px auto 0;
  width: 100%;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner {
    padding: 20px;
  }
}
.voice_area .content_wrap .content_inner dl {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner dl {
    display: block;
    margin-bottom: 30px;
  }
}
.voice_area .content_wrap .content_inner dl dt {
  display: flex;
  align-items: center;
  padding-right: 30px;
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner dl dt {
    width: 100%;
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
  }
}
.voice_area .content_wrap .content_inner dl dt figure {
  width: 140px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner dl dt figure {
    width: 90px;
  }
}
.voice_area .content_wrap .content_inner dl dt figure img {
  width: 100%;
  height: auto;
}
.voice_area .content_wrap .content_inner dl dt p {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
}
.voice_area .content_wrap .content_inner dl dd {
  font-size: 2.8rem;
  color: #333;
  font-weight: bold;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner dl dd {
    padding-left: 0;
    padding-top: 20px;
    font-size: 2rem;
    text-align: center;
  }
}
.voice_area .content_wrap .content_inner dl dd br {
  display: none;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner dl dd br {
    display: block;
  }
}
.voice_area .content_wrap .content_inner dl dd span {
  color: #2331FF;
}
.voice_area .content_wrap .content_inner .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner .flex_wrap {
    display: block;
  }
}
.voice_area .content_wrap .content_inner .flex_wrap figure {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .voice_area .content_wrap .content_inner .flex_wrap figure {
    width: 100%;
    margin-top: 20px;
  }
}
.voice_area .content_wrap .content_inner .flex_wrap figure img {
  width: 100%;
  height: auto;
}

.price_area {
  padding: 150px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .price_area {
    padding: 60px 0;
  }
}
.price_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .price_area .content_wrap {
    width: 96%;
  }
}
.price_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.price_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.price_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .price_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.price_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #80E7EC 0%, #80E7EC 40%, #2331FF 100%);
}
.price_area .content_wrap .content_inner {
  width: 100%;
  padding: 60px;
  margin: 60px auto 0;
  background: linear-gradient(135deg, #F7FCFF, #E4F1FD);
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .price_area .content_wrap .content_inner {
    padding: 30px;
  }
}
.price_area .content_wrap .content_inner .read {
  font-size: 1.8rem;
  color: #2545AB;
  font-weight: bold;
  text-align: center;
}
.price_area .content_wrap .content_inner .flex_wrap {
  width: 100%;
  background: url(../images/price_bg.webp);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 40px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .price_area .content_wrap .content_inner .flex_wrap {
    padding: 30px;
    display: block;
  }
}
.price_area .content_wrap .content_inner .flex_wrap p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  padding: 16px 100px 16px 100px;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price_area .content_wrap .content_inner .flex_wrap p {
    width: 100%;
    padding: 16px;
  }
}
.price_area .content_wrap .content_inner .flex_wrap figure {
  width: 22px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .price_area .content_wrap .content_inner .flex_wrap figure {
    margin: 20px auto;
  }
}
.price_area .content_wrap .content_inner .flex_wrap figure img {
  width: 100%;
  height: auto;
}

.flow_area {
  padding: 150px 0;
  width: 100%;
  background: url(../images/section_bg.webp);
  background-repeat: repeat;
  background-position: left;
}
@media screen and (max-width: 767px) {
  .flow_area {
    padding: 0 0 60px 0;
  }
}
.flow_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .flow_area .content_wrap {
    width: 96%;
  }
}
.flow_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.flow_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.flow_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .flow_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.flow_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.flow_area .content_wrap .flex_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .flow_area .content_wrap .flex_wrap {
    display: block;
  }
}
.flow_area .content_wrap .flex_wrap .inner {
  width: 19%;
  border: 2px solid #CBFFEF;
  background-color: #fff;
  padding: 20px 0 50px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .flow_area .content_wrap .flex_wrap .inner {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0;
    margin: 20px auto;
  }
}
.flow_area .content_wrap .flex_wrap .inner figure {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow_area .content_wrap .flex_wrap .inner figure {
    width: 40%;
  }
}
.flow_area .content_wrap .flex_wrap .inner figure img {
  width: 100%;
  height: auto;
}
.flow_area .content_wrap .flex_wrap .inner .txt_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow_area .content_wrap .flex_wrap .inner .txt_wrap {
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
.flow_area .content_wrap .flex_wrap .inner .txt_wrap span {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 2px 18px;
  border-radius: 30px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.flow_area .content_wrap .flex_wrap .inner .txt_wrap p {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  margin: 10px 0 0;
  text-align: center;
}

.contact_area {
  padding: 150px 0;
  width: 100%;
  background: linear-gradient(135deg, #E9FFFB, #D2FFF5);
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 60px 0;
  }
}
.contact_area .content_wrap {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .contact_area .content_wrap {
    width: 96%;
  }
}
.contact_area .content_wrap .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.contact_area .content_wrap .ttl_wrap img {
  width: 70%;
  display: block;
  margin: 0 auto -20px;
}
.contact_area .content_wrap .ttl_wrap h2 {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #333;
}
@media screen and (max-width: 768px) {
  .contact_area .content_wrap .ttl_wrap h2 {
    font-size: 2.6rem;
  }
}
.contact_area .content_wrap .ttl_wrap h2::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
}
.contact_area .content_wrap .ttl_wrap p {
  font-size: 1.6rem;
  color: #333;
  margin: 20px auto 0;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_area .content_wrap .ttl_wrap p {
    text-align: left;
  }
}
.contact_area .content_wrap .ttl_wrap p br {
  display: block;
}
@media screen and (max-width: 767px) {
  .contact_area .content_wrap .ttl_wrap p br {
    display: none;
  }
}
.contact_area .content_wrap .content_inner {
  margin: 100px auto 0;
  width: 740px;
  box-sizing: border-box;
}
@media screen and (max-width: 1300px) {
  .contact_area .content_wrap .content_inner {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .contact_area .content_wrap .content_inner {
    width: 100%;
  }
}
.contact_area .content_wrap .content_inner dl {
  display: block;
  margin-bottom: 20px;
}
.contact_area .content_wrap .content_inner dl dt {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact_area .content_wrap .content_inner dl dt span {
  padding: 4px 16px;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(to left, #44E2B2 0%, #00C398 40%, #00C398 100%);
  margin-right: 20px;
}
.contact_area .content_wrap .content_inner dl dd {
  width: 100%;
}
.contact_area .content_wrap .content_inner dl dd input {
  border: none;
  background-color: #fff;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
}
.contact_area .content_wrap .content_inner dl dd textarea {
  border: none;
  background-color: #fff;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}
.contact_area .content_wrap .content_inner .check_txt {
  font-size: 1.6rem;
  color: #333;
  margin: 60px auto 0;
  text-align: center;
  font-weight: bold;
}
.contact_area .content_wrap .content_inner .check {
  display: flex;
  align-items: center;
  margin: 10px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_area .content_wrap .content_inner .check label {
  display: flex;
}
.contact_area .content_wrap .content_inner .check input {
  margin-right: 10px;
}
.contact_area .content_wrap .content_inner .check p {
  font-size: 1.6rem;
  color: #333;
}
.contact_area .content_wrap .content_inner .check p a {
  text-decoration: underline;
  color: #4763E2;
  font-weight: bold;
}
.contact_area .content_wrap .content_inner .send_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
.contact_area .content_wrap .content_inner .send_btn input {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 18px 100px 18px 100px;
  background-color: #FF882E;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
}

/* Animation */
.js-fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1s;
}
.js-fade-in-down.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Left */
.js-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s;
}
.js-fade-in-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Up */
.js-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}
.js-fade-in-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation */
.js-fade-in-stagger .inner {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}
.js-fade-in-stagger.is-active .inner {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-in-stagger.is-active .inner:nth-child(1) {
  transition-delay: 0s;
}
.js-fade-in-stagger.is-active .inner:nth-child(2) {
  transition-delay: 0.3s;
}
.js-fade-in-stagger.is-active .inner:nth-child(3) {
  transition-delay: 0.6s;
}
.js-fade-in-stagger.is-active .inner:nth-child(4) {
  transition-delay: 0.9s;
}
.js-fade-in-stagger.is-active .inner:nth-child(5) {
  transition-delay: 1.2s;
}

/* Fade In Left */
.js-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s;
}
.js-fade-in-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Up */
.js-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
  transition-delay: 0.3s;
}
.js-fade-in-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Right */
.js-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s;
}
.js-fade-in-right.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation Down */
.js-fade-in-stagger-down li {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1s;
}
.js-fade-in-stagger-down.is-active li {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-in-stagger-down.is-active li:nth-child(1) {
  transition-delay: 0s;
}
.js-fade-in-stagger-down.is-active li:nth-child(2) {
  transition-delay: 0.3s;
}
.js-fade-in-stagger-down.is-active li:nth-child(3) {
  transition-delay: 0.6s;
}
.js-fade-in-stagger-down.is-active li:nth-child(4) {
  transition-delay: 0.9s;
}

/* Responsive Staggered Animation */
.js-fade-in-stagger-responsive > * {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .js-fade-in-stagger-responsive > * {
    transform: translateY(30px);
  }
}
.js-fade-in-stagger-responsive.is-active > * {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .js-fade-in-stagger-responsive.is-active > * {
    transform: translateY(0);
  }
}
.js-fade-in-stagger-responsive.is-active > *:nth-child(1) {
  transition-delay: 0s;
}
.js-fade-in-stagger-responsive.is-active > *:nth-child(2) {
  transition-delay: 0.3s;
}
.js-fade-in-stagger-responsive.is-active > *:nth-child(3) {
  transition-delay: 0.6s;
}

/* Staggered Animation Left */
.js-fade-in-stagger-left > * {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s;
}
.js-fade-in-stagger-left.is-active > * {
  opacity: 1;
  transform: translateX(0);
}
.js-fade-in-stagger-left.is-active > *:nth-child(1) {
  transition-delay: 0.6s;
}
.js-fade-in-stagger-left.is-active > *:nth-child(2) {
  transition-delay: 0.9s;
}

/* Staggered Animation Price */
.js-fade-in-stagger-price > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}
.js-fade-in-stagger-price.is-active > * {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-in-stagger-price.is-active > *:nth-child(1) {
  transition-delay: 0.6s;
}
.js-fade-in-stagger-price.is-active > *:nth-child(2) {
  transition-delay: 0.9s;
}
.js-fade-in-stagger-price.is-active > *:nth-child(3) {
  transition-delay: 1.2s;
}/*# sourceMappingURL=style.css.map */