@charset "utf-8";

p{
  font-size: 16px;
  color: #666;
}

a{
  color: #666;
}

h2{
  font-size: 24px;
  color: #666;
}
/* フォント */

.container{
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 100px;
  width: 90%;
  height: auto;
  border: solid 5px #666;
  border-radius: 100px;
  position: relative;
  background-color: #faf3ee;
}
/* 大枠設定 */

.round_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #666; 
  border-radius: 50%; 
  margin-top: 20px;
  margin-left: 90%;
  }

.round_btn::before, .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; 
  height: 22px; 
  background: #666; 
}

.round_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
/* 右上閉じるボタン設定 */

.news_pic{
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  
}
.news_pic img{
  width: 60%;
}
/* 記事写真 */

.news_text{
  width: 80%;
  margin: 60px auto 100px;
  height: 100%;
}
/* 記事本文 */

.news_bottom{
  width: 200px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 50px;
  border: solid 3px #666;
  border-radius: 100px;
  text-align: center;
}

.news_bottom p{
  font-weight: bold;
}
/* 下閉じるボタンのスタイル設定 */



/* ■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■◇■ */
/* 以下からメディアクエリ */

@media (max-width: 768px) {
  
  p{
    font-size: 14px;
    color: #666;
  }
  h2{
    font-size: 18px;
    color: #666;
  }
  /* フォント */

  .container{
    margin: 0 auto;
    margin-top: 20px;
  }
  /* 大枠設定 */

  .round_btn{
    display: none;
  }
  /* 右上閉じるボタン設定 */

}