@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);
* {
  margin: 0;
  padding: 0;
}
* a {
  transition: 0.5s;
}

html {
  height: 100%;
}

body #top {
  position: absolute;
  font-size: 14px;
  color: #fff;
  width: 100%;
  height: 100%;
}

img {
  border: none;
}

.container {
  margin: 0 auto;
  max-width: 1220px;
  font: 400 16px/1.65 "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 1220px) {
  .container {
    width: 96%;
    margin-left: 2%;
  }
}

#wrapper { /*top用*/
  overflow: hidden;
}
#wrapper h1 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 30px;
}
#wrapper h1 span {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}

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

#nav {
  max-width: 970px;
  margin: 0 auto;
}
#nav ul {
  text-align: center;
}
#nav ul li {
  padding: 10px 20px;
}
#nav ul li a {
  color: #000;
}

#nav_top {
  position: fixed;
  bottom: 20px;
  left: 20px;
}
#nav_top li {
  float: left;
  padding-right: 30px;
  padding-left: 5px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  border-left: 5px solid #fff;
}

#nav2, .t_line {
  display: none;
}

@media only screen and (max-width: 649px) {
  #nav {
    display: none;
  }
  #nav_top {
    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=/////////////////////*/
/*//////////////////////////共通/////////////////////*/
#top_right { /*トップのお問い合わせボタン*/
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 70px;
  height: 140px;
  width: 140px;
  line-height: 1.8;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
}
#top_right a {
  display: block;
  font-size: 18px;
}
#top_right a:hover img {
  opacity: 1;
  background: none;
}
#top_right a img {
  width: 30px;
  height: auto;
  margin: 10px 0 5px 0px;
}

.contact-bnr-blue { /*ページのお問い合わせボタン*/
  position: fixed;
  top: 20px;
  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;
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 667px) {
  .contact-bnr-blue p {
    display: none;
  }
}
.contact-bnr-blue a {
  font-size: 18px;
}
.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;
  }
}

/*////////////////NEW////////////?*/
.top-img {
  width: 100%;
  height: auto;
  position: relative;
}
.top-img img {
  width: 100%;
}
.top-img h1 {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 35px;
  margin-right: 10%;
}
@media screen and (max-width: 667px) {
  .top-img h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 414px) {
  .top-img h1 {
    font-size: 26px;
    line-height: normal;
  }
}

/*///////////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 */
