/* =================================
   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: 25px 0 30px;
}

.site-header .header-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

.logo-desc {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 70px;
  margin-right: 10px;
}

.logo-text {
  height: 55px;
}

/* インスタ */

.insta-block {
  margin-top: 10px;
}

.insta-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.insta-text {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.8;
  padding: 6px 8px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  text-align: center;
}

.insta-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.header-instagram img {
  width: 55px;
  display: block;
}

.insta-id {
  color: #fff;
  font-size: 0.7rem;
  margin-top: 10px;
}


.header-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  justify-content: center;
  gap: 90px;
  padding-left: 0;
  list-style: none;
  display: flex;
  padding-left: 0;
  list-style: none;
  margin: 15px 0 0 0;
}

.header-nav li a {
  color: #1498b4;
  background: #fff;
  padding: 6px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  white-space: nowrap;
  letter-spacing: 0.03rem;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
}

.header-nav li a:hover {
  background: #1498b4;
  color: #fff;
  border-color: #fff;
}


.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
}


.sp-nav {
  display: none;
}

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

.footer-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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;
}

.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;
  padding: 0;
  overflow: hidden;
}


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

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



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


.hero-inner {
  display: flex;
  align-items: stretch;
}

.hero-info {
  width: 30%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  justify-content: space-between;
  /* ← ここが重要 */
  padding-top: 40px;
}

.adopt-status {
  width: 100%;
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}




.status-title {
  font-size: 1.4rem;
  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 {
  width: 100%;
  padding: 20px 0;
  background: #0ea1b4;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.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;
  gap: 10px;
}


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


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


.contact-name {
  margin-top: 4px;
  color: #fff;
  font-size: 1rem;
}


.about-block {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.about-inner {
  width: 90%;
  max-width: 1100px;
  background: #fff;
  border: 4px solid #0ea1b4;
  border-radius: 30px;
  padding: 40px 50px;
  display: flex;
  gap: 40px;
  align-items: center;
}


.about-photo img {
  width: 380px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}


.about-text {
  flex: 1;
  color: #444;
  line-height: 1.8;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0ea1b4;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 1px;
}

.paw-icon {
  width: 50px;
  height: auto;
}


.about-text p {
  margin-bottom: 16px;
}


.support-block {
  padding-top: 30px;
  padding-bottom: 0px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 800px;
  background-color: #0ea1b4;
}


.support-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.support-title2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0ea1b4;
  text-align: center;
}

.paw-icon {
  width: 40px;
  vertical-align: middle;
  margin-right: 10px;
}


.support-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}


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


.support-card-title {
  font-size: 1.6rem;
  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 {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-630px);
  z-index: 2;
  pointer-events: none;
}

.support-cat-img {
  width: 250px;
  display: block;
}

/* 吹き出しの画像の位置を調整 */
.support-cat-balloon {
  position: absolute;
  left: -65px;
  top: -100px;
  width: 220px;
  z-index: 3;
}

.about-area,
.rule-area,
.cats-area {
  color: #0ea1b4;
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}

.about-akatsukinyanko {
  text-align: center;
  line-height: 2.3rem;
  ;
  margin-bottom: 40px;
}

.about-tnr {
  width: 70%;
  background-color: #0ea1b4;
  color: #fff;
  padding: 20px 30px;
  text-align: center;
  margin: auto;
}

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

.about-tnr-text {
  line-height: 1.8rem;
}

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


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

.rule-list ul {
  width: 90%;
  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 {
  width: 70%;
  border-collapse: collapse;
  border: 2px solid #0ea1b4;
  font-size: 0.95rem;
  margin: auto;
}

.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: 80px;
  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: #fff;
  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;
}

.contact-fixed {
  display: none;
}

.satooya-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap: 40px 50px;
  margin-bottom: 20px;

}


.satooya-card {
  display: flex;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #0ea1b4;
  width: 600px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(14, 161, 180, 0.25);
  background: #fff;
  /* 影を綺麗に出すため */
  width: calc(50% - 25px);
  /* 2列 */
  max-width: 600px;
  /* デザイン崩壊防止 */
  flex-wrap: wrap;
}

.cat-appeal {
  padding: 15px;
  border-radius: 10px;
  border: 1.5px solid #0ea1b4;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  width: 100%;              
  box-sizing: border-box;
  height: auto;    
}



.azukari-insta {
  font-size: 0.8rem;
  text-align: right;
}



/* =================================
   CAT TABLE（里親募集 表）
================================= */

.cat-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 14px;
  table-layout: fixed; 
}

.cat-table th,
.cat-table td {
  border: 1px solid #1498b4;
  padding: 6px 10px;
  text-align: center;
  vertical-align: middle;
}

.cat-table th {
  background: #e9f7fb;
  color: #1498b4;
  font-weight: 500;
  width: 25%;
}

.cat-table td {
  background: #fff;
  width: 25%;
}

.cat-select {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 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（里親募集 写真）
================================= */

.cat-slider {
  width: 180px;
  height: 260px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  margin-right: 23px;
}

.cat-slider input {
  display: none;
}

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

.cat-slider .slides img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}


/* スライド切替（3枚共通） */
.cat-slider input:nth-of-type(1):checked~.slides {
  transform: translateX(0);
}

.cat-slider input:nth-of-type(2):checked~.slides {
  transform: translateX(-33.333%);
}

.cat-slider input:nth-of-type(3):checked~.slides {
  transform: translateX(-66.666%);
}
/* =========================
   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: 6px;
  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;
  background: #0ea1b4;
  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;
}

/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 900px) {

  .cat-slider .dots {
    bottom: 6px;
  }

  .cat-slider::after {
    font-size: 10px;
    bottom: -14px;
  }
}

.hearingsheet {
  display: flex;
  justify-content: center; 
  align-items: center;     
  padding: 10px;
  font-weight: 600;
  background-color: #0ea1b4;
  border-radius: 5px;
  width: 600px;
  margin-top: 0;          
  margin-bottom: 50px;  
  margin-left: auto; 
  margin-right: auto;   
}


.hearingsheet a {
  color: #fff;
  text-decoration: none;
}

.hearingsheet a:visited {
  color: #fff;
}

/* マウスを乗せた時の動き */
.hearingsheet:hover {
  opacity: 0.8;          /* 少し透明にする */
  cursor: pointer;       /* カーソルを指の形にする */
  transition: 0.3s;      /* 変化をふわっとさせる */
}

/* 念のためaタグ全体をボックスと同じ広さにする（どこを押しても反応するように） */
.hearingsheet a {
  display: block;
  width: 100%;
  text-align: center; /* 2行になった時の中央揃え */
}