@charset "UTF-8";
.sp_img {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp_img {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .pc_img {
    display: none;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 10px;
  /*IE9以前に対応する*/
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0px;
}

@media screen and (max-width: 599px) {
  body {
    letter-spacing: 1px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

.section__ttl {
  font-size: 18px;
  /*IE9以前に対応する*/
  font-size: 1.125rem;
  text-align: center;
}

.section__inner {
  margin: 0 auto;
  padding: 0 4vw;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 599px) {
  .header {
    background-color: #fff;
    position: relative;
  }
}

@media screen and (max-width: 959px) {
  .header {
    background-color: #fff;
    position: relative;
  }
}

.header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0.1% 4vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav {
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  .nav {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: inline-block;
  margin-right: 1vw;
  color: #333333;
}

.nav__list a {
  color: #333333;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  h1.header__ttl img {
    height: 35px;
    width: auto;
  }
}

.hamburger-btn {
  display: none;
}

@media screen and (max-width: 599px) {
  .hamburger-btn {
    display: block;
    position: relative;
    width: 25px;
    height: 16px;
    margin-right: 4vw;
    z-index: 20;
  }
}

@media screen and (max-width: 959px) {
  .hamburger-btn {
    display: block;
    position: relative;
    width: 25px;
    height: 16px;
    margin-right: 4vw;
    z-index: 20;
  }
}

.hamburger-btn__parts {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.hamburger-btn__parts.-top {
  top: 0;
}

.hamburger-btn__parts.-middle {
  top: 0;
  bottom: 0;
  margin: auto;
}

.hamburger-btn__parts.-bottom {
  bottom: 0;
}

.contact_btn {
  padding: 15px 30px;
  color: #fff;
  border-radius: 60px;
  font-weight: bold;
  /*太字に*/
  background-color: #fe8b16;
}

.contact_btn a {
  color: #fff;
  font-size: 1.5em;
  /*サイズ2倍*/
}

.contact_btn img {
  width: 25px;
  margin-right: 20px;
}

.hamburger-btn.active .hamburger-btn__parts.-top {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.hamburger-btn.active .hamburger-btn__parts.-middle {
  opacity: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-bottom {
  -webkit-transform: translateY(-4px) rotate(45deg);
          transform: translateY(-4px) rotate(45deg);
}

.hamburger {
  display: none;
}

@media screen and (max-width: 599px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #0065bb;
  }
  .hamburger__lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    height: 100vh;
  }
}

@media screen and (max-width: 959px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #0065bb;
  }
  .hamburger__lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    height: 100vh;
    margin-top: -80px;
  }
}

.hamburger__list {
  font-size: 16px;
  /*IE9以前に対応する*/
  font-size: 1rem;
  list-style: none;
  text-align: center;
}

.hamburger__list + .hamburger__list {
  padding-top: 50px;
}

.hamburger__link {
  text-decoration: none;
  color: #ffffff;
}

.hamburger.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.contact_btn_sp {
  padding: 0px 20px;
  color: #fff;
  font-weight: bold;
  /*太字に*/
  background-color: #fe8b16;
  border-radius: 60px;
  margin-top: 50px;
}

.contact_btn_sp a {
  color: #fff;
  font-size: 1.1em;
  /*サイズ2倍*/
  text-decoration: none;
  position: relative;
  top: -25px;
  padding: 0px;
}

.contact_btn_sp img {
  width: 25px;
  margin-right: 20px;
}

.fv {
  /*親div*/
  position: relative;
  /*相対配置*/
}

.fv p.fv_txt1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: -150px;
  padding: 0;
  color: white;
  /*文字は白に*/
  font-weight: bold;
  /*太字に*/
  font-size: 7em;
  /*サイズ2倍*/
  text-shadow: 1px 2px 3px #808080;
}

@media screen and (max-width: 1024px) {
  .fv p.fv_txt1 {
    margin-top: -150px;
    width: 50%;
  }
}

@media screen and (max-width: 959px) {
  .fv p.fv_txt1 {
    margin-top: -150px;
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .fv p.fv_txt1 {
    font-size: 3em;
    /*サイズ2倍*/
    margin-top: -180px;
    width: 70%;
  }
}

.fv p.fv_txt2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: -60px;
  padding: 0px;
  color: white;
  /*文字は白に*/
  font-weight: bold;
  /*太字に*/
  font-size: 2.7em;
  /*サイズ2倍*/
  text-shadow: 1px 2px 3px #808080;
}

@media screen and (max-width: 1024px) {
  .fv p.fv_txt2 {
    font-size: 2.5em;
    /*サイズ2倍*/
    text-align: center;
    margin-top: -70px;
    width: 60%;
  }
}

@media screen and (max-width: 959px) {
  .fv p.fv_txt2 {
    font-size: 2em;
    /*サイズ2倍*/
    text-align: center;
    margin-top: -70px;
    width: 60%;
  }
}

@media screen and (max-width: 599px) {
  .fv p.fv_txt2 {
    font-size: 1.5em;
    /*サイズ2倍*/
    margin-top: -120px;
    width: 90%;
  }
}

.fv p.fv_txt3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 50px;
  padding: 15px;
  font-weight: bold;
  /*太字に*/
  font-size: 2.3em;
  /*サイズ2倍*/
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 1024px) {
  .fv p.fv_txt3 {
    text-align: center;
    width: 70%;
    font-size: 1.5rem;
    margin-top: 30px;
  }
}

@media screen and (max-width: 959px) {
  .fv p.fv_txt3 {
    text-align: center;
    width: 60%;
    font-size: 1rem;
    margin-top: 0px;
  }
}

@media screen and (max-width: 599px) {
  .fv p.fv_txt3 {
    width: 90%;
    font-size: 1rem;
    margin-top: -30px;
  }
}

.fv p.fv_txt4 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 180px;
  padding: 15px 30px;
  color: #fff;
  border-radius: 60px;
  font-weight: bold;
  /*太字に*/
  font-size: 2.3em;
  /*サイズ2倍*/
  background-color: #fe8b16;
}

