/*
 * 【はじめに】
 * 最終的には可能な限り、コメントは削除してください。
 * ここに記載しているコメントもほぼ不要です(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";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&family=Open+Sans:ital,wght@0,400;0,700;1,800&family=Oswald:wght@400;700&display=swap');
.rm_type {
  background: #f2ffff;
  color: #222;
  font-family: "Noto Sans JP", "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "Roboto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }

.cooper {
  overflow: hidden;
  background-color: #f9feff; }

.cooper header .bread {
  font-size: 12px;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #00113a; }

.cooper header .bread a {
  color: #fff;
  text-decoration: underline; }

@media screen and (min-width: 768px) {
  /*@media screen and (min-width: 1024px) {
  @if $shop !=1 {
    .cooper header .bread {
      margin-left: calc(50% - 500px);
    }
  }
}*/
    .cooper header .bread a {
      text-decoration: none; }
    .cooper header .bread a:hover {
      text-decoration: underline; } }

.cooper #aw_header {
  background-color: #001e61;
  padding: 15px 0;
  overflow: hidden; }

.cooper #aw_header a {
  float: right;
  transition: 0.3s; }

.cooper #aw_header img {
  padding: 0 10px;
  vertical-align: top;
  height: 25px; }

.cooper .catch {
  background: url("/asp/photo/auction/brand/cooper/img/catch_back_sp.jpg") top center / cover no-repeat;
  height: 78vw;
  position: relative;
  padding-bottom: 20px; }

.cooper .catch h2 img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30%; }

.cooper .catch h3 {
  width: 80%;
  max-width: 600px;
  position: absolute;
  bottom: 40px;
  right: 10px;
  margin: 0 auto; }

.cooper .catch h3 img {
  width: 100%; }

.cooper .catch .top_menu .menu_btn {
  width: 50px;
  height: 55px;
  border-radius: 10px;
  border: 2px solid #001e61;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background-color: #fff;
  padding-top: 6px; }

.cooper .catch .top_menu .menu_btn p {
  font-size: 14px;
  font-weight: bold;
  color: #001e61;
  transform: scale(0.86, 1.3); }

.cooper .catch .top_menu .menu_btn.is-fixed {
  position: fixed;
  top: 11px;
  right: 11px;
  animation: slidedown 0.5s; }

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

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

.cooper .catch .top_menu .menu_btn div {
  width: 30px;
  height: 2px;
  background-color: #001e61;
  position: relative;
  transition: 0.5s; }

.cooper .catch .menu_btn.open {
  border: none;
  box-shadow: none;
  background-color: transparent;
  top: 15px;
  right: 11px;
  z-index: 100; }

.cooper .catch .top_menu .menu_btn.open div:nth-of-type(1) {
  transform: rotate(48deg) translate(7px, 7px); }

.cooper .catch .top_menu .menu_btn.open div:nth-of-type(2) {
  opacity: 0; }

.cooper .catch .top_menu .menu_btn.open div:nth-of-type(3) {
  transform: rotate(-51deg) translate(6px, -6px); }

.cooper .close_menu {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: fixed;
  z-index: -100;
  transition: 0.5s; }

.cooper .top_menu ul {
  display: flex;
  flex-wrap: wrap;
  width: 250px;
  border-radius: 10px;
  border: 2px solid #001e61;
  box-sizing: border-box;
  position: absolute;
  right: -100%;
  top: 10px;
  opacity: 0;
  z-index: 90;
  transition: 0.5s;
  background-color: #fff; }

.cooper .top_menu ul.open {
  right: 10px;
  opacity: 1;
  padding: 15px; }

.cooper .top_menu.is-fixed ul.open {
  position: fixed; }

.cooper .top_menu ul li img {
  width: 55%;
  display: block;
  margin: 10px auto 0; }

.cooper .top_menu ul li {
  width: 90%;
  margin: 0 auto 10px;
  box-sizing: border-box; }

.cooper .catch .top_menu ul li:nth-of-type(n+2) a {
  display: block;
  padding: 5px 10px;
  color: #001e61;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  font-family: 'Oswald', sans-serif; }

.cooper .catch .top_menu ul li:nth-of-type(-n+6) a span {
  font-weight: bold;
  display: block;
  font-size: 12px;
  line-height: 1.5;
  font-family: sans-serif;
  /* 日本公式サイト　リンクボタン
.cooper .catch .top_menu ul li:last-of-type a {
  background-color: #001e61;
  color: #fff;
  max-width: 130px;
  margin: 0 auto;
  line-height: 1.3;
  border-radius: 10px;
  padding: 7px 0;
}*/ }

.cooper .lineup_btn {
  background-color: #001e61;
  border-radius: 1em;
  width: 50%;
  margin: 20px auto 50px;
  text-align: center;
  position: relative; }

.cooper .lineup_btn a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 10px;
  letter-spacing: 1px; }

.cooper .lineup_btn span {
  font-size: 12px; }

.cooper .lineup_btn::after {
  content: "";
  position: absolute;
  border: 7px solid transparent;
  border-top: 12px solid #eb0028;
  right: 18px;
  top: 43%; }

.cooper .lineup_btn:last-of-type::after {
  content: "";
  position: absolute;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #eb0028;
  border-top: 0;
  right: 18px;
  top: 37%; }

.cooper .section_title {
  position: relative;
  margin: 20px 0 45px 20px;
  z-index: 1;
  color: #00113a; }

.cooper .section_title::after {
  content: "";
  display: block;
  width: 50vw;
  max-width: 270px;
  height: 3px;
  background-color: #eb0028;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -7px; }

.cooper .section_title h4 {
  font-size: 26px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  line-height: 1.3; }

.cooper .section_title span {
  display: block;
  font-size: 16px;
  font-family: sans-serif; }

.cooper #about_us h5 {
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: #00113a; }

.cooper #about_us p {
  margin: 10px 0;
  color: #00113a; }

.cooper #about_us img {
  width: 100%;
  vertical-align: top; }

.cooper #about_us .history1, .cooper #about_us .history2, .cooper #about_us .history3 {
  margin-bottom: 40px;
  padding: 0 20px; }

.cooper #pickup .section_title {
  margin-top: 40px; }

.cooper #pickup .pickup_content {
  background: url("/asp/photo/auction/brand/cooper/img/bg_pickup_sp.jpg") center / cover no-repeat;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten; }

.cooper #pickup .pickup_content ul li {
  position: relative;
  height: 470px;
  padding-left: 30px;
  margin-bottom: 90px; }

.cooper #pickup .pickup_content ul li:last-of-type {
  margin-bottom: 50px; }

.cooper #pickup .pickup_content ul li img {
  display: block;
  position: absolute;
  bottom: -30px;
  right: -40px;
  max-height: 430px;
  width: inherit; }

.cooper #pickup .pickup_content ul li:last-of-type img {
  position: absolute;
  left: -40px;
  bottom: auto; }

.cooper #pickup .pickup_content ul li div {
  position: absolute;
  bottom: -20px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid #001e61;
  padding: 15px 20px 20px 20px;
  color: #001e61;
  z-index: 1;
  width: 85%;
  box-sizing: border-box; }

.cooper #pickup .pickup_content ul li:last-of-type div {
  bottom: 50px; }

.cooper #pickup .pickup_content ul li div h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em; }

.cooper #pickup .pickup_content ul li div p {
  margin: 5px 0 20px; }

.cooper #pickup .pickup_content ul li div small {
  font-weight: bold; }

.cooper #pickup .pickup_content ul li div a {
  background-color: #eb0028;
  border-radius: 15px;
  padding: 7px 20px;
  font-weight: bold;
  text-align: center;
  max-width: 180px;
  display: block;
  color: #fff; }

.cooper #lineup nav {
  padding: 0 10px;
  margin-bottom: 50px; }

.cooper #lineup nav ul {
  display: flex;
  justify-content: space-around; }

.cooper #lineup nav ul li {
  background-color: #001e61;
  padding: 5px 10px 20px;
  width: 25%;
  text-align: center;
  position: relative;
  border-radius: 10px; }

.cooper #lineup nav ul li::after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
  border-top: 10px solid #eb0028;
  right: 0;
  left: 0;
  top: 62%;
  width: 0;
  height: 0;
  margin: 0 auto; }

.cooper #lineup nav ul li a {
  color: #fff;
  font-weight: bold;
  font-size: 14px; }

