@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*ポートフォリオのカテゴリタブ*/
.tab-label-group {
	font-size: 20px;
	flex-wrap: wrap;
}
.tab-label-group .tab-label {
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px 10px;
	border-radius: 20px;
	background: none;
	text-align: center;
	color: #3eb370;
	cursor: pointer;
	transition: 0.5s;
}
/*選択時*/
.tab-label-group .tab-label.is-active {
	background-color: #3eb370;
}
/*マウスオーバー時*/
.tab-label-group .tab-label:hover {
	opacity: 0.7;
}
.tab-content-group {
	margin-top: 2px;
	border-top: 2px solid #3eb370;
	border-left: none;
	border-right: none;
	border-bottom: none;
}

/*料金例のカテゴリボタン*/
.wp-block-button__link {
	padding: 15px 10px;
	color: #ffffff;
	transition: 0.5s;
}
/*マウスオーバー時*/
.wp-block-button__link:hover {
	color: #ffffff;
	opacity: 0.7;
}

/*ポートフォリオの画像*/
.tab-content-group .wp-block-column {
	overflow: hidden;
}
.tab-content-group .wp-block-image:hover {
	transform: scale(1.2);
 	transition: 0.5s;
}

/*アクセス*/
.access {
    position: relative;
}
/*SNSへのリンクボタン*/
.sns-btn {
    position: absolute;
    top: 0%;
    left: 35%;
}
.sns-btn img {
	max-width: 30px;
	height: auto;
}
/*SNSへのリンクボタン(メニュー)*/
.sns-btn-menu {
    position: fixed;
	right: 280px;
	top: 300px;
}
.sns-btn-menu img {
	max-width: 30px;
	height: auto;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

/*480px以下*/
@media screen and (max-width: 480px){
	/*必要ならばここにコードを書く*/
	/*SNSへのリンクボタン(メニュー)*/
	.sns-btn-menu {
		position: fixed;
		right: 20px;
		top: 300px;
	}
}

/*YouTube動画の中央配置*/
.video-container {
	margin: 0px auto;
}


/******************************/
/* 2026/04/21 HIRANO */
/* 埋め込み動画の表示サイズの強制 START */
/******************************/
.video50
{
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  height: 50%;
}

/* 2026/04/21 HIRANO */
/* 埋め込み動画の表示サイズの強制 END */