@charset "UTF-8";

html {
  font-size: 62.5%;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  color: #333333;
}

.wrapper {
  position: relative;
}

section {
  padding-top: 5rem;
}

@media screen and (min-width: 1025px) {
  section {
    padding-top: 8rem;
  }
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .content {
    padding: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .spnone {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .tlnone {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .pcnone {
    display: none;
  }
}

h1 {
  font-size: 2.3rem;
}

h2 {
  font-size: calc(4rem + (1vw - 0.60rem) * 2.3529);
  color: #333333;
  text-align: center;
  position: relative;
  margin-bottom: 5rem;
}

@media screen and (min-width: 1025px) {
  h2 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 4rem;
  }
}

h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 30px;
  height: 5px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #333333;
}

h3 {
  font-size: calc(2.6rem + (1vw - 0.60rem) * 2.3529);
  color: #333333;
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1025px) {
  h3 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 600px) {
  h3 {
    font-size: 2.5rem;
  }
}

p {
  font-size: calc(1.5rem + (1vw - 0.60rem) * 0.7059);
  text-align: justify;
}

@media screen and (min-width: 1025px) {
  p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  p {
    font-size: 1.5rem;
  }
}

.line {
  border: 1px dashed #333333;
  margin: 7rem 0;
}


.obs {
  opacity: 0;
}

.obs_in {
  -webkit-animation: fadein 1s ease forwards;
  animation: fadein 1s ease forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.allwrap {
  background-color: #fff;
}

.mainv {
  height: 100vh;
}

.mainv::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(https://i-tntk.find-park-ishikawa.com/wp-content/uploads/2021/04/mainv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.mainv .title {
  margin: 50vh auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mainv .title span {
  display: inline-block;
  font-size: 6rem;
  font-weight: 900;
  -webkit-animation: slide 1.5s 0s 1;
          animation: slide 1.5s 0s 1;
}

@media screen and (max-width: 600px) {
  .mainv .title span {
    font-size: 3.5rem;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    -webkit-transform: translate(-600px, 0);
            transform: translate(-600px, 0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2, 0.8);
            transform: scale(1.2, 0.8);
  }
  60% {
    -webkit-transform: scale(0.8, 2);
            transform: scale(0.8, 2);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.2, 0.8);
            transform: scale(1.2, 0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    -webkit-transform: translate(-600px, 0);
            transform: translate(-600px, 0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2, 0.8);
            transform: scale(1.2, 0.8);
  }
  60% {
    -webkit-transform: scale(0.8, 2);
            transform: scale(0.8, 2);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1.2, 0.8);
            transform: scale(1.2, 0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.site_header {
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 0 0 2rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (min-width: 1025px) {
  .site_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 5rem;
  }
}

.site_header .logo {
  height: 100%;
}

.site_header .logo h1 {
  line-height: 8rem;
}

.site_header .nav {
  height: 100%;
}

@media screen and (max-width: 600px) {
  .site_header .nav {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    position: absolute;
    top: 0;
    right: -100%;
  }
}

@media screen and (max-width: 1024px) {
  .site_header .nav {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    position: absolute;
    top: 0;
    right: -100%;
  }
}

.site_header .nav ul {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 1025px) {
  .site_header .nav ul {
    height: 100%;
    width: 40vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.site_header .nav ul li {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 1025px) {
  .site_header .nav ul li {
    height: 100%;
    padding: 0 2rem;
  }
}

.site_header .nav ul li a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 8rem;
  color: #333333;
  position: relative;
  display: block;
  height: 100%;
  text-align: center;
}

.site_header .nav ul li a:before {
  display: none;
  content: "";
  width: 60%;
  height: 50%;
  z-index: 1;
  background-image: url(img/curent.png);
  position: absolute;
  right: -55%;
  top: 10%;
}

.site_header .nav ul li a:hover:before {
  display: block;
}

.site_header .in {
  right: 0;
}

.site_header #hamb {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
  width: 50px;
  height: 44px;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

.site_header #hamb .hamb_line {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #333333;
  -webkit-transition: 1s;
  transition: 1s;
  border-radius: 4px;
}

.site_header #hamb #line1 {
  top: 0;
}

.site_header #hamb #line2 {
  top: 20px;
}

.site_header #hamb #line3 {
  bottom: 0;
}

.site_header #hamb .line1,
.site_header #hamb .line2,
.site_header #hamb .line3 {
  background-color: #333333;
}

.site_header #hamb .line1 {
  -webkit-transform: translateY(20px) rotate(-45deg);
          transform: translateY(20px) rotate(-45deg);
}

.site_header #hamb .line2 {
  opacity: 0;
}

.site_header #hamb .line3 {
  -webkit-transform: translateY(-20px) rotate(45deg);
          transform: translateY(-20px) rotate(45deg);
}

