/* リセット & ベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.6;
  color: #663c00;
  background-color: #fff9e6;
  overflow-x: hidden;
}

img {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  background-color: transparent;
}

.nav-bar {
  background-color: #fdf8eb;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 2vw 8px 8vw;
}

.logo {
  font-size: 24px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.logo-img {
  height: 140px;
  width: auto;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #663c00;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #663c00;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s, border-bottom-color 0.3s;
  border-bottom: 2px solid rgba(255, 140, 66, 0);
}

.nav-links a:hover {
  border-bottom-color: #ff8c42;
}

.nav-links a.nav-cta-button {
  background-color: #ff8c42;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
  border-bottom: none !important;
}

.nav-links a.nav-cta-button:hover {
  background-color: #ff6b1f;
  color: white !important;
}

.hero-banner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* セクション共通 */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-icon-img {
  width: 100px;
  height: auto;
  vertical-align: middle;
}

.section-subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: #666;
}

/* 私たちの取り組み */
.initiatives-section {
  background-color: #fdf8eb;
  padding: 0;
  position: relative;
}

.initiatives-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.initiatives-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.initiatives-img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.initiatives-text {
  flex: 1;
  padding-left: 20px;
}

.initiatives-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
}

.initiatives-cat-icon {
  width: 100px;
  height: auto;
  position: absolute;
  top: -25px;
  left: 0;
}

.initiatives-title {
  font-size: 36px;
  color: #ff8f06;
  font-weight: 700;
  margin: 0;
  padding-top: 20px;
}

.initiatives-description {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 30px;
}

