@charset "UTF-8";
body {
  color: #707070;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 899px) {
  .sp-only {
    display: block;
  }
}

.header__sp-only {
  display: none;
}
@media screen and (max-width: 995px) {
  .header__sp-only {
    display: block;
  }
}

.red {
  color: #DC000C;
}

.w1200 {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.w950 {
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
}

.w900 {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.w760 {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  background-color: white;
}
header .w1200 {
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
header .w1200 .logo a {
  display: flex;
  align-items: center;
}
header .w1200 .logo a img {
  max-width: 67px;
  width: 100%;
  height: auto;
  margin-right: 20px;
}
header .w1200 .logo a p {
  color: #005DAB;
  font-weight: bold;
  font-size: 2rem;
}
header .w1200 .pc-header-navi {
  display: flex;
}
header .w1200 .pc-header-navi .parent {
  padding: 0 20px;
}
header .w1200 .pc-header-navi .parent a {
  color: #707070;
  position: relative;
  display: inline-block;
}
header .w1200 .pc-header-navi .has-child {
  position: relative;
  padding: 0 20px;
  color: #707070;
  font-size: 1.6rem;
  cursor: pointer;
}
header .w1200 .pc-header-navi .has-child:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: translateX(-50%) rotate(135deg);
}
header .w1200 .pc-header-navi .has-child ul {
  position: absolute;
  left: 0;
  top: 53px;
  z-index: 4;
  width: 165px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
header .w1200 .pc-header-navi .has-child ul li {
  line-height: normal;
  background-color: #005DAB;
  padding: 0;
}
header .w1200 .pc-header-navi .has-child ul li a {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 7px;
  color: white;
  font-size: 1.4rem;
}
header .w1200 .pc-header-navi .has-child ul li:nth-child(2) a {
  border-top: solid 1px white;
}
header .w1200 .pc-header-navi .has-child:hover ul {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1420px) {
  header .w1200 .pc-header-navi {
    margin-right: 120px;
  }
  header .w1200 .pc-header-navi a {
    font-size: 1.4rem;
  }
  header .w1200 .pc-header-navi .parent {
    padding: 0 10px;
  }
  header .w1200 .pc-header-navi .has-child {
    font-size: 1.4rem;
    padding: 0 20px 0 10px;
  }
  header .w1200 .pc-header-navi .has-child ul {
    top: 50px;
  }
}
@media screen and (max-width: 995px) {
  header .w1200 .pc-header-navi {
    display: none;
  }
}
header .contact-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #005DAB;
  width: 120px;
  height: 80px;
}
header .contact-btn a {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
}
@media screen and (max-width: 995px) {
  header .contact-btn {
    display: none;
  }
}
@media screen and (max-width: 1420px) {
  header .w1200 .logo a img {
    max-width: 50px;
    margin-right: 10px;
  }
  header .w1200 .logo a p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 899px) {
  header {
    height: 60px;
  }
  header .w1200 {
    height: 60px;
  }
}

/**ハンバーガーメニュー**/
.button-out {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 999;
}
.button-out .button-box .hamburger-btn {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 999;
}
.button-out .button-box .hamburger-btn .btn-line {
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #005DAB;
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9999;
  border-radius: 10px;
}
.button-out .button-box .hamburger-btn .btn-line:nth-of-type(1) {
  top: 0;
  width: 100%;
}
.button-out .button-box .hamburger-btn .btn-line:nth-of-type(2) {
  top: 14px;
  width: 100%;
}
.button-out .button-box .hamburger-btn .btn-line:nth-of-type(3) {
  bottom: 0;
  width: 100%;
}
.button-out .button-box .hamburger-btn .btn-line.open:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
  background-color: white;
}
.button-out .button-box .hamburger-btn .btn-line.open:nth-of-type(2) {
  opacity: 0;
}
.button-out .button-box .hamburger-btn .btn-line.open:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(45deg);
  transform: translateY(-14px) rotate(45deg);
  background-color: white;
}

.hamburger {
  display: block;
}
.hamburger .hamburger-nav {
  /* メニューの位置マイナス指定で画面外に */
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  top: 0;
  right: -100%;
  background-color: #005DAB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 99;
}
.hamburger .hamburger-nav ul {
  display: block !important;
}
.hamburger .hamburger-nav ul .ham-parent {
  font-size: 1.4rem;
  line-height: 3rem;
  margin: 15px 30px;
  padding: 10px 30px;
  text-align: center;
  background-color: white;
  display: flex;
}
.hamburger .hamburger-nav ul .ham-parent a {
  position: relative;
  width: fit-content;
  color: #707070;
  font-size: 1.4rem;
}
.hamburger .hamburger-nav ul .ham-parent a:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -4px;
  transform: rotate(45deg);
}
.hamburger .hamburger-nav ul .ham-parent__inside {
  text-align: left;
}
.hamburger .hamburger-nav ul .ham-parent__inside li {
  padding: 0 20px 10px 20px;
}
.hamburger .hamburger-nav.open {
  right: 0;
}
.hamburger .hamburger-nav p {
  color: white;
  font-size: 1.6rem;
  margin-left: 30px;
}

