@charset 'UTF-8';
/* =========================================================================================================================================== */
/*
/* メンバー用共通デザイン
/*
/* =========================================================================================================================================== */
/*----------------------------------------------------------*/
/* 【部品】
/* 名前   : メンバーメニューバー
/* セレクタ : membernavi
/*----------------------------------------------------------*/
#membernavi > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 39px;
  background: #eaeaea;
  margin-bottom: 0;
}
.home #membernavi > ul {
  margin-bottom: 32px;
}
#membernavi > ul li.member {
  flex: 1 0 0%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  color: #333333;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
}
#membernavi > ul li.mypage,
#membernavi > ul li.horse {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 115px;
}
#membernavi > ul li.mypage > a,
#membernavi > ul li.horse > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: normal;
  padding-right: 17px;
}
#membernavi > ul li.mypage > a { background: #21238a; }
#membernavi > ul li.horse > a  { background: #2060a8; }

#membernavi > ul li.mypage > a::before,
#membernavi > ul li.mypage > a::after,
#membernavi > ul li.horse > a::before,
#membernavi > ul li.horse > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 1px;
  background: white;
  top: 18px;
}
#membernavi > ul li.mypage > a::before,
#membernavi > ul li.mypage > a::after  { right: 13px; }
#membernavi > ul li.horse > a::before,
#membernavi > ul li.horse > a::after   { right: 20px; }
#membernavi > ul li.mypage > a::after,
#membernavi > ul li.horse > a::after {
  transform: rotate(90deg);
}
#membernavi > ul li.open.mypage > a::after,
#membernavi > ul li.open.horse > a::after {
  transform: rotate(0deg);
  transition: all 0.5s ease;  
}

/* サブメニュー */
#membernavi .submenu {
  overflow: hidden;
  position: absolute;
  top: 39px;
  width: 230px;
  right: 0;
  z-index: 1;
  max-height: 0;
  padding: 0 20px;
}
#membernavi .horse .submenu  { background: #5c99c8; }
#membernavi .mypage .submenu { background: #5b74aa; }
#membernavi .open .submenu {
  max-height: 300px;
  padding-top: 14px;
  padding-bottom: 20px;
  transition: all 0.5s ease;
}
#membernavi .submenu li a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  padding-left: 15px;
  padding-bottom: 8px;
  color: white;
  text-decoration: none;
}
#membernavi .submenu li a::before,
#membernavi .submenu li a::after {
  content: "";
  width: 6px;
  height: 1px;
  background: white;
  display: block;
  position: absolute;
  left: 3px;
}
#membernavi .submenu li a::before {
  top: 8px;
  transform: rotate(36deg);
}
#membernavi .submenu li a::after {
  top: 11px;
  transform: rotate(-36deg);
}
#membernavi .submenu li.button a {
  font-size: 12px;
  margin-top: 4px;
  padding-top: 4px;
  padding-left: 25px;
  padding-bottom: 4px;
  color: #21238a;
  background: #ededed;
}
#membernavi .submenu li.button a::before,
#membernavi .submenu li.button a::after {
  content: "";
  width: 6px;
  height: 1px;
  background: #21238a;
  display: block;
  position: absolute;
  left: 14px;
}
#membernavi .submenu li.button a::before {
  top: 13px;
}
#membernavi .submenu li.button a::after {
  top: 16px;
}


/*----------------------------------------------------------*/
/* 【部品】
/* 名前   : 投稿リスト@会員用
/* セレクタ : lst_posts_member
/*----------------------------------------------------------*/
.lst_posts_member {
  padding-bottom: 10px;
  position: relative;
}

.lst_posts_member h2{
  background: #ba2b31;
  width: 178px;
  margin-left: 20px;
  height: 30px;
  border: none;
  padding-top: 4px;
  font-size: 16px;
  padding-left: 9px;
  position: relative;
  font-weight: bold;
  color: white;
  text-align: left;
}
.lst_posts_member h2::before {
  content: "";
  display: block;
  position: absolute;
  border-right: 6px solid transparent;
  border-left: 6px solid #ba2b31;
  border-bottom: 15px solid #ba2b31;
  border-top: 15px solid transparent;
  width: 0;
  height: 0;
  top: 0;
  right: -12px;
}
.lst_posts_member .h2_bottom {
  width: calc(100% - 40px);
  height: 1px;
  margin: 0 auto;
  margin-top: 2px;
  background: #ba2b31;
  position: relative;
}
.lst_posts_member .h2_bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ba2b31;
  top: 3px;
  position: absolute;
}
.lst_posts_member span {
  font-size: 12px;
  text-align: right;
  display: block;
  padding-top: 5px;
}

.lst_posts_member span img {
  width: 10px;
  height: 10px;
  transform: translate(0, -50%);
  margin-right: 3px;
}
.lst_posts_member .posts article a { 
  display: block;
  width: calc(100% - 40px);
  font-size: 1.4rem;
  line-height: 1.45;
  margin: 0 auto;
  padding-top: 6px;
  padding-left: 2px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #333333;
  text-decoration: none;
  color: #343434;
}
.lst_posts_member .posts article:first-child a { 
  padding-top: 12px;
  padding-bottom: 9px;
}
.lst_posts_member .posts article:last-child a { 
  border-bottom: none;
}
.lst_posts_member .posts article .day {
  font-weight: normal;
  padding-top: 3px;
  font-size: 14px;
}
.lst_posts_member .posts article .name { 
  font-size: 14px;
  font-weight: normal;
  color: #21238a;
  padding-top: 0;
}
.lst_posts_member .posts article .name img { 
  width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 3px;
    transform: translate(0, -50%);
}
.lst_posts_member .posts article .name .new { 
  display: inline-block;
  font-size: 1.2rem;
  padding: 0 8px;
  background-color: #AC0837;
  line-height: 1.75;
  color: white;
  margin-left: 5px;
}
.lst_posts_member .more a {
  display: block;
  color: black;
  padding: 0 20px;
  text-decoration: underline;
  text-align: right;
  font-size: 12px;
  padding-right: 24px;
  padding-top: 1px;
}
.lst_posts_member .more a .fas {
  padding-right: 4px;
  font-size: 13px;
  padding-top: 5px;
  color: #ba2b31;
}

/* 青色 */
.lst_posts_member.blue h2{
  background: #1b2986;
}
.lst_posts_member.blue h2::before {
  border-left: 6px solid #1b2986;
  border-bottom: 15px solid #1b2986;
}
.lst_posts_member.blue .h2_bottom {
  background: #1b2986;
}
.lst_posts_member.blue .h2_bottom::after {
  background: #1b2986;
}
.lst_posts_member.blue .more a .fas {
  color: #1b2986;
}