@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-margin-top: 120px;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
}

input {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}
input.sub_mit {
  background-color: #2599CC;
  color: #fff;
  margin-left: 20px;
  border: none;
  border-radius: 0;
  padding: 15px 0;
}
@media (max-width: 750px) {
  input.sub_mit {
    margin-left: 0px;
    margin-bottom: 20px;
  }
}
input.riset {
  background-color: #ccc;
  color: #fff;
  margin-left: 20px;
  border: none;
  border-radius: 0;
  padding: 15px 0;
}
@media (max-width: 750px) {
  input.riset {
    margin-left: 0px;
  }
}

@media (max-width: 750px) {
  main {
    position: relative;
    overflow-x: hidden;
  }
}

textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}

.btn {
  font-size: 0.93vw;
}
.btn a {
  border-radius: 30px;
  background-color: #2599CC;
  padding: 5px 20px;
  color: #fff;
}
@media (max-width: 750px) {
  .btn a {
    font-size: 1.6rem;
  }
}
.btn a::after {
  content: "";
  width: 0.885vw;
  height: 0.885vw;
  display: inline-block;
  margin-left: 20px;
  border-radius: 50%;
  background-color: #2599CC;
  border: 3px solid #fff;
}
@media (max-width: 750px) {
  .btn a::after {
    width: 15px;
    height: 15px;
  }
}

.ttl02 h2 {
  border-left: 2px solid #2599CC;
  font-size: 3rem;
  color: #2599CC;
  padding-left: 20px;
}
@media (max-width: 750px) {
  .ttl02 h2 {
    font-size: 2rem;
    padding-left: 10px;
  }
}
.ttl02 h2 .big {
  font-size: 4rem;
  display: block;
}
@media (max-width: 750px) {
  .ttl02 h2 .big {
    font-size: 1.6rem;
  }
}

h2, h3, h4, h5 {
  font-weight: 400;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
}
@media (max-width: 1350px) {
  header {
    z-index: 9999;
  }
}
header.color {
  background-color: #fff;
  z-index: 100;
}
header .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1350px) {
  header .inner {
    align-items: center;
  }
}
header .inner .logo {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 10px;
}
@media (max-width: 1350px) {
  header .inner .logo {
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
  }
}
@media (max-width: 750px) {
  header .inner .logo {
    flex-direction: column;
    width: 60%;
    padding: 45px 0 0 10px;
  }
}
header .inner .logo h1 {
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 1350px) {
  header .inner .logo h1 br {
    display: none;
  }
}
@media (max-width: 750px) {
  header .inner .logo h1 {
    position: absolute;
    width: 100%;
    left: 5px;
    top: 10px;
    text-align: center;
    font-size: 10px;
  }
  header .inner .logo h1 br {
    display: block;
  }
}
@media (max-width: 750px) {
  header .inner .pc_nav {
    display: none;
  }
}
header .inner .pc_nav ul {
  display: flex;
  align-items: flex-end;
  font-family: "Noto Sans JP", sansgb-serif;
  align-items: center;
}
@media (max-width: 1300px) {
  header .inner .pc_nav ul {
    flex-wrap: wrap;
    padding-left: 30px;
  }
}
header .inner .pc_nav ul li {
  margin-right: 1.5vw;
  font-size: 1.4rem;
}
@media (max-width: 1000px) {
  header .inner .pc_nav ul li {
    font-size: 1.4rem;
  }
}
header .inner .pc_nav ul li a {
  color: #2A3233;
  padding-bottom: 10px;
  display: block;
  position: relative;
}
header .inner .pc_nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #2599CC;
  bottom: 0px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .inner .pc_nav ul li a:hover::after {
  visibility: visible;
  bottom: 0px; /*アニメーションが止まる位置*/
  opacity: 1;
}
header .inner .pc_nav ul li:last-child {
  margin-right: 0px;
  background-color: #2599CC;
  padding: 20px 20px;
}
@media (max-width: 1300px) {
  header .inner .pc_nav ul li:last-child {
    padding: 1px 20px;
  }
  header .inner .pc_nav ul li:last-child a {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    padding-top: 8px;
  }
}
header .inner .pc_nav ul li:last-child a {
  color: #fff;
}
header .inner .pc_nav ul li:last-child figure {
  text-align: center;
  width: 2vw;
  margin: 0 auto 5px;
}
@media (max-width: 1300px) {
  header .inner .pc_nav ul li:last-child figure {
    margin-right: 5px;
    margin-bottom: 2px;
  }
}

