@charset "UTF-8";

/*
メインカラー
#54a2dc

サブカラー
#26b99a

アクセントカラー
#fda317

黒
#222

グレー
#aaaaaa
#e6e6e6
#f3f3f3
#f9f9f9
*/

body {
	color: #333;
	font-size: 15px;
	line-height: 1.7;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: "NotoSansCJKjp","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*==================================================
 汎用クラス
================================================== */
/* 整列
-------------------------------------------------- */
.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

/* フォント
-------------------------------------------------- */
.weight-bold {
	font-weight: bold;
}

/* クリア
-------------------------------------------------- */
.clear {
	clear: both;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}


/*==================================================
 タグ
================================================== */
/* img
-------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}


/* a
-------------------------------------------------- */
a {
	color: #54a2dc;
	text-decoration: none;
	transition: All 0.4s ease;
}

a:hover {
	color: #26b99a;
	text-decoration: underline;
}

a img {
	transition: All 0.4s ease;
}

a:hover img {
	opacity: .8;
}


/*==================================================
 テーブル
================================================== */
/* スタイル1
-------------------------------------------------- */
.styled-table01 {
	width: 100%;
	margin: 20px 0;
	line-height: 1.7;
}

.styled-table01:first-child {
	margin-top: 0;
}

.styled-table01 th,
.styled-table01 td {
	padding: 12px;
	vertical-align: top;
	border: 1px solid #ddd;
	background: #fff;
}

.styled-table01 th {
	width: 35%;
	font-weight: normal;
	background: #f7f7f7;
}

.styled-table01 thead th {
	background: #e6e6e6;
}

.styled-table01 caption {
	text-align: center;
	font-size: 20px;
}

/* その他オプション
-------------------------------------------------- */
/* セルの横幅を均等にする
------------------------- */
.cell-width-fix {
	table-layout: fixed;
}

.cell-width-fix th,
.cell-width-fix td {
	width: auto;
}


/* セルの横幅を指定しない
------------------------- */
.cell-width-fazzy th,
.cell-width-fazzy td {
	width: auto;
}


/* 縦向き
------------------------- */
.direction-vertical,
.direction-vertical thead,
.direction-vertical tbody,
.direction-vertical tfoot,
.direction-vertical tr,
.direction-vertical th,
.direction-vertical td {
	width: auto;
	display: block;
}


/* 大きいサイズのテーブルはスマホではスクロールさせる
------------------------- */
@media screen and (max-width: 768px) {
	.scroll-table-wrap {
		overflow-x: scroll;
	}

	.scroll-table-wrap table {
		width: 700px;
		margin: 0;
	}
}

/*==================================================
 dl
================================================== */
.styled-dl01 {
	margin: 0 0 20px;
	padding: 15px;
	border-radius: 3px;
	background: #f4f4f4;
}

.styled-dl01:last-child {
	margin-bottom: 0;
}

.styled-dl01 dt {
	margin: 0 0 10px;
	font-size: 20px;
}

/*==================================================
 パンくずリスト
================================================== */
.bread_crumb {
	height: 25px;
	line-height: 25px;
	margin: 0 0 16px;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
	white-space: nowrap;
}

.bread_crumb li {
	font-size: 14px;
	display: inline;
}

.bread_crumb a {
	background: url(../images/common/icon_arrow03.png) right center no-repeat;
	margin: 0 7px 0 0;
	padding: 0 10px 0 0;
}

/*==================================================
 ページネーション
================================================== */
.pagenation {
	margin: 0 0 20px;
	text-align: center;
	color: #999;
	font-size: 0;
	letter-spacing: 0;
}

.pagenation li {
	width: 26px;
	margin: 0 2px;
	line-height: 30px;
	color: #999;
	font-size: 13px;
	background: #aaa;
	display: inline-block;
}

.pagenation li > * {
	color: #fff;
	text-decoration: none;
	display: block;
}

.pagenation li:hover,
.pagenation li.current {
	background: #54a2dc;
}

/*==================================================
 ヘッダー
================================================== */
.page-header {
	margin: 0 0 16px;
}

.page-header .header-inner {
	width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}

.header-logo {
}

/* ナビ
-------------------------------------------------- */
.header-nav {
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
	border-bottom: 5px solid #54a2dc;
}

.header-nav ul {
	margin: 0 0 -5px;
}

.header-nav li {
	display: inline-block;
	vertical-align: top;
}

.header-nav a {
	line-height: 56px;
	color: #fff;
	font-size: 14px;
	border-right: 1px solid rgba(255,255,255,.4);
	background: #54a2dc;
	display: block;
}

.header-nav a:hover {
	text-decoration: none;
	background: #222;
}

/* ビジュアル
-------------------------------------------------- */
.header-visual-wrap {
	padding: 32px 0;
	background: #222;
}

/* メインビジュアル
------------------------- */
.main-visual {
	width: 1200px;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
}

/*==================================================
 フッター
================================================== */
.page-footer {
	color: #fff;
	font-size: 12px;
	background: #54a2dc;
}

.page-footer a {
	color: inherit;
}

/* ナビ
-------------------------------------------------- */
.footer-nav {
	line-height: 55px;
	float: left;
	overflow: hidden;
}

.footer-nav li {
	float: left;
}

.footer-nav li:after {
	content: '|';
	margin: 0 8px;
}

.footer-nav li:last-child:after {
	display: none;
}

/* コピーライト
-------------------------------------------------- */
.footer-copyright {
}

/*==================================================
 サイドバー
================================================== */
.page-body-sidebar {
	width: 300px;
	float: right;
}

/* セクション
-------------------------------------------------- */
.side-section {
	margin: 0 0 50px;
}

.side-section-title {
	margin: 0 0 16px;
	padding: 0 0 8px;
	color: #54a2dc;
	font-size: 20px;
	border-bottom: 3px solid #54a2dc;
}


/* セクション
-------------------------------------------------- */

.section-content:after {
	content: " ";
	display: block;
	clear: both;
}

.section-footer {
	padding: 24px 0 0;
	clear: both;
}

/* 見出し
------------------------- */
.styled-title01 {
	margin: 0 0 1.3em;
	padding: 1.1em 0.9em 1em;
	font-size: 22px;
	border-top: 2px solid #222;
	border-bottom: 1px solid #ddd;
	background: #fafafa;
	box-shadow: 0 1px 2px #f7f7f7;
}

.styled-title02 {
	margin: 0 0 1.3em;
	padding: .8em 0.9em .7em;
	font-size: 22px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

/* 記事アイキャッチ
------------------------- */
.section-eyecatch-right {
	max-width: 40%;
	margin: 0 0 20px 20px;
	float: right;
}

.section-eyecatch-left {
	max-width: 40%;
	margin: 0 20px 20px 0;
	float: left;
}

.section-eyecatch-center {
	margin: 0 auto 20px;
	display: block;
}

/* 記事情報
------------------------- */
.post-info-wrap {
	margin: 0 0 16px;
	overflow: hidden;
}

.post-info-wrap .post-info-item {
	margin: 0 15px 0 0;
	padding: 0 0 0 20px;
	background: left top 4px no-repeat;
	float: left;
}

.post-info-wrap .post-info-item-date {
	background-image: url(../images/common/icon_calendar.png);
}

.post-info-wrap .post-info-item-tag {
	background-image: url(../images/common/icon_tag.png);
}

/* タグリスト */
.post-tag-list {
	overflow: hidden;
}

.post-tag-list li {
	margin: 0 5px 0 0;
	float: left;
}

.post-tag-list li:not(:last-child):after {
	content: ',';
}

/* SNSシェアボタン
------------------------- */
.share-btn-list {
	margin: 0 0 16px;
	text-align: right;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
}

.share-btn-list li {
	margin: 0 0 0 8px;
	vertical-align: top;
	display: inline-block;
}

/* 詳細ページ用　前後の記事
------------------------- */
.prev-next-post {
	overflow: hidden;
}

.prev-next-post .prev-post,
.prev-next-post .next-post {
	width: calc(50% - 4px);
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	float: left;
}

.prev-next-post .next-post {
	float: right;
}

.prev-next-post .next-post {
	float: right;
}

.prev-next-post a {
	padding: 0 20px;
	line-height: 96px;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}

.prev-next-post .prev-post a {
	padding-left: 47px;
	background: url(../images/common/icon_arrow02.png) left 20px center no-repeat;
}

.prev-next-post .next-post a {
	padding-right: 47px;
	background: url(../images/common/icon_arrow01.png) right 20px center no-repeat;
}

.prev-next-post a:hover {
	text-decoration: none;
	background-color: #fafafa;
}

/* その他
-------------------------------------------------- */
/* 投稿日 */
.post-date {
	margin: 0 0 15px;
	padding: 1px 0 0 12px;
	font-size: 13px;
	background: url(../images/common/icon_arrow03.png) left center no-repeat;
	display: block;
}

/* テキストボタン */
.text-btn {
	width: 200px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	background: url(../images/common/icon_arrow01_white.png) right 16px center no-repeat #54a2dc;
	display: inline-block;
}

.text-btn:hover {
	color: #fff;
	text-decoration: none;
	background-color: #26b99a;
}


/*==================================================
 記事リスト
================================================== */
/* 02
-------------------------------------------------- */
.styled-post-list02 .item {
	width: calc((100% - 48px) / 4);
	margin: 0 16px 16px 0;
	float: left;
}

.styled-post-list02 .item:nth-child(4n) {
	margin-right: 0;
}


.styled-post-list02 .thumb {
	margin: 0 0 8px;
	display: block;
}

.styled-post-list02 .title {
	margin: 0 0 8px;
}

.styled-post-list02 .price-num {
	margin-right: .2em;
	color: #f00;
	font-size: 1.2em;
	font-weight: bold;
}

/* 詳細情報リスト
------------------------- */
.styled-post-list02 .detail {
	margin: .5em;
	font-size: 80%;
	line-height: 1.2;
	border-bottom: 1px solid #e6e6e6;
	overflow: hidden;
}

.styled-post-list02 .detail dt {
	width: 45px;
	max-height: 2em;
	margin: 0 0 .5em;
	font-weight: bold;
	float: left;
	clear: right;
	overflow: hidden;
}

.styled-post-list02 .detail dd {
	width: calc(100% - 45px);
	max-height: 2em;
	margin: 0 0 .5em;
	float: left;
}

/*==================================================
 SNSボタン
================================================== */
ul.share-btn-list {
	height: 80px;
	vertical-align: top;
	display: table;
}

ul.share-btn-list li {
	height: 80px;
	vertical-align: top;
	display: table-cell;
	padding-right: 10px;
}






















/*==================================================
 カスタム
================================================== */

@import url(../fonts/Hannari/load.css);

body {
	min-width: 1200px;
	font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #6e422c;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0.1em;
	width: 100%;
		/*-- スマホメニューを開いたときにコンテンツを固定 ← これがキモ --*/
	left: 0 !important;
	position: absolute;

}

h1,
h2,
h3,
h4,
h5 {
	font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
}

div,
section,
p,
header,
footer,
a,
main,
nav {
	position: relative;
	box-sizing: border-box;
}

img {
	display: inline;
}

table,th,td {
	box-sizing: border-box;
}

section {
	width: 100%;
	height: 100%;
}

.text_inner {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.table_cell {
	display: table-cell;
	vertical-align: middle;
}

.header-visual-wrap {
	padding: 0;
	background: inherit;
	width: 100%;
	overflow: hidden;
}

.required-mark,
.error-text {
	color: #f00;
}

.wrap {
	overflow: hidden;
}

.inner{
	width: 1200px;
	left: 50%;
	margin-left: -600px;
	height: 100%;
	position: relative;
}

a {
	color: inherit;
	text-decoration: none;
}

section {
	padding: 80px 0;
}

a:hover {
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
	color: inherit;
	text-decoration: none;
}

ul {
	font-size: 0;
	letter-spacing: -.4em;
}

li {
	font-size: 16px;
	letter-spacing: normal;
}

.left_area {
	float: left;
	width: 50%;
}

.right_area {
	float: right;
	width: 50%;
}

.left {
	float: left;
	text-align: left;
}

.center {
		text-align: center;
	margin: 0 auto;
}

.right {
	float: right;
	text-align: right;
}

.sp {
	display: none;
}

.pc {
	display: inherit;
}

iframe {
		width: 100%;
		height: auto;
}

table {
		width: 100%;
	}

.left_area {
	width: auto;
}

.right_area {
	width: auto;
}

.header-nav a {
	line-height: inherit;
}




/*==================================================
タグ
================================================== */

ul.post-tag-list {
	margin-top: 10px;
	text-align: right;
}

ul.post-tag-list:after {
	content: " ";
	display: block;
	clear: both;
}

ul.post-tag-list li {
	display: inline-block;
	text-align: right;
	color: #fff;
	margin: 0 10px 10px 0;
	float: none;
}

ul.post-tag-list li a {
	color: #fff;
	padding: 4px 12px;
	background: #14b4ff;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	text-decoration: none;
}

ul.post-tag-list li:not(:last-child):after {
	content: normal;
}


/*==================================================
 SNSボタン
================================================== */
ul.share-btn-list {
	vertical-align: top;
	display: table;
}

ul.share-btn-list li {
	vertical-align: top;
	display: inline-block;
	padding: 0 10px 40px 0;
}

.fb_iframe_widget > span {
	vertical-align: baseline !important;
}



/*==================================================
 サイトマップ
================================================== */
.sitemap-list li {
	padding: 0 0 0 20px;
	line-height: 45px;
	border-bottom: 1px solid #aaa;
	background: url(../images/common/icon_arrow01.png) left 5px center no-repeat;
}

.sitemap-list a {
	color: inherit;
}

/*<section class="area08">
		<div class="inner">
			<ul class="sitemap-list">
				<li><a href=""></a></li>
			</ul>
		</div>
	</section>*/

/*==================================================
プライバシーポリシー
================================================== */
h4.p_title:not(:first-child) {
	margin-top: 40px;
	font-size: 200%;
	line-height: 50px;
	border-bottom: 1px #111 solid;
	margin-bottom: 25px;
}

.p_text {
	margin: 0 5px 10px;
}

/* 詳細ページ 前後の記事へのリンク
-------------------------------------------------- */

.prev-next-post {
    margin: 20px 5px;
    overflow: hidden;
}

.prev-next-post .prev-post,
.prev-next-post .next-post {
    width: 48%;
    padding: 0 5px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #f0f0f0;
    box-sizing: border-box;
}

.prev-next-post .prev-post {
    float: left;
}

.prev-next-post .next-post {
    float: right;
}

.prev-next-post .prev-post a,
.prev-next-post .next-post a {
    height: 35px;
    line-height: 35px;
    display: block;
    overflow: hidden;
}



.header-nav a,
.page-footer {
	background: none;
	color: inherit;
	font-size: inherit;
}

.header-nav a:hover {
	background: none;
}

.page-header .header-inner {
	padding: 0 0 20px;
}

.header-nav {
	border-bottom: none;
}

.header-nav ul {
	margin: 0;
}

.main-visual {
	width: 1920px;
	height: 807px;
	left: 50%;
	margin-left: -960px;
}

.contact-submits-wrap {
	text-align: center;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mt55 {
	margin-top: 55px !important;
}


@media screen and (max-width: 768px) {

	.pc {
	display: none;
	}

	.sp {
	display: inherit;
	}
	
	body {
		min-width: 100% !important;
	}

	.bread_crumb {
		width: 100%;
		left: inherit;
		margin-left: inherit;
		padding: 0 2%;
	}

	
	div,
	img {
		left: inherit;
		right: inherit;
		top: inherit;
		bottom: inherit;
		margin: 0;
		padding: 0;
	}
	
	section {
		padding: 20px 0 !important;
		margin: 0 !important;
	}
	
	.header_inner,
	.inner,
	.page-header,
	.header-inner,
	.area03_inner,
	ul.cla06 li a {
		width: 100% !important;
		left: inherit !important;
		margin-left: inherit !important;
		position: relative !important;
		padding: 0 2% !important;
	}
	
	.area03_inner {
		background: none !important;
	}
	
	ul.cla05 {
		padding: 0 !important;
	}
	
	table.styled-table01 th,
	table.styled-table01 td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	
	select, textarea, input[type="tel"], input[type="num"], input[type="text"], input[type="email"], input[type="password"] {
		width: 100%;
		box-sizing: border-box;
	}
	
	/* 郵便番号*/
	td.ad input[type="num"] {
		width: 80px;
	}
	
	.captcha-wrap {
		width: 100% !important;
		text-align: center;
	}
	
	.captcha-wrap img {
		width: inherit;
		height: inherit;
	}

	section,
	div,
	.left_area,
	.right_area,
	.left,
	.right,
	.main-visual,
	.center,
	.contact .info_table th,
	.contact .info_table td,
	ul.cla06 li a {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		top: inherit;
		bottom: inherit;
		left: inherit;
		right: inherit;
		position: relative;
		float: inherit;
		max-width: inherit;
		max-height: inherit;
	}

	.center {
		position: relative;
		left: inherit;
		margin: auto;
	}

	.h_tel,
	.h_contact {
		text-align: center;
	}
	
	ul.cla06 li:before {
		display: none !important;
	}
	
	.h_tel img,
	.h_contact img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-width: 100%;
	}

	.side-toggle-btn {
		position: absolute;
		right: 0;
		top: 0;
		z-index: 9000;
	}

	.sitemap-list a {
	    color: inherit;
	    display: block;
	    width: 100%;
	}
	
	.side-toggle-btn {
		position: fixed;
	}
	
	.header_line {
		background: #056dc5;
		border: none;
		position: relative;
		left: -2%;
		width: 104%;
		margin: 0;
	}
	
	.h_logo {
		padding: 2px 0;
		box-sizing: border-box;
		margin: 0;
	}
	
	.h_logo img {
		width: auto;
		height: auto;
		max-height: 46px;
	}
	
	.header-nav {
		display: none;
	}
	
	.page-header {
		padding: 0 !important;
		margin: 0 !important;
	}
	
	.page-header .header-inner {
		height: inherit;
		padding: 0 !important;
		margin: 0 0 10px !important;
	}
	
	.header-inner .left_area {
		width: calc(100% - 50px);
	}
	
	.styled-table01 th, .styled-table01 td {
		padding: 10px;
	}



}

/* ぱんくず
.prev-next-post .next-post a .prev-next-post .prev-post a,
.prev-next-post .next-post a {
	background: none;
}

.bread_crumb li:not(:last-child):after {
	content: ">";
	margin: 0 10px;
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 80%;
}



ul.share-btn-list,
ul.share-btn-list li{
	height: inherit;
}


.prev-post a .pc,
.next-post a .pc {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.page-header {
	margin: 0;
}

/*ページネーション*/
.post-tag-list li {
	display: inline-block;
	padding: 10px 2px 0;
}

.post-tag-list li a { 
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #fff;
	background: #2989d8; /* Old browsers */
	background: -moz-linear-gradient(top, #2989d8 0%, #013298 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #2989d8 0%,#013298 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #2989d8 0%,#013298 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2989d8', endColorstr='#013298',GradientType=0 ); /* IE6-9 */
}

.post-tag-list li a:hover {
	text-decoration: none;
	 filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

/*==================================================
 計算
==================================================
.foo {
    width: calc(100% - 50px);
}
*/

/*==================================================
 文字を省略
==================================================

.cut {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
*/

/*==================================================
 角丸見本
================================================== 
.demo   {  
    border-radius: 10px;
    -webkit-border-radius: 10px;  
    -moz-border-radius: 10px;  
}
*/
/*==================================================
 文字を省略
==================================================
.demo   {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 350px;
	display: inline-block;
	vertical-align: bottom;
}
*/
/*==================================================
 スクロールバー表示させる
==================================================*/
.area_01_box .area_01_box_inner {
  overflow-y:auto;
}
.area_01_box .area_01_box_inner::-webkit-scrollbar {
  background:#ccc;
  width: 5px;
}
.area_01_box .area_01_box_inner::-webkit-scrollbar-thumb {
  background:#aaa;
}



/*==================================================
 可変横並び
==================================================*/
.inner_img {
	float: right;
}

.inner_txt {
	width: auto;
	overflow: hidden;
	display: table-cell;
}

.center {
	text-align: center;
}



.header-nav li {
	padding: 0 40px;
}

.header-nav li:not(:first-child) {
	border-left: 1px solid #000;
}

<!-- ==================== ▼ ブログ ▼ ==================== --> 
.styled-title01 {
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
	font-size: inherit;
	background: none;
	box-shadow: none;
}
.styled-title01 a .news_01:before {
	content: url(../images/icon_arrow.png);
	line-height: 100%;
	position: relative;
	left: 0;
	margin-right: 10px;
}


.styled-title01 a .news_01 {
	font-weight: bold;
	margin-right: 30px;
	float: left;
	line-height: 160%;
}

.styled-title01 a .news_02 {
	width: auto;
	overflow: hidden;
	font-size: 120%;
}

.news_area {
	margin: 0;
	padding: 20px 0 10px;
	border-bottom: 1px solid #454545;
}

.styled-title03 {
	font-size: 120%;
	margin: 0;
	padding: 20px 0 10px;
	border-bottom: 1px solid #454545;
}

.news_04 {
	text-align: right;
	font-weight: bold;
	margin: 20px 0 10px;
}

.bread_crumb a {
	background: none;
	margin: 0 7px 0 0;
	padding: 0 10px 0 0;
}

.bread_crumb a:after {
    content: ">";
    position: relative;
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
	margin-left:10px;
    display: inline;
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-weight: bold;
}

.news_title {
	width: auto;
	overflow: hidden;
}

.pagenation {
	margin: 50px 0 0;
}

.pagenation li:hover,
.pagenation li.current {
	background: #0065c2;
}

@media screen and (max-width: 768px) {
.styled-title01 a .news_01 {
		display:block;
		width: 100%;
		float: none;
	}
}
<!-- ==================== ▲ ブログ ▲ ==================== -->

/*==================================================
 文字背景グラデ
==================================================*/
.sub-visual h3.shadow {
	text-shadow:0px 0px 30px #fff,
	0px 0px 5px #fff,
	0px 0px 10px #fff,
	0px 0px 15px #fff,
	0px 0px 20px #fff,
	0px 0px 25px #fff,
	0px 0px 30px #fff,
	0px 0px 35px #fff,
	0px 0px 40px #fff,
	0px 0px 45px #fff,
	0px 0px 50px #fff;
	z-index: 1099;
}

.cla01 {
	background: url(../images/cate01.png) no-repeat;
	width: 471px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	color: #166fca;
	font-weight: bold;
}

.cla02 a {
	background: #166fca;
	padding: 0 20px;
	line-height: 50px;
	height: 50px;
	color: #fff;
	font-weight: bold;
	border-radius: 3px;
    -webkit-border-radius: 3px;
	display: block;
    -moz-border-radius: 3px;
}

.cla02 a:after {
	content:">";
	position: relative;
	left: 5px;
	font-weight:bold;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
}

table.cla03 {
	color: #fff;
	height: 20px;
	line-height: 20px;
	margin-top: 5px;
	width: 244px;
	font-size: 11px;
}

table.cla03 th {
	background: #166fca;
	vertical-align: middle;
	text-align:center;
	padding: 0 2px;
}

table.cla03 td {
	color: #6e422c;
	padding-left: 10px;
	vertical-align: middle;
}

table.cla03 td hr {
	border-style: solid;
border-color: #ffde5d;
width: 85px;
position: relative;
top: 10px;
float: right;
margin:0 0 0 10px; /* 上のマージン(余白)で文字の真中に合わせる */
padding: 0;
}

.header-nav {
	background: url(../images/cate03.png) no-repeat top center;
	height: 88px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	z-index: 1500;
	width: 100%;
}

.header-nav li {
	border: none !important;
	line-height: 16px;
	padding: 35px 18px 0;
	height: 88px;
}

.header-nav li:first-child {
	padding-left: 0;
}

.header-nav li:last-child {
	padding-right: 0;
}

.header-nav li a {
	display: inline-block;
}

.top .header-nav:before {
	content: url(../images/leaf.png);
	position: absolute;
	z-index: 1400;
	top: 522px;
	left: 50%;
	margin-left: -960px;
}

.page-header {
	margin: 0;
	z-index: 100;
}

#top main.top {
	margin-top: -150px;
	background: #fefbf6;
	padding-top: 70px;
}

.area01 {
	line-height: 200%;
}

.area01 .inner_img img {
	max-width: 540px;
	height: auto;
}
	
.area02 {
	background: url(../images/cate20.png) top center no-repeat;
}

ul.cla04 li {
	width: 570px;
	box-sizing: border-box;
	padding: 40px;
	background: #fff;
	border-radius: 5px;
    -webkit-border-radius: 5px;  
    -moz-border-radius: 5px;
	display: inline-block;
	margin-top: 60px;
}

ul.cla04 li:nth-child(2n) {
	float: right;
}

ul.cla04 li .left,
ul.cla04 li .right {
	max-width: 47%;
	margin: 20px 0 35px;
}

ul.cla04 li .inner_txt {
	line-height: 200%;
}

.area03 {
	width: 100%;
	height: 460px;
	padding: 40px 0;
	background: url(../images/cate12.png) no-repeat;
}

.area03_inner {
	width: 1345px;
	height: 376px;
	left: 50%;
	margin-left: -655px;
	background: url(../images/cate21.png) no-repeat;
}

ul.cla05 {
	text-align: center;
	box-sizing: border-box;
	padding-right: 50px;
}

ul.cla05 li {
	padding: 50px 15px 0;
	display: inline-block;
}

.area04 {
	background: url(../images/cate22.png) no-repeat;
	height: 753px;
}

ul.cla06 {
	margin-top: 15px;
}

ul.cla06 li {
	height: 366px;
	width: 270px;
	background: url(../images/cate30.png) center bottom no-repeat;
	display: inline-block;
	position:relative;
	padding: 0 19px;
	box-sizing: border-box;
	vertical-align:bottom;
	text-align:center;
}

ul.cla06 li a {
	color:#ff9c00;
	font-weight: bold;
	top: 73px;
	height: 275px;
	width: 100%;
	display: block;
}

ul.cla06 li img {
	max-height: 250px;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

ul.cla06 li:not(:first-child){
	margin-left: 40px;
}

ul.cla06 li:nth-child(4n-3):before {
	position:absolute;
	top: 0;
	left: 0;
	content: url(../images/cate15.png);
}
ul.cla06 li:nth-child(4n-2):before {
	position:absolute;
	top: 0;
	left: 0;
	content: url(../images/cate16.png);
}
ul.cla06 li:nth-child(4n-1):before {
	position:absolute;
	top: 0;
	left: 0;
	content: url(../images/cate17.png);
}
ul.cla06 li:nth-child(4n):before {
	position:absolute;
	top: 0;
	left: 0;
	content: url(../images/cate18.png);
}

.cla07 {
	display: block;
	margin-bottom: 15px;
}

.area05 {
	background: url(../images/cate31.png) center bottom no-repeat;
}

ul.index_news {
	width: 580px;
	height: 500px;
	background: url(../images/cate28.png) center bottom no-repeat;
	position: relative;
	box-sizing: border-box;
	padding: 15px;
}

ul.index_news li {
	line-height: 85px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	border-bottom: 1px dashed #6e422c;
}

ul.index_news .more {
	position: absolute;
	top: -10px;
	right: 30px;
}

footer {
	background: url(../images/footer.png) center bottom repeat-x;
	height: 254px;
	margin-top: -20px;
	padding-top: 65px;
}

nav.footer-nav {
	width: 100%;
	border-top: 1px solid #166fca;
	padding: 20px 0;
	box-sizing: border-box;
	border-bottom: 1px solid #166fca;
	float: none;
	line-height: inherit;
}

nav.footer-nav ul {
	text-align: center;
}

nav.footer-nav ul li {
	padding: 0 12px;
	display: inline-block;
	float: inherit;
	font-size: 13px;
}


.footer-nav li:after {
	display: none;
}

.f_table td {
	line-height: 200%;
	font-size: 13px;
	vertical-align: middle;
}

.f_table td:last-child {
	width: 600px;
}
	

.footer-copyright {
	text-align:right;
	font-size: 10px;
	padding-top: 20px;
}

.h_logo {
	padding-top: 30px;
}

.sub-visual {
    width: 1920px;
    height: 366px;
    left: 50%;
	top: 50px;
	margin-bottom: 50px;
    margin-left: -960px;
}

.sub-visual .sub_title {
	width: 100%;
	position: absolute;
	top: 200px;
	text-align: center;
	z-index: 2000;
	font-size: 220%;
	color: #166fca;
	font-weight: bold;
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 0.1em;
	text-shadow:0px 0px 30px #fff,
	0px 0px 5px #fff,
	0px 0px 10px #fff,
	0px 0px 15px #fff,
	0px 0px 20px #fff,
	0px 0px 25px #fff,
	0px 0px 30px #fff,
	0px 0px 35px #fff,
	0px 0px 40px #fff,
	0px 0px 45px #fff,
	0px 0px 50px #fff;
}

/*==================================================
 FAQ
================================================== */
.q_area {
	width: 1120px;
	height: 70px;
	line-height: 70px;
	background: url(../images/q.png) center bottom no-repeat;
	color: #fff;
	padding-left: 110px;
	font-size: 140%;
	font-weight: bold;
}

.a_area {
	border: 2px solid #62d0ff;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	padding: 30px;
	width: calc(100%-60px);
	margin: 10px 0 80px 60px;
}

.a_area .inner_img {
	float: left;
	margin: 0 30px 0 0;
}

.a_area .inner_txt {
	width: auto;
	line-height: 200%;
	overflow: hidden;
}

ul.cla08 {
	text-align: center;
}

ul.cla08 li {
	display: inline-block;
	width: 570px;
	margin-bottom: 40px;
}

ul.cla08 li:nth-child(2n) {
	margin: 0 0 40px 60px;
}

table.cla09 th {
	color: #166fca;
}

table.cla09 th,
table.cla09 td {
	line-height: 200%;
	width: 50%;
	padding: 15px;
	vertical-align: middle;
	text-align: center;
	border-top: 1px solid #166fca;
	border-bottom: 1px solid #166fca;
}

h3 {
	background: url(../images/cate36.png) center bottom no-repeat;
	width: 1200px;
	height: 80px;
	line-height: 80px;
	color: #fff;
	text-align:center;
	font-size: 210%;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

h4 {
	background: url(../images/cate49.png) center bottom no-repeat;
	width: 1200px;
	height: 107px;
	padding-top: 37px;
	line-height: 70px;
	color: #fff;
	text-align:center;
	font-size: 210%;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	box-sizing: border-box;
	color: #166fca;
}

.price_area {
	margin-bottom: 80px;
}

.bread_crumb {
	margin: -40px 0 40px;
}

/*==================================================
プライバシーポリシー
================================================== */
h3.pri {
    margin: 0 0 15px;
	height: inherit;
    padding: 10px;
    font-size: 140%;
	line-height: 130%;
	text-align: left;
    font-weight: bold;
    color: #fff;
    border-left: 6px solid #166fca;
    background: #2d9ce8;
}

.p_text {
	line-height: 150%;
	margin-bottom: 60px;
}

ul.def li {
    padding: 5px 0 5px 12px;
    border-bottom: 1px dotted #cfcfcf;
	line-height: 130%;
	vertical-align:middle;
}

#news ul.index_news,
#blog ul.index_news {
	background: none;
	width: inherit;
	height: inherit;
}

.styled-title03 {
	line-height: 85px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
border-bottom: 1px dashed #6e422c;
}

ul.share-btn-list li {
	height: inherit;
	padding: 0;
}

.section-footer {
	padding: 0;
	margin: 0;
}

ul.share-btn-list {
	height: inherit;
	margin: 0;
}

.context_area .inner_txt {
	line-height: 200%;
	vertical-align: middle;
	padding: 0 30px;
}

table.cla10 th,
table.cla10 td {
	text-align: center;
	vertical-align: middle;
}

table.cla10 th img,
table.cla10 td img {
	max-width: 480px;
	margin: 5px;
}

.cla11 {
	background: #ffece9;
	padding: 30px 50px;
	width: 100%;
	line-height: 200%;
	letter-spacing: 0.1em;
}

.caution {
	border-bottom: 1px solid #f14a5d;
	font-weight: bold;
	color: #f14a5d;
	font-size: 150%;
	letter-spacing: 0.1em;
	text-align: center;
	padding-bottom: 5px;
	line-height: 150%;
	margin-bottom: 30px;
}

.caution img {
	margin-right: 10px;
}

.cla12 {
	border: 2px solid #62d0ff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 30px;
	width: 100%;
	background: #fff;
	line-height: 200%;
}

.cla12:before {
	content: url(../images/cate44.png);
	position: absolute;
	z-index: 10;
	right: -45px;
	top: -25px;
}

.cla12_title {
	text-align: center;
	margin-top: -55px;
	margin-bottom: 30px;	
}

.cla12.yellow {
	border: 2px solid #ffde00;
	padding-bottom: 0;
}

.cla12.yellow:before {
	display: none;
}

.cla12.yellow .cla12_title {
	margin-bottom: -25px;
}

.cla12 .inner_img {
	float: left;
	margin-left: -30px;
	margin-bottom: -30px;
}

.cla12 .inner_txt {
	padding-right: 0;
}

.area06 {
	background: url(../images/area06.png) repeat;
	margin-top: -50px;
}

.cla13 {
	text-align: center;
	margin-bottom: 140px;
}

.cla13 li {
	width: 30%;
	line-height: 60px;
	font-weight: bold;
	display: inline-block;
	text-align: center;
}

.cla13 li:nth-child(3n-1){
		margin: 0 60px 0;
}

.cla13 li a {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #fff;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: #65cff6;
}

.cla14 li {
	vertical-align: top;
	display: inline-block;
	width: 570px;
	margin-bottom: 60px;
	background: #e6f6fa;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 25px;
	box-sizing: border-box;
}

.cla14 li:nth-child(2n) {
	margin-left: 60px;
}

.cla15 {
	width: 100%;
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 35px;
}

.cla15 a {
	background: #166fca;
	color: #fff;
	width: 100%;
	height: 100%;
	display: inline-block;
	line-height: 150%;
	vertical-align:middle;
	box-sizing: border-box;
	padding: 15px 15px 15px 55px;
}

.cla15 a:before {
	line-height: 60px;
	content:"●";
	vertical-align:middle;
	color: #61d2ff;
	font-size: 220%;
	margin-left:10px;
	display: inline;
	top: 0;
	left: -5px;
	position: absolute;
}

.cla09 {
	margin-top: 20px;
}

.cla16 {
	line-height: 200%;
	padding: 0 25px;
}

.detail .cla14 li {
	width: 100%;
}

.detail .cla15 a {
	cursor:default;
	filter:alpha(opacity=100) !important;
    -moz-opacity: 1.0 !important;
    opacity: 1.0 !important;
}


.ver_news .news_day {
	color: #166fca;
	font-weight:bold;
}

.ver_blog .news_day {
	color: #ff9000;
	font-weight:bold;
}

.news_day {
	box-sizing: border-box;
	padding-right: 20px;
}

.detail .news_day {
	display: block;
}

.detail ul.index_news {
	padding: 0;
	
}

.detail ul.index_news li {
	line-height: 200%;
	overflow: inherit;
	white-space: normal;
	padding: 10px 0;
	margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
	img {
		max-width: 100%;
		text-align: center;
		display: block;
		margin: auto;
	}
	
	.sub-visual {
		width: 100%;
		left: inherit;
		top: inherit;
		height: auto;
		margin: 0;
	}
	
	.sub-visual .sub_title {
		top: 50%;
		margin-top: -10px;
	}
	
	.h_logo {
		padding: 5px 0;
	}
	
	.scroll {
		width: 100% !important;
		margin-bottom: 40px !important;
	}
	
	.change-images-view img {
		width: auto;
		height: auto;
		max-width: 100%;
	}
	
	.change-images-view li a {
    display: inline;
    height: inherit;
    pointer-events: none;
}

.change-images-thumb {
	display: none;
}

.products_box .inner_txt {
	width: 100% !important;
	float: inherit !important;
}

.products_box .inner_img {
    max-width: 100% !important;
    float: none !important;
}

footer {
		height: inherit;
	}
	
	.header-visual-wrap {
		overflow: hidden;
	}
	
	.sub-visual .sub_title {
		line-height: 120%;
		z-index: 3000;
		font-size: 200%;
	}
	
	.inner_img,
	.inner_txt {
		width: 100%;
		float: none;
	}
	
	.inner_img img,
	.inner_txt img {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	body,
	li {
		font-size: 12px;
	}
	
	table.cla10 th img, table.cla10 td img {
		display: block;
		width: 100%;
		margin: 0 !important;
		padding: 5px 0;
	}
	
	.cla11,
	.cla12 {
		padding: 10px !important;
		margin-bottom: 40px;
	}
	
	.cla12:before {
		right: -70px;
		top: -30px;
	}
	
	.caution {
		margin-bottom: 20px;
	}
	
	.caution img {
		margin: 0 auto 10px;
	}
	
	table.cla10 th:nth-child(3n-1),
	table.cla10 td:nth-child(3n-1) {
		padding: 5px !important;
	}
	
	table.cla09 th, table.cla09 td {
		display: block;
		width: 100%;
		padding: 10px;
	}
	
	table.cla09 th {
		border-bottom: none;
	}
	
	.price_area {
		margin-bottom: 20px !important;
	}
	
	.context_area .inner_txt {
		padding: 10px 0 0;
	}
	
	.cla01 {
		width: 100%;
		height: auto;
		background: #ffde5d;
	}
	
	.cla02 {
		margin-top: 20px;
		text-align: center;
	}
	
	.cla02 a:after {
		position: absolute;
		left: inherit;
		right: 10px;
	}
	
	h3 {
		text-align: center;
		background: #166fca;
		width: 100%;
		height: inherit;
		line-height: 200%;
	}
	
	.sub {
		margin-top: -20px;
	}
	
	.cla03 {
		display: none;
	}
	
	.f_table td:last-child {
		display: none;
	}
	
	.f_table td {
		display: block;
		width: 100%;
	}
	
	footer {
		text-align: center;
		padding: 30px 0;
	}
	
	.footer-copyright {
		text-align: center;
	}
	
	.f_table td:first-child {
		padding-bottom: 30px;
	}
	
	.f_table td {
		line-height: 18px;
	}
	
	.cla13 li {
		width: 100%;
		line-height: 150%;
	}
	
	.cla13 li a {
		padding: 5px;
		box-sizing: border-box;
		vertical-align: middle;
		display: inline-table;
	}
	
	.cla13 li:nth-child(3n-1) {
		margin: 20px 0;
	}
	
	.area01 .inner_img {
		display: none;
	}
	
	#top main.top {
		margin-top: -50px;
	}
	
	ul.cla04 li {
		width: 100%;
		padding: 10px;
		margin-top: 40px;
	}
	
	ul.cla04 li .left, ul.cla04 li .right {
		max-width: 100%;
		margin: 20px 0;
	}
	
	ul.cla04 li:nth-child(2n) {
		float: none;
	}
	
	ul.cla04 li .inner_txt {
		padding-bottom: 20px;
	}
	
	ul.cla04 li .inner_img img {
		width: 60px;
		height: 60px;
		margin-bottom: 10px;
	}
	
	.area02 .inner {
		padding-top: 20px !important;
	}
	
	ul.cla05 li {
		width: 100%;
		padding: 10px;
		display: block;
		box-sizing: border-box;
	}
	
	.area03,
	.area04,
	.area05 {
		height: auto;
		padding-top: 40px !important;
		background: url(../images/cate20.png) top center no-repeat;
	}
	
	.area03_inner {
		width: 100%;
		height: auto;
	}
	
	ul.cla04 li .left {
		display: none !important;
	}
	
	ul.cla06 li {
		width: 100%;
		height: auto;
		padding: 10px;
		box-sizing: border-box;
		background: #fff;
		border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	vertical-align:top;
	margin: 10px 0 !important;
	}
	
	ul.cla06 li a {
		position: static !important;
		height: auto;
	}
	
	ul.index_news {
		width: 100%;
		height: inherit;
		background: inherit;
		padding: 0;
	}
	
	ul.index_news .more {
		text-align: right;
		right: 0 !important;
	}
	
	ul.index_news .more img {
		width: 60px;
		height: 60px;
	}
	
	.more a {
		display: inline-block !important;
		top: -15px !important;
	}
	
	.area05 .left_area,
	.area05 .right_area {
		margin: 0 0 20px;
	}
	
	footer {
		margin: 0;
	}
	
	ul.index_news li {
		line-height: 50px;
	}
	
	.cla13 {
		margin-bottom: 40px;
	}
	
	h3 {
		font-size: 160%;
		margin: 0;
	}
	
	h4 {
		background: url(../images/cate49.png) center bottom repeat;
		width: 100%;
		margin: 20px 0;
		height: inherit;
		padding: 5px;
		box-sizing: border-box;
		line-height: 150%;
		font-size: 140%;
		
	}
	
	.cla12_title {
		margin-top: 0;
		margin-bottom: 20px !important;
	}
	
	.cla12:before {
		display: none;
	}
	
	.cla12 .inner_img {
		position: static;
		float: inherit;
		margin: 0 0 10px 0;
	}
	
	.cla09 {
		border-bottom: 1px solid #166fca;
		border-top: 1px solid #166fca;
	}
	
	ul.cla08 {
		margin-top: 20px;
	}
	
	ul.cla08 li {
		width: 100%;
		margin: 0 0 20px 0 !important;
	}
	
	h3.pri {
		margin: 20px 0;
		width: 100%;
		box-sizing: border-box;
	}
	
	.p_text {
		margin: 0 0 40px;
		padding: 0 5px;
	}
	
	#news ul.index_news, #blog ul.index_news {
		margin-top: 20px;
	}
	
	.q_area {
		width: 100%;
		background: #166fca;
		padding: 10px;
		height: auto;
		line-height: 200%;
		font-size: 110%;
		vertical-align:bottom;
	}
	
	.q_area:before {
		content:"Q.";
		font-size: 120%;
		font-weight: bold;
	}
	
	.a_area {
		width: 100%;
		margin: 10px 0 40px 0;
		padding: 10px;
		vertical-align:bottom;
	}
	
	.a_area:before {
		content:"A.";
		font-size: 130%;
		font-weight: bold;
		color: #62d0ff;
	}
	
	.a_area img {
		display: none;
	}
	
	.a_area .inner_img {
		float: none;
		margin: 0;
	}
	
	.cla15 {
		margin-bottom: 20px;
	}
	
	.cla16 {
		padding: 0;
	}
	
	.cla14 li {
		width: 100%;
		padding: 10px;
		margin: 0 0 30px 0 !important;
	}
	
	.cla15 a:before {
		top: -5px;
	}
}

ul.cla06 li:nth-child(n + 5) {
	display: none;}



/*--------20180907SEO対策修正----------*/
.h-title {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin: -20px 0 5px;
}

@media screen and (max-width: 768px) {
	.h-title {
		margin: 0 0 3px;
	}
}

.fv {margin: 10px 0 40px;}


.c-block {
	margin: 80px 0;
	padding: 10px 5px;
}
.c-block p {
	line-height: 1.5;
}
.l-heading-secondary {
	background: #2d9ce8;
	border-left: 6px solid #166fca;
	color: #fff;
	font-size: 140%;
	font-weight: bold;
	height: inherit;
	line-height: 140%;
	margin: 0 0 15px;
	padding: 10px;
	text-align: left;
}
/*NAP*/
.c-nap h4 {background: none;color: #FFB400;font-size: 120%;height: auto;width: auto;line-height: 1.4;margin-bottom: 15px;text-align: left;}
.c-table {width: 100%;border-collapse: collapse;border: 1px solid #ddd;text-align: left;}
.c-table th {width: 25%;background: #f7f7f7;border: 1px solid #ddd;vertical-align: middle;text-align: left;}
.c-table td {border: 1px solid #ddd;vertical-align: middle;}
/*ボタン*/
.c-btn {padding: 30px 0 60px;text-align: center;}
.c-btn-anchor {background: #FFB400;border-radius: 5px;color: #166fca !important;display: inline-block;font-size: 110%;font-weight: bold;line-height: 1.5;padding: 10px 15px;position: relative;text-decoration: none;transition: 0.4s;}
.c-btn-anchor:hover {opacity: 0.7;text-decoration: none;}

@media only screen and (max-width: 768px) {
.c-btn {text-align: left;}
}