@charset "utf-8";

/*********************************

  01. Commons
  02. Contents-SP
  03. Contents-PC

********************************/

/*====================================================================

  01. Commons

====================================================================*/

html, body {
/*  height: 100%;*/
}

body {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 85%;
  line-height: 1.7;
  background: #fff;
}

/* clearfix */
.clearfix { width: 100%; }
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/* モーダルウィンドウ */
body.l_modalWindow {
  background: #f8f8f8;
}

/*
リンク
---------------------------------------------------------*/
a:link {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
  text-decoration: none;
}


/*====================================================================

  02. Contents-SP

====================================================================*/

.l_container, .md_drawerNav {
  width: 100%;
  /* 慣性スクロール（iOS用） */
  /*
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  */
  margin: 0 auto;
}
.md_mainNav_pc {
  /* 慣性スクロール（iOS用） */
  /* -webkit-overflow-scrolling: touch; */
}

/*
ヘッダ
---------------------------------------------------------*/
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: url(../img/bg_header_sp.png?202102) 0 0 repeat-x;
  z-index: 3;
}
.l_header.open {
  height: 55px;
}
.l_headerInner {
  margin: 10px 10px 0;
}

/* モアへのリンク */
.md_moreLink {
  display: none;
}

/* ヘッダーロゴ */
.md_logo {
  text-align: center;
}
.md_logo img {
  max-width: 155px;
}
.md_logoRead {
  display: none;
}