.top_mv {
  position: relative;
  margin-top: 150px;
  width: 100%;
  background-size: cover;
  background-image: url(../img/top/mv.webp);
  background-position: 150px 0;
  min-height: 37.5vw;
  display: flex;
  align-items: center;
}
.top_mv::before {
  content: "";
  display: block;
  min-height: 97.5vw;
  width: 47.81vw;
  background-color: #EEEEEE;
  position: absolute;
  z-index: -1;
  transform: translateY(-10vw);
}
@media (max-width: 750px) {
  .top_mv::before {
    display: none;
  }
}
.no-webp .top_mv {
  background-image: url(../img/top/mv.png);
}
@media (max-width: 750px) {
  .top_mv {
    background-position: 0;
    margin-top: 85px;
  }
}
.top_mv h2 {
  font-size: 2.6vw;
  line-height: 1.5;
  margin-left: 50px;
}
@media (max-width: 750px) {
  .top_mv h2 {
    font-size: 2rem;
    margin-left: 10px;
  }
}
.top_mv h2 span {
  display: block;
  font-size: 1.77vw;
  color: #989898;
}

.box01 {
  position: relative;
  padding-top: 120px;
  margin-bottom: 100px;
}
@media (max-width: 750px) {
  .box01 {
    padding-top: 0;
  }
}
.box01 figure {
  text-align: center;
  background-color: #eeeeee;
  padding: 30px 0;
}
.box01 figure img {
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .box01 figure img {
    max-width: 100%;
  }
}
.box01::before {
  content: "k-tec-coltd";
  font-size: 5.66vw;
  color: #A3A3A3;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  line-height: 0.8;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0.7;
}
@media (max-width: 750px) {
  .box01::before {
    display: none;
  }
}
.box01 .inner {
  display: flex;
  margin-top: -100px;
}
@media (max-width: 750px) {
  .box01 .inner {
    margin-top: -50px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.box01 .inner .ttl {
  background-color: #2599CC;
  padding: 3.38vw 2.86vw 20.91vw 10.41vw;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .box01 .inner .ttl {
    padding: 3.38vw 2.86vw 5.91vw 5.41vw;
  }
}
.box01 .inner .ttl h2 {
  border-left: 1px solid #fff;
  padding: 10px;
}
@media (max-width: 750px) {
  .box01 .inner .ttl h2 {
    font-size: 2rem;
  }
}
.box01 .inner .ttl .big {
  display: block;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .box01 .inner .ttl .big {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.box01 .inner .txt_box {
  padding-left: 5.72vw;
  margin-top: 150px;
}
@media (max-width: 750px) {
  .box01 .inner .txt_box {
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.box01 .inner .txt_box h3 {
  font-size: 3rem;
  color: #2599CC;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .box01 .inner .txt_box h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.box01 .inner .txt_box .txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .box01 .inner .txt_box .txt {
    font-size: 1.6rem;
  }
}
.box01 .inner .txt_box .btn {
  margin: 30px 0 0;
  text-align: right;
}

.box02 {
  background-image: url(../img/top/box02.webp);
  background-size: cover;
  margin-top: 100px;
  position: relative;
}
.no-webp .box02 {
  background-image: url(../img/top/box02.jpg);
}
@media (max-width: 750px) {
  .box02 {
    margin-top: 50px;
  }
}
.box02 .inner {
  max-width: 730px;
  margin: 0 auto;
  min-height: 40vw;
  background-color: #2599CC;
  padding: 1.32vw 0 0 2.6vw;
}
@media (max-width: 750px) {
  .box02 .inner {
    padding: 30px 10px 30px;
  }
}
.box02 .inner .ttl {
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .box02 .inner .ttl {
    font-size: 1.8rem;
  }
}
.box02 .inner .ttl h2 {
  border-left: 1px solid #fff;
  padding: 10px;
}
.box02 .inner .ttl .big {
  display: block;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .box02 .inner .ttl .big {
    margin-top: 10px;
  }
}
.box02 .inner h3 {
  margin-top: 2.34vw;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .box02 .inner h3 {
    font-size: 2rem;
  }
}
.box02 .inner .txt {
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .box02 .inner .txt {
    font-size: 1.6rem;
  }
}
.box02 ul {
  position: absolute;
  top: 44%;
}
@media (max-width: 750px) {
  .box02 ul {
    position: initial;
    margin-top: 20px;
  }
}
.box02 ul li {
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .box02 ul li {
    font-size: 1.6rem;
    display: flex;
  }
}
@media (max-width: 750px) {
  .box02 ul li span {
    width: 90%;
  }
}
.box02 ul li::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-image: url(../img/top/check.png);
  background-size: cover;
  width: 32px;
  height: 32px;
}
@media (max-width: 750px) {
  .box02 ul li::before {
    width: 22px;
    height: 22px;
  }
}

.box03 {
  margin-top: 50px;
  max-width: 1200px;
  margin: 100px auto 0;
}
.box03 .inner {
  padding: 0 6.25vw;
}
.box03 .inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: -70px;
}
@media (max-width: 750px) {
  .box03 .inner ul {
    flex-direction: column;
  }
}
.box03 .inner ul li {
  width: 27%;
}
@media (max-width: 750px) {
  .box03 .inner ul li {
    width: 100%;
  }
}
.box03 .inner ul li:nth-child(1) {
  margin-top: 150px;
}
@media (max-width: 750px) {
  .box03 .inner ul li:nth-child(1) {
    margin-top: 80px;
  }
}
.box03 .inner ul li:nth-child(2) {
  margin-top: 80px;
}
@media (max-width: 750px) {
  .box03 .inner ul li:nth-child(2) {
    margin-top: 50px;
  }
}
@media (max-width: 750px) {
  .box03 .inner ul li:nth-child(3) {
    margin-top: 50px;
  }
}
.box03 .inner ul li .list_inner {
  display: flex;
}
.box03 .inner ul li h3 {
  line-height: 1.3;
  margin-top: 35px;
  margin-right: -40px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  text-orientation: upright;
  font-size: 1.8rem;
  color: #2599CC;
}
@media (max-width: 750px) {
  .box03 .inner ul li h3 {
    font-size: 2rem;
  }
}
.box03 .inner ul li h3 span {
  text-orientation: initial;
  font-size: 1.4rem;
  color: #A3A3A3;
}
@media (max-width: 750px) {
  .box03 .inner ul li h3 span {
    font-size: 1.6rem;
  }
}
.box03 .inner ul li .txt {
  transform: rotate(-6.5deg);
  margin-top: -10px;
  font-size: 1.6rem;
}
@media (max-width: 750px) {
  .box03 .inner ul li .txt {
    font-size: 1.4rem;
  }
}
.box03 .inner ul li .btn {
  margin-top: 20px;
  text-align: right;
}

.box04 {
  margin-top: 200px;
}
.box04 .inner {
  max-width: 1500px;
  margin: -350px auto 0;
}
.box04 .inner .txt_box {
  background-color: #fff;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box {
    margin-top: 40px;
  }
}
.box04 .inner .txt_box h2 {
  font-size: 2rem;
  border-left: 1px solid #000;
  padding: 10px 0 10px 20px;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box h2 {
    font-size: 3rem;
  }
}
.box04 .inner .txt_box h2 span {
  font-size: 4rem;
  display: block;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box h2 span {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}
.box04 .inner .txt_box h3 {
  font-size: 3rem;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box h3 {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.box04 .inner .txt_box h3 span {
  font-size: 1.04vw;
  color: #FFD24C;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box h3 span {
    font-size: 1.6rem;
  }
}
.box04 .inner .txt_box p {
  width: 100%;
  padding: 20px 10px;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .box04 .inner .txt_box p {
    padding: 20px 0px;
    font-size: 1.6rem;
  }
}
.box04 .inner .box04_list {
  display: flex;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list {
    flex-wrap: wrap;
  }
}
.box04 .inner .box04_list li {
  width: 25%;
  padding: 25px 20px;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list li {
    width: 50%;
    padding: 25px 10px;
  }
}
.box04 .inner .box04_list li .ttl {
  color: #FFD24C;
  text-align: center;
  font-size: 0.93vw;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list li .ttl {
    font-size: 1.8rem;
  }
}
.box04 .inner .box04_list li .ttl.bl {
  color: #0059B2;
}
.box04 .inner .box04_list li .txt {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list li .txt {
    font-size: 1.4rem;
  }
}
.box04 .inner .box04_list li .txt.wh {
  color: #fff;
  padding: 20px 25px;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list li .txt.wh {
    padding: 20px 0px;
  }
}
.box04 .inner .box04_list li .txt.bk {
  color: #000;
  padding: 20px 25px;
}
@media (max-width: 750px) {
  .box04 .inner .box04_list li .txt.bk {
    padding: 20px 0px;
  }
}
.box04 .inner .box04_list li.blu {
  background-color: #0059B2;
}
.box04 .inner .box04_list li.blu02 {
  background-color: #99CCFF;
}

.box05 {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .box05 {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.box05 .inner {
  max-width: 1130px;
  margin: 0 auto;
}
.box05 .inner h2 {
  font-size: 3rem;
  color: #2599CC;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .box05 .inner h2 {
    font-size: 3rem;
  }
}

footer {
  margin-top: 200px;
}
@media (max-width: 750px) {
  footer {
    margin-top: 50px;
  }
}
footer .footer_top {
  background-color: #2599CC;
  padding: 50px 0;
}
@media (max-width: 750px) {
  footer .footer_top {
    padding: 50px 20px;
  }
}
footer .footer_top .inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_top .inner {
    flex-direction: column;
  }
}
footer .footer_top .inner .left_box h2 {
  color: #fff;
  font-size: 1.25vw;
  border-left: 1px solid #fff;
  padding: 10px 0 10px 20px;
}
@media (max-width: 750px) {
  footer .footer_top .inner .left_box h2 {
    font-size: 2rem;
  }
}
footer .footer_top .inner .left_box h2 span {
  font-size: 3.46vw;
  display: block;
}
@media (max-width: 750px) {
  footer .footer_top .inner .left_box h2 span {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}
footer .footer_top .inner .left_box p {
  font-size: 0.83vw;
  color: #fff;
  margin-top: 20px;
  line-height: 1.6;
}
@media (max-width: 750px) {
  footer .footer_top .inner .left_box p {
    font-size: 1.6rem;
  }
}
footer .footer_top .inner .right_box {
  color: #fff;
}
footer .footer_top .inner .right_box p {
  font-size: 1.04vw;
}
@media (max-width: 750px) {
  footer .footer_top .inner .right_box p {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
footer .footer_top .inner .right_box p.tel {
  font-size: 3rem;
  margin: 20px 0;
}
@media (max-width: 750px) {
  footer .footer_top .inner .right_box p.tel {
    font-size: 1.6rem;
  }
}
footer .footer_top .inner .right_box p.tel a {
  color: #fff;
}
footer .footer_top .inner .right_box .mail_txt {
  margin-top: 50px;
}
@media (max-width: 750px) {
  footer .footer_top .inner .right_box .mail_txt {
    text-align: center;
  }
}
footer .footer_top .inner .right_box .mail {
  margin-top: 30px;
}
@media (max-width: 750px) {
  footer .footer_top .inner .right_box .mail {
    text-align: center;
  }
}
footer .footer_top .inner .right_box .mail a {
  border-radius: 30px;
  background-color: #FFD24D;
  padding: 5px 20px;
  color: #000;
}
footer .footer_top .inner .right_box .mail a::after {
  content: "";
  width: 0.885vw;
  height: 0.885vw;
  display: inline-block;
  margin-left: 20px;
  border-radius: 50%;
  background-color: #FFD24D;
  border: 3px solid #000;
}
@media (max-width: 750px) {
  footer .footer_top .inner .right_box .mail a::after {
    width: 15px;
    height: 15px;
  }
}
footer .footer_bottom {
  background-color: #2A3233;
  padding: 50px 0;
}
footer .footer_bottom .inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner {
    flex-direction: column;
  }
}
footer .footer_bottom .inner .left_box h2 {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box h2 {
    font-size: 2rem;
  }
}
footer .footer_bottom .inner .left_box h2 span {
  text-align: center;
  display: block;
  font-size: 1.35vw;
  margin-top: 10px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box h2 span {
    font-size: 1.6rem;
  }
}
footer .footer_bottom .inner .left_box p {
  margin-top: 30px;
  font-size: 0.83vw;
  color: #fff;
  margin-top: 20px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .left_box p {
    font-size: 1.4rem;
  }
}
footer .footer_bottom .inner .right_box {
  color: #fff;
  width: 40%;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box {
    width: 100%;
    margin: 40px auto 0;
  }
}
footer .footer_bottom .inner .right_box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box ul {
    justify-content: center;
    display: none;
  }
}
footer .footer_bottom .inner .right_box ul li {
  width: 50%;
  font-size: 0.93vw;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box ul li {
    font-size: 1.6rem;
  }
}
footer .footer_bottom .inner .right_box ul li:nth-child(1) {
  width: 40%;
}
footer .footer_bottom .inner .right_box ul li:nth-child(2) {
  width: 60%;
}
footer .footer_bottom .inner .right_box ul li:nth-child(3) {
  width: 40%;
}
footer .footer_bottom .inner .right_box ul li:nth-child(4) {
  width: 60%;
}
footer .footer_bottom .inner .right_box ul li:nth-child(5) {
  width: 40%;
}
footer .footer_bottom .inner .right_box ul li:nth-child(6) {
  width: 60%;
}
footer .footer_bottom .inner .right_box ul li a {
  color: #fff;
}
footer .footer_bottom .inner .right_box ul li a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 5px;
}
footer .footer_bottom .inner .right_box .pla {
  text-align: right;
  margin-top: 30px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .pla {
    text-align: center;
  }
}
footer .footer_bottom .inner .right_box .pla a {
  color: #fff;
}
footer .footer_bottom .inner .right_box .copy {
  text-align: right;
  color: #fff;
  margin-top: 30px;
}
@media (max-width: 750px) {
  footer .footer_bottom .inner .right_box .copy {
    font-size: 1.2rem;
    text-align: center;
  }
}

.top_sec {
  padding: 14vw 5vw 6vw 0;
  text-align: right;
  background-image: url(../img/common/sec_img.webp);
  position: relative;
  z-index: -1;
}
.no-webp .top_sec {
  background-image: url(../img/common/sec_img.jpg);
}
.top_sec::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(37, 153, 204, 0.2);
}
@media (max-width: 750px) {
  .top_sec {
    padding: 32vw 0vw 13vw 0;
    text-align: center;
  }
}
.top_sec h2 {
  font-size: 3rem;
  position: relative;
  z-index: 100;
}
@media (max-width: 1000px) {
  .top_sec h2 {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  .top_sec h2 {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  .top_sec.min h2 {
    font-size: 1.8rem;
  }
}

.sec_ttl {
  background-color: #2599CC;
  padding: 4.9vw 2.86vw 4.91vw 10.41vw;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 3rem;
  display: inline-block;
  margin-top: -100px;
}
@media (max-width: 800px) {
  .sec_ttl {
    margin-top: -50px;
  }
}
@media (max-width: 750px) {
  .sec_ttl {
    padding: 3.9vw 2.86vw 3.91vw 6.41vw;
    margin-top: -30px;
  }
}
.sec_ttl h2 {
  border-left: 1px solid #fff;
  padding: 10px;
  font-size: 2rem;
}
@media (max-width: 750px) {
  .sec_ttl h2 {
    font-size: 2rem;
  }
}
.sec_ttl .big {
  display: block;
  font-size: 4rem;
}
@media (max-width: 750px) {
  .sec_ttl .big {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}

.about_box01 {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0px auto 0;
}
@media (max-width: 750px) {
  .about_box01 {
    margin-top: 40px;
    flex-direction: column-reverse;
  }
}
.about_box01.sec {
  margin-top: 200px;
}
@media (max-width: 750px) {
  .about_box01.sec {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.about_box01 .txt_box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-right: -200px;
  position: relative;
  background-color: #fff;
  padding: 30px;
  margin-bottom: -50px;
  z-index: 2;
}
@media (max-width: 750px) {
  .about_box01 .txt_box {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px;
    position: relative;
    z-index: -1;
  }
}
.about_box01 .txt_box h2 {
  font-size: 3rem;
  color: #2599CC;
  margin-bottom: 30px;
  border-left: 1px solid #2599CC;
  padding: 5px 0px 5px 10px;
}
@media (max-width: 750px) {
  .about_box01 .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.about_box01 .txt_box h2 span {
  font-size: 1.25vw;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .about_box01 .txt_box h2 span {
    font-size: 1.6rem;
  }
}
.about_box01 .txt_box p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .about_box01 .txt_box p {
    font-size: 1.4rem;
  }
  .about_box01 .txt_box p br {
    display: none;
  }
}

.about_box02 {
  display: flex;
  align-items: flex-end;
  margin-top: 300px;
  max-width: 1200px;
  margin: 300px auto;
}
@media (max-width: 750px) {
  .about_box02 {
    margin-top: 100px;
    margin-bottom: 100px;
    flex-direction: column;
  }
}
.about_box02 .txt_box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-left: -200px;
  position: relative;
  background-color: #fff;
  padding: 30px;
  margin-bottom: -50px;
}
@media (max-width: 750px) {
  .about_box02 .txt_box {
    margin-left: 0;
    padding: 30px 20px;
  }
}
.about_box02 .txt_box h2 {
  font-size: 3rem;
  color: #2599CC;
  margin-bottom: 30px;
  border-left: 1px solid #2599CC;
  padding: 5px 0px 5px 10px;
}
@media (max-width: 750px) {
  .about_box02 .txt_box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.about_box02 .txt_box h2 span {
  font-size: 1.25vw;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .about_box02 .txt_box h2 span {
    font-size: 1.8rem;
  }
}
.about_box02 .txt_box p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .about_box02 .txt_box p {
    font-size: 1.4rem;
  }
}

.business_box01 {
  position: relative;
  padding-top: 180px;
}
@media (max-width: 750px) {
  .business_box01 {
    padding-top: 0;
    position: relative;
    z-index: -1;
  }
}
.business_box01 figure {
  text-align: center;
  background-color: #eeeeee;
  padding: 30px 0;
}
.business_box01 figure img {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .business_box01 figure img {
    width: 100%;
  }
}
.business_box01 .inner {
  display: flex;
  align-items: flex-end;
  margin-top: -100px;
}
@media (max-width: 750px) {
  .business_box01 .inner {
    margin-top: -50px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.business_box01 .inner .ttl {
  background-color: #2599CC;
  padding: 3.38vw 2.86vw 22.91vw 10.41vw;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 1.8rem;
}
@media (max-width: 750px) {
  .business_box01 .inner .ttl {
    padding: 3.38vw 2.86vw 4vw 5.41vw;
  }
}
.business_box01 .inner .ttl h2 {
  border-left: 1px solid #fff;
  padding: 10px;
}
@media (max-width: 750px) {
  .business_box01 .inner .ttl h2 {
    font-size: 2rem;
  }
}
.business_box01 .inner .ttl .big {
  display: block;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .business_box01 .inner .ttl .big {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.business_box01 .inner .txt_box {
  padding-left: 5.72vw;
}
@media (max-width: 750px) {
  .business_box01 .inner .txt_box {
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.business_box01 .inner .txt_box h3 {
  font-size: 3rem;
  color: #2599CC;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .business_box01 .inner .txt_box h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.business_box01 .inner .txt_box .txt {
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .business_box01 .inner .txt_box .txt {
    font-size: 1.6rem;
  }
}
.business_box01 .inner .txt_box .btn {
  margin: 30px 0 0;
  text-align: right;
}
.business_box01 .inner .txt_box ul li {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .business_box01 .inner .txt_box ul li {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.business_box02 {
  margin: 100px 0 0;
}
@media (max-width: 750px) {
  .business_box02 {
    margin: 50px 0 0;
  }
}
.business_box02 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.business_box02 .inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .business_box02 .inner ul {
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
.business_box02 .inner ul li {
  border: 1px solid #2599CC;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  .business_box02 .inner ul li {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 30px 10px;
  }
  .business_box02 .inner ul li div {
    display: flex;
    width: 100%;
  }
}
.business_box02 .inner ul li p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .business_box02 .inner ul li p {
    font-size: 1.4rem;
  }
}
.business_box02 .inner ul li figure {
  text-align: center;
  margin: 10px;
}
.business_box02 .inner ul li figure img {
  width: 50%;
  height: 50%;
}
@media (max-width: 750px) {
  .business_box02 .inner ul li figure img {
    width: 80%;
  }
}
.business_box02 .inner ul li figure.icon03 img {
  height: 70px;
}
@media (max-width: 750px) {
  .business_box02 .inner ul li figure.icon03 img {
    height: 100px;
  }
}
.business_box02 .inner ul li:nth-child(2) figure {
  text-align: left;
}
.business_box02 .inner ul li:nth-child(2) figure img {
  height: 80%;
}
.business_box02 .inner ul li:nth-child(4) figure {
  text-align: left;
}
.business_box02 .inner ul li:nth-child(4) figure img {
  height: 80%;
}
.business_box02 h2 {
  text-align: center;
  color: #2599CC;
  position: relative;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .business_box02 h2 {
    font-size: 2rem;
  }
}
.business_box02 h2 span {
  background-color: #fff;
  position: relative;
  padding: 0 50px;
}
.business_box02 h2::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2599CC;
}

.business_faq {
  background-color: #2599CC;
  padding: 100px 0;
  margin: 100px 0;
}
@media (max-width: 750px) {
  .business_faq {
    padding: 30px 0;
  }
}
.business_faq .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.business_faq .inner h2 {
  text-align: center;
  color: #fff;
  font-size: 2.5vw;
}
@media (max-width: 750px) {
  .business_faq .inner h2 {
    font-size: 2rem;
  }
}
.business_faq .inner h2 span {
  display: block;
  font-size: 0.83vw;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .business_faq .inner h2 span {
    font-size: 1.8rem;
  }
}

.company_box01 {
  margin: 100px 0 0;
}
@media (max-width: 750px) {
  .company_box01 {
    position: relative;
    z-index: -1;
    margin: 50px 0 0;
  }
}
.company_box01 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.company_box01 h2 {
  text-align: center;
  color: #2599CC;
  position: relative;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .company_box01 h2 {
    font-size: 2rem;
  }
}
.company_box01 h2 span {
  background-color: #fff;
  position: relative;
  padding: 0 50px;
}
.company_box01 h2::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2599CC;
}
.company_box01 dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  border-top: 1px solid #ddd;
}
@media (max-width: 750px) {
  .company_box01 dl {
    padding: 0 20px;
  }
}
.company_box01 dl dt {
  width: 30%;
  font-size: 1.8rem;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
  line-height: 2;
}
@media (max-width: 750px) {
  .company_box01 dl dt {
    padding: 20px 0;
    font-size: 1.4rem;
  }
}
.company_box01 dl dd {
  width: 70%;
  font-size: 1.6rem;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
  line-height: 2;
}
@media (max-width: 750px) {
  .company_box01 dl dd {
    padding: 20px 0;
    font-size: 1.4rem;
  }
}
.company_box01 .map {
  margin-top: 80px;
}
@media (max-width: 750px) {
  .company_box01 .map {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.company_box01 .map iframe {
  width: 100%;
  height: 450px;
}
@media (max-width: 750px) {
  .company_box01 .map iframe {
    height: 300px;
  }
}

.tieup_box {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .tieup_box {
    margin-top: 50px;
  }
}
.tieup_box .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tieup_box .inner .top_txt {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .tieup_box .inner .top_txt {
    padding: 0 20px;
  }
}
.tieup_box .inner h2 {
  text-align: center;
  color: #2599CC;
  position: relative;
  font-size: 3rem;
}
@media (max-width: 750px) {
  .tieup_box .inner h2 {
    font-size: 2rem;
    width: 94%;
    margin: 0 auto;
  }
}
.tieup_box .inner h2 span {
  background-color: #fff;
  position: relative;
  padding: 0 50px;
}
@media (max-width: 750px) {
  .tieup_box .inner h2 span {
    padding: 0 20px;
  }
}
.tieup_box .inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2599CC;
}
.tieup_box .inner .privacy_txt {
  font-size: 1.4vw;
  line-height: 2;
  margin-top: 30px;
}
.tieup_box .inner dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  max-width: 1000px;
  margin: 50px auto 100px;
}
@media (max-width: 750px) {
  .tieup_box .inner dl {
    padding: 0 20px;
  }
}
.tieup_box .inner dl dt {
  width: 30%;
  font-size: 2rem;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}
.tieup_box .inner dl dt span {
  font-size: 1.2rem;
  color: #c80505;
}
@media (max-width: 750px) {
  .tieup_box .inner dl dt {
    font-size: 1.6rem;
    width: 100%;
    padding: 20px 0 0;
    border-bottom: none;
  }
}
.tieup_box .inner dl dd {
  width: 70%;
  font-size: 1.6rem;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .tieup_box .inner dl dd {
    width: 100%;
    padding: 20px 0;
  }
}
.tieup_box .inner dl dd .zip {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .tieup_box .inner dl dd .zip {
    flex-direction: column;
  }
}
.tieup_box .inner dl dd .zip label {
  width: 10%;
  margin-right: 20px;
}
@media (max-width: 750px) {
  .tieup_box .inner dl dd .zip label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.tieup_box .inner dl dd .zip input {
  width: 40%;
}
@media (max-width: 750px) {
  .tieup_box .inner dl dd .zip input {
    width: 100%;
  }
}

.sbmit {
  display: flex;
}
@media (max-width: 750px) {
  .sbmit {
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}

@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
.formTable {
  margin: 50px auto !important;
}

table.formTable th {
  background-color: #2599CC !important;
  color: #fff !important;
}/*# sourceMappingURL=style.css.map */