/* =================================
   GLOBAL BASE
================================= */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;

}

/* =================================
   HEADER 共通レイアウト
================================= */

.site-header {
  width: 100%;
  background: #1498b4;
  padding: 5px 0 15px;
}

.site-header .header-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}

/* 1段目：ロゴ＋インスタ */

.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-block {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.logo-desc {
  color: #fff;
  font-size: 0.45rem;
  margin-bottom: 5px;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

.header-logo {
  display: inline-flex;
  /* ← flex をやめる */
  align-items: center;
  gap: 10px;
}

.header-logo img {
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

.logo-icon {
  width: 35px;
  margin-right: 5px;
}

.logo-text {
  width: 60vw;
}

/* インスタ */

.insta-block {
  display: none;
}


.header-nav {
  display: none;
}




.site-footer {
  background: #ffffff;
  padding: 20px;
  border-top: 1px solid #eee;
}

.footer-inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* ← 縦並び */
  align-items: center;
  /* ← 中央寄せ */
  gap: 20px;
}


.footer-logo img {
  width: 260px;
  display: block;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.footer-sns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-sns a img {
  width: 70px;
  display: block;
}

.footer-sns span {
  font-size: 0.7rem;
}


.hero-block {
  width: 100%;
  background: #0ea1b4;
  display: flex;
  flex-direction: column;
  margin: 0;
}


.hero-photo {
  width: 100%;
  position: relative;
  margin: 0;
}

.hero-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
}


.hero-caption {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #fff;
  font-size: 0.5rem;
  line-height: 1.6;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}



.hero-info {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  margin: 0; 
  position: static; 
}


.status-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0ea1b4;
  line-height: 1;
  margin-bottom: 20px;
}

.status-title .cat-icon {
  width: 34px;
  vertical-align: middle;
  margin-right: 6px;
}

.status-title small{
  font-size: 1rem;
}
.status-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
}


.num-box {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}

.num-box .icon-cat {
  width: 60px;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}


.num-box .label {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  font-size: 0.95rem;
  color: #0ea1b4;
  margin: 0;
}


.num-box .count {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  align-self: center;
  font-size: 2.6rem;
  font-weight: 400;
  color: #0ea1b4;
  margin: 0;
}

.num-box .count span {
  font-size: 1.2rem;
  margin-left: 4px;
}




.btn-photo {
  padding: 12px 0;
  width: 80%;
  max-width: 230px;
  margin: 0 auto 10px;
  border-radius: 6px;
  background: #0ea1b4;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
}


.contact-area {
  display: none;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.contact-phone a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}


.contact-phone a:hover {
  color: #fff;
  text-decoration: none;
}


.phone-icon {
  width: 45px;
  height: auto;
}

.contact-name {
  color: #fff;
  font-size: 1rem;
}


.about-block {
  width: 90%;
  background: #fff;
  margin: 0 auto;
  padding: 10px;

}

.about-inner {
  padding: 20px 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ← 横中央 */
  text-align: center;
  /* ← テキストも中央 */
}

.about-photo img {
  width: 90%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  display: block;
  margin: 0 auto;
}

.about-text {
  color: #444;
  line-height: 1.8;
  font-size: 0.9rem;

}

.about-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0ea1b4;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}



.support-block {
  height: auto;
  overflow: visible;
  padding-bottom: 40px;
  padding-top: 10px;
}


.support-block::after {
  display: none;
}

.support-block>.support-title,
.support-block>.support-cards,
.support-block>.support-cat {
  position: relative;
  z-index: 1;
}

.support-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
}

.support-title2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    color: #0ea1b4;
    text-align: center;
 }
.paw-icon {
  width: 40px;
  vertical-align: middle;
  margin-right: 10px;
  height: auto;
}


.support-cards {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.support-card {
  width: 90%;
  background: #fff;
  color: #333;
  padding: 30px 10px;
  border-radius: 20px;
  border: 4px solid #0ea1b4;
  text-align: center;
  margin-bottom: 20px;
}


.support-card-title {
  font-size: 1.4rem;
  color: #0ea1b4;
  font-weight: 700;
  margin: 20px 0;
}


.support-icon img {
  width: 70px;
}

.support-icon2 img {
  width: 115px;
}

.amazon-logo {
  width: 140px;
  display: block;
  margin: 20px auto;

}


.support-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}


