@charset "utf-8";
/* ===== 基本設定 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 20px;
  line-height: 2;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  color: #333;
  background: #fff;
  letter-spacing: 0.02em;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
/* ===== ヘッダー ===== */
.header {
  width: 100%;
  z-index: 15; /* フッターより上に表示されるように */
  background-color: #fff; /* 背景を指定（透け防止） */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 少し影をつけて区切り感 */
  background: #019999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 10px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img {
  display: block;
  vertical-align: middle;
}
.header .sub-title {
  font-size: 0.8rem;
  font-weight: normal;
  color: #F5EBDD;
}
.header-nav {
  display: flex;
  align-items: center;
  position: relative;
  height: 70px;
}
.btn-mail, .btn-line {
  width: 70px;
}
.header-nav {
  display: flex;
  align-items: center;
  position: relative;
  height: 70px;
}
/* ボタンの幅 */
.btn-mail, .btn-line {
  width: 70px;
}
/* 全リンク共通 */
.header-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  height: 100%;
  transition: background-color 0.3s;
}
/* メールボタンの左線を固定 */
.btn-mail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #F5EBDD; /* 常に線の色を固定 */
}
/* メールボタン左線ホバー時も消えない */
.btn-mail:hover::before {
  background-color: #F5EBDD;
}
/* 全リンクの右線 */
.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #F5EBDD; /* 線の色を固定 */
  transition: background-color 0.3s;
}
/* 最後以外のリンクに右線を表示 */
.header-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #F5EBDD;
  transition: background-color 0.3s;
}
/* ホバー時は背景だけ色を変える */
.header-nav a:hover {
  background-color: #1DBBBB;
}
/* ホバー時も右線は消さず固定 */
.header-nav a:hover::after {
  background-color: #F5EBDD;
}
/* ホバー時に左線も変えたくなければ不要 */
.header-nav a:hover::before {
  background-color: #F5EBDD;
}
/* 最初のリンクだけのホバー例（必要なら） */
.header-nav a:first-child:hover {
  background-color: #1DBBBB;
}
.mv_no {
  display: none;
}
.mv_on {
  display: inline;
}
.pc_no {
  display: none;
}
.sp_no {
  display: none;
}
.mess_no {
  display: none;
}
.foot_no {
  display: none;
}
.foot_on {
  display: inline;
}
/* ===== メイン ===== */
main {
  width: 100%;
  margin-bottom: 178px;
}
/* ===== メインビジュアル ===== */
.mv-inner {
  text-align: center;
  padding: 40px 0 0;
}
/* ===== ブロック ===== */
.block {
  margin: auto;
  width: 1200px;
  padding: 40px 0;
}
.block-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.sub {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
.text-accent {
  color: #019999;
}
.text-red {
  color: #FB534B;
}
/* ===== ブロック01 ===== */
.block01 {}
/* お悩みリスト */
.cards {
  padding: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.card {
  position: relative; /* 文字を重ねるために必要 */
  width: 186px;
  height: 182px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* 画像をカードにフィットさせる */
}
.card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; /* 追加 */
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  pointer-events: none;
}
.main-01 {
  text-align: center;
  padding-top: 30px;
}
.main-01 img {
  width: 860px;
  max-width: 100%;
}
/* ===== ブロック02 ===== */
.block02 {}
.txt-01 {
  padding: 0 40px;
}
/* ===== ブロック03 ===== */
.block03 {}
.recs {
  display: flex;
  gap: 16px; /* カード間の隙間 */
  justify-content: center;
  flex-wrap: wrap; /* スマホで折り返し */
}
.rec {
  width: 316px; /* 横幅固定 */
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央寄せ */
  text-align: center;
}
.rec img {
  width: 316px;
  height: auto;
}
.rec-text {
  margin-top: 8px; /* 画像とテキストの間隔 */
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
}
/* ===== ブロック04 ===== */
.block04 {}
.voice {
  width: 1040px;
  padding: 40px 20px;
  margin: auto;
  background-color: #FFF8F0;
  border-radius: 30px;
  text-align: center;
}
.voice-fukuoka {
  color: #019999;
  font-size: 1.2rem;
  font-weight: 700;
}
.voice-ttl {
  display: inline-block;
  color: #FFF;
  background: #019999;
  border-radius: 9999px;
  line-height: 45px;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px auto 20px;
}
/* メイン */
.voice-all {}
.voice-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 85%; /* 横幅を統一 */
  margin: 0 auto 30px;
}
.voice-img {
  width: 35%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}
