/*
* {
  outline: 1px solid #f00;
}
*/
#main_movie {
  min-height: 75vh;
}
.movieWrap {
  position: relative;
  width: 100%;
  height: 73vh;
  margin-bottom: 30px;
}
.movieWrap .movieBox {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100vw;
  overflow: hidden;
}
.movieWrap .movieBox iframe,
.movieWrap .movieBox video {
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 156vh;
}
@media screen and (max-width: 1920px) {
  #main_movie {
    min-height: 65vh;
  }
  .movieWrap {
    height: 63vh;
  }
}
@media screen and (max-width: 1439px) {
  #main_movie {
    min-height: 50vh;
  }
  .movieWrap {
    height: 48vh;
  }
}
@media screen and (max-width: 1200px) {
  #main_movie {
    min-height: 40vh;
  }
  .movieWrap {
    height: 38vh;
  }
}
@media screen and (max-width: 767px) {
  #main_movie {
    min-height: 35vh;
  }
  .movieWrap {
    height: 33vh;
  }
}
@media screen and (min-width: 481px) and (orientation: landscape) {
  #main_movie {
    min-height: 65vh;
  }
  .movieWrap {
    height: 63vh;
  }
}
@media (max-width: 480px) {
  .pc-vimeo {
    display: none;
  }
  #main_movie {
    min-height: 60vh;
  }
  .movieWrap {
    height: 58vh;
  }
}
@media (min-width: 481px) {
  .sp-vimeo {
    display: none;
  }
}
.topTopics {
  margin-bottom: 50px;
}
.topTopics .topiWrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-size);
}
.topTopics .topiWrap .secTtl h2 {
  color: var(--main-color);
  font-weight: 600;
  font-size: calc(100vw / 10);
  line-height: 1.1;
  font-family: "Barlow Condensed", sans-serif;
}
.topTopics .topiWrap .secTtl p {
  font-weight: 700;
  font-size: 85%;
}
.topTopics .topiWrap .topicList {
  display: flex;
  flex-direction: column;
}
.topTopics .topiWrap .topicList ul {
  width: 100%;
}
.topTopics .topiWrap .topicList ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em 1em;
  margin-bottom: 2em;
}
.topTopics .topiWrap .topicList ul li span {
  white-space: nowrap;
  line-height: 1.8;
}
.topTopics .topiWrap .topicList ul li span.date {
  color: #808080;
  font-weight: 500;
}
.topTopics .topiWrap .topicList ul li span.cate {
  display: block;
  flex: 0 0 120px;
  font-size: calc(120px / 10);
  text-align: center;
  background-color: #333;
  color: #fff;
}
.topTopics .topiWrap .topicList ul li span.cate.ct1 {
  background-color: var(--ct1-color);
}
.topTopics .topiWrap .topicList ul li span.cate.ct2 {
  background-color: var(--ct2-color);
  color: #000;
}
.topTopics .topiWrap .topicList ul li span.cate.ct3 {
  background-color: var(--ct3-color);
}
.topTopics .topiWrap .topicList ul li a {
  display: block;
}

@media (max-width: 767px) {
  .topTopics .topiWrap {
    --gap-size: 15px;
    padding: 15px;
  }
  .topTopics .topiWrap .topicList ul li {
    flex-wrap: wrap;
  }
  .topTopics .topiWrap .topicList ul li a {
    flex-basis: 100%;
  }
}
@media (min-width: 768px) {
  .topTopics {
    margin-bottom: 150px;
  }
  .topTopics .topiWrap {
    width: 1075px;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: row;
    --gap-size: 50px;
  }
  .topTopics .topiWrap .secTtl {
    flex-basis: 200px;
  }
  .topTopics .topiWrap .secTtl h2 {
    font-size: 60px;
  }
  .topTopics .topiWrap .topicList {
    flex-basis: calc(
      100% - (200px + var(--gap-size))
    ); /* （要素いっぱいから　-　（タイトル幅　＋　gap分））　*/
  }
  .topTopics .topiWrap .topicList .more a {
    padding-right: 80px;
    line-height: 60px;
  }
}
@media (min-width: 1024px) {
  .topTopics .topiWrap {
    max-width: 80%;
  }
}

