@charset "UTF-8";
/*===========================
変数設定
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
  /* ルートのフォントサイズを10pxに設定 */
  font-family: "Helvetica Neue",Arial,'Noto Sans JP','Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}

body {
  font-size: 1.6rem;
  /* bodyのフォントサイズを1.6em（16px）に設定 */
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h1 {
  font-size: 5.0rem;
  /* 50px */
}

h2 {
  font-size: 3.2rem;
  /* 32px */
  font-weight: bold;
}

h3 {
  font-size: 2.0rem;
  /* 20px */
}

p {
  font-size: 1.6rem;
  /* 16px */
  margin: 5% 2%;
}

a {
  color: #09F;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

.wrap {
  width: 96%;
  max-width: 800px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .wrap {
    width: 100%;
  }
}

.block {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .block {
    width: 100%;
  }
}

.box {
  max-width: 700px;
  width: 96%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .box {
    width: 100%;
  }
}

.maincolor {
  color: #2c5491;
}

.bold {
  font-weight: bold;
}

.yellow-marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

.pc {
  display: block;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: block;
}

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

.swiper-wrapper {
  width: 100%;
  height: 00px;
}

.swiper-wrapper img {
  width: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  color: #000;
}

.swiper-container {
  position: relative;
  background: #70adce;
}

.swiper-container .main_copy {
  text-align: center;
  background: #ffffffcc;
  width: 90%;
  max-width: 400px;
  margin: 5% auto;
  padding: 4% 2%;
  position: absolute;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .swiper-container .main_copy {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 2% 0 1%;
    z-index: 1000;
    position: absolute;
    bottom: 50%;
    right: 10%;
    left: auto;
    transform: translateY(50%);
  }
}

.swiper-container .main_copy h2 {
  font-family: "BIZ UDPMincho", serif;
  color: #2c5491;
  font-size: 2.6rem;
  margin: 0 2% 1%;
}

@media only screen and (min-width: 768px) {
  .swiper-container .main_copy h2 {
    font-size: 4rem;
  }
}

.swiper-container .main_copy h3 {
  font-weight: bold;
  font-size: 1.6rem;
  color: #4f5466;
}

@media only screen and (min-width: 768px) {
  .swiper-container .main_copy h3 {
    font-size: 2rem;
  }
}

.swiper-container a:hover img {
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}

.swiper-container .mv_btn {
  width: 80%;
  filter: drop-shadow(2px 2px 5px #7e8395);
  margin: 5% 0;
}

@media only screen and (min-width: 768px) {
  .swiper-container .mv_btn {
    width: 60%;
  }
}

.fixed_area {
  text-align: center;
}

.fixed_area a:after {
  content: "";
  background: url(../images/arrow02.svg) no-repeat;
  display: inline-block;
  width: 20px;
  height: 17px;
  margin-left: 3%;
}

@media only screen and (min-width: 768px) {
  .fixed_area a:after {
    margin-top: 2%;
  }
}

.fixed_btn {
  position: fixed;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #f85d00 0%, #ff8a00 56%, #fcb436 100%);
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

@media only screen and (min-width: 768px) {
  .fixed_btn {
    width: 160px;
    padding: 1% 0;
  }
}

.free_here {
  display: inline-block;
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
  font-family: "BIZ UDPMincho", serif;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row;
}

@media only screen and (min-width: 768px) {
  .free_here {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.lead p {
  font-family: "BIZ UDPMincho", serif;
  color: #2c5491;
  text-align: center;
  font-size: 2rem;
  background: #e3f1f7;
  border-top: #fff solid 2px;
  padding: 2%;
  margin: 0;
}

.corp p  {
  font-family: "BIZ UDPMincho", serif;
  color: #2c5491;
  text-align: center;
  font-size: 2rem;
  background: #e3f1f7;
  border-top: #fff solid 2px;
  padding: 2%;
  margin: 0;
}


@media only screen and (min-width: 768px) {
  .lead p {
    font-size: 3rem;
    padding: 1% 0;
  }
}

@media only screen and (min-width: 768px) {
  .corp p {
    font-size: 3rem;
    padding: 1% 0;
  }
}

.trouble .trouble_bg {
  background: url("../images/trouble_bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 4% 0;
  position: relative;
}

.trouble .wrap {
  text-align: center;
}

.trouble .trouble_arrow img {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
}

@media only screen and (min-width: 768px) {
  .trouble .trouble_arrow img {
    width: 15%;
    max-width: 200px;
    bottom: -4%;
  }
}

@media only screen and (min-width: 768px) {
  .trouble .trouble_list img {
    width: 80%;
    text-align: center;
  }
}

.trouble .solve {
  padding: 5% 0;
}

.trouble .solve p {
  line-height: 1.8;
}

@media only screen and (min-width: 768px) {
  .trouble .solve p {
    font-size: 2.0rem;
  }
}

@media only screen and (min-width: 768px) {
  .trouble .service_image img {
    width: 70%;
  }
}

.support {
  padding-top: 15%;
  background: url("../images/support_bg_sp.jpg") no-repeat top center;
  background-size: 102%;
}

@media only screen and (min-width: 768px) {
  .support {
    padding-top: 10%;
    background: url("../images/support_bg.jpg") no-repeat top center;
    background-size: 102%;
  }
}

.support h2 {
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.2rem;
  margin: 0 2% 5%;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .support h2 {
    font-size: 4rem;
  }
}

.support .wrap {
  background: #f2f6fa;
  width: 92%;
  filter: drop-shadow(0px 0px 6px rgba(13, 46, 95, 0.2));
}

.support h3 {
  text-align: center;
  padding-top: 5%;
}

.support .allow01 {
  text-align: center;
}

.support .allow01 img {
  width: 20%;
}

@media only screen and (min-width: 768px) {
  .support .allow01 img {
    max-width: 100px;
    width: 10%;
  }
}

.support ul {
  padding: 5% 2%;
}

@media only screen and (min-width: 768px) {
  .support ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

.support li {
  background: #3b85c2;
  margin-bottom: 4%;
  padding: 2% 5% 2% 17%;
  color: #fff;
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .support li {
    width: 48%;
    margin-bottom: 2%;
    height: 120px;
    display: flex;
    align-items: center;
    padding: 8% 2% 8% 8%;
  }
}

.support li:before {
  position: absolute;
  content: url(../images/check.svg);
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  color: #fff;
}

.support .sub {
  font-size: 1.4rem;
}

.approach {
  background: #e9f3f5;
  padding: 8% 0 5%;
}

.approach .flexbox {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .approach .flexbox {
    display: flex;
    flex-direction: row;
  }
}

.approach .flexbox li {
  background: #fff;
  display: flex;
  padding: 5%;
  align-items: center;
  margin: 0 auto 2%;
  width: 96%;
  padding: 5% 3% 5% 5%;
}

@media only screen and (min-width: 768px) {
  .approach .flexbox li {
    width: 30%;
    text-align: center;
    padding: 4% 2%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

.approach .flexbox li p {
  margin: 0 0 0 5%;
}

@media only screen and (min-width: 768px) {
  .approach .flexbox li p {
    margin: 12% 0 0 0;
  }
}

.approach .approach_icon {
  width: 70px;
  height: 70px;
  display: flex;
  margin-left: 3%;
}

@media only screen and (min-width: 768px) {
  .approach .approach_icon {
    width: 35%;
    height: 35%;
  }
}

.approach .free_consultation {
  font-size: 2.4rem;
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .approach .free_consultation {
    font-size: 4rem;
    margin: 2% 0;
  }
}

.point01 .title_area h2 {
  background: url(../images/point_bg.jpg) no-repeat top center;
  background-size: cover;
  text-align: center;
  padding: 5% 0;
}

.point01 .title_area h2 img {
  width: 90%;
}

@media only screen and (min-width: 768px) {
  .point01 .title_area h2 img {
    width: 40%;
  }
}

.point01 .title_area h3 {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 5%;
}

.point01 .point01_bg {
  padding-bottom: 2%;
}

@media only screen and (min-width: 768px) {
  .point01 .point01_bg {
    background: url(../images/point02_bg.png) no-repeat bottom left;
    background-size: 100%;
  }
}

.point01 .annotation {
  font-size: 1.2rem;
  display: block;
  text-align: right;
}

.point01 .introduce_staff {
  padding: 10% 0;
  background: #70adce;
}

@media only screen and (min-width: 768px) {
  .point01 .introduce_staff {
    background: #70adce url(../images/introduce_bg.png) no-repeat top right;
    background-size: 70%;
  }
}

.point01 .introduce_staff .wrap {
  background: #fff;
  padding: 1% 0;
}

.point01 .introduce_staff h3 {
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
  color: #2c5491;
  margin: 5% 0 3%;
  font-size: 2.8rem;
}

.point01 .introduce_staff h3:after {
  content: "Registered staff";
  font-size: 1.2rem;
  display: block;
}

@media only screen and (min-width: 768px) {
  .point01 .introduce_staff .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

.point01 .introduce_staff .yt_wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin-bottom: 5%;
}

@media only screen and (min-width: 768px) {
  .point01 .introduce_staff .yt_wrap {
    width: 45%;
    padding-bottom: 25.3%;
  }
}

.point01 .introduce_staff .yt_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .point02 {
    background: #fff url(../images/point02_bg.png) no-repeat bottom left;
  }
}

.point02 .title_area h3 {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 5%;
}

.point02 .yt_wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .point02 .yt_wrap {
    width: 50%;
    padding-bottom: 28.1%;
  }
}

.point02 .yt_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.point02 .annotation {
  font-size: 1.2rem;
  display: block;
}

.point02 .support_example {
  background: #f2f6fa;
  margin-top: 15%;
}

@media only screen and (min-width: 768px) {
  .point02 .support_example {
    width: 800px;
    margin: 8% auto 5%;
    padding-top: 2%;
  }
}

.point02 .support_example .block {
  padding: 5% 0;
  width: 92%;
  filter: drop-shadow(0px 0px 4px rgba(13, 46, 95, 0.2));
  position: relative;
}

@media only screen and (min-width: 768px) {
  .point02 .support_example .block {
    padding: 1% 0 3% 0;
  }
}

.point02 .support_example .block .wrap {
  width: 100%;
  margin-bottom: 10%;
  margin-top: 5%;
}

@media only screen and (min-width: 768px) {
  .point02 .support_example .block .wrap {
    margin-bottom: 5%;
  }
}

.point02 .support_example .block h3 {
  display: inline-block;
  background: #3b7999;
  color: #fff;
  border-radius: 50px;
  padding: 1% 8%;
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .point02 .support_example .block h3 {
    top: -6%;
  }
}

.point02 .support_example .block .flexbox {
  display: flex;
  flex-wrap: wrap;
}

.point02 .support_example .block .flexbox2 {
  flex-direction: row-reverse;
}

.point02 .support_example .block h4 {
  font-size: 1.8rem;
  font-family: "BIZ UDPMincho", serif;
  color: #2c5491;
  text-align: center;
  padding: 2% 5%;
  background: #fff;
}

.point02 .support_example .block p {
  background: #70adce;
  color: #fff;
  margin: 0;
  padding: 5%;
}

@media only screen and (min-width: 768px) {
  .point02 .support_example .block p {
    width: 50%;
    padding: 5% 4%;
  }
}

@media only screen and (min-width: 768px) {
  .point02 .border {
    background: #70adce;
    height: 110px;
  }
}

@media only screen and (min-width: 768px) {
  .point03 {
    padding-top: 5%;
    background: #fff url(../images/point03_bg.png) no-repeat top right;
  }
}

.point03 .title_area h3 {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg {
    background: linear-gradient(to right, #fff 55%, #e3f1f7 55%);
    padding-bottom: 5%;
  }
}

.point03 .point03_bg .annotation {
  font-size: 1.2rem;
  text-align: right;
  margin: 0;
  padding: 2% 2%;
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg .annotation {
    margin: 0 0 5% 0;
  }
}

.point03 .point03_bg p {
  margin: 5% 4%;
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg p {
    margin: 5% 2%;
  }
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg .flexbox {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg .text_area {
    width: 30%;
    margin: 0 2%;
    line-height: 1.8;
  }
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg .movie_area {
    width: 60%;
    margin: 0 2%;
  }
}

.point03 .point03_bg h4 {
  font-family: "BIZ UDPMincho", serif;
  color: #2c5491;
  text-align: center;
  font-size: 2rem;
  margin-top: 5%;
}

.point03 .point03_bg .yt_wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.point03 .point03_bg .yt_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.point03 .point03_bg .point03_photo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto 5%;
}

@media only screen and (min-width: 768px) {
  .point03 .point03_bg .point03_photo {
    width: 100%;
  }
}

.point03 .point03_bg .point03_img01 {
  width: 49%;
}

.point03 .point03_bg .point03_img02 {
  width: 49%;
}

.point03 .more {
  background: #eef2f6;
  padding: 10% 0;
}

.point03 .more .title_area h3 {
  width: 90%;
  margin: 0 auto 5%;
}

@media only screen and (min-width: 768px) {
  .point03 .more .title_area h3 {
    width: 80%;
    margin: 0 auto;
  }
}

.point03 .more .yt_wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .point03 .more .yt_wrap {
    width: 50%;
    padding-bottom: 28.1%;
  }
}

.point03 .more .yt_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.point03 .more .flexbox {
  margin-top: 5%;
}

@media only screen and (min-width: 768px) {
  .point03 .more .flexbox {
    display: flex;
    flex-wrap: wrap;
  }
}

.point03 .more .text_area {
  background: #70adce;
  color: #fff;
  margin: 0;
  padding: 5%;
}

@media only screen and (min-width: 768px) {
  .point03 .more .text_area {
    width: 50%;
    padding: 0 2%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
}

.point03 .more .text_area h4 {
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.6rem;
  text-align: center;
  border-bottom: solid #fff 1px;
  width: 100%;
}

.flow {
  background: #a6c5d1;
  padding: 15% 0;
}

@media only screen and (min-width: 768px) {
  .flow {
    padding: 10% 0;
  }
}

.flow .wrap {
  background-color: #fff;
  position: relative;
  padding: 5% 0;
  max-width: 900px;
  width: 96%;
}

.flow h3 {
  display: inline-block;
  background: #02589e;
  color: #fff;
  border-radius: 100px;
  padding: 1% 8%;
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  text-align: center;
  filter: drop-shadow(0 5px 0 #153951);
}

@media only screen and (min-width: 768px) {
  .flow h3 {
    top: -5%;
    width: 35%;
  }
}

.faq {
  padding: 5% 0;
}

@media only screen and (min-width: 768px) {
  .faq {
    background: url(../images/faq_bg.jpg) no-repeat bottom center;
    background-size: 104%;
    padding: 5% 0 10%;
  }
}

.faq .wrap {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .faq .wrap img {
    width: 80%;
  }
}

footer {
  background: #2b6077;
  color: #fff;
  padding: 5% 0;
}

@media only screen and (min-width: 768px) {
  footer {
    padding: 1% 0;
  }
}

footer .flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

footer .footer_logo {
  width: 20%;
  max-width: 70px;
  margin: 2%;
}

footer .company_address {
  width: 70%;
}

footer p {
  font-size: 1.2rem;
  margin: 0 2%;
}

footer address {
  font-size: 1.2rem;
  text-align: center;
}
/*# sourceMappingURL=main.css.map */