@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){
  /*必要ならばここにコードを書く*/
}
add_shortcode('iframe', 'shortcode');
function shortcode($atts, $content=null) {
	extract(shortcode_atts(array(
		'url'      => '',
		'scrolling'      => 'no',
		'width'      => '720',
		'height'      => '480',
		'frameborder'      => '0',
		), $atts));
	if (empty($url)) return '<!-- Iframe: You did not enter a valid URL -->';
	return '<div style="width:100%; padding-top: 75%; position:relative;">
<iframe src="'.$url.'" width="100%" height="100%" max-width="1280px" style="position: absolute; top: 0; left: 0;" scrolling="no" frameborder="0" allowfullscreen></iframe>
</div>';
}