@charset "utf-8";
/*----------------------------------------------------
    共通css
----------------------------------------------------*/
.name-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem 0; /* ← マージンはwrap全体に付ける */
  text-align: center;
}

.name {
  color: #333d47;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0; /* h3 のデフォルトマージンを打ち消す */
}

.furigana {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.2;
  margin-top: 0.3rem;
}

.furigana2 {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.name-wrap2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 5rem 0; /* ← マージンはwrap全体に付ける */
  text-align: center;
}

.letw {
    margin: 0.8rem 0 0 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-all;
}


.is-hidden {
  display: none;
}
.list-btn {
    background: #1c437e;
    color: #fff;
    font-size: 16px;
    width: 140px;
    line-height: 25px;
    padding: 1rem;
    border-radius: 100px;
    position: absolute;
    transform: translate(0, -50%);
    right: 43%;
}
.list-btn:before,
.list-btn:after {
content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background: #fff;
    width: 16px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.4s;
}
.list-btn-closed:before {
     transform: rotate(-90deg);
}
.list-btn-open:before {
    transform: rotate(180deg);
}









/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {

#related-article.related-article01-frame {
    width: 100rem;
}



}
/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/

.list-btn {
    right: 30%;
    padding: 0.5rem;
    font-size: 14px;
}
#related-article .related-article01-list {
    margin-bottom: 3rem;
}
    #related-article.related-article01-frame {
        padding: 2rem 2rem 4rem;
        width: 90%;
    }
	
	
	
	
	
	
	
	



}