/*
 * 【はじめに】
 * 最終的には可能な限り、コメントは削除してください。
 * ここに記載しているコメントもほぼ不要です(auPay start / ecd は必要)
 * 変数の使い方
 * $ec_dir ･･･ それぞれ各ECの絶対パス(現状)
 * $ec_id ･･･ それぞれ各ECのID(CSVで設定している分)
 *
 * 例：background-image: url($ec_dir + '/img/bn_main_background_sp.jpg');
 *
 * SCSSについて
 * 例：if制御
 *	@if $shop == 1 {
 * 		#pc_header.ac img {
 *			width: initial;
 *		}
 *	}
 *
 * 今分かっている問題
 * 1.rgb()について
 *	 rgba()を利用してください。うまく変換されません
 */
/* auPayについては、figureタグ等利用できないタグがあり、変換して利用する事になる
 * その変換されたタグ用にCSSを設定する必要があるので、下記コメントタグを利用し、
 * 開始・終了で閉じる事
 * また、if制御を利用して切り替えると楽
 * @if $shop == 5 {
 *	.studless .recommend > h3 > img {
 *		width: 100%;
 *	}
 * } @else {
 *	.studless .recommend > div img {
 *		width: 100%;
 *	}
 * }
 */
@charset "utf-8";
.zeetex * {
  box-sizing: border-box;
  line-height: 1.5; }

.zeetex img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom; }

.zeetex #wrap {
  background: #fff url("/asp/photo/auction/brand/zeetex/img/sp_5000max_base.jpg") top center/cover no-repeat;
  padding: 0px;
  margin: 0px; }

.zeetex #page-top {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: #9ac;
  border-radius: 50%;
  -webkit-transition: background 0.2s linear, opacity 0.2s linear;
  -o-transition: background 0.2s linear, opacity 0.2s linear;
  transition: background 0.2s linear, opacity 0.2s linear;
  -webkit-box-shadow: 1px 2px 5px #000;
  box-shadow: 1px 2px 5px #000;
  opacity: 0.85;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer; }

.zeetex #page-top img {
  width: 100%; }

.zeetex main .bestcar_link {
  position: fixed;
  bottom: 80px;
  right: 0px;
  width: 170px;
  height: auto;
  z-index: 999; }

.zeetex #header {
  position: inherit;
  padding: 0 5px;
  background-color: #00307c;
  border-bottom: 3px solid #f0f000;
  box-shadow: 1px 2px 5px #333; }

.zeetex #header > div {
  margin: 0 auto;
  padding: 5px 0px 0px 0px;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.zeetex #header > div a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline; }

.zeetex #header img {
  width: inherit; }

.zeetex header .menu_btn {
  width: 50px;
  height: 50px;
  background-color: #003065;
  border: 3px solid #f0f000;
  display: none;
  justify-content: center;
  align-items: center;
  float: right;
  margin: 10px; }

.zeetex header .menu_btn.is-fixed {
  display: flex;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
  margin: 0;
  animation: slidedown 0.5s; }

@keyframes slidedown {
  from {
    transform: translateY(-20px);
    opacity: 0; }

  to {
    transform: translateY(0);
    opacity: 1; } }

.zeetex header .menu_btn div, .zeetex header .menu_btn div::before, .zeetex header .menu_btn div::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: 0.5s; }

.zeetex header .menu_btn div::before {
  position: absolute;
  bottom: 10px; }

.zeetex header .menu_btn div::after {
  position: absolute;
  top: 10px; }

.zeetex header .menu_btn.open div {
  transform: rotate(45deg); }

.zeetex header .menu_btn.open div::before {
  transform: rotate(90deg);
  bottom: 0px; }

.zeetex header .menu_btn.open div::after {
  transform: rotate(-90deg);
  top: 0px; }

.zeetex header .top_nav {
  background-color: #003065;
  box-shadow: 1px 2px 5px #333; }

.zeetex header .top_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  padding: 3px 0; }

.zeetex header .top_nav ul li {
  width: 25%;
  border-left: 1px solid #fff; }

.zeetex header .top_nav ul li:first-of-type {
  border-left: none; }

.zeetex header .top_nav ul li a {
  color: #fff;
  width: 100%; }

.zeetex header .top_nav ul li a div {
  line-height: 1;
  padding-top: 10px;
  font-size: 16px;
  font-weight: bold;
  display: none; }

.zeetex header .top_nav ul li a small {
  font-size: 12px;
  font-weight: bold; }

.zeetex header .top_nav.open ul {
  display: block;
  position: absolute;
  width: 30%;
  top: 58px;
  z-index: 100;
  right: 10px;
  background-color: #003065;
  border: 3px solid #f0f000;
  animation: slidein 0.5s;
  padding: 0.5em; }

.zeetex header .top_nav.open ul li {
  width: 100%;
  border-left: none; }

.zeetex header .top_nav.open.is-fixed ul {
  position: fixed; }

@keyframes slidein {
  from {
    transform: translateX(20px);
    opacity: 0; }

  to {
    transform: translateX(0);
    opacity: 1; } }

.zeetex #top_navi > div {
  margin: 0 auto 50px;
  padding-top: 50px;
  text-align: center;
  width: 90%; }

.zeetex #top_navi img {
  max-width: 450px; }

.zeetex #pickup {
  overflow: hidden; }

.zeetex #pickup img {
  display: block;
  margin: 0 auto;
  max-width: 450px; }

.zeetex #pickup .article {
  padding: 10px 15px 30px; }

.zeetex #pickup .pickup_area {
  margin-bottom: 5vw;
  margin-top: 0; }

.zeetex #pickup .pickup_box {
  margin-bottom: 10vw; }

.zeetex #pickup .pickup_box:last-of-type {
  margin-bottom: 0px; }

.zeetex #pickup .description, .zeetex #pickup .ruby {
  color: #fff;
  text-shadow: 0 0 5px #000;
  font-size: 3.5vw;
  text-indent: 0.3em;
  font-weight: bold; }

.zeetex #pickup h3 {
  width: 60%; }

.zeetex #pickup .ruby + div {
  position: relative;
  height: 80vw;
  padding-top: 10px;
  margin-bottom: 10px; }

.zeetex #pickup .pickup_description {
  padding: 1em 51% 1em 1em;
  font-size: 3vw;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.7); }

.zeetex #pickup .pickup_description img {
  display: block;
  margin-top: 1em; }

.zeetex #pickup .pickup_img {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0; }

.zeetex #pickup .pickup_img img {
  height: 80vw;
  width: auto; }

.zeetex #pickup a.link_lineup {
  color: #fff;
  font-size: 4.5vw;
  padding: 0.5em 1em;
  background-color: #a10710;
  border-radius: 2em;
  font-weight: bold; }

.zeetex #pickup small {
  color: #fff;
  float: right;
  line-height: 2;
  font-size: 14px;
  font-weight: bold; }

.zeetex #column {
  background: #0a57b0 url("/asp/photo/auction/brand/zeetex/img/sp_dubai.jpg") center center/cover no-repeat; }

.zeetex .article {
  padding: 50px 15px 30px; }

.zeetex h2.midasi {
  display: block;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  transform: scaleY(1.2);
  letter-spacing: 0.03em; }

.zeetex .article .midasi small {
  display: block;
  font-size: small;
  line-height: normal;
  padding-left: 0px;
  transform: scaleY(0.8); }

.zeetex .article > h2 + div {
  margin-top: 40px; }

.zeetex .article > h2 + div p {
  font-size: 14px;
  font-family: sans-serif;
  text-align: center;
  padding-bottom: 20px;
  line-height: 1.8;
  color: #fff; }

.zeetex .article > h2 + div p br.sp {
  display: none; }

.zeetex #lineup {
  background: #00307c; }

.zeetex #lineup .article {
  background: url("/asp/photo/auction/brand/zeetex/img/sp_lineup_back.png") top center/contain no-repeat; }

.zeetex #lineup .article > nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 30px auto 50px; }

.zeetex #lineup .article > nav ul li {
  width: 49%; }

.zeetex #lineup .article > nav ul li a {
  color: #fff;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: normal;
  border: 2px solid #fff;
  border-radius: 15px;
  width: 100%;
  display: block;
  text-align: center;
  transform: scaleY(1.2);
  line-height: 1;
  padding: 0.4em 0 0.2em; }

.zeetex #lineup .article > nav ul li a small {
  display: block;
  font-size: 12px;
  transform: scaleY(0.8); }

.zeetex #lineup .article div#summer, .zeetex #lineup .article div#studless {
  margin-bottom: 80px; }

.zeetex #lineup .article div h3 {
  color: #73f1ff;
  display: block;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  transform: scaleY(1.2);
  letter-spacing: 0.03em;
  margin-bottom: 20px; }

.zeetex #lineup .article div#studless h3 {
  background: url("/asp/photo/auction/brand/zeetex/img/sp_lineup_back.png") top center/cover no-repeat;
  width: 100vw;
  height: 30vw;
  padding-top: 10vw;
  position: relative;
  left: -15px;
  margin: 0 auto 20px; }

.zeetex #lineup .article div#summer p {
  font-size: 14px;
  font-family: sans-serif;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  padding-bottom: 0; }

.zeetex #lineup #map .map_area {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative; }

.zeetex #lineup #map .map_area ul li a img {
  height: 16%;
  width: auto;
  position: absolute;
  top: 0;
  left: 0; }

.zeetex #lineup #map .map_area ul li.zt6000_eco a img {
  top: 74%;
  left: 69%; }

.zeetex #lineup #map .map_area ul li.hp6000_eco a img {
  top: 30%;
  left: 74%; }

.zeetex #lineup #map .map_area ul li.su6000_eco a img {
  top: 51%;
  left: 52%; }

.zeetex #lineup #map .map_area ul li.hp3000_vfm a img {
  top: 21%;
  left: 55%; }

.zeetex #lineup #map .map_area ul li.hp3001_vfm a img {
  top: 21%;
  left: 39%; }

.zeetex #lineup #map .map_area ul li.hp2000_vfm a img {
  top: 30%;
  left: 87%; }

.zeetex #lineup #map .map_area ul li.ht1000_vfm a img {
  top: 63%;
  left: 60%; }

.zeetex #lineup #map .map_area ul li.su1000_vfm a img {
  top: 51%;
  left: 69%; }

.zeetex #lineup #map .map_area ul li.zt1000 a img {
  top: 74%;
  left: 52%; }

.zeetex #lineup #map .map_area ul li.hp5000_max a img {
  top: 18%;
  left: 14%; }

.zeetex #lineup #map .map_area ul li.su5000_max a img {
  top: 26%;
  left: 26%; }

.zeetex #lineup .lineup_navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.zeetex #lineup .lineup_navi .area_pt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: solid 1px #fff;
  padding: 30px 10px;
  max-width: 400px;
  position: relative; }

.zeetex #lineup .lineup_navi .area_pt:last-of-type {
  border-bottom: none; }

.zeetex #lineup .lineup_navi .area_pt > img {
  max-height: 250px;
  width: auto;
  margin-bottom: 10px; }

.zeetex #lineup .lineup_navi .area_pt > .type {
  position: absolute;
  right: 0; }

.zeetex #lineup .lineup_navi .area_pt > h4 {
  color: #fff;
  font-size: 28px;
  font-weight: normal;
  transition: 0.2s;
  width: 100%;
  text-align: center;
  transform: scaleY(1.2); }

.zeetex #lineup .lineup_navi .area_pt > .ruby {
  width: 100%;
  color: #fff;
  font-size: 11px;
  text-align: center;
  margin-bottom: 20px; }

.zeetex #lineup .lineup_navi .area_pt a.link_lineup {
  color: #00307c;
  background-color: #73f1ff;
  text-align: center;
  padding: 5px 40px;
  font-size: 16px;
  border-radius: 18px;
  transition: 0.2s;
  font-weight: bold; }

.zeetex #lineup .lineup_navi .area_pt a.link_lineup:hover {
  background-color: #fff;
  text-decoration: underline; }

.zeetex #movies {
  background: #555 url("/asp/photo/auction/brand/zeetex/img/sp_promotion.jpg") center/cover; }

.zeetex #movies .article {
  padding: 70px 10vw 30px; }

.zeetex #movies .article > h2 + div {
  margin-top: 60px;
  background-color: #fff;
  margin-bottom: 25vw; }

.zeetex #movies .movie p {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  text-shadow: none;
  padding: 0 15px 15px;
  text-indent: 0;
  text-align: justify; }

.zeetex #movies .movie_main {
  height: 60vw;
  background-color: #fff;
  padding: 15px; }

.zeetex #movies .movie_main iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px; }

.zeetex #history {
  color: #fff;
  background-color: #000; }

.zeetex #history .article {
  background: url("/asp/photo/auction/brand/zeetex/img/history_back.png") top -60px center no-repeat;
  background-size: 140%;
  padding: 15vw 15px 30px; }

.zeetex #history h2.midasi {
  border: none;
  color: #fff;
  text-shadow: none; }

.zeetex #history table {
  line-height: 26px;
  font-size: 14px;
  margin: 20vw auto 30px; }

.zeetex #history table tr {
  vertical-align: top; }

.zeetex #history table tr:last-of-type th, .zeetex #history table tr:last-of-type td {
  padding-top: 30px; }

.zeetex #history table th {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100px;
  font-weight: normal; }

.zeetex #history table td {
  font-weight: normal;
  font-family: sans-serif; }

.zeetex #history table td small {
  padding-left: 2em;
  text-indent: -1em;
  display: block;
  line-height: 1.5; }

.zeetex footer .partner {
  background-color: #efe9f2;
  text-align: center;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.zeetex footer .partner > span, .zeetex footer .partner > a {
  width: 100%;
  margin: 15px; }

.zeetex footer .partner img {
  width: initial; }

.zeetex #zt_footer {
  background-color: #f37319; }

.zeetex #zt_footer nav {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-shadow: 1px 1px 2px #000;
  padding: 20px; }

.zeetex #zt_footer .ztfoot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }

.zeetex #zt_footer .ztfoot a img, .zeetex #zt_footer .ztfoot ul {
  width: 150px; }

.zeetex #zt_footer .ztfoot ul {
  margin-top: 10px; }

.zeetex #zt_footer .ztfoot ul li {
  text-align: center;
  line-height: 1.8; }

.zeetex #zt_footer .ztfoot ul li a, .zeetex #zt_footer .ft_lineup > a {
  color: #fff;
  font-weight: bold; }

.zeetex #zt_footer .ft_lineup {
  display: flex;
  flex-wrap: wrap;
  width: 50%; }

.zeetex #zt_footer .ft_lineup > a {
  display: block;
  width: 100%;
  margin: 10px 0; }

.zeetex #zt_footer .ft_lineup ul {
  margin-right: 20px; }

.zeetex #zt_footer .ft_lineup ul li a {
  color: #fff; }

.zeetex footer > nav {
  background-color: #00307c;
  border-top: 3px solid #f0f000; }

.zeetex footer > nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  padding: 20px 20px; }

.zeetex footer > nav ul li {
  margin: 0.5em 1em; }

.zeetex footer > nav ul li a {
  color: #fff; }

.zeetex footer address {
  background-color: #00307c;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding-bottom: 10px; }

@media screen and (min-width: 540px) {
  .zeetex .article > h2 + div p br.pc {
    display: block; }

  .zeetex #lineup .lineup_navi .area_pt {
    width: 60%; } }

@media screen and (min-width: 768px) {
  .zeetex #wrap {
    background: #fff url("/asp/photo/auction/brand/zeetex/img/pc_5000max_base.jpg") top center/cover no-repeat; }

  .zeetex main .bestcar_link {
    width: 270px;
    height: auto; }

  .zeetex .article {
    padding: 80px 15px 30px; }

  .zeetex header .top_nav ul {
    width: 70%;
    margin-left: auto; }

  .zeetex header .top_nav ul li:first-of-type {
    border-left: 1px solid #fff; }

  .zeetex header .top_nav ul li a div {
    display: block; }

  .zeetex header .top_nav ul li a small {
    font-weight: normal; }

  .zeetex header .top_nav.open ul {
    width: 245px;
    text-align: left;
    padding: 1em; }

  .zeetex header .top_nav.open ul li {
    border-left: none; }

  .zeetex header .top_nav.open ul li a div {
    display: inline-block; }

  .zeetex header .top_nav.open ul li a small {
    margin-left: 1em; }

  .zeetex #pickup .pickup_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px; }

  .zeetex #pickup .pickup_box {
    width: 45%;
    margin-bottom: 0; }

  .zeetex #pickup .description, .zeetex #pickup .ruby {
    font-size: 2vw; }

  .zeetex #pickup h3 {
    width: 80%; }

  .zeetex #pickup .ruby + div {
    height: auto;
    margin-bottom: 6vw; }

  .zeetex #pickup .pickup_description {
    padding: 1em;
    font-size: 14px;
    width: 90%;
    height: calc(420px - 10vw);
    background-color: rgba(255, 255, 255, 0.7); }

  .zeetex #pickup .pickup_description img {
    width: 60%;
    position: absolute;
    left: 10px;
    bottom: calc(80px - 6vw); }

  .zeetex #pickup .pickup_description span:nth-of-type(2) {
    width: 45%;
    height: 200px;
    float: right; }

  .zeetex #pickup .pickup_img {
    top: calc(240px - 10vw);
    right: -30px; }

  .zeetex #pickup .pickup_img img {
    height: 25vw;
    margin-right: 0; }

  .zeetex #pickup a.link_lineup {
    color: #fff;
    font-size: 18px;
    padding: 0.5em 1em;
    background-color: #a10710;
    border-radius: 2em; }

  .zeetex #pickup small {
    float: none;
    position: relative;
    bottom: calc(110px - 10vw);
    right: -50px; }

  .zeetex #column {
    background: #0a57b0 url("/asp/photo/auction/brand/zeetex/img/pc_dubai.jpg") bottom center/cover no-repeat; }

  .zeetex .article > h2 + div {
    margin-top: 60px;
    margin-bottom: 100px; }

  .zeetex .article > h2 + div p br.sp {
    display: block; }

  .zeetex .article > h2 + div p br.pc {
    display: none; }

  .zeetex .article > div p br.pc {
    display: none; }

  .zeetex #lineup .article {
    background: url("/asp/photo/auction/brand/zeetex/img/pc_lineup_back.png") top center/contain no-repeat; }

  .zeetex #lineup .article > nav ul {
    margin: 50px auto 80px; }

  .zeetex #lineup .article div#summer {
    margin-bottom: 0px; }

  .zeetex #lineup .article > div#studless {
    margin-bottom: 100px; }

  .zeetex #lineup .article div#studless h3 {
    background: url("/asp/photo/auction/brand/zeetex/img/pc_lineup_back.png") top center/cover no-repeat;
    height: 230px;
    padding-top: 60px; }

  .zeetex #lineup #map .map_area {
    margin-bottom: 100px; }

  .zeetex #lineup #map .map_area ul li.zt6000_eco a img {
    top: 77%;
    left: 69%; }

  .zeetex #lineup #map .map_area ul li.hp6000_eco a img {
    top: 32%;
    left: 73%; }

  .zeetex #lineup #map .map_area ul li.su6000_eco a img {
    top: 52%;
    left: 53%; }

  .zeetex #lineup #map .map_area ul li.hp3000_vfm a img {
    top: 23%;
    left: 54%; }

  .zeetex #lineup #map .map_area ul li.hp3001_vfm a img {
    top: 23%;
    left: 38%; }

  .zeetex #lineup #map .map_area ul li.hp2000_vfm a img {
    top: 32%;
    left: 86%; }

  .zeetex #lineup #map .map_area ul li.ht1000_vfm a img {
    top: 65%;
    left: 61%; }

  .zeetex #lineup #map .map_area ul li.su1000_vfm a img {
    top: 52%;
    left: 69%; }

  .zeetex #lineup #map .map_area ul li.zt1000 a img {
    top: 77%;
    left: 53%; }

  .zeetex #lineup #map .map_area ul li.hp5000_max a img {
    top: 20%;
    left: 14%; }

  .zeetex #lineup #map .map_area ul li.su5000_max a img {
    top: 28%;
    left: 26%; }

  .zeetex #lineup .lineup_navi .area_pt {
    width: 32%;
    padding: 50px 10px 30px;
    margin-bottom: 30px; }

  .zeetex #lineup .lineup_navi .area_pt:nth-of-type(n+10) {
    margin-bottom: 22px; }

  .zeetex #lineup .lineup_navi .area_pt:last-of-type {
    border-bottom: solid 1px #fff; }

  .zeetex #lineup .lineup_navi .area_pt > img {
    margin-bottom: 20px; }

  .zeetex #lineup .lineup_navi .area_pt > .type {
    top: 0; }

  .zeetex #movies {
    background: #555 url("/asp/photo/auction/brand/zeetex/img/pc_promotion.jpg") center/cover; }

  .zeetex #movies .article > h2 + div {
    background: none;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; }

  .zeetex #movies .movie {
    background-color: #fff;
    width: 45%;
    max-width: 365px; }

  .zeetex #movies .movie_main {
    height: 22vw;
    max-height: 200px; }

  .zeetex #history .article {
    background-size: 110%; }

  .zeetex #history table {
    line-height: 30px;
    font-size: 16px;
    margin: 12vw auto 50px; }

  .zeetex footer .partner {
    display: block; }

  .zeetex footer .partner > span, .zeetex footer .partner > a {
    width: auto; }

  .zeetex #zt_footer .ztfoot > a {
    margin-right: 7vw; }

  .zeetex #zt_footer nav {
    font-size: 14px; } }

