@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/



/* Contact Form 7 211226 */
/* 必須マーク */
.must{
	color: #fff;
	margin-right: 10px;
	padding: 6px 10px;
	background: #f58694; /* 背景色 */
	border-radius: 5px;
}

/* 任意マーク */
.free {
	color: #fff;
	margin-right: 10px;
	padding: 6px 10px;
	background: #7fbfff; /* 背景色 */
	border-radius: 5px;
}

/* 項目名を太字にする */
form p {
	font-weight: 600;
}

/* 入力項目を見やすくする */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8; /* 枠線の色 */
	border-radius: 3px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* 必須項目の入力欄を見やすくする */
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	background: #eff1f5; /* 背景色 */
}

/* 送信ボタンを見やすくする */
input.wpcf7-submit {
	width: 50%; /* 好みで60〜80%でもOK */
	height: 60px;
	border-color: #86be83; /* 枠線の色 */
	background: #86be83; /* ボタンの色 */
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	border-radius: 2px;
}
.youok {
	text-align: center;
	color: #0000cd;
}

.fmbutton {
	text-align: center;
}

/* 背景 */
.coform {
	padding: 2em;
	background: #ffffff;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .5);
}

/* エラーメッセージを見やすくする */
.wpcf7-response-output{
	color: red;
	font-weight: 600;
}

/* 211231-h2h3 文字色変更 */
.post_content h3 {
 color:#4c803b;
}
.post_content h4 {
 color:#4c803b;
}

/* 220209-画像ドラッグ＆右クリック禁止 */
img {
pointer-events: none;
}

/* 220418-h1タイトル部分を下から登場させる */
.p-articleHead.c-postTitle {
animation-name: fadein;
animation-duration: 2s;
}

   @keyframes fadein {
   from {
	   opacity: 0;
	   transform: translateY(20px);
   }
   to {
	   opacity: 1;
	   transform: translateY(0);
   }
   }

/* 220607-サチコシリーズの目次上赤文字点滅 */
/* 点滅 */
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
  color:red;
  margin-bottom: 2px; 
}