@charset "UTF-8";
/*
Theme Name: soubi_v01
Theme URL: https://www.kyoto-soubi.com/blog
Description: ソービーズホームページテーマ
Author: PEACE SUCCESS
Version: 1.0.0
*/

/* ベース設定 */
:root {
  --color-primary: #0284c7;
  --color-primary-dark: #0369a1;
  --color-primary-light: #e0f2fe;
  --color-primary-bg: #f0f9ff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --border-radius: 0.375rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ユーティリティクラス */
.text-center {
  text-align: center;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-gray-300);
  color: var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-gray-100);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

/* バッジ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-light {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-gray-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.header-contact {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

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

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ヒーローセクション */
.hero {
  position: relative;
  height: 500px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 89, 133, 0.5), rgba(12, 74, 110, 0.4));
  z-index: 10;
}

.hero-image {
  position: relative;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 32rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 代表者挨拶 */
.greeting {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.section-header p {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--color-text-light);
}

.greeting-content {
  display: grid;
  gap: 2rem;
}

.greeting-image {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.greeting-text blockquote {
  background-color: var(--color-primary-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.greeting-text p {
  color: var(--color-text);
  line-height: 1.7;
}

.greeting-text footer {
  text-align: right;
  margin-top: 1rem;
}

.greeting-title {
  font-weight: 600;
  color: var(--color-primary);
}

.greeting-name {
  font-size: 1.25rem;
  font-weight: 700;
}

/* サービス内容 */
.services {
  padding: 4rem 0;
  background-color: var(--color-primary-bg);
}

.tabs {
  max-width: 64rem;
  margin: 0 auto;
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.tab-btn {
  padding: 0.75rem 1rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--color-gray-200);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-btn:first-child {
  border-top-left-radius: var(--border-radius);
}

.tab-btn:last-child {
  border-top-right-radius: var(--border-radius);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tab-content {
  display: none;
  margin-top: 1.5rem;
}

.tab-content.active {
  display: block;
}

.service-detail {
  display: grid;
  gap: 2rem;
}

.service-image {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.icon-check::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}

/* 当社の強み */
.strengths {
  padding: 4rem 0;
}

.strength-cards {
  display: grid;
  gap: 1.5rem;
}

.strength-card {
  padding: 1.5rem;
  border: 1px solid var(--color-primary-light);
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease;
}

.strength-card:hover {
  border-color: var(--color-primary);
}

.strength-card header {
  margin-bottom: 0.5rem;
}

.strength-card [class^="icon-"] {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.strength-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.strength-card p {
  color: var(--color-text-light);
}

/* 料金表 */
.pricing {
  padding: 4rem 0;
  background-color: var(--color-primary-bg);
}

.price-tables {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.price-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
}

.price-section h3::before,
.price-section h3::after {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 2rem;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

.price-table-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-primary-light);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
}

.price-table td {
  padding: 1rem;
  border-top: 1px solid var(--color-primary-light);
}

.price-table tr {
  background-color: var(--color-white);
  transition: background-color 0.3s ease;
}

.price-table tr:hover {
  background-color: var(--color-primary-bg);
}

.price-table tr.alt-row {
  background-color: rgba(240, 249, 255, 0.5);
}

.price-table tr.alt-row:hover {
  background-color: var(--color-primary-bg);
}

.price {
  font-weight: 600;
}

.time {
  text-align: center;
}

.info-box {
  margin-top: 3rem;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-primary-light);
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

.info-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
}

/* お客様の声 */
.testimonials {
  padding: 4rem 0;
}

.testimonial-cards {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
  border: 1px solid var(--color-primary-light);
  border-radius: var(--border-radius);
}

.testimonial-card header {
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fbbf24;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.customer {
  font-size: 0.875rem;
  color: var(--color-text-light);
}
/* 20250907 追加*/
.owner_mes_eria {
    margin: 10px 0px 10px 10px;
    background-color: #e0f2ff;
    padding: 10px;
}

p.owner_mes {
  font-weight: bold;
}

p.owner_mes_content {
  color: #666;
  font-size: small;
}


/* お問い合わせ */
.contact {
  padding: 4rem 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.contact-method h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  color: var(--color-text);
}

.contact-form-container h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* ブログ・お知らせ */
.blog {
  padding: 4rem 0;
}

.blog-cards {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-image {
  position: relative;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius);
}

.blog-card time {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.blog-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-light);
}

/* 会社概要 */
.company {
  padding: 4rem 0;
  background-color: var(--color-primary-bg);
}

.company-content {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.company-image {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875rem;
  margin: 1rem 0;
}

.detail-item {
  display: grid;
  gap: 0.25rem;
}

.detail-item dt {
  font-weight: 600;
}

.detail-item dd {
  color: var(--color-text-light);
}

/* CTA */
.cta {
  padding: 4rem 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* フッター */
.site-footer {
  background-color: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-white);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright {
  font-size: 0.875rem;
}

/* アイコン */
[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* レスポンシブ対応 */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .header-contact {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hero {
    height: 600px;
  }
  
  .greeting-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .service-detail {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .strength-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .strength-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* 20250810 CSS追加 */
@media (max-width: 767px) {
  .site-header .container {
    height: 4rem;
  }

  .main-nav {
    display: none; /* デフォルトでメニューを非表示にする */
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    z-index: 40;
  }
  
  .main-nav.active {
    display: block; /* .activeクラスが付与されたらメニューを表示する */
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
  }
  
  .main-nav li:last-child a {
    border-bottom: none;
  }

  .header-contact {
    display: none;
  }
}
/* 20250914 コンタクトエリア用　*/
.contact-button {
  /* 見た目の設定 */
  display: inline-block; /* 他の要素と並べつつ、幅や高さを指定できるようにする */
  padding: 12px 24px;   /* ボタンの内側の余白（上下、左右） */
  background-color: #FFF; /* 背景色（爽やかな青） */
  color: #0185c7;             /* 文字色 */
  text-decoration: none;    /* リンクの下線を消す */
  border: none;             /* 枠線を消す */
  border-radius: 8px;       /* 角を丸くする */
  font-size: 16px;          /* 文字の大きさ */
  font-weight: bold;        /* 文字を太くする */
  cursor: pointer;          /* マウスカーソルを指の形にする */
  text-align: center;       /* 文字を中央揃えにする */
  transition: background-color 0.3s; /* 背景色が滑らかに変化するように設定 */
}

/* マウスが乗った時のデザイン */
.contact-button:hover {
  background-color: #d9f4f5; 
}


.banner_eria {
  margin-top: 40px;
}

.banner_eria img {
  max-width: 100%;
  height: auto;
}

