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

/*動画ページタイトル調整start*/
.video-title {
    font-size: 23px;
    color: #696969;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}
/*動画ページタイトル調整end*/

.video-poster {
    position: relative;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid #000;
    margin-left: 8px;
}
/*動画ページ_サムネイル上の再生ボタン調整end*/

/*動画ページ_概要欄start*/
.content {
    font-size: 14px;
    color: #696969;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
}
/*動画ページ_概要欄end*/

/*動画ページ_メタ情報start*/
.video-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 15px;
    color: #444;
}
/*動画ページ_メタ情報end*/

/*動画ページ_お気に入り追加ボタンstart*/
.bookmark-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #ff78ad;
    padding: 14px 0;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 700;
    margin: 12px 0 22px 0;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
}

/* アイコン */
.bookmark-btn .icon {
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
}

/* 追加済みのテキスト色 */
.bookmark-btn .status {
    margin-left: 4px;
}
/*動画ページ_お気に入り追加ボタンend*/

/*トップページ 新着動画をすべて見る のリンク関係start*/
.view-all-videos {
  margin-top: 30px;
  text-align: center;
}

.view-all-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;

  padding: 14px 0;
  background: #ff8fb3;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;

  border-radius: 6px;
  border: 1px solid #ff6fa1;

  box-sizing: border-box;
}

.view-all-button:hover {
  background: #ff7aa8;
}
/*トップページ 新着動画をすべて見る のリンク関係end*/