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



/**************************************************
 * コンテンツ部分の上部に余白
 **************************************************/

.content {
	margin-top: 110px;
}



/**************************************************
 * コンテンツ部分の丸み
 **************************************************/

.no-sidebar .content .main {
	border-radius: 18px;
}



/**************************************************
 * ページの表示をふわっとさせる
 **************************************************/

body {
	animation: pageFade 2s ease forwards;
}
@keyframes pageFade{
	from{	opacity:0;	}
	to{		opacity:1;	}
}



/**************************************************
 * ページ内リンクをなめらかに
 **************************************************/

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