@media screen and (min-width: 960px) {
  .zeetex #lineup .lineup_navi .area_pt {
    width: 25%; }

  .zeetex #lineup .lineup_navi .area_pt:nth-of-type(n+9) {
    margin-bottom: 22px; } }

@media screen and (min-width: 1024px) {
  .zeetex #header > div {
    width: 994px; }

  .zeetex .article {
    width: 994px;
    margin: 0 auto; }

  .zeetex header .menu_btn.is-fixed {
    margin-right: calc(50% - 510px); }

  .zeetex header .top_nav ul {
    width: 720px;
    margin-right: calc(50% - 510px); }

  .zeetex header .top_nav ul li:last-of-type {
    border-right: 1px solid #fff; }

  .zeetex header .top_nav.open ul li:last-of-type {
    border-right: none; }

  .zeetex #pickup .description, .zeetex #pickup .ruby {
    font-size: 20px; }

  .zeetex #pickup .ruby + div {
    margin-bottom: 40px; }

  .zeetex #pickup .pickup_description {
    height: 300px; }

  .zeetex #pickup .pickup_description img {
    width: 55%;
    bottom: 15px; }

  .zeetex #pickup .pickup_description span:nth-of-type(-n+2) {
    width: 45%;
    height: 100px;
    float: right;
    clear: both; }

  .zeetex #pickup .pickup_img {
    top: 80px; }

  .zeetex #pickup .pickup_img img {
    height: 260px; }

  .zeetex #pickup small {
    bottom: 0px;
    right: -120px; }

  .zeetex #lineup .lineup_navi {
    justify-content: flex-start; }

  .zeetex #lineup .article div#studless h3 {
    width: 994px;
    left: 0; }

  .zeetex #movies .article {
    padding: 80px 15px 30px; }

  .zeetex #history .article {
    padding: 150px 15px 30px; }

  .zeetex #history table {
    margin: 124px auto 50px; }

  .zeetex #zt_footer nav {
    width: 994px;
    margin: 0 auto;
    box-sizing: border-box; }

  .zeetex #zt_footer .ztfoot > a {
    margin-right: 72px; } }
