/*
Theme Name: BlankSlate Child
Template: blankslate
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ==========================================================================
変数定義
========================================================================== */
:root {
	--color-primary: #55576c;
	--color-primary-dark: #40414f;
	--color-accent: #6fa896;
	--color-accent-light: #eaf2ef;
	--color-text: #333333;
	--color-text-light: #6b6d78;
	--color-bg: #ffffff;
	--color-bg-alt: #f6f7f8;
	--color-border: #e3e4e9;
	--header-height: 90px;
	--header-height-sp: 64px;
	--font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

/* ==========================================================================
基本設定
========================================================================== */
body {
	font-family: var(--font-base);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--color-primary);
	transition: opacity .2s ease, color .2s ease;
}

a:hover {
	opacity: .7;
}

h1, h2, h3, h4, h5 {
	font-weight: 700;
	color: var(--color-primary);
}

/* アンカーリンクがヘッダーに隠れないようにする */
#servicelink, #servicelink_sp,
#stepLink, #stepLink_sp,
#feeLink, #feeLink_sp,
#areaLink, #areaLink_sp,
#accessLink, #accessLink_sp {
	scroll-margin-top: var(--header-height);
}

.sp{
	display: none;
}
.pc{
	display: block;
}

@media screen and (max-width: 750px) {
	body { font-size: 15px; }
	#servicelink, #servicelink_sp,
	#stepLink, #stepLink_sp,
	#feeLink, #feeLink_sp,
	#areaLink, #areaLink_sp,
	#accessLink, #accessLink_sp {
		scroll-margin-top: var(--header-height-sp);
	}
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}

/* 共通見出し(OUR SERVICE / STEPS / PRICES など) */
.tate_bigSubTitle {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
	color: var(--color-accent);
	margin-bottom: 8px;
}

.tate_serviceHeader,
.tate_stepHeader,
.tate_feeHeader,
.tate_accessHeader {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 50px;
}

.tate_serviceHeaderTitle,
.tate_stepHeaderTitle,
.tate_feeHeaderTitle,
.tate_accessHeaderTitle {
	font-size: 32px;
	margin-bottom: 16px;
	letter-spacing: .05em;
}

@media screen and (max-width: 750px) {
	.tate_serviceHeaderTitle,
	.tate_stepHeaderTitle,
	.tate_feeHeaderTitle,
	.tate_accessHeaderTitle {
		font-size: 24px;
	}
}

/* ==========================================================================
ヘッダー
========================================================================== */
#header {
	position: sticky;
	top: 0;
	z-index: 650;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	padding: 0 32px;
	background: rgba(255,255,255,.96);
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

#header_logo .logo a {
	display: flex;
	align-items: center;
}

#header_logo img {
	max-height: 56px;
	width: auto;
}

/* SP用ロゴは横長比率のため高さを別途調整 */
#header_logo .mobile_logo_image {
	display: none;
	max-height: 34px;
}

#global_menu ul.menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

#global_menu ul.menu li a {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
	padding: 4px 0;
	text-decoration: none;
}

#global_menu ul.menu li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width .25s ease;
}

#global_menu ul.menu li a:hover {
	opacity: 1;
}

#global_menu ul.menu li a:hover::after {
	width: 100%;
}

/* ハンバーガーボタン(モバイル用) */
#menu_button {
	display: none;
	position: relative;
	width: 32px;
	height: 22px;
}

#menu_button span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-primary);
	transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

#menu_button span:nth-child(1) { top: 0; }
#menu_button span:nth-child(2) { top: 10px; }
#menu_button span:nth-child(3) { top: 20px; }

body.drawer_open #menu_button span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.drawer_open #menu_button span:nth-child(2) { opacity: 0; }
body.drawer_open #menu_button span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* SP専用インラインナビは重複表示になるため非表示にし、ドロワーメニューへ集約 */
.spNav {
	display: none;
}

/* ==========================================================================
ドロワーメニュー(モバイル)
========================================================================== */
#drawer_menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(78vw, 320px);
	height: 100%;
	background: var(--color-primary);
	padding: calc(var(--header-height-sp) + 24px) 32px 32px;
	transform: translateX(100%);
	transition: transform .3s ease;
	z-index: 600;
	overflow-y: auto;
}

body.drawer_open #drawer_menu {
	transform: translateX(0);
}

#drawer_menu ul.menu li a {
	display: block;
	padding: 14px 0;
	color: #fff;
	font-size: 15px;
	border-bottom: 1px solid rgba(255,255,255,.15);
}

/* ドロワー展開時の背景オーバーレイ */
body.drawer_open::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.4);
	z-index: 550;
}

@media screen and (max-width: 1024px) {
	#header { padding: 0 20px; }
	#global_menu { display: none; }
	#menu_button { display: block; }
	#header_logo .pc_logo_image { display: none; }
	#header_logo .mobile_logo_image { display: block; }
}

@media screen and (max-width: 750px) {
	:root { --header-height-sp: 60px; }
	#header { height: var(--header-height-sp); }
	#header_logo img { max-height: 40px; }
	#header_logo .mobile_logo_image { max-height: 26px; }

	#fv {
		height: calc(100vh - var(--header-height-sp));
		height: calc(100dvh - var(--header-height-sp));
	}
}

/* ==========================================================================
FV(トップビジュアル)
========================================================================== */
#fv {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: calc(100vh - var(--header-height));
	height: calc(100dvh - var(--header-height));
	/* 万一クロスフェードの隙間ができても白背景が見えないための保険 */
	background: var(--color-primary-dark);
}

.fv_slide {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 0;
	/* 画像4枚 × 6秒間隔 = 24秒で1周 */
	animation: fvFade 24s ease-in-out infinite;
}

.fv_slide:nth-of-type(1) { animation-delay: 0s; }
.fv_slide:nth-of-type(2) { animation-delay: 6s; }
.fv_slide:nth-of-type(3) { animation-delay: 12s; }
.fv_slide:nth-of-type(4) { animation-delay: 18s; }

/*
* 次の画像がフェードインし切ってから(1〜7秒)、
* 今の画像がフェードアウトを始める(8〜9秒)ようにして、
* 常にどこかの画像が不透明な状態を保ち背景が透けないようにする。
*/
@keyframes fvFade {
	0%      { opacity: 0; }
	4.17%   { opacity: 1; }  /* 1秒でフェードイン完了 */
	33.33%  { opacity: 1; }  /* 8秒まで表示を維持(次の画像が7秒でフェードイン完了済み) */
	37.5%   { opacity: 0; }  /* 9秒でフェードアウト完了 */
	100%    { opacity: 0; }
}

.fv_overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .3);
}

.fv_catch {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* padding: 0 24px; */
	padding: 0 5px;
}

.fv_catch p {
	color: #fff;
}

.fv_catch span {
	display: block;
	text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.fv_catch span:first-child {
	font-size: clamp(10.6px, 1.6vw, 16px);
	font-weight: 500;
	letter-spacing: .1em;
	margin-bottom: 16px;
}

.fv_catch span:last-child {
	font-size: clamp(22px, 3.4vw, 38px);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.7;
}

/* ==========================================================================
コンテンツ共通レイアウト
========================================================================== */
#index_content_builder {
	overflow: hidden;
}

.index_free_space {
	padding: 80px 24px;
}

.index_free_space:nth-of-type(even) {
	background: var(--color-bg-alt);
}

@media screen and (max-width: 750px) {
	.index_free_space {
		padding: 48px 20px;
	}
}

.cb_contents_inner {
	max-width: 1080px;
	margin: 0 auto;
}

/* ---- num1: トップキャッチ画像 ---- */
#cb_content_1 .circleInner {
	text-align: center;
}

#cb_content_1 .circleInner img {
	max-width: 850px;
}

/* ==========================================================================
OUR SERVICE (num2)
========================================================================== */
.tate_serviceWrapper .tate_serviceInner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.tate_serviceBox {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 36px 28px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}

.tate_serviceBox:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(85,87,108,.12);
}

.tate_serviceTitle {
	font-size: 19px;
	margin-bottom: 20px;
}

.tate_serviceImg {
	width: 88px;
	height: 88px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent-light);
	border-radius: 50%;
}

.tate_serviceImg img {
	width: 44px;
	height: 44px;
}

.tate_serviceBox p {
	font-size: 14px;
	color: var(--color-text-light);
	text-align: left;
}

.tate_service_last {
	margin-top: 40px;
	text-align: center;
	color: var(--color-text-light);
	font-size: 14px;
}

@media screen and (max-width: 750px) {
	.tate_serviceWrapper .tate_serviceInner {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ==========================================================================
STEPS (num3)
========================================================================== */
#cb_content_3 .circleInner {
	text-align: center;
	margin-bottom: 56px;
}

#cb_content_3 .circleInner img {
	max-width: 720px;
}

