@charset "UTF-8";
@import "reset.css";
@import 'base.css';
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap);
* {
  margin: 0;
  padding: 0;
}
* a {
  transition: 0.5s;
}

html {
  height: 100%;
}

body {
  font: 400 16px/1.65 "Noto Sans JP", "sans-serif" !important;
}

.all {
  overflow: hidden;
}

img {
  border: none;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1220px) {
  .container {
    width: 96%;
    margin-left: 2%;
  }
}

.contact-bnr-blue a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
}
.contact-bnr-blue a:link {
  color: #ffffff;
  text-decoration: none;
}
.contact-bnr-blue a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.contact-bnr-blue a:hover img {
  opacity: 0.6;
  background: #fff;
}

nav ul {
  text-align: center;
}
nav ul li {
  padding: 10px 20px;
}
nav ul li a {
  color: #000;
}

.top-nav li {
  margin-top: 3.2vw;
  font-weight: bold;
  height: 20px;
  border-left: 5px solid #fff;
  padding: 0 30px 0 5px;
  line-height: 1.2;
  font-size: min(1.9vw, 18px);
  word-wrap: none;
}
.top-nav li a {
  color: #fff;
}

.humberger, .t_line {
  display: none;
}

@media only screen and (max-width: 667px) {
  nav {
    display: none;
  }
  .top-nav {
    display: none;
  }
}
nav.humberger {
  display: none;
}
@media screen and (max-width: 667px) {
  nav.humberger {
    display: block;
  }
}

nav.humberger {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 22;
}

.top-nav2 > ul li {
  padding-bottom: 10px;
}
.top-nav2 .act {
  cursor: pointer;
}
.top-nav2 ul {
  background: rgba(255, 255, 255, 0.9);
  margin-top: 0px;
  padding: 30px;
  list-style: none;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  width: 90%;
  z-index: 100;
  top: 0px;
  height: 100%;
  left: -100%;
}
.top-nav2 ul li {
  padding: 10px 0 10px 10%;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px dotted #cdcdcd;
}
.top-nav2 ul li a {
  color: #000;
}
.top-nav2 ul.active {
  left: 0px;
}

.move-2.on.btn {
  z-index: 101;
}

.btn {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: fixed;
  right: 10px;
  top: 5px;
  color: #000;
  background: rgba(255, 255, 255, 0.9);
}
.btn:before, .btn:after {
  display: block;
  width: 35px;
  position: absolute;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.btn span {
  display: block;
  width: 35px;
  position: absolute;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  height: 2px;
  background-color: #000;
  top: 48%;
  right: 15%;
}
.btn:before {
  content: "";
  top: 28%;
  right: 15%;
  border-top: 2px solid #000;
}
.btn:after {
  content: "";
  top: 68%;
  right: 15%;
  border-bottom: 2px solid #000;
}
.btn.on span {
  display: none;
  width: 50px;
  height: 50px;
}
.btn.on:before {
  top: 51%;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.btn.on:after {
  top: 51%;
  right: 7px;
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.btnlink {
  width: 90%;
  display: block;
  margin: auto;
  border: 1px solid #0060ff;
  border-radius: 5px;
  background: #4285F4;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 35px;
  color: #fff;
}

/*///////////////////nav=END=/////////////////////*/
.contact-bnr-blue { /*ページのお問い合わせボタン*/
  position: fixed;
  top: 120px;
  right: 20px;
  z-index: 100;
  border-radius: 70px;
  height: 140px;
  width: 140px;
  line-height: 1.8;
  background: rgb(38, 52, 252);
  box-shadow: inset 0px 2px 2px 0px rgba(252, 249, 249, 0.4), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 667px) {
  .contact-bnr-blue {
    border-radius: 30px;
    height: 60px;
    width: 60px;
    top: 65px;
    right: 5px;
  }
}
.contact-bnr-blue p {
  margin-top: 5px;
  line-height: 1.3;
}
@media screen and (max-width: 667px) {
  .contact-bnr-blue p {
    display: none;
  }
}
.contact-bnr-blue a:hover img {
  opacity: 1;
  background: none;
}
.contact-bnr-blue a img {
  width: 40px;
  height: auto;
  margin: 18px 0 5px 0px;
}
@media screen and (max-width: 667px) {
  .contact-bnr-blue a img {
    width: 35px;
    margin: 14px 0 5px 0px;
  }
}

/*///////////////TOP///////////*/
.top-img {
  background: url(../images/s1.webp) 0 0 no-repeat;
  background-size: 100%;
  width: 100%;
  aspect-ratio: 1.92/0.87;
}

.toph1 {
  padding: 2vw 5% 0 30px;
  font-size: clamp(14px, 3vw, 34px);
}

.wave_title {
  background: url(../images/title_bg.png);
  background-repeat: no-repeat;
  background-position: 0px 25px;
  background-size: 152px 27px;
  height: 60px;
  float: left;
  width: 160px;
  font-size: 16px;
  padding-left: 10px;
  color: #0097ff;
}

.greeting_bg {
  background-image: url(../images/s2.webp);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 100% auto;
  background-size: cover;
  padding: 20px;
}
.greeting_bg h1 {
  width: 150px;
}
@media screen and (max-width: 667px) {
  .greeting_bg h1 {
    width: 130px;
    margin: 20px auto 0 auto;
  }
}
.greeting_bg .greeting {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
  width: calc(100% - 170px);
}
@media screen and (max-width: 667px) {
  .greeting_bg .greeting {
    width: 90%;
    margin-left: 5%;
  }
}

/*///////////pages//////////////*/
/*--page-common --*/
/*--page-common --*/
.page-img {
  background: url(../images/page-img.webp) 0 0 no-repeat;
  background-size: 100%;
  width: 100%;
  aspect-ratio: 1.92/0.48;
}

.pageh1 {
  padding: 2vw 0 0 30px;
  font-size: 35px;
  margin-right: 10%;
}
@media screen and (max-width: 667px) {
  .pageh1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 414px) {
  .pageh1 {
    font-size: 26px;
    line-height: normal;
  }
}

main.page h2 {
  padding: 0 0 10px 0;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 667px) {
  main.page h2 {
    padding: 20px 0 10px 0;
  }
}
@media screen and (max-width: 667px) {
  main.page .w80 {
    width: 80%;
  }
  main.page .w20 {
    width: 80%;
  }
  main.page .w30 {
    width: 100%;
  }
}
main.page .company-text {
  padding-left: 15px;
}
@media screen and (max-width: 667px) {
  main.page .company-text {
    padding: 0;
  }
}

/*--company--*/
main::before {
  content: "";
  display: block;
  width: 30%;
  height: 0;
  order: 1; /* 疑似要素beforeの順番を必ず指定する*/
}

main::after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}

/*///////////pages=END=//////////////*/
/*///////////footer//////////////*/
footer {
  margin-top: 50px;
}
footer .sns-box {
  background: #b2c36f;
}
footer .sns-box a {
  width: 50px;
  height: auto;
}
footer .sns-box a img {
  width: 50px;
  height: auto;
  padding: 10px;
}

/*///////////footer=END=//////////////*/

/*# sourceMappingURL=style.css.map */