.cooper #lineup .tire_category {
  padding: 20px;
  margin-bottom: 30px; }

.cooper #lineup .tire_category:last-of-type {
  margin-bottom: 60px; }

.cooper #lineup .tire_category_title {
  color: #001e61;
  margin-bottom: 25px;
  position: relative; }

.cooper #lineup .tire_category_title::before {
  content: "";
  display: block;
  width: 4px;
  height: 25px;
  background-color: #eb0028;
  position: absolute;
  left: 0; }

.cooper #lineup .tire_category_title h4 {
  margin-left: 10px;
  font-size: 18px; }

.cooper #lineup #suv .lineup_content {
  background: url("/asp/photo/auction/brand/cooper/img/lineup_back_suv_sp.jpg") center / cover no-repeat;
  padding: 20px; }

.cooper #lineup #car .lineup_content {
  background: url("/asp/photo/auction/brand/cooper/img/lineup_back_car_sp.jpg") center / cover no-repeat;
  padding: 20px; }

.cooper #lineup #studless .lineup_content {
  background: url("/asp/photo/auction/brand/cooper/img/lineup_back_studless_sp.jpg") center / cover no-repeat;
  padding: 20px; }

.cooper #lineup .tire_category .lineup_content ul .ptn_box {
  text-align: center;
  background-color: rgba(0, 17, 58, 0.6);
  padding: 15px 10px 20px; }

.cooper #lineup .tire_category .lineup_content ul .ptn_box a img {
  width: 90%;
  margin: 0 auto 15px; }

.cooper #lineup .tire_category .lineup_content ul .ptn_box p {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: 0.05em; }

.cooper #lineup .tire_category .lineup_content .ptn_box small {
  color: #fff;
  font-size: 12px;
  display: block;
  line-height: 1.5; }

.cooper #lineup .tire_category .lineup_content ul .ptn_box span {
  color: #001e61;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin: 15px auto 25px;
  display: block;
  width: 110px; }

.cooper #lineup .tire_category .lineup_content ul .ptn_box .ptn_box_description a {
  color: #fff;
  font-weight: bold;
  background-color: #eb0028;
  border-radius: 15px;
  padding: 7px 20px;
  display: block;
  max-width: 180px;
  margin: 0 auto; }

.cooper #lineup .slick-prev {
  left: -20px; }

.cooper #lineup .slick-prev::before {
  border-bottom: 8px solid transparent;
  border-right: 12px solid #eb0028;
  border-top: 8px solid transparent;
  font-size: 0;
  opacity: 1; }

.cooper #lineup .slick-next {
  right: -20px; }

.cooper #lineup .slick-next::before {
  border-bottom: 8px solid transparent;
  border-left: 12px solid #eb0028;
  border-top: 8px solid transparent;
  font-size: 0;
  opacity: 1; }

.cooper #lineup .slick-dotted.slick-slider {
  margin: 0; }

.cooper #lineup .slick-dots {
  bottom: -45px; }

.cooper #lineup .slick-dots li button:before {
  font-family: "Noto Sans JP", "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "Roboto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 40px;
  color: #eb0028; }

.cooper #gallery .gallery_photo {
  padding: 20px; }

.cooper #gallery .gallery_photo .slider {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.cooper #gallery .gallery_photo .slider .prev {
  transform: rotate(180deg); }

.cooper #gallery .gallery_photo .slider .main {
  width: 88%;
  max-width: 840px;
  margin-bottom: 15px;
  border: 2px solid #fff;
  box-shadow: 3px 3px 10px #c5c5c5; }

.cooper #gallery .gallery_photo .slider .btn {
  width: 4%;
  cursor: pointer;
  position: relative; }

.cooper #gallery .gallery_photo .slider ul {
  width: 88%;
  margin: 0 auto;
  max-width: 840px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.cooper #gallery .gallery_photo .slider ul li {
  width: 15%;
  border: 2px solid #fff;
  box-shadow: 3px 3px 10px #c5c5c5;
  cursor: pointer;
  position: relative; }

.cooper #gallery .gallery_photo .slider .btn:hover, .cooper #gallery .gallery_photo .slider ul li:hover {
  opacity: 0.7;
  top: 5px; }

.cooper #gallery .gallery_photo .slider img {
  width: 100%;
  height: auto;
  vertical-align: top; }