@media screen and (max-width: 959px) {
  .fv p.fv_txt4 {
    margin-top: 120px;
    text-align: center;
    line-height: 40px;
    width: 40%;
    font-size: 1rem;
    /*サイズ2倍*/
  }
}

@media screen and (max-width: 599px) {
  .fv p.fv_txt4 {
    margin-top: 100px;
    line-height: 40px;
    width: 80%;
    font-size: 1rem;
    /*サイズ2倍*/
  }
}

.fv p.fv_txt4 img {
  width: 40px;
  margin-right: 20px;
}

.fv p.loop_wrap {
  position: absolute;
  margin-top: -100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .fv p.loop_wrap {
    margin-top: -20px;
  }
}

@media screen and (max-width: 959px) {
  .fv p.loop_wrap {
    margin-top: -40px;
  }
}

@media screen and (max-width: 599px) {
  .fv p.loop_wrap {
    margin-top: -50px;
  }
}

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

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

.loop_wrap img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.loop_wrap img:last-child {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

.fv img {
  width: 100%;
}

.section__ttl {
  position: relative;
  display: inline-block;
  background-color: #e0f5fe;
  border-bottom: solid 4px #000;
  padding: 8px;
  min-width: 240px;
  max-width: 100%;
  text-align: center;
}

.section__ttl:before,
.section__ttl:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section__ttl:before {
  border: solid 12px transparent;
  border-top: solid 12px #000;
}

.section__ttl:after {
  border: solid 10px transparent;
  border-top: solid 10px #e0f5fe;
  margin-top: -5px;
}

.section__ttl p {
  margin: 0;
  padding: 0;
  color: #000;
}

.section__ttl_w {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-bottom: solid 4px #000;
  padding: 8px;
  min-width: 240px;
  max-width: 100%;
  text-align: center;
}

.section__ttl_w:before,
.section__ttl_w:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section__ttl_w:before {
  border: solid 12px transparent;
  border-top: solid 12px #000;
}

.section__ttl_w:after {
  border: solid 10px transparent;
  border-top: solid 10px #fff;
  margin-top: -5px;
}

.section__ttl_w p {
  margin: 0;
  padding: 0;
  color: #000;
}

.section_txt1 {
  font-weight: bold;
  /*太字に*/
  font-size: 3em;
  color: #000;
  margin-top: -1px;
}

@media screen and (max-width: 959px) {
  .section_txt1 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 599px) {
  .section_txt1 {
    font-size: 1rem;
  }
}

.section_txt1 span {
  font-size: 2em;
  /*サイズ2倍*/
}

.Text-Span {
  position: relative;
  z-index: 1;
}

.Text-Span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 15px;
  background: #f2df33;
  z-index: -1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.Text-Span.isActive:after {
  width: 100%;
}

.section_1 {
  background: #e0f5fe;
  margin-top: -50px;
  padding-top: 150px;
  padding-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .section_1 {
    margin-top: -120px;
  }
}

.flexbox_1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

@media screen and (max-width: 599px) {
  .flexbox_1 {
    display: block;
  }
}

/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  -webkit-animation: 7s fuwafuwa2 infinite;
          animation: 7s fuwafuwa2 infinite;
}

/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa2 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa2 {
  -webkit-animation: 6s fuwafuwa infinite;
          animation: 6s fuwafuwa infinite;
}

/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa3 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa3 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa3 {
  -webkit-animation: 5s fuwafuwa infinite;
          animation: 5s fuwafuwa infinite;
}

/* 回転するアニメーション */
@-webkit-keyframes fuwafuwa4 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes fuwafuwa4 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa4 {
  -webkit-animation: 4s fuwafuwa infinite;
          animation: 4s fuwafuwa infinite;
}

.balloon1 {
  position: relative;
  top: -20px;
  left: 10%;
  display: inline-block;
  padding: 50px 20px 20px 20px;
  width: 214px;
  height: 214px;
  text-align: center;
  color: #333333;
  font-size: 2em;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.balloon1 span {
  font-weight: bold;
  font-size: 1.5em;
  color: #0065bb;
}

@media screen and (max-width: 1024px) {
  .balloon1 {
    left: 50px;
    top: -70px;
  }
}

@media screen and (max-width: 959px) {
  .balloon1 {
    font-size: 1.4em;
    left: 70px;
    top: -40px;
    width: 154px;
    height: 154px;
    padding: 40px 20px 20px 20px;
  }
}

@media screen and (max-width: 599px) {
  .balloon1 {
    font-size: 1.4em;
    left: 0%;
    width: 154px;
    height: 154px;
    padding: 40px 20px 20px 20px;
    top: -10px;
  }
}

.balloon1:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 0;
}

.balloon2 {
  position: relative;
  display: inline-block;
  top: -180px;
  left: 7%;
  margin: 1.5em 0;
  padding: 80px 20px 20px 20px;
  width: 260px;
  height: 260px;
  text-align: center;
  color: #333333;
  font-size: 2em;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.balloon2 span {
  font-weight: bold;
  font-size: 1.5em;
  color: #0065bb;
}

@media screen and (max-width: 1024px) {
  .balloon2 {
    left: 150px;
    top: -150px;
  }
}

@media screen and (max-width: 959px) {
  .balloon2 {
    font-size: 1.4em;
    width: 200px;
    height: 200px;
    left: 120px;
  }
}

@media screen and (max-width: 599px) {
  .balloon2 {
    font-size: 1.4em;
    width: 200px;
    height: 200px;
    left: 45%;
    top: -190px;
  }
}

@media screen and (min-width: 390px) and (max-width: 599px) {
  .balloon2 {
    font-size: 1.4em;
    width: 200px;
    height: 200px;
    left: 3%;
    top: 0px;
  }
}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 0;
}

.balloon3 {
  position: relative;
  display: inline-block;
  top: 20px;
  left: 0%;
  margin: 1.5em 0;
  padding: 70px 20px 20px 20px;
  width: 220px;
  height: 220px;
  text-align: center;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.balloon3 span {
  font-weight: bold;
  font-size: 1.2em;
  color: #0065bb;
}

@media screen and (max-width: 1024px) {
  .balloon3 {
    left: 220px;
    top: -200px;
  }
}

@media screen and (max-width: 959px) {
  .balloon3 {
    font-size: 1.4em;
    left: -5%;
    width: 154px;
    height: 154px;
    top: -150px;
    padding: 40px 20px 20px 20px;
  }
}

@media screen and (max-width: 599px) {
  .balloon3 {
    font-size: 1.4em;
    left: -5%;
    width: 154px;
    height: 154px;
    top: -280px;
    padding: 40px 20px 20px 20px;
  }
}

@media screen and (min-width: 390px) and (max-width: 599px) {
  .balloon3 {
    font-size: 1.4em;
    left: 0%;
    width: 154px;
    height: 154px;
    top: -50px;
    padding: 40px 20px 20px 20px;
  }
}

.balloon3:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 0;
}

