@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "ヒラギノ角ゴシック", sans-serif;
  background-color: #fdfdfd;
}

a, p, h1 h2, h3 {
  color: #333;
  line-height: 1.7;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  padding: 0 25px;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  height: 80px;
}
header .logo {
  font-size: 2.4rem;
  font-weight: 700;
}
header .header_nav_pc ul {
  display: flex;
}
header .header_nav_pc ul li {
  margin-left: 30px;
}
header .header_nav_pc ul li a {
  font-size: 2rem;
  padding-bottom: 10px;
  font-weight: 500;
  background-image: linear-gradient(90deg, #333, #53c3cc);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.6s;
}
header .header_nav_pc ul li a:hover {
  background-size: 100% 1px;
}
header .header_nav_pc ul li a span {
  color: #53C3CC;
}
header .header_nav_tb_sp {
  display: none;
}
header .header_nav_tb_sp .active a {
  color: #53c3cc;
}
header .btnMenu {
  display: none;
}

.show {
  visibility: visible;
  opacity: 1;
}

.topview {
  background-image: url(../img/main_view_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topview .topview_text {
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 5px #484444;
  letter-spacing: 0.1em;
  line-height: 2;
}

main {
  margin: 80px 130px;
}
main .link {
  margin-right: -130px;
}
main .link:nth-child(2) {
  margin: 80px 0 80px -130px;
}
main .link:nth-child(2) .link_bg {
  flex-direction: row-reverse;
}
main .link:nth-child(2) .link_bg .text {
  margin-right: 40px;
  margin-left: 0;
}
main .link:nth-child(2) .link_bg .link_img:nth-child(2) {
  margin: 0 70px 0 130px;
}
main .link .link_bg {
  background-color: #F2F4F9;
  display: flex;
  padding: 40px 0;
}
main .link .link_bg .link_img {
  max-width: 440px;
  max-height: 320px;
  margin: 0 130px 0 70px;
}
main .link .link_bg .link_img img {
  width: 100%;
  max-height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .link .link_bg .text {
  margin-left: 40px;
  display: flex;
  flex-flow: column;
}
main .link .link_bg .text h2 {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
main .link .link_bg .text a {
  font-size: 2rem;
  color: #333;
  border-bottom: solid 3px #53C3CC;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  background: linear-gradient(to right, #ACB6E5, #53c3cc);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  /*.fas {
    background:linear-gradient(to right, #ACB6E5, #86FDE8);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }*/
}

.underview {
  width: 100%;
  height: 400px;
}
.underview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  width: 100%;
  background-color: #53C3CC;
  padding: 30px 130px 10px 130px;
  height: auto;
  display: flex;
  flex-flow: column;
}
footer .footer_company_info {
  display: flex;
  flex-wrap: wrap;
}
footer .footer_company_info h4 {
  font-weight: 500;
}
footer .footer_company_info .footer_company_info_list {
  font-size: 1.6rem;
  margin-left: 50px;
  width: 50%;
}
footer .footer_company_info .footer_company_info_list .com_info_list_data {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
footer p {
  font-size: 1.4rem;
  margin-top: 30px;
  text-align: center;
}

.form {
  margin: 0 auto 80px auto;
  text-align: center;
  margin-top: 80px;
}
.form h2 {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.form p {
  margin-bottom: 20px;
}
.form form {
  max-width: 600px;
  margin: 0 auto;
}
.form form p {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 10px;
}
.form form p span {
  color: #ff0000;
  font-size: 2.4rem;
}
.form form input, .form form textarea {
  width: 600px;
  height: 50px;
  border: solid 1px #eee;
  padding: 15px;
}
.form form .submit {
  all: unset;
  padding: 15px 30px;
  color: #fff;
  background-color: #53C3CC;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
}
.form form textarea {
  height: 160px;
  margin-bottom: 50px;
}

.page_back {
  font-size: 2.4rem;
  font-weight: 500;
  border-radius: 5px;
  margin-bottom: 20px;
  border: none;
}

.confir_preview {
  padding-top: 80px;
  margin: 0 130px;
}
.confir_preview .confir_preview_inner {
  max-width: 600px;
  width: 100%;
  margin: 80px auto;
}
.confir_preview .confir_preview_inner h2 {
  text-align: center;
  margin-bottom: 50px;
}
.confir_preview .confir_preview_inner p {
  margin: 50px 0;
  text-align: center;
}
.confir_preview .confir_preview_inner .confir_preview_table {
  margin: 0 auto;
}
.confir_preview .confir_preview_inner .confir_preview_table dl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.confir_preview .confir_preview_inner .confir_preview_table dl dt {
  text-align: left;
  margin-bottom: 10px;
}
.confir_preview .confir_preview_inner .confir_preview_table dl dd {
  border: solid 2px #707070;
  padding: 10px;
  word-break: break-all;
}
.confir_preview .confir_preview_inner input {
  width: 100%;
}

.complete_view {
  padding-top: 80px;
  margin: 0 130px;
}
.complete_view .complete_view_inner {
  background-color: #f2f4f9;
  padding: 80px;
  margin: 80px auto;
  text-align: center;
}
.complete_view .complete_view_inner p {
  margin: 50px 0;
}
.complete_view .complete_view_inner a {
  font-size: 2rem;
  background-color: #53c3cc;
  border-radius: 5px;
  padding: 10px 20px;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */