/*
カスタム CSS 機能へようこそ。

使い方についてはこちらをご覧ください
(英語ドキュメンテーション)。http://wp.me/PEmnE-Bt
*/
/* ボタン風リンク */
.container {
  font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
  text-align: center;
  padding-top: 40px;
}


/* PCで電話番号リンクを無効に */
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

strong {
	text-transform: none;
}

.entry-title {
	text-transform: none;
}

.fade_image {
/*変化にかかる時間とタイミング、進行具合を指定*/
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

/*オンマウス時に実行*/
.fade_image:hover {
/*透明度具合を指定*/
	opacity: .4;
	filter: alpha(opacity=80);
}

/* 注意を引きたい時の枠 */
.block_attention {
	padding: 20px;
	border: #008C23 dashed 1px;
	background: #BFFFBF;
}

/* サイト内リンクの紹介*/
.list-box {
	border: 1px solid #eee;
	display: table;
	width: 100%;
}

.list-img,
.list-text {
	display: table-cell;
	vertical-align: top;
	margin: 0;
	padding: 0;
}

.list-img img {
	width: 100px;
	margin: 5px;
}

.liquid {
	padding: 5px;
}

.liquid-col {
	padding: 5px;
	box-sizing: border-box;
	float: left;
	width: 50%;
}

.liquid-col-inner {
/* background: #f3f3f3; */
}

/* 画像に枠をつける */
.img_sumnail {
	width: 150px;
	height: 150px;
	border: 1px solid #cccccc;
	padding: 6px;
}

/* せんきょ割タイトル */
.senkyo_shop_title {
	background: #274a78;
	color: #f8fbf8;
	font-size: 18pt;
	width: 80%;
	border: 2px dashed #f8fbf8;
	border-radius: 5px;
	box-shadow: 0 0 3px 3px #274a78;
	padding: 10px;
}

/* ライター紹介　*/
.writers {
	overflow: hidden;
}

.writer-profile {
	width: 18%;
	min-height: 350px;
	margin: 1%;
	float: left;
}

.writer-profile .name {
	text-align: center;
	font-weight: bold;
	padding: 10px 0;
	margin: 0;
}

.writer-profile .description {
	font-size: .5em;
}

.writer-profile .button a {
	font-size: .8em;
}

.writer-profile .button a:after {
	content: ' >';
}

@media screen and (max-width: 768px) and (min-width: 481px) {
	.liquid-col {
		width: 50%;
	}
}

@media screen and (max-width: 480px) {
	.liquid-col {
		width: 100%;
	}
}