.content {
  background: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header {
  display: flex;
  justify-content: space-between;
  height: 30vh;
}
.head-col {
  padding: 5vh 8vh;
  width: calc(100% / 7 * 5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-col {
    padding: 5vh 8vh;
    width: calc(100% / 7 * 2);
    border-left: .5vw solid #81d45a;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #171717;
}
.title {
  display: flex;
  justify-content: space-between;
}
.logo {

}
.header_name {
  font: bold .95rem sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: right;
  display: flex;
  align-items: center;
}
.header_name::before {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
}
.choice {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pick {
  font: bold 1.2rem sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-right: 1em;
}
.desc {
  width: 50%;
  max-width: 490px;
  font: normal .95rem sans-serif;
  line-height: 1.6em;
  color: #7e7e7e;
  letter-spacing: .025em;
}
.block_desc {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font: bold 14px sans-serif;
  letter-spacing: .025em;
  line-height: 1.5;
}
.block_name {
  font: bold 30px sans-serif;
  line-height: 32px;
  position: absolute;
  left: 6.5vh;
  bottom: 3.5vh;
}
.blocks {
  display: flex;
  height: 70vh;
  background-color: #171717;
}
.block {
  width: calc(100% / 7);
  padding: 3vh 4vh;
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #171717;
}
.block {
  border-right: 1px solid hsla(0,0%,100%,.16);
  border-top: 1px solid hsla(0,0%,100%,.16);
}
.block:hover{
  cursor: pointer;
}
.block:hover .bg{
  animation: a 1s forwards;
}
.block:hover .name{
  animation: b 0.6s forwards;
}
.bg{
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; 
}
.bg::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}
[data-id="gp"] .bg {
  background-image: url('img/gp-v.jpg');
}
[data-id="md"] .bg {
  background-image: url('img/md-v.jpg');
}
[data-id="nd"] .bg {
  background-image: url('img/nd-v.jpg');
}
[data-id="pr"] .bg {
  background-image: url('img/pr-v.jpg');
}
[data-id="rb"] .bg {
  background-image: url('img/rb-v.jpg');
}
[data-id="sk"] .bg {
  background-image: url('img/sk-v.jpg');
}
[data-id="bt"] .bg {
  background-image: url('img/bt-v.jpg');
}
[data-id="wr"] .bg {
  background-image: url('img/wr-v.jpg');
}
[data-id="th"] .bg {
  background-image: url('img/th-v.jpg');
}
.block .name {
  font: bold 3rem sans-serif;
  letter-spacing: .05em;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  z-index: 1;
}
.pc_hiden {
  display: none;
}

@keyframes a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes b {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .mob_hiden {
    display: none;
  }
  .pc_hiden {
    display: flex;
  }
  .header {
    flex-direction: column;
    height: auto!important;
  }
  .head-col {
    width: 100%;
    padding: 5vh 4vh;
    height: 400px;
  }
  .choice {
    flex-direction: column-reverse;
    align-items: flex-start;
    height: 24vh;
  }
  .pick {
    font: bold 0.9rem sans-serif;
	margin-top: 15px;
  }
  .desc {
    width: 100%;
  }
  .blocks {
    flex-direction: column;
    height: auto!important;
  }
  .block {
    width: 100%;
    height: 124px;
    justify-content: flex-start;
    align-items: flex-end;
    border-bottom: 1px solid hsla(0,0%,100%,.16);
    border-right: 0;
  }
  .block .name{
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 26px;
  }
  [data-id="gp"] .bg {
    background-image: url('img/gp-h.jpg');
  }
  [data-id="md"] .bg {
    background-image: url('img/md-h.jpg');
  }
  [data-id="nd"] .bg {
    background-image: url('img/nd-h.jpg');
  }
  [data-id="pr"] .bg {
    background-image: url('img/pr-h.jpg');
  }
  [data-id="rb"] .bg {
    background-image: url('img/rb-h.jpg');
  }
  [data-id="sk"] .bg {
    background-image: url('img/sk-h.jpg');
  }
  [data-id="bt"] .bg {
    background-image: url('img/bt-h.jpg');
  }
  [data-id="wr"] .bg {
    background-image: url('img/wr-h.jpg');
  }
  [data-id="th"] .bg {
    background-image: url('img/th-h.jpg');
  }
  .block.active .bg {
    opacity: 1 !important;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider__wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__item {
  flex: 0 0 calc(100% / 7);
  max-width: calc(100% / 7);
}

.slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
}

.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.slider__control_left {
  left: 0;
}

.slider__control_right {
  right: 0;
}

.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider__control_right::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.slider__item>div {
  line-height: 250px;
  font-size: 100px;
  text-align: center;
}

.slick-slide {
  height: 70vh;
}
.slick-arrow {
  position: absolute;
  top: calc(50% - 25px);
  height: 50px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
  border: 0;
  z-index: 2;
}
.slick-next {
  right: 0;
}
.slick-next::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.slick-prev {
  left: 0;
}
.slick-prev::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
}
.slick-initialized .slick-slide {
  display: flex;
}
button:focus {
  outline: 0;
}
.block:focus {
  outline: 0;
}