.voice-content {
  width: 65%;
  text-align: right;
}
/* 文字下の下部25%を黄色で覆う */
.voice-title {
  font-weight: normal;
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.1;
  padding-bottom: 0.1em;
  background-image: linear-gradient(#FFD600, #FFD600);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 35%;
  -webkit-background-clip: padding-box;
}
/* 吹き出し枠 */
.voice-bubble {
  position: relative;
  background: #ffffff;
  border: 1px solid #444444;
  border-radius: 12px;
  padding: 20px 15px 20px 20px;
  margin-top: 0.3rem;
  box-sizing: border-box;
  max-width: 100%;
  /* 吹き出しの前後余白 */
  overflow: visible;
  z-index: 1;
  text-align: left;
}
.voice-bubble p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* 吹き出しの三角（白い部分） */
.voice-bubble::before {
  content: "";
  position: absolute;
  left: -12px; /* 三角の位置（枠の左側に突き出す） */
  top: 18px; /* 三角の上下位置を調整 */
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #ffffff; /* 吹き出しの背景色 */
  z-index: 2;
}
.voice-bubble::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 13px solid #444444; /* 枠線色 */
  z-index: 1;
}
/* ===== ブロック05 ===== */
.block05 {}
.check-list {
  list-style: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
}
.check-item {
  position: relative;
  padding-left: 52px; /* アイコン分のスペース */
  font-size: 1.7rem;
  line-height: 1.6;
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: left center;
}
.text-accent {
  font-weight: bold;
}
/* ===== ブロック06 ===== */
.block06 {}
.con-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1040px;
  margin: 0 auto;
  gap: 25px;
  box-sizing: border-box;
}
.con-text {
  width: 770px;
}
.con-img {
  width: 270px;
  max-width: 40%;
}
.con-img img {
  width: 100%;
  height: auto;
}
/* ===== ブロック07 ===== */
.block07 {}
.flow {
  width: 400px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.flow-title {
  height: 60px;
  background: #019999;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}
.flow_txt {
  font-size: 1rem;
  line-height: 1.8;
}
.arrow {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.flow-textarea {
  text-align: left;
  margin: 70px auto;
  width: 880px;
  max-width: 96%;
}
.flow-textarea-ttl {
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
}
.step {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: 1118px;
  max-width: 100%;
  margin: 70px auto 0;
}
.step-01 {
  width: 476px;
  max-width: 100%;
  flex-shrink: 1;
}
.step-02 {
  width: 633px;
  max-width: 100%;
  flex-shrink: 1;
}
.step-01 img, .step-02 img {
  width: 100%;
  display: block;
}
/* ===== ブロック08 ===== */
.block08 {
  background: url("../img/dot-bg.png")repeat;
  border-block: #DFDFDF solid 1px;
  padding: 20px 0;
  margin: 40px 0 20px;
}
.items {
  width: 940px;
  margin: 0 auto; /* 中央寄せ */
  display: flex;
  flex-wrap: wrap; /* 2行に対応 */
  justify-content: space-between; /* 左右の余白を均等に */
  gap: 20px; /* 行間の余白 */
}
.item {
  width: 420px;
  box-sizing: border-box;
  margin-bottom: 20px; /* 行間のスペース */
}
.item h3 {
  font-size: 1.5rem;
  color: #019999;
  margin-bottom: 1rem;
  border-bottom: 2px solid #019999; /* 下線 */
  padding-bottom: 0rem; /* 下線と文字の間隔 */
}
.item ul {
  padding-top: 10px;
  list-style: none;
}
.item ul li {
  position: relative;
  padding-left: 1.5em; /* チェックマーク分のスペース */
}
.item ul li::before {
  content: "✓"; /* チェックマーク */
  position: absolute;
  left: 0;
}
.flow-info {
  width: 940px;
  padding-left: 1em;
  text-indent: -1em;
  margin: 30px auto 10px;
  line-height: 1.4;
}
/* ===== ブロック09 ===== */
.block09 {}
.message {
  text-align: center;
}
.message-title {
  display: inline-block;
  background: #F5EBDD;
  border-radius: 9999px;
  height: 62px;
  line-height: 62px;
  padding: 0 40px;
  text-align: center;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
}
.message-sum {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
}
.mess-img {
  text-align: center;
  margin: 30px 0 0px;
}
.answer-txt {
  text-align: center;
  padding: 10px 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
.message-txt {
  width: 880px;
  max-width: 96%;
  text-align: left;
  padding: 15px 0 0;
  margin: auto;
}
/* ===== ブロック10 ===== */
.block10 {}
.price-ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF6B6B;
}
.price-txt {
  text-align: center;
  font-weight: bold;
  color: #019999;
}
.box {
  width: 650px;
  max-width: 100%;
  margin: 24px auto;
  line-height: 1.6;
}
/* セクションタイトル */
.section-title {
  font-weight: 700;
  margin: 8px 0 6px;
  padding-left: 70px;
}
/* 実線（横線） */
.hr-solid {
  border: 0;
  height: 1px;
  background: #000;
  width: 650px;
  max-width: 100%;
  margin: 18px auto; /* 上下の余白 */
}
/* 点線（横ドット線） */
.hr-dotted {
  border-top: 2px dotted #000;
  width: 650px;
  max-width: 100%;
  margin: 18px auto;
}
/* 料金リストのスタイル */
.price-list {
  margin: 6px 0 0 0;
  padding-left: 70px;
  list-style: none;
}
.price-list li {
  margin: 6px 0;
  padding: 4px 0;
  line-height: 1.2;
}
/* 注意書き */
.note {
  font-size: 0.95rem;
  padding-left: 70px;
  margin-top: 10px;
}
/* ===== ブロック11 ===== */
.block11 {
  background: #97E8EF;
  padding: 10px 0;
  margin-bottom: 30px;
}
.qa {
  width: 650px;
  margin: 0 auto 30px;
  text-align: left;
  background: #FFF;
  border-radius: 10px;
}
.answer {
  position: relative;
  cursor: pointer;
  width: 650px;
  min-height: 70px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
  box-sizing: border-box;
}
.answer div {
  text-indent: -1.5em;
  padding-left: 2.5em;
  flex: 1; /* ← テキスト領域を可変にして、右端の＋を押し出さない */
}
.toggle_icon {
  font-size: 1.6rem;
  color: #019999;
  flex-shrink: 0; /* ← アイコンが押し出されない */
  width: 1.5em;
  text-align: center;
}
/* 開いているときは「−」に変更 */
.answer.open .toggle_icon {
  content: "−";
  transform: rotate(180deg);
}
.answer:hover {
  transition: all .4s;
}
.toggle_contents {
  display: none;
  padding: 0 30px 30px;
  font-size: 0.9rem;
  line-height: 1.8;
}
/* ===== CTA ===== */
.cta {
  width: 1000px;
  margin: 0 auto 40px;
}
.cta a:link {
  color: #019999;
  text-decoration: none;
}
.cta a:visited {
  color: #019999;
  text-decoration: none;
}
.cta a:hover {
  color: #FB534B;
  text-decoration: none;
}
.cta a:active {
  color: #019999;
  text-decoration: none;
}
.free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: left;
}
.label-img {}
.headline {
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0;
  transform: translateY(0.5em);
}
.cta-main {
  width: 1000px;
  border: solid 24px #019999;
  background-color: #FFF8F0;
  margin: 6px auto 0;
  padding: 40px 20px 20px;
  text-align: center;
}
.cta-ttl {
  font-size: 2.3rem;
}
.cta-sub {
  font-size: 1.7rem;
  font-weight: 500;
}
.cta-pet {
  margin: 35px;
}
.cta-tel {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}
.cta-phon {
  font-size: 4rem;
  font-weight: 500;
  color: #019999;
  line-height: 1.6;
}
.cta-txt {
  font-size: 2rem;
  font-weight: 500;
  padding-top: 20px;
}
.cta-rec-ttl {
  font-size: 1.7rem;
  font-weight: 500;
  padding-top: 35px;
  color: #019999;
}
.cta-rec {}
.cta-btn img {
  display: inline-block; /* これでtransformが効く */
  transition: transform 0.2s ease-in-out;
}
.cta-btn:hover img {
  animation: shake 0.6s ease-in-out 1; /* 0.6秒で1回揺れる */
}
@keyframes shake {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.cta-rec {
  margin: 20px 0;
}
.cta-rec img {
  padding: 0 10px;
  width: 832px;
  max-width: 100%;
}
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  text-align: left;
}
.cta-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-info li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
  padding-bottom: 10px;
}
.dog-bg {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.dog-bg img {
  width: 100%;
}
/* ===== 固定フッター部分 ===== */
.pagetop {
  position: fixed;
  bottom: 0rem;
  left: 0;
  width: 100%;
  z-index: 30;
  margin: 0 auto;
}
/* ===== ページトップボタン ===== */
.next-top {
  position: fixed;
  right: 30px;
  bottom: 100px;
}
.next-top img {
  transition: opacity 0.3s, filter 0.3s;
}
.next-top img:hover {
  opacity: 0.6;
  filter: brightness(1.2);
}
/* ===== フッター ===== */
.footer {
  background: #019999;
  padding: 0;
  height: 89px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.foot-area {
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-nav a img {
  display: block;
  margin-top: 5px;
  height: 84px;
  transition: transform 0.3s ease;
}
.footer-nav a:hover img {
  transform: scale(1.15);
}
/* レスポンシブデザイン */
@media screen and (max-width: 1300px) {
  html {
    font-size: 18px;
    line-height: 2;
  }
  .header-inner {
    padding: 0;
  }
  .container {
    width: 100%;
  }
  .logo-area {
    gap: 15px;
  }
  .logo img {
    width: 100%;
    max-width: 330px;
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .mv-inner {
    padding: 20px 0 0;
  }
  .mv-inner img {
    width: 100%;
  }
  .block {
    width: 100%;
    padding: 30px 0;
  }
  .label-img {
    padding-top: 20px;
    width: 110px; /* 少し小さく */
  }
  .step {
    width: 100%;
    max-width: 100%;
    margin: 70px auto 0;
    padding: 0 40px;
  }
  .next-top {
    position: fixed;
    right: 10px;
    bottom: 90px;
  }
  .headline {
    transform: translateY(0.9em);
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 16px;
    line-height: 2;
  }
  .header-inner {
    height: 60px;
  }
  .header-nav {
    height: 60px;
  }
  .header .sub-title {
    line-height: 1.2;
    padding-right: 10px;
  }
  .btn-mail, .btn-line {
    width: 60px;
  }
  .header-nav a {
    padding: 0 10px;
  }
  .header-nav a img {
    transform: scale(0.9);
  }
  .btn-tel img {
    margin-left: -10px;
  }
  .rec {
    width: 100%;
    max-width: 300px;
  }
  .rec img {
    width: 100%;
    height: auto;
  }
  .rec-text {
    margin-top: 8px; /* 画像とテキストの間隔 */
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .flow-info {
    width: 850px;
  }
  .voice {
    width: 96%;
  }
  .voice-item {
    max-width: 86%;
  }
  .con-section {
    width: 100%;
    padding: 0 40px;
    gap: 20px;
  }
  .items {
    width: 860px;
  }
  .item {
    width: 400px;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  main {
    margin-bottom: 160px;
  }
  .block08 {}
  .card {
    width: 170px;
    height: auto;
  }
  .cta {
    width: 100%;
    margin-top: -20px;
  }
  .cta-main {
    width: 100%;
    border: solid 20px #019999;
  }
  .cta:last-child {
    margin-bottom: -90px;
  }
  .voice {
    padding: 30px 20px 20px;
  }
  /* ===== 固定フッター部分 ===== */
  .pagetop {
    position: fixed;
    bottom: 0rem;
    left: 0;
    width: 100%;
    z-index: 30;
    margin: 0 auto;
  }
  .next-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
  }
  .next-top img {
    width: 80px;
  }
}
@media screen and (max-width: 960px) {
  .header-inner {
    height: 50px;
  }
  .header-nav {
    height: 50px;
  }
  .btn-mail, .btn-line {
    width: 50px;
  }
  .header-nav a {
    padding: 0 8px;
  }
  .header-nav a img {
    transform: scale(0.8);
  }
  .btn-tel img {
    margin-left: -15px;
  }
  .block-title {
    font-size: 2.3rem;
    margin-bottom: 40px;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }
  .sub {
    font-size: 1.7rem;
    letter-spacing: 0em;
    line-height: 1.2;
    display: inline-block;
    padding-top: 5px;
  }
  .cards {
    margin-top: -20px;
    gap: 5px;
  }
  .card {
    width: 140px;
  }
  .card-text {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .main-01 {
    padding: 15px 20px 0;
  }
  .txt-01 {
    padding: 0 30px;
  }
  .recs {
    padding: 20px 30px;
  }
  .voice {
    padding: 30px 20px 20px;
  }
  .voice-fukuoka {
    font-size: 1rem;
  }
  .voice-ttl {
    line-height: 32px;
    padding: 0 15px;
    font-size: 1.1rem;
  }
  .voice-item {
    max-width: 94%;
  }
  .voice-img img {
    height: 200px;
  }
  .check-item {
    font-size: 1.4rem;
    padding-left: 42px; /* アイコンサイズに合わせて調整 */
    background-size: 30px 30px;
  }
  .items {
    width: 768px;
    padding: 0 25px;
  }
  .items {
    width: 768px;
    padding: 0 25px;
  }
  .item {
    width: 348px;
    margin-bottom: 0.5rem;
  }
  .item h3 {
    font-size: 1.3rem;
  }
  .item h3 {
    margin-bottom: 0.5rem;
  }
  .flow-info {
    width: 768px;
    max-width: 100%;
    padding: 0 40px;
  }
  .block08 {}
  .message-title {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 1.2rem;
  }
  .message-sum {
    font-size: 1.35rem;
    line-height: 2;
    margin: 20px 0;
  }
  .mess-img {
    margin: 15px 0 0px;
  }
  .mess-img img {
    width: 730px;
    max-width: 96%;
  }
  .answer-txt {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .footer-inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
body {
  padding-top: 60px; /* ヘッダーの高さに合わせて調整 */
}
.header {
  position: fixed;
  top: 0;
  left: 0;
}
  main {
    margin-bottom: 190px;
  }
  .mv-inner {
    padding: 10px 0 0;
  }
  .block {
    padding: 20px 0;
  }
  .block-title {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 0.015em;
  }
  .sub {
    font-size: 1.5rem;
  }
  .cards {
    padding: 10px 7% 0;
    gap: 10px;
  }
  .card {
    width: 250px;
    max-width: 32%;
    display: flex; /* Flexboxで中央揃え */
    justify-content: center; /* 横中央 */
    align-items: center; /* 縦中央 */
  }
  .card img {
    width: 100%;
  }
  .card-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .label-img {
    padding-top: 0px;
  }
  .headline {
    font-size: 1.1rem;
    transform: translateY(0.7em);
  }
  .cta-ttl {
    font-size: 1.9rem;
  }
  .cta-sub {
    font-size: 1.5rem;
  }
  .recs {
    padding: 10px 30px;
  }
  .rec-text {
    font-size: 1.2rem;
  }
  .voice-item {
    max-width: 100%;
  }
  .voice-img img {
    height: 170px;
  }
  .check-list {
    gap: 14px;
  }
  .check-item {
    font-size: 1.2rem;
    padding-left: 34px;
    background-size: 25px 25px;
  }
  .con-section {
    padding: 0 30px;
    gap: 10px;
  }
  .con-text {
    width: 63%;
  }
  .con-img {
    width: 37%;
    max-width: 37%;
  }
  .step {
    margin: 50px auto 0;
    padding: 0 30px;
  }
  .block08 {}
  .items {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .item {
    width: 340px;
  }
  .item ul li {
    line-height: 1.2;
    padding-bottom: 5px;
  }
  .flow-info {
    width: 100%;
    padding: 0 60px;
  }
  .flow-textarea {
    max-width: 88%;
  }
  .mess_no {
    display: inline;
  }
  .message-txt {
    padding: 15px 30px;
  }
  .block10 {}
  .qa {
    width: 600px;
  }
  .answer {
    width: 600px;
  }
  .next-top {
    position: fixed;
    right: 10px;
    bottom: 110px;
  }
  .footer {
    height: 120px;
  }
  .footer-inner {
    max-width: 100%;
    justify-content: center;
  }
  .foot-area {
    display: none;
  }
  .footer-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .footer-nav a {
    flex: 1; /* 均等に3分割 */
    text-align: center;
  }
  .footer-nav a img {
    width: 100%; /* 親要素の幅にぴったり合わせる */
    height: auto; /* 比率維持 */
    display: block;
    max-width: 100%;
  }
  .footer-nav a:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 730px) {
  html {
    font-size: 16px;
    line-height: 1.8;
  }
  main {
    margin-bottom: 230px;
  }
  .logo {
    width: 230px;
  }
  .sub-title {
    display: none;
  }
  .header-nav {
    display: none;
  }
  .label-img {
    padding-top: 0px;
  }
  .cta:last-child {
    margin-bottom: -130px;
  }
  .message-txt {
    padding: 15px 30px;
  }
  .next-top {
    display: none;
  }
  .footer {
    height: 119px;
  }
}
@media screen and (max-width: 640px) {
body {
  padding-top: 54px; /* ヘッダーの高さに合わせて調整 */
}
  main {
    margin-bottom: 250px;
  }
  .block01 {
    margin-top: -10px;
  }
  .block-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 0.015em;
  }
  .sub {
    font-size: 1.3rem;
  }
  .cards {
    padding: 10px 1.5% 0;
    gap: 5px;
  }
  .card {
    width: 200px;
    max-width: 32%;
  }
  .card img {
    width: 100%;
  }
  .card-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .rec-text {
    padding-bottom: 20px;
  }
  .free {
    flex-direction: column;
    gap: 0;
  }
  .headline {
    font-size: 1.1rem;
    line-height: 1.5;
    transform: none;
    text-align: center;
  }
  .cta-main {
    width: 100%;
    padding: 20px 10px;
    border: solid 16px #019999;
  }
  .cta-ttl {
    font-size: 1.5rem;
  }
  .cta-sub {
    font-size: 1.2rem;
  }
  .cta-pet {
    margin: 30px;
  }
  .cta-pet img {
    width: 180px;
  }
  .cta-tel {
    font-size: 2rem;
  }
  .cta-phon {
    font-size: 3.5rem;
  }
  .cta-txt {
    font-size: 1.8rem;
    padding-top: 15px;
  }
  .cta-rec-ttl {
    font-size: 1.4rem;
    padding-top: 30px;
  }
  .cta-rec {
    margin: 10px 0 20px;
  }
  .cta-btn img {
    width: 80%;
  }
  .cta-container {
    height: 80px;
  }
  .cta-info li {
    font-size: 0.9rem;
    padding-left: 0.9rem;
    text-indent: -0.9rem;
    padding-bottom: 10px;
  }
  .voice-title {
    font-size: 1.2rem;
  }
  .voice-bubble {
    padding: 10px 10px 10px 15px;
  }
  .voice-bubble p {
    line-height: 1.5;
  }
  .voice-img img {
    height: 140px;
  }
  .check-list {
    padding: 0 30px;
  }
  .check-item {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-left: 25px;
    background-size: 20px 20px;
    background-position: 0 4px;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
  }
  .step img {
    display: block;
    margin: 0 auto; /* ブロック要素を中央に */
    width: 476px;
  }
  .price-ttl {
    font-size: 1.3rem;
  }
  .price-txt {
    padding: 0 30px;
  }
  .box {
    width: 100%;
  }
  .hr-solid {
    width: 100%;
  }
  .hr-dotted {
    width: 100%;
  }
  .mess-txt {
    padding: 0 20px;
  }
  .qa {
    width: 500px;
  }
  .answer {
    width: 500px;
    min-height: 60px;
    font-size: 1rem;
  }
  .foot_no {
    display: inline;
  }
  .foot_on {
    display: none;
  }
  .item h3 {
    font-size: 1rem;
  }
  .footer-nav a img {
    margin-top: 0px;
  }
  .footer-nav a:hover img {
    transform: none !important;
  }
  .footer {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-nav {
    gap: 15px;
  }
}
@media screen and (max-width: 550px) {
  main {
    margin-bottom: 220px;
  }
  .pc_no {
    display: inline;
  }
  .block-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.015em;
  }
  .sub {
    font-size: 1.2rem;
  }
  .card-text {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .cta-info li {
    font-size: 0.82rem;
    padding-left: 0.82rem;
    text-indent: -0.82rem;
  }
  .recs {
    padding: 0px 20px;
  }
  .voice-fukuoka {
    font-size: 0.9rem;
  }
  .voice-ttl {
    line-height: 28px;
    padding: 0 10px;
    font-size: 1rem;
    margin: 10px auto;
  }
  .voice-title {
    font-size: 1rem;
  }
  .voice-img img {
    height: 130px;
    margin-top: 50px;
  }
  .item h3 {
    font-size: 1.2rem;
  }
  .con-section {
    display: flex;
    flex-direction: column; /* ← 横並び（row）から縦並びに変更 */
    justify-content: flex-start; /* 縦方向の揃え方 */
    align-items: flex-start;
  }
  .con-text {
    width: 100%;
  }
  .con-img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .con-img img {
    margin-top: 10px;
    width: 50%;
  }
  .step {
    gap: 20px 0;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
  }
  .step img {
    width: 100%;
  }
  .message-title {
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
    font-size: 1rem;
  }
  .message-sum {
    font-size: 1.1rem;
    margin: 15px 0;
    line-height: 1.8;
  }
  .message-txt {
    padding: 15px 20px;
  }
  .answer-txt {
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 10px 0;
  }
  .section-title {
    padding: 0 40px;
  }
  .flow-textarea {
    margin: 40px auto 0;
  }
  .price-list {
    padding: 0 40px;
  }
  .note {
    padding: 0 40px;
  }
  .qa {
    width: 430px;
  }
  .answer {
    min-height: 50px;
    width: 430px;
    padding: 10px 5px 10px 0;
  }
  .footer {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
body {
  padding-top: 47px; /* ヘッダーの高さに合わせて調整 */
}
  main {
    margin-bottom: 220px;
  }
  .mv_no {
    display: inline;
  }
  .mv_on {
    display: none;
  }
  .mv-inner {
    padding: 0;
  }
  .block01 {}
  .block-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 0.015em;
  }
  .sub {
    font-size: 1.1rem;
  }
  .cards {
    padding: 15px 0 0;
  }
  .card {
    width: 200px;
    max-width: 30%;
  }
  .card-text {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .txt-01 {
    padding: 0 20px;
  }
  .item h3 {
    font-size: 1.1rem;
  }
  .cta-main {
    width: 100%;
    border: solid 10px #019999;
  }
  .cta-ttl {
    font-size: 1.15rem;
    letter-spacing: 0;
  }
  .cta-sub {
    font-size: 1.1rem;
  }
  .cta-pet {
    margin: 0px;
  }
  .cta-pet img {
    margin: 25px;
    width: 150px;
  }
  .cta-tel {
    font-size: 1.6rem;
  }
  .cta-phon {
    font-size: 2.5rem;
  }
  .cta-txt {
    font-size: 1.4rem;
    padding-top: 10px;
  }
  .cta-rec-ttl {
    font-size: 1rem;
    padding-top: 20px;
  }
  .cta-btn img {
    margin-top: 5px;
  }
  .cta-rec img {
    padding: 0;
  }
  .voice {
    width: 100%;
    padding: 20px;
  }
  .voice-content {
    width: 100%;
    text-align: center;
  }
  .voice-item {
    flex-direction: column-reverse;
    align-items: center;
    margin: 0 auto;
  }
  .voice-bubble {
    position: relative;
    margin-top: 0.5rem;
  }
  .voice-title {
    font-size: 1.1rem;
  }
  /* 三角を下に変更 */
  .voice-bubble::before, .voice-bubble::after {
    content: "";
    position: absolute;
    left: 30px; /* 三角の横位置 */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
  .voice-bubble::before {
    top: 100%; /* 吹き出しの下端 */
    border-top: 10px solid #ffffff; /* 白背景の部分 */
    z-index: 2;
  }
  .voice-bubble::after {
    top: calc(100% + 1px);
    border-top: 11px solid #444444; /* 枠線色 */
    z-index: 1;
  }
  .voice-img {
    width: 80%;
  }
  .voice-img img {
    height: 150px;
    margin-top: 0px;
  }
  .voice .voice-item:nth-child(4) .voice-img img {
    margin-top: -22px;
    margin-bottom: -15px;
  }
  .voice .voice-item:nth-child(5) .voice-img img {
    margin-top: -5px;
    margin-bottom: 15px;
  }
  .voice .voice-item:nth-child(6) .voice-img img {
    margin-top: -23px;
    margin-bottom: 10px;
  }
  .voice .voice-item:nth-child(7) .voice-img img {
    margin-top: -18px;
    margin-bottom: -5px;
  }
  .voice .voice-item:nth-child(8) .voice-img img {
    margin-top: -5px;
    margin-bottom: 0;
  }
  .check-list {
    padding: 0 20px;
  }
  .check-item {
    font-size: 1rem;
    padding-left: 24px;
    background-size: 16px 16px;
    background-position: 0 6px;
  }
  .con-section {
    padding: 0 20px;
  }
  .flow {
    width: calc(100% - 60px);
    margin: 0 30px 8px;
  }
  .arrow {
    margin-top: -10px;
  }
  .flow-textarea {
    margin: 40px auto 0;
  }
  .items {
    padding: 0 15px;
  }
  .flow-info {
    padding: 0 50px;
  }
  .answer-txt {
    font-size: 1.15rem;
    line-height: 1.2;
    padding: 20px 0 10px;
  }
  .section-title {
    padding: 0 20px;
  }
  .section-title {
    padding: 0 30px;
  }
  .price-list {
    padding: 0 30px;
  }
  .note {
    padding: 0 30px;
  }
  .qa {
    width: 350px;
    margin: 0 auto 20px;
  }
  .answer {
    min-height: 50px;
    width: 350px;
    padding: 10px 5px 10px 0;
  }
  .toggle_contents {
    display: none;
    padding: 0 15px 20px;
    font-size: 0.9rem;
  }
  .footer {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 407px) {
  main {
    margin-bottom: 100px;
  }
  .card {
    width: 200px;
    max-width: 32%;
  }
  .card-text {
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .footer {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 375px) {
  main {
    margin-bottom: 210px;
  }
  .cards {
    padding: 15px 0 0;
    gap: 5px;
  }
  .card-text {
    font-size: 1rem;
    line-height: 1.3;
  }
  .headline {
    font-size: 1rem;
    line-height: 1.2;
  }
  .rec-text {
    padding-bottom: 15px;
  }
  .item {
    width: 300px;
  }
  .cta-main {
    width: 100%;
    padding: 18px 4px;
    border: solid 8px #019999;
  }
  .cta-ttl {
    font-size: 1.05rem;
  }
  .cta-sub {
    padding-top: 4px;
    font-size: 1rem;
  }
  .cta-pet img {
    margin: 20px;
    width: 120px;
  }
  .cta-tel {
    font-size: 1.4rem;
  }
  .cta-phon {
    font-size: 2.3rem;
  }
  .cta-txt {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .cta-rec-ttl {
    padding-top: 15px;
  }
  .con-img img {
    width: 60%;
  }
  .message-txt {
    padding: 15px 0;
    max-width: 88%;
  }
  .flow {
    width: calc(100% - 40px);
    margin: 0 20px 10px;
  }
  .flow-title {
    line-height: 1.5;
  }
  .flow-info {
    padding: 0 40px;
  }
  .sp_no {
    display: inline;
  }
  .qa {
    width: 280px;
    margin: 0 auto 20px;
  }
  .answer {
    min-height: 50px;
    width: 280px;
    padding: 10px 5px 10px 0;
  }
  .footer {
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media screen and (max-width: 320px) {
  main {
    margin-bottom: 190px;
  }
  .cards {
    padding: 15px 0 0;
    gap: 3px;
  }
  .card-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .block-title {
    font-size: 1.1rem;
    letter-spacing: 0em;
    font-weight: bold;
  }
  .sub {
    font-size: 1rem;
  }
  .rec-text {
    font-size: 1rem;
  }
  .section-title {
    padding: 0 15px;
  }
  .flow-info {
    padding: 0 30px;
  }
  .price-list {
    padding: 0 15px;
  }
  .footer {
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}