@charset "UTF-8";
/*リセット*/
html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 10px;
  vertical-align: baseline;
  box-sizing: border-box;
  color: #121212;
}

article, header, aside, figure, figcaption, nav, section {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", YakuHanJP, sans-serif, "游ゴシック体", YuGothic;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  display: block;
}

p {
  line-height: 1.5em;
}

table {
  border-collapse: collapse;
}
@media (max-width: 599px) {
  table table {
    width: 100%;
  }
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.mainwapper {
  position: relative;
}
.mainwapper .mainvis {
  display: flex;
  justify-content: space-between;
}
.mainwapper .mainvis h1 {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  line-height: 1.3em;
  letter-spacing: 0.2em;
  margin-left: 6%;
  margin-top: 100px;
  color: #3f3f3f;
}
@media (max-width: 1024px) {
  .mainwapper .mainvis h1 {
    font-size: 3.6vw;
    line-height: 1.5em;
    margin-top: 60px;
  }
}
@media (max-width: 599px) {
  .mainwapper .mainvis h1 {
    margin-top: 20px;
  }
}
.mainwapper .mainvis img {
  width: 60%;
}
.mainwapper .slidewapper {
  position: absolute;
  bottom: -40px;
}
.mainwapper .slidewapper .loopslide {
  position: relative;
  display: flex;
  width: 100vw;
  overflow: hidden;
}
.mainwapper .slidewapper .loopslide ul {
  padding: 0;
  width: 100vw;
  display: flex;
  flex-shrink: 0;
}
.mainwapper .slidewapper .loopslide ul:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.mainwapper .slidewapper .loopslide ul:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}
.mainwapper .slidewapper .loopslide ul li {
  width: 25%;
  margin-left: 20px;
}
.mainwapper .slidewapper .loopslide ul li img {
  width: 100%;
  filter: drop-shadow(4px 4px 6px #C9C9C9);
}

.about {
  margin: 180px 6% 0;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .about {
    margin: 120px 40px 0;
    display: block;
  }
}
.about img {
  width: 28.12%;
}
@media (max-width: 1024px) {
  .about img {
    width: 60%;
  }
}
@media (max-width: 599px) {
  .about img {
    width: 80%;
  }
}
.about .aboutcontent {
  margin-left: 6%;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .about .aboutcontent {
    margin-left: 0;
  }
}
@media (max-width: 599px) {
  .about .aboutcontent {
    margin-top: 20px;
  }
}
.about .aboutcontent h2 {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media (max-width: 599px) {
  .about .aboutcontent h2 {
    font-size: 4.4vw;
  }
}
.about .aboutcontent p {
  margin-top: 30px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media (max-width: 1024px) {
  .about .aboutcontent p {
    margin-top: 10px;
  }
}
@media (max-width: 599px) {
  .about .aboutcontent p {
    font-size: 1.2rem;
  }
  .about .aboutcontent p br {
    display: none;
  }
}
.about .aboutcontent a {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  margin-top: 60px;
  border-bottom: 1px solid #121212;
  font-size: 1.4rem;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.about .aboutcontent a:hover {
  color: #6eb92c;
  border-bottom: 1px solid #6eb92c;
}
@media (max-width: 1024px) {
  .about .aboutcontent a {
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .about .aboutcontent a {
    font-size: 1.2rem;
  }
}

.blog {
  margin-top: 180px;
}
@media (max-width: 1024px) {
  .blog {
    margin-top: 120px;
  }
}
.blog h2 {
  margin-left: 18.75%;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .blog h2 {
    margin-left: 40px;
  }
}
@media (max-width: 599px) {
  .blog h2 {
    font-size: 4.4vw;
  }
}
.blog ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .blog ul {
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .blog ul {
    margin-top: 20px;
  }
}
.blog ul li {
  width: calc((100% - 120px) / 4);
  margin-right: 40px;
  margin-bottom: 40px;
}
.blog ul li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 1024px) {
  .blog ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .blog ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.blog ul li a {
  transition: all 0.3s ease;
}
.blog ul li a:hover {
  opacity: 0.8;
}
.blog ul li img {
  width: 100%;
  height: auto;
}
.blog ul li time {
  font-size: 1.2rem;
  margin-left: 8px;
  margin-top: 4px;
  display: block;
  color: #3f3f3f;
}
.blog ul li h3 {
  font-size: 1.2rem;
  margin-left: 8px;
  margin-top: 4px;
  line-height: 1.3em;
}
.blog .link {
  text-align: center;
}
.blog .link a {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  border-bottom: 1px solid #121212;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.blog .link a:hover {
  color: #6eb92c;
  border-bottom: 1px solid #6eb92c;
}
@media (max-width: 599px) {
  .blog .link a {
    font-size: 1.6rem;
  }
}

.business {
  margin-top: 180px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #F5F5F5 50%, #F5F5F5 100%);
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .business {
    margin-top: 120px;
  }
}
@media (max-width: 599px) {
  .business {
    padding-bottom: 60px;
  }
}
.business h2 {
  margin-left: 18.75%;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .business h2 {
    margin-left: 40px;
  }
}
@media (max-width: 599px) {
  .business h2 {
    font-size: 4.4vw;
  }
}
.business ul {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .business ul {
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .business ul {
    margin-top: 20px;
  }
}
.business ul .slick-track {
  width: 28.12%;
}
.business ul button {
  display: none !important;
}
.business ul li {
  position: relative;
  margin-left: 40px;
  width: 360px;
}
@media (max-width: 599px) {
  .business ul li {
    margin-left: 0;
    width: 320px;
  }
}
.business ul li img {
  width: 100%;
}
@media (max-width: 599px) {
  .business ul li img {
    width: 90%;
  }
}
.business ul li h3 {
  position: absolute;
  bottom: 0;
  font-size: 1.6rem;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  background-color: #ffffff;
  padding: 4px 6px;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .business ul li h3 {
    font-size: 1.4rem;
  }
}
.business .link {
  text-align: center;
  margin-top: 60px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.business .link a {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  border-bottom: 1px solid #121212;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.business .link a:hover {
  color: #6eb92c;
  border-bottom: 1px solid #6eb92c;
}
@media (max-width: 599px) {
  .business .link a {
    font-size: 1.6rem;
  }
}

.twocontents {
  margin: 180px 12.5% 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .twocontents {
    margin: 120px 40px 0;
    display: block;
  }
}
.twocontents .content {
  width: 37.5%;
}
@media (max-width: 1024px) {
  .twocontents .content {
    width: auto;
  }
  .twocontents .content:last-of-type {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) and (max-width: 599px) {
  .twocontents .content:last-of-type {
    margin-top: 30px;
  }
}
.twocontents .content h2 {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .twocontents .content h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .twocontents .content h2 {
    font-size: 4.4vw;
  }
}
.twocontents .content a {
  display: block;
  position: relative;
}
.twocontents .content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.5s;
}
.twocontents .content a:hover::before {
  background-color: rgba(110, 185, 44, 0.3);
}
.twocontents .content a img {
  width: 100%;
}

.sns {
  margin-top: 180px;
}
@media (max-width: 1024px) {
  .sns {
    margin: 120px 40px 0;
  }
}
.sns ul {
  display: flex;
}
@media (max-width: 1024px) {
  .sns ul {
    display: block;
  }
}
.sns ul li {
  width: 50%;
  position: relative;
}
@media (max-width: 1024px) {
  .sns ul li {
    width: auto;
    margin-bottom: 20px;
  }
}
.sns ul li h3 {
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .sns ul li h3 {
    font-size: 4.4vw;
  }
}
.sns ul li a {
  position: relative;
}
.sns ul li a::before {
  content: "";
  background-color: rgba(54, 54, 54, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.sns ul li a img {
  width: 100%;
}/*# sourceMappingURL=style_top.css.map */