@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*#################################
	サイト内共通
#################################*/
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.5;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.btn-contact {
  background-color: #f6b132;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: white;
  border-radius: 50px;
  border: 3px solid white;
  padding: 10px;
  display: inline-block;
  -webkit-box-shadow: 5px 5px 10px -5px #777777;
          box-shadow: 5px 5px 10px -5px #777777;
  text-align: center;
}
.btn-contact:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
}

header .pc-nav {
  width: 990px;
  background-color: white;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 5px -2px rgba(34, 24, 21, 0.3);
          box-shadow: 0px 0px 5px -2px rgba(34, 24, 21, 0.3);
  padding: 15px 25px;
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 95%;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  header .pc-nav__item {
    font-size: 14px;
  }
}
header .sp-nav {
  width: 990px;
  background-color: white;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 5px -2px rgba(34, 24, 21, 0.3);
          box-shadow: 0px 0px 5px -2px rgba(34, 24, 21, 0.3);
  padding: 10px 15px;
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 95%;
  z-index: 99;
  height: 53px;
}
@media screen and (max-width: 991px) {
  header .sp-nav__item {
    font-size: 14px;
  }
}
header .sp-nav__item.logo {
  margin-right: auto;
}
header .btn-contact {
  padding: 3px 10px;
}
@media screen and (max-width: 767px) {
  header .btn-contact {
    font-size: 12px;
  }
}

.drawer-nav {
  background-color: white;
  padding-top: 20px;
  text-align: center;
  z-index: 98;
}
.drawer-nav .logo {
  padding-bottom: 10px;
}
.drawer-nav .logo__img {
  max-width: 80%;
}
.drawer-nav .drawer-menu li {
  text-align: left;
  padding-top: 10px;
}
.drawer-nav .drawer-menu li:first-child {
  padding-top: 50px;
}
.drawer-nav .drawer-menu .drawer-menu-item {
  color: black;
  font-weight: 500;
  border-bottom: 1px solid #f6b132;
  max-width: 80%;
  margin: 0 auto;
}
.drawer-nav .drawer-menu .drawer-menu-item:hover {
  text-decoration: none;
}
.drawer-nav .drawer-menu .drawer-menu-item.btn-contact {
  color: white;
  padding: 10px;
  width: 200px;
  margin-top: 30px;
  font-size: 14px;
  border: 3px solid white;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.drawer-nav .drawer-menu .drawer-menu-item.btn-contact:hover {
  opacity: 0.8;
  background-color: #f6b132;
}

.drawer-hamburger {
  position: static;
  padding: 0 0 10px;
  margin-left: 15px;
}
.drawer-hamburger:focus {
  outline: none;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background: rgb(55, 184, 184);
  background: -webkit-gradient(linear, left top, right top, from(rgb(55, 184, 184)), color-stop(45%, rgb(32, 198, 195)), color-stop(77%, rgb(84, 123, 242)));
  background: linear-gradient(90deg, rgb(55, 184, 184) 0%, rgb(32, 198, 195) 45%, rgb(84, 123, 242) 77%);
  height: 3px;
}

.drawer--right.drawer-open .drawer-hamburger {
  position: fixed;
  padding: 18px 0.75rem 30px;
  right: 0;
  z-index: 99;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background: transparent;
}
.drawer--right.drawer-open .sp-nav {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.drawer--right.drawer-open .sp-nav__item.logo, .drawer--right.drawer-open .sp-nav__item.contact {
  display: none;
}

/* ページTOPへもどるボタン */
#page-top {
  display: none;
  z-index: 99;
  background: #fb8c7d;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  position: fixed;
  bottom: 25px;
  right: 25px;
  cursor: pointer;
  border: 1px solid white;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  #page-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
#page-top:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  #page-top:hover {
    opacity: 1;
  }
}
#page-top i {
  line-height: 1em;
}

footer {
  background-color: #f0f0f0;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 15px 0;
  }
}
footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .info span {
  display: inline-block;
  padding: 0 15px;
}
footer .info a {
  display: inline-block;
}
footer .copy__txt {
  font-size: 12px;
  text-align: center;
  padding-top: 5px;
}

main {
  overflow: hidden;
}
@media (min-width: 992px) {
  main .container {
    max-width: 930px;
  }
}
main .sec-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  min-width: 230px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 4px solid #f6b132;
  text-align: center;
  padding-bottom: 8px;
  color: #37b8b5;
}
main .sec-ttl.yell {
  color: #f6b132;
}
@media screen and (max-width: 767px) {
  main .sec-ttl {
    font-size: 26px;
  }
}

.bg {
  position: fixed;
  background-image: url(../img/mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg {
    background-image: url(../img/mv-bg-sp.jpg);
  }
}

main .mv .container {
  max-width: 1030px;
}
main .mv .inner {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 120px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .mv .inner {
    display: block;
    min-height: 500px;
    padding-top: 100px;
  }
}
main .mv .inner .txt-block {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block {
    width: 100%;
  }
}
main .mv .inner .txt-block__txt-1 {
  font-size: 22px;
}
@media screen and (max-width: 991px) {
  main .mv .inner .txt-block__txt-1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block__txt-1 {
    font-size: 16px;
  }
}
main .mv .inner .txt-block__txt-2 {
  font-size: 60px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 30px;
  padding-bottom: 60px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  main .mv .inner .txt-block__txt-2 {
    font-size: 56px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block__txt-2 {
    font-size: 42px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
main .mv .inner .txt-block__txt-3 {
  font-size: 21px;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  main .mv .inner .txt-block__txt-3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block__txt-3 {
    font-size: 16px;
  }
}
main .mv .inner .txt-block__contact {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block__contact {
    padding-top: 10px;
  }
}
main .mv .inner .txt-block__contact .btn-contact {
  width: 370px;
  max-width: 100%;
  font-size: 23px;
}
@media screen and (max-width: 991px) {
  main .mv .inner .txt-block__contact .btn-contact {
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  main .mv .inner .txt-block__contact .btn-contact {
    width: 180px;
    font-size: 16px;
    padding: 5px;
  }
}
main .mv .inner__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main .mv .inner__img {
    width: 57%;
    position: absolute;
    bottom: 20px;
    right: -5px;
  }
}
main .about {
  background-color: white;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  main .about {
    padding: 30px 0;
  }
}
main .about .container {
  position: relative;
}
main .about__chara {
  position: absolute;
  right: -20px;
  bottom: 0;
  -webkit-transform: translateY(60%);
          transform: translateY(60%);
  max-width: 12%;
}
@media screen and (max-width: 767px) {
  main .about__chara {
    max-width: 20%;
    right: 20px;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}
main .about .c01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  main .about .c01 {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  main .about .c01__ico {
    margin-left: -10%;
  }
}
main .about .c01__txt {
  font-size: 24px;
  color: #535353;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .about .c01__txt {
    font-size: 16px;
    text-align: center;
    padding-left: 10px;
  }
}
main .about .box {
  background-color: #f0f0f0;
  width: 900px;
  max-width: 100%;
  border-radius: 20px;
  padding: 30px 10%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main .about .box {
    padding: 20px 15px;
  }
}
main .about .box__txt-1 {
  color: #051e46;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .about .box__txt-1 {
    font-size: 16px;
  }
}
main .about .box__txt-2 {
  color: #f6b132;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .about .box__txt-2 {
    padding-top: 20px;
    font-size: 18px;
  }
}
main .about .box__txt-3 {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  main .about .box__txt-3 {
    padding-top: 20px;
    max-width: 78%;
  }
}
main .about .box__graph-1, main .about .box__graph-2 {
  width: 100%;
}
main .service {
  background-color: #e1f4f4;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  main .service {
    padding: 40px 0;
  }
}
main .service .feature {
  padding-top: 60px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main .service .feature {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 {
    padding-bottom: 40px;
  }
}
main .service .feature .col-md-4 .box {
  background-color: white;
  border-radius: 15px;
  padding: 0 20px 20px;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box {
    width: 95%;
    margin: 0 auto;
  }
}
main .service .feature .col-md-4 .box__label {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  width: 120px;
  padding: 5px 5px 7px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f6b132;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box__label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
main .service .feature .col-md-4 .box__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #37b8b5;
  padding: 20px 0;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box__ttl {
    width: 60%;
    text-align: left;
    line-height: 1.5;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box__img {
    width: 40%;
  }
}
main .service .feature .col-md-4 .box__txt-1 {
  font-size: 15px;
  text-align: left;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  main .service .feature .col-md-4 .box__txt-1 {
    padding-top: 15px;
  }
}
main .movie {
  padding-top: 50px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  main .movie {
    padding-top: 40px;
  }
}
main .movie .movie-wrap {
  margin-top: 35px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
}
main .movie .movie-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
main .movie .movie-wrap video:focus {
  outline: none;
}
main .movie .cta {
  background-color: #fdefd6;
  padding: 20px 0;
}
main .movie .cta .container {
  position: relative;
}
main .movie .cta__chara {
  position: absolute;
  max-width: 12%;
  top: 0;
  left: 10px;
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
}
@media screen and (max-width: 767px) {
  main .movie .cta__chara {
    max-width: 20%;
    -webkit-transform: translateY(-35%);
            transform: translateY(-35%);
  }
}
main .movie .cta .c01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  main .movie .cta .c01 {
    display: block;
    text-align: center;
  }
}
main .movie .cta .c01__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .movie .cta .c01__txt {
    font-size: 16px;
  }
}
main .movie .cta .c01__contact {
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  main .movie .cta .c01__contact {
    padding-left: 0;
    padding-top: 10px;
  }
}
main .movie .cta .c01__contact .btn-contact {
  width: 243px;
  font-size: 27px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  main .movie .cta .c01__contact .btn-contact {
    font-size: 18px;
    padding: 5px;
  }
}
main .flow {
  background-color: #e1f4f4;
  padding: 50px 0 80px;
}
@media screen and (max-width: 767px) {
  main .flow {
    padding: 30px 0 10px;
  }
}
main .flow .c01 {
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .flow .c01 {
    padding: 20px 0;
  }
}
main .flow .c01__txt-1 {
  color: #535353;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .flow .c01__txt-1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main .flow .step .col-md-3 {
    padding-bottom: 25px;
  }
}
main .flow .step .box {
  text-align: center;
  background-color: white;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .flow .step .box {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  main .flow .step .box:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: white transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateY(100%) translateX(-50%);
            transform: translateY(100%) translateX(-50%);
  }
}
main .flow .step .box .label {
  background-color: #535353;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .flow .step .box .label {
    padding: 5px;
    margin-bottom: 0;
  }
}
main .flow .step .box .label:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #535353;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
@media screen and (max-width: 767px) {
  main .flow .step .box .label:after {
    content: none;
  }
}
main .flow .step .box .label__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: white;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  main .flow .step .box .label__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main .flow .step .box__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
main .flow .step .box__img {
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  main .flow .step .box__img {
    max-width: 30%;
    width: 30%;
    margin-left: 5%;
  }
}
main .flow .step .box__txt-1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #535353;
  padding: 10px 10px 30px;
}
@media screen and (max-width: 767px) {
  main .flow .step .box__txt-1 {
    width: 65%;
    padding: 0;
    line-height: 1.5;
  }
}
main .flow .step .box.step4:after {
  content: none;
}
main .flow .step .box.step4 .label {
  background-color: #f6b132;
}
main .flow .step .box.step4 .label:after {
  content: none;
}
main .case {
  background-color: white;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  main .case {
    padding: 40px 0 30px;
  }
}
main .case .sec-ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main .case .sec-ttl {
    margin-bottom: 45px;
  }
}
main .case .box {
  margin-bottom: 150px;
  border: 1px solid #37b8b5;
  border-radius: 15px;
  padding: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .case .box {
    text-align: center;
    padding: 15px 20px;
    width: 95%;
    margin: 0 auto 30px;
  }
}
main .case .box__case {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #37b8b5;
  font-size: 17px;
  padding-bottom: 10px;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .case .box__case {
    text-align: left;
  }
}
main .case .box__case:after {
  position: absolute;
  content: "";
  width: 95px;
  height: 1px;
  background-color: #37b8b5;
  bottom: 0;
  left: -25px;
}
@media screen and (max-width: 767px) {
  main .case .box__case:after {
    left: -20px;
    width: 74px;
  }
}
@media screen and (max-width: 767px) {
  main .case .box__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main .case .box .txt-block {
  width: 48%;
}
@media screen and (max-width: 767px) {
  main .case .box .txt-block {
    width: 100%;
  }
}
main .case .box .txt-block__txt-1 {
  padding: 20px 0 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .case .box .txt-block__txt-1 {
    padding: 15px 0;
    font-size: 24px;
  }
}
main .case .box .txt-block__txt-2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #535353;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .case .box .txt-block__txt-2 {
    font-size: 16px;
  }
}
main .case .box .txt-block__txt-3 {
  font-size: 15px;
  padding-top: 35px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  main .case .box .txt-block__txt-3 {
    padding-top: 20px;
    text-align: left;
    font-size: 14px;
  }
}
main .case .box__img {
  position: absolute;
  width: 45%;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main .case .box__img {
    position: static;
    right: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: 70%;
    margin-top: -10%;
  }
}
main .case .box.box-1 .box__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main .case .box.box-1 .box__img {
    width: 80%;
    margin-top: 0;
  }
}
main .contact {
  background-color: #fdefd6;
  padding: 35px 0;
}
@media (min-width: 992px) {
  main .contact .container {
    max-width: 1030px;
  }
}
main .contact .err {
  font-size: 12px;
  color: red;
}
main .contact .form-wrap {
  background-color: white;
  padding: 35px;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  main .contact .form-wrap {
    padding: 20px 15px;
    max-width: 95%;
    margin: 30px auto;
  }
}
main .contact .form-wrap__txt-1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #535353;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .contact .form-wrap__txt-1 {
    font-size: 14px;
  }
}
main .contact .form-wrap__txt-2 {
  font-size: 15px;
  text-align: center;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  main .contact .form-wrap__txt-2 {
    font-size: 12px;
    padding: 10px 0;
  }
}
main .contact .form-wrap .form-row {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
main .contact .form-wrap .form-row__block {
  padding: 10px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  main .contact .form-wrap .form-row__block {
    width: 100%;
    padding: 5px 0;
  }
}
main .contact .form-wrap .form-row__block.--2c {
  width: 100%;
}
main .contact .form-wrap .form-row__block input,
main .contact .form-wrap .form-row__block textarea,
main .contact .form-wrap .form-row__block select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  height: calc(1.5em + 22px);
  border: 1px solid #c8c8c8;
  outline: none;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  main .contact .form-wrap .form-row__block input,
  main .contact .form-wrap .form-row__block textarea,
  main .contact .form-wrap .form-row__block select {
    font-size: 14px;
  }
}
main .contact .form-wrap .form-row__block input::-webkit-input-placeholder, main .contact .form-wrap .form-row__block textarea::-webkit-input-placeholder, main .contact .form-wrap .form-row__block select::-webkit-input-placeholder {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block input::-moz-placeholder, main .contact .form-wrap .form-row__block textarea::-moz-placeholder, main .contact .form-wrap .form-row__block select::-moz-placeholder {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block input:-ms-input-placeholder, main .contact .form-wrap .form-row__block textarea:-ms-input-placeholder, main .contact .form-wrap .form-row__block select:-ms-input-placeholder {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block input::-ms-input-placeholder, main .contact .form-wrap .form-row__block textarea::-ms-input-placeholder, main .contact .form-wrap .form-row__block select::-ms-input-placeholder {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block input::placeholder,
main .contact .form-wrap .form-row__block textarea::placeholder,
main .contact .form-wrap .form-row__block select::placeholder {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block input:focus,
main .contact .form-wrap .form-row__block textarea:focus,
main .contact .form-wrap .form-row__block select:focus {
  border-color: #37b8b5;
  outline: 1px solid #37b8b5;
}
main .contact .form-wrap .form-row__block select:invalid {
  color: #c8c8c8;
}
main .contact .form-wrap .form-row__block select option {
  color: black;
}
main .contact .form-wrap .form-row__block select option:first-child {
  color: #c8c8c8;
}
main .contact .privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .contact .privacy__link {
  text-decoration: underline;
  display: inline-block;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  main .contact .privacy__link {
    margin-right: 20px;
  }
}
main .contact .privacy__check input,
main .contact .privacy__check label {
  margin-bottom: 0;
}
main .contact .privacy__check input:hover,
main .contact .privacy__check label:hover {
  cursor: pointer;
}
main .contact .submit {
  padding-top: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .contact .submit {
    display: block;
  }
}
main .contact .submit .btn-next {
  background-color: #37b8b5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: white;
  border-radius: 50px;
  border: 3px solid white;
  padding: 10px;
  display: inline-block;
  -webkit-box-shadow: 5px 5px 10px -5px #777777;
          box-shadow: 5px 5px 10px -5px #777777;
  text-align: center;
  width: 370px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  main .contact .submit .btn-next {
    width: 250px;
    font-size: 16px;
    padding: 5px;
  }
}
main .contact .submit .btn-next:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
main .contact .submit .btn-return {
  background-color: #535353;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: white;
  border-radius: 50px;
  border: 3px solid #535353;
  padding: 10px;
  display: inline-block;
  text-align: center;
  width: 370px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  main .contact .submit .btn-return {
    width: 250px;
    font-size: 16px;
    padding: 5px;
  }
}
main .contact .submit .btn-return:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
main .contact.confirm {
  padding-top: 120px;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  main .contact.confirm {
    padding-top: 80px;
  }
}
main .contact.confirm .sec-ttl {
  color: #535353;
  border-color: #37b8b5;
  margin-bottom: 50px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  main .contact.confirm .sec-ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
main .contact.confirm .submit .btn-next {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  main .contact.confirm .submit .btn-next {
    margin-left: 0;
  }
}
main .contact.confirm .submit .btn-return {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  main .contact.confirm .submit .btn-return {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
main .contact.confirm .form-wrap .form-row__block {
  width: 60%;
  padding-left: 5%;
}
main .contact.confirm .form-wrap .form-row__block.--ttl {
  width: 40%;
  padding-left: 0;
}
main .contact.confirm .form-wrap .form-row__block.--ttl p {
  font-size: 18px;
  color: #535353;
}
@media screen and (max-width: 767px) {
  main .contact.confirm .form-wrap .form-row__block.--ttl p {
    font-size: 12px;
  }
}
main .contact.thanks {
  padding-top: 120px;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  main .contact.thanks {
    padding-top: 80px;
  }
}
main .contact.thanks .sec-ttl {
  color: #535353;
  border: none;
  margin-bottom: 50px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  main .contact.thanks .sec-ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
main .contact.thanks .thanks-txt {
  text-align: center;
}
main .contact.thanks .thanks-txt__1 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  main .contact.thanks .thanks-txt__1 {
    font-size: 13px;
  }
}
main .contact.thanks .thanks-txt__2 {
  font-size: 15px;
  padding: 30px 0 10px;
}
@media screen and (max-width: 767px) {
  main .contact.thanks .thanks-txt__2 {
    font-size: 12px;
  }
}
main .contact.thanks .submit {
  display: block;
}
main .contact.thanks .submit .btn-next {
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
main .contact.thanks .submit .btn-return {
  display: block;
  margin-left: auto;
  margin-right: auto;
}