@charset "UTF-8";
/* @import "minima"; */ /* Minimaテーマのインポートを無効化 */
/* 基本的なリセットCSS */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0.5em 0;
}

a {
  color: #DB7093;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #FFB6C1;
}

/* 新しいシンプルなヘッダースタイル */
/* カスタムスタイル */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
  color: white;
  padding: 1rem 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

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

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

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

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #F8BBD9 0%, #FFB6C1 100%);
  box-shadow: 0 2px 5px rgba(248, 187, 217, 0.3);
  z-index: 1000;
}

.nav.active {
  display: flex;
  flex-direction: column;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: background-color 0.2s;
}

.nav a:last-child {
  border-bottom: none;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  .logo a {
    font-size: 1.3rem;
  }
  .hamburger {
    width: 26px;
    height: 20px;
  }
}
/* 記事スタイル */
.post {
  max-width: 800px;
  margin: 2rem auto;
}
.post .post-header {
  margin-bottom: 2rem;
}
.post .post-header .post-title {
  color: #333;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.post .post-header .post-meta {
  color: #666;
  font-size: 0.9rem;
}
.post .post-header .post-tags {
  margin-top: 0.5rem;
}
.post .post-header .post-tags .tag {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}
.post .post-content {
  line-height: 1.8;
}
.post .post-content h1, .post .post-content h2, .post .post-content h3, .post .post-content h4 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post .post-content h2 {
  border-bottom: 2px solid #FFB6C1;
  padding-bottom: 0.3rem;
}
.post .post-content h3 {
  color: #DB7093;
}
.post .post-content ul, .post .post-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.post .post-content li {
  margin-bottom: 0.5rem;
}

/* CTAセクション - 表示して色修正 */
.cta-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #333 !important;
  background-color: #f8f9fa !important;
  padding: 1rem !important;
  margin: 1rem 0 !important;
  border-radius: 5px !important;
}

.cta-section h3 {
  color: #DB7093 !important;
  margin-top: 0 !important;
  display: block !important;
}

.cta-section p {
  color: #333 !important;
  margin: 1rem 0 !important;
  display: block !important;
}

.cta-section strong {
  color: #333 !important;
  font-weight: bold !important;
}

.cta-button {
  display: inline-block !important;
  background: linear-gradient(45deg, #FFB6C1, #F8BBD9) !important;
  color: white !important;
  padding: 1rem 2rem !important;
  text-decoration: none !important;
  border-radius: 25px !important;
  font-weight: bold !important;
  margin-top: 1rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.cta-button:hover {
  background: linear-gradient(45deg, #F8BBD9, #DDA0DD) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4) !important;
}

/* フッター */
.site-footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.site-footer .container {
  text-align: center;
  max-width: 800px;
}
.site-footer h3, .site-footer h4 {
  color: #FFB6C1;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.site-footer a {
  color: #FFB6C1;
  text-decoration: none;
}
.site-footer a:hover {
  color: #F8BBD9;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.site-footer .footer-logo {
  color: #FFB6C1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.site-footer .footer-logo:hover {
  color: #FFC0CB;
  text-decoration: none;
}

/* 関連記事 */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.related-posts h3 {
  color: #DB7093;
}
.related-posts ul {
  list-style: none;
  padding: 0;
}
.related-posts li {
  margin-bottom: 0.5rem;
}
.related-posts li a {
  color: #333;
  text-decoration: none;
}
.related-posts li a:hover {
  color: #DB7093;
  text-decoration: underline;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}
/* モバイル対応 */
@media (max-width: 768px) {
  .post .post-title {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 10px;
  }
  .cta-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .post {
    margin: 1rem auto;
  }
}

/*# sourceMappingURL=style.css.map */