@charset "utf-8";
/*===========slider===========*/
.slider {
  width: 100%;
  height: auto;
  max-height: calc(282 / 375 * 100 * 1vw);
}

.slide-area {
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.slide-dots button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slide-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.slide-dots li {
  display: inline-block;
  width: calc(476px / 10);
}
.slide-dots li button {
  position: relative;
  /*text-indent: -9999px;*/
  /* font-size: 0;*/
  /*line-height: 0;*/
  display: block;
  width: 100%;
  height: 4px;
  /*padding: 5px;*/
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slide-dots li button:before {
  content: '';
  text-indent: 0px;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #D3D2D8;
  top: 0;
  left: 0;
}
.slide-dots li.slick-active button:before {
  content: '';
  background-color: #1D1D1D;
}
.slider-img-sp {
  display: none !important;
}
.slick-slide img {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .slider {
    max-height: 332px;
  }
  .slick-slider {
    max-width: 960px;
    margin: 0 auto;
  }
  .slick-slider .slick-list {
    overflow: visible;
  }
  .slick-slide {
    background: #000;
  }
  .slick-slider .slick-slide img {
    opacity: 0.5;
    max-height: 332px;
  }
  .slick-slider .slick-slide.slick-current img {
    opacity: 1;
  }
  .slick-slider .slick-prev {
    top: 50%;
    left: 3.3%;
    z-index: 1;
    margin-top: -16px;
    position: absolute;
    display: block;
    width: 72px;
    height: 72px;
    padding: 0;
    color: transparent;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    outline: none;
    border: 0;    
  }
  .slick-slider .slick-prev::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(/fmv/img2019/top/ic_scroll_arrow_left.svg) no-repeat;
    background-size: 54px;
    opacity: 1;
  }
  .slick-slider .slick-next {
    top: 50%;
    right: 1.4%;
    z-index: 1;
    margin-top: -16px;
    position: absolute;
    display: block;
    width: 72px;
    height: 72px;
    padding: 0;
    color: transparent;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    outline: none;
    border: 0;
  }
  .slick-slider .slick-next::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(/fmv/img2019/top/ic_scroll_arrow_right.svg) no-repeat;
    background-size: 54px;
    opacity: 1;
  }
}
/*===========bcn award===========*/
.catch-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: min(2.2vw, 20px);
}
.bcn-box {
  max-width: 625px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 930px) {
  .bcn-box {
    width: 51%;
  }
}
/*===========youtube===========*/
.youTube-box {
  max-width: 588px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 930px) {
  .youTube-box {
    width: 46%;
  }
}
.youTube-title {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.link_youTube {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.link_youTube iframe {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .youTube-title {
    font-size: 20px;
  }
}
/*===========modal-video===========*/
.modal-video {
  display: none;
}
.modal-video.is-show {
  display: block;
}
@keyframes modal-video {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px)
  }
  to {
    transform: translate(0, 0)
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: .3s;
  animation-name: modal-video;
  -webkit-transition: opacity .3s ease-out;
  -moz-transition: opacity .3s ease-out;
  -ms-transition: opacity .3s ease-out;
  -o-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out
}
.modal-video-close {
  opacity: 0
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px)
}
.modal-video-body {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box
}
.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: .3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -ms-transition: -ms-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg)
}
.modal-video-close-btn:after {
  transform: rotate(-45deg)
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px
}
/*===========富士通から大切なお知らせ===========*/
.box-important {
  padding: 0 0 65px 0;
}
.box-important-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  padding: 4px 24px 1px;
  color: #fff;
  background-color: #841718;
  text-align: center;
}
.list-caution {
  border: 1px solid #841718;
  background: #fff;
  padding: 12px;
}
.list-caution a {
  position: relative;
  font-size: 15px;
  display: block;
  padding: 8px 4px 8px 32px;
  text-decoration: none;
  color: #841718;
}
.list-caution a::before {
  position: absolute;
  content: "";
  display: block;
  background: url(https://www.fujitsu.com/jp/imagesgig5/icon_caution_tcm102-2818277_tcm102-2750236-32.gif) no-repeat 0 0;
  background-size: 20px 18px;
  width: 20px;
  height: 18px;
  top: 50%;
  left: 0;
  margin-top: -9px;
}
.list-caution a:hover {
  text-decoration: underline;
}
/*.list-caution-link {
  position: relative;
  display: inline-block;
  padding-right: 16px;
}
.list-caution-link::after {
  position: absolute;
  content: "";
  display: block;
  background: url(/fmv/img2019/top/important_icon.png) no-repeat 0 0;
  background-size: 14px 12px;
  width: 14px;
  height: 12px;
  top: 50%;
  right: 0;
  margin-top: -6px;
}
.list-caution-link:hover {
  text-decoration: underline;
}*/
.column{
	/* display: flex; */
	justify-content: space-around;
	flex-wrap: wrap;
}
.column_sp2{
  justify-content: flex-start;
  position: relative;
  margin: 0;
  padding: 0;
}
.column-item {
  box-sizing: content-box;
	/* width: calc((100% - 40px) / 2); */
  padding: 12px 0;
}
.column-item:nth-of-type(2n){
  margin-left: 20px;
  border-left: 1px solid #666;
  padding-left: 19px;
}
.column-item p{
	text-align: center;
}
/*===========おすすめ情報===========*/
.post-box-context{
  margin-bottom: 12%;
}
@media screen and (max-width: 768px) {
  .post-box-context{
  margin-bottom: 20%;
  }
}
.post-area {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.post-box-3column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  align-content: space-between;
  width: 75%;
  margin-left: 8px;
}
.post-box-3column .post-box {
  display: flex;
  position: relative;
  width: calc(100% / 3 - 5px);
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .post-box-3column .post-box:nth-child(n+4) {
    margin-bottom: 0;
  }
}
.post-box-3column .post-box a {
  color: #1A1A1A;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.post-box-img {
  margin-bottom: 8px;
}
.post-box-img img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.post-box a:hover {
  background-color: #f0f0f0;
}
.post-box a:hover img {
  opacity: 0.7;
}
.post-box a:hover > .post-box-title {
  color: #fff;
  background: #000;
}
.post-box-text {
  padding-left: 4px;
  font-size: 13px;
  opacity: 0.7;
}
.post-box-title {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 700;
  opacity: 1;
}
.post-box-text.post-box-guide {
  text-align: right;
  position: absolute;
  bottom: 5px;
  right: 30px;
  font-weight: 700;
}
p.post-box-guide::after{
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  bottom: 5px;
  margin-left: 10px;
}
.fs10 {
  font-size: 10px;
}
small {
  font-size: 75% !important;
}
.super {
  vertical-align: super !important;
}
/* insta　直書き用 */
.instagram {
  width: 25%;
  height: auto;
  aspect-ratio: 1/1.7;
  overflow: hidden;
  border-bottom: 1px solid rgb(219, 219, 219);
  border-radius: 4px;
}
/* insta　直書き用ここまで */
/* insta　api埋め込み用 */
/*.instagram {
  width: 25%;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
}
.instagram a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px;
}
.insta-header-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insta-profile-picture {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 50%;
}
.insta-profile a {
  margin-left: 15px;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  background: rgba(65, 146, 239, 0.50);
}
.insta-user .insta-username {
  font-size: 14px;
  font-weight: 500;
}
.insta-contents-text {
  padding: 0 10px;
}
.insta-contents a {
  color: #000;
}
.insta-more {
  padding: 14px 0;
  color: rgba(13, 153, 255, 0.50);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #D9D9D9;
}
.insta-more span {
  color: #2F89E3;
}
.insta-like {
  font-weight: 700;
  padding-top: 5px;
}
.insta-contents .insta-username {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 16px;
}
.insta-comment {
  padding: 5px 0;
}*/
/* insta　api埋め込み用ここまで */
.mb0 {
  margin-bottom: 0 !important;
}
/*===========PICKUP MODELS===========*/
.recomend-area {
  display: flex;
  justify-content: center;
}
.recomend-box {
  position: relative;
  display: flex;
  text-align: center;
}
.recomend-box a {
  padding: 24px 24px 16px;
  background: #fff;
  border-radius: 4px;
}
.recomend-box a:hover img {
  transform:scale(1.1,1.1);
}
.recomend-box a:hover .recomend-box-new img {
  transform:scale(1,1);
}
.recomend-box a img {
  transition: transform .2s ease-in-out;
}
.recomend-box-side {
  width: 37%;
}
.recomend-box-side a {
  padding: 24px;
  background: #fff;
  border-radius: 4px;
}
.recomend-box-1column{
	max-width: 1920px;
	margin: 0 auto;
}
.recomend-box-1column .recomend-box{
	margin: 0 0 15px;
}
.recomend-box-1column .recomend-box:last-child{
	margin-bottom: 0;
}
.recomend-box-2column{
  width: 62.5%;
	display: flex;
	flex-wrap: wrap;
  margin-left: 8px;
}
.recomend-box-2column .recomend-box {
	margin-bottom: 8px;
	width: calc(100% / 2 - 5px);
}
.recomend-box-2column .recomend-box:nth-child(even) {
  margin-left: 8px;
}
.recomend-box-side .recomend-box-text01 {
  color: #000;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.32;
}
.recomend-box-side .recomend-box-text01 span {
  color: #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.recomend-box-side .recomend-box-text01 span.-fw700 {
  font-weight: 700;
}
.recomend-box-2column .recomend-box-text01 {
  margin-bottom: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.429;
  z-index: 1;
  position: relative;
}
.recomend-box-2column .recomend-box-text01 span {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}
.recomend-box-2column .recomend-box-text01 span.-fw700 {
  font-weight: 700;
}
.recomend-box-side .recomend-box-text02 {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
  z-index: 1;
  position: relative;
}
.recomend-box-2column .recomend-box-text02 {
  color: #000;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.5;
  z-index: 1;
  position: relative;
}
.recomend-box-btn.btn-e {
  display: flex;
  width: 103px;
  height: 33px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  padding-bottom: 1.5px;
  padding-left: 1.5px;
}
.recomend-area-02 {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.recomend-area-02 .recomend-box-2column {
  margin: 0;
  gap: 8px;
}
.recomend-area-02 .recomend-box-2column .recomend-box {
  margin: 0;
}
@media screen and (max-width: 1290px) {
	.recomend-box-btn.btn-e {
	  display: flex;
	  width: calc(103vw/1290*100);
	  height: calc(33vw/1290*100);
	  margin: 0 auto;
	  justify-content: center;
	  align-items: center;
	  font-size:  calc(14vw/1290*100);
	  font-weight: 700;
	  border-radius: 100px;
	  padding-bottom: 1.5px;
	  padding-left: 1.5px;
	}
}
@media screen and (max-width: 1100px) {
	.recomend-box-btn.btn-e {
	  display: flex;
	  width: 88px;
	  height: 28px;
	  margin: 0 auto;
	  justify-content: center;
	  align-items: center;
	  font-size:  12px;
	  font-weight: 700;
	  border-radius: 100px;
	  padding-bottom: 1.5px;
	  padding-left: 1.5px;
	}
}
@media screen and (max-width: 768px) {
	.recomend-box-btn.btn-e {
	  display: flex;
	  width: 103px;
	  height: 33px;
	  margin: 0 auto;
	  justify-content: center;
	  align-items: center;
	  font-size: 14px;
	  font-weight: 700;
	  border-radius: 100px;
	  padding-bottom: 1.5px;
	  padding-left: 1.5px;
	}
}
.recomend-box-side .recomend-box-btn.btn-e {
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.50);
}
.recomend-box-side a:hover .recomend-box-btn.btn-e {
  color: #fff;
  background-color: #000;
}
.recomend-box-2column .recomend-box-btn.btn-e {
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.50);
  z-index: 1;
}
.recomend-box-2column .recomend-box a:hover .recomend-box-btn.btn-e {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 769px) {
  .recomend-box-img {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .recomend-box-side {
    max-width: 472px;
  }
  .recomend-box-side a {
    width: 100%;
    padding: 18% 9% 16%;
  }
  .recomend-box-side .recomend-box-img img {
    width: 28vw;
    max-width: 375px;
  }
  .recomend-box-2column .recomend-box {
    max-width: 380px;
    max-height: 380px;
    aspect-ratio: 1;
  }
  .recomend-box-2column .recomend-box a {
    padding: 6.5% 6% 4%;
    background: #fff;
    border-radius: 4px;
    width: 100%;
    height: auto;
  }
  .recomend-box-2column .recomend-box-img img {
    width: 20vw;
    max-width: 300px;
  }
  .recomend-box-side .recomend-box-btn.btn-e {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  .recomend-box-2column .recomend-box-btn.btn-e {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.recomend-box-text-right {
  right: 0;
}
.recomend-box-text h3 {
  width: 100%;
  margin-bottom: 30px;
}
.recomend-box-text img {
  /*padding: 54px 5em;
    text-align: right;*/
  /*width: 100%;*/
	width: 60%;
  max-width: 390px;
}
.recomend-box-btn-area {
  margin: 56px 0 22px;
  text-align: center;
}
.recomend-box-btn-text {
  margin-bottom: 18px;
  color: #000;
  font-size: 16px;
}
.recomend-box-btn .btn-d {
  display: flex;
  width: 380px;
  height: 84px;
  margin: 0 auto;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: #F5F5F5;
  border-radius: 84px;
  border: 2px solid rgba(0, 0, 0, 0.50);
}
.recomend-box-btn .btn-d:hover {
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.50);
  background: #000;
}
/*===========CATEGORY===========*/
/*tab style*/
.tab-list {
  display: flex;
  -ms-flex-pack: distribute;
  max-width: 850px;
  justify-content: space-around;	
  margin: 0 auto 50px;
}
.tab-list li {
  width: auto;
  text-align: center;
  cursor: pointer;
}
.tab-list li span {
  display: block;
  margin-bottom: 15px;
}
.tab-list li img {
  width: 100%;
  margin: 0 auto;
}
.tab-on img {
  display: none;
}
.tab-list li.active .tab-on img.pc {
  display: block;
}
.tab-list li.active .tab-off {
  margin-bottom: 0;
}
.tab-list li.active .tab-off img {
  display: none;
}
.list-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list-link li {
  /*display: flex;
  flex-direction: column;
  justify-content: space-between;*/
  background-color: #fff;
  padding: 15px 0 20px;
  width: calc(100% / 4 - 25px * 2 / 3);
  margin-bottom: 25px;
}
/**::-ms-backdrop, .list-link li {
  width: 33.33%;
}*/
/*カラム数別スタイル*/
.list-link-col4 {
  justify-content: center;
}
.list-link-col4 li {
  margin-right: 15px;
}
/*.list-link-col4 li:nth-child(odd) {
  margin-left: 10%;
}
.list-link-col4 li:nth-child(even) {
  margin-right: 10%;
}*/
.list-link-col5 {
  justify-content: center;
}
.list-link-col5 li {
  margin-right: 25px;
}
.list-link-col5 li:first-child {
  margin-left: 10%;
}
.list-link-col5 li:nth-child(2) {
  margin-right: 10%;
}
.list-link-col5 li:nth-child(5) {
  margin-right: 0;
}
.list-link-col7 li{
 
}
/*カラム数別スタイル ここまで*/
.category-heading-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: normal;
  font-size: 13px;
  /*font-size: 1vw;*/	
  padding: 0 15px;	
  /*margin: 10px 0 0 25px;*/
  z-index: 9996;
}
.category-heading {
  font-size: 38px;
  /*font-size: 3vw;*/
  font-weight: bold;
  display: block;
  position: relative;
  padding-left: 21px;
  padding-right: 5px;
}
.category-heading::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #000;
  width: 10px;
  height: 30px;
  top: 50%;
  left: 0;
  border-radius: 2px;
  margin-top: -15px;
}
.category-heading-uh::before {
  background-color: #860E15;
}
.category-heading-mh::before {
  background-color: #768AAD;
}
.category-heading-sh::before {
  background-color: #396459;
}
.category-heading-nh::before {
  background-color: #71645E;
}
.category-heading-ah::before {
  background-color: #413655;
}
.category-heading-th::before {
  background-color: #C77666;
}
.category-heading-lh::before {
  background-color: #00B9DE;
}
.category-heading-ch::before {
  background-color: #587026;
}
.category-heading-fh::before {
  background-color: #002D73;
}
.category-heading-dh::before {
  background-color: #2F733D;
}
.category-heading-qh::before {
  background-color: #EFCA45;
}
.category-heading-eh::before {
  background-color: #327878;
}
.category-heading-mh::before {
  background-color: #6C80A4;
}
.category-new-icon::after {
  position: absolute;
  display: block;
  content: "NEW";
  top: -4px;
  font-size: 12px;
  /*font-size: 0.9vw;*/
  color: #FF0000;
}
.category-img {
  top: 0;
  right: 0;
  margin-bottom: 30px;
}
.category-img .pc {
  width: 244px;
  display: block;
  margin: 0 auto;
}
.category-text-area {
  font-size: 11px;
  text-align: center;
  margin-bottom: 15px;
  padding: 10% 15px 0;
}
.category-btn {
  text-align: center;
}
.category-btn .btn-a {
  font-size: 13px;
  padding: 5px 23px 4px 12px;
  border: 1px solid #1A1A1A;
  border-radius: 5px;
  background-color: #fff;
  color: #1A1A1A;
}
.category-btn .btn-arrow1::after {
  border: 6px solid transparent;
  border-left: 10px solid #1A1A1A;
  right: 3px;
  margin-top: -6px;
}
.award-banner {
  text-align: center;
  margin-bottom: 50px;
}
/*===========WEB MART===========*/
.webmart-list {
  display: flex;
  max-width: 980px;
  margin: 0 auto 30px;
}
.webmart-list li {
  text-align: center;
  width: calc(100% / 3 - 25px * 2 / 3);
}
.webmart-list li img {
  width: 50%;
  margin: 0 auto;
}
.webmart-list-text {
  font-size: 13px;
  margin-top: 10px;
}
.webmart-btn {
  text-align: center;
  margin-bottom: 70px;
}
.webmart-btn .btn-b {
  font-size: 16px;
  padding: 10px 70px 10px 50px;
  border-radius: 6px;
}
.webmart-btn .btn-arrow1::after {
  right: 15px;
}
.description .row.col_pad {
  max-width: 980px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}
.description .col_box_12 {
  width: 48.62%;
}
/*===========PICK UP===========*/
.pickup-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pickup-list li {
  width: calc(100% / 3 - 16px * 2 / 3);
  margin-bottom: 16px;
}
.pickup-list li:nth-child(n+4) {
  margin-bottom: 0;
}
.pickup-list::after{
	content:"";
	display: block;
	width: calc(100% / 3 - 16px * 2 / 3);
}
/*===========NEWS===========*/
.news-list {
  margin: 0 0 60px;
}
.news-list h3 {
  text-align: center;
  font-size: 18px;
  margin: 0 0 40px;
}
.pickupnews li {
  list-style: disc;
  position: relative;
  padding-left: 9.5em;
  margin: 0 0 15px;
  font-size: 14px;
}
.pickupnews .pickup_date {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.pickupnews li a, .pickupnews02 li a {
  color: #333;
}
.pickupnews li a:hover, .pickupnews02 li a:hover {
  text-decoration: underline;
}
.pickupnews02 li {
  list-style: disc;
  margin: 0 0 15px;
  font-size: 14px;
}
.news-list .btn-c {
  text-align: center;
}
@media screen and (max-width: 900px) {
	.column_sp2 {
    justify-content: center;
    gap: 0;
    padding: 0;
	}
  .column_sp2:after {
    content: normal;
  }
	.column-item {
		width: auto;
		text-align: center;
	}
  .column-item:nth-of-type(n){
    margin: 0;
    padding: 0;
    border-left: none;
  }
  .column-item + .column-item{
    margin-top: 20px;
    border-top: 1px solid #666;
    padding-top: 20px;
  }
  
  /*===========PICKUP MODELS===========*/	
	/*.recomend-box-2column .recomend-box{
		margin:0 0 20px 0;
		width: 100%;
	}*/
  /*===========CATEGORY===========*/
  .tab-list {
    width: auto;
    margin: 0 auto 50px;
    padding: 0 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 750px;
	flex-direction: row;  
  }
  
  .tab-list li {
    width: 30%;
    margin-right: 3%;
  }
  .tab-list li:last-child {
    margin-right: 0;
  }
  .tab-list li:nth-child(1) {
    order: 1;
  }
  .tab-list li:nth-child(2) {
    order: 2;
  }
  .tab-list li:nth-child(3) {
    order: 3;
  }
  .tab-list li:nth-child(4) {
    order: 4;
  }
  .tab-list li:nth-child(5) {
    order: 5;
  }
  .tab-list li:nth-child(6) {
    order: 6;
  }
  .tab-list li:nth-child(7) {
    order: 7;
  }

  /* .tab-list li.active .tab-on img.pc {
    display: none;
  }
  .tab-list li.active .tab-on img.sp {
    display: block;
  } */
  .list-link {
    padding: 0;
  }
  .list-link li {
	/*position: relative; */ 
    width: 48%;
    padding-bottom: 40px;
  }
  .list-link li:last-child {
    margin-bottom: 0;
  }
  /*カラム数別スタイル*/
  .list-link-col4 {
    width: auto;
  }
  .list-link-col4 li, .list-link-col5 li {
    margin-right: 0;
  }
  .list-link-col5 li:first-child {
    margin-left: 0;
  }
  .list-link-col4 li:nth-child(odd) {
    margin-right: 2%;
  }
  /*カラム数別スタイル ここまで*/
  .tab-list li img {
    width: auto;
  }
  /*.category-heading-wrap {
	display: block;
	position: absolute;   
    margin: 30px 0 0 80px;
    font-size: 25px;
    font-size: 3vw;
    top: 30px;
    left: 56px;
    z-index: 10;
  }*/
  .category-heading {
    /*font-size: 65px;*/
    font-size: 8.5vw;
    padding-left: 35px;
  }
  .category-heading::before {
    width: 3.25vw;
    height: 1em;
    border-radius: 3px;
    margin-top: -0.5em;
  }
  .category-new-icon::after {
    top: -5px;
    right: 0;
    left: 40px;
    /*font-size: 20px;*/
    font-size: 2.5vw;
  }
  .category-btn .btn-arrow1 {
    font-size: 20px;
    padding: 7px 50px 7px 30px;
    border-radius: 6px;
  }
  .category-btn .btn-a::after {
    border: 10px solid transparent;
    border-left: 14px solid #1A1A1A;
    margin-top: -10px;
    right: 9px;
  }
  .category-img {
	/*position: absolute;  */
    width: auto;
  }
  .category-img .pc {
    display: none;
  }
  .category-img .sp {
    width: 100%;
    display: block;
  }
  .category-text-area {
    padding-top: calc(53vmin);
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tab-list li.active .tab-on img.pc {
    display: none;
  }
  .tab-list li.active .tab-on img.sp {
    display: block;
  }
  .slide-dots li {
    width: calc(70% / 10);
  }
  /*===========slider===========*/
  .slide-area {
  margin-top: 48px;
  }
  .slider-img-pc {
    display: none !important;
  }
  .slider-img-sp {
    display: block !important;
  }
  /*===========富士通から大切なお知らせ===========*/
  .box-important {
  }
  .list-caution a {
    padding-top: 0;
    padding-left: 30px;
    padding: 0 0 15px 30px;
  }
  .list-caution a::before {
    top: 0;
    margin-top: 0;
  }
  /*===========FMV BRAND===========*/
  .brand-banner-area img {
    width: 100%;
  }
  /*===========おすすめ情報===========*/
  .post-area {
    display: block;
  }
  .post-box-3column {
    width: 100%;
    margin-left: 0;
  }
  .post-box-3column .post-box {
    width: calc(100% / 2 - 5px);
    margin-bottom: 24px;
  }
  .post-box-text {
    font-size: 16px;
  }
  .post-box-title {
    font-size: 20px;
  }
  .fs10 {
    font-size: 10px;
  }
  .instagram {
    width: 100%;
  }
  /* insta　直書き用 */
.instagram {
  height: auto;
  min-height: 500px;
  aspect-ratio: 1/1.33;
  overflow: hidden;
}
  /* insta　直書き用ここまで */
  /*===========PICKUP MODELS===========*/
  .recomend-area{
    display: block;
		padding: 0;
	}
  .recomend-box-side {
    width: 100%;
    margin-bottom: 15px;
  }
  .recomend-box-side .recomend-box-text01 {
    font-size: 20px;
  }
  .recomend-box-side .recomend-box-img img {
    padding: 15px 0;
    min-height: 55vw;
    object-fit: cover;
  }
  .recomend-box:last-child {
    margin-bottom: 0;
  }
  .recomend-box-2column{
    width: 100%;
    margin-left: 0;
  }
  .recomend-box-2column .recomend-box a {
    display: flex;
    flex-direction: column;
  }
  .recomend-box-2column .recomend-box .recomend-box-text02 {
    flex-grow: 1;
  }
  .recomend-box-btn-area {
    margin-bottom: 70px;
    font-size: 26px;
  }
  /*.recomend-box-1column .recomend-box{
		width: 100%;
		height: 100%;
		margin: 0 0 20px;
	}
  .recomend-box-text {
    width: 100%;
    margin: 0 auto;
    top: 0;
    padding: 0;
  }
  .recomend-box-text h3 {
    margin: 0 auto 10px;
    width: calc(100vmin - 40px);
    height: calc(100vmin - 40px);
    margin-bottom: 10px;
  }
  .recomend-box-text img {
    max-width: inherit;
	width: 100%;
  }
  .recomend-box-img {
    padding: 0px;
    text-align: center;
  }
  .recomend-box-btn {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    left: 0;
    top: calc(100vmin - 100px);
  }
  .recomend-box-btn .btn-arrow1 {
    font-size: 20px;
    padding: 7px 50px 7px 30px;
    border-radius: 6px;
  }
  .recomend-box-btn .btn-arrow1::after {
    border: 10px solid transparent;
    border-left: 14px solid #fff;
    margin-top: -10px;
    right: 9px;
  }*/
  /*===========CATEGORY===========*/
  .tab-list-b-wrapper .tab-list {
		justify-content: center;
		padding: 0;
  }
  .tab-list-b-wrapper .tab-list li{
		width: 24%;
		margin-right: 0;
  }
  /*.tab-list-b-wrapper .tab-list li:nth-child(3){
		width: 30%;
	}*/
	.tab-list-b-wrapper .tab-list li:nth-child(4){
		width: 33%;
	}
	.tab-list-b-wrapper .tab-list li:nth-child(5),.tab-list-b-wrapper .tab-list li:nth-child(6){
		width: 22%;
	}
	.tab-list-b-wrapper .tab-list li:nth-child(7){
		width: 23%;
	}
  /*===========NEWS===========*/
  .pickupnews ul, .pickupnews02 ul {
    padding-left: 20px;
  }
  .pickupnews li {
    padding-left: 8.5em;
  }
  /*===========accordion===========*/
  .accordion-box {
    padding: 0 20px;
  }
  .accordion-area {
    padding-top: 30px;
    background-color: #fff;
  }
  .accordion-box .accordion__ttl {
    position: relative;
    margin-bottom: 40px;
  }
  .accordion-box .accordion__ttl::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    top: 5px;
    right: 12px;
    border: 10px solid transparent;
    border-top: 15px solid #313232;
  }
  .accordion-box .accordion__ttl--current::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    top: -5px;
    right: 12px;
    border: 10px solid transparent;
    border-bottom: 15px solid #313232;
  }
  .accordion-box .accordion__body {
    margin-bottom: 40px;
  }
  /*===========WEB MART===========*/
  .webmart-list {
    /*display: block;*/
    width: auto;
  }
  .webmart-list li {
    width: 50%;
    margin: 0 auto;
    padding-left: 8px;
    text-align: center;
  }
  .webmart-list li:first-child {
    padding-left: 0;
  }
  .webmart-list-text {
    font-size: 18px;
    margin-top: 10px;
  }
  .webmart-btn {
    margin-bottom: 40px;
  }
  .webmart-btn .btn-b {
    padding: 10px 38px 10px 20px;
  }
  .webmart-btn .btn-arrow1::after {
    right: 6px;
  }
  .description .row.col_pad {
    display: block;
    width: auto;
  }
  .description .col_box_12 {
    width: auto;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
  }
  .description .col_box_12:first-child {
    margin-bottom: 15px;
  }
  /*===========PICK UP===========*/
  .pickup-list li {
    width: calc(100% / 2 - 10px * 2 / 2);
    margin-bottom: 20px;
  }
  .pickup-list li:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .slide-area {
  margin-top: 45px;
  }
  .post-box-title {
    font-size: 16px;
  }
  .post-box-text {
    font-size: 14px;
  }
  .fs10 {
    font-size: 10px;
  }
  .recomend-box a {
    padding: 15px;
  }
  .recomend-box-side .recomend-box-text01 {
    font-size: 18px;
  }
  .recomend-box-side .recomend-box-text01 span {
    font-size: 20px;
  }
  .recomend-box-2column .recomend-box-text01 {
    font-size: 12px;
  }
  .recomend-box-2column .recomend-box-text01 span {
    font-size: 14px;
  }
  .recomend-box .recomend-box-text02 {
    font-size: 10px;
  }
  .recomend-box-2column .recomend-box-btn.btn-e {
    width: 88px;
    height: 30px;
    font-size: 12px;
  }
  .recomend-box-btn .btn-d {
    font-size: 15px;
    width: 100%;
    height: 60px;
    max-width: 270px;
  }
  .recomend-box-text {
    width: 100%;
    margin: 0 auto;
    top: 0;
  }
  .recomend-box-text h3 {
    margin: 0 auto;
  }
  .recomend-box-btn {
    top: calc(100vmin - 80px);
  }
  .recomend-box-btn .btn-arrow1 {
    font-size: 14px;
    padding: 5px 35px 5px 20px;
  }
  .recomend-box-btn .btn-arrow1::after {
    border: 7px solid transparent;
    border-left: 11px solid #fff;
    margin-top: -8px;
    right: 6px;
  }
  .tab-list {
    margin-bottom: 20px;
  }
  .list-link li {
    padding-bottom: 20px;
  }
  .category-heading {
    /*font-size: 32px;*/
    font-size: 8vw;
    padding-left: 18px;
  }
  .category-heading::before {
    width: 10px;
    height: 25px;
    border-radius: 2px;
    margin-top: -13px;
  }
  .category-heading-wrap {
    /*font-size: 14px;*/
    font-size: 3.5vw;
    /*margin: 10px 0 0 15px;*/
    top: 20px;
    left: 25px;
  }
  .category-new-icon::after {
    top: -5px;
    right: 0;
    left: 20px;
    /*font-size: 12px;*/
    font-size: 3vw;
  }
  .category-img {
    width: auto;
    top: 0;
    right: 0;
    margin-right: 0;
  }
  .category-text-area {
    font-size: 12px;
    padding-top: calc(52vmin);
  }
  .category-btn .btn-arrow1 {
    font-size: 14px;
    padding: 5px 35px 5px 20px;
  }
  .category-btn .btn-arrow1::after {
    border: 7px solid transparent;
    border-left: 11px solid #1A1A1A;
    margin-top: -8px;
    right: 6px;
  }
  .webmart-list-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .category-heading-wrap {
    font-size: 3.3vw;
    left: 20px;
  }
  .category-text-area {
    padding-top: 160px;
  }
}