﻿:root {
	--color_white: #ffffff;
	--color_light-gray: #e9eef2;
  --color_light-gray-border: #c7d1d9;
	--color_black: #232323;
	--color_green: #01421b;
	--color_green-border: #043417;
	--color_light-green: #45a348;
	--color_soft-green: #1f7834;
	--color_dark-green: #032114;
  --color_green-all-bg: #1c5928;
	--color_red: #dc143c;
  --color_bright-red: #fe0000;
  --color_pink: #e00043;
	--color_link-txt: #232323;
	--color_category-tag-txt: #282715;
	--color_category-tag-bg: #f7e259;
	--color_new-tag-bg: #eb0400;
  --color_free-tag-bg: #00a4eb;
	--color_date-txt: #c9d1cd;
	--color_readmore-bg: #e6ebe8;
	--color_sub-nav-txt: #323c49;
	--color_tab-nav-txt: #425663;
	--color_tab-nav-bg: #46a349;
	--color_tab-nav-bg-active: linear-gradient(0deg, rgba(228,234,240,1) 25%, rgba(255,255,255,1) 75%);
	--color_rank-01: #dfaf02;
	--color_rank-02: #70838b;
	--color_rank-03: #bf6e3f;
	--color_rank: #278b3f;
  --color_link-btn-yellow: #f7e259;
  --color_link-btn-yellow-txt: #282715;
  --color_link-list-white-bg: linear-gradient(0deg, rgba(240,244,247,1) 25%, rgba(255,255,255,1) 75%);
  --color_link-list-gray-bg: #e6ebe8;
}

.fa {
  width: 1.2em;
  height: 1.2em;
  margin: 0 0.3em 0 0;
  vertical-align: -0.225em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

#fa-comments,
#fa-bullhorn,
#fa-microphone,
#fa-person-running,
#fa-square-check,
#fa-ranking-star,
#fa-newspaper,
#fa-calendar-check,
#fa-crown,
#fa-user,
#fa-caret-down,
#fa-chevron-right,
#fa-weight-scale,
#fa-book,
#fa-blank-link,
#fa-square-up-right {
  color: var(--color_white);
}

/*-----------------------------------------------
BOXING MOBILE TOP-PAGE STYLE:
-------------------------------------------------
# base
## トップページ
  # swiper
  # 速報ニュース
  # ニュース共通タイトル表示
  # トップニュース
  # コンテンツリンクボタン
  # カテゴリーニュース
  # カテゴリーニュース（その他）
  # 試合日程
  # 注目選手ランキング
  # 選手リスト（スライダー）
  # 書籍リスト
-----------------------------------------------*/

/*===========================================
base
============================================*/
body {
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

/* display */
.display-none {
  display: none;
}

.display-none.active {
  display: block;
  animation: appear .5s ease;
}

@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/*===========================================
トップページ
============================================*/
/*---------------------------------
swiper
---------------------------------*/
.swiper-wrapper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
}

/*---------------------------------
速報ニュース
---------------------------------*/
.bmsm_headline {
  margin: 20px auto 20px auto;
  max-width: 540px;
}

.bmsm_headline__txtWrap {
  position: relative;
  width: auto;
  margin: 0;
  background: var(--color_green-border);
  text-align: left;
  font-size: 24px;
  font-weight: normal;
  color: var(--color_white);
  line-height: 1;
}

.bmsm_headline__txtWrap::before,
.bmsm_headline__txtWrap::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: url(https://boxmob.jp/sp/img/news_yoko_sen.jpg) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.bmsm_headline__txtWrap::before {
  top: 0;
  left: 0;
}

.bmsm_headline__txtWrap::after {
  bottom: 0;
  left: 0;
}

.bmsm_headline__innerBox {
  display: flex;
  align-items: center;
  margin: 0 15px;
  padding: 20px 0 !important;
}

.bmsm_headline__icon {
  display: inline-block;
  width: 3em;
  margin: 0 10px 0 0;
  padding: 0;
  background: var(--color_red);
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 32px;
  letter-spacing: 0.1em;
}

.bmsm_headline__link-icon {
  position: relative;
  display: inline-block;
  margin-left: auto;
  width: 25px;
  height: 32px;
  border-radius: 4px;
  color: var(--color_white);
  background: rgba(255, 255, 255, 0.1) url(https://boxmob.jp/sp/img/sugotoku/icon_link_arr.png) 50% 0 no-repeat;
  background-size: 32px auto;
}

.bmsm_headline__txt {
  width: 80%;
  margin: 0 10px 0 0;
  overflow: hidden;
}

.bmsm_headline__txt a {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 32px;
  padding-left: 100%;
  white-space: nowrap;
  animation: animate-headline 12s linear infinite;
  color: var(--color_white);
  text-decoration: none;
}

@keyframes animate-headline {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*---------------------------------
共通タイトル表示
---------------------------------*/
.bmsm-news-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  margin: 0 0 20px 0;
  padding: 0 0.6em 0 0.6em;
  background-color: var(--color_green);
}

.bmsm-news-title.bmsm-news-title--onSubNav {
  margin-bottom: 0;
}

.bmsm-news-title h2 {
  margin: 0;
  padding: 0.7em 0;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: bold;
  color: var(--color_white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
  line-height: 1;
  letter-spacing: 0.05em;
}

.bmsm-news-title__button {
  display: flex;
  align-items: center;
}

.bmsm-news-title__button a {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0.75em 0.85em;
  background: var(--color_readmore-bg);
  border-radius: 20px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: var(--color_link-txt);
  letter-spacing: 0;
  vertical-align: baseline;
  outline: none;
  cursor: pointer;
}

.bmsm-news-title::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background: var(--color_green-border);
}

.bmsm-news-title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 5px;
	background: #f2c74c;
	background: linear-gradient(90deg, rgba(176,107,37,1) 0%, rgba(241,203,80,1) 25%, rgba(255,255,255,1) 50%, rgba(242,199,76,1) 75%, rgba(176,107,37,1) 100%);
}

/*---------------------------------
トップニュース
---------------------------------*/
.bmsm_top-news__item-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: 0 0 15px 0;
  padding: 15px 0 0 0;
}

article.bmsm_top-news__item {
	margin: 0 0 10px 0 !important;
	padding: 0 !important;
}

article.bmsm_top-news__item.item-first {
	width: 97%;
}

article.bmsm_top-news__item.item-first .bmsm_top-news__item-img {
  height: 420px;
}

.bmsm_top-news__item:nth-child(n + 2) {
	width: 47.5%;
}

.bmsm_top-news__item figure {
  position: relative;
  padding: 0;
  margin: 0;
  border-radius: 8px;
  overflow: auto;
}

.bmsm_top-news__item-caption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  padding-top: 100px;
}

