@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){
  /*必要ならばここにコードを書く*/
}
@media screen and (max-width: 834px) {
  .logo-image,
  .site-logo-image,
  .header .logo img,
  .header-container .logo img {
    width: 70px !important;
    max-width: 70px !important;
    height: auto !important;
    text-align: center;
  }
}
.sidebar h2,
.sidebar h3,
.widget-sidebar-title,
.sidebar .widget-title {
  font-size: 18px;
  font-weight: 700;
}
.tagline {
    color: #FFF !important;
    background-image: none !important;
}
.side-tag-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.side-tag-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #7aa88b;
  background: #fff;
  border: 1px solid #7aa88b;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.side-tag-box a::before {
  content: "";
  width: 13px;
  height: 10px;
  display: inline-block;
  position: relative;
  border: 2px solid #7aa88b;
  border-left: 2px solid #7aa88b;
  border-radius: 2px 3px 3px 2px;
  transform: rotate(-35deg);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.side-tag-box a::after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  margin-left: 8px;
  background: #fff;
  border: 1px solid #7aa88b;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.side-tag-box a {
  position: relative;
}

.side-tag-box a:hover {
  color: #fff;
  background: #7aa88b;
  border-color: #7aa88b;
  text-decoration: none;
}

.side-tag-box a:hover::before {
  border-color: #fff;
}

.side-tag-box a:hover::after {
  background: #7aa88b;
  border-color: #fff;
}