.balloon4 {
  position: relative;
  display: inline-block;
  top: -200px;
  left: -10%;
  margin: 1.5em 0;
  padding: 35px 20px 20px 20px;
  width: 180px;
  height: 180px;
  text-align: center;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.balloon4 span {
  font-weight: bold;
  font-size: 1.2em;
  color: #0065bb;
}

@media screen and (max-width: 1024px) {
  .balloon4 {
    left: 250px;
    top: -190px;
  }
}

@media screen and (max-width: 959px) {
  .balloon4 {
    font-size: 1.4em;
    left: 50px;
    width: 170px;
    height: 170px;
    padding: 40px 20px 20px 20px;
  }
}

@media screen and (max-width: 599px) {
  .balloon4 {
    font-size: 1.4em;
    left: 0%;
    width: 154px;
    height: 154px;
    padding: 40px 20px 20px 20px;
    top: -200px;
  }
}

@media screen and (min-width: 390px) and (max-width: 599px) {
  .balloon4 {
    font-size: 1.4em;
    left: 5%;
    width: 154px;
    height: 154px;
    padding: 40px 20px 20px 20px;
    top: -0px;
  }
}

.balloon4:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  z-index: 0;
}

.section1_img1 {
  max-width: 400px;
}

@media screen and (max-width: 599px) {
  .section1_img1 {
    margin: auto;
    margin-top: -280px;
    max-width: 90%;
  }
}

@media screen and (min-width: 390px) and (max-width: 599px) {
  .section1_img1 {
    margin: auto;
    margin-top: -50px;
    max-width: 90%;
  }
}

.section_2 {
  background: url(../img/section2_bg.png) center center/cover no-repeat;
  padding-bottom: 50px;
}

@media screen and (max-width: 1380px) {
  .section_2 {
    margin-top: -200px;
  }
}

@media screen and (max-width: 1024px) {
  .section_2 {
    margin-top: -200px;
  }
}

@media screen and (max-width: 959px) {
  .section_2 {
    margin-top: -150px;
  }
}

@media screen and (max-width: 599px) {
  .section_2 {
    margin-top: 0px;
  }
}

.section_2 .section__inner {
  max-width: 800px;
  padding: 50px;
  font-size: 1.4em;
}

@media screen and (max-width: 599px) {
  .section_2 .section__inner {
    padding: 20px;
    font-size: 1.2em;
    line-height: 40px;
    padding-bottom: 10px;
  }
}

.section2_img1 {
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .section2_img1 {
    width: 100%;
  }
}

.section_2 .contact_btn {
  max-width: 400px;
  margin: auto;
  text-align: center;
  margin-top: -20px;
}

.section_2 .contact_btn a {
  text-decoration: none;
}

.section_2 .contact_btn img {
  width: 40px;
  margin-right: 20px;
}

.section_3 {
  padding-top: 50px;
  padding-bottom: 30px;
}

.point_wrap {
  height: 250px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 599px) {
  .point_wrap {
    display: block;
    margin-bottom: 410px;
  }
}

