@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){
  /*必要ならばここにコードを書く*/
}

/*グローバルメニュー 文字を太文字にし、背景グラデーション化*/
#navi {
    background: linear-gradient(#999999, #CECECE);
}
/* グローバルメニューにポインタを被せた時の色変化 */ 
.caption-wrap:hover {
    background-color: #dbf4ff;
    color: #4489ff;
}
/* グローバルメニューにポインタを被せた時の色変化(サブ) */ 
.sub-menu li:hover {
    background-color: #dbf4ff;
    *color: #4489ff;
}
/* グローバルメニュー背景の高さ */ 
.navi-in>ul li {
    height: 50px;
    line-height: 50px;
}
/* グローバルメニュー区切り線 */ 
.navi-in>ul{
    list-style-type: none;
    text-align:center;
}
.navi-in>ul li{
    float:left;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}
.navi-in>ul li + li{
    border-left: 0;
    border-right: 1px solid #333;
}

/*固定ページ　日付非表示*/
.post-17 .date-tags,
.post-19 .date-tags,
.post-23 .date-tags,
.post-21 .date-tags {
display: none;
}

/*フッターカスタム*/
/* ボタン全体 */
.footer-contact-btn {
  display: block;
  width: 100%;
  background: #5ec6ff; /* 水色 */
  color: #fff !important; /* 白文字を強制 */
  text-align: center;
  padding: 12px 0;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none !important;
  border: 2px solid #5ec6ff; /* 枠線も水色 */
  box-sizing: border-box;
}

/* ホバー時（PC用） */
.footer-contact-btn:hover {
  opacity: 0.85;
  color: #5ec6ff !important; /* ホバー時 */
}

/* クリック時（active） */
.footer-contact-btn:active {
  background: #fff;        /* 背景を白に */
  color: #5ec6ff !important; /* 文字を水色に */
  border-color: #5ec6ff;   /* 枠線は水色のまま */
}

.check-label {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

/* 右側のとがり */
.check-label {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  line-height: 1.4; /* テキスト高さを安定させる */
}

/* 右側のとがり（三角） */
.check-label {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

/* 右側の尖り（三角） */
.check-label {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

/* 右側の尖り（三角） */
.check-label {
  display: inline-block;
  position: relative;
  padding: 6px 18px 6px 12px;
  background: #007bff;      /* 青 */
  color: #fff;
  font-weight: 700;
  border-radius: 4px 0 0 4px; /* 右側は角丸にしない */
}

/* 右側のとがった部分（三角）だけを出す */
.check-label {
  display: inline-block;
  position: relative;
  padding: 6px 16px 6px 12px;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  border-radius: 4px 0 0 4px; /* 左だけ角丸 */
}

/* 右側の三角だけを作る */
.check-label {
  display: inline-block;
  position: relative;
  background: #007bff;
  color: #fff;
  font-weight: 700;
  padding: 6px 16px 6px 12px;
  line-height: 1.4; /* ← 高さを安定させる */
  border-radius: 4px 0 0 4px;
  height: 32px; /* ← ラベルの高さを固定（重要） */
  box-sizing: border-box;
}

/* 右側の三角（高さをラベルと完全一致させる） */
.check-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;   /* 32px の半分 */
  border-bottom: 16px solid transparent;
  border-left: 12px solid #007bff;
}