@charset "UTF-8";

/* ==========================================================================
   のら猫レスキューかしわ / style.css
   ========================================================================== */

:root {
  --main:        #C67C5C;
  --main-rgb:     198,124,92;
  --light_main:  #F3E4D7;
  --pg_bg:       #EFE3D5;
  --gr_bg:       #FAF6F1;
  --text:        #5B4E43;
  --red:         #C93329;
  --gray:        #DDD0C0;
  --green:       #7A9D6F;
  --white:       #FFFFFF;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- base ---------- */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
               メイリオ, Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .ttl, .logotext, #gNav a, .btn a, .btn button, #navToggle {
  font-family: "Murecho", "Noto Sans JP", sans-serif;
}

p { line-height: 1.9; letter-spacing: 0.03em; text-align: justify; word-break: break-all; }

/* ---------- layout helpers ---------- */
.inner { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.flex { display: flex; align-items: center; }
.center { text-align: center; }
.right { text-align: right; }
.left { text-align: left; }
.nobr { white-space: nowrap; }
.bold { font-weight: 700; }
.block { display: block; }
.small { font-size: 0.85rem; }
.blue { color: var(--main); }
.red { color: var(--red); }
.en { font-family: "Murecho", sans-serif; word-break: break-word; }

.bottom0 { margin-bottom: 0 !important; }
.bottom2rem { margin-bottom: 2rem !important; }

.sp { display: none; }
.pc { display: inline; }

section { padding: 5rem 0; }
section .en.subttl {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--main);
  margin-bottom: 0.4rem;
}

/* h2見出し：下線タイプ */
main h2, section h2 {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin: 0 0 2.4rem;
  padding-bottom: 1.2rem;
}
main h2::before, section h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: var(--main);
}
main h2.cn::before { content: none; padding-bottom: 0; }

h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 1rem; }
h3 i { color: var(--main); margin-right: 0.4rem; }
h3.red i { color: var(--red); }

/* ---------- button ---------- */
.btn { text-align: center; margin: 0 0 1rem; }
.btn a, .btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4rem;
  padding: 0.9rem 2.4rem;
  min-width: 260px;
  background: var(--main);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  border: 2px solid var(--main);
}
.btn a:hover, .btn button:hover { opacity: 0.85; }
.btn.bgline a, .btn.bgline button { background: transparent; color: var(--main); }

.hero_btn { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.4rem; }
.hero_btn .btn { margin: 0; }
.hero_btn .btn.bgline a { background: rgba(255,255,255,0.6); }

/* ---------- header ---------- */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 70px;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--gray);
}
#header .block {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
#header .logo a { display: flex; align-items: center; }
#header .logotext {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#header .logotext img.logoimg { width: 2.4rem; height: 2.4rem; object-fit: contain; }

#header nav { }
ul#gNav {
  display: flex;
  align-items: center;
  gap: 0.2vw;
}
ul#gNav li a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  letter-spacing: 0.02em;
}
ul#gNav li a:hover { color: var(--main); }
ul#gNav li a.cta {
  background: var(--main);
  color: #fff;
  border-radius: 2rem;
  padding: 0.6rem 1.4rem;
  margin-left: 0.4rem;
}
ul#gNav li a.cta:hover { opacity: 0.85; }

#navToggle { display: none; }
.overlay { display: none; }

/* wrapper offset for fixed header */
#wrapper { padding-top: 70px; }
#wrapper.content-page .content main { padding: 3rem 0 4rem; }

/* ---------- mainvisual ---------- */
#mainvisual {
  padding: 5rem 0 4.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(var(--main-rgb),0.12) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(var(--main-rgb),0.14) 0, transparent 45%),
    var(--gr_bg);
}
.catchwrap .en {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--main);
  margin-bottom: 1rem;
  text-align: center;
  background: url(../img/common/logo-white.png) no-repeat center center;
  background-size: contain;
  width: 100%;
  padding:1.4rem 0;
}
.catchwrap h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.catchwrap .logoimg { width: 100px; height: 100px; object-fit: contain; margin: 0 auto 1rem;}
.catchwrap .lead { font-size: 1rem; text-align: center; }

/* ---------- about ---------- */
#about { background: #fff; }
#about .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 3rem;
}
#about .list > li { width: calc(100%/3 - 1.2rem); }
#about .list > li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding:1rem;
  background: var(--gr_bg);
  border-radius: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
#about .list > li a:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(var(--main-rgb),0.16); }
#about .list > li figure { color: var(--main); margin-bottom: 1.2rem; }
#about .list > li h3 { margin-bottom: 0.8rem; }
#about .list > li p { font-size: 0.9rem; text-align: left; }

.areawrap {
  background: var(--light_main);
  border-radius: 1.4rem;
  padding: 2.4rem 1.6rem;
}
.areawrap h3 { justify-content: center; display: flex; align-items: center; }
.area_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
}
.area_list li {
  background: #fff;
  border: 1px solid var(--main);
  color: var(--main);
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.5rem 1.4rem;
  font-size: 0.95rem;
}
.area_list li.other { background: var(--main); color: #fff; border-color: var(--main); }

/* ---------- policy ---------- */
#policy { background: var(--gr_bg); }
.policy_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.6rem;
}
.policy_grid .tile { flex: 1 1 calc(50% - 0.8rem); }