.initiatives-signature {
  text-align: right;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.signature-label {
  font-size: 18px;
}

.signature-name-wrapper {
  position: relative;
  display: inline-block;
}

.signature-ruby {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
}

.signature-name {
  display: inline-block;
}

/* こんなお悩みありませんか？ */
.problems-section {
  background-color: #e8f5e9;
  background-image: linear-gradient(rgba(255, 140, 66, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 140, 66, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 55% 95%, 50% 100%, 45% 95%, 0 95%);
  padding: 80px 0 120px;
}

.problems-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.problems-section .section-title {
  color: #7c9f00;
  font-weight: 700;
  border-bottom: 2px solid #7c9f00;
  padding-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  font-size: 36px;
}

.problems-section .title-icon-img {
  width: 60px;
  height: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 0;
  justify-items: center;
  width: 100%;
  position: relative;
}

.problem-card {
  background: white;
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.solution-card {
  background: white;
  padding: 40px 35px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.service-bottom-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
}

.no-decoration {
  color: #5d4037;
}

.card-icon-img {
  width: 100px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.problem-card p {
  font-size: 20px;
  color: #5d4037;
  line-height: 1.8;
  font-weight: 600;
}

.solution-heading-line {
  font-size: 28px;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 1.5rem;
}

.solution-heading-highlight {
  color: #d2691e;
  background: linear-gradient(to bottom, transparent 70%, rgba(255, 255, 200, 1) 30%);
  padding: 4px 6px;
  border-radius: 3px;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.solution-card-text {
  font-size: 24px;
  color: #5d4037;
}

.problem-card .highlight {
  background-color: #fff9c4;
  padding: 2px 4px;
  border-radius: 3px;
}

/* 私たちにお任せください！ */
.solutions-section {
  background-color: #fff9e6;
  position: relative;
  padding-bottom: 0;
}

.solutions-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.solutions-paw-prints {
  display: flex;
  justify-content: center;
}

.paw-print {
  width: 100px;
  height: auto;
}

.solutions-title {
  font-size: 42px;
  font-weight: 700;
  color: #5d4037;
  margin: 0;
  display: inline-block;
}

.solutions-cat-peek {
  position: absolute;
  top: -22px;
  right: 2%;
  width: 100px;
  height: auto;
  z-index: 1;
}

.cta-button-container {
  text-align: center;
  margin-top: 80px;
  position: relative;
  padding-bottom: 40px;
}

.cta-button-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -36%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #ff8c42;
}

.flow-section .cta-button-container {
  margin-top: 0;
  padding-bottom: 0;
  transform: translateY(-240px);
}

.flow-section .cta-button-container::after {
  display: none;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 36px;
  font-weight: bold;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.cta-button-no-hover {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ff8c42;
  padding: 18px 20px;
  border-radius: 100px;
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.cta-button.orange {
  background-color: #ff8c42;
}

.cta-button.green {
  background-color: #90ee90;
  color: #333;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.cat-dog-illustration {
  max-width: 800px;
  margin: 4rem auto;
  position: relative;
  z-index: 10;
}

/* ニャンコの手 */
.wave-top-img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}

.nyanko-section {
  background-color: #fffef3;
  position: relative;
  margin-top: -1px;
  z-index: 0;
}

.nyanko-section .section-title {
  color: #ff8c42;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.nyanko-section .section-subtitle {
  color: #ff8c42;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 10%;
  position: relative;
}

.service-cards-grid.large-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: #ffe7ac;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: 4px solid white;
  outline-offset: -10px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 15px;
  margin-top: 0;
  align-self: flex-start;
}

.service-card-heading {
  font-size: 36px;
  color: #5d4037;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  color: #5d4037;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.service-description {
  font-size: 36px;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  padding-left: 0;
  font-size: 36px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.service-features li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #5d4037;
  margin-right: 10px;
  flex-shrink: 0;
}

.service-features-two-column {
  max-width: 300px;
}

.service-features-two-column li {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

.peace-of-mind-wrapper {
  margin: 0 auto 40px auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #ff8c42;
}

.peace-of-mind-cat-icon {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: block;
  transform: translateY(10%);
}

.peace-of-mind-banner {
  width: 100%;
  background-color: #ff8c42;
  padding: 15px 30px;
  display: inline-block;
}

.peace-of-mind-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.peace-of-mind-box {
  padding: 40px;
  border-radius: 15px;
  margin: 0;
  color: white;
}

.peace-of-mind-box.white-box {
  background-color: white;
  color: #5d4037;
}

.peace-of-mind-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}

.peace-of-mind-list li {
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  color: #5d4037;
  padding-left: 50px;
  position: relative;
}

.peace-of-mind-list li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #ff8c42;
  color: white;
  border: 2px solid #ff8c42;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.peace-of-mind-box ul {
  list-style: none;
  font-size: 18px;
  line-height: 2;
}

.peace-of-mind-box li {
  margin-bottom: 10px;
}

/* ワンコの手 */

.wanko-section .container {
  border: 4px dashed #7c9f00;
  padding: 40px;
  border-radius: 15px;
  margin: 0 auto;
  color: #7c9f00;
  background-color: #fbf2e1;
}

.wanko-section {
  background-color: #fffef3;
  position: relative;
  margin-top: -1px;
  z-index: 0;
}

.wanko-section .section-title {
  color: #7c9f00;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.wanko-section .section-subtitle {
  color: #7c9f00;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.wanko-peace-of-mind {
  border: 2px solid #7c9f00;
}

.wanko-banner {
  background-color: #7c9f00;
}

.wanko-list li::before {
  background-color: #7c9f00;
  border: 2px solid #7c9f00;
}

.wanko-service-card {
  background: #7c9f00;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: 4px solid #fff;
  outline-offset: -10px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.wanko-service-card:hover {
  transform: translateY(-5px);
}

.wanko-service-card .service-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 0;
  margin-top: 0;
  align-self: flex-start;
  border-radius: 0;
  display: block;
}

.wanko-caption-box {
  background-color: #7c9f00;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  min-height: 125px;
  display: grid;
  place-content: center;
}

.wanko-caption {
  font-size: 36px;
  color: white;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.wanko-subcaption {
  font-size: 24px;
  color: white;
  padding: 0;
  font-weight: 400;
}

/* サービス比較表 */
.comparison-section {
  background-color: #fff9e6;
}

.comparison-title {
  font-size: 36px;
  text-align: center;
  color: #333;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding: 20px 0;
}

.comparison-title::before,
.comparison-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #333;
}

.comparison-title::before {
  top: 0;
}

.comparison-title::after {
  bottom: 0;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #fff;
  border-right: 4px solid #fff;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

.comparison-table th.category-header {
  background-color: #333;
  color: white;
  font-weight: bold;
}

th.category-header:first-child {
  background-color: #fff9e6;
}

.comparison-table td.category-cell {
  background-color: #333;
  color: white;
  font-weight: bold;
  text-align: right;
}

.comparison-table th.orange-header {
  font-size: 2rem;
  background-color: #ff8c42;
  color: white;
  font-weight: bold;
  border-bottom: 4px solid #fff;
}

.comparison-table th.green-header {
  font-size: 2rem;
  background-color: #7c9f00;
  color: white;
  font-weight: bold;
  border-bottom: 4px solid #fff;
}

.comparison-table td.nyanko-cell {
  background-color: #ffe7ac;
  color: #333;
}

.comparison-table td.wanko-cell {
  background-color: #e8f5e9;
  color: #333;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* 選ばれる理由 */
.reasons-section {
  background-color: #fff9e6;
}

.reason-title-container {
  text-align: center;
  margin-bottom: 50px;
}

.reason-ribbon-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* サービス開始までの流れ */
.flow-section {
  padding: 0;
  margin: 0;
  margin-top: -24%;
}

.flow-container {
  margin: 0 auto;
}

/* お客様の声 */
.testimonials-section {
  background-color: #fff9e6;
}

.testimonials-title {
  font-size: 36px;
  text-align: center;
  color: #333;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding: 20px 0;
}

.testimonial-heading {
  font-size: 36px;
  color: #7c9f00;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-text {
  line-height: 1.8;
  color: #555;
  flex: 1;
}

/* 寄り添い、支え、安心を届ける */
.values-section {
  padding: 0;
}

/* お問い合わせフォーム */
.contact-section {
  background-color: #fff9e6;
  padding: 80px 0;
}

.contact-instruction {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  color: #666;
}

.form-message {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* モーダルオーバーレイ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.modal-content {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 40px 60px;
  border-radius: 15px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.required-badge {
  background-color: #7c9f00;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
  font-weight: 400;
}

.optional-badge {
  background-color: #e0e0e0;
  color: #666;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8c42;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.privacy-link {
  color: #ff8c42;
  text-decoration: underline;
  margin-left: 5px;
}

.privacy-link:hover {
  color: #ff6b1f;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background-color: #7c9f00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 20px;
}

.submit-button:hover {
  background-color: #6fb600;
  transform: translateY(-2px);
}

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.recaptcha-notice {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: #999;
  text-decoration: underline;
}

.recaptcha-notice a:hover {
  color: #666;
}

/* フッター */
.footer {
  background-color: #fdf8ec;
  color: #5d4037;
  padding: 30px 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-logo {
  text-align: left;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.footer-logo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #5d4037;
}

.footer-nav a {
  color: #5d4037;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 20px;
  font-weight: bold;
}

.footer-nav a:hover {
  color: #7c9f00;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
  color: #5d4037;
  text-align: left;
}

.footer-company-name {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
  color: #5d4037;
}

.footer-address {
  margin-bottom: 15px;
  color: #5d4037;
  line-height: 1.8;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.footer-address:hover {
  opacity: 0.7;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #5d4037;
}

.footer-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5d4037;
  text-decoration: none !important;
  transition: opacity 0.3s;
}

a.footer-phone-link,
a.footer-phone-link:link,
a.footer-phone-link:visited,
a.footer-phone-link:hover,
a.footer-phone-link:active,
a.footer-phone-link:focus {
  color: #5d4037;
  text-decoration: none !important;
  font-size: 24px;
}

.footer-phone-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.footer-phone-link:active {
  opacity: 0.6;
  text-decoration: none !important;
}

.phone-icon {
  font-size: 20px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(93, 64, 55, 0.2);
  margin-top: 30px;
}

.footer-copyright p {
  font-size: 14px;
  color: rgba(93, 64, 55, 0.8);
}

/* レスポンシブデザイン */
@media (max-width: 900px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fdf8eb;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }

  .nav-links a.nav-cta-button {
    text-align: center;
    margin-top: 20px;
  }

  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .initiatives-content {
    flex-direction: column;
    align-items: center;
    padding: 40px 8px;
    gap: 30px;
  }

  .initiatives-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .initiatives-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 300px;
  }

  .initiatives-cat-icon {
  }

  .initiatives-text {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .initiatives-title-wrapper {
    justify-content: center;
  }

  .initiatives-title {
    font-size: 24px;
  }

  .initiatives-description {
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
    letter-spacing: 0.02em;
  }

  .initiatives-signature {
    text-align: center;
  }

  .problems-section .container {
    padding: 40px 20px;
  }

  .problems-section {
    padding: 60px 0 100px;
  }

  .problems-section .section-title {
    font-size: 24px;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 10px;
  }

  .problems-section .title-icon-img {
    width: 50px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .problem-card,
  .solution-card {
    padding: 25px 20px;
    text-align: center;
  }

  .problem-card p,
  .solution-card p {
    font-size: 20px;
    line-height: 1.8;
  }

  .card-icon-img {
    width: 80px;
    margin-bottom: 20px;
  }

  .peace-of-mind-box {
    padding: 8px;
  }

  .solutions-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -60px;
  }

  .solutions-title {
    font-size: 24px;
  }

  .solutions-cat-peek {
    position: relative;
    width: 200px;
    top: 80px;
    right: 0;
  }

  .solution-heading-highlight {
    font-size: 20px;
  }

  .solution-heading-line {
    font-size: 24px;
  }

  .solution-card-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .solutions-section {
    padding-bottom: 0 !important;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-cards-grid.large-grid {
    grid-template-columns: 1fr;
  }

  .flow-section .cta-button-container {
    transform: translateY(-40px);
  }

  .nyanko-section {
  }

  .wave-top-img {
    margin-top: -60px;
  }

  .logo-img {
    height: 80px;
  }

  .nav-bar {
    padding: 4px 20px;
  }

  .section {
    padding: 20px 0;
  }

  .container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-nav {
    display: none;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo-img {
    max-width: 150px;
    margin: 0 auto;
  }

  .footer-info {
    text-align: center;
  }

  .section-title {
    font-size: 24px;
    flex-direction: column;
    gap: 10px;
  }

  .title-icon-img {
    width: 100px;
  }

  .peace-of-mind-banner {
    padding: 15px 4px;
  }

  .testimonials-title {
    font-size: 21px;
    padding: 15px 0;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .testimonial-avatar-img {
    width: 180px;
    height: 180px;
  }

  .testimonial-content {
    width: 100%;
  }

  .testimonial-heading {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .testimonial-source {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 20px;
    line-height: 1.8;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }

  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table table {
    font-size: 16px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }

  .comparison-title {
    font-size: 24px;
    padding: 15px 0;
  }

  .comparison-title::before,
  .comparison-title::after {
    width: 80%;
    max-width: 250px;
  }

  .comparison-table th.orange-header,
  .comparison-table th.green-header {
    font-size: 18px;
  }

  .wanko-section .container {
    padding: 20px;
  }

  .wanko-service-card {
    margin-bottom: 20px;
  }

  .wanko-caption-box {
    min-height: 100px;
    padding: 12px 15px;
  }

  .wanko-caption {
    font-size: 28px;
  }

  .wanko-subcaption {
    font-size: 20px;
  }

  .service-card {
    padding: 15px;
  }

  .service-img {
    height: 250px;
    margin-bottom: 15px;
  }

  .service-card-heading {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .service-features {
    gap: 8px 15px;
  }

  .service-features li {
    font-size: 20px;
  }

  .service-description {
    font-size: 20px;
    line-height: 1.8;
  }

  .peace-of-mind-wrapper {
    margin: 30px auto;
  }

  .peace-of-mind-title {
    font-size: 24px;
  }

  .peace-of-mind-cat-icon {
    transform: translateY(34%);
  }

  .peace-of-mind-list {
    max-width: 100%;
  }

  .peace-of-mind-list li {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 15px;
  }

  .peace-of-mind-list li::before {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .cta-button-no-hover {
    font-size: 24px;
    padding: 12px 20px;
    line-height: 1.5;
  }

  .nyanko-section .section-title {
    font-size: 48px;
    flex-direction: column;
    gap: 10px;
  }

  .nyanko-section .section-subtitle {
    font-size: 18px;
  }

  .wanko-section .section-title {
    font-size: 48px;
    flex-direction: column;
    gap: 10px;
  }

  .wanko-section .section-subtitle {
    font-size: 20px;
  }

  .flow-section {
    overflow: hidden;
  }

  .flow-container {
    overflow: hidden;
  }

  img.flow-icon {
    transform: scale(1.2);
    transform-origin: center center;
    max-width: 100%;
    width: 100%;
  }

  .values-section {
    overflow: hidden;
  }

  img.values-section-img {
    transform: scale(1.3);
    transform-origin: center center;
    max-width: 100%;
    width: 100%;
  }

  .modal-content {
    padding: 30px 40px;
    font-size: 18px;
    max-width: 90%;
    margin: 0 20px;
  }

  .footer {
    padding: 20px;
  }

  .footer-phone {
    justify-content: center;
    font-size: 30px;
  }

  .comparison-section .container {
    padding: 20px 0 !important;
  }

  .comparison-table td.category-cell {
    text-align: center;
    width: 80px;
  }

  .comparison-table td.nyanko-cell {
    text-align: center;
    padding: 8px;
    font-size: 12px;
  }

  .comparison-table td.wanko-cell {
    text-align: center;
    padding: 8px;
    font-size: 12px;
  }
}

/* reCAPTCHA v3バッジを非表示（Google公式認証済み） */
.grecaptcha-badge {
  visibility: hidden;
}
