@charset "utf-8";
/* CSS Document */
/* ----------共通事項---------- */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(to right, #222222, #064521);
  color: white;
  font-family: shippori-mincho-b1, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* safari */
}
a {
  text-decoration: none;
  color: #000000;
}
img {
  max-width: 100%;
}
.sp-block {
  display: none;
}
.tel-number a {
    color:#ffffff;
    text-decoration:none;
    }
/* hamburger-menu */
.menu {
  position: fixed;
  top: 0;
  left: -100%; /* 初期状態では画面の外に隠れている */
  width: 300px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #222222;
  transition: left 0.7s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}
/* メニューが開いているとき */
.menu.open {
  left: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000000;
  margin: 5px 0;
  transition: 0.4s;
}
/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}
.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #222222;
}
.menu li a {
  display: block;
  transition: 0.8s;
}
.menu li a:hover {
  opacity: 0.6;
}
/* mv slider */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.top_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}
.slider div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}
.slider01 {
  background-image: url(../img/top_mv01.jpg);
}
/*.slider02 {
  background-image: url(../img/top_mv02.jpg);
}
.slider03 {
  background-image: url(../img/top_mv03.jpg);
}*/
.slick-active, .slick-slide:has(+ .slick-active), .slick-slide:last-child {
  animation: zoom-in 8s ease-out infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
/*.slick-active + .slick-slide:last-child {
  animation: none;
}*/
@keyframes zoom-in {
  100% {
    transform: scale(1.2);
  }
}
/* heading */
.heading {
  text-align: center;
  line-height: 34px;
}
.heading .ja {
  background: linear-gradient(#d99730, #fffab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}
.heading .en {
  font-size: 2rem;
}
/* btn */
.btn {
  background: linear-gradient(#d99730, #fffab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
  max-width: 300px;
  border: 1px solid #fffab4;
  text-align: center;
  transition: 0.8s;
}
.btn:hover {
  opacity: 0.6;
}
.btn a {
  display: block;
  padding: 8px 0;
  color: #222222;
}
/* lead */
.lead h2 {
  background: linear-gradient(#d99730, #fffab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 150px 0;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
/* top_content */
.top_about, .top_recruit, .top_services, .top_contact {
  margin-bottom: 200px;
}
.row {
  display: flex;
  align-items: center;
}
.top_img, .top_about .content, .top_contact .content, .top_recruit .content, .top_services .content {
  width: 50%;
}
.top_img img {
  height: 100%;
  object-fit: cover;
}
.top_about p, .top_contact p, .top_recruit p, .top_services p {
  padding: 60px 30px;
}
.top_about .row, .top_recruit .row {
  flex-direction: row-reverse;
}
/* footer */
.footer {
  background: #222222;
}
.footer .footer_logo {
  width: 150px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}
.footer .copyright {
  padding-bottom: 60px;
}
.footer .footer_info {
  margin-bottom: 100px;
}
.footer .content {
  display: flex;
  align-items: center;
}
.footer_nav {
  display: flex;
  margin: 40px auto;
  list-style: none;
  font-size: 20px;
}
.footer_nav li {
  padding-right: 30px;
}
.footer_nav li:nth-child(4) {
  padding-right: 0;
}
.footer_nav li:nth-child(2) {
  font-size: 21px;
}
.footer_nav li a {
  color: #ffffff;
  transition: 0.8s;
}
.footer_nav li a:hover {
  opacity: 0.6;
}
.footer_info {
  width: 325px;
  margin: 0 auto 120px;
  text-align: center;
}
.footer_info address {
  padding-bottom: 8px;
  font-style: normal;
}
.footer_info address:nth-child(4) {
  padding-bottom: 0;
}
.copyright {
  text-align: center;
  font-size: 16px;
}
/* ------about------ */
.wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.heading_top {
  text-align: center;
  margin: 120px auto;
  padding-top: 80px;
  line-height: 3.5rem;
}
.heading_top .ja {
  background: linear-gradient(#d99730, #fffab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}
.heading_top .en {
  font-size: 2rem;
}
.page_lead {
  font-size: 24px;
  padding: 0 30px;
  text-align: justify;
}
.text_right {
  margin-top: 20px;
  text-align: end;
}
.content_table {
  max-width: 980px;
  margin: 120px auto;
  padding: 0 30px;
  text-align: left;
}
.content_table table {
  width: 100%;
}
th, td {
  border-bottom: 1px solid #222222;
  padding: 20px;
  font-size: 18px;
}
.content_table th {
  width: 200px;
  font-size: 20px;
  font-weight: bold;
}
.about .content_table{
	margin-bottom: 200px;
}
/*.about .slick-active, .about .slick-slide:has(+.slick-active), .about .slick-slide:last-child {
  animation: none;
}
.about_slider {
  margin: 200px 0;
}
.slick-next {
  right: 0;
}
.slick-next::before {
  display: none;
}*/
/* ------services------ */
.wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.services_item {
  margin: 120px auto 200px;
  padding: 0 30px;
}
.services_name {
  font-size: 22px;
  margin-bottom: 30px;
}
.services_item ul {
  list-style-position: inside;
}
.services_item li {
  margin-bottom: 20px;
}
.landscaping {
  margin-bottom: 80px;
}
/* ------recruit------ */
.sub_title {
  text-align: center;
  margin-bottom: 40px;
}
.recruit .content_table {
  margin-bottom: 120px;
}
.recruit .btn{
	margin-bottom: 200px;
}
/* ------contact------ */
/*form {
  padding: 0 60px;
}
.item {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.label {
  margin-right: 20px;
  width: 145px;
}
.label_privacy {
  width: auto;
}
.inputs {
  width: 560px;
}
.inputs_privacy {
  width: auto;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="kenmei"] {
  border: solid 1px #000000;
  padding: 6px 10px;
}
textarea {
  border: solid 1px #000000;
  border-radius: 0;
  padding: 6px 10px;
  height: 300px;
}
input[type="submit"] {
  padding: 6px 10px;
  color: #000000;
}
form .btn {
  margin-top: 120px;
}*/
.contact_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}
.contact_item a {
  font-size: 24px;
  color: #ffffff;
  text-decoration: underline;
  padding: 10px;
  margin-bottom: 10px;
  transition: 0.8s;
}
.contact_item a:hover {
  opacity: 0.6;
}
.privacy {
  margin: 120px auto 200px;
}
.privacy ul {
  list-style-position: inside;
}
/* -------------------------sp-------------------------- */
@media (max-width:780px) {
  body {
    font-size: 15px;
  }
  .sp-none {
    display: none;
  }
  .sp-block {
    display: block;
  }
  /* heading */
  .heading {
    line-height: 20px;
  }
  .heading .ja {
    font-size: 1.5rem;
  }
  .heading .en {
    font-size: 1rem;
  }
  /* slider */
  .slider01 {
    background-image: url("../img/top_mv01-sp.jpg");
  }
  /*.slider02 {
    background-image: url("../img/top_mv02-sp.jpg");
  }
  .slider03 {
    background-image: url("../img/top_mv03-sp.jpg");
  }*/
  /* btn */
  .btn {
    max-width: 200px;
    border: 1px solid #fffab4;
  }
  .btn a {
    padding: 4px 0;
  }
  /* lead */
  .lead h2 {
    font-size: 2rem;
    margin: 100px 0;
  }
  /* top_content */
  .top_about, .top_contact, .top_recruit, .top_services {
    margin-bottom: 100px;
  }
  .row {
    flex-direction: column-reverse;
    position: static;
    transform: translate(0, 0);
  }
  .top_img, .top_about .content, .top_contact .content, .top_services .content, .top_recruit .content {
    width: 100%;
  }
  .top_img img {
    margin-top: 30px;
    height: auto;
  }
  .top_about p, .top_services p, .top_recruit p, .top_contact p {
    padding: 30px 15px;
    text-align: justify;
  }
  .top_about .row, .top_recruit .row {
    flex-direction: column-reverse;
  }
  /* footer */
  .top_footer {
    margin-top: 150px;
  }
  .top_footer .content {
    position: static;
    transform: translate(0, 0);
  }
  .footer_logo {
    width: 160px;
    padding-top: 60px;
    margin: 0 auto 40px;
  }
  .footer_nav {
    flex-direction: column;
    margin: 40px auto 60px;
  }
  .footer_nav li {
    padding: 0;
    text-align: center;
  }
  .footer_info {
    width: 271px;
    margin: 0 auto 60px;
  }
  .footer_info address {
    padding-bottom: 6px;
    font-style: normal;
  }
  .footer_info address:nth-child(4) {
    padding-bottom: 0;
  }
  .copyright {
    text-align: center;
    padding-bottom: 50px;
    font-size: 14px;
  }
  /* ------about------ */
  .wrapper {
    padding: 0 15px;
  }
  .heading_top {
    margin: 80px auto;
    line-height: 2rem;
  }
  .heading_top .ja {
    font-size: 2.5rem;
  }
  .heading_top .en {
    font-size: 1.5rem;
  }
  .page_lead {
    font-size: 16px;
    padding: 0 15px;
    text-align: justify;
  }
  .text_right {
    margin-top: 15px;
  }
  .content_table {
    margin: 80px auto;
	  padding: 0 15px;
  }
  th, td {
    border-bottom: 1px solid #222222;
    padding: 20px 0;
    font-size: 16px;
  }
  td {
    padding-left: 10px;
  }
  .content_table th {
    width: 140px;
    font-size: 16px;
  }
	.about .content_table{
	margin-bottom: 120px;
}
  /*.about_slider {
    margin: 120px 0;
  }*/
  /* ------services------ */
  .services_item {
    margin: 80px auto 120px;
    padding: 0 15px;
  }
  .services_name {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .services_item li {
    margin-bottom: 18px;
  }
  .landscaping {
    margin-bottom: 60px;
  }
  /* ------recruit------ */
  .recruit .content_table {
    margin-bottom: 80px;
  }
.recruit .btn{
	margin-bottom: 120px;
}
  /* ------contact------ */
  /*form {
    padding: 0;
  }
  .item {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }
  .label {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .inputs {
    width: 400px
  }
  form .btn {
    margin-top: 90px;
  }*/
  .contact_item {
    margin-top: 80px;
  }
  .contact_item a {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .privacy {
    margin: 80px auto 120px;
  }
}
   /*@media (max-width:500px) {
    .sp2-none {
      display: none;
    }
    .inputs {
      width: 100%;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="text"] {
      padding: 4px 10px;
    }
    textarea {
      padding: 4px 10px;
      height: 200px;
    }
  } */