@charset "UTF-8";
@font-face {
  font-family: "LINESeedJP";
  src: url("/fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("/fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "LINESeedJP", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/* container を max-width:1300px に */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero */
.hero {
  color: #fff;
  padding: 60px 0 120px;
  position: relative;
  background-image: url(/image/hero.png);
  background-size: cover;
  height: 70vh;
  background-repeat: no-repeat;
  margin: 40px;
  border-radius: 30px;
}
@media (max-width: 1000px) {
  .hero {
    background-image: url(/image/sp_hero.png);
  }
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: left;
}
@media (max-width: 940px) {
  .hero .hero-content {
    left: 40%;
  }
}

header {
  position: relative;
}
header .container {
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 通常時ナビ */
.hero-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.hero-nav a {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1400px) {
  .hero-nav {
    padding: 0 60px;
  }
}

/* ハンバーガーボタン */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: -20px;
  right: 75px;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(33deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(319deg);
}

/* open時アニメ */
/* Hero見出し＆ボタン */
.hero-content {
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.btn {
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
}

.btn-primary {
  background-color: #fff;
  color: #333;
  padding: 15px 40px;
}

/* Services */
.services {
  padding: 80px 0;
}
.services .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.services-text {
  flex: 1;
}
.services-text h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.services-text p {
  margin-bottom: 16px;
  color: #666;
}

.services-image {
  flex: 1;
  text-align: center;
}
.services-image img {
  max-width: 100%;
}

/* Features */
.features {
  padding: 80px 0;
}
.features h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 50px;
}

.feature-grid {
  display: flex;
  flex-direction: column;
}

.feature {
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .feature {
    flex-direction: column;
    align-items: center;
  }
}
.feature .icon {
  max-width: 680px;
}
.feature .icon img {
  width: 100%;
}
.feature .content {
  max-width: 580px;
  width: 100%;
  flex: 1;
}
.feature:nth-child(2), .feature:nth-child(4) {
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .feature:nth-child(2), .feature:nth-child(4) {
    flex-direction: column;
  }
}

.number {
  display: block;
  font-size: 90px;
  font-weight: bold;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 40px;
  margin-bottom: 12px;
}
.feature ul {
  list-style: none;
}
.feature li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  color: #666;
}
.feature li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #333;
}

/* Profile */
.profile {
  position: relative;
  padding: 80px 0;
}

.profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  z-index: -1;
}

.profile h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.profile-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.profile-image {
  max-width: 500px;
  width: 100%;
}
.profile-image img {
  width: 100%;
}

.profile-text p {
  margin-bottom: 16px;
  color: #666;
  line-height: 1.6;
}

/* Works */
.works {
  padding: 80px 0;
}
.works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.works .works-grid {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap; /* 折り返し有効化 */
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  /* 最初は1行(3つ分)だけ表示 */
  max-height: 390px; /* カードの高さに合わせて調整 */
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.works .works-grid::after {
  content: "";
  display: block;
  width: 60%;
}
.works .works-grid.open {
  /* openクラスがついたら高さ制限を解除 */
  max-height: none;
}
.works .work-card {
  box-shadow: -1px 0px 10px 0px rgba(0, 0, 0, 0.17);
  border-radius: 20px;
}
.works .work-card img {
  border-radius: 20px 20px 0 0;
}
.works .work-card span {
  display: block;
  padding: 20px;
  font-weight: bold;
}

/* お問い合わせ（セカンダリ） */
.btn_wrap {
  text-align: center;
}

.btn-secondary {
  background-color: #333;
  color: #fff;
  padding: 12px 36px;
  display: inline-block;
  margin: 0 auto;
}

/* Responsive: スマホ時 */
@media (max-width: 768px) {
  /* ハンバーガー表示 */
  .menu-toggle {
    display: flex;
    right: 45px;
  }
  /* ナビ隠す & open で出す */
  .hero-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: -40px;
    right: 15px;
    background: #333;
    padding: 20px;
    border-radius: 8px;
    width: calc(100% - 30px);
    z-index: 9;
  }
  .hero-nav.open {
    display: flex;
  }
  .hero-nav a {
    margin: 10px 0;
  }
  .services .container,
  .profile-card,
  .feature-grid {
    display: block;
  }
  .hero {
    margin: 20px;
  }
  .hero-content h1 {
    font-size: 25px;
  }
  .btn-primary {
    padding: 10px 20px;
  }
  .works .works-grid {
    max-height: 340px;
  }
  .works .work-card {
    width: 89%;
    margin: auto;
  }
  .works .work-card img {
    width: 100%;
  }
  .features h2 {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .feature {
    gap: 0;
  }
  .feature .number {
    font-size: 60px;
    margin-bottom: 8px;
  }
  .feature h3 {
    font-size: 33px;
    margin-bottom: 12px;
  }
  .services {
    padding: 40px 0 0px;
  }
}
footer {
  text-align: center;
  padding: 10px;
}/*# sourceMappingURL=styles.css.map */