.point_wrap figure {
  width: 50%;
  height: 200px;
  margin: 0;
  display: -ms-grid;
  display: grid;
  place-items: center center;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 599px) {
  .point_wrap figure {
    display: block;
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .point3-3 {
    display: block;
    padding: 0px;
    position: relative;
    top: 50px;
  }
}

@media screen and (max-width: 599px) {
  .point3-4 {
    display: block;
    padding: 0px;
    position: relative;
    top: 20px;
  }
}

.point_txt {
  -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
  margin-top: 50px;
}

@media screen and (max-width: 599px) {
  .point_txt {
    margin-top: 0px;
    margin-left: -10px;
  }
}

.point_txt h3 {
  font-size: 20px;
}

.point_txt p {
  margin-top: -100px;
  margin-left: 15px;
  background: #fff;
  border: 2px solid #0065bb;
  -webkit-box-shadow: 15px 15px 0px 0 #f2e933;
          box-shadow: 15px 15px 0px 0 #f2e933;
  padding: 30px;
  padding-top: 100px;
  font-size: 1rem;
}

.point_txt span {
  font-size: 0.6rem;
}

.point_txt img {
  max-width: 400px;
}

.point_wrap_right {
  height: 250px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  margin-top: 150px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 599px) {
  .point_wrap_right {
    display: block;
    position: relative;
    margin-bottom: 350px;
  }
}

.point_wrap_right figure {
  width: 50%;
  height: 200px;
  margin: 0;
  display: -ms-grid;
  display: grid;
  place-items: center center;
  position: absolute;
  left: 0px;
  top: 0;
  right: 0;
}

@media screen and (max-width: 599px) {
  .point_wrap_right figure {
    display: block;
    position: relative;
    width: 100%;
  }
}

.point2 {
  margin-top: 100px;
}

.point3-area {
  margin-top: 150px;
}

.section_4 {
  margin-top: 280px;
  padding-bottom: 100px;
  background: url(../img/section4_bg.jpg);
}

@media screen and (max-width: 599px) {
  .section_4 {
    margin-top: 100px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 599px) {
  .section_4 .section_txt1 span {
    font-size: 1.5rem;
  }
}

.section_4_midashi {
  max-width: 500px;
  margin: auto;
}

.section_4_midashi img {
  margin-top: -17px;
}

.section_4_bane {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 50px;
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  .section_4_bane {
    width: 100%;
    margin-top: -20px;
  }
}

.section_4_bane p {
  font-size: 0.9rem;
}

.section_4_bane .baneflex {
  width: 25%;
  padding: 30px;
}

@media screen and (max-width: 959px) {
  .section_4_bane .baneflex {
    padding: 15px;
  }
}

@media screen and (max-width: 599px) {
  .section_4_bane .baneflex {
    width: 50%;
    padding: 15px;
  }
}

.hover {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hover:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

#form_submit_button:hover {
  background-color: #fe580f !important;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 200;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  padding: 10px 30px;
  background-color: #fff;
  height: 90%;
  overflow: auto;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

/* 以下ボタンスタイル */
.baneflex button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 0px !important;
}

.pop_midashi {
  width: 100%;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  background-color: #0065bb;
  color: #fff;
  border-radius: 60px;
  padding: 10px;
  clear: both;
  text-align: center;
}

.popup_flex {
  padding: 20px;
  display: -webkit-box;
  /* old Android */
  display: -webkit-flex;
  /* Safari etc. */
  display: -ms-flexbox;
  /* IE10        */
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
}

.popup_flex img {
  width: 25%;
  padding: 10px;
}

@media screen and (max-width: 599px) {
  .popup_flex img {
    width: 50%;
    padding: 5px !important;
  }
}

.section_5 {
  background: url(../img/section5_bg.png) center center/cover no-repeat;
  padding-bottom: 50px;
  position: relative;
  z-index: 20;
}

.section_5 .section__inner {
  max-width: 1000px;
  padding: 50px;
  font-size: 1.4em;
}

@media screen and (max-width: 599px) {
  .section_5 .section__inner {
    padding: 20px;
    font-size: 1.2em;
    line-height: 40px;
    padding-bottom: 10px;
  }
}

.section_5 .contact_btn {
  max-width: 400px;
  margin: auto;
  text-align: center;
  margin-top: -20px;
}

.section_5 .contact_btn a {
  text-decoration: none;
}

@media screen and (max-width: 599px) {
  .section_5 .contact_btn {
    margin-top: 10px;
  }
}

.section_5 .contact_btn img {
  width: 40px;
  margin-right: 20px;
}

.section_6 {
  background: #e0f5fe;
  margin-top: -50px;
  padding-top: 110px;
  padding-bottom: 30px;
  position: relative;
  z-index: 10;
  padding-bottom: 200px;
}

@media screen and (max-width: 599px) {
  .section_6 {
    margin-top: -80px;
  }
}

.section_6 h2 {
  font-size: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .section_6 h2 {
    font-size: 2rem;
  }
}

.section_6 .section_txt1 {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 599px) {
  .section_6 .section_txt1 {
    font-size: 1rem;
    margin-top: -10px;
  }
}

.section_6 figure {
  max-width: 1100px;
  margin: auto;
  padding-top: 30px;
}

@media screen and (max-width: 599px) {
  .section_6 figure {
    padding-top: 15px;
  }
}

.section_7 {
  position: relative;
  z-index: 20;
  margin-top: -10px;
  padding-bottom: 100px;
  background: url(../img/section4_bg.jpg);
}

@media screen and (max-width: 599px) {
  .section_7 {
    margin-top: -100px !important;
    padding-bottom: 70px;
  }
}

.section_7_midashi {
  max-width: 500px;
  margin: auto;
}

.section_7_midashi img {
  margin-top: -17px;
}

.section_7_voice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  max-width: 1150px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  .section_7_voice {
    display: block;
  }
}

.section_7_voice figure {
  padding: 0px;
  margin: 0px;
  padding-top: 20px;
}

.section_7_voice figure img {
  max-width: 600px;
}

.section_7_voice div:nth-child(1) {
  width: 60%;
  padding-right: 50px;
}

@media screen and (max-width: 959px) {
  .section_7_voice div:nth-child(1) {
    width: 100%;
    padding: 0px;
  }
}

@media screen and (max-width: 599px) {
  .section_7_voice div:nth-child(1) {
    width: 100%;
    padding: 0px;
  }
}

.section_7_voice div:nth-child(2) {
  margin-top: 50px;
}

.section_7_voice h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  padding: 10px;
}