/* 1カラム用 */
.l_header.is_1column {
  background: #fff;
  box-shadow: 0 5px 10px #969393;
  height: auto;
}
.l_header.is_1column .md_logo img {
  max-width: 120px;
}
.l_header.is_1column .l_headerInner {
  display: flex;
  margin: auto;
  padding: 10px 8px;
}
.l_header.is_1column .md_accountMenu_biyori {
  position: relative;
  width: 100%;
}
.l_header.is_1column .md_accountMenu_biyori ul {
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l_header.is_1column .md_accountMenu_biyori li a {
  background: #cf4f4f;
  padding: 5px;
  border-radius: 0 3px 3px 0;
  color: #fff;
  font-size: 0.75rem;
}
.l_header.is_1column .md_accountMenu_biyori li:nth-child(1) a {
  background: #efe6db;
  padding: 5px 10px;
  border-radius: 3px 0 0 3px;
  color: #000;
}
.l_header.is_1column .md_accountMenu_biyori li a:hover {
  opacity: 0.5;
}

/* 会員登録、会員情報ボタン制御 */
.is_responsive_pc {
  display: none !important;
}
.is_responsive_sp {
  display: block !important;
}

/* サイト内検索 */
.md_searchInputBox {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50px;
  width: 0;
  padding: 10px 0 5px;
  /* アニメーション指定 */
  -webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.md_searchInputBox.open {
  width: 100%;
  background: #fff;
}
.md_searchInputBox input {
  background: url(../img/icon_search.png) 99% 50% no-repeat;
  background-size: 18px;
  width: 200px;
  padding: 4px 0;
  border: solid 1px #000;
}

/* SP用検索ボタン */
.md_searchBtn_sp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 55px;
  background: url(../img/icon_search.png) 50% 50% no-repeat;
  background-size: 20px;
}
.md_searchBtn_sp.open {
  background: url(../img/icon_menu-close.png) 50% 50% no-repeat;
  background-size: 25px;
}

/* SP用メニューボタン */
.md_menuBtn_sp {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 55px;
  background: url(../img/icon_menu.png) 50% 50% no-repeat;
  background-size: 25px;
  /* アニメーション指定 */
  -webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.md_menuBtn_sp.open {
  background: url(../img/icon_menu-close.png) 50% 50% no-repeat;
  background-size: 25px;
}

/* SP用ドロワーナビ*/
.md_drawerNav {
  position: fixed;
  overflow-y: scroll;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 2;
  /* アニメーション指定 */
  -webkit-transition: all .6s ease-in-out;
     -moz-transition: all .6s ease-in-out;
       -o-transition: all .6s ease-in-out;
          transition: all .6s ease-in-out;
}
.md_drawerNav.open {
  top: 55px;
  opacity: 1;
  filter: alpha(opacity=100);
}
.l_drawerNavInner {
  margin-bottom: 80px;
}
.md_logoRead_drawer {
  width: 100%;
  margin: 15px 0 10px 0;
  text-align: center;
}
.md_logoRead_drawer img {
  max-width: 90%;
  text-align: center;
}
.md_drawerMenu_about {
  width: 100%;
  background: #efe6db;
  border-bottom: solid 1px #a9a9a9;
}
.md_drawerMenu_about a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}
.md_categolyWrap {
  position: relative;
  width: 100%;
}
.md_categolyWrap ul {
  padding: 40px 30px 40px;
}

/* びよりメンバーボタン */
.md_biyoriMemberBtn {
  padding: 10px 30px;
}
.md_biyoriMemberBtn img {
  max-width: 100%;
}
/* ログイン＆ログアウト */
.md_drawerMenu_account {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 10px 30px 0;
}
.md_drawerMenu_account a {
  display: table-cell;
  padding: 10px;
  text-align: center;
}
.md_drawerMenu_account a:nth-child(1) {
  background: #efe6db;
  border-radius: 3px 0 0 3px;
}
.md_drawerMenu_account a:nth-child(2) {
  background: #cf4f4f;
  border-radius: 0 3px 3px 0;
  color: #fff;
}
.md_accountMenu {
  display: none;
}

/* カテゴリ */
.md_categolyWrap ul:before {
  content: "カテゴリー";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.7rem;
}
.md_categolyWrap li,
.md_drawerMenu.md_other li {
  border-bottom: solid 1px #a9a9a9;
  list-style: none;
  line-height: 3em;
}
.md_categolyWrap li {
  padding-left: 30px;
}
.md_drawerMenu.md_other li {
  padding-left: 20px;
}
.md_drawerMenu.md_other {
  /* margin-bottom: 30px; */
}
.md_drawerNav .md_mainMenu {
  display: block;
  background-position: 0 50%;
  background-repeat: no-repeat;
  font-size: unset;
}
.md_drawerNav .md_mainMenu a {
  display: block;
}
.md_mainMenu.md_twitter a.is_pc,
.md_mainMenu.md_instagram a.is_pc {
  display: none;
}

.md_drawerNav .md_mainMenu.md_home {
  background-image: url(../img/icon_home.png);
}
/*
.md_drawerNav .md_mainMenu.md_gohan {
  background-image: url(../img/icon_gohan.png);
}
*/
.md_drawerNav .md_mainMenu.md_kodomo {
  background-image: url(../img/icon_kodomo.png);
}
.md_drawerNav .md_mainMenu.md_odekake {
  background-image: url(../img/icon_odekake.png);
}
/*
.md_drawerNav .md_mainMenu.md_karada {
  background-image: url(../img/icon_karada.png);
}
*/
.md_drawerNav .md_mainMenu.md_kurashi {
  background-image: url(../img/icon_kurashi.png);
}
.md_drawerNav .md_mainMenu.md_hataraku {
  background-image: url(../img/icon_hataraku.png);
}
.md_drawerNav .md_mainMenu.md_snap {
  background-image: url(../img/icon_snap.png);
}
.md_drawerNav .md_mainMenu.md_shop-service {
  background-image: url(../img/icon_shop.png);
}
.md_drawerNav .md_mainMenu.md_osusume {
  background-image: url(../img/icon_star.png);
}
.md_drawerNav .md_mainMenu.md_twitter {
  background-image: url(../img/icon_tw.svg);
  background-position: 1% 50%;
}
.md_drawerNav .md_mainMenu.md_instagram {
  background-image: url(../img/icon_insta.svg);
  background-size: 22px;
  background-position: 1% 50%;
}


.md_moreLink_drawer {
  width: 100%;
  /* background: #d1cbc5; */
  /* border-top: solid 1px #a9a9a9; */
  border-bottom: solid 1px #a9a9a9;
}
.md_moreLink_drawer a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

/* グローバルナビ */
.md_mainNav_pc.open {
  display: none;
}
.md_mainNav_pc {
  position: absolute;
  top: 53px;
  left: 0;
  width: 100%;
  height: 30px;
  overflow-x: auto;
  margin: 5px 0;
}
.md_mainNav_pc ul {
  display: table;
  height: 100%;
  white-space: nowrap;
}
.md_mainMenu {
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 0.9rem;
}
.md_mainMenu a {
  display: block;
  box-sizing: border-box;
  padding: 0 20px 0 0;
  text-decoration: none;
}
/*
.md_mainMenu:first-child a {
  padding: 0 15px 0 0;
}
*/
.md_mainMenu_about {
  display: none;
}
.md_mainMenu_about a {
  text-decoration: none;
}
/* .md_mainMenu.md_gohan.md_current a, */
.md_mainMenu.md_kodomo.md_current a,
.md_mainMenu.md_odekake.md_current a,
/* .md_mainMenu.md_karada.md_current a, */
.md_mainMenu.md_kurashi.md_current a,
.md_mainMenu.md_hataraku.md_current a,
.md_mainMenu.md_snap.md_current a,
.md_mainMenu.md_shop-service.md_current a,
.md_mainMenu.md_osusume.md_current a {
  color: #aaa;
}

/*
コンテンツ
---------------------------------------------------------*/
.l_contents {
  margin-top: 95px;
  margin-top: 20px !important;
}
.l_contents.is_1column {
  margin-top: auto;
  padding-top: 70px;
}

/*
メインコンテンツ
---------------------------------------------------------*/
.l_contentsMain {
  width: 100%;
}

/* お知らせ */
.md_infoWrap {
  margin: 0 10px 20px 10px;
}
.md_infoList {
  padding: 15px 10px 5px 70px;
  border: solid 1px #f1caca;
  background: #fefafa;
}
.md_infoTitle {
  position: relative;
  margin-bottom: 10px;
  line-height: 1.2em;
  font-size: 0.9rem;
}
.md_infoTitle span {
  position: absolute;
  top: 0;
  left: -70px;
  display: inline-block;
  width: 60px;
  /* padding: 0 10px; */
  margin-right: 10px;
  background: #d15858;
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
}

.l_contentsMainList {
  margin-bottom: 50px;
  box-sizing: border-box;
  font-size: 0;
}

/********** トップページ **********/
/* 記事一覧 */
.md_article,
.md_article.md_article_large:nth-child(2) {
  position: relative;
  display: inline-block;
  width : 49.9%; /* 50%だとandroidブラウザでカラム落ちする為 */
  margin-bottom: 20px;
  vertical-align: top;
}
.md_article a {
  display: block;
}
.md_article.md_article_large:nth-child(1) {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.md_articleInfoWrap {
  padding: 5px;
}
.md_article.md_article_large:nth-child(1) .md_articleInfoWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* 画像 */
.md_article_img img {
  max-width: 100%;
}
.md_article.md_article_large:nth-child(1) .md_article_img {
  position: relative;
}

/* タイトル */
.md_article_ttl,
.md_article_large .md_article_ttl {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4rem;
}
.md_article_large:nth-child(1) .md_article_ttl {
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1.5rem;
}

/* 出典元 */
.md_article_infoSource {
  display: inline-block;
  margin-right: 10px;
  padding: 0 5px;
  font-size: 0.8rem;
  color: #706d6d;
  background: #f2f2f2;
}

/* 日付 */
.md_article_date {
  display: inline-block;
  color: #706d6d;
  font-size: 0.8rem;
}
.md_article.md_article_large:nth-child(1) .md_article_date {
  color: #ddd;
}


/********** カテゴリページ **********/
.md_categoryTitle {
  margin: 10px 10px 0 10px;
  padding-left: 30px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  font-size: 1rem;
  line-height: 2em;
}
/*
.md_categoryTitle.md_gohan {
  background-image: url(../img/icon_gohan.png);
}
*/
.md_categoryTitle.md_kodomo {
  background-image: url(../img/icon_kodomo.png);
}
.md_categoryTitle.md_odekake {
  background-image: url(../img/icon_odekake.png);
}
/*
.md_categoryTitle.md_karada {
  background-image: url(../img/icon_karada.png);
}
*/
.md_categoryTitle.md_kurashi {
  background-image: url(../img/icon_kurashi.png);
}
.md_categoryTitle.md_hataraku {
  background-image: url(../img/icon_hataraku.png);
}
.md_categoryTitle.md_snap {
  background-image: url(../img/icon_snap.png);
}
.md_categoryTitle.md_shop-service {
  background-image: url(../img/icon_shop.png);
}
.md_categoryTitle.md_osusume {
  background-image: url(../img/icon_star.png);
}

/* 記事一覧 */
.md_listArticle {
  position: relative;
  width: 100%;
  padding: 0 10px;
}
.md_listArticle a {
  display: block;
  padding: 15px 0;
  border-bottom: dotted 1px #939190;
}
.md_listArticleInfoWrap {
  display: inline-block;
  width: 64.9%;
  padding-left: 10px;
  vertical-align: top;
}

/* 画像 */
.md_listArticle_img {
  display: inline-block;
  width: 35%;
  vertical-align: top;
}
.md_listArticle_img img {
  max-width: 100%;
}

/* タイトル */
.md_listArticle_ttl {
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2rem;
}

/* 日付 */
.md_listArticle_date {
  display: inline-block;
  color: #706d6d;
  font-size: 0.8rem;
}

/* 本文リード */
.md_listArticle_body {
  display: none;
}



/* NEWアイコン */
.md_article_new:after {
  content: url(../img/icon_new.png);
  position: absolute;
  top: 0;
  left: 0;
  /* アニメーション指定 */
  -webkit-transform: scale(0.5);
     -moz-transform: scale(0.5);
      -ms-transform: scale(0.5);
  -webkit-transform-origin: 0 0;
     -moz-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
}

/* カテゴリアイコン */
.md_article_category {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 1px 8px;
  font-size: 0.8rem;
  border-radius: 5px;
  font-size: 0.7rem;
  color: #fff;
}
/*
.md_icon_gohan {
  background: #e6a458;
}
*/
.md_icon_kodomo {
  background: #c590b3;
}
.md_icon_odekake {
  background: #7da476;
}
/*
.md_icon_karada {
  background: #88afbb;
}
*/
.md_icon_kurashi {
  background: #c0be7b;
}
.md_icon_hataraku {
  background: #88afbb;
}
.md_icon_pr {
  background: #cd8383;
}

/* びよりメンバー限定アイコン */
.md_icon_member {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 10px;
  background: #d15858;
  border-radius: 2px;
  font-size: 0.75rem;
  color: #fff;
}

/* リンクバナー */
.md_articleBanner,
.md_articleBanner03 {
  margin-bottom: 20px;
}
.md_articleBanner02_2 {
  margin-bottom: 10px;
}
.md_articleBanner {
  display: flex;
  justify-content: center;
}
.md_articleBanner a {
  padding: 20px 4px;
  background: #fefafa;
  display: inline-block;
  flex: 1;
}
.md_articleBanner a:nth-child(1) {
  padding-left: 8px;
}
.md_articleBanner a:nth-child(2) {
  padding-right: 8px;
}
.md_articleBanner img,
.md_articleBanner02_2 img,
.md_articleBanner03 img {
  max-width: 100%;
}
/* IE.hack */
_:-ms-lang(x)::-ms-backdrop, .md_articleBanner img {
  height: 100% !important;
}

/* PRコンテンツ */
.md_prWrap {
  width: 100%;
  margin: 40px 0;
  background: #f4ecdb;
  list-style: none;
}
.md_prInner {
  padding: 15px 5px;
}
.md_prTitle {
  margin: 10px 0;
  font-size: 0.9rem;
  line-height: 1.2rem;
}

/* もっと読む */
.md_moreBtn {
  /* width: 50%; */
  width: 55%;
  margin: 40px auto 0;
  list-style: none;
}
.md_moreBtn p {
  margin: 10px;
  /* border: solid 1px #000; */
  text-align: center;
  font-size: 1rem;
}
.md_moreBtn a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #fff;
  background: #cf4f4f;
  border-radius: 3px;
}
.md_moreBtn a:hover {
  /* background: #eee; */
  opacity: 0.7;
  color: #fff;
}

/* Infinite Scroll のローディング要素 */
#infscr-loading {
  margin: 20px auto;
  text-align: center;
  font-size: 1rem;
}

/* 詳細ページの本文エリア */
.md_detailArticle_head {
  width: 100%;
}
.md_detailArticle_head img {
  display: block;
  max-width: 100%;
}
.md_detailArticle_head .md_articleInfoWrap {
  padding: 5px 10px;
}
.md_detailArticle_head .md_article_ttl {
  margin: 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5rem;
}
.md_detailArticle_head .md_article_date {
  color: #706d6d;
}
.md_articleInfoInner {
  text-align: right;
}
.md_detailArticle {
  overflow: hidden;
  word-wrap: break-word;
}
.md_detailArticle .md_categoryLink {
  margin: 10px;
  text-align: right;
}
.md_detailArticle .md_categoryLink a {
  color: #000;
}
.md_detailArticle p {
  margin: 20px 10px;
  font-size: 0.95rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.md_detailArticle a {
  color: #00f;
}
.md_detailArticle h2 {
  margin: 15px 10px;
  padding-bottom: 5px;
  border-bottom: solid 1px #c9b393;
  font-size: 1rem;
}
.md_detailArticle img {
  box-sizing: border-box;
  padding: 0 10px;
  max-width: 100%;
}
.md_detailArticle h5 {
  margin: 0 10px;
  text-align: center;
  font-weight: 100;
  color: #999;
}

/* 続きを読むの展開*/
.md_moreBtn.open {
  display: none;
}
.md_detailArticleMoreWrap {
  overflow: hidden;
  word-wrap: break-word;
}
.md_detailArticleMoreWrap .md_detailArticle {
  /* アニメーション指定 */
  -webkit-transition: all .6s ease-in-out;
     -moz-transition: all .6s ease-in-out;
       -o-transition: all .6s ease-in-out;
          transition: all .6s ease-in-out;
}
.md_detailArticleMoreWrap .md_detailArticle {
  height: 0;
  -webkit-transform: translate3d(0, -100%, 0);
     -moz-transform: translate3d(0, -100%, 0);
       -o-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
.md_detailArticleMoreWrap .md_detailArticle.open {
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* メインバナー */
.md_mainBanner {
  margin: 20px 0;
  font-size: 0;
  border-collapse: collapse;
  text-align: center;
}
.md_mainBanner p {
  display: inline-block;
  width: 100%;
  padding: 0 10px 10px;
}
.md_mainBanner p img {
  max-width: 100%;
}

/* 関連記事 */
.md_relatedArticle {
  margin-bottom: 30px;
}
.md_relatedArticle h2 {
  margin: 15px 10px;
  padding-bottom: 5px;
  border-bottom: solid 1px #c9b393;
  font-size: 1rem;
}
.md_relatedArticle ul {
  margin: 15px 10px;
}
.md_relatedArticle li {
  margin: 0;
  padding: 15px 0;
  border-bottom: dotted 1px #d7cabc;
  font-size: 0.95rem;
  line-height: 1.2rem;
  list-style: none;
}

/* ソーシャルボタン */
.md_socialBtnWrap > * {
  /* vertical-align: bottom; */
}
.md_socialBtnWrap {
  position: relative;
  margin: 20px 40px;
  padding: 10px;
  background: #f9f3ee;
  line-height: 0;
  text-align: center;
}
.md_socialBtn_facebook {
  margin-bottom: 10px;
}
.fb_iframe_widget > span {
  height: 20px !important;
  vertical-align: text-top !important;
}
.md_socialBtnWrap:before,
.md_socialBtnWrap:after {
  position: absolute;
  top: 0;
  content: '';
  width: 7px;
  height: 100%;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
}
.md_socialBtnWrap:before {
  left: 0;
  border-left: 1px solid #999;
}
.md_socialBtnWrap:after {
  right: 0;
  border-right: 1px solid #999;
}
.md_socialBtn_twitter,
.md_socialBtn_line {
  display: inline-block;
}

/* ソーシャルリンク */
.md_socialLink {
  display: flex;
  justify-content: center;
}
.md_socialLink .is_tw {
  width: 40px;
  margin: 0 10px;
}
.md_socialLink .is_insta {
  width: 38px;
  margin: 0 10px;
}


/********** びよりSNAP／カテゴリページ **********/
.l_contentsMain_fluid .l_contentsMainList {
  text-align: center;
}
.md_snap_categoryTitle {
  margin: 0 0 20px;
  padding: 10px;
  background: #efe6db;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  font-weight: 100;
}
.md_snapUpdate {
  margin: 0 10px 10px;
  text-align: right;
}
.md_snap_article {
  display: inline-block;
  /* 2列均等 */
  width : 45.3%;
  margin-right: 10px;
  vertical-align: top;
}
.md_snap_article:nth-child(2n-1) {
  margin-left: 10px;
}

/* 画像 */
.md_snap_article_img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  /* border: solid 1px #939190; */
  overflow: hidden;
}
.md_snap_article_img.is_pos_center {
  background-position: center center;
}
.md_snap_article_img.is_pos_left {
  background-position: left;
}
.md_snap_article_img.is_pos_right {
  background-position: right;
}
.md_snap_article_img.is_pos_top {
  background-position: center top;
}
.md_snap_article_img.is_pos_bottom {
  background-position: center bottom;
}

/* タイトル */
.md_snap_article_ttl {
  margin-bottom: 5px;
  padding: 5px;
  font-size: 0.75rem;
  line-height: 1.2rem;
  text-align: center;
}


/********** びよりSNAP／詳細ページ **********/
/* 一覧へ戻る */
.md_backBtn {
  width: 50%;
  margin: 40px auto 40px;
  list-style: none;
}
.md_backBtn p {
  margin: 10px;
  border: solid 1px #000;
  text-align: center;
  font-size: 1rem;
}
.md_backBtn a {
  display: block;
  padding: 5px;
  background: #fff;
  color: #000;
  text-decoration: none;
}
.md_backBtn a:hover {
  background: #eee;
}


/********** びよりSNAP／モーダルウィンドウ **********/
.md_hamaPhoto img {
  max-width: 100%;
}


/*
サブコンテンツ
---------------------------------------------------------*/
.l_contentsSub {
  width: 100%;
}

/* AD広告 */
.md_adBanner.ad1,
.md_adBanner.ad2 {
  margin-bottom: 30px;
  text-align: center;
}
.md_adBanner.ad1 img {
  max-width: 300px;
}
/* 回転バナー*/
.md_adBanner.ad1 .is_random {
  display: none;
}

/* ピックアップ */
.md_pickup {
  width: 100%;
}
.md_pickupWrap {
  margin: 0 0 50px 10px;
  font-size: 0;
}
.md_pickupTitle {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 0;
  border-top: solid 1px #d1cece;
  border-bottom: solid 1px #d1cece;
  background: #fefafa;
}
.md_pickupArticle {
  display: inline-block;
  box-sizing: border-box;
  width: 49.9%; /* 50%だとandroidブラウザでカラム落ちする為 */
  margin: 10px 0;
  padding-right: 10px;
  border-bottom: none;
  vertical-align: top;
}
.md_pickupArticle_ttl {
  font-size: 0.75rem;
}
.md_pickupArticle_img {
  width: 100%;
  margin-left: 0;
  margin-bottom: 5px;
}
.md_pickupArticle_img img {
  max-width: 100%;
}

/* おすすめ記事ランキング */
.md_ranking {
  width: 100%;
}
.md_rankingWrap {
  margin: 0 10px 50px;
}
.md_rankingArticle {
  margin: 15px 0;
  padding-bottom: 15px;
  border-bottom: dotted 1px #939190;
  list-style: none;
}
.md_rankingArticle a {
  display: block;
  overflow: hidden;
}
.md_rankingTitle {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 0;
  border-top: solid 1px #d1cece;
  border-bottom: solid 1px #d1cece;
  background: #fefafa;
}
.md_rankingArticle_ttl {
  box-sizing: border-box;
  float: left;
  width: 65%;
  padding-left: 30px;
  font-size: 0.75rem;
}
.md_rankingArticle_ttl.rank1 {
  background: url(../img/icon_rank1.png) 0 50% no-repeat;
  background-size: 20px;
}
.md_rankingArticle_ttl.rank2 {
  background: url(../img/icon_rank2.png) 0 50% no-repeat;
  background-size: 20px;
}
.md_rankingArticle_ttl.rank3 {
  background: url(../img/icon_rank3.png) 0 50% no-repeat;
  background-size: 20px;
}
.md_rankingArticle_ttl.rank4 {
  background: url(../img/icon_rank4.png) 0 50% no-repeat;
  background-size: 20px;
}
.md_rankingArticle_ttl.rank5 {
  background: url(../img/icon_rank5.png) 0 50% no-repeat;
  background-size: 20px;
}
.md_rankingArticle_img {
  float: right;
  box-sizing: border-box;
  width: 35%;
  padding-left: 10px;
}
.md_rankingArticle_img img {
  max-width: 100%;
}

/* 注目キーワード（タグクラウド） */
.widget-header {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 0;
  border-top: solid 1px #d1cece;
  border-bottom: solid 1px #d1cece;
  background: #fefafa;
}
.widget-content {
  margin: 10px 10px 40px;
}
.md_detailArticleMore .widget-content {
  margin-bottom: 0;
}
.widget-content ul {
  list-style: none;
  font-size: 0;
}
.widget-content ul li {
  display:inline-block;
  border: solid 1px #ccc;
  margin: 0 5px 5px 0;
  padding: 5px;
  font-size: 0.9rem;
}
.widget-content ul li a {
  color: #000;
}
/*
.widget-content ul li.rank-1  { background: rgba(241, 202, 202, 0.1); }
.widget-content ul li.rank-2  { background: rgba(241, 202, 202, 0.2); }
.widget-content ul li.rank-3  { background: rgba(241, 202, 202, 0.3); }
.widget-content ul li.rank-4  { background: rgba(241, 202, 202, 0.4); }
.widget-content ul li.rank-5  { background: rgba(241, 202, 202, 0.5); }
.widget-content ul li.rank-6  { background: rgba(241, 202, 202, 0.6); }
.widget-content ul li.rank-7  { background: rgba(241, 202, 202, 0.7); }
.widget-content ul li.rank-8  { background: rgba(241, 202, 202, 0.8); }
.widget-content ul li.rank-9  { background: rgba(241, 202, 202, 0.9); }
.widget-content ul li.rank-10 { background: rgba(241, 202, 202, 1.0); }
*/
.md_keywordMore {
  text-align: right;
}


/* タグ別記事一覧ページ */
.md_tagTitle {
  margin: 10px 10px 0 10px;
  background-position: 0 50%;
  background-repeat: no-repeat;
  font-size: 1rem;
  line-height: 1.5em;
}
#current-page {
  display: none;
}
.content-nav {
  font-size: 1rem;
  text-align: center;
  margin: 20px 0 0 0;
}

/*
フッタ
---------------------------------------------------------*/
.l_footer {
  width: 100%;
  background: #efe6db;
}
.l_footerLayer1 {
  display: none;
}

.l_footerLayer2 {
  width: 100%;
  background: #d7cabc;
}
.l_footerLayer2Inner {
  max-width: none;
  margin: 0 20px;
  padding: 10px 0;
}
.md_footerTxt.md_footerTxt_normal,
.md_copyright {
  margin: 5px 0;
  font-size: 0.8rem;
}
.md_footerTxt.md_footerTxt_small {
  font-size: 0.7rem;
}


/*====================================================================

  03. Contents-PC

====================================================================*/

@media print, screen and (min-width: 769px) {

  .l_container {
    width: 100%;
    /* 慣性スクロール（iOS用） */
    /*
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: auto;
    */
    margin: 0 auto;
    /* background: #f8f5eb; */
  }

  /*
  リンク
  ---------------------------------------------------------*/
  a:hover {
    color: #aaa;
    text-decoration: none; /* underline; */
  }
  a:hover img,
  a:hover .md_snap_article_img {
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
  }
  a .md_article_img img,
  a .md_listArticle_img img {
    -webkit-transition: -webkit-transform 0.2s linear;
       -moz-transition: -moz-transform 0.2s linear;
         -o-transition: -o-transform 0.2s linear;
            transition: transform 0.2s linear;
  }
  a:hover .md_article_img img,
  a:hover .md_listArticle_img img {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
  }

  /*
  ヘッダ
  ---------------------------------------------------------*/
  .l_header {
    position: absolute;
    height: 210px;
    background: url(../img/bg_header_pc.png?202102) 0 0 repeat-x;
  }
  .l_headerInner {
    position: relative;
    max-width: 980px;
    height: 100px;
    margin: 0 auto;
    transition: all .2s linear;
  }

  /* ヘッダーロゴ */
  .md_logo {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
  }
  .md_logo img {
    max-width: 300px;
  }
  .md_logoRead {
    display: block;
    position: absolute;
    left: 334px;
    bottom: 0;
  }
  .md_logoRead img {
    max-width: 300px;
  }

  /* 1カラム用 */
  .l_header.is_1column .l_headerInner {
    height: auto;
  }
  .l_header.is_1column .md_logo {
    position: static;
    left: auto;
    bottom: auto;
  }

  /* コンパクト版ヘッダー */
  .l_header.is_small {
    position: fixed;
    height: 115px;
    /* background-position: 0 -68px; */
    background-image: url(../img/bg_header_pc_small.png);
  }
  .l_header.is_small + .l_contents {
    /* margin-top: 120px; */
  }
  .l_header.is_small .l_headerInner {
    height: 50px;
  }
  .l_header.is_small .md_accountMenu {
    top: 10px;
  }
  .l_header.is_small .md_searchInputBox {
    top: 4px;
    right: 260px;
    bottom: auto;
  }
  .l_header.is_small .md_logoRead {
    display: none;
  }
  .l_header.is_small .md_logo {
    top: 10px;
    bottom: auto;
  }
  .l_header.is_small .md_logo img {
    max-width: 140px;
  }
  .l_header.is_small .md_mainNav_pc {
    top: 58px;
  }

  /* 会員登録、会員情報ボタン制御 */
  .is_responsive_pc {
      display: block !important;
  }
  .is_responsive_sp {
      display: none !important;
  }

  /* Googleカスタム検索 デザイン調整 */
  .gsc-control-cse.gsc-control-cse-ja {
    padding: 0 20px 0 0;
  }
  .gsc-selected-option-container.gsc-inline-block {
    box-sizing: content-box;
  }

  /* サイト内検索 */
  .md_searchInputBox {
    display: block;
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: auto;
    /* border: solid 1px #000; */
  }
  .md_searchInputBox input {
    background: url(../img/icon_search.png) 99% 50% no-repeat;
    background-size: 18px;
    width: 200px;
    padding: 0;
  }

  /* ログイン＆ログアウト */
  .md_accountMenu {
    position: absolute;
    top: 25px;
    right: 0;
    display: table;
    table-layout: fixed;
    width: 230px;
  }
  .md_accountMenu a {
    display: table-cell;
    padding: 5px;
    text-align: center;
    font-size: 0.8rem;
  }
  .md_accountMenu a:nth-child(1) {
    background: #efe6db;
    border-radius: 3px 0 0 3px;
    color: #000;
  }
  .md_accountMenu a:nth-child(1):hover {
    opacity: 0.7;
  }
  .md_accountMenu a:nth-child(2) {
    background: #cf4f4f;
    border-radius: 0 3px 3px 0;
    color: #fff;
  }
  .md_accountMenu a:nth-child(2):hover {
    opacity: 0.7;
  }

  /* SP用検索ボタン */
  .md_searchBtn_sp {
    display: none;
  }

  /* SP用メニューボタン */
  .md_menuBtn_sp {
    display: none;
  }

  /* SP用ドロワーナビ */
  .md_drawerNav {
    display: none;
  }

  /* グローバルナビ */
  .md_mainNav_pc {
    top: 142px;
    height: 40px;
  }
  .md_mainMenu {
    background-position: 8px 50%;
    background-repeat: no-repeat;
  }
  /*
  .md_mainMenu:first-child {
    background-position: 0 50%;
  }
  */
  .md_mainMenu a {
    padding: 3px 15px 1px 40px;
    border-bottom: solid 3px rgba(255,255,255,0);

  /* アニメーション指定 */
  -webkit-transition: all .2s linear;
     -moz-transition: all .2s linear;
       -o-transition: all .2s linear;
          transition: all .2s linear;

  }
  /*
  .md_mainMenu:first-child a {
    padding: 3px 15px 1px 30px;
    border-bottom: solid 3px #fff;
  }
  */
  .md_mainMenu:not(:first-child) a {
    border-left: dotted 1px #939190;
  }
  .md_mainMenu.md_twitter a.is_sp,
  .md_mainMenu.md_instagram a.is_sp {
    display: none;
  }
  .md_mainMenu.md_twitter a.is_pc,
  .md_mainMenu.md_instagram a.is_pc {
    display: block;
    padding-left: 10px;
    padding-right: 0;
    border-left: none;
  }
  .md_mainMenu.md_home {
    background-image: url(../img/icon_home.png);
  }
  .md_mainMenu.md_twitter a.is_pc img,
  .md_mainMenu.md_instagram a.is_pc img {
    width: 24px;
  }
  /*
  .md_mainMenu.md_gohan {
    background-image: url(../img/icon_gohan.png);
  }
  */
  .md_mainMenu.md_kodomo {
    background-image: url(../img/icon_kodomo.png);
  }
  .md_mainMenu.md_odekake {
    background-image: url(../img/icon_odekake.png);
  }
  /*
  .md_mainMenu.md_karada {
    background-image: url(../img/icon_karada.png);
  }
  */
  .md_mainMenu.md_kurashi {
    background-image: url(../img/icon_kurashi.png);
  }
  .md_mainMenu.md_hataraku {
    background-image: url(../img/icon_hataraku.png);
  }
  .md_mainMenu.md_snap {
    background-image: url(../img/icon_snap.png);
  }
  .md_mainMenu.md_shop-service {
    background-image: url(../img/icon_shop.png);
  }
  .md_mainMenu.md_osusume {
    background-image: url(../img/icon_star.png);
  }
  .md_mainMenu.md_home a:hover {
    border-bottom: solid 2px #ccc;
  }
  /*
  .md_mainMenu.md_gohan a:hover,
  .md_mainMenu.md_gohan.md_current a {
    border-bottom: solid 2px #e6a458;
  }
  */
  .md_mainMenu.md_kodomo a:hover,
  .md_mainMenu.md_kodomo.md_current a {
    border-bottom: solid 2px #c590b3;
  }
  .md_mainMenu.md_odekake a:hover,
  .md_mainMenu.md_odekake.md_current a {
    border-bottom: solid 2px #7da476;
  }
  /*
  .md_mainMenu.md_karada a:hover,
  .md_mainMenu.md_karada.md_current a {
    border-bottom: solid 2px #88afbb;
  }
  */
  .md_mainMenu.md_kurashi a:hover,
  .md_mainMenu.md_kurashi.md_current a {
    border-bottom: solid 2px #c0be7b;
  }
  .md_mainMenu.md_hataraku a:hover,
  .md_mainMenu.md_hataraku.md_current a {
    border-bottom: solid 2px #88afbb;
  }
  .md_mainMenu.md_snap a:hover,
  .md_mainMenu.md_snap.md_current a {
    border-bottom: solid 2px #6fd2d7;
  }
  .md_mainMenu.md_shop-service a:hover,
  .md_mainMenu.md_shop-service.md_current a {
    border-bottom: solid 2px #d76f6f;
  }
  .md_mainMenu.md_osusume a:hover,
  .md_mainMenu.md_osusume.md_current a {
    border-bottom: solid 2px #d76fcf;
  }
  .md_mainMenu_about {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 0.75rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  /*
  コンテンツ
  ---------------------------------------------------------*/
  .l_contents {
    max-width: 980px;
    margin: 210px auto 50px;
    margin-top: 40px !important;
  }
  .l_contents.is_1column {
    max-width: none;
    margin: 0 auto;
  }

  /*
  メインコンテンツ
  ---------------------------------------------------------*/
  .l_contentsMain {
    float: left;
    margin-right: -310px;
    padding-right: 310px;
    box-sizing: border-box;
  }
  /* 全幅用 */
  .l_contentsMain_fluid {
    box-sizing: border-box;
  }

    /* お知らせ */
  .md_infoWrap {
    margin: 0 20px 20px 0;
  }

  /********** トップページ **********/
  /* 記事一覧 */
  .md_article {
    /* 3列均等 */
    width : 33.33333%;
    width : -webkit-calc(100% / 3);
    width : calc(100% / 3);
    padding-right: 20px;
  }
  .md_article.md_article_large:nth-child(1),
  .md_article.md_article_large:nth-child(2) {
    width: 50%;
    margin-bottom: 40px;
  }
  .md_article.md_article_large:nth-child(1) .md_articleInfoWrap {
    position: static;
    bottom: auto;
    left: auto;
    padding: 5px;
    background: none;
    color: #000;
  }
  .md_article.md_article_large:nth-child(1) a:hover .md_articleInfoWrap {
    color: #aaa;
  }
  .md_articleInfoWrap,
  .md_article.md_article_large:nth-child(1) .md_articleInfoWrap {
    padding: 5px 0;
  }

  /* 画像 */
  .md_article_img {
    border: solid 1px #939190;
    overflow: hidden;
  }

  /* タイトル */
  .md_article_ttl {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
  .md_article_large:nth-child(1) .md_article_ttl,
  .md_article_large .md_article_ttl {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
  }

  /* 日付 */
  .md_article.md_article_large:nth-child(1) .md_article_date,
  .md_article_date {
    color: #706d6d;
  }

  /* リンクバナー */
  .md_articleBanner,
  .md_articleBanner02_2,
  .md_articleBanner03 {
    padding-right: 20px;
  }
  .md_articleBanner {
    margin-bottom: 30px;
  }
  .md_articleBanner03 {
    margin-top: -15px;
    margin-bottom: 20px;
  }

  /* PRコンテンツ */
  .md_prWrap {
    background: none;
  }
  .md_prInner {
    margin-right: 20px;
    border-top: dotted 1px #939190;
    border-bottom: dotted 1px #939190;
  }

  /********** カテゴリページ **********/
  .md_categoryTitle {
    margin: 0 20px 10px 0;
    padding-left: 50px;
    border: solid 1px #000;
    background-position: 10px 50%;
  }

  /* 記事一覧 */
  .md_listArticle {
    padding: 0 20px 0 0;
  }
  .md_listArticle a {
    padding: 15px 0;
  }
  .md_listArticleInfoWrap {
    padding-left: 20px;
  }

  /* 画像 */
  .md_listArticle_img {
    border: solid 1px #939190;
    overflow: hidden;
  }

  /* タイトル */
  .md_listArticle_ttl {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* 本文リード */
  .md_listArticle_body {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.2rem;
    color: #706d6d;
  }


  /* 詳細ページの本文エリア */
  .md_detailArticle_head {
    /* position: static; */
    padding-right: 20px;
    /* background: none; */
  }
  .md_detailArticle_head img {
    /* opacity: 1; */
  }
  .md_detailArticle_head .md_articleInfoWrap {
    /* position: static; */
    padding: 5px 0;
    color: #000;
  }
  .md_detailArticle_head .md_article_ttl {
    /* margin: 10px 0; */
    font-size: 1.8rem;
    /* font-weight: 700; */
    line-height: 2.5rem;
  }
  .md_detailArticle_head .md_article_date {
    margin: 10px 0;
    /* color: #706d6d; */
    text-align: right;
  }
  .md_detailArticle .md_categoryLink {
    display: none;
  }
  .md_detailArticle p {
    /* margin: 20px 20px 20px 0; */
    margin-right: 20px;
    font-size: 1rem;
  }
  .md_detailArticle h2 {
    margin: 20px 20px 15px 0;
    padding-bottom: 5px;
    font-size: 1.1rem;
  }
  .md_detailArticle img {
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
  .md_detailArticle h5 {
    margin: 0 20px 0 0;
  }

  /* メインバナー */
  .md_mainBanner {
    margin: 20px 20px 20px 0;
  }
  .md_mainBanner p {
    width: 45%;
    padding: 10px;
  }

  /* YCD */
  #taboola-below-article-thumbnails-01,
  #taboola-below-article-thumbnails-02 {
    margin-right: 20px;
  }

  /* 関連記事 */
  .md_relatedArticle {
    margin-right: 20px;
  }
  .md_relatedArticle h2 {
    margin: 15px 0;
    padding: 5px;
    background: #efe4d0;
    border-bottom: none;
    font-size: 1rem;
  }
  .md_relatedArticle ul {
    margin: 15px 10px;
  }
  .md_relatedArticle li {
    font-size: 1rem;
  }

    /* 続きを読むの展開*/
  .md_detailArticleMore p {
    margin: 0 20px 0 0;
  }
  .md_detailArticleMore.open p {
    margin: 20px 20px 20px 0;
  }

  /* ソーシャルボタン */
  .md_socialBtnWrap {
    margin: 20px 40px 20px 20px;
    padding: 20px;
  }
  .md_socialBtn_facebook {
    display: inline-block;
    margin-bottom: 0;
  }
  .l_contentsMain_fluid .md_socialBtnWrap {
    margin-right: 20px;
  }

  /********** びよりSNAP／カテゴリページ **********/
  .md_snap_categoryTitle {
    padding: 5px 10px;
  }
  .md_snap_article {
    /* 4列均等 */
    width : 24%;
  }
  .md_snap_article:nth-child(2n-1) {
    margin-left: 0;
  }
  .md_snap_article:nth-child(4n) {
    margin-right: 0;
  }

  /* 画像 */
  .md_snap_article_img {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    /* border: solid 1px #939190; */
    overflow: hidden;
  }

  /********** びよりSNAP／詳細ページ **********/
  .md_modalInner {
    margin-left: 20px;
  }

  /********** びよりSNAP／モーダルウィンドウ **********/
  .md_modalInner {
  }
  .md_hamaPhoto {
    float: right;
    margin-left: 20px;
  }
  .md_hamaPhoto img {
    max-width: 280px;
  }

  /*
  サブコンテンツ
  ---------------------------------------------------------*/
  .l_contentsSub {
    position: relative; /* ネガティブマージン リンク不具合対応 */
    float: right;
    width: 300px;
    margin-left: 10px;
  }

  /* ピックアップ */
  .md_pickupWrap {
    margin: 0 0 50px 0;
  }
  .md_pickupTitle {
    padding: 5px 0;
    margin-bottom: 30px;
    border: solid 1px #000;
    text-align: center;
  }
  .md_pickupArticle {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 0;
    border-bottom: dotted 1px #939190;
    list-style: none;
  }
  .md_pickupArticle a {
    display: block;
    overflow: hidden;
  }
  .md_pickupArticle_ttl {
    float: right;
    width: 64%;
    font-size: 0.75rem;
  }
  .md_pickupArticle_img {
    float: left;
    width: 33%;
    margin-bottom: 15px;
  }

  /* おすすめ記事ランキング */
  .md_rankingWrap {
    margin: 0 0 50px 0;
  }
  .md_rankingTitle {
    padding: 5px 0;
    margin-bottom: 30px;
    border: solid 1px #000;
    text-align: center;
  }

  /* 注目キーワード（タグクラウド） */
  .widget-header {
    margin-bottom: 30px;
    border: solid 1px #000;
    text-align: center;
  }
  .widget-content {
    margin: 0 0 35px;
  }

  /* タグ別記事一覧ページ */
  .md_tagTitle {
    margin: 0 20px 10px 0;
    padding-left: 10px;
    border: solid 1px #000;
    line-height: 2em;
  }
  .content-nav {
    margin: 20px 20px 0 0;
  }

  /*
  フッタ
  ---------------------------------------------------------*/

  /* フッタナビ */
  .l_footerLayer1 {
    position: relative;
    display: block;
    max-width: 980px;
    margin: 0 auto;
  }
  .l_footerLayer1Inner {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px 20px;
  }
  .md_footerLogo,
  .md_footerNav.md_navSet1,
  .md_footerNav.md_navSet2 {
    display: table-cell;
    vertical-align: top;
  }
  .md_footerLogo {
    vertical-align: middle;
  }
  .md_footerLogo img {
    max-width: 200px;
  }
  .md_navSet1_col1,
  .md_navSet1_col2 {
    display: inline-block;
    vertical-align: top;
  }
  .md_navSet1_col1 {
    margin-right: 20px;
  }

  .md_footerNav {
    border-left: solid 1px #858888;
    padding-left: 15px;
  }
  .md_footerNav li {
    list-style: none;
    font-size: 0.8rem;
    line-height: 2rem;
  }
  /* モアへのリンク */
  .md_moreLink {
    display: block;
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 0.8rem;
    border: solid 1px #000;
  }
  .md_moreLink a {
    display: block;
    padding: 0 10px;
    text-decoration: none;
  }
  .md_moreLink a:hover {
    background: #eee;
  }

  /* フッタコンテンツ */
  .l_footerLayer2 {
    width: 100%;
    background: #d7cabc;
  }
  .l_footerLayer2Inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0;
  }
  .md_footerTxt.md_footerTxt_normal,
  .md_copyright {
    margin: 5px 0;
    font-size: 0.8rem;
  }
  .md_footerTxt.md_footerTxt_small {
    font-size: 0.7rem;
  }


}