.cooper #gallery .gallery_movie {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px; }

.cooper #gallery .gallery_movie .video div {
  margin-top: 20px;
  position: relative;
  width: 100%;
  padding-top: 56%; }

.cooper #gallery .gallery_movie .video div iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }

.cooper #pagetop {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #eb0028;
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  z-index: 1; }

.cooper #pagetop div {
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  transform: scaleX(0.9); }

.cooper #pagetop div img {
  width: 55%; }

.cooper footer {
  background-color: #00113a;
  text-align: center;
  padding-bottom: 20px; }

.cooper #partner {
  background-color: #001e61;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.cooper #partner img {
  max-width: 100%;
  margin: 10px 30px; }

.cooper #partner .partnership {
  max-width: 100px; }

.cooper footer nav {
  max-width: 1024px;
  margin: 0 auto; }

.cooper footer ul {
  padding: 20px 0; }

.cooper footer ul li {
  display: inline-block;
  margin: 5px; }

.cooper footer ul li a {
  display: block;
  padding: 0 20px;
  color: #fff;
  transition: 0.3s; }

.cooper .copyright {
  color: #fff; }

.cooper .sp {
  display: block; }

@media screen and (max-width: 819px) {
  .cooper #partner > h2, .cooper #partner > a {
    width: 100%; } }