.topService .secTtl h2 {
  color: var(--main-color);
  font-weight: 600;
  line-height: 1.1;
  margin-top: -0.5em;
}
.topService .topServiceWrap {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.topService .secNav li a {
  font-weight: bold;
}

.topService .area {
  display: none;
  opacity: 0;
  width: 100%;
}
.topService .area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.topService .area ul li {
  flex-basis: calc(33.3% - 10px);
  display: flex;
  flex-direction: column;
}
.topService .area ul li a {
  display: block;
  width: 100%;
}
.topService .area .photo {
  margin-bottom: 4px;
}
.topService .area .text {
  background-image: url(../img_n/arrow04.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 30px;
  padding: 0.5em 36px 0.5em 0.5em;
  display: none;
}

.topService .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.topService .area h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .topService {
    background:
      url(../img_n/topService_bg-top.jpg),
      url(../img_n/topService_bg-bottom.jpg), url(../img_n/topService_bg.jpg),
      linear-gradient(to right, #fff 50%, #e6e6e6 50%);
    background-repeat: no-repeat, no-repeat, repeat-y, no-repeat;
    background-position:
      left 10vw top 0,
      left 10vw bottom 0,
      left 10vw center,
      0 0;
    padding: 30px 8px;
  }
  .topService .subTtl {
    display: none;
  }
  .topService .secTtl {
    width: 100%;
    margin-bottom: 20px;
  }
  .topService .secTtl h2 {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: calc(100vw / 15);
  }
  .topService .secTtl h2::after {
    content: "杉並モータースのサービス";
    font-size: 18px;
    color: #000;
  }
  .topService .topServiceWrap {
    margin-left: 25px;
  }

  .topService .secNav {
    margin-bottom: 15px;
  }
  .topService .secNav .cate {
    display: flex;
    flex-wrap: wrap;
  }
  .topService .secNav .cate {
    gap: 5px;
  }
  .topService .secNav .cate a {
    font-size: 0.8em;
    background: #ffffff;
    border-bottom: 2px solid #7f7f7f;
  }
  .topService .secNav li.active a,
  .topService .secNav li.is-active a {
    background-color: #d70c18;
    color: #fff;
  }

  .topService .secNav .cate li a {
    display: block;
    padding: 0.5em 2em;
    border-radius: 15px;
    background-image: url(../img_n/arrow03.png);
    background-repeat: no-repeat;
    background-position: left 15em center;
  }
}
@media (max-width: 767px) {
  .topService {
    background-position:
      left 3vw top 0,
      left 3vw bottom 0,
      left 3vw center,
      0 0;
  }
  .topService .area ul li {
    flex-basis: calc(50% - 7.5px);
  }
}
@media (max-width: 478px) {
  .topService .secTtl h2 {
    font-size: calc(100vw / 10);
  }
  .topService .secTtl h2::after {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .topService {
    background: linear-gradient(to right, #fff 50%, #e6e6e6 50%);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto;
  }
  .topService .topServiceWrap {
    max-width: 1300px;
    margin: 0 auto;
    flex-direction: row;
  }
  .topService .secNav {
    background:
      url(../img_n/topService_bg-top.jpg),
      url(../img_n/topService_bg-bottom.jpg), url(../img_n/topService_bg.jpg);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-position:
      left 260px top 0,
      left 260px bottom 0,
      left 260px center;
    flex-basis: 390px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*gap: 30px;
	  padding: 50px 0;*/
  }
  .topService .secTtl h2 {
    font-size: 82px;
  }
  .topService .secNav ul {
    display: flex;
    flex-direction: column;
  }
  .topService .secNav li {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
  }
  .topService .secNav li.active,
  .topService .secNav li.is-active {
    background-color: #e6e6e6;
  }
  .topService .secNav li a {
    display: block;
    padding: 1.5em 2em;
  }
  .topService .secNav li.active a,
  .topService .secNav li.is-active a {
    background-image: url(../img_n/arrow03.png);
    background-repeat: no-repeat;
    background-position: left 15em center;
  }
  .topService .secNav li a:hover {
    color: var(--main-color);
  }
  .topService .secConts {
    flex: 0 0 calc(100% - 390px);
    background-color: #e6e6e6;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
  }

  .topService .secConts .subTtl {
    font-weight: 700;
    margin-bottom: 1em;
  }
  .topService .secConts > div {
    width: 100%;
  }
}

.topShoplist {
  background:
    url(../img_n/topShoplist_bg-top.jpg),
    url(../img_n/topShoplist_bg-bottom.jpg), url(../img_n/topShoplist_bg.jpg),
    linear-gradient(to right, #fff 50%, #e6e6e6 50%);
  background-repeat: no-repeat, no-repeat, repeat-y, no-repeat;
  background-position:
    right 3vw top 0,
    right 3vw bottom 0,
    right 3vw top 0,
    0 0;
  padding: 50px 30px;
}

.topShoplist .midashiWrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1200px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.topShoplist .midashiWrap .secTtl h2 {
  color: var(--main-color);
  font-weight: 600;
  font-size: calc(100vw / 8);
  line-height: 1.2;
  white-space: nowrap;
}
.topShoplist .midashiWrap .secTtl p {
  font-weight: 600;
}
.topShoplist .midashiWrap .icoBox p {
  font-weight: 400;
  margin-bottom: 4px;
  color: #d70c18;
}
.topShoplist .midashiWrap .icoBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.topShoplist .midashiWrap .icoBox ul li {
  flex-basis: calc(50% - 4.5px);
  display: flex;
  align-items: center;
  font-size: 0.8em;
}
.topShoplist .midashiWrap .icoBox ul li span {
  flex-basis: 20%;
}
.topShoplist .midashiWrap .icoBox ul li span img {
  height: 18px;
}
.topShoplist .listBox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  max-width: 1200px;
  margin-inline: auto;
}
.topShoplist .listBox > div {
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--main-color);
  background-color: rgba(230, 230, 230, 0.3);
}
.topShoplist .listBox > div > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../img_n/arrow02.png);
  background-repeat: no-repeat;
  background-position: right 15px top 15px;
  gap: 8px;
  padding: 15px;
}
.topShoplist .listBox .shop .shopname {
  flex-basis: 4em;
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.2;
}
.topShoplist .listBox .shop ul.icon {
  display: flex;
  gap: 4px;
}
.topShoplist .listBox .shop ul.icon img {
  height: 18px;
}
.topShoplist .listBox .shop .addr {
  flex-basis: 4em;
  flex-shrink: 0;
}
.topShoplist .listBox ul.link {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 15px 15px;
}
.topShoplist .listBox ul.link li {
  flex-basis: calc(50% - 3px);
}
@media (min-width: 768px) {
  .topShoplist {
    padding: 100px 30px;
    background-position:
      right 5vw top 0,
      right 5vw bottom 0,
      right 5vw bottom 0,
      0 0;
  }
  .topShoplist .midashiWrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
  }
  .topShoplist .midashiWrap {
    flex-basis: 35%;
  }
  .topShoplist .midashiWrap .secTtl h2 {
    font-size: calc(100vw / 20);
  }
  .topShoplist .midashiWrap .icoBox {
    flex-basis: calc(65% - 50px);
  }
  .topShoplist .midashiWrap .icoBox ul li {
    flex-basis: calc(33.3% - 8px);
  }
  .topShoplist .listBox {
    flex-direction: row;
    gap: 20px;
  }
  .topShoplist .listBox > div {
    flex-basis: calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .topShoplist {
    padding: 100px 80px;
  }
  .topShoplist .container {
    max-width: 1200px;
  }
  .topShoplist .listBox {
    gap: 30px;
  }
  .topShoplist .listBox > div {
    flex-basis: calc(33.3% - 20px);
  }
  .topShoplist .midashiWrap .icoBox ul li {
    flex-basis: calc(25% - 10px);
  }
}
@media (max-width: 767px) {
  .topShoplist .midashiWrap .icoBox {
    display: none;
  }
}
.topConcept {
  background-color: #e6e6e6;
}
.conceptWrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 30px;
}
.topConcept .conceptWrap .text {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.topConcept .conceptWrap .text .slug {
  color: var(--main-color);
  font-weight: 700;
}
.topConcept .conceptWrap .text h3 {
  font-weight: bold;
  font-size: calc(100vw / 20);
}
.topConcept .conceptWrap .text p {
  line-height: 1.8;
}
.topConcept .conceptWrap .text .more a {
  padding-right: 55px;
  line-height: 50px;
  letter-spacing: 0.2em;
  font-size: 18px;
}
@media (min-width: 768px) {
  .conceptWrap {
    flex-direction: row;
    padding: 120px 0;
    gap: 100px;
  }
  .conceptWrap > div {
    flex-basis: calc(50% - 50px);
  }
  .topConcept .conceptWrap .text {
    justify-content: center;
  }
  .topConcept .conceptWrap .text .more a {
    font-size: 24px;
    padding-right: 75px;
    line-height: 60px;
  }
  .topConcept .conceptWrap .text h3 {
    font-size: calc(100vw / 46);
  }
}
@media (min-width: 1023px) {
  .topConcept .conceptWrap .text h3 {
    font-size: calc(100vw / 50);
  }
}
.topAbout {
  background-color: #fff;
  background-image: url(../img_n/topAbout_bg_pc.jpg);
  background-position: right 10vw bottom 30px;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.topAbout .topAboutWrap {
  padding: 30px;
  min-height: 500px;
}
.topAbout .topAboutWrap h2 {
  font-size: calc(100vw / 8);
  text-align: center;
  color: var(--main-color);
  font-weight: 500;
}
.topAbout .topAboutWrap .text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .topAbout {
    padding-bottom: 200px;
    background-size: auto 200px;
    background-image: url(../img_n/topAbout_bg.jpg);
  }
  .topAbout .topAboutWrap h3 {
    font-size: calc(100vw / 18);
  }
}
@media (min-width: 768px) {
  .topAbout {
    background-position: right 50vw center;
    background-size: auto 75%;
    padding: 120px 0;
  }
  .topAbout .topAboutWrap h2 {
    font-size: calc(100vw / 15);
  }
  .topAbout .topAboutWrap .text {
    gap: 2em;
    width: 48%;
    margin-left: auto;
    padding: 30px;
  }
  .topAbout .topAboutWrap .text h3 {
    font-size: calc(100vw / 42);
  }
  .topAbout .topAboutWrap .text p {
    line-height: 1.8;
  }
  .topAbout .topAboutWrap .text .more a {
    font-size: 24px;
    padding-right: 75px;
    line-height: 60px;
  }
}
@media (min-width: 1400px) {
  .topAbout .topAboutWrap .text h3 {
    font-size: calc(100vw / 52);
  }
}
.topRecruit {
  background-color: var(--main-color);
  color: #fff;
}
.topRecruit .topRecruitWrap {
  display: flex;
  flex-direction: column;
}
.topRecruit .topRecruitWrap .tokusyuu {
  display: flex;
  flex-direction: column;
  background-image: url(../img_n/topRecruit_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.topRecruit .topRecruitWrap .tokusyuu a {
  display: block;
  width: 100%;
  height: 100%;
}
.topRecruit .topRecruitWrap .tokusyuu a p {
  display: inline-block;
  padding: 0 1em;
  margin-right: 1em;
  background-color: #000;
}
.topRecruit .topRecruitWrap .text {
  display: flex;
  flex-direction: column;
  padding: 50px 15px;
}
.topRecruit .topRecruitWrap .text .innr {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.topRecruit .topRecruitWrap .text .innr h2 {
  font-size: calc(100vw / 8);
  font-weight: 500;
  line-height: 1.2;
}
.topRecruit .topRecruitWrap .text h3 {
  font-size: calc(100vw / 20);
  font-weight: 500;
}

.topRecruit .topRecruitWrap .text .more a {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 480px) {
  .topRecruit .topRecruitWrap > div {
    min-height: 400px;
  }
  .topRecruit .topRecruitWrap .tokusyuu a p span::after {
    content: "\a";
    white-space: pre;
  }
}
@media (min-width: 768px) {
  .topRecruit .topRecruitWrap {
    flex-direction: row;
  }
  .topRecruit .topRecruitWrap > div {
    flex-basis: 50%;
    min-height: 500px;
  }
  .topRecruit .topRecruitWrap .text {
    padding-left: 120px 80px;
    align-items: flex-end;
  }
  .topRecruit .topRecruitWrap .text .innr {
    width: 80%;
    max-width: 600px;
    gap: 80px;
  }
  .topRecruit .topRecruitWrap .text .secTtl h2 {
    font-size: calc(100vw / 16);
  }
  .topRecruit .topRecruitWrap .text h3 {
    font-size: calc(100vw / 40);
  }
  .topRecruit .topRecruitWrap .text .more a {
    font-size: 24px;
    padding-right: 75px;
    line-height: 60px;
  }
}
@media (min-width: 1024px) {
  .topRecruit .topRecruitWrap > div {
    min-height: 800px;
  }
}
/******************hover img***********************/
.zoom-img {
  overflow: hidden;
}
.zoom-img a {
  display: block;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.zoom-img img {
  width: 100%;
  vertical-align: middle;
}
.zoom-img a:hover {
  transform: scale(1.1);
}
