@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap);
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Noto Sans */
/* Noto Serif */
/* Jost */
/*
all ==========================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.3s ease;
}
.header.active {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}
.header.active .header__nav {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1240px) {
  .header {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
}
@media screen and (max-width: 550px) {
  .header {
    height: 50px;
  }
}
.header h1,
.header p {
  display: block;
}
.header h1 a,
.header p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header h1 a img,
.header p a img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .header h1 a img,
  .header p a img {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .header h1 a img,
  .header p a img {
    width: 27.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header h1 a img,
  .header p a img {
    width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .header h1 a img,
  .header p a img {
    width: 170px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    position: fixed;
    top: -2000px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    padding-top: 13%;
    padding-inline: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header__nav.active {
    top: 0;
  }
}
@media screen and (max-width: 550px) {
  .header__nav {
    padding-top: 18%;
  }
}
.header__nav ul {
  display: flex;
  margin-right: 2rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul {
    margin-right: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul {
    width: 100%;
    margin-right: 0;
    flex-direction: column;
    margin-bottom: 6%;
  }
}
.header__nav ul li a {
  position: relative;
  padding-inline: 1rem;
  display: block;
  border-right: solid 1px #075607;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul li a {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding-inline: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
    padding-inline: 1rem;
    padding-block: 4%;
    width: 100%;
    border-right: none;
    border-bottom: solid 1.5px #075607;
  }
}
@media screen and (max-width: 550px) {
  .header__nav ul li a {
    padding-inline: 5%;
  }
}
.header__nav ul li a::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #075607;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::after {
    display: none;
  }
}
.header__nav ul li a::before {
  position: absolute;
  display: none;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 23px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::before {
    display: block;
  }
}
.header__nav ul li a:hover {
  opacity: 1;
}
.header__nav ul li a:hover::after {
  opacity: 1;
}
.header__nav ul li:first-of-type a {
  border-left: 1px solid #075607;
}
@media screen and (max-width: 768px) {
  .header__nav ul li:first-of-type a {
    border-left: none;
  }
}
.header__nav--contact {
  padding: 1% 5%;
  border-radius: 1px;
  background-color: #075607;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  padding: 0.45rem 1.5rem;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav--contact {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding: 0.35rem 2.25vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--contact {
    padding: 0.35rem 10vw;
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
  }
}
.header__nav--contact:active, .header__nav--contact:visited {
  color: #fff;
}
.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggleBtn {
    display: block;
    cursor: pointer;
  }
  .header__toggleBtn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #075607;
    margin-bottom: 7px;
    transition: all 0.3s ease;
  }
  .header__toggleBtn span:last-of-type {
    margin-bottom: 0;
  }
}
.header__toggleBtn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(7px, 8px);
}
.header__toggleBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__toggleBtn.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -7.5px);
}

.footer {
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding-block: 8% 1%;
}
@media screen and (max-width: 550px) {
  .footer {
    padding-block: 15% 5%;
  }
}
.footer__upper {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer__upper--logo {
  max-width: 500px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--logo {
    max-width: 52vw;
    margin-bottom: 8%;
  }
}
.footer__upper--add {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer__upper--add img {
  width: 40px;
}
@media screen and (max-width: 550px) {
  .footer__upper--add img {
    width: 30px;
  }
}
.footer__upper--add p {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1.25;
}
@media screen and (max-width: 550px) {
  .footer__upper--add p {
    font-size: 0.5rem;
  }
}
.footer__upper--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn {
    flex-direction: column;
    gap: 0.5rem 0;
  }
}
.footer__upper--btn a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #075607;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem 0.75rem 3.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--btn a {
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  }
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a {
    width: 80%;
  }
}
.footer__upper--btn a::before {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  left: 2rem;
  margin: auto;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a::before {
    left: 0;
    right: 4rem;
  }
}
.footer__upper--btn a.mail::before {
  width: 27.3px;
  height: 20px;
  background-image: url(../img/mail_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.mail::before {
    width: 22px;
    height: 17px;
  }
}
.footer__upper--btn a.tel::before {
  width: 25px;
  height: 32px;
  background-image: url(../img/phone_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.tel::before {
    width: 19px;
    height: 28px;
  }
}
.footer__nav {
  margin-bottom: 2.5rem;
}
.footer__nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    gap: 0.5rem 0;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.footer__nav ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: 0.125rem;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-inline: 5%;
  }
}
.footer__nav ul li a {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 1.75vw, 0.75rem);
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 2.25vw, 0.75rem);
  }
}
.footer__copy {
  text-align: center;
  font-size: 0.65rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 550px) {
  .footer__copy {
    font-size: 0.5rem;
  }
}

.top__mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/mv_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.top__mv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  content: "";
  display: block;
  z-index: -1;
}
.top__mv p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  font-size: clamp(1.25rem, 6.5vw, 2.95rem);
  color: #fff;
  text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
  .top__mv p {
    bottom: 9%;
    font-size: clamp(1.25rem, 10vw, 2.95rem);
  }
}
.top__mv p .sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .top__mv p .sp-br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top__mv p span {
    font-size: clamp(2rem, 13vw, 4rem);
  }
}
@media screen and (max-width: 550px) {
  .top__mv p span {
    font-size: clamp(2rem, 14vw, 3rem);
  }
}
.top__mv--scroll {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 15%;
  margin: auto;
  writing-mode: vertical-rl;
  color: #fff;
  text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.9);
  /* 線のアニメーション */
}
@media screen and (max-width: 1024px) {
  .top__mv--scroll {
    font-size: 0.875rem;
    bottom: 17%;
  }
}
.top__mv--scroll::before {
  animation: scroll 2s infinite;
  background-color: #075607;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  z-index: 2;
}
.top__mv--scroll::after {
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.top__service {
  position: relative;
  margin-top: 100vh;
  background-color: #f7f7f7;
  z-index: 1;
  padding-block: 7% 0;
}
.top__service .section__ttl {
  text-align: center;
}
.top__service--lead {
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}
@media screen and (max-width: 550px) {
  .top__service--lead {
    font-size: 0.6rem;
  }
}
.top__service--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.125rem;
}
.top__service--flex a {
  position: relative;
  display: block;
  width: calc((100% - 0.125rem) / 2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 0;
}
.top__service--flex a:nth-child(1) {
  background-image: url(../img/service_flex01.jpg);
}
.top__service--flex a:nth-child(2) {
  background-image: url(../img/service_flex02.jpg);
}
.top__service--flex a:nth-child(3) {
  background-image: url(../img/service_flex03.jpg);
}
.top__service--flex a:nth-child(4) {
  background-image: url(../img/service_flex04.jpg);
}
.top__service--flex a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .top__service--flex a {
    width: 100%;
  }
}
.top__service--flex a .content {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  color: #fff;
  padding: 3% 3% 1.5% 2%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top__service--flex a .content {
    padding: 3% 6%;
  }
}
.top__service--flex a .content small {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
}
.top__service--flex a .content h3 {
  font-size: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: 1rem;
}
.top__service--flex a .content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  margin-bottom: 0.75rem;
}
.top__service--flex a .content img {
  display: block;
  margin-left: auto;
  width: clamp(40px, 6vw, 70px);
}
.top__strength {
  position: relative;
  background-color: #f7f7f7;
  z-index: 1;
  padding-block: 14% 5%;
}
.top__strength::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 33vw;
  height: 14vw;
  background-color: #075607;
}
.top__strength .section__ttl {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 550px) {
  .top__strength .section__ttl {
    margin-bottom: 1rem;
  }
}
.top__strength--upper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 7%;
}
@media screen and (max-width: 768px) {
  .top__strength--upper {
    flex-direction: column;
  }
}
.top__strength--upper .images {
  display: flex;
  gap: 0.5rem;
}
.top__strength--upper .images img {
  display: block;
  max-width: 200px;
  width: clamp(100px, 14vw, 200px);
}
@media screen and (max-width: 768px) {
  .top__strength--upper .images img {
    width: clamp(80px, 27vw, 200px);
  }
}
.top__strength--upper .content {
  padding-top: 3%;
  padding-left: 2%;
}
@media screen and (max-width: 768px) {
  .top__strength--upper .content {
    max-width: 600px;
    display: block;
    margin: 0 auto;
  }
}
.top__strength--upper .content h3 {
  font-size: clamp(0.75rem, 2.2vw, 1.35rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 7%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top__strength--upper .content h3 {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
  }
}
.top__strength--upper .content p {
  font-size: clamp(0.5rem, 1.5vw, 0.7rem);
  line-height: 1.65;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .top__strength--upper .content p {
    font-size: clamp(0.5rem, 2.1vw, 0.65rem);
  }
}
.top__strength--bottom {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top__strength--bottom {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 550px) {
  .top__strength--bottom {
    gap: 0.25rem;
  }
}
.top__strength--bottom .item {
  position: relative;
  width: calc((100% - 1.5rem) / 4);
  color: #fff;
  padding: 5% 1% 3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top__strength--bottom .item {
    width: calc((100% - 0.75rem) / 2);
  }
}
@media screen and (max-width: 550px) {
  .top__strength--bottom .item {
    width: calc((100% - 0.25rem) / 2);
  }
}
.top__strength--bottom .item:nth-child(2n+1) {
  background-color: #2d6631;
}
.top__strength--bottom .item:nth-child(2n) {
  background-color: #338935;
}
.top__strength--bottom .item::before {
  position: absolute;
  top: 6%;
  right: 9%;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.top__strength--bottom .item:nth-child(1)::before {
  width: 89px;
  height: 64px;
  background-image: url("../img/strength_icon01.png");
}
.top__strength--bottom .item:nth-child(2)::before {
  width: 70px;
  height: 74px;
  background-image: url("../img/strength_icon02.png");
}
.top__strength--bottom .item:nth-child(3)::before {
  width: 72px;
  height: 106px;
  background-image: url("../img/strength_icon03.png");
}
.top__strength--bottom .item:nth-child(4)::before {
  width: 84px;
  height: 76px;
  background-image: url("../img/strength_icon04.png");
}
.top__strength--bottom .item h4 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(0.65rem, 2vw, 1rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.top__strength--bottom .item p {
  font-size: clamp(0.5rem, 2vw, 0.65rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-inline: 8%;
  letter-spacing: 0.075em;
  line-height: 1.65;
}
.top__works {
  position: relative;
  background-color: #f7f7f7;
  z-index: 1;
  padding-block: 5%;
}
@media screen and (max-width: 550px) {
  .top__works {
    padding-block: 10% 15%;
  }
}
.top__works .section__ttl {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 550px) {
  .top__works .section__ttl {
    margin-bottom: 1rem;
  }
}
.top__works--slider .slick-slide {
  width: 400px;
  margin-right: 1rem;
}
@media screen and (max-width: 1500px) {
  .top__works--slider .slick-slide {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .top__works--slider .slick-slide {
    width: 250px;
  }
}
@media screen and (max-width: 550px) {
  .top__works--slider .slick-slide {
    width: 200px;
  }
}
.top__works--slider .slick-slide .thumb img {
  margin-bottom: 0.5rem;
}
.top__works--slider .slick-slide .works-cate {
  display: flex;
  margin-bottom: 0.25rem;
}
.top__works--slider .slick-slide .works-cate a {
  display: block;
  margin-right: 0.125rem;
  padding: 3px 8px;
  font-size: 0.65rem;
  color: #fff;
  background-color: #075607;
  border-radius: 1px;
}
@media screen and (max-width: 550px) {
  .top__works--slider .slick-slide .works-cate a {
    font-size: 0.5rem;
  }
}
.top__works--slider .slick-slide .date {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 550px) {
  .top__works--slider .slick-slide .date {
    font-size: 0.65rem;
  }
}
.top__works--slider .slick-slide .ttl {
  font-size: 0.875rem;
}
@media screen and (max-width: 550px) {
  .top__works--slider .slick-slide .ttl {
    font-size: 0.75rem;
  }
}
.top__works .arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 1.5rem auto;
  position: relative;
}
.top__works .arrow_box .prev-arrow,
.top__works .arrow_box .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #075607;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 550px) {
  .top__works .arrow_box .prev-arrow,
  .top__works .arrow_box .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.top__works .arrow_box .prev-arrow::before,
.top__works .arrow_box .next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.top__works .arrow_box .prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}
.top__news {
  position: relative;
  background-image: url(../img/news_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding-block: 5%;
}
@media screen and (max-width: 550px) {
  .top__news {
    padding-block: 10% 15%;
  }
}
.top__news::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.34);
}
.top__news .section__ttl {
  text-align: center;
}
.top__news .section__ttl p {
  color: #fff;
}
.top__news .section__ttl p::before {
  background-color: #fff;
}
.top__news .section__ttl h2 {
  color: #fff;
}
.top__news .wrapper {
  position: relative;
  z-index: 1;
}
.top__news--content {
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  padding: 2rem 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .top__news--content {
    padding: 6% 9%;
    margin-bottom: 8%;
  }
}
.top__news--content .item {
  display: flex;
  align-items: center;
  gap: 0 1.25rem;
  border-bottom: solid 1px #9b9b9b;
  padding-block: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top__news--content .item {
    flex-wrap: wrap;
    padding-block: 5%;
    gap: 3vw;
  }
}
.top__news--content .item .date {
  display: inline-block;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .top__news--content .item .date {
    font-size: clamp(0.5rem, 3vw, 0.875rem);
  }
}
.top__news--content .item .cate {
  display: block;
  background-color: #075607;
  color: #fff;
  padding: 3px 30px;
  border-radius: 1rem;
  font-size: 0.65rem;
}
@media screen and (max-width: 768px) {
  .top__news--content .item .cate {
    font-size: clamp(0.45rem, 2.25vw, 0.65rem);
    padding: 3px 7%;
  }
}
.top__news--content .item .ttl {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .top__news--content .item .ttl {
    width: 100%;
    font-size: clamp(0.5rem, 3vw, 0.875rem);
  }
}
.top__company {
  position: relative;
  background-color: #f7f7f7;
  z-index: 1;
  padding-block: 10% 5%;
}
@media screen and (max-width: 550px) {
  .top__company {
    padding-block: 10% 15%;
  }
}
.top__company::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 33vw;
  height: 21vw;
  background-color: #075607;
}
.top__company--content {
  display: block;
  width: 78%;
  padding: 7% 3% 4% 6%;
  margin-left: auto;
  position: relative;
  background-image: url(../img/company_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top__company--content {
    width: 90%;
    padding: 4% 8% 3% 8%;
  }
}
.top__company--content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}
.top__company--content:hover {
  opacity: 0.9;
}
.top__company--content:hover img {
  transform: translateX(20%);
}
.top__company--content .section__ttl {
  margin-bottom: 2rem;
}
@media screen and (max-width: 550px) {
  .top__company--content .section__ttl {
    margin-bottom: 1rem;
  }
}
.top__company--content .section__ttl p {
  color: #fff;
}
.top__company--content .section__ttl p::before {
  background-color: #fff;
}
.top__company--content .section__ttl h2 {
  color: #fff;
}
.top__company--content .text {
  color: #fff;
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top__company--content .text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 550px) {
  .top__company--content .text {
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
  }
}
.top__company--content img {
  display: block;
  width: 83px;
  height: 83px;
  margin-left: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top__company--content img {
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 550px) {
  .top__company--content img {
    width: 50px;
    height: 50px;
  }
}/*# sourceMappingURL=top.css.map */