




/* ====== FONT IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ====== GLOBAL FONT SETTINGS ====== */
body, .entry-content, .site-header, .site-footer, .wp-block-button__link, h1, h2, h3, h4, h5, h6, p, a {
  font-family: 'Nanum Gothic', sans-serif;
  font-weight: 800;
  color: #1D3557;  /* ダークブルー */
}
.entry-content p {
	font-size: 16px;
	line-height: 1.8;
}

/* ====== BACKGROUND AND GENERAL COLORS ====== */
body {
  background-color: #FFEBE9;  /* 淡いコーラル */
  animation: pageFadeIn 1s ease forwards;
}

.site-header {
  background-color: #FF6F61;  /* コーラル */
  color: #FFF;
}

.site-footer {
  background-color: #FFC107;  /* レモンイエロー */
  color: #1D3557;
}

.site-header a, .site-footer a {
  color: #FFF;
}

.site-header a:hover, .site-footer a:hover {
  color: #42A5F5;  /* ライトブルー */
}

/* ====== ANIMATIONS ====== */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== HEADINGS ====== */
h2, h3, h4 {
  background-color: #FFEBE9;
  padding: 10px;
  border-left: 5px solid #42A5F5;
  margin-bottom: 15px;
  font-weight: bold;
  animation: fadeInUp 0.6s ease forwards;
}

h2:hover, h3:hover {
  color: #FF4081;
}

/* ====== BUTTONS ====== */
.wp-block-button__link {
  background-color: #FFC107;
  color: #1D3557;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.wp-block-button__link:hover {
  background-color: #FF4081;
  transform: scale(1.1);
}

