/*===============================================
@media以外の所は全てのサイズで読み込まれます。
===============================================*/

/* 今月の色(15件のはず)：ff137b */

@charset "UTF-8";

@media screen and (min-width: 769px){
img{
  max-width: 100%;
  height: auto;
  width /769px/:auto;
  }
#container{
  width:100%;
  }
}

@media screen and (max-width: 768px){
img{
  max-width: 100%;
  height: auto;
  width /768px/:auto;
  }
#container{
  width:100%;
  }
}

@media screen and (max-width:640px){
img{
  max-width: 100%;
  height: auto;
  width /640px/:auto;　
  }
#container{
  width:100%;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される
   スマートフォンで見たときは"sp"のclassがついた画像が表示される*/
.pc { display: block !important; }
.sp { display: none !important; } 

/*** 画面の横幅が768pxまで ***/
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/*** 画面の横幅が640pxまで ***/
@media only screen and (max-width: 640px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* body */
body {
  margin: 0;         /* 余白の削除 */
  padding: 0;        /* 余白の削除 */
  position: relative;
  background-image: url("../images/mangashou/back_award.png"); /* 画像ファイルの指定 */
  background-position: center center;          /* 画像を常に天地左右の中央に配置 */
  background-repeat: no-repeat;   /* 画像をタイル状に繰り返し表示しない */
  background-attachment: fixed;   /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-size: cover;         /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-color: #ffffff;      /* 背景画像が読み込まれる前に表示される背景のカラー */
  text-align:center;              /* 中央揃え */
}
@media (max-width: 768px){
  body {
	background: url('../images/mangashou/back_award.png') 0 0 no-repeat;
	background-attachment: fixed;
	background-size: contain;
  }
}
@media (max-width: 640px){
  body {
	background: url('../images/mangashou/back_award.png') 0 0 no-repeat;
	background-attachment: fixed;
	background-size: contain;
  }
}

/*===============================================

　ヘッダー

===============================================*/
/*ヘッダーまわりはご自由に*/
header {
  position: fixed;
  top: 50px;/*基準を画面の→上に*/
  right: 50px;
  margin: 0;/*余白が入らないように*/
  z-index: 10;
}
@media (max-width: 768px){
  header {
	position: fixed;
	top: 30px;/*基準を画面の→上に*/
	right: 8px;
	margin: 0 auto;/*余白が入らないように*/
  }
}
@media (max-width: 640px){
  header {
	position: fixed;
	top: 30px;/*基準を画面の→上に*/
	right: 8px;
	margin: 0 auto;/*余白が入らないように*/
  }
}

/*===============================================

　ドロワーメニュー と ハンバーガーメニュー

===============================================*/

#nav-drawer {

}

.btn{
  
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 50%;
  border: double 6px #ffffff;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
  background: #3e3e3e;
  box-shadow: 0 0 8px #ffffff;
  font-size: calc(150% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.btn:hover{
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.sp-btn{
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  border: double 4px #ffffff;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
  z-index: 10;
  background:#3e3e3e;
}

.sp-btn:hover{
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

/* チェックボックス等を非表示に */
.nav-unshown {
  display:none;
}

/* アイコンのスペース */
#nav-open {
  display: inline-block;
  vertical-align: top;
}

/* ハンバーガーアイコンをCSSだけで表現 */
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/* 閉じる用の薄黒カバー */
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/* メニューの中身 */
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; /*最前面に*/
  width: 90%;/*右側に隙間を作る*/
  max-width: 330px;/*最大幅*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}
@media (max-width: 768px){
  #nav-content {
	width: 90%;/*右側に隙間を作る*/
  }
}
@media (max-width: 640px){
  #nav-content {
	width: 60%;/*右側に隙間を作る*/
  }
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
  
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*===============================================

　TOPページ

===============================================*/
.main {
  padding:10px;
  text-align:center;
}
@media (max-width: 768px){
  .main {
	padding:10px;
  }
}
@media (max-width: 640px){
  .main {
	padding:18px;
  }
}

/* 最新号紹介 */
.newcover {
  width:923px;
  margin:0 auto;
  text-align:center;
  color:#000000;
  margin-bottom:100px;
}

@media (max-width: 768px){
  .newcover {
	width:100%;
  }
}
@media (max-width: 640px){
  .newcover {
	width:100%;
  }
}

.newcover p {
  font-size: calc(120% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
  
.cresit {
  text-align:right;
  color:#666666;
  margin:0;
  padding:0;
}

.cresit p{
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  margin:0;
  padding:0;
}
@media (max-width: 768px){
  .cresit p {
	color:#666666;
	font-size: calc(80% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .cresit p {
	color:#666666;
	font-size: calc(80% + 0.5vw) ;
  }
}

.container{
  padding:10px;
  margin-top:20px;
}


/*===============================================

　ラインナップ（作家名紹介、話毎の紹介など）

===============================================*/

.lineup{
  text-align:center;
  color: #7e7e7e;
  margin:0px 5px 0px 5px;
  padding:0px ;
}

@media (max-width: 768px){
  .lineup {
	text-align:center;
	margin:0 auto;
  }
}

@media (max-width: 640px){
  .lineup {
	text-align:center;
	margin:0 auto;
  }
}

.lineup_top{
  text-align:center;
  color: #7e7e7e;
  margin:0px 5px 0px 5px;
  padding:0px ;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

@media (max-width: 768px){
  .lineup {
	text-align:center;
	margin:0 auto;
  }
}

@media (max-width: 640px){
  .lineup {
	text-align:center;
	margin:0 auto;
  }
}

.lineup2 p{
  color: #7e7e7e;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.lineup a {
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.lineup_link {
  text-align: right;
  color: #7e7e7e;
  font-size: calc(70% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  padding:0px;
  margin:0px 5px 20px; 5px;
}

.lineup_link a {
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.lineup_title2 p{
  text-align:left;
  color:#494949;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #ff137b;/*左線*/
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  padding:0px 5px;
}

/*===============================================

　テキスト関連（各ページ共通？のようなもの）

===============================================*/

/* 各ページタイトル */
.page-title{
  color: #3f3f3f;
  font-size: calc(120% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

@media (max-width: 768px){
  .page-title {
	color: #3f3f3f;
	font-size: calc(110% + 0.5vw) ;
	font-family: "Noto Sans Japanese";
  }
}

@media (max-width: 640px){
  .page-title {
	color: #3f3f3f;
	font-size: calc(120% + 0.5vw) ;
	font-family: "Noto Sans Japanese";
  }
}

/* BNの作品名、プレゼントの見出し */
.title {
  text-align:center;
  color: #3f3f3f;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .title {
	color: #3f3f3f;
	font-size: calc(100% + 0.5vw) ;
	font-family: "Noto Sans Japanese";
  }
}

@media (max-width: 640px){
  .title {
	color: #3f3f3f;
	font-size: calc(100% + 0.5vw) ;
	font-family: "Noto Sans Japanese";
  }
}

.title p {
  font-size: calc(120% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

/*===============================================

　リンク関連（各ページ共通？）

===============================================*/
.link {
  margin:0px 5px 20px; 5px;
}

.link a {
  color: #7e7e7e;
  font-size: calc(40% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.link p {
  color: #7e7e7e;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}


.box {
  width:80%;
  margin: 0 auto;
  text-align:center;
  font-size: calc(120% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.column {
  width: 100%;
}
@media (max-width: 768px){
  .column {
	height: 100vh;
  }
}
@media (max-width: 640px){
  .column {
	height: 100vh;
  }
}


.box-info {
  overflow: hidden;
  }

.menu {
  width:100%;
  padding:0.5em 0 0.5em 0;
  text-align:center;
}
.menu p {
  color: #3f3f3f;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .menu p {
	font-size: calc(90% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .menu p {
	font-size: calc(90% + 0.5vw) ;
  }
}

/*===============================================

　フッター

===============================================*/

#footer{
  color: #3f3f3f;
  width:100%;
  padding:0.5em 0 0.5em 0;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

/*===============================================

　メニューボタン

===============================================*/
/* リンクホバー */
.menu a {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  color:#666666;
}

.menu a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #f895a7;
  transition: .3s;
}
.menu a:hover::after {
  width: 100%;
}

/*===============================================

　ニュース部分とバックナンバー部分
　（PC横2列、スマホ縦並び）

===============================================*/

.attention{
  text-align:left;
  padding:0 5px 0 5px;
}

.attention p{
  font-size: calc(40% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  color:#797979;  
}

.attention hr {
  border: dashed 0.5px #888;
}

@media (max-width: 768px){
  .attention p {
  color: #000000;
  font-size: calc(40% + 0.5vw) ;
  }
}

@media (max-width: 640px){
  .attention p {
  color: #000000;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  }
}

.boxCh {
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 768px){
  .boxCh {
	margin-bottom:20px;/* いらないかも */
  }
}

@media (max-width: 640px){
  .boxCh {
	margin-bottom:20px;
  }
}

.boxCh p{
  text-align:left;
}

.boxCh img{
  width:100%;
}


/*===============================================

　プレゼントページ

===============================================*/

h3 {
  font-size: calc(75% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  text-align:left;
  padding:0px 5px;
  margin:0px 0px 20px 0px;
  color: #494949;/*文字色*/
  background: -webkit-repeating-linear-gradient(-45deg, #ffeaff, #ffeaff 4px,#ffdbdb 3px, #ffdbdb 8px);
  background: repeating-linear-gradient(-45deg, #ffeaff, #ffeaff 4px,#ffdbdb 3px, #ffdbdb 8px);
/*  background: transparent;背景透明に*/
  border-left: solid 5px #ff3960;/*左線*/
}

.border_present1 {
  padding:10px;
  border: solid 1px #ff3960;
  border-radius: 15px;
  background: #fffff4;
}

h2 {
  font-size: calc(75% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  text-align:left;
  padding:0px 5px;
  margin:0px 0px 20px 0px;
  color: #494949;/*文字色*/
  background: -webkit-repeating-linear-gradient(-45deg, #eaffff, #eaffff 4px,#dbedff 3px, #dbedff 8px);
  background: repeating-linear-gradient(-45deg, #eaffff, #eaffff 4px,#dbedff 3px, #dbedff 8px);
/*  background: transparent;背景透明に*/
  border-left: solid 5px #00a7db;/*左線*/
}

.border_present2 {
  padding:10px;
  border: solid 1px #00a7db;
  border-radius: 15px;
  background: #f4ffff;
}

/* 購入特典 */
.boxWrap2 .boxCh2 {
  width: 40%;
  margin: 10px;
  background:#fff;
}
@media (max-width: 768px){
  .boxWrap2 .boxCh2 {
	width: 40%;
  }
}
@media (max-width: 640px){
  .boxWrap2 .boxCh2 {
	width: 80%;
  }
}

/* コミックス購入特典 3列 ここから*/
.title-box3{
  margin: 1em 0;
  padding: 1em;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #555;
  width: 25%;
  margin: 20px;
  background:#fff;
}
@media (max-width: 768px){
  .title-box3 {
	width: 90%;
	margin: 10px;
  }
}
@media (max-width: 640px){
  .title-box3 {
  	width: 86%;
	margin: 10px;
  }
}

.title-box3-free{
  margin: 1em 0;
  padding: 1em;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 25%;
  margin: 20px;
  background:;
}
@media (max-width: 768px){
  .title-box3 {
	width: 90%;
	margin: 10px;
  }
}
@media (max-width: 640px){
  .title-box3 {
  	width: 86%;
	margin: 10px;
  }
}

.title-box3-title{
  position: absolute;
  top: -0.8em;
  left: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #ff3960;
  background: #fff;
  padding: 0 0.5em;
}

.title-box3 p{
  margin: 0;
  padding: 0;
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

/* コミックス購入特典 3列 ここまで*/

/* コミックス購入特典 2列 ここから*/
.title-box2{
  margin: 1em 0;
  padding: 1em;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #555;
  width: 42%;
  margin: 20px;
  background:#fff;
}
@media (max-width: 768px){
  .title-box2 {
	width: 90%;
	margin: 10px;
  }
}
@media (max-width: 640px){
  .title-box2 {
  	width: 86%;
	margin: 10px;
  }
}

.title-box2-title{
  position: absolute;
  top: -0.8em;
  left: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #ff3960;
  background: #fff;
  padding: 0 0.5em;
}

.title-box2 p{
  margin: 0;
  padding: 0;
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

/* コミックス購入特典 2列 ここまで*/

/* コミックス購入特典 1列 ここから*/
.title-box1{
  margin: 1em 0;
  padding: 1em;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #555;
  width: 80%;
  margin: 20px;
  background:#fff;
}
@media (max-width: 768px){
  .title-box1 {
	width: 90%;
	margin: 10px;
  }
}
@media (max-width: 640px){
  .title-box1 {
  	width: 86%;
	margin: 10px;
  }
}

.title-box1-title{
  position: absolute;
  top: -0.8em;
  left: 20px;
  font-weight: bold;
  font-size: 1.2em;
  color: #ff3960;
  background: #fff;
  padding: 0 0.5em;
}

.title-box1 p{
  margin: 0;
  padding: 0;
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

/* コミックス購入特典 1列 ここまで*/

.boxCh4 {
  width: 95%;
  margin: 10px;
  background:#ffffff;
  display: inline-block;
  vertical-align: top;
  border-radius: 15px;
}

@media (max-width: 768px){
  .boxCh4 {
	margin-bottom: 10px;
  }
}

@media (max-width: 640px){
  .boxCh4 {
	margin-bottom: 10px;
  }
}

.boxCh4 img{
  width:100%;
}

.boxCh4 p{
  text-align:left;
}
@media (max-width: 768px){
  .boxCh4 p {
  font-size: calc(80% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .boxCh4 p {
  font-size: calc(80% + 0.5vw) ;
  }
}

.boxCh5 {
  width: 70%;
  margin: 20px;
  background:#ffffff;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px){
  .boxCh5 {
	width: 90%;
	margin: 10px;
  }
}
@media (max-width: 640px){
  .boxCh5 {
  	width: 95%;
	margin: 10px;
  }
}

.boxCh5 p{
  text-align:left;
}

.boxCh5 img{
  width:100%;
}

.boxCh6 {
  display: inline-block;
  vertical-align: top;
  margin: 10px;
  width: 35%;
}

.boxCh7 {
  width: 95%;
  margin: 0 auto;
  background:#ffc801;
}

.pre{
  color: #ff7e8a;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.pre2{
  color: #ff7e8a;
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .pre2 {
	font-size: calc(80% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .pre2 {
	font-size: calc(80% + 0.5vw) ;
  }
}

.pre3{
  color: #666666;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.pre4{
  color: #ff0000;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.pretitle{
  color: #3f3f3f;
  font-size: calc(70% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .pretitle {
	font-size: calc(80% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .pretitle {
	font-size: calc(80% + 0.5vw) ;
  }
}

a.pre:link{
    font-size: calc(60% + 0.5vw) ;
}
@media (max-width: 768px){a.pre:link {font-size: calc(80% + 0.5vw) ;}}
@media (max-width: 640px){a.pre:link {font-size: calc(80% + 0.5vw) ;}}

a.pre:visited{
    font-size: calc(60% + 0.5vw) ;
}
@media (max-width: 768px){a.pre:visited {font-size: calc(80% + 0.5vw) ;}}
@media (max-width: 640px){a.pre:visited {font-size: calc(80% + 0.5vw) ;}}

a.pre:active{
    font-size: calc(60% + 0.5vw) ;
    text-decoration : none;
}
@media (max-width: 768px){a.pre:active {font-size: calc(80% + 0.5vw) ;}}
@media (max-width: 640px){a.pre:active {font-size: calc(80% + 0.5vw) ;}}

a.pre:hover {
    font-size: calc(60% + 0.5vw) ;
    text-decoration : none;
}
@media (max-width: 768px){a.pre:hover {font-size: calc(80% + 0.5vw) ;}}
@media (max-width: 640px){a.pre:hover {font-size: calc(80% + 0.5vw) ;}}




/*================= 枠色変え ===================*/

.border_present12 {
  padding:10px;
  border: solid 1px #3cb371;
  border-radius: 15px;
  background: #f4fff4;
}

h2.a {
  font-size: calc(75% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  text-align:left;
  padding:0px 5px;
  margin:0px 0px 20px 0px;
  color: #494949;/*文字色*/
  background: -webkit-repeating-linear-gradient(-45deg, #fff2e5, #fff2e5 4px,#ffe2c6 3px, #ffe2c6 8px);
  background: repeating-linear-gradient(-45deg, #fff2e5, #fff2e5 4px,#ffe2c6 3px, #ffe2c6 8px);
/*  background: transparent;背景透明に*/
  border-left: solid 5px #ffa500;/*左線*/
}

/*===============================================

　用途不明

===============================================*/

.icon {
  margin: 0; 
  padding: 0;
}

.icon img {
  width:30%;
}

.item-comics-desc-cap-lineup p{
  color: #ff3c7c;
  font-size: 15px;
  margin: 0 0 5px;
}

.item-comics-desc-text-lineup p {
  color: #383838;
  font-size: 13px;
  margin: 0 0 5px;
}

day {
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  text-align:left;
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #ec7aac;/*左線*/
  padding:0px;
}

/*===============================================

　最新号紹介、バックナンバー

===============================================*/
.boxCh3 {
  width: 45%;
  margin: 10px;
  background:#ffffff;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px){
  .boxCh3 {
	font-size: calc(60% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .boxCh3 {
	font-size: calc(85% + 0.5vw) ;
	width: 90%;
  }
}

.boxCh3 p{
  text-align:right;
}

.boxCh3 img{
  width:100%;
}

.news {
  display: flex;
  flex-direction: row;
    justify-content: space-evenly;
}

.news-box {
  width:400px;
  text-align:center;

}

/*===============================================

　各ページの幅や高さなど

===============================================*/
.boxlineup {
  width:100%;
  margin:0 auto;
  margin-bottom:40px;
}
@media (max-width: 768px){
  .boxlineup {
	margin-bottom:10px;
  }
}
@media (max-width: 640px){
  .boxlineup {
	margin-bottom:5px;
  }
}

.boxWrap .boxCh {
  width: 35%;
  margin: 10px;
  background:#ffffff;
}
@media (max-width: 768px){
  .boxWrap .boxCh {
      width: 45%;
  }
}
@media (max-width: 640px){
  .boxWrap .boxCh {
      width: 95%;
  }
}


/*===============================================

　

===============================================*/

/* ボタン色 */
.btn-border1 {
  display: inline-block;
  width: 40%;
  text-align: center;
  border: 1px solid #ffc801;
  color: #ffc801;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: .4s;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.btn-border1:hover {
  background-color: #ffc801;
  border-color: #fff076;
  color: #FFF;
}

.open{
  display: inline-block;
  text-decoration: none;
  color: #a2a2a2;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: double 4px #a2a2a2;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
  background:#ffffff;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

@media (max-width: 768px){
  .open {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: calc(70% + 0.5vw) ;
  }
}

@media (max-width: 640px){
  .open {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: calc(70% + 0.5vw) ;
  }
}

.open a{
  color: #a2a2a2;
}

.close{
  display: inline-block;
  text-decoration: none;
  color: #a2a2a2;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: double 4px #a2a2a2;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
  background:#ffffff;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

@media (max-width: 768px){
  .close {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: calc(70% + 0.5vw) ;
  }
}

@media (max-width: 640px){
  .close {
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: calc(70% + 0.5vw) ;
  }
}

.close a{
  color: #a2a2a2;
}

/*===============================================

　お知らせ部分(マイクロコンテンツページでも使用)

===============================================*/

.news_micro {
  width: 80%;
  display: inline-block;
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 1px #ff4a79;
  background: #fff;
  text-align: left;
  font-family: "Noto Sans Japanese";
  color: #000;
  font-size: calc(50% + 0.5vw) ;
}
@media (max-width: 768px){
  .news_micro {
	width: 90%;
	font-size: calc(70% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .news_micro {
	width: 90%;
	font-size: calc(65% + 0.5vw) ;
  }
}
.news_micro .news_title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -1px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #ff4a79;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    border: solid 1px #ff4a79;
}
.news_micro p {
    margin: 0; 
    padding: 0;
}

/*===============================================

　バックナンバー関連

===============================================*/

.wrapper {
  display: flex;
}

.wrapper-box {
  background-color: #ffffff;
  margin-bottom: 0.5em;
  padding: 0.5em;
  overflow: hidden;
  text-align:left;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
.box-img {
  float: left;
  padding-right: 0.5em;
  width: 40%;
  max-width: 40%;
}
.box-img img {
  width: 100%;
  height: auto;
}

.box-desc {
  clear: both;
  color: #7e7e7e;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  overflow: hidden;
}
@media (max-width: 768px){
  .box-desc {
	font-size: calc(80% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .box-desc {
	font-size: calc(80% + 0.5vw) ;
  }
}

.box-info {
  overflow: hidden;
}

.cover{
  line-height:0;
}

@media (max-width: 768px){
  .cover {
	line-height: 5px;
  }
}

@media (max-width: 640px){
  .cover {
	line-height: 20px;
  }
}

.cover p{
  color: #777777;
  font-size: calc(30% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

@media (max-width: 768px){
  .cover p {
	font-size: calc(80% + 0.5vw) ;
  }
}

@media (max-width: 640px){
  .cover p {
	font-size: calc(80% + 0.5vw) ;
  }
}

/*===============================================

　上部のお知らせ欄

===============================================*/
.topic {
  width: 70%;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background: #;
  text-align: left;
  font-family: "Noto Sans Japanese";
  color: #000;
  font-size: calc(60% + 0.5vw) ;
}
@media (max-width: 768px){
  .topic {
	width: 90%;
	font-size: calc(70% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .topic {
	width: 98%;
	font-size: calc(70% + 0.5vw) ;
  }
}

.topic p {
  margin: 0; 
  padding: 0;
}

ul {
  border: solid 2px #ffb03f;
  background: #ffffe0;
  padding: 0.5em 1.5em 0.5em 1.5em;
  position: relative;
  margin-top: 2em;
}
@media (max-width: 768px){
  ul {
  padding: 0.5em
  }
}
@media (max-width: 640px){
  ul {
	padding: 0.7em
  }
}

ul li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}
@media (max-width: 768px){
  ul li {
  padding: 0.5em 0 0.2em 0.2em;
  }
}
@media (max-width: 640px){
  ul li {
	padding: 0.5em 0 0.5em 0.5em;
  }
}

ul li:last-of-type {
  border-bottom: none;
}

ul li:before {
  display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:0.7em;
  height: 0.7em;
  background: #ffb03f;
  border-radius: 50%;
  margin-right: 3px;
}

ul li:after {
  /*タイトルタブ*/
  background: #ffb03f;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  padding: 1px 7px;
  content: "What's New";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}

.topic a {
  color: #ff4500;
}

.topicstyle {
  color: #555;
  font-size: calc(40% + 0.5vw) ;
}

.topic a:hover {
  color: #ffb03f;
  text-decoration: none;
}


/*===============================================
　以下、カラーを毎月書き換える
===============================================*/
h1 {
  color: #000000;/*文字色*/
  border-bottom: dashed 2px #ff137b;
  font-size: calc(180% + 0.5vw) ;
  /*線の種類（点線）2px 線色*/
}
@media (max-width: 768px){
  h1 {
	font-size: calc(100% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  h1 {
	font-size: calc(100% + 0.5vw) ;
  }
}

.btn-border_main {
  display: inline-block;
  width: 40%;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ff137b;
  color: #ff137b;
  text-decoration: none;
  padding: 15px;
  border-radius: 10px;
  transition: .4s;
  font-size: calc(70% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.btn-border_main {
  display: inline-block;
  width: 40%;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ff137b;
  color: #ff137b;
  text-decoration: none;
  padding: 15px;
  border-radius: 10px;
  transition: .4s;
  font-size: calc(70% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}

.btn-border_main:hover {
  background-color: #ff137b;
  border-color: #ff137b;
  color: #FFF;
}

.lineup_title{
  text-align:left;
  color:#494949;
}

.lineup_title p{
  text-align:left;
  color:#494949;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #ff137b;/*左線*/
  font-size: calc(80% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
  padding:0px 5px;
}

/* マイクロコンテンツの告知 TOPのボタン */
.btn-border-kokuchi {
  display: inline-block;
  width: 60%;
  text-align: center;
  border: 1px solid #ff408c;
  color: #ff408c;
  background-color: #ffffff;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: .4s;
  font-size: calc(100% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .btn-border-kokuchi {
	width: 84%;
  }
}
@media (max-width: 640px){
  .btn-border-kokuchi {
	width: 84%;
  }
}

.btn-border-kokuchi:hover {
  background-color: #ff408c;
  border-color: #ff408c;
  color: #fff;
}

/* バックナンバーにコピペする箇所 ここから */
.border_main {
  padding:10px;
  border: solid 1px #ff137b;
}

.author_main {
  color: #ff137b;
  font-size: calc(60% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .author_main {
  font-size: calc(100% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .author_main {
  font-size: calc(100% + 0.5vw) ;
  }
}

.btn_main{
  display: inline-block;
  text-decoration: none;
  color: #ff137b;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: double 4px #ff137b;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
  background:#ffffff;
  font-size: calc(50% + 0.5vw) ;
  font-family: "Noto Sans Japanese";
}
@media (max-width: 768px){
  .btn_main {
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: calc(60% + 0.5vw) ;
  }
}
@media (max-width: 640px){
  .btn_main {
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: calc(60% + 0.5vw) ;
  }
}

.btn_main:hover {
  background-color: #ff137b;
  border-color: #ffffff;
  color: #FFF;
}
/* バックナンバーにコピペする箇所 ここまで */