.support-notes {
  list-style: none;
  margin-top: 40px;
  text-align: left;
  font-size: 0.9rem;
  padding: 0 35px;
}


.support-notes li {
  margin-bottom: 6px;
}

.support-notes li::before {
  content: "・";
  margin-right: 4px;
}


.support-address {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.support-cat {
  display: none;
}

.support-cat-img {
  display: none;
}

.support-cat-balloon {
  display: none;
}

.about-area,
.rule-area,
.cats-area {
  color: #0ea1b4;
  margin: 0 auto;
  padding: 15px 0;
}

.about-akatsukinyanko {
  text-align: center;
  line-height: 1.6rem;
  margin-bottom: 40px;
  font-size: 0.95rem;

}

.about-tnr {
  background-color: #0ea1b4;
  color: #fff;
  text-align: center;
}

.about-tnr-titile {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-tnr-text {
  line-height: 1.6rem;
  font-size: 0.9rem;
}

.adopt-price {
  font-size: 2.5rem;
  font-weight: 600;
}


.rule-list {
  text-align: center;
  margin-bottom: 50px;
}

.rule-list ul {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.rule-list li {
  margin-bottom: 10px;
}

.adopt-text {
  text-align: center;
  margin: 20px auto;
  line-height: 1.8;
}

.adopt-price {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0ea1b4;
  margin: 20px 0 10px;
}


.adopt-price-info {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 50px;
}


.finance-table {
  border-collapse: collapse;
  border: 2px solid #0ea1b4;
  font-size: 0.95rem;
  margin: auto;
  width: 100%;

}

.finance-table th,
.finance-table td {
  border: 1px solid #0ea1b4;
  padding: 12px 14px;
  text-align: left;
}

.finance-table .year {
  background: #0ea1b4;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.finance-table .side {
  width: 20px;
  text-align: center;
  font-weight: 700;
  color: #0ea1b4;
}

.finance-table .price {
  text-align: right;
  white-space: nowrap;
}

.finance-table .total {
  font-weight: 700;
}

.finance-table .balance {
  font-weight: 700;
  background: #f5fbfc;
}

.finance-table small {
  font-size: 0.8rem;
}

.prev-link {
  margin-top: 20px;
}

.prev-link a {
  color: #0ea1b4;
  font-weight: 700;
  text-decoration: underline;
}

.support-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #0ea1b4;
  transition: all 0.2s ease;
}


.support-card a .amazon-logo {
  display: block;
  width: 200px;
  height: auto;
}


.support-card a:hover {
  background: #f5fbfc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


.support-card a:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.cats-text {
  text-align: center;
  line-height: 2rem;
}

.cats-text a,
.cats-text a:visited,
.cats-text a:hover,
.cats-text a:active {
  color: #0ea1b4;
  text-decoration: none;
}

.cats-text a {
  font-weight: 700;
  text-decoration: underline;
}

/* ===== ハンバーガー表示 ===== */
.hamburger {
  display: block;
  position: absolute;
  top: 25px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin-bottom: 7px;
  border-radius: 2px;
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hamburger::after {
  content: "menu";
  display: block;
  margin-top: 4px;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

/* ===== SPメニュー ===== */
.sp-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: #1498b4;
  z-index: 1000;
  padding-top: 80px;
}

/* チェックONで表示 */
.nav-toggle:checked~.sp-nav {
  left: 0;
}

.sp-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sp-nav li {
  margin: 20px 0;
}

.sp-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

/* メニュー開いてる時はハンバーガーを非表示 */
.nav-toggle:checked~.header-inner .hamburger {
  display: none;
}

/* ===== お見合い受付 追従バナー（SP） ===== */
.contact-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0ea1b4;
  z-index: 999;
  display: block;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
  padding: 15px;

}

.contact-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
}

.contact-fixed-icon {
  width: 32px;
  height: auto;
}

.contact-fixed-text {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: left;
}

.contact-fixed-text strong {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* 追従バナー分の余白 */
body {
  padding-bottom: 70px;
}

/* =================================
   里親募集カード（SP 縦並び）
================================= */

.satooya-cards{
width: 90%;
align-items: center;
justify-content: center;
}

.satooya-card{
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; 
  flex-direction: column;
}


.satooya-photo{
  width: 100%; /* 固定値300pxをやめる */
  margin: 0 auto;
  height: auto;
  text-align: center; 
  margin-bottom: 20px;
}



.cat-table{
  width: 100%;
  font-size: 0.7rem;
  margin-bottom: 10px;
}


.cat-appeal{
  width: 100%;
  max-width: none;   
  height: auto;       
  padding: 12px;
  font-size: 13px;
  box-sizing: border-box; 
}

.azukari-insta{
  font-size: 0.6rem;
  margin-top: 6px;
  font-size: 0.6rem;
  text-align: center;
}
.adopt-status {
  /* position: relative; や top/left/transform は削除するかリセット */
  position: static; 
  top: auto; 
  left: auto;
  transform: none;
  /* 中央寄せは Flexbox や margin: 0 auto; で行います */
}

.cat-select {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.cat-btn {
  width: 260px;
  padding: 30px 20px;
  border-radius: 30px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.cat-btn span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 8px;
}

.cat-btn.kitten {
  background: #fff3e5;
  color: #e67e22;
}

.cat-btn.adult {
  background: #e9f7fb;
  color: #1498b4;
}

.cat-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* =================================
   CAT SLIDER（全枚数対応・iPhone完全版）
================================= */
.cat-slider {
  width: 190px !important;
  height: 260px !important;
  position: relative;
  overflow: hidden;
  margin: 0 auto 25px;
  isolation: isolate; /* iPhoneの表示バグ防止 */
}

.cat-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.cat-slider .slides img {
  width: 190px !important; 
  height: 260px !important;
  object-fit: cover;
  flex-shrink: 0; /* 強制的に横並びを維持 */
  display: block;
}
/* 切替（1枚190pxずつ動かす） */
.cat-slider input:nth-of-type(1):checked ~ .slides { transform: translateX(0); }
.cat-slider input:nth-of-type(2):checked ~ .slides { transform: translateX(-190px); }
.cat-slider input:nth-of-type(3):checked ~ .slides { transform: translateX(-380px); }

/* =========================
   ドット等の調整
========================= */
.cat-slider .dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.cat-slider .dots label {
  width: 18px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cat-slider input:nth-of-type(1):checked ~ .dots label:nth-child(1),
.cat-slider input:nth-of-type(2):checked ~ .dots label:nth-child(2),
.cat-slider input:nth-of-type(3):checked ~ .dots label:nth-child(3) {
  width: 28px;
  background: #0ea1b4;
}

/* ヒント */
.cat-slider::after {
  content: "● ● ● タップで写真切替";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #777;
  white-space: nowrap;
}
/* =========================
   CAT SLIDER ドット改善（CSSのみ）
========================= */

.cat-slider {
  position: relative;
}

/* ドット全体 */
.cat-slider .dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

/* ラベル（ドット本体） */
.cat-slider .dots label {
  width: 18px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* hover */
.cat-slider .dots label:hover {
  background: rgba(14, 161, 180, 0.9);
}

/* アクティブドット */
/* アクティブドットの色の強制上書き */
.cat-slider input:nth-of-type(1):checked ~ .dots label:nth-child(1),
.cat-slider input:nth-of-type(2):checked ~ .dots label:nth-child(2),
.cat-slider input:nth-of-type(3):checked ~ .dots label:nth-child(3) {
  width: 28px !important;
  background: #0ea1b4 !important;
  box-shadow: 0 0 6px rgba(14, 161, 180, 0.6);
}

/* =========================
   「タップして切替」ヒント（CSS疑似要素）
========================= */

.cat-slider::after {
  content: "● ● ● タップで写真切替";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #777;
  white-space: nowrap;
}

.hearingsheet {
  display: flex;
  justify-content: center;
  align-items: center;     /* 縦方向の中央揃え */
  padding: 15px;
  font-weight: 600;
  background-color: #0ea1b4;
  border-radius: 2px;
  width: 85%;
  
  /* 余白の調整 */
  margin: 0 auto 50px;     /* 上0、左右auto(中央寄せ)、下50px */

  /* 折り返された時のテキスト中央揃え */
  text-align: center; 
}

.hearingsheet a {
  color: #fff !important;
  text-decoration: none;
  /* aタグ自体に幅を持たせて、テキストの折り返しを中央にする */
  display: inline-block;
  width: 100%;
}