
/* Base */
body {
  margin: 0;
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
}

a {
  color: #17c228;
  text-decoration: none;
}

a:hover {
  color: #13a121;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2em;
  margin-bottom: 1em;
  color: #13a121;
}

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 20px;
}

.site-logo a {
  font-size: 1.5em;
  font-weight: bold;
  color: #13a121;
}

.main-navigation .menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Hero Slider */
.hero-slider .slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-slider .slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 1em;
}

/* Works Section */
.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.work-item {
  width: calc(33.333% - 20px);
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.work-item img {
  max-width: 100%;
  height: auto;
}

/* Staff Section */
.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.staff-item {
  width: calc(33.333% - 20px);
  background: #f2f2f2;
  padding: 10px;
  text-align: center;
}

/* CTA */
.section-cta {
  background: #17c228;
  color: #fff;
  text-align: center;
  padding: 3em 1em;
}

.section-cta .btn {
  display: inline-block;
  background: #fff;
  color: #17c228;
  padding: 1em 2em;
  margin-top: 1em;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 2em 1em;
}

.footer-widgets {
  display: flex;
  gap: 20px;
}

.footer-widget {
  flex: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9em;
  margin-top: 2em;
}

/* Responsive */
@media (max-width: 768px) {
  .work-item,
  .staff-item {
    width: 100%;
  }

  .main-navigation .menu {
    display: none;
  }

  /* ハンバーガー等はmain.jsで対応 */
}

/* Home Page Custom Sections */

.home-intro {
  text-align: center;
  padding: 5em 1em 2em;
}

.intro-heading {
  font-size: 2.5em;
  color: #13a121;
  margin-bottom: 0.5em;
}

.intro-subheading {
  font-size: 1.2em;
  color: #666;
}

.home-description {
  padding: 3em 1em;
  background: #f9f9f9;
  text-align: center;
  font-size: 1em;
  color: #444;
}

.home-highlight-box {
  background: #e0f5e3;
  padding: 3em 1em;
  text-align: center;
}

.home-highlight-box h3 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #17c228;
}

.home-services {
  padding: 3em 1em;
  background: #fff;
  text-align: center;
}

.service-box {
  display: inline-block;
  width: 30%;
  margin: 1%;
  background: #f2f2f2;
  padding: 2em 1em;
}

.service-box h4 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  color: #13a121;
}

.home-cta-banner {
  background: #17c228;
  color: #fff;
  text-align: center;
  padding: 4em 1em;
}

.home-cta-banner .btn {
  display: inline-block;
  background: #fff;
  color: #17c228;
  padding: 1em 2em;
  text-decoration: none;
  margin-top: 1em;
}

/* ==== TCD106風トーンの再現スタイル ==== */

.hero-slider {
  position: relative;
  height: 90vh;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 1em 2em;
}
.slide-caption h2 {
  font-size: 2.5em;
  margin: 0 0 0.5em;
}
.slide-caption p {
  font-size: 1.2em;
  margin: 0;
}

.catch-copy {
  text-align: center;
  padding: 4em 1em;
  background: #fff;
}
.catch-copy h2 {
  font-size: 2.4em;
  color: #13a121;
}
.catch-copy h2 span {
  display: block;
  font-size: 1.2em;
  margin-top: 0.5em;
  color: #333;
}

.intro-message {
  text-align: center;
  padding: 3em 1em;
}
.intro-message p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}
.intro-message .btn {
  display: inline-block;
  background: #17c228;
  color: #fff;
  padding: 1em 2em;
  font-weight: bold;
}

.video-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 2em;
}
.video-overlay h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.video-overlay p {
  font-size: 1.2em;
}

.service-section {
  padding: 4em 1em;
}
.service-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-box {
  flex: 1;
  background: #fff;
  padding: 2em;
  text-align: center;
  border: 1px solid #ddd;
}
.service-box h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  color: #13a121;
}
.service-box .sub {
  font-weight: bold;
  margin-bottom: 1em;
}

.cta-banner {
  background: #17c228;
  color: white;
  text-align: center;
  padding: 3em 1em;
}
.cta-banner .btn {
  display: inline-block;
  background: white;
  color: #17c228;
  padding: 1em 2em;
  font-weight: bold;
  margin-top: 1em;
}

.gray-section {
  background: #f7f7f7;
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #17c228;
  opacity: 1;
}

@media (max-width: 768px) {
  .service-section .container {
    flex-direction: column;
  }
  .slide-caption {
    font-size: 90%;
    bottom: 10%;
    left: 5%;
  }
  .video-overlay {
    padding: 1em;
  }
}

body {
  line-height: 1.8;
  font-size: 16px;
}

.container {
  padding-top: 4em;
  padding-bottom: 4em;
}

section {
  padding: 5em 1em;
}

.index-item, .archive-item, .page-content, .single-post {
  line-height: 1.8;
  font-size: 1rem;
  padding-bottom: 2em;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2em;
}