.tile {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.8rem 1.8rem;
  margin: 0 0 1.4rem;
}
.tile.gray { background: var(--gr_bg); }
.tile.white { background: var(--white); }

ul.dot > li { position: relative; padding: 0.2rem 0 0.2rem 1.1rem; line-height: 1.8; }
ul.dot > li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--main);
}
ul.dot.red_dot > li::before { background: var(--red); }

.table_scroll { overflow-x: auto; margin-bottom: 0.6rem; }
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-right: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
table th {
  background: var(--pg_bg);
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  text-align: left;
  font-weight: 700;
  vertical-align: middle;
  padding: 0.9rem 1.1rem;
  width: 34%;
  white-space: nowrap;
}
table td {
  background: rgba(255,255,255,0.6);
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
  padding: 0.9rem 1.1rem;
}

/* ---------- instagram ---------- */
#instagram { background: #fff; }
.insta_embed { max-width: 540px; margin: 0 auto 2rem; }
.insta_embed .tile i { color: var(--main); margin-bottom: 0.8rem; }

/* ---------- adopt ---------- */
#adopt { background: var(--gr_bg); }
#adopt .tile { max-width: 640px; margin: 0 auto; }
#adopt .tile i { color: var(--main); margin-bottom: 1rem; }

/* ---------- faq ---------- */
#faq { background: #fff; }
.faqlist { max-width: 800px; margin: 0 auto; }
.faqitem { border-bottom: 1px solid var(--gray); }
.faqitem .trigger {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 1.3rem 0.4rem;
  font-weight: 700;
  position: relative;
}
.faqitem .trigger::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem; height: 1.8rem;
  border-radius: 0.5rem;
  background: var(--main);
  color: #fff;
  font-size: 0.9rem;
}
.faqitem .trigger::after {
  content: '\f078';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-left: auto;
  color: var(--main);
  transition: transform 0.2s;
}
.faqitem .trigger.on::after { transform: rotate(180deg); }
.faqitem .drawer { display: none; padding: 0 0.4rem 1.4rem 3rem; }
.faqitem .drawer p { font-size: 0.95rem; }

/* ---------- contact ---------- */
#contact { background: var(--gr_bg); }
.contactform { max-width: 720px; margin: 0 auto; }
.contactform dl { margin-bottom: 1.6rem; }
.contactform dt {
  font-weight: 700;
  margin: 1.4rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contactform dt:first-child { margin-top: 0; }
.contactform dt .req, .contactform dt .any {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0.3rem;
  color: #fff;
}
.contactform dt .req { background: var(--red); }
.contactform dt .any { background: var(--gray); color: var(--text); }
.contactform dt.emphasis { color: var(--main); }

.contactform input[type="text"],
.contactform input[type="email"],
.contactform input[type="tel"],
.contactform textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 0.6rem;
  background: #fff;
}
.contactform input:focus, .contactform textarea:focus {
  outline: none;
  border-color: var(--main);
}
.contactform textarea { resize: vertical; }

.contactform .radio { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.contactform .radio label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; }
.contactform input[type="radio"], .contactform input[type="checkbox"] { accent-color: var(--main); width: 1.1rem; height: 1.1rem; }

.contactform .hp { position: absolute; left: -9999px; top: -9999px; }

.contactform .agree { text-align: center; margin: 1.6rem 0; font-size: 0.9rem; }
.contactform .agree a { color: var(--main); text-decoration: underline; }

.contactform button {
  border: none;
}

/* ---------- footer ---------- */
#footer {
  display: flex;
  flex-wrap: wrap;
  background: var(--pg_bg);
  padding: 3.5rem 1.5rem 2rem;
}
#footer > div { width: 50%; }

#fInfo .flogo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
#fInfo .flogo a{display: flex; align-items: center; gap: 0.5rem;}
#fInfo .flogo img.logoimg { width: 2.4rem; height: 2.4rem; object-fit: contain; }
#fInfo p { margin-bottom: 0.6rem; }
#fInfo .sns_bnr { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
#fInfo .sns_bnr a { font-size: 1.6rem; color: var(--main); }

#fNav ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-bottom: 1rem; }
#fNav a.fa_icon { font-size: 0.9rem; position: relative; padding-left: 1.1rem; }
#fNav a.fa_icon::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f054";
  color: var(--main);
  position: absolute;
  left: 0; top: 0.15rem;
  font-size: 0.7rem;
}
#fNav ul.submenu a { font-size: 0.85rem; color: var(--text); text-decoration: underline; }

.copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: var(--text);
}

.backtotop a {
  display: none;
  position: fixed;
  bottom: 1.2rem; right: 1.2rem;
  color: var(--main);
  opacity: 0.6;
  z-index: 400;
}
.backtotop.on a { display: flex; }
.backtotop a:hover { opacity: 1; }

/* ---------- content page (privacy / thanks) ---------- */
main .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 0.8rem; margin-bottom: 2rem; color: var(--text); }
main .breadcrumb li { display: flex; align-items: center; gap: 0.4rem; }
main .breadcrumb a { display: flex; align-items: center; gap: 0.3rem; color: var(--main); }
main .breadcrumb i { font-size: 0.75rem; }

main h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }
main h2.cn { font-size: 1.2rem; text-align: left; margin: 2.2rem 0 0.8rem; padding-bottom: 0; }
main h2.cn::before { content: none; }
#thanks .tile, #privacy .tile { text-align: center; }
#thanks .tile i { margin-bottom: 1rem; }
