@charset "utf-8";

/*
表示側＋SP表示時のみ参照するCSS
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
電話ポップアップ（2023-10-23）mk
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#tel_lb {
    display: none;
    z-index: 99999;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
}

div#tel_lb .bg {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, .9);
}

div#tel_lb .inner {
    position: absolute;
    background: rgba(0, 0, 51, .8);
    color: #fff;
    top: 50%;
    width: calc(100% - 60px);
    margin: 200px 30px 10px;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
}

div#tel_lb .msg {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin: 0 20px 10px;
    font-weight: bold;
}

div#tel_lb .num {
    /*---修正追加(2019-10-03)---*/
    font-size: 30px;
    /*font-weight: bold;*/
}

/*---電話アイコン変更(2019-10-31)---*/
div#tel_lb .num:before {
    font-family: "icomoon";
    content: '\e958';
    font-size: .85em;
    margin-right: 5px;
    font-weight: normal;
    line-height: 1;
}

/*---フリーダイヤルアイコン追加(2019-10-31)---*/
div#tel_lb .num.free_dial:before {
    font-family: "icomoon";
    content: '\e900';
    font-size: .7em;
    vertical-align: baseline;
}

div#tel_lb .open {
    font-size: 14px;
    margin: 5px auto 15px;
}

div#tel_lb .btn a {
    display: block;
    font-size: 18px;
    background: #fff;
    font-weight: bold;
    color: #000033!important;
    border-radius: 8px;
    padding: 15px;
}

