.same-category-dropdown{
     /* デフォルトのスタイルを解除 */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  /* スタイル */
  display: inline-block;
  width: 100%; /* 幅 */
    height:50px;
  margin: 1em 0; /* 前後の余白 */
  padding: 1em ; /* 文字周りの余白 */
  cursor: pointer; /* カーソルを指に */
  line-height: 1.4; /* 行高 */
  font-weight: 600; /* 太字に */
    /*color: #63acb7;*/
  border-radius: 10px; /* 角丸 */
  background-color: #f7f9fb; /* 背景色 */
    /* background-color:#63acb7;
  border: solid 1px #e1e8ef; /* 枠線 */
  box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */
  /* 三角マークを作る */
  background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
  background-size: 5px 5px, 5px 5px;
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-repeat: no-repeat;
}
 
.same-category-title{
    color:white;
 padding: 1rem 2rem;
}
 
/*  カテゴリアーカイブでの並び替えリンク部分*/
.result form{display: inline;}
.result input[type="submit"]{
    color: #aa9a85;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: none;
    background: none;
    border: none;
    font-size:1.2em;
    text-decoration: underline;
    cursor: pointer;
}
.sort_current{
    font-weight: bold;
    text-decoration: none;
}
/*  ここまで*/

/* newのマーク */

.heading-archive{
	  display: flex;
  flex-direction: column;
}

.eyecatch__new{
	text-align:center;
	width:10rem;
  background     : #ff0000;
	border-radius:10%;
  color          : #ffffff;
  font-weight    : bold;
  font-size      : 3rem !important;
  padding        : 5px;
  transform      : scale(0.6)
                   translateX(-30%);
  animation      : newAnime .7s infinite alternate;
}
@keyframes newAnime {
   0% { color      : #E35391;
        background : #ffffff;
      }
 100% { color      : #ffffff;
        background : #E35391;
      }
}

/*読者登録ボタン*/

.napbizapp {
  text-align: left;
  padding: 10px;
  overflow: hidden;
}
.napbizapp:after {
  content: "";
  display: block;
  clear: both;
}
.napbizapp p {
  margin: 0;
}
.napbizapp a:after {
  display: none;
}
.napbizapp__icon {
  float: left;
  border-radius: 10%;
  overflow: hidden;
  margin: 0 3% 0 0 !important;
  width: 25% !important;
  height: auto !important;
  max-width: 120px !important;
}
.napbizapp__detail {
  display: inline-block;
  font-size: 20px;
  line-height: 1.5;
  width: 72%;
  max-width: 72%;
}
.napbizapp__detail:after {
  content: "";
  display: block;
  clear: both;
}
.napbizapp__name {
  font-size: 16px;
  line-height: 1.5em !important;
  max-height: 3em;
  overflow: hidden;
}
.napbizapp__info {
  font-size: 12px !important;
}
.napbizapp__links {
  float: left;
  height: 40px;
  margin-top: 8px;
  white-space: nowrap;
}
.napbizapp__aslink img {
  margin-right: 10px;
  height: 40px;
  width: 135px;

}
.napbizapp__gplink img {
  height: 40px;
  width: 134.5px;
}

/* 前後記事リンク */
.prev_next_nav {
    opacity:0;
    z-index:9999;
    padding: 0 20px;
    height:33px;
    padding: 0 20px;
    border-radius: 5px;
    background: #233A70;
    color:white;
    -webkit-box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 30%);
}
.fixed {
    opacity:1;
    position: fixed;
    top: 1% !important;
        left: 20%;
    width: 400px;
}
.clearfix {
    display:flex;
    flex-wrap: nowrap;
}
.prev_next_nav li {
    width:100%;
    list-style: none;
    float: left;
    margin:10px;
    text-align:center;
}
 
@media screen and (max-width: 480px) {
.fixed {
        left: 10%;
    width: 80%;
}
}

@media screen and (min-width: 780px) {
.prev_next_nav {
    width: 500px;
	}
}

@media screen and (min-width: 1400px) {
.fixed {
    left: 25%;
}
}

 /* 新着順 人気順などのソート */
#menu input[type="submit"]{
    color: #233A70;
    box-shadow: none;
    background: none;
    border: none;
    font-size:1em;
    cursor: pointer;
}

#menu{
  list-style-type: none;
  height: 40px;
  margin-bottom: 10px;
  padding: 0;
	display:flex;
	align-items: center;
}
#menu li{
    z-index: 70;
  position: relative;
  width: 30%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#menu li a{
  display: block;
  color: #233A70;
  font-size: 1em;
}
#menu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 5px 0;
  padding: 0;
}

#menu li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#menu li ul li a{
  padding: 13px 15px;
  background: #233A70;
  text-align: left;
  color:white;
 white-space: nowrap;
}
#menu li:hover > a{
  font-weight:bold;
}
#menu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}
#menu li:hover ul li:first-child{
  border-top: 0;
}
#menu li:hover ul li:last-child{
  border-bottom: 0;
}

@media screen and (max-width: 480px) {
	#menu li ul li a {
    padding: 10px;
	}
	
	#menu li:hover ul li{height:30px;
	width:300px;
	}

.category-select{
	flex-basis:50%;
}

}
/* 記事ソートここまで */


form .sort_current {
        border-bottom: 1px solid #233A70 !important;
}

/* コメントボタン */
.comment-button {
  background-color: #233A70; 
}

.comment-button:hover {
	color:#233A70;
}
