/* ==================================
Sub MV
================================== */
.sub-mv {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.sub-mv img {
  width: 100%;
  height: 100%;
}
.sub-mv-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.sub-mv-content h2 {
  font-family: "Noto Serif", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 120%;
}
.sub-mv-content p {
  font-size: 32px;
  margin-top: 5px;
  line-height: 120%;
}
/* =================================
SERVICE PAGE
================================= */
.service-intro {
  padding: 60px 0 40px;
}
.service-intro .container {
  width: min(92%, 1040px);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .text-t {
  margin-bottom: 20px;
}
.intro-text span {
  color: #E0F060;
  font-size: 32px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 20%;
  margin-bottom: 20px;
}
.intro-text p {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 10%;
}
.intro-image {
  width: 480px;
  margin: 0 auto;
}
/* ================================ */
.service-detail {
  padding-bottom: 150px;
}
.service-box h2 {
  font-family:
    "Noto Serif JP", serif;
  position: relative;
  padding-left: 28px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 5%;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.service-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 48px;
  background: linear-gradient(184.78deg, #8FA103 35.58%, #E0F060 54.04%, #8FA103 72.14%);
}
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.service-item h3 {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 10%;
}
.service-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #7d8718;
}
.service-text p {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 10%;
}
@media(max-width:768px) {
  .sub-mv {
    height: 240px;
  }
  .sub-mv-content h2 {
    font-size: 42px;
  }
  .intro-grid, .service-item {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-item:nth-child(even) {
    direction: ltr;
  }
  .service-item {
    margin-bottom: 80px;
  }
}
/* =================================
WORKS PAGE
================================= */
.works-page {
  padding: 100px 0 180px;
  background: #000;
}
/* ============================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 25px;
}
/* ============================== */
.works-card {
  display: block;
  text-align: center;
}
/* ============================== */
.works-image {
  overflow: hidden;
  background: #ddd;
}
.works-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: .7s;
}
.works-card:hover img {
  transform: scale(1.08);
}
/* ============================== */
.works-card p {
  margin-top: 15px;
  color: #a6bc1f;
  font-size: 18px;
  letter-spacing: .05em;
}
/* ============================== */
.works-card:hover p {
  color: #d6ef46;
}
/*==================================
 SINGLE
==================================*/
.single-works {
  padding: 120px 0 150px;
}
.single-post {
  max-width: 900px;
  margin: auto;
}
/*========================*/
.single-image {
  margin-bottom: 60px;
}
.single-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
/*========================*/
.single-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
/*========================*/
.single-date {
  color: #b6c419;
  margin-bottom: 50px;
  font-size: 20px;
}
/*========================*/
.single-content {
  line-height: 2.2;
}
/* WordPress本文 */
.single-content p {
  margin-bottom: 30px;
}
.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
}
.single-content h2 {
  margin: 70px 0 30px;
  padding-left: 20px;
  border-left: 6px solid #b6c419;
  font-size: 2.8rem;
}
.single-content h3 {
  margin: 50px 0 20px;
  font-size: 2.2rem;
}
.single-content ul {
  margin: 20px 0;
  padding-left: 20px;
}
.single-content li {
  margin-bottom: 10px;
}
/*========================*/
@media(max-width:768px) {
  .single-works {
    padding: 80px 0;
  }
}
/* ============================== */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity .8s ease, transform .8s ease;
}
.fadeUp.show {
  opacity: 1;
  transform: none;
}
/* ============================== */
@media(max-width:1024px) {
  .works-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }
}
/* ============================== */
@media(max-width:768px) {
  .works-page {
    padding: 70px 0 120px;
  }
  .works-grid {
    grid-template-columns:
      repeat(2, 1fr);
    gap: 30px 15px;
  }
}
/* ============================== */
@media(max-width:480px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================
ABOUT PAGE
===================================== */
.about-page {
  padding: 120px 0 80px;
  background: #000;
}
/* ========================= */
.company-table-wrap {
  max-width: 1120px;
  margin: auto;
}
/* ========================= */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}
/* ========================= */
.company-table th {
  width: 35%;
  padding: 22px 30px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  letter-spacing: .05em;
}
/* ========================= */
.company-table td {
  padding: 22px 30px;
  color: #fff;
  letter-spacing: .05em;
}
/* ========================= */
.about-map {
  padding-top: 0;
}
.about-map .container {
  width: min(92%, 1120px)
}
.about-map iframe {
  height: 560px;
  display: block;
  border: 0;
}
/* ========================= */
@media(max-width:768px) {
  .about-page {
    padding: 80px 0 50px;
  }
  .company-table, .company-table tbody, .company-table tr, .company-table th, .company-table td {
    display: block;
    width: 100%;
  }
  .company-table tr {
    margin-bottom: 10px;
  }
  .company-table th {
    text-align: left;
    color: #b4c81d;
    padding-bottom: 8px;
  }
  .company-table td {
    padding-top: 0;
  }
  .about-map {
    padding-bottom: 100px;
  }
  .about-map iframe {
    height: 350px;
  }
}
/* =================================
RECRUIT PAGE
================================= */
.recruit-message {
  padding: 80px 0;
}
.recruit-message .container {
  width: 84%;
  margin-left: auto;
  margin-right: 0;
}
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recruit-text {
  line-height: 2.5;
  color: #fff;
}
.recruit-text p {
  font-size: 18px;
}
.recruit-image img {
  width: 100%;
  display: block;
}
/* ============================ */
.recruit-detail {
  padding-bottom: 150px;
  background: #000;
}
.recruit-title {
  margin-bottom: 70px;
}
.recruit-title h2 {
  font-family:
    "Noto Serif JP", serif;
  position: relative;
  padding-left: 28px;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 5%;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.recruit-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 48px;
  background: linear-gradient(184.78deg, #8FA103 35.58%, #E0F060 54.04%, #8FA103 72.14%);
}
.recruit-title p {
  font-size: 18px;
}
/* ============================ */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-table tr {
  border-top:
    1px solid rgba(180, 200, 29, .5);
}
.recruit-table tr:last-child {
  border-bottom:
    1px solid rgba(180, 200, 29, .5);
}
.recruit-table th {
  width: 30%;
  font-weight: 400;
  padding: 35px 25px;
  text-align: center;
}
.recruit-table td {
  color: #fff;
  padding: 35px 25px;
  line-height: 2;
}
/* ============================ */
@media(max-width:768px) {
  .recruit-message .container {
    width: 90%;
    margin: 0 auto;
  }
  .recruit-message {
    padding: 80px 0;
  }
  .recruit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .recruit-title h2 {
    font-size: 34px;
  }
  .recruit-table, .recruit-table tbody, .recruit-table tr, .recruit-table th, .recruit-table td {
    display: block;
    width: 100%;
  }
  .recruit-table tr {
    padding: 20px 0;
  }
  .recruit-table th {
    text-align: left;
    color: #b4c81d;
    padding-bottom: 10px;
  }
  .recruit-table td {
    padding-top: 0;
  }
}
/* Smartphone */
@media(max-width:480px) {
  section {
    padding: 40px 0;
  }
  .sub-mv-content h2 {
    font-size: 32px;
  }
  .sub-mv-content p {
    font-size: 22px;
  }
  .intro-image {
    width: 100%;
  }
  .intro-text p {
    font-size: 15px;
  }
  .intro-text span {
    font-size: 26px;
  }
  .service-box h2 {
    font-size: 32px;
  }
  .service-item h3 {
    font-size: 26px;
  }
  .about-page {
    padding: 40px 0;
  }
  .recruit-title h2 {
    font-size: 32px;
  }
  .recruit-text p {
    font-size: 15px;
  }
  .recruit-title p {
    font-size: 15px;
  }
  .recruit-detail {
    padding-bottom: 50px;
  }
}