@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ==========================================
   🌿 Anity Box サイドバープロフィールカード（木漏れ日トーン）
   ========================================== */
.sidebar .anity-profile {
  position: relative;
  background: linear-gradient(135deg, #fdfcfb 0%, #f7f8f2 100%);
  border: 1px solid #e8ede9;
  border-radius: 14px;
  padding: 20px 16px 24px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(180, 190, 180, 0.15);
  overflow: hidden;
}

.sidebar .anity-profile::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 160%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0) 70%);
  transform: rotate(15deg);
  animation: shimmer 8s infinite ease-in-out;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(0) rotate(15deg);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-10px) rotate(17deg);
  }
}

.sidebar .anity-profile img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #c7d4cc;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.sidebar .anity-profile strong {
  display: block;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
  font-family: "Shippori Mincho", "游明朝", serif;
}

.sidebar .anity-profile p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.sidebar .anity-profile a {
  display: inline-block;
  font-size: 0.85rem;
  color: #6b8ca6;
  text-decoration: none;
  border-bottom: 1px dotted #6b8ca6;
  transition: 0.3s;
}

.sidebar .anity-profile a:hover {
  color: #446a82;
  border-bottom-color: #446a82;
}