.bmsm_top-news__item-img:nth-child(1) {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.bmsm_top-news__item-img:nth-child(n + 2) {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.bmsm_top-news__item.item-first figure {
	border-radius: 8px;
}

.bmsm_top-news__item.item-first figure .bmsm_top-news__item-caption__title {
  font-size: 26px;
}

.bmsm_top-news__item figure {
	border-radius: 8px;
}

.bmsm_top-news__item-caption__title {
	margin: 15px;
	text-align: left;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}

.bmsm_top-news__item-caption__date {
	margin: 15px;
	text-align: right;
	font-size: 18px;
	color: #fff;
	line-height: 1.4;
}

.bmsm_top-news__item-caption__category {
	position: relative;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 0 0 0 12px;
	font-size: 18px;
	font-weight: normal;
	line-height: 1;
}

.bmsm_top-news__item-caption__category::before {
	position: absolute;
	top: -0.1em;
	left: 0;
	display: block;
	content: "";
	width: 4px;
	height: 100%;
	background: var(--color_category-tag-bg);
	border-radius: 9999px;
}

/*---------------------------------
コンテンツリンクボタン
---------------------------------*/
.bmsm_top-pickBtn {
	margin: 0;
  padding: 0 0 20px 0;
}

/*---------------------------------
カテゴリーニュース
---------------------------------*/
.bmsm_category-news {
	margin: 0 0 30px 0;
	padding: 0;
}

.bmsm_category-news-sliderWrap {
	padding: 0 0 0 15px;
}

.bmsm_category-news-item {
  position: relative;
  width: 230px;
  height: auto;
  margin: 0 15px 0 0;
  background-color: var(--color_dark-green);
  border-radius: 8px;
  overflow: hidden;
}

.bmsm_category-news-item figure {
  margin: 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bmsm_category-news-item img {
  width: 100%;
  height: auto;
}

.bmsm_category-news-item figcaption {
  margin: 0;
  padding: 18px 15px 10px 15px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bmsm_category-news-item__category {
  text-align: left;
}

.bmsm_category-news-item__category-tag {
  position: absolute;
  top: 145px;
  right: 0;
  display: inline-block;
  margin: 0;
  padding: 0 0.6em;
  border-radius: 0;
  background-color: var(--color_category-tag-bg);
  color: var(--color_category-tag-txt);
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
}

.bmsm_category-news-item__new-tag {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}

.bmsm_category-news-item__new-tag::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 4em solid transparent;
  border-left: 4em solid var(--color_new-tag-bg);
  position: absolute;
  z-index: 100;
}

.bmsm_category-news-item__new-tag::after {
  content: "NEW";
  display: block;
  top: 10px;
  transform: rotate(-45deg);
  color: var(--color_white);
  left: 2px;
  position: absolute;
  z-index: 101;
}

.bmsm_category-news-item__title {
  min-height: 4.5em;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bmsm_category-news-item__date {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: block;
  color: var(--color_date-txt);
  font-size: 16px;
  margin-top: auto;
  text-align: end;
}

/* カテゴリーニュース下リンクボタン */
.bmsm_category-news-linkNavi {
	margin: 25px 0 0 0;
}

.bmsm_category-news-linkNavi__navList {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.bmsm_category-news-linkNavi__navList li {
	width: 42%;
	max-width: 240px;
  margin: 0;
  padding: 0;
  list-style: none;
	text-align: center;
}

.bmsm_category-news-linkNavi__navList li:first-child {
	margin-right: 25px;
}

.bmsm_category-news-linkNavi__navList li a {
	display: block;
	margin: 0 0 8px 0;
	padding: 0.4em 0.4em 0.4em 0;
	border-radius: 8px;
	background: var(--color_readmore-bg);
	font-size: 1.4rem;
	font-weight: bold;
	box-shadow: 6px 6px 0px 0px var(--color_green);
  color: var(--color_link-txt);
}

.bmsm_category-news-linkNavi__navList li a .bmsm_category-news-linkNavi_titlematch {
	display: inline-block;
	line-height: 40px;
	padding-left: 60px;
	background-image: url(https://boxmob.jp/sp/img/category_news_titlematch_icon.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: auto 40px;
}

.bmsm_category-news-linkNavi__navList li a .bmsm_category-news-linkNavi_schedule {
	display: inline-block;
	line-height: 40px;
	padding-left: 60px;
	background-image: url(https://boxmob.jp/sp/img/category_news_schedule_icon.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: auto 40px;
}

.bmsm_category-news-linkNavi__navList li a .bmsm_category-news-linkNavi_flash {
	display: inline-block;
	line-height: 40px;
	padding-left: 60px;
	background-image: url(https://boxmob.jp/sp/img/category_news_flash_icon.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: auto 40px;
}

/*---------------------------------
カテゴリーニュース（その他）
---------------------------------*/
.bmsm_category-news-sonota {
	margin: 0;
	padding: 0 0 15px 0;
}

.bmsm_category-news-sonota .common-title {
  margin-bottom: 0;
}

/* ニュースカテゴリメニュー */
.bmsm_category-news-subNavi {
  margin: 0 0 20px 0;
  background: #ffffff;
}

.bmsm_category-news-subNavi__navList {
  display: flex;
  margin: 0;
  padding: 0;
  overflow: scroll;
}

.bmsm_category-news-subNavi__navList li {
  margin: 0;
  padding: 10px 0.5em;
  white-space: nowrap;
  font-size: 20px;
  font-weight: bold;
  list-style: none;
}

.bmsm_category-news-subNavi__navList li a {
  color: var(--color_sub-nav-txt);
}
/**/

.bmsm_category-news-sonotaWrap {
  margin: 0;
	padding: 0 15px;
}

.bmsm_category-news-sonota__item {
  display: flex;
  align-items: stretch;
  margin: 2px 0 15px 0;
  border-radius: 8px;
  overflow: hidden;
}

.bmsm_category-news-sonota__item-img {
  width: 38%;
  min-width: 38%;
  margin: 0 auto;
}

.bmsm_category-news-sonota__item-img img {
  height: 100%;
  max-height: 180px;
  margin: 0 auto;
  vertical-align: bottom;
  object-fit: cover;
}

.bmsm_category-news-sonota__item-txt {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 15px 10px 15px;
  background-color: var(--color_dark-green);
  text-align: left;
}

.bmsm_category-news-sonota__item-txt-tag {
	margin: 0px 0 10px 0;
}

.bmsm_category-news-sonota__item-txt-category {
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 0.1em 0.6em;
	border-radius: 0;
	background-color: var(--color_category-tag-bg);
	color: var(--color_category-tag-txt);
	font-size: 16px;
	font-weight: bold;
}

.bmsm_category-news-sonota__item-txt-title {
	padding: 0;
	margin: 0 0 0.5em 0;
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bmsm_category-news-sonota__item-txt-date {
	margin-top: auto;
	text-align: end;
	color: var(--color_date-txt);
	font-size: 16px;
}
/**/

.bmsm_category-news-sonotaWrap {
	padding: 0 15px;
}

.bmsm_category-news-sonota__item {
  display: flex;
  align-items: stretch;
  margin: 2px 0 15px 0;
  border-radius: 8px;
  overflow: hidden;
}

.bmsm_category-news-sonota__item-img {
  width: 35%;
  min-width: 35%;
  height: auto;
  margin: 0 auto;
}

.bmsm_category-news-sonota__item-img img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  vertical-align: bottom;
  object-fit: cover;
}

.bmsm_category-news-sonota__item-txt {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 15px 10px 15px;
  background-color: var(--color_dark-green);
  text-align: left;
  min-height: 5.4em;
}

.bmsm_category-news-sonota__item-txt-tag {
	margin: 0px 0 10px 0;
}

.bmsm_category-news-sonota__item-txt-category {
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 0.1em 0.6em;
	border-radius: 0;
	background-color: var(--color_category-tag-bg);
	color: var(--color_category-tag-txt);
	font-size: 16px;
	font-weight: bold;
}

.bmsm_category-news-sonota__item-txt-title {
	padding: 0;
	margin: 0 0 0.5em 0;
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bmsm_category-news-sonota__item-txt-date {
	margin-top: auto;
	text-align: end;
	color: var(--color_date-txt);
	font-size: 16px;
}

/*---------------------------------
試合日程
---------------------------------*/
.bmsm_schedule-list {
	margin: 0 0 30px 0;
}

.bmsm_schedule-list__item {
  width: 230px;
  margin: 0 0 0 15px !important;
  padding: 0;
  border-radius: 8px;
  overflow: auto;
}

.bmsm_schedule-list__item figure {
  position: relative;
  margin: 0;
}

.bmsm_schedule-list__item figure img {
  width: 100%;
}

.bmsm_schedule-list__item figure figcaption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  padding: 100px 0 0 0;
}

.bmsm_schedule-list__img__date {
  margin: 0;
  padding: 0 0 0 15px;
  font-size: 18px;
  color: var(--color_white);
  text-align: left;
  vertical-align: bottom;
}

.bmsm_schedule-list__img__date-attention {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0.35em 0.6em;
  background-color: var(--color_red);
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color_white);
  line-height: 1;
  letter-spacing: 0.1em;
}

.bmsm_schedule-list__img__date-date {
  display: inline-block;
  color: #fee942;
}

.mmdd {
  font-size: 24px;
}

.bmsm_schedule-list__img__txt {
  height: auto;
  min-height: 2.5em;
  margin: 0;
  padding: 5px 15px 20px 15px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}

/*---------------------------------
注目選手ランキング
---------------------------------*/
.bmsm_boxmob-rank {
  margin: 0;
  padding: 0 0 30px 0;
}

.bmsm_boxmob-rank .common-title {
  margin-bottom: 0;
}

.bmsm_boxmob-rankWrap {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 15px 0 0 0;
  background: var(--color_soft-green);
}

.bmsm_boxmob-rankWrap__tab {
  width: 50%;
  margin: 0;
  background-color: var(--color_tab-nav-bg);
  padding: 26px 0 20px 0;
  border-radius: 8px 8px 0 0;
  list-style: none;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  letter-spacing: 0.05em;
}

.bmsm_boxmob-rankWrap__tab:nth-child(2) {
  margin-left: 8px;
}

.bmsm_boxmob-rankWrap__tab--active {
  margin-bottom: 0px;
  padding: 26px 0 20px 0;
  background: var(--color_tab-nav-bg-active);
  color: var(--color_tab-nav-txt);
  font-weight: bold;
}

.bmsm_boxmob-rank__item {
  display: flex;
  flex-direction: row;
  padding: 15px;
  font-size: 18px;
}

.bmsm_boxmob-rank__item__left img {
  width: 80px;
  margin-right: 20px;
}

.bmsm_boxmob-rank__item__middle {
  flex-grow: 1;
  text-align: left;
}

.bmsm_boxmob-rank__item__middle__rank {
  font-size: 16px;
}

.bmsm_boxmob-rank__item__right {
  text-align: right;
  margin: auto;
}

.bmsm_boxmob-rank__item {
	background-color: var(--color_light-gray);
	color: var(--color_black);
}

.bmsm_boxmob-rank__item.odd {
	background-color: var(--color_white);
}

.bmsm_boxmob-rank__item__middle__rank {
	display: inline-block;
	width: 45px;
	margin: 4px 0 10px 0;
	padding: 5px 10px;
	transform: skewX(-15deg);
	color: var(--color_white);
	line-height: 1;
	text-align: center;
}

.bmsm_boxmob-rank__item__middle__rank span {
	font-size: 28px;
	font-weight: bold;
}

.bmsm_boxmob-rank__item__middle__rank.number1 {
	background-color: var(--color_rank-01);
}

.bmsm_boxmob-rank__item__middle__rank.number2 {
	background-color: var(--color_rank-02);
}

.bmsm_boxmob-rank__item__middle__rank.number3 {
	background-color: var(--color_rank-03);
}

.bmsm_boxmob-rank__item__middle__rank.number4,
.bmsm_boxmob-rank__item__middle__rank.number5 {
	background-color: var(--color_rank);
}

.bmsm_boxmob-rank__item__middle__name {
	font-size: 26px;
	font-weight: bold;
	line-height: 1;
}

.bmsm_boxmob-rank__item__right__class {
	font-size: 20px;
	font-weight: bold;
}

/*---------------------------------
選手リスト（スライダー）
---------------------------------*/
.bmsm_slBoxer-list {
  box-sizing: border-box;
  width: auto;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 0 25px 0;
  background: var(--color_green-all-bg);
  text-align: -webkit-auto;
  overflow: hidden;
}

.bmsm_slBoxer-list-sliderWrap {
  box-sizing: border-box;
}

.bmsm_slBoxer-list-sliderWrap.swiper-wrapper {
  height: 500px !important;
  margin: 0 0 0 15px !important;
  padding: 0 15px 0 0 !important;
}

.bmsm_slBoxer-list-item {
  box-sizing: border-box;
  position: relative;
  width: auto;
  margin: 0 0 0 -15px;
  padding: 0 0 15px 15px;
}

.bmsm_slBoxer-list-item.swiper-slide {
  height: auto;
}

.bmsm_slBoxer-list-item a {
  display: block;
  background-color: var(--color_dark-green);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.bmsm_slBoxer-list-item figure {
  margin: 0;
  padding: 0;
  width: 100%;
  height: calc((500px - 60px) / 4);
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.bmsm_slBoxer-list-item__photo {
  position: relative;
}

.bmsm_slBoxer-list-item__photo img {
  width: auto;
  height: 110%;
}

.bmsm_slBoxer-list-item__photo .bmsm_boxer-type {
  position: absolute;
  top: 15px;
  left: 0;
  width: 40px;
  height: 40px;
}

.bmsm_slBoxer-list-item figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 10px 0 16px;
  line-height: 1;
}

.bmsm_slBoxer-list-item__detail {
  width: auto;
  text-align: left;
}

.bmsm_slBoxer-list-item__wclass {
  display: inline-block;
  margin: 3px 0 0 0;
  padding: 0 12px;
  background: linear-gradient(90deg, #d5d7e5 0%, #d5d7e5 25%, #ffffff 50%, #d5d7e5 75%, #d5d7e5 100%);
  border-radius: 0;
  transform: skewX(-15deg);
  font-size: 16px;
  font-weight: bold;
  color: var(--color_black);
  line-height: 22px;
  text-shadow: 0 1px 0 rgba(245, 245, 245, 0.35);
}

.bmsm_slBoxer-list-item__detail {
  margin: 0;
}

.bmsm_slBoxer-list-item__profile {
  display: flex;
  align-items: center;
}

.bmsm_slBoxer-list-item__name {
  display: block;
  font-weight: bold;
  font-size: 22px;
  color: var(--color_white);
  text-align: left;
  line-height: 1;
}

.bmsm_slBoxer-list-item__gym {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: normal;
  color: #cbd5dc;
  line-height: 1;
}

.bmsm_slBoxer-list-item__profile .bmsm_slBoxer-list-item__type {
  position: relative;
  display: block;
  align-items: center;
  margin: 8px 8px 0 0;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  overflow: hidden;
}

.bmsm_slBoxer-list-item__profile .bmsm_slBoxer-list-item__type img {
  width: 100%;
  height: 100%;
}

.bmsm_slBoxer-list-item__profile .bmsm_slBoxer-list-item__type::before {
  position: absolute;
  content: '';
  display: inline-block;
  border-radius: 9999px;
  top: -224px;
  left: 0;
  width: 28px;
  height: 100%;
  background-color: #ffffff;
  transition: 500ms;
  animation: shiny 3.8s ease-in-out infinite;
}

@-webkit-keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.12; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 0.38; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.bmsm_slBoxer-list-item__profile-txt {
  margin: 10px 0 0 0;
}

.bmsm_slBoxer-list-item__profile-txt .bmsm_slBoxer-list-item__name {
  margin: 0;
}

.bmsm_slBoxer-list-item__profile-txt .bmsm_slBoxer-list-item__gym {
  margin: 5px 0 0 0;
}

/*---------------------------------
書籍リスト
---------------------------------*/
.bmsm_book-list {
	margin: 0 0 35px 0;
}

.bmsm_book-list__item {
  width: 230px;
  margin: 0 0 0 15px !important;
  padding: 0;
  border-radius: 8px;
}

.bmsm_book-list__item figure {
  position: relative;
  margin: 0;
  min-height: 310px;
  max-height: 310px;
  overflow: hidden;
}

.bmsm_book-list__item__new-tag {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  z-index: +1;
}

.bmsm_book-list__item__new-tag::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 4em solid transparent;
  border-left: 4em solid #007185;
  position: absolute;
  z-index: 100;
}

.bmsm_book-list__item__new-tag::after {
  content: "NEW";
  display: block;
  top: 10px;
  transform: rotate(-45deg);
  color: var(--color_white);
  left: 2px;
  position: absolute;
  z-index: 101;
}

.bmsm_book-list__item figure img {
  width: 100%;
  height: auto;
}

.bmsm_book-list__item figure figcaption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  padding: 100px 0 0 0;
}

.bmsm_book-list__img__date-attention {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0.35em 0.6em;
  background-color: var(--color_red);
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color_white);
  line-height: 1;
  letter-spacing: 0.1em;
}

.bmsm_book-list__img__date-date {
  display: inline-block;
  color: #fee942;
}

.mmdd {
  font-size: 24px;
}

.bmsm_book-list__img__txt {
  height: auto;
  min-height: 2.5em;
  margin: 0;
  padding: 5px 15px 20px 15px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  line-height: 1.4;
}

.bmsm_book-list__img__txt .fa-blank-link {
  margin: 0 0 0 0.5em;
  width: 1em;
  height: 1em;
  vertical-align: -0.133em;
}