.trans {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.6);
}

.about .content p {
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .about .content p {
    width: 60%;
    margin: 0 auto;
  }
}

.products .content .product_inner {
  border-bottom: 2px dashed #333333;
  margin-bottom: 7rem;
  padding-bottom: 7rem;
}

@media screen and (max-width: 600px) {
  .products .content .product_inner {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
}

.products .content .product_inner:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.products .content .product_inner .product_img {
  max-width: 100%;
  margin-bottom: 3rem;
}

.products .content .product_inner .product_img img {
  max-width: 100%;
}

.products .content .product_inner p {
  margin-bottom: 3rem;
}

@media screen and (min-width: 1025px) {
  .products .content .product_inner p {
    width: 60%;
    margin: 0 auto 3rem;
  }
}

.products .content .product_inner .points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 600px) {
  .products .content .product_inner .points {
    display: block;
  }
}

.products .content .product_inner .points .point {
  width: 48%;
  padding: 4rem;
  border: 2px dashed #333333;
}

@media screen and (max-width: 600px) {
  .products .content .product_inner .points .point {
    width: 100%;
    margin-bottom: 3rem;
  }
  .products .content .product_inner .points .point:last-child {
    margin-bottom: 0;
  }
}

.products .content .product_inner .points .point .point_name {
  height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}

.products .content .product_inner .points .point .point_name .point_img {
  width: 8rem;
  height: 8rem;
  border-radius: 100vh;
  background-color: #c4c4c4;
  overflow: hidden;
  position: relative;
  margin-right: 1rem;
}

.products .content .product_inner .points .point .point_name .point_img img {
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.products .content .product_inner .points .point .point_name p {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  width: 65%;
}

@media screen and (min-width: 1025px) {
  .products .content .product_inner .points .point .point_name p {
    width: 70%;
  }
}

.products .content .product_inner .points .point p {
  width: 100%;
}

.products .content .product_inner .arrow {
  position: relative;
  display: block;
  padding: 0 3rem;
  color: #fff;
  line-height: 6rem;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  width: 35%;
  background-color: #333333;
  margin: 3rem auto 0;
  border: 1px solid #333333;
}

@media screen and (max-width: 600px) {
  .products .content .product_inner .arrow {
    width: 80%;
  }
}

.products .content .product_inner .arrow::before, .products .content .product_inner .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.products .content .product_inner .arrow:hover {
	background: #ffffff;
	color: #333333;
}

.products .content .product_inner .arrow1::before {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100vh;
  background: #fff;
}

.products .content .product_inner .arrow1::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 8px solid #333333;
}

.member .content .member_info {
  width: 100%;
  padding: 5rem;
  border: 2px dashed #333333;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.member .content .member_info:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .member .content .member_info {
    display: block;
    padding: 3rem;
  }
}

.member .content .member_info .icon_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.member .content .member_info .icon_wrap .member_icon {
  width: 18rem;
  height: 18rem;
  border-radius: 100vh;
  background-color: #c4c4c4;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.member .content .member_info .icon_wrap .member_icon img {
  width: 18rem;
  height: 18rem;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.member .content .member_info .member_prof {
  width: 70%;
}

@media screen and (max-width: 600px) {
  .member .content .member_info .member_prof {
    width: 100%;
  }
}

.member .content .member_info .member_prof .member_name {
  font-weight: 700;
  margin-bottom: 2rem;
}

@media screen and (max-width: 600px) {
  .member .content .member_info .member_prof .member_name {
    margin-top: 2rem;
    font-size: 1.8rem;
    text-align: center;
  }
}

.contact {
  padding-bottom: 5rem;
}

.contact .content dt {
  font-size: 1.8rem;
}

.contact .content input[type="text"] {
  border: 1px solid #333333;
  width: 50%;
  height: 4rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 600px) {
  .contact .content input[type="text"] {
    width: 100%;
  }
}

.contact .content textarea {
  border: 1px solid #333333;
  width: 100%;
  height: 10rem;
}

.contact .content .arrow {
  position: relative;
  display: block;
  padding: 0 3rem;
  color: #fff;
  line-height: 6rem;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  width: 35%;
  background-color: #333333;
  margin: 3rem auto 0;
  border: 1px solid #333333;
}

@media screen and (max-width: 600px) {
  .contact .content .arrow {
    width: 80%;
  }
}

.contact .content .arrow::before, .contact .content .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.contact .content .arrow:hover {
	background: #ffffff;
	color: #333333;
}

.contact .content .arrow1::before {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100vh;
  background: #fff;
}

.contact .content .arrow1::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 8px solid #333333;
}

footer {
  height: 8rem;
  background-color: #c4c4c4;
}

footer p {
  text-align: center;
  line-height: 8rem;
  font-weight: 500;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */