body{
  font-family: "Zen Maru Gothic", sans-serif;
  margin:0;
  color:#4b413d;
  line-height:1.7;
}

/* 横スクロール完全防止 */
html, body{
  overflow-x:hidden;
}

/* すべての要素のはみ出し防止 */
*{
  box-sizing:border-box;
}

/* 画像暴走防止 */
img{
  max-width:100%;
  height:auto;
}

/* コンテナ安定 */
.pet-inner{
  max-width:1000px;
  width:100%;
  margin:0 auto;
  padding:0 15px;
}

section{
  padding:60px 20px;
}
h1,h2{
  text-align:center;
}
.pet-btn{
  display:inline-block;
  padding:14px 24px;
  background:#6ec1e4;
  color:#fff;
  border-radius:30px;
  text-align:center;
}
.pet-center{
  text-align:center;
}

/* FV */
.pet-fv{
  background:#f5f5f5;
  padding:100px 20px;
}

/*　こんなお悩みありませんか */
/* お悩み */
.pet-problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:30px;
}

.pet-problem-item{
  background:#fff;
  border-radius:15px;
  padding:25px 20px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.pet-problem-icon{
  font-size:36px;
  margin-bottom:10px;
}

.pet-problem-item p{
  font-size:15px;
  line-height:1.6;
}

.pet-problem-icon img{
  width:80px;
  height:80px;
  object-fit:contain;
}

/* スマホ */
@media(max-width:768px){
  .pet-problem-grid{
    grid-template-columns:1fr;
  }
  .pet-problem-icon img{
    width:60px;
    height:60px;
  }
}

/* 解決セクション */
.pet-solution{
  background:linear-gradient(180deg, #9ed9e6 0%, #7fc8d8 100%);
  padding:80px 20px;
  text-align:center;
}

.pet-solution h2{
  color:#fff;
  font-size:32px;
  line-height:1.5;
  margin-bottom:20px;
}

.pet-solution p{
  color:#fff;
  font-size:18px;
  line-height:1.8;
  max-width:700px;
  margin:0 auto;
}

/* スマホ */
@media(max-width:768px){
  .pet-solution{
    padding:60px 20px;
  }

  .pet-solution h2{
    font-size:24px;
    margin-top : 0!important;
  }

  .pet-solution p{
    font-size:16px;
  }
}

/* サービス全体 */
.pet-service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:30px;
}

/* カード */
.pet-service-item{
  background:#fff;
  border-radius:15px;
  padding:15px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* 画像 */
.pet-service-item img{
  width:100%;
  height:auto;
  border-radius:10px;
  margin-bottom:10px;
}

/* タイトル */
.pet-service-item h3{
  font-size:18px;
  margin-bottom:5px;
}

/* テキスト */
.pet-service-item p{
  font-size:14px;
  line-height:1.6;
}

/* スマホ */
@media(max-width:768px){
  .pet-service-grid{
    grid-template-columns:1fr;
  }
}

/* CTAボタン共通 */
.pet-btn{
  display:inline-block;
  padding:16px 28px;
  border-radius:999px;
  text-align:center;
  text-decoration:none; /* ←③ 下線削除 */
  font-weight:700;
}

/* LINEボタン専用 */
.pet-btn-line{
  background:#06C755; /* ←② LINE公式カラー */
  color:#fff;
}

/* サービス下CTA余白 */
.pet-service .pet-center{
  margin-top:30px; /* ←① 上の余白 */
}

/* スマホ調整 */
@media(max-width:768px){
  .pet-btn{
    display:block;
    width:100%;   /* ←④ 横幅いっぱい */
  }
}

/* 理由セクション */
.pet-reason-wrap{
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:30px;
}

/* テキスト */
.pet-reason-text{
  flex:1;
}

/* リスト */
.pet-reason-list{
  list-style:none;
  padding:0;
  margin:0;
}

/* 各項目 */
.pet-reason-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
  font-size:16px;
  line-height:1.6;
}

/* アイコン */
.pet-reason-list li img{
  width:28px;
  height:28px;
  flex-shrink:0;
  margin-top:0px;
}

/* 画像 */
.pet-reason-image-pc,
.pet-reason-image-sp{
  flex:1;
}

.pet-reason-image-pc img,
.pet-reason-image-sp img{
  width:100%;
  border-radius:10px;
}

/* PC時 */
.pet-reason-image-sp{
  display:none;
}

/* スマホ */
@media(max-width:768px){

  .pet-reason-wrap{
    flex-direction:column;
  }

  .pet-reason-image-pc{
    display:none;
  }

  .pet-reason-image-sp{
    display:block;
    width:100%;
  }
}

/* スタッフカード */
.pet-staff-card{
  background:#fff;
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  margin-top:30px;

  /* やわらかい枠＋影 */
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  background :#e6f6fa;
  border:2px solid #e6f6fa;
}

/* 画像 */
.pet-staff-image{
  width:120px;
  height:120px;
  margin:0 auto 15px;
}

.pet-staff-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%; /* ←丸くする */
}

/* 名前 */
.pet-staff-name{
  font-size:20px;
  margin-bottom:10px;
  color:#4b413d;
}

/* テキスト */
.pet-staff-text{
  font-size:15px;
  line-height:1.7;
  color:#555;
}

/* スマホ微調整 */
@media(max-width:768px){

  .pet-staff-card{
    padding:25px 15px;
  }

  .pet-staff-image{
    width:100px;
    height:100px;
  }

  .pet-staff-name{
    font-size:18px;
  }

  .pet-staff-text{
    font-size:14px;
  }
}

/* グリッド */
.pet-flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

/* ボックス */
.pet-flow-item{
  position:relative;
  background:#fff;
  border-radius:15px;
  padding:25px 15px;
  text-align:center;

  border:2px solid #e6f6fa;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* 番号 */
.pet-flow-num{
  display:block;
  font-size:18px;
  color:#6ec1e4;
  margin-bottom:5px;
  font-weight:bold;
}

/* タイトル */
.pet-flow-item h3{
  font-size:16px;
  margin-bottom:8px;
}

/* テキスト */
.pet-flow-item p{
  font-size:13px;
  line-height:1.6;
  color:#666;
}

/* スマホ */
@media(max-width:768px){

  .pet-flow-grid{
    grid-template-columns:1fr;
  }

  /* PC矢印消す */
  .pet-flow-item::after{
    content:none;
  }

}


/* CTA全体 */
.pet-cta{
  background:#f0f8fb;
  text-align:center;
  padding:60px 20px;
}

/* ボタンラップ */
.pet-cta-buttons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

/* LINE */
.pet-btn-line{
  background:#06C755;
  color:#fff;
}

/* 電話 */
.pet-btn-tel{
  background:#ffa94d;
  color:#fff;
}

/* スマホ */
@media(max-width:768px){
  .pet-cta-buttons{
    flex-direction:column;
  }

  .pet-btn{
    width:100%;
  }
}