div#tel_lb .close:before {
    font-family: "icomoon";
    content: '\e92d';
    font-size: 26px;
    line-height: 1;
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(45deg);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップへ戻る
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footerFixed{
    right: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
リスト02（BOXタイプ）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* OL限定 */
ol.list02 > li{
    padding-left: 40px;
}
ol.list02 > li:before{
  width: 30px;
  line-height: 30px;
  font-size: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
FAQ詳細ページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.single-faq .articleTitleFAQ h1,
.single-faq .answer_ttl{
    font-size: 22px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.br_sp:before {
	content: "\A";
	white-space: pre; /* ← あわせてこれを指定しないと改行しない場合があるらしい */
}
.br_pc:before {
	content: "";
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
固定ページの記事タイトル下のナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contentsArea ul.family_navi {
	margin: 0 -10px 20px;
}
ul.family_navi {
    background: #333;
    overflow: hidden;
    padding: 10px 10px calc(10px - .5em);
}

ul.family_navi li {
    float: left;
    padding-right: 20px;
    margin-bottom: 0.5em;
}

ul.family_navi .children {
    display: none;
}

ul.family_navi li a {
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    color: #fff;
}

ul.family_navi li a:before {
    font-family: FontAwesome;
    content: '\f138';
    margin-right: 6px;
    color: #0099ff;
}

ul.family_navi li.current_page_item a,
ul.family_navi li a:hover {
    text-decoration: none;
    color: #0099ff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
固定ページ用プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page_promo2 {
	height: 100px;
	overflow: hidden;
	width: auto;
	min-width: 0;
}
.page_promo2 img{
    height:100%;
}
.page_promo2 .ttl{
    font-size: 22px;
}
.page_promo2 .sub_ttl{
    font-size: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿系一覧ページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post-type-archive-works ul.post_archive {
    margin-left: -10px;
}
.post-type-archive-works ul.post_archive li {
    width: calc(50% - 10px);
    margin-left: 10px;
    margin-bottom: 15px;
}
body.normal_post ul.post_archive li .area1 {
    width: 120px;
}
ul.post_archive li .cat a{
    font-size: 10px;
    padding: 5px;
    min-width: auto;
}
ul.post_archive li .img {
    margin-bottom: 5px;
}
.post-type-archive-works ul.post_archive li .img {
    padding-top: 80%;
}
body.normal_post ul.post_archive li .img {
    padding-top: 90px;
}
ul.post_archive li .ttl {
    font-size: 14px;
}
body.normal_post ul.post_archive li .ttl {
    margin: 5px auto;
}
ul.post_archive li .meta {
	margin-top:5px;
}
ul.post_archive li .meta,
ul.post_archive li .meta a {
	font-size:12px;
}
ul.post_archive li .date {
	float:none;
}
ul.post_archive li .tag {
	padding-left: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
関連記事
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.yarpp-related ol {
    margin-left: -5px;
    margin-right: -5px;
}
.yarpp-related ol li{
    width: calc((100% - 20px) / 2);
    margin: 0 5px 15px!important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
多数列リスト（構造のみを定義）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 2列リスト */
.col2 {
    margin-left: 0;
    display: block;
}

.col2 li {
    width: auto;
    margin-left: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
記事下のお問い合わせバナーエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact_bnrs > div > div:first-child {
    margin-bottom:15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
カスタム投稿タイプ「ギャラリー」
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.gallery li {
	width: 33.333%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スマホでは使用しない「Clear Fix」を非表示にする
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cf:before,
.cf:after {
    /*display:none;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
インスタウィジェットのタイトル部分がはみ出す現象の修正
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sb_instagram .sb_instagram_header {
    padding: 0!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用ボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.box01 {
    padding: 10px 15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用クラス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.m_btm_large {margin-bottom: 50px;}
.only_pc{display:none;}
.editorArea br.only_pc {/* この手法はIE未対応のため使用禁止 */
    /*content: "";*/
    /*display: inline;*/
    /*margin-right: -.333em;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* デフォルトでは「9998」になっているが、ヘッダーメニューを上に表示させるために1に矯正する */
.pushy-open-right .site-overlay {
    z-index: 1;
}

.h_menu {
    width: 30px;
    height: 10px;
    top: 0px;
    position: relative;
    cursor: pointer;
}

.menu1,.menu2,.menu3 {
    width: 22px;
    height: 3px;
    background-color: #888;
    position: absolute;
    display: block;
    left: 50%;
    margin-left: -11px;
}
.menu1 {
    top: 7px;
}
.menu2 {
    top: 15px;
}
.menu3 {
    top: 23px;
}

.menu1,.menu2,.menu3 {
    transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    /* Opera */
    -moz-transition: all 0.5s ease-out;
    /* Firefox */
    -webkit-transition: all 0.5s ease-out;
    /* GoogleChrome, Safari */
    -ms-transition: all 0.5s ease-out;
    /* IE */
}

.menuclick1 {
    top: 15px;
    -o-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

.menuclick2 {
    opacity: 0;
}

.menuclick3 {
    top: 15px;
    -o-transform: rotate(-315deg);
    -moz-transform: rotate(-3155deg);
    -webkit-transform: rotate(-315deg);
    -ms-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー固定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#headerFixArea {
    width: 100%;
    background: #fff;
    z-index: 2;
    position: relative;
}
#spTopNavi{
/*max-height:500px;*/
/*overflow:scroll;*//* この指定方法だと、スクロール不要の時にも表示されてしまう */
overflow:auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PCの4列・5列リスト（2列に変更）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.col4,
.col5{
    margin-left: -2%;
}
.col4 li,
.col5 li{
    float: left;
    width: 48%;
    margin-left: 2%;
    margin-bottom: 2%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドメニュー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sp .sideMenuCommon {
    /*margin-bottom: 15px;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイドバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.one_column #subArea {
    display:none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
「widget_black_studio_tinymce」ウィジェット内の画像
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.widget_black_studio_tinymce img{
height:auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TELバナー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.telBnr {
    position:relative;
    margin:15px auto;
    font-size:15px;
    text-align:center;
}
.telBnr .telNum{
    font-size:2em;
    font-weight:bold;
}
.telBnr a{
    display:block;
    background:#eee;
    line-height:1;
    color: #000;
    border: 1px solid #aaa;
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 1px 3px 5px 0px #ccc;
}
.telBnr a:hover{
    text-decoration: none;
}
.telBnr span{
    display:block;
    padding:8px;
}
.telBnr .lead01,
.telBnr .lead02{
    background:#ddd;
}
.telBnr a:after {
  font-family: FontAwesome;
  content: '\f0a6';
  font-size:3.5em;
  position:absolute;
  right:5px;
  bottom:0px;
  transform: rotate(-15deg);
}
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スマートフォン用の各種最適化
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ビジュアルエディタの画像キャプションの自動幅指定を矯正解除する */
.wp-caption{
	/*width:auto!important;*/
    font-size: 12px;
}

.fontM{
    /* font-size: 14px; */
}

/* 大サイズ指定されたリスト */
.large > li {
  font-size: 20px;
}
/* 見出し用に大サイズ指定されたフォントサイズをSP用に整形する */
[style *= "font-size: 12px;"]{
	font-size:10px!important;
}
[style *= "font-size: 14px;"]{
	font-size:12px!important;
}
[style *= "font-size: 16px;"]{
	font-size:14px!important;
}
[style *= "font-size: 18px;"]{
	font-size:16px!important;
}
[style *= "font-size: 20px;"]{
	font-size:16px!important;
}
[style *= "font-size: 22px;"]{
	font-size:18px!important;
}
[style *= "font-size: 24px;"]{
	font-size:18px!important;
}
[style *= "font-size: 24px;"]{
	font-size:20px!important;
}
[style *= "font-size: 26px;"],
[style *= "font-size: 28px;"],
[style *= "font-size: 30px;"]{
	font-size:20px!important;
}
[style *= "font-size: 40px;"],
[style *= "font-size: 50px;"],
[style *= "font-size: 60px;"],
[style *= "font-size: 70px;"],
[style *= "font-size: 80px;"],
[style *= "font-size: 90px;"]{
	font-size:30px!important;
}
[style *= "font-size: 100px;"],
[style *= "font-size: 110px;"],
[style *= "font-size: 120px;"],
[style *= "font-size: 130px;"],
[style *= "font-size: 140px;"],
[style *= "font-size: 150px;"],
[style *= "font-size: 160px;"],
[style *= "font-size: 170px;"],
[style *= "font-size: 180px;"],
[style *= "font-size: 190px;"],
[style *= "font-size: 200px;"]{
	font-size:40px!important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2列 3列 4列　共通
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[class*="container0"]:not(.sp_fix) > * {
    float: none;
    width:auto;
    margin-top: 25px;
    margin-left:0;/* for 3colmun */
}
[class*="container0"]:not(.sp_fix) > *:first-child {
    float: none;
    width:auto;
    margin-top: 0;
}
/* ↓↓↓画像を自動で中心揃えするための手法だが、ここでブロック化すると左右トリミングが出来なくなる */
.container00 img,
.container01 img,
.container02 img {
    /*display:block;*/
    /*margin-left:auto;*/
    /*margin-right:auto;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
バナーBOX
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bnrBox {
    margin: 15px 10px;
    text-align: center;
}
.bnrBox li{
    margin-top: 10px;
}
.bnrBox li:first-child{
    margin-top: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
エディタが自動生成するクラスへのスタイル指定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.alignleft,
.alignright {
	max-width:50%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
テーブルを１列に変型する（WPCFのスマホ最適化などに使用）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.change01 {
	padding-top:1px;
}
.change01 td,
.change01 th{
	display:block;
	margin-top:-1px;
	width: auto!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部(コンタクトフォーム)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.formTable th,
.formTable td {
	border:1px solid #ccc;
}
.formTable th {
    background:#eee;
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
テーブル01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.table01 th,
.table01 td{
	padding: 6px;
	font-size: 14px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
サイトフレーム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
    max-width: 640px;
    margin: 0 auto;
}
#titleArea{
	display:none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー（最上部の帯部分）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#headerArea {
    overflow:hidden;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
/* ボタンエリアのみを固定幅に */
#headerArea .logo {
	float:left;
	width: 100%;
	max-width: 330px;
	height: 36px;
	margin-right: -125px;
	padding-right: 130px;
	box-sizing: border-box;
	display: flex;/* 上下中央揃えにするための記述  */
	align-items: center;/* 上下中央揃えにするための記述  */
}
#headerArea .logo img{
	max-height:36px;
}
#headerArea .btns {
	font-size: 23px;
	overflow: hidden;
	float:right;
}
#headerArea .btns>p {
	float:left;
	cursor:pointer;
	text-align:center;
	border: 1px solid #b5b5b5;
	border-radius: 3px;
	background: #fefefe;
	/* background-image: linear-gradient(to bottom, #e6e6e6, #fefefe); */
	margin-left: 8px;
	width: 34px;
	height: 34px;
	line-height: 34px;
}
#headerArea .btns a,
#headerArea .btns span {
	color:#888;
}
#headerArea .btns>p.active{
	background:#ddd;
}
/* メールアイコンの位置調整(for iPhone) */
#headerArea .mail i,
#headerArea .calendar i {
    vertical-align: top;
    padding-top: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#promoArea {
/* margin-bottom:15px; */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダーメニューの開閉ナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#spTopNavi {
	/*display:none;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*#breadNav {
    margin: 10px 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コンテンツエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contentsArea {
    padding: 0 10px 15px;/* これをマージンに書き換えた場合、固定ヘッダーとの間に隙間が出来てしまい、メニューのスライドが綺麗に出来ない */
}
body:not(.home) #contentsArea {
    padding-top:15px;
}
#contentsArea2 {
	margin-bottom:15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
メインカラム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#mainArea .articleTitle.txt_type h1{
    font-size: 20px;
    margin: 10px 0 25px;
}
#mainArea .articleTitle.plain_type h1{
	padding: 0 0 20px;
}

#mainArea .articleDateArea {
}
#mainArea .articleMetaArea {
}
#mainArea .snsBtns {
    text-align: center;
	margin:30px auto;
}

.articleTitle .term_ttl {
    margin-left: 10px;
    font-size: 12px;
    padding-left: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
（PCの）サイドカラム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#subArea {
    margin-top: 15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お客様の声
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.voiceWrap {
    margin-bottom: 15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
固定ページ一覧メニュー(ヘッダー・フッター共通)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pushy {
    background: #fff;
}
.pushy a:hover {
    color: inherit;
}
.pushy ul:first-child {
    margin-top: 0;
}
.pageList li {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.pageList li:after{
    content:"\f054";
    font-family: FontAwesome;
    font-size:12px;
    color: #ccc;
    position:absolute;
    right: 10px;
    top:50%;
    margin-top:-8px;
}
/* 子ULがあることをJSで調べて、その場合のスタイル指定を修正する */
.pageList li.no_link:after{
    /*content:"\f078";*/
}
.pageList li.no_link.top:after{
    content:"\f077";
}
.pageList li.has_child:after{
    top: 22px;
}
.pageList ul.sub-menu {
    display: none;
    border-top: 1px solid #ddd;
}
.pageList ul.sub-menu li{
    border-top: 1px solid #ddd;
    border-left: 10px solid #ddd;
    border-bottom: 0;
}
.pageList ul.sub-menu li a{
	padding-left:3em;
}
.pageList ul.sub-menu li:first-child{
    border-top:none;
}
.pageList li a{
    display:block;
    padding: 13px 25px 13px 20px;
    position:relative;
    color:#333;
}
.pageList li.current-menu-item a {
    background: #f1f1f1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
記事上下ウィジェット
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#articleHeaderSection {
    margin: 15px 10px -15px;
}
#articleFooterSection {
    margin: 0 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer_wrap {
    margin: 0 10px;
}
.footer_wrap .footer_addr .addr {
    margin: 10px 0;
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッターインフォエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*#footerArea {
    margin: 15px 10px;

}
*#footerArea .infoBox {
    padding: 15px;
    background: #eee;
    border: solid 2px #ccc;
}
*#footerArea .header {
font-size: 18px;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
}
*#footerArea p {
margin-bottom: 10px;
}
*#footerArea .infoBox .btn {
	margin-top:10px;
}

p.copy_link {
    text-align: center;
    margin: 10px auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッターコピー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#copyArea{
    text-align:center;
    padding: 25px 10px;
}
#copyArea,
#copyArea a{
    color:#fff;
    font-family: sans-serif;
}
#copyArea span{
	display:inline-block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SNSボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footerSns{
    background:#e1e1e1;
    padding: 15px;
    margin:15px auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SNS(記事下のFB&TWカスタムシェアボタン)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.snsShare a{
line-height:5em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部サービス(Google Map & YouTube)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 縦横比約3:4で固定(横幅を300pxと仮定) */
iframe[src*="maps"],
iframe[src*="youtube"] {
  width: 100%;
  height: 225px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部サービス(ドロワーナビの幅を広げる)...iphone5でバグが出たため、一旦廃止
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
.pushy{width: 260px;}
.pushy-right {transform: translate3d(260px, 0, 0);}
.pushy-open-right #container,
.pushy-open-right .push {transform: translate3d(-260px, 0, 0);}
*/

