@charset "shift_jis";
:root {
  --vsm_textColor: #333;

  --vsm_thumbnailSize: 145px;
  --vsm_thumbnailMargin: 10px;

  --vsm_instagramIcon: url('/images/vsm/Instagram_Glyph_Gradient_58x58.png');
  --vsm_iconSize: 29px;
  /* --vsm_iconSizeの半分 */
  --vsm_iconMarginRegulation: 15px;

  --vsm_sprite: url(/sp/images/common-img-sprite.png);

  --vsmDetail_videoMaxHeight: 500px;
  --vsmDetail_videoMaxWidth: 100%;
  --vsmDetail_videoMinWidth: 250px;
  --vsmDetail_margin: 20px;
}

/* vsm共通(一覧,詳細)css start */
.vsmComHeader {
  margin-bottom: 10px;
}
.visumoHeader {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 6px 15px;
  margin-bottom: 3px;
  background-image: linear-gradient( 85deg, rgb(183,60,189) 14%, rgb(236,47,129) 35%, rgb(254,64,59) 63%, rgb(255,133,51) 84%, rgb(255,147,66) 98%);
 }
.vsmComHeaderContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vsmComHeaderContainer .vsmComHeaderMain,
.vsmComHeaderContainer .vsmComHeaderSub {
  box-sizing: border-box;
}
.vsmComHeaderContainer .vsmComHeaderMain {
  display: flex;
}
.vsmComHeaderContainer .vsmComHeaderSub {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 10px;
}

.vsmComHeaderContainer .vsmComHeaderMain .instagramIcon {
  width: calc(var(--vsm_iconSize) * 2);
  height: calc(var(--vsm_iconSize) * 2);
  background-image: var(--vsm_instagramIcon);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1;
}
.vsmComHeaderContainer .vsmComHeaderMain .mainCaption {
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.vsmComHeaderContainer .vsmComHeaderSub img {
  width: 130px;
  height: auto;
  display: block;
}

.vsmComHeaderSubCaption {
  text-align: center;
  font-size: 15px;
}

@media (max-width: 374px) {
  .vsmComHeaderContainer {
    flex-direction: column;
  }
  .vsmComHeaderContainer .vsmComHeaderMain{
    flex: 0 1 100%;
  }
  .vsmComHeaderContainer .vsmComHeaderSub{
    margin-bottom: 10px;
  }
  .vsmComHeaderSubCaption {
    margin-top: -5px;
  }
}
/* vsm共通(一覧,詳細)css end */

/* vsm一覧css start */
#vsmSearchBlock {
  color: #333;
  margin-bottom: 14px;
}
#vsmSearchBlock .vsmSearch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 14px;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.vsmSearch .searchButtonContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.searchButtonContainer .searchButton {
  background-color: #f17fbf;
  border-radius: 50%;
  flex: 1;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.searchButtonContainer .searchButton.selected {
  background-color: #e3007f;
  border-radius: 50%;
}
.searchButtonContainer .searchButton img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.searchButtonContainer .searchButtonText {
  margin-top: 7px;
  text-align: center;
  font-size: 10px;
}

.vsmListBlock {
  margin-bottom: 0px;
}
.vsmListBlock .vsmListTotal{
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 7px;
}
.vsmListBlock .vsmListContainer{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 100%;
  box-sizing: border-box;
}
.vsmListContainer .vsmListThumbnailWrap {
  position: relative;
}
.vsmListContainer .vsmListThumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
/* アイコンスタイルはinc側に共通実装 */
.vsmListBlock .vsmListZeroMatch {
  text-align: center;
  font-size: 16px;
  padding: 60px 20px;
}
/* vsm一覧css end */


/* vsm詳細css start */
.vsmDetailMediaBlock {
  padding-bottom: 30px;
}
.vsmDetailMediaWrapper .vsmDetailMediaContent {
  max-height: var(--vsmDetail_videoMaxHeight);
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vsmDetailMediaContent img {
  max-height: var(--vsmDetail_videoMaxHeight);
  max-width: var(--vsmDetail_videoMaxWidth);
}

.vsmDetailMediaContent .video-js {
  width: auto;
  height: auto;
  min-width: var(--vsmDetail_videoMinWidth);
  max-height: var(--vsmDetail_videoMaxHeight);
  max-width: var(--vsmDetail_videoMaxWidth);
  display: flex;
  justify-content: center;
}
.vsmDetailMediaContent .video-js .vjs-tech {
  position: unset;
  display: block;
  width: auto;
  height: auto;
  max-height: var(--vsmDetail_videoMaxHeight);
  max-width: var(--vsmDetail_videoMaxWidth);
}


.vsmDetailMediaContent .video-js .vjs-control {
  width: 3em;
}
.vsmDetailMediaContent .video-js .vjs-control-bar {
  height: 35px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vsmDetailMediaContent .video-js .vjs-time-control {
  margin-right: 1em;
}
/* MinWidthより画面サイズが小さいとき */
/* プレイヤー最小表示制限なし、再生タイム・PIP表示なし */
@media (max-width: 250px) {
  .vsmDetailMediaContent .video-js {
    min-width: 0;
  }
  .vsmDetailMediaContent .video-js .vjs-control.vjs-time-control.vjs-remaining-time,
  .vsmDetailMediaContent .video-js .vjs-control.vjs-button.vjs-picture-in-picture-control {
    display: none !important;
  }
}

.vsmDetailUserNameBlock {
  margin-top: 18px;
}
.vsmDetailUserNameBlock .vsmDetailUserNameWrapper {
  margin: 0 var(--vsmDetail_margin);
  padding: 25px 0;
}
.vsmDetailUserNameWrapper .vsmDetailUserName {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  word-wrap: break-word;
  line-height: 1.6;
}

.vsmDetailContentTextBlock {
  margin: 0 var(--vsmDetail_margin);
  padding-bottom: 40px;
}
.vsmDetailContentText {
  font-size: 18px;
  overflow: hidden;
  position: relative;
  line-height: 1.7;
  text-align: justify;
  word-wrap: break-word;
}
.vsmDetailContentText.show-gradient::after {
  display: block;
}
.vsmDetailContentText::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  display: none;
}
.vsmTextMoreButton {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
  margin-top: 12px;
}
.vsmTextMoreButton::before {
  margin: 0 10px 0 0;
  overflow: hidden;
  display: inline-block;
  text-indent: 200%;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
  background-image: var(--vsm_sprite);
  background-repeat: no-repeat;
  width: 15px;
  height: 8px;
  -webkit-background-size: 158px auto;
  background-size: 158px auto;
  background-position: 0 -502px;
  content: "";
}

.vsmDetailSubCaption {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
/* .vsmDetailSubCaption.relatedItems {
}
.vsmDetailSubCaption.recommendVsm {
  padding-top: 35px;
  padding-bottom: 20px;
} */

.vsmDetailAttentionBlock {
  font-size: 14px;
  color: #999;
  margin: 0 var(--vsmDetail_margin);
  padding-bottom: 40px;
}

.vsmDetailRecommendVsmBlock {
  padding-bottom: 40px;
}
.vsmDetailRecommendVsmBlock .recommendVsmListContainer{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  box-sizing: border-box;
}
.recommendVsmListContainer .vsmListThumbnailWrap {
  position: relative;
}
.recommendVsmListContainer .vsmListThumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* .vsmDetailBorder {
  border-top: #ccc 1px solid;
} */
.vsmDetailBorder:before,
.vsmDetailBorder100vw:before {
  position: absolute;
  content: '';
  display: inline-block;
  height: 1px;/*線の太さ*/
  background-color: #e1e1e1;/*線の色*/
}
.vsmDetailBorder:before {
  left: 50%;
  width: calc(100% - var(--vsmDetail_margin) * 2);/*線の長さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
}
.vsmDetailBorder100vw:before {
  width: 100vw;/*線の長さ*/
}
/* vsm詳細css end */


/* vsmInc(top,proddetail,scptop)css start */
#vsm-contents {
  margin-top: 5px;
}

.vsm-contents-header {
  text-align: center;
  color: var(--vsm_textColor);
  font-size: 14px;
  margin-bottom: 13px;
}
.vsm-contents-header .subtitle {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--vsm_iconMarginRegulation);
}
.vsm-contents-header .subtitle .icon {
  display: inline-block;
  width: var(--vsm_iconSize);
  height: var(--vsm_iconSize);
  margin-right: var(--vsm_iconMarginRegulation);
  background-image: var(--vsm_instagramIcon);
  background-repeat: no-repeat;
  background-size: var(--vsm_iconSize) var(--vsm_iconSize);
}
.vsm-contents-header .vsm-caption span {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom:5px;
}
#vsm-contents.vsm-scptoppage {
  margin-bottom: 48px;
  padding: 27px 0;
  width: calc(100vw - 20px);
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  margin-left: 50%;
  transform: translateX(-50%);
}
#top-scp-contents .vsm-contents-thumbnailListMore {
  margin-left: 20px;
  margin-right: 20px;
}
.vsm-contents-header-proddetail {
  color: var(--vsm_textColor);
}
.vsm-contents-header-proddetail .subtitle {
  font-weight: bold;
  display: flex;
  justify-content: left;
  /* 既存スタイル 上下8pxマージンを考慮 */
  height: calc(var(--vsm_iconSize) + ((var(--vsm_iconMarginRegulation) - 8px) * 2));
  padding-top: calc(var(--vsm_iconMarginRegulation) - 8px);
  padding-bottom: calc(var(--vsm_iconMarginRegulation) - 8px);
  align-items: center;
}
.vsm-contents-header-proddetail .subtitle .icon {
  display: inline-block;
  width: var(--vsm_iconSize);
  height: var(--vsm_iconSize);
  margin-right: var(--vsm_iconMarginRegulation);
  background-image: var(--vsm_instagramIcon);
  background-repeat: no-repeat;
  background-size: var(--vsm_iconSize) var(--vsm_iconSize);
}
.vsm-contents-headerCaption-proddetail {
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 16px;
  padding: 20px 20px 0;
}
/* vsmInc(top,proddetail,scptop)css end */

.vsm-thumbnail-container {
  margin-bottom: 10px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.vsm-thumbnail-container .vsm-thumbnail-list {
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: visible;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-left: var(--vsm_thumbnailMargin);
  padding-bottom: 20px;
}

.vsm-thumbnail-container .vsm-thumbnail-list .vsm-thumbnail {
  width: var(--vsm_thumbnailSize);
  height: var(--vsm_thumbnailSize);
  margin-right: var(--vsm_thumbnailMargin);
  overflow: hidden;
  display: inline-table;
  justify-content: center;
  align-items: center;
  position: relative;
}
.vsm-thumbnail .image {
  width: var(--vsm_thumbnailSize);
  height: var(--vsm_thumbnailSize);
}
.vsm-thumbnail img {
  width: var(--vsm_thumbnailSize);
  height: var(--vsm_thumbnailSize);
  object-fit: cover;
  object-position: center center;
}

.vsmListThumbnailWrap.ico-movie:after,
.vsm-thumbnail .ico-movie:after {
  background-image: url("/sp/images/ss/ico-movie.png");
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 5px;
  right: 5px;
  content: "";
  display: block;
  width: 35px;
  height: 33px;
}

.vsm-contents-thumbnailListMore {
  background: linear-gradient(to bottom, #fff 20%, #eee 97%);
  border: 1px solid #d0d0d0;
  border-radius: 4px;
}
.vsm-contents-thumbnailListMore > a {
  color: #666;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.arrow-right a:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  background-image: var(--vsm_sprite);
  background-position: 0 -540px;
  background-size: 158px auto;
  background-repeat: no-repeat;
  content: "";
  width: 8px;
  height: 15px;
  margin-left: 10px;
  transform: rotate(180deg);
}
/* vsmInc(top,proddetail,scptop)css end */