/****** 
 共通 
******/
html {
    font-size: 22px;
}
body {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1.3;
}
.container {
    width: 1100px;
    margin-top: 7rem;
}
.inner-container {
    width: 1100px;
}

h2::before {
    display: none;
}

h1,
h1.clear-sbs {
    letter-spacing: 1px;
    font-size: 2.3rem;
    font-weight: 900;
    margin: 1rem auto;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00883A;
    margin: 2.5rem 0;
}

.bg-green h2 {
    margin: 0 0 2.5rem 0;
}

h3 {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0.7rem 0;
}

a:visited {
    color: #fff;
}

.news li a:visited {
    color: #000;
}

.section-margin {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.bg-green {
    background-color: #E1EFD8;
}

.bg-green > div {
    padding: 3rem 0;
}

.bg-white {
    background-color: #fff;
}

.bg-pink {
    background-color: #FDEEF2;
}

.text-green {
    color: #00883A;
}

.color-black {
    color: #000;
}

.align-center {
    align-items: center;
}

.bg-color > div {
    padding: 2.5rem 0;
}

.bread {
    display: flex !important;
    font-size: 0.7rem;
    margin: 1.5rem 0;
    gap: 15px;
}
.bread a:visited {
    color: #000;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-bold {
    font-weight: 900;
}

.font-italic {
    font-style: italic;
}

/****** 
 スライダー
******/
.sliders{
    display: none;
}

.sliders.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
}
    
.sliders img {
    height: 60vh;
    object-fit: contain;
}

.slick-track {
    display: flex !important;
}

.slick-track > div {
    width: 100% !important;
    height: 500px;
}

.slick-track > div img {
    display: inline;
    height: auto;
}

/****** 
 ヘッダー
******/
header > div.pc {
    background-color: #fff;
}

/****** 
 フッター
******/
footer {
    font-size: 0.8rem;
}

footer a.tel-link:visited {
    color: #000;
}

/****** 
 各ページのタイトル
******/
.page-main-header.bg-green {
    background-color: #D6E7B9;
    padding: 2.5rem 0;
}

.page-main-header .bg-white {
    width: 850px;
    padding: 2.5rem 0;
    border-radius: 0;
}

.page-main-header .header-title {
    margin: 0;
    letter-spacing: 1px;
    font-size: 2rem;
    font-weight: 900;
}

.page-main-header .icon {
    width: 100px;
    top: -1rem;
    right: 12rem;
}

.next-image {
    justify-content: center;
    margin: 4rem 0;
}

.next-image > div {
    width: 450px;
}

/****** 
 選ばれる理由
******/
.reasons-cards {
    gap: 3rem;
    margin: 4rem 0;
}

.card {
    position: relative;
}

.card-icon {
    width: 180px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.card-number {
    position: absolute;
    top: -3rem;
    left: 0;
    font-size: 4rem;
    font-weight: bold;
    color: #BFDEAE;
    margin-bottom: 1rem;
}

.card p {
    text-align: left;
}

/****** 
 チェックリスト四角
******/
/* V字装飾 */
.long-triangle {
    height: 60px;      /* 三角の高さ（深さ） */
    background-color: #E1EFD8; /* 抽出したブランドカラーを使用 */
    /* clip-pathのポイント解説:
       (0% 0%)   -> 左上
       (100% 0%) -> 右上
       (50% 100%)-> 下中央（ここが尖るポイント）
    */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
}

/* こんなお悩みありませんか？セクション */
.troubles-checklist {
    width: 800px;
    margin: 0 auto;
    display: block !important;
    /* margin-bottom: 4.5rem; */
}
.trouble-item {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.check-icon {
    width: 60px;
}

/****** 
 チェックリスト丸
******/
.bg-green > div.service-container {
    padding: 3rem 0 7rem 0;
}

/* 背景色と全体の余白 */
.service-section {
  background-color: #e8f5e9; /* 薄い緑 */
  padding: 60px 20px 100px;
  text-align: center;
  font-family: sans-serif;
}

/* タイトル */
.service-title {
  color: #008037;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* 白いカード部分 */
.service-card {
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.3rem 4rem 5rem 4rem;
}

/* リストスタイル */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
    font-size: 1.6rem;
    padding: 20px 4rem; 
    border-bottom: 1px solid #ccc; /* 区切り線 */
    display: flex;
    align-items: center;
    text-align: left;
}

/* 丸いチェックアイコンの再現 */
.service-item::before {
  content: "✔";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #22A338;
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  margin-right: 20px;
  flex-shrink: 0;
}

/* キャラクターと吹き出しの配置 */
.character-area {
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.character-image {
  width: 480px;
  height: auto;
  margin: 0 auto;
  z-index: 1;
}

/****** 
 FAQ セクション
******/
.faq-section {
    padding: 2.5rem 0;
    background: #f2f8ee;
}
.faq-section h2 {
    text-align: center;
    color: #0b7a3f;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    padding: 0 2rem;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}
.faq-q {
    color: red;
    font-weight: 900;
    font-size: 1.8rem;
}
.faq-text {
    flex: 1;
    font-weight: 600;
}
.faq-toggle {
    background: transparent;
    font-size: 2.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    padding: 0;
}
/* .faq-item.active .faq-toggle {
    transform: rotate(45deg);
} */
.faq-answer {
    display: none;
    padding: 0.5rem 0rem;
    border-top: 2px solid #eee;
}
.faq-item.active .faq-answer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-a {
    color: #4caf50;
    font-weight: 900;
    font-size: 1.8rem;
}
.faq-answer p {
    margin: 0;
}

/****** 
 画像数字テキスト
******/
/* 全体のコンテナ */
.features-section h2 {
    line-height: 1.1;
    font-size: 2.8rem;
}

/* 各アイテムの並び */
.features-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px; /* 画像とテキストの間隔 */
}

/* 画像エリア */
.features-image {
  flex: 0 0 400px; /* 横幅を固定 */
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* コンテンツエリア */
.features-content {
  flex: 1;
}

/* 数字とタイトルのヘッダー */
.features-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

/* 大きな数字 */
.features-number {
  color: #E1EFD8; /* 薄い緑 */
  font-size: 3.5rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  margin-right: 15px;
}

/* タイトル */
.features-title {
  font-size: 1.6rem;
  font-weight: 800;
}

.features-text {
    font-size: 1.2rem;  
}
.pricing-text {
    font-size: 1.8rem;
}

/* 説明文 */


/****** 
 news
******/
.blog-content h2 {
    margin: 0 auto 2rem auto;
}

.blog-container {
    margin-top: 2rem;
}

.blog-container .text-content {
    padding: 7px;
}

.card-lists .main-image {
    background-color: #ccc;
}

.card-lists ul li {
    width: calc((100% - 60px) / 3);
    border: solid 1px #aaa;
}

.card-lists ul li h2 {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #000;
}

.card-lists.has-category .category {
    background-color: #0b7a3f;
}

.card-lists.has-category .category a {
    color: #fff
}

.card-lists .more {
    width: 150px;
    font-size: 0.8rem;
    padding: 8px;
}
/****** 
 フッター固定
******/
.fixed-contact {
    width: 100%;
    position: fixed;
    bottom: 0rem;
    z-index: 5;
    box-shadow: #E1EFD8 0px 4px 12px;
    background-color: #fff;
}

.fixed-contact > div {
    width: 1000px;
    margin: 0 auto;
    gap: 1rem;
    align-items: center;
}

.fixed-contact > div > div:nth-child(1) {
    width: 160px;
}

/* スマホ対応（画面が狭いときは縦並びにする） */
@media (max-width: 767px) {
    html,
    body {
        font-size: 20px;
    }
    
    .container,
    .inner-container,
    .fixed-contact > div,
    footer li,
    .lp-hero-illustrations,
    .w-800px,
    .w-900px,
    .lp-description,
    .next-image > div,
    footer .footer-menu > div:last-child,
    .w-400px,
    .one-stop-content,
    .troubles-checklist {
        width: 100% !important;
    }
    
    .slick-track > div img {
        height: 260px !important;
    }

    
    .slick-track > div img.gro-ogo {
        height: auto !important;
    }

    .container {
        margin-top: 4rem;
    }
  .features-item {
    flex-direction: column;
  }
  .features-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .features-main-title {
    font-size: 24px;
  }


  .trouble .lp-mascot,
  .character-area {
    width: 300px;
    margin: 0 auto;
    position: static;
  }

  .character-area {
    transform: translateX(0%);
  }

  .news ul {
    padding: 0;
  }

  .sitemap,
  .items {
    display: block;
  }

  .explanation-content > div > div:first-child {
    width: 100%;
}

.content-wrapper .image-box {
    width: 100%;
}

.text-box {
    margin-left: 0 !important;
}

.service-card {
    max-width: 100%;
    padding: 10px 5px !important;
}

.service-item {
    padding: 10px 0;
}

.fixed-contact {
    padding: 10px 0;
}

.fixed-contact > div.sbs {
    display: flex !important;
}

.fixed-contact > div > div:nth-child(1) {
    display: none;
}
.fixed-contact > div > div:nth-child(2),
.fixed-contact > div > div:nth-child(3) {
    width: 50%;
    display: inline-block;
    margin-bottom: 0;
}

h1, h1.clear-sbs {
    font-size: 1.3rem;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0;
}

h3 {
    font-size: 1.4rem;
}

.pricing-text {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    text-align: left;
}

.section-margin {
    margin-bottom: 2rem;
}

.bg-green > div,
.bg-color > div {
    padding: 2rem 5px !important;
}

.reasons-cards {
    margin: 2rem 0;
}

.card-number {
    top: -1rem;
    font-size: 3rem;
}

.card-icon {
    width: 140px;
    margin-bottom: 0;
}

.next-image {
    margin: 2rem 0;
}

.page-main-header .bg-white {
    width: auto !important;
    padding: 1.5rem 0;
    margin: 0 10px;
}

.page-main-header .header-title {
    font-size: 1.5rem;
}

.page-main-header .icon {
    width: 70px;
    right: 1rem;
}

.trouble-item,
.service-item {
    font-size: 1.1rem !important;
}
.check-icon {
    width: 40px !important;
}

.faq-item {
    padding: 0;
}
.faq-question,
.faq-item.active .faq-answer {
    gap: 10px;
    padding: 0.7rem;
}

.faq-toggle {
    font-size: 2rem;
}

.faq-q,
.faq-answer {
    font-size: 1.2rem !important;
}

.faq-text,
.faq-answer p {
    font-size: 0.9rem;
}

.features-item {
    gap: 10px;
}

.features-header {
    display: block;
}

.features-number {
    font-size: 2.5rem;
}

.features-title {
    font-size: 1.3rem;
}

.features-text {
    font-size: 1rem;
}

.features-section h2 {
    font-size: 1.4rem;
}

.pricing-character {
    position: static;
    width: 150px;
    margin: 0 auto;
}

.mt-4 {
    margin-top: 2rem;
}

.card-lists ul li {
    width: 100%;
}
}