.mainvisual_container {
  position: relative;
  height: calc(100vh - 80px);
  margin-top: 80px;
  overflow: hidden;
  background-image: url(../img/top/top_main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mainvisual_container .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  color: white;
  text-align: center;
}
.mainvisual_container .catch p {
  font-size: clamp(2rem, 4vw, 6rem);
  font-weight: bold;
}
.mainvisual_container .catch span {
  font-size: clamp(1.4rem, 4vw, 3rem);
}
.mainvisual_container .mascot-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.mainvisual_container .mascot-wrap .mascot {
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 30%;
  max-width: 450px;
}
@media screen and (max-width: 899px) {
  .mainvisual_container {
    margin-top: 60px;
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    background-image: url("../img/top/top_main_sp.jpg");
    background-position: top center;
  }
  .mainvisual_container .mascot-wrap .mascot {
    width: 25%;
    bottom: 0;
  }
}

.section1 {
  text-align: center;
  padding-top: 70px;
}
.section1 .strong {
  font-size: 2.8rem;
  margin: 0 0 20px 0;
}
.section1 .illust_1 {
  max-width: 840px;
  margin: 50px auto 15px auto;
}
.section1 .marker {
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.section1 .mascot-wrap {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.section1 .mascot-wrap .mascot {
  position: absolute;
  width: 30%;
  max-width: 250px;
}
.section1 .mascot-wrap .mascot--left {
  transform: translate(-30%, -35%);
  right: 100%;
}
.section1 .mascot-wrap .mascot--right {
  transform: translateY(10%);
  left: 100%;
  bottom: 0;
}
.section1 .text-width {
  margin: 0 auto;
}
.section1 .text-width--small {
  width: 80%;
}
@media screen and (max-width: 1420px) {
  .section1 .mascot-wrap .mascot--left {
    right: 90%;
  }
  .section1 .mascot-wrap .mascot--right {
    left: 90%;
  }
}
@media screen and (max-width: 899px) {
  .section1 {
    padding-top: 35px;
  }
  .section1 .strong {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
  }
  .section1 p {
    font-size: 1.4rem;
  }
  .section1 .illust_1 {
    margin: 10px auto;
    max-width: 375px;
  }
  .section1 .mascot-wrap .mascot {
    width: 20%;
    min-width: 75px;
  }
  .section1 .mascot-wrap .mascot--left {
    transform: translate(-30%, -50%);
    right: 85%;
  }
  .section1 .text-width--small {
    width: 70%;
  }
}

.section2 {
  position: relative;
  margin-top: 50px;
}
.section2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(-4deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(105, 222, 235, 0.1490196078);
}
.section2 .w760 {
  padding: 200px 0 60px 0;
}
.section2 .w760 h2 {
  text-align: center;
  font-size: 3.8rem;
}
.section2 .w760 h3 {
  text-align: center;
  font-size: 2.6rem;
  margin: 60px 0 30px 0;
}
.section2 .w760 .illust_2 {
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 899px) {
  .section2 .w760 {
    padding: 100px 0 30px 0;
  }
  .section2 .w760 h2 {
    font-size: 2rem;
  }
  .section2 .w760 h3 {
    font-size: 2rem;
    margin: 25px 0;
  }
  .section2 .w760 .illust_2 {
    max-width: 375px;
    margin: 10px auto 0 auto;
  }
  .section2:after {
    transform: skewY(-8deg);
  }
}

.section3 {
  position: relative;
  padding-top: 100px;
}
.section3 h2 {
  text-align: center;
  font-size: 3.8rem;
}
.section3 .business {
  max-width: 950px;
  width: 90%;
  margin: 0 auto 100px auto;
}
.section3 .business__inside .flex {
  margin-top: 65px;
  gap: 35px;
  align-items: flex-start;
}
.section3 .business__inside .flex img {
  max-width: 320px;
}
.section3 .business__inside .flex h3 {
  font-size: 2.8rem;
  color: #707070;
}
.section3 .business__inside .flex h3 span {
  color: #14D1FB;
  font-style: italic;
  margin-left: 10px;
}
.section3 .business__inside .flex ul li {
  font-size: 1.8rem;
  line-height: 3.3rem;
  padding-left: 1em;
  text-indent: -1em;
  color: #707070;
}
.section3 .business__inside .flex ul p {
  font-size: 1.8rem;
  color: #707070;
}
@media screen and (max-width: 899px) {
  .section3 {
    padding-top: 50px;
    max-width: 325px;
    width: 90%;
    margin: 0 auto;
  }
  .section3 h2 {
    font-size: 2rem;
  }
  .section3 .business {
    width: 100%;
  }
  .section3 .business__inside .flex {
    margin-top: 20px;
    gap: 10px;
    align-items: center;
  }
  .section3 .business__inside .flex img {
    max-width: 145px;
  }
  .section3 .business__inside .flex h3 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .section3 .business__inside .flex h3 span {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .section3 .business__inside ul {
    margin-top: 15px;
  }
  .section3 .business__inside ul li {
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.section4 {
  position: relative;
  padding: 200px 0;
  text-align: center;
}
.section4:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(-4deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(105, 222, 235, 0.1490196078);
}
.section4 h2 {
  text-align: center;
  font-size: 3.8rem;
}
.section4 p {
  font-size: 1.8rem;
}
.section4 .flex {
  justify-content: center;
  gap: 50px;
}
.section4 .flex .company-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100px;
  background: white;
  border: solid 1px #707070;
  color: #707070;
  font-size: 2.4rem;
  font-weight: bold;
}
.section4 .flex .company-btn:after {
  content: "";
  display: inline-block;
  height: 2px;
  background-color: #707070;
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 95px;
  transform: translateX(-50%);
}
.section4 .flex .blue-btn {
  background: #005DAB;
  border: solid 1px #707070;
  color: white;
}
.section4 .flex .blue-btn:after {
  background-color: white;
}
.section4 .flex .contact-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100px;
  background: white;
  border: solid 1px #707070;
  color: #707070;
  gap: 0 10px;
}
.section4 .flex .contact-btn img {
  max-width: 55px;
}
.section4 .flex .contact-btn div {
  text-align: left;
}
.section4 .flex .contact-btn div p {
  font-size: 1.4rem;
}
.section4 .flex .contact-btn div .blue-txt {
  color: #005DAB;
  font-size: 2.4rem;
  font-weight: bold;
}
.section4 .flex .contact-btn div .p20 {
  font-size: 2rem;
}
.section4 .btn_wrap {
  margin: 30px auto 70px auto;
}
.section4 .btn_wrap-2 {
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 899px) {
  .section4 {
    padding: 100px 0;
    gap: 30px;
  }
  .section4:after {
    transform: skewY(-8deg);
  }
  .section4 h2 {
    font-size: 2rem;
    margin-top: 60px;
  }
  .section4 p {
    font-size: 1.4rem;
  }
  .section4 .flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .section4 .btn_wrap {
    margin: 30px auto;
  }
  .section4 .btn_wrap-2 {
    margin: 30px auto 0 auto;
  }
}

.marker {
  font-size: 4rem;
  font-weight: bold;
  color: #005DAB;
  background-image: linear-gradient(#F5F508, #F5F508);
  background-size: 100% 35%;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 899px) {
  .marker {
    font-size: 2.4rem;
  }
}

.footer-fixedBTN {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: flex;
  height: 50px;
}
.footer-fixedBTN a {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 5px;
}
.footer-fixedBTN a img {
  max-width: 30px;
}
.footer-fixedBTN .sp-phone-btn {
  background-color: #005DAB;
  color: white;
}
.footer-fixedBTN .sp-mail-btn {
  color: #005DAB;
  background-color: white;
}

footer {
  height: 200px;
  background-color: #005DAB;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-inside .flex {
  justify-content: space-between;
  gap: 20px;
}
footer .footer-inside .footer-company {
  padding: 0 0 30px 0;
  font-size: 2rem;
}
footer .address {
  font-size: 1.4rem;
}
footer .address a {
  color: white;
}
footer .phone {
  font-size: 1.6rem;
}
footer .phone a {
  color: white;
}
@media screen and (max-width: 899px) {
  footer {
    height: 215px;
    text-align: center;
    padding-bottom: 50px;
  }
  footer .footer-inside .flex {
    flex-direction: column;
    gap: 0;
  }
  footer .footer-inside .footer-company {
    padding: 20px 0;
    font-size: 1.4rem;
  }
  footer .address {
    font-size: 1.2rem;
  }
  footer .phone {
    font-size: 1.2rem;
  }
}

.pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #005DAB;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1.4rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 99;
  opacity: 0.8;
}
.pagetop:hover {
  opacity: 0.6;
}
@media screen and (max-width: 899px) {
  .pagetop {
    bottom: 70px;
  }
}

.Android .section3 .business__inside .flex img {
  margin-right: 10px;
}/*# sourceMappingURL=index.css.map */