/* ====== SOCIAL SHARE BUTTONS ====== */
.sassy-social-share a {
  background-color: #42A5F5;
  color: #FFF;
  border-radius: 50px;
  padding: 10px;
  margin: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.sassy-social-share a:hover {
  background-color: #FF4081;
  transform: scale(1.1);
}

/* ====== アイキャッチ画像 ====== */
.wp-post-image {
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.wp-post-image:hover {
  transform: scale(1.05);
}

/* ====== ENTRY CONTENT ====== */
.entry-content {
  background-color: #FFF5F8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease forwards;
}

.entry-content:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

/* ====== SIDEBAR STYLE ====== */
.sidebar {
  width: 350px;
  padding: 20px;
  background-color: #FFF5F8;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
  float: right;
}

/* ====== 自己紹介セクション ====== */
.profile-section {
  background: linear-gradient(135deg, #FF6F61, #FFC107);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #FFF;
	display: flex;
  align-items: center;
  gap: 15px; /* 間隔 */
}

.profile-section h3 {
  margin-bottom: 10px;
}

.profile-section p {
  color: #FFF;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #FFF;
}

/* ====== SNSボタン ====== */
.sns-buttons {
  display: flex;  /* 横並びにする */
  justify-content: center;  /* 中央寄せ */
  gap: 10px;  /* ボタン間のスペース */
  margin-bottom: 20px;
}

.sns-btn {
  background-color: #FF6F61;
  color: #FFF;
  padding: 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s, transform 0.3s;
}

.sns-btn:hover {
  background-color: #FF4081;
  transform: scale(1.1) rotate(5deg) translateY(-3px);
}
.sns-btn img {
  border: 2px solid transparent;  /* デフォルトで透明 */
}

.sns-btn:hover img {
  border: 2px solid #FF4081;  /* ホバー時にピンクボーダー */
}
.sns-btn:hover img {
  filter: brightness(1.1);
}
.sns-btn {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sns-btn:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* ====== 最新記事ウィジェット ====== */
.widget_recent_entries {
  background-color: #FFF5F8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.widget_recent_entries li {
  padding: 15px;
  background-color: #FFEBE9;
	margin-bottom: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
}

.widget_recent_entries li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.widget_recent_entries li img {
  width: 75px !important;
  height: 50px !important;
  border-radius: 50%;
  margin-right: 15px;
	object-fit: cover;
}

.widget_recent_entries li a {
  color: #42A5F5;
	font-weight: bold;
  transition: color 0.3s;
}

.widget_recent_entries li a:hover {
  color: #FF4081;
}

/* ====== グローバルリンクのホバーエフェクト ====== */
a {
  color: #42A5F5;
  position: relative;
  font-weight: bold;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #FF4081;
  transition: width 0.3s;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #FF4081;
}

/* ====== 次回予告セクション ====== */
.next-article {
  background: linear-gradient(135deg, #FF6F61, #FFC107);
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  border-radius: 10px;
  color: #FFF;
  transition: transform 0.3s, box-shadow 0.3s;
}

.next-article:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #FF4081, #FF6F61);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.next-article p {
  font-size: 20px;
  font-weight: bold;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== フッター ===== */
.site-footer .footer-links a {
  color: #FFC107;
  margin: 0 10px;
  font-weight: bold;
}

.site-footer .footer-links a:hover {
  color: #FF4081;
}

.latest-post-link {
  padding: 10px;
  margin-bottom: 15px;
  font-weight: 700;
  animation: fadeInUp 0.6s ease forwards;
}

	.latest-post-link {
  background-color: #FFC107;  /* レモンイエロー */
  color: #1D3557;  /* ダークブルー */
  padding: 10px 20px;
  margin-bottom: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
  transition: background-color 0.3s, transform 0.3s;
}

.latest-post-link:hover {
  background-color: #FF4081;
  color: #FFF;
  transform: scale(1.05);
}

.latest-post-alt2 {
	background-color: rgba(227, 242, 253, 0.8);
	padding: 10px 20px;
  border-radius: 5px;
}



/*===== sidebar category =====*/
.sidebar .sidebar-section {
  background-color: #FFF5F8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-section h3 {
  font-size: 18px;
  color: #FF4081;
  margin-bottom: 10px;
}

.sidebar .sidebar-section ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar .sidebar-section ul li {
  margin-bottom: 8px;
}

.sidebar .sidebar-section ul li a {
  color: #42A5F5;
  text-decoration: underline;
  transition: color 0.3s;
}

.sidebar .sidebar-section ul li a:hover {
  color: #FF4081;
}

/*===== Header Widget Header Buttons =====*/
.header-buttons {
  display: flex;
  gap: 15px;
}

.header-btn {
  background-color: #FF6F61;
  color: #FFF;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.header-btn:hover {
  background-color: #FF4081;
  transform: scale(1.1);
}





/* ====== すべての記事CSS ====== */
.article-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #FFF5F8;
  border-radius: 10px;
}

/* ====== サムネイル画像（figureタグを対象） ====== */
.article-list-item figure.wp-block-image {
  width: 150px;
  height: 100px;
  margin: 0;
  border-radius: 10px;
	box-shadow: 0px 4px 10px
		rgba(0, 0, 0, 0.1);
	transition: transform 0.4s
		ease;
  overflow: hidden;
  flex-shrink: 0;
}
.article-list-item figure.wp-block-image:hover {
	transform: scale(1.05);
}
.article-list-item figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== 記事内容エリア ====== */
.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}
.article-content:hover {
	transform: scale(1.02);
}

/* ====== カテゴリ（.article-category） ====== */
.article-category {
	font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #FF4081;
  font-weight: 500;
  margin-bottom: 2px;
	letter-spacing: 0.5px;
}

/* ====== タイトル（.article-title） ====== */
.article-title {
	font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #1D3557;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.4;
	white-space: nowrap;/*textの折返しを防ぎ1行で表示*/
}
.article-title a {
  text-decoration: none;
  color: #1D3557;
  transition: color 0.3s;
}
.article-title a:hover {
  color: #FF6F61;
}
.wp-block-post-title {
	background-color: transparent !import /*背景色を打消し*/
}

/* ====== 日付（.article-date） ====== */
.article-date {
	font-family: 'Nanum Gothic', sans-serif;
  font-size: 13px;
  color: #999;
}
/*すべての記事CSS*/




/*画面幅768px以下(多くのスマホ)に適用*/
@media screen and (max-width: 768px) {
  body {
    font-size: 100%;
  }

  h1, h2,
  .article-title,
  .article-category,
  .article-date,
  .wp-block-button__link,
  .entry-content,
  .sidebar,
  .profile-section,
  .widget_recent_entries,
  .next-article,
  .site-footer,
  .sns-btn {
    font-size: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .article-title {
    white-space: normal; /* スマホでは折り返しOK */
  }
}