.tate_stepContainerFirst {
	max-width: 760px;
	margin: 0 auto 56px;
	padding: 28px 32px;
	background: var(--color-accent-light);
	border-left: 4px solid var(--color-accent);
	border-radius: 8px;
}

.tate_stepSubTitle {
	font-size: 18px;
	margin-bottom: 12px;
}

.tate_seishin_para p {
	font-size: 14px;
	color: var(--color-text-light);
}

.tate_stepContainer:not(.tate_stepContainerFirst) {
	max-width: 760px;
	margin: 0 auto 48px;
}

.tate_stepContainer:not(.tate_stepContainerFirst) > .tate_stepSubTitle {
	text-align: center;
	font-size: 20px;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-border);
}

.tate_stepBox {
	display: flex;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px dashed var(--color-border);
}

.tate_stepBox:last-child {
	border-bottom: none;
}

.tate_stepNumBox {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tate_stepNumBox p {
	font-size: 18px;
	font-weight: 700;
}

.tate_stepTitle {
	font-size: 16px;
	margin-bottom: 8px;
}

.tate_stepPara p {
	font-size: 14px;
	color: var(--color-text-light);
}

/* ==========================================================================
PRICES (num8)
========================================================================== */
.tate_feeIntro {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 14px;
	color: var(--color-text-light);
}

.tate_feeIntro span {
	display: inline-block;
	margin-top: 8px;
	font-size: 12px;
}

.tate_feeTable {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 0 0 1px var(--color-border);
}

.tate_feeTable th,
.tate_feeTable td {
	padding: 20px 24px;
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid var(--color-border);
}

.tate_feeTable tr:last-child th,
.tate_feeTable tr:last-child td {
	border-bottom: none;
}

.tate_feeTable th {
	width: 180px;
	background: var(--color-primary);
	color: #fff;
	font-weight: 500;
	white-space: nowrap;
}

.tate_feeTable td {
	color: var(--color-text-light);
	background: var(--color-bg);
}

@media screen and (max-width: 750px) {
	.tate_feeTable, .tate_feeTable tbody, .tate_feeTable tr, .tate_feeTable th, .tate_feeTable td {
		display: block;
		width: auto;
	}
	.tate_feeTable th {
		border-bottom: none;
	}
	.tate_feeTable td {
		padding-top: 8px;
	}
	.tate_feeTable tr {
		margin-bottom: 16px;
		box-shadow: 0 0 0 1px var(--color-border);
		border-radius: 8px;
		overflow: hidden;
	}
}

/* ==========================================================================
AREA / 営業時間 (num9)
========================================================================== */
.tate_infoInner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
}

.tate_infobox {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 32px;
}

.tate_infoTitle {
	font-size: 18px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-accent);
}

.tate_infobox1 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.tate_infobox1 li {
	font-size: 14px;
	padding: 6px 14px;
	background: var(--color-accent-light);
	border-radius: 999px;
}

.tate_infobox1 small {
	color: var(--color-text-light);
	font-size: 12px;
}

.tate_infoBigContainer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 16px;
}

.tate_infoSubTitle {
	font-size: 14px;
	margin-bottom: 10px;
	color: var(--color-text-light);
}

.tate_infoTable {
	width: 100%;
	font-size: 14px;
	border-top: 1px solid var(--color-border);
}

.tate_infoTable th,
.tate_infoTable td {
	padding: 10px 4px;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	font-weight: 400;
}

.tate_infobox2 > p {
	font-size: 12px;
	color: var(--color-text-light);
}

@media screen and (max-width: 900px) {
	.tate_infoInner {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 480px) {
	.tate_infoBigContainer {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
ACCESS (num10)
========================================================================== */
.tate_accessInner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
	align-items: center;
}

.tate_accessBox ul li {
	font-size: 14px;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
}

.tate_accessTitle {
	font-size: 18px;
	margin-bottom: 16px;
}

#cb_content_10 iframe {
	width: 100%;
	max-width: 900px;
	aspect-ratio: 4 / 3;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 12px;
}

@media screen and (max-width: 750px) {
	.tate_accessInner {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
フッター
========================================================================== */
#footer {
	position: relative;
	background: var(--color-primary);
	color: #fff;
	/* margin-top: 40px; */
}

#footer_top {
	position: relative;
	min-height: 200px;
}

.footer_bg_image {
	position: absolute;
	inset: 0;
	opacity: .35;
}

#footer_bottom {
	position: relative;
}

.footer_menu{
	padding-block: 20px;
}

