@charset "UTF-8";

html,
body {
  font-size: 13px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  letter-spacing: 1px;
  word-break: break-all;
  word-wrap: break-word;

  /*文字詰め*/
  font-feature-settings: "palt";
  color: #000;
  background: url(../img/bg.jpg);
	background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/*-------------------------------

#comment

-------------------------------*/

#comment {}

picture img {
  margin: 0 auto;
}

#tweets {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.tweet_box {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    width: 250px;
    margin: 10px;
}

.user_prof {
    font-size: 15px;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    padding: 0 0 5px;
    border-bottom: 1px dotted #ccc;
}

.user_image{
    margin: 0 10px 0 0;
}

.user_image img {
    border-radius: 50%;
    width: 48px;
    box-sizing: border-box;
}

.user_media {
    width: 230px;
    margin: 10px auto 0;
    text-align: center;
}

.user_media img {
    max-width: 230px;
}

.grid {
    margin: 10px auto 80px;
}

.grid-item {
    background: #fff;
    width: 250px;
    /* border: 1px solid #ccc; */
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
}

.tweet_text {
    font-size: 13px;
    line-height: 1.4;
}

.tweet_date {
    text-align: right;
    margin: 15px 0 0;
    font-size: 13px;
}

.twitter_link {
    margin: 5px 0 0;
    font-size: 12px;
    text-align: right;
}

.twitter_link a {
    color: #008abe;
}

@media (max-width: 400px) {
  .tweet_box {
    width: 290px;
  }

	.grid {
    width: 90%!important;
		margin: 20px auto;
}
	.grid-item{
		width: 100%!important;
		margin: 0 auto 15px;
	}
}

/*----------------------------------------------

btn

-----------------------------------------------*/
#comment-btn-container{
    width: 100%;
	padding: 15px 0;
  margin: 0 auto;
	text-align:center;
	position: relative;
    z-index: 2;
}

#comment-btn-container li{
	display: inline-block;
    width: 200px;
    margin: 0 10px 10px 0;
    box-sizing: border-box;
}

#comment-btn-container li:last-child{
	margin:0 auto;
}

#comment-btn-container li a{
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    color:#fff;
    background-color:#f6759c;
    text-decoration: none;
    padding: 20px 10px;
    font-weight: normal;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 100px;
    transition: 1.0s ;
}

#comment-btn-container li a:hover{
    opacity: .8;
}

.grid-item:nth-child(n + 22) {
    display: none;
}

@media (max-width: 812px) {

	#comment-btn-container li{
		width: 80%;
		margin: 0 auto 15px;
    }

    .grid-item:nth-child(n + 11) {
        display: none;
    }
}