@media screen and (max-width: 599px) {
  .section_7_voice h3 {
    font-size: 1.1rem;
  }
}

.section_7_voice p {
  font-size: 0.9rem;
  padding: 5px;
  margin-top: -30px;
}

@media screen and (max-width: 599px) {
  .section7_img img {
    margin-top: -50px;
  }
}

.bg_contact {
  background: url(../img/section8_bg_sp.jpg);
  padding-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .bg_contact {
    padding-top: 50px;
  }
}

.section_8 {
  position: relative;
  z-index: 20;
  margin-top: -10px;
  padding-bottom: 100px;
  background: url(../img/section8_bg_sp.jpg);
}

@media screen and (max-width: 599px) {
  .section_8 {
    padding-bottom: 70px;
  }
}

.section_8_midashi {
  max-width: 500px;
  margin: auto;
}

.section_8_midashi img {
  margin-top: -17px;
}

.contact {
  margin-top: -20px;
  padding-bottom: 50px;
  font-size: 1rem;
}

.contact li {
  line-height: 40px;
}

@media screen and (max-width: 599px) {
  .contact h3 img {
    position: relative;
    top: -90px;
    left: -10px;
  }
}

@media screen and (max-width: 599px) {
  .contact form label {
    font-size: 0.8rem;
  }
}

#form_submit_button {
  background-color: orange !important;
  border: solid 3px orange !important;
  padding: 15px 20px !important;
}

p.privacyarea {
  height: 130px;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  padding: 10px !important;
  margin: 20px !important;
  font-size: 0.7rem;
  letter-spacing: 0px;
}

@media screen and (max-width: 599px) {
  .privacycheck li {
    line-height: 20px;
    font-size: 0.8rem;
  }
}

#form_submit {
  margin: auto;
}

@media screen and (max-width: 599px) {
  #form_submit {
    text-align: center;
  }
}

@media screen and (max-width: 959px) {
  #form_submit {
    text-align: center;
  }
}

form dt span {
  color: red !important;
}

.footer {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  margin-top: -80px;
  padding: 10px;
  position: relative;
  z-index: 20;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.thanks {
  max-width: 800px;
}

.thanks p {
  font-size: 1rem;
  margin: auto;
}

.thanksimg {
  max-width: 400px;
  margin: auto;
  margin-top: 20px;
}
/*# sourceMappingURL=style.css.map */