@charset "UTF-8";
/**
 * GoDog Common Styles (common.scss)
 * 役割：全ページ共通のスタイル基盤を統合・出力
 * コンパイル対象：assets/css/common.css
 */
/**
 * パス: wp-content/plugins/GoDog Area Manager/assets/scss/_variables.scss
 * 役割: プロジェクト全体の共通カラー・タイポグラフィ・シャドウ変数の定義
 */
/**
 * パス: wp-content/plugins/GoDog Area Manager/assets/scss/_variables.scss
 * 役割: プロジェクト全体の共通カラー・タイポグラフィ・シャドウ変数の定義
 */
body {
  background-color: #fcfcfc;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.godog-container, .site-footer .footer-container, .site-header .header-container, .archive-container {
  max-width: 56.25rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.godog-card {
  background: #fff;
  border-radius: 0.9375rem;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

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

h1 {
  font-size: 2rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.25rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.125rem;
  }
}

h3 {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1rem;
  }
}

h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  h4 {
    font-size: 0.9375rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/**
 * Site Header Styles (_header.scss)
 */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.site-header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .header-logo {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}
.site-header .header-logo .logo-link {
  color: #557c32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.site-header .header-logo .logo-link .logo-icon.dashicons {
  font-family: "dashicons" !important;
  font-size: 28px;
  width: 28px;
  height: 28px;
  display: inline-block;
  line-height: 1;
}
.site-header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.site-header .header-nav .nav-link, .site-header .header-nav .nav-btn-outline {
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
.site-header .header-nav .nav-link.nav-login, .site-header .header-nav .nav-login.nav-btn-outline {
  color: #666;
  font-weight: normal;
}
.site-header .header-nav .nav-link:hover, .site-header .header-nav .nav-btn-outline:hover {
  color: #557c32;
}
.site-header .header-nav .nav-btn-outline {
  color: #557c32;
  border: 1px solid #557c32;
  padding: 8px 18px;
  border-radius: 50px;
}
.site-header .header-nav .nav-btn-outline:hover {
  background: #f6f9f2;
  opacity: 1;
}
.site-header .header-nav .nav-btn-solid {
  background: #557c32;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 50px;
  -webkit-box-shadow: 0 4px 10px rgba(85, 124, 50, 0.2);
          box-shadow: 0 4px 10px rgba(85, 124, 50, 0.2);
}
.site-header .header-nav .nav-btn-solid:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 15px rgba(85, 124, 50, 0.3);
          box-shadow: 0 6px 15px rgba(85, 124, 50, 0.3);
}
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  .site-header .header-logo {
    font-size: 20px;
  }
  .site-header .nav-desktop-only {
    display: none;
  }
  .site-header .header-nav {
    gap: 12px;
  }
  .site-header .header-nav .nav-btn-solid {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/**
 * Site Footer Styles (_footer.scss)
 */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}
.site-footer .footer-headline {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 2px solid #557c32;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: bold;
}
.site-footer .footer-about-text {
  font-size: 13px;
  line-height: 1.8;
  color: #bdc3c7;
}
.site-footer .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
}
.site-footer .footer-nav-list a {
  color: #bdc3c7;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.site-footer .footer-nav-list a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer .footer-divider {
  border: 0;
  border-top: 1px solid #3e4f5f;
  margin-bottom: 30px;
}
.site-footer .footer-copy {
  text-align: center;
}
.site-footer .copyright-text {
  font-size: 12px;
  color: #95a5a6;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  .site-footer .footer-grid {
    gap: 30px;
  }
}