@media screen and (min-width: 768px) {
  .cooper .catch .top_menu .menu_btn {
    display: none; }

  .cooper .catch .top_menu {
    position: absolute;
    top: 0;
    right: 10px;
    display: block; }

  .cooper .catch .top_menu ul {
    display: flex;
    position: relative;
    right: 0;
    justify-content: right;
    width: 100%;
    background-color: transparent;
    border: none;
    opacity: 1;
    transition: none; }

  .cooper .catch .top_menu ul li {
    margin: 0 6px;
    width: auto; }

  .cooper .catch .top_menu ul li:first-of-type {
    display: none; }

  .cooper .catch .top_menu ul li:nth-of-type(n+2) a {
    color: #fff;
    font-size: 16px;
    /*日本公式サイト　リンクボタン
  .cooper .catch .top_menu ul li:last-of-type a {
    font-size: 14px;
    border-radius: 10px;
    padding: 7px 12px;
  }*/ }

  .cooper .catch .top_menu ul li:nth-of-type(n+2) a:hover {
    color: #eb0028;
    transition: 0.3s; }

  .cooper .catch .top_menu ul li:nth-of-type(n+2) a span {
    font-weight: normal;
    display: block;
    font-size: 12px;
    line-height: 1.1; }

  .cooper .catch .top_menu ul li:first-of-type a {
    display: none; }

  .cooper .catch {
    height: 500px;
    background-position: center; }

  .cooper .catch h2 img {
    width: 15%; }

  .cooper .section_title {
    max-width: 960px;
    margin: 50px 0 50px 20px; }

  .cooper .section_title h4 {
    font-size: 32px; }

  .cooper .section_title span {
    font-size: 18px;
    line-height: 1.2; }

  .cooper .section_title::after {
    bottom: -10px; }

  .cooper .lineup_btn:first-of-type {
    display: none; }

  .cooper .lineup_btn {
    width: 350px;
    padding: 6px;
    border-radius: 1em;
    margin-bottom: 90px; }

  .cooper .lineup_btn::after {
    right: 45px;
    border: 9px solid transparent;
    border-top: 15px solid #eb0028; }

  .cooper .lineup_btn:last-of-type::after {
    right: 45px;
    border: 9px solid transparent;
    border-bottom: 15px solid #eb0028;
    top: 30%; }

  .cooper .lineup_btn a {
    font-size: 24px; }

  .cooper .lineup_btn:hover {
    transform: translateY(3px);
    transition: 0.3s; }

  .cooper .lineup_btn span {
    font-size: 14px; }

  .cooper #about_us {
    margin-bottom: 100px; }

  .cooper #about_us .history1, .cooper #about_us .history2, .cooper #about_us .history3 {
    max-width: 960px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between; }

  .cooper #about_us .history2 {
    flex-flow: row-reverse; }

  .cooper #about_us .history1 .description, .cooper #about_us .history3 .description {
    margin-right: 2vw; }

  .cooper #about_us .history2 .description {
    margin-left: 2vw; }

  .cooper #about_us h5 {
    font-size: 22px; }

  .cooper #about_us img {
    width: 45%; }

  .cooper .sp {
    display: none; }

  .cooper #pickup {
    margin-bottom: 100px; }

  .cooper #pickup .pickup_content {
    background: url("/asp/photo/auction/brand/cooper/img/bg_pickup_pc.jpg") center / cover no-repeat;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten; }

  .cooper #pickup .pickup_content ul {
    display: flex;
    max-width: 960px;
    margin: 80px auto 0;
    padding: 20px 0; }

  .cooper #pickup .pickup_content ul li {
    height: 400px;
    width: 50%;
    margin: 0; }

  .cooper #pickup .pickup_content ul li img {
    width: auto; }

  .cooper #pickup .pickup_content ul li div {
    bottom: -50px; }

  .cooper #pickup .pickup_content ul li:last-of-type div {
    bottom: -50px; }

  .cooper #pickup .pickup_content ul li div h5 {
    font-size: 24px; }

  .cooper #pickup .pickup_content ul li div a {
    padding: 7px 25px; }

  .cooper #pickup .pickup_content ul li div a:hover {
    transform: translateY(3px);
    transition: 0.3s; }

  .cooper #lineup {
    margin-bottom: 100px; }

  .cooper #lineup nav {
    max-width: 900px;
    margin: 0 auto; }

  .cooper #lineup nav ul li {
    padding: 0; }

  .cooper #lineup nav ul li:hover {
    transform: translateY(3px);
    transition: 0.3s; }

  .cooper #lineup nav ul li a {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 10px 0 24px; }

  .cooper #lineup nav ul li::after {
    top: 65%; }

  .cooper #lineup .tire_category_title {
    max-width: 960px;
    margin: 50px auto 30px; }

  .cooper #lineup .tire_category_title::before {
    height: 39px;
    width: 6px; }

  .cooper #lineup .tire_category_title h4 {
    font-size: 28px;
    margin-left: 20px; }

  .cooper #lineup #car .lineup_content, .cooper #lineup #suv .lineup_content, .cooper #lineup #studless .lineup_content {
    max-width: 920px;
    margin: 0 auto; }

  .cooper #lineup #studless .lineup_content {
    background-position: 0 -635px; }

  .cooper #lineup .tire_category {
    margin-bottom: 0; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-evenly;
    text-align: left;
    padding: 25px 0 0 0;
    margin: 20px 30px;
    align-items: end; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box a img {
    width: 70%;
    margin-bottom: 0; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box p {
    font-size: 28px;
    margin-bottom: 7px; }

  .cooper #lineup .tire_category .lineup_content .ptn_box small {
    font-size: 14px; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box span {
    margin: 20px 0 40px;
    text-align: center;
    font-size: 16px;
    padding: 2px 5px; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box .ptn_box_description {
    margin: 0 0 20px 40px; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box .ptn_box_description a {
    padding: 9px 28px;
    font-size: 18px;
    text-align: center;
    border-radius: 18px;
    margin: 0; }

  .cooper #lineup .tire_category .lineup_content ul .ptn_box .ptn_box_description a:hover {
    transform: translateY(3px);
    transition: 0.3s; }

  .cooper #lineup .slick-next {
    right: -3px; }

  .cooper #lineup .slick-prev {
    left: -3px;
    z-index: 100; }

  .cooper .pc {
    display: none; }

  .cooper footer ul li a:hover {
    color: #eb0028;
    transition: 0.3s; } }

@media screen and (min-width: 1024px) {
  .cooper .catch {
    background: url("/asp/photo/auction/brand/cooper/img/catch_back_pc.jpg") center / cover no-repeat; }

  .cooper .catch h2 img {
    left: calc(50% - 480px);
    width: 10%; }

  .cooper .catch .top_menu {
    right: calc(50% - 490px); }

  .cooper .catch h3 {
    top: 50%;
    right: calc(50% - 490px);
    width: 60%; }

  .cooper .section_title {
    max-width: 960px;
    margin: 50px auto; }

  .cooper #about_us .description {
    max-width: 500px; }

  .cooper #pickup .pickup_content ul {
    padding: 65px; } }