.footer_menu ul{
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
}

.footer_menu ul li a{
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
}

#copyright {
	position: relative;
	text-align: center;
	padding: 20px;
	font-size: 12px;
	letter-spacing: .05em;
}

#return_top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
	z-index: 400;
}

#return_top a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#return_top span {
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg) translateY(2px);
}

@media screen and (max-width: 750px) {
	.footer_menu ul{
		flex-direction: column;
		align-items: center;
	}
}

/* ==========================================================================
お問い合わせページ (Contact Form 7)
========================================================================== */
.cf7_page_header {
	padding: 64px 24px 0;
}

.cf7_form_wrap {
	max-width: 720px;
}

.cf7_form_intro {
	margin-bottom: 40px;
	text-align: center;
	color: var(--color-text-light);
}

.wpcf7-form .cf7-row {
	margin-bottom: 28px;
}

.wpcf7-form .cf7-row label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cf7-required,
.cf7-optional {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 500;
	vertical-align: middle;
}

.cf7-required {
	color: #fff;
	background: var(--color-accent);
}

.cf7-optional {
	color: var(--color-text-light);
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 15px;
	font-family: var(--font-base);
	color: var(--color-text);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

.wpcf7-form textarea {
	min-height: 180px;
	resize: vertical;
}

.cf7-agreement-row {
	text-align: center;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-form .wpcf7-acceptance label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.cf7-submit-row {
	text-align: center;
	margin-top: 40px;
}

.wpcf7-form input[type="submit"] {
	min-width: 240px;
	padding: 16px 40px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: var(--color-primary);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}

.wpcf7-form input[type="submit"]:hover {
	background: var(--color-primary-dark);
}

.wpcf7-form input[type="submit"]:disabled {
	background: var(--color-border);
	color: var(--color-text-light);
	cursor: not-allowed;
}

.wpcf7-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #d94848;
}

.wpcf7-form .wpcf7-response-output {
	max-width: 720px;
	margin: 32px auto 0;
	padding: 16px 20px;
	border-radius: 6px;
	font-size: 14px;
}

@media screen and (max-width: 750px) {
	.wpcf7-form input[type="submit"] {
		width: 100%;
	}
}

/* ==========================================================================
固定ページ 共通 (page.php)
========================================================================== */
.page_header {
	padding: 64px 24px 0;
}

.page_content_wrap {
	max-width: 840px;
}

.page_thumbnail {
	margin-bottom: 40px;
}

.page_thumbnail img {
	border-radius: 12px;
}

/* ---- entry-content タイポグラフィ ---- */
.entry-content h2 {
	font-size: 24px;
	line-height: 1.6;
	margin: 56px 0 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--color-border);
}

.entry-content h3 {
	font-size: 19px;
	line-height: 1.6;
	margin: 40px 0 18px;
}

.entry-content h4 {
	font-size: 16px;
	line-height: 1.6;
	margin: 32px 0 14px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content p {
	margin-bottom: 1.8em;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content strong {
	font-weight: 700;
	color: var(--color-primary);
}

/* ---- リスト(箇条書き・番号付き) ---- */
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.8em;
	padding-left: 0;
	list-style: none;
}

.entry-content li {
	position: relative;
	margin-bottom: 12px;
	line-height: 1.8;
}

.entry-content li:last-child {
	margin-bottom: 0;
}

.entry-content ul > li {
	padding-left: 24px;
}

.entry-content ul > li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: .75em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
}

.entry-content ol {
	counter-reset: entry-ol;
}

.entry-content ol > li {
	counter-increment: entry-ol;
	padding-left: 40px;
	min-height: 28px;
}

.entry-content ol > li::before {
	content: counter(entry-ol);
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin: 12px 0 0;
}

/* ---- 引用・区切り線・画像 ---- */
.entry-content blockquote {
	margin: 32px 0;
	padding: 20px 24px;
	background: var(--color-accent-light);
	border-left: 4px solid var(--color-accent);
	border-radius: 0 8px 8px 0;
	color: var(--color-text-light);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content hr {
	margin: 48px 0;
	border: none;
	border-top: 1px solid var(--color-border);
}

.entry-content figure {
	margin: 32px 0;
}

.entry-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--color-text-light);
	text-align: center;
}

@media screen and (max-width: 750px) {
	.entry-content h2 {
		font-size: 20px;
		margin: 40px 0 18px;
	}

	.entry-content h3 {
		font-size: 17px;
		margin: 32px 0 14px;
	}
}
