@charset "UTF-8";
/* ==========================================================================
   トップページ汎用レイアウト 初期セット
   - 特定案件名やブランド名は書かない
   - 必要に応じてクラス名・カラーは各案件ごとに上書きする前提
   ========================================================================== */
/* --------------------------------------
   ページ全体ラッパー
   -------------------------------------- */
.p-index {
  /* トップページ全体のインナーラッパー */
}
.p-index__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 4rem 2rem;
}
@media screen and (max-width: 499px) {
  .p-index__inner {
    width: 100%;
  }
}
@media screen and (max-width: 499px) {
  .p-index__inner {
    padding: 3rem 1.5rem;
  }
}

/* --------------------------------------
   ヒーローセクション（キービジュアル）
   -------------------------------------- */
.p-index-hero {
  /* 背景をブラウザ横幅いっぱいに広げる */
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  /* アクセントカラーを使ったグラデーション背景（必要に応じて差し替え） */
  background: linear-gradient(135deg, #fef9e1, rgb(244.5, 254, 225));
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  /* 左側：キャッチコピー・ボタンエリア */
  /* 右側：画像・イラストなどのビジュアル */
}
@media screen and (max-width: 499px) {
  .p-index-hero {
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
  }
}
@media screen and (max-width: 499px) {
  .p-index-hero {
    padding: 4.5rem 0;
  }
}
.p-index-hero__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 499px) {
  .p-index-hero__inner {
    width: 100%;
  }
}
@media screen and (max-width: 499px) {
  .p-index-hero__inner {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .p-index-hero__inner {
    flex-direction: column;
  }
}
.p-index-hero__txt {
  color: #006835;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
}
.p-index-hero__copy {
  flex: 1 1 55%;
  margin-right: 4rem;
}
@media screen and (max-width: 499px) {
  .p-index-hero__copy {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.p-index-hero__copy-label {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.p-index-hero__copy-ttl {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 499px) {
  .p-index-hero__copy-ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-index-hero__copy-lead {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.p-index-hero__copy-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 499px) {
  .p-index-hero__copy-btns {
    flex-direction: column;
  }
}
.p-index-hero__copy-btns .p-index-hero__btn {
  display: inline-block;
  padding: 10px 20px;
  background: #006835;
  color: #fff;
  text-shadow: none;
  position: relative;
  border-radius: 4px;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 9999px;
  padding: 1.2rem 2.8rem;
  margin-right: 1.5rem;
}
.p-index-hero__copy-btns .p-index-hero__btn i {
  margin-right: 1em;
}
.p-index-hero__copy-btns .p-index-hero__btn:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.p-index-hero__copy-btns .p-index-hero__btn:hover i {
  transform: scale(1.5);
  transition: transform 0.5s ease-in-out;
}
@media screen and (max-width: 499px) {
  .p-index-hero__copy-btns .p-index-hero__btn {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.p-index-hero__copy-btns .p-index-hero__btn--sub {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.p-index-hero__copy-btns .p-index-hero__btn--sub:hover {
  background: rgba(255, 255, 255, 0.12);
}
.p-index-hero__visual {
  flex: 1 1 45%;
  text-align: center;
}
.p-index-hero__visual img {
  max-width: 360px;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}
.p-index-hero__visual img:hover {
  transform: scale(1.03);
}

.p-index-insta {
  text-align: center;
  padding: 60px 0;
}
.p-index-insta__btn a {
  display: inline-block;
  padding: 10px 20px;
  background: #006835;
  color: #fff;
  text-shadow: none;
  position: relative;
  border-radius: 4px;
}
.p-index-insta__btn a i {
  margin-right: 1em;
}
.p-index-insta__btn a:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.p-index-insta__btn a:hover i {
  transform: scale(1.5);
  transition: transform 0.5s ease-in-out;
}

/* --------------------------------------
   セクション共通（見出しなど）
   -------------------------------------- */
.p-index-section {
  padding: 5rem 0;
}
@media screen and (max-width: 499px) {
  .p-index-section {
    padding: 3.5rem 0;
  }
}
.p-index-section__inner, .p-index-works__inner, .p-index-feature__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 2rem;
}
@media screen and (max-width: 499px) {
  .p-index-section__inner, .p-index-works__inner, .p-index-feature__inner {
    width: 100%;
  }
}
@media screen and (max-width: 499px) {
  .p-index-section__inner, .p-index-works__inner, .p-index-feature__inner {
    padding: 0 1.5rem;
  }
}
.p-index-section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.p-index-section__eyebrow {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #006835;
  margin-bottom: 0.75rem;
}
.p-index-section__title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.p-index-section__lead {
  font-size: 14px;
  font-size: 1.4rem;
  color: #626262;
}

/* --------------------------------------
   特徴・サービス一覧（3カラムカード）
   -------------------------------------- */
.p-index-feature {
  background: #faf7f3;
}
.p-index-feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 499px) {
  .p-index-feature__list {
    flex-direction: column;
  }
}
.p-index-feature__item {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-right: 2rem;
}
.p-index-feature__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 499px) {
  .p-index-feature__item {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.p-index-feature__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 168, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.p-index-feature__item-icon i {
  font-size: 20px;
  font-size: 2rem;
  color: #ffa800;
}
.p-index-feature__item-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.p-index-feature__item-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #626262;
  margin-bottom: 1.5rem;
}
.p-index-feature__item-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
}
.p-index-feature__item-link::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 1px;
  background: #ffa800;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s ease;
}
.p-index-feature__item-link:hover::after {
  transform: scale(1, 1);
}

/* --------------------------------------
   制作実績・事例一覧（カードグリッド）
   -------------------------------------- */
.p-index-works__grid {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}
@media screen and (max-width: 499px) {
  .p-index-works__grid {
    margin: -0.5rem;
  }
}
.p-index-works__card {
  flex: 1 1 33.333%;
  padding: 1rem;
}
@media screen and (max-width: 499px) {
  .p-index-works__card {
    flex: 1 1 50%;
    padding: 0.5rem;
  }
}
.p-index-works__card-inner {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.p-index-works__card-thumb {
  position: relative;
  overflow: hidden;
}
.p-index-works__card-thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}
.p-index-works__card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}
.p-index-works__card-cat {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #006835;
  margin-bottom: 0.5rem;
}
.p-index-works__card-title {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-index-works__card-meta {
  font-size: 12px;
  font-size: 1.2rem;
  color: #626262;
}
.p-index-works__card-link {
  display: block;
}
.p-index-works__card-link:hover .p-index-works__card-inner {
  transform: translateY(-4px);
}
.p-index-works__card-link:hover img {
  transform: scale(1.05);
}

/* --------------------------------------
   お問い合わせ / CTA
   -------------------------------------- */
.p-index-cta {
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  background: #181818;
  color: #fff;
  padding: 4.5rem 0;
}
@media screen and (max-width: 499px) {
  .p-index-cta {
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
  }
}
.p-index-cta__inner {
  max-width: 900px;
  margin-inline: auto;
  padding: 0 2rem;
  text-align: center;
}
@media screen and (max-width: 499px) {
  .p-index-cta__inner {
    width: 100%;
  }
}
@media screen and (max-width: 499px) {
  .p-index-cta__inner {
    padding: 0 1.5rem;
  }
}
.p-index-cta__title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-index-cta__text {
  font-size: 14px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.p-index-cta__btn {
  display: inline-block;
  padding: 10px 20px;
  background: #006835;
  color: #fff;
  text-shadow: none;
  position: relative;
  border-radius: 4px;
  font-size: 15px;
  font-size: 1.5rem;
  border-radius: 9999px;
  padding: 1.4rem 3.5rem;
}
.p-index-cta__btn i {
  margin-right: 1em;
}
.p-index-cta__btn:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.p-index-cta__btn:hover i {
  transform: scale(1.5);
  transition: transform 0.5s ease-in-out;
}/*# sourceMappingURL=index.css.map */