@charset "UTF-8";
html {
  font-size: 62.5%;
  /* sets the base font to 10px for easier math */
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: #212121;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  body {
    font-size: 11px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* -------------------------------------
common
----------------------------------------*/
a {
  color: inherit;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.ib {
  display: inline-block;
}

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

strong {
  font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
  display: none;
}

.mode_sp {
  display: block;
}

.mode_sp_ib {
  display: inline-block;
}

.tel a, .mail a {
  pointer-events: auto;
  cursor: pointer;
}

.bgImage {
  width: 100%;
  max-width: auto;
  max-width: inherit;
}

.mover {
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  zoom: 1;
}
.mover:hover {
  opacity: 0.8;
}

.inner,
.inner02,
.inner03 {
  padding: 0 7%;
}

.contentWrap {
  padding-top: 70px;
}

.bg-g {
  background-color: #f2f2f2;
}

@media (min-width: 767px) {
  .mode_pc {
    display: block;
  }

  .mode_pc_ib {
    display: inline-block;
  }

  .mode_sp,
.mode_sp_ib {
    display: none;
  }

  .tel a, .mail a {
    pointer-events: none;
  }

  .inner {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 0;
  }

  .inner02 {
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 0;
  }

  .inner03 {
    width: 90%;
    max-width: 1340px;
    margin: auto;
    padding: 0;
  }

  .anchor {
    margin-top: -90px;
    padding-top: 90px;
  }
}
@media (min-width: 1000px) {
  .contentWrap {
    padding-top: 100px;
  }
}
/*
header
---------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  transition: 0.5s ease;
}
header .logo {
  position: relative;
  margin: 16px 0 16px 4%;
  width: 55px;
  z-index: 10;
}
header #contactBtn {
  font-family: "Montserrat", sans-serif;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
}
header #contactBtn a {
  font-weight: 500;
}
header #contactBtn a:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../img/common/contact-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 7px;
}
header.open {
  height: 100%;
}
@media (min-width: 1000px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 1000ms;
    transform: translate(0, -10px);
  }
  header .logo {
    position: absolute;
    width: 84px;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  header #contactBtn {
    position: absolute;
    top: 0;
    right: 0;
    border-top: none;
  }
  header #contactBtn a {
    font-size: 14px;
    padding: 42px 25px 20px;
  }
  header.open {
    height: auto;
  }
}

#menu_btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 0;
  margin: auto;
  cursor: pointer;
  text-align: center;
  padding: 12px 8px 12px 15px;
  cursor: pointer;
  background-color: #f2f2f2;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
#menu_btn p {
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding-left: 7px;
}
#menu_btn div {
  position: relative;
  width: 24px;
  height: 16px;
}
#menu_btn span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all 0.4s;
  margin: auto;
}
#menu_btn span:nth-of-type(1) {
  top: 0;
}
.open #menu_btn span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
#menu_btn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.open #menu_btn span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn span:nth-of-type(3) {
  top: auto;
  bottom: 0;
  width: 18px;
}
.open #menu_btn span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
  width: 25px;
}
@media (min-width: 1000px) {
  #menu_btn {
    display: none;
  }
}

/*
#contentNav
---------------------------*/
#contentNav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  height: 100%;
  padding: 0 4%;
}
#contentNav a {
  display: block;
  font-size: 15px;
  padding: 20px 0;
}
#contentNav .navInner {
  padding: 80px 0 20px;
}
@media (min-width: 1000px) {
  #contentNav {
    display: block !important;
    position: relative;
    top: 0;
    height: auto;
    padding: 30px 0;
    background-color: transparent;
  }
  .is-fixed #contentNav {
    padding: 25px 0;
  }
  #contentNav a {
    font-size: 13px;
    padding: 13px 10px 13px 0;
  }
  #contentNav p + p {
    padding-left: 12px;
  }
  #contentNav .navInner {
    display: flex;
    justify-content: center;
    padding: 0;
  }
}

/*
btn
---------------------------*/
.btnWrap {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.btn a, .btn input, .btn span.btnInner {
  display: block;
  min-width: 120px;
  color: #fff;
  line-height: 1;
  background-color: #303030;
  padding: 13px 30px;
  border-radius: 50px;
  cursor: pointer;
}
.btn a span, .btn input span, .btn span.btnInner span {
  font-weight: 600;
}
.btn.more {
  font-family: "Montserrat", sans-serif;
}
.btn.more a, .btn.more span {
  font-weight: 500;
}
.btn.type02 a {
  color: #212121;
  background-color: #f2f2f2;
}
.btn.type03 a {
  color: #212121;
  background-color: #fff;
  border: 1px solid #212121;
}
.btn.blu, .btn.back {
  font-size: 14px;
}
.btn.blu a, .btn.blu input, .btn.back a, .btn.back input {
  height: 50px;
  background-color: #00a0e9;
  font-weight: 600;
  padding: 17px 26px;
}
.btn.blu a:disabled, .btn.blu input:disabled, .btn.back a:disabled, .btn.back input:disabled {
  background-color: #d8d8d8;
  cursor: default;
}
.btn.blu a:disabled:hover, .btn.blu input:disabled:hover, .btn.back a:disabled:hover, .btn.back input:disabled:hover {
  opacity: 1;
}
.btn.back a {
  background-color: #212121;
}
.btn.wide {
  width: 100%;
}
.btn.mailIcon a {
  background-color: #00a0e9;
  padding: 13px 15px;
}
.btn.mailIcon a:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../img/common/contact-icon02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 5px;
}
.btn.mailIcon02 a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url(../img/common/contact-icon03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .btn {
    font-size: 14px;
  }
  .btn a, .btn input, .btn span.btnInner {
    min-width: 150px;
    padding: 13px 26px;
  }
  .btn.blu {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .btn {
    font-size: 12px;
  }
}

.arrowBtn {
  position: relative;
  display: inline-block;
  text-align: center;
}
.arrowBtn:before {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #040000;
  border-radius: 50px;
  margin: auto;
  z-index: 1;
}
.arrowBtn a {
  position: relative;
  width: 100%;
  padding: 14px 22px 14px 0;
}
.arrowBtn a:before, .arrowBtn a:after {
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  margin: auto;
  z-index: 2;
}
.arrowBtn a:after {
  top: 17px;
  bottom: auto;
  width: 8px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.arrowBtn.type02:before {
  background-color: #d8d8d8;
}
.arrowBtn.type02 a:before, .arrowBtn.type02 a:after {
  background-color: #212121;
}
.arrowBtn.type03 {
  font-size: 13px;
}
.arrowBtn.type03:before {
  width: 14px;
  height: 14px;
  right: 0;
}
.arrowBtn.type03 a {
  padding: 14px 25px 14px 0;
}
.arrowBtn.type03 a:before, .arrowBtn.type03 a:after {
  right: 4px;
  width: 9px;
  height: 2px;
}
.arrowBtn.type03 a:after {
  top: 21px;
  width: 5px;
}
.arrowBtn.type03.prev:before {
  right: auto;
  left: 0;
}
.arrowBtn.type03.prev a {
  padding: 14px 0 14px 25px;
}
.arrowBtn.type03.prev a:before, .arrowBtn.type03.prev a:after {
  right: auto;
  left: 4px;
}
.arrowBtn.type03.prev a:after {
  right: auto;
  transform: rotate(-45deg);
}
@media (max-width: 350px) {
  .arrowBtn.type03 {
    font-size: 14px;
  }
}

.moreLink {
  position: relative;
  display: inline-block;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  padding-right: 20px;
}
.moreLink:before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #040000;
  border-radius: 50px;
  margin: auto;
}
.moreLink a, .moreLink span {
  display: block;
  width: 100%;
  font-weight: 500;
}
.moreLink a:before, .moreLink a:after, .moreLink span:before, .moreLink span:after {
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #fff;
  margin: auto;
}
.moreLink a:after, .moreLink span:after {
  right: 4px;
  top: 4px;
  bottom: auto;
  width: 4px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}

/*
footer
---------------------------*/
footer {
  position: relative;
  background-color: #000;
  color: #fff;
}
footer .footerInner {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 50px 20px 150px;
}
footer h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 21px;
}
footer h4 {
  font-size: 14px;
  font-weight: 500;
  padding: 28px 0 18px;
}
footer h4 + p {
  font-size: 16px;
  padding-bottom: 8px;
}
footer .tel a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 29px;
}
footer .tel + p {
  font-size: 12px;
  font-weight: 300;
  padding-bottom: 15px;
}
footer .imageContainer {
  width: 100%;
  text-align: center;
}
footer .contactContainer {
  width: 100%;
  padding-top: 20px;
}
footer .contactContainer > div {
  padding: 0 12%;
}
footer .contactContainer > div > div + div {
  margin-top: 30px;
  border-top: 1px solid #fff;
}
footer .contactContainer .btn {
  width: 80%;
  font-size: 13px;
}
footer .contactContainer .btn a {
  padding: 16px 0;
}
footer .contactContainer .btn a:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../img/common/contact-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 7px;
}
footer .lineContact .qr {
  display: none;
}
footer .lineContactInner {
  width: 80%;
  margin: 0 auto 10px;
  background-color: rgba(251, 251, 253, 0.3);
  border-radius: 50px;
}
footer .lineContactInner a {
  display: block;
  padding: 5px 0;
}
footer .lineContactInner img, footer .lineContactInner p {
  display: inline-block;
  vertical-align: middle;
}
footer .lineContactInner img {
  width: 30px;
}
footer .lineContactInner p {
  text-align: left;
  font-size: 13px;
  line-height: 1.2;
  font-feature-settings: "palt";
  padding-left: 8px;
}
footer .lineContactInner + p {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
}
footer .footerBottom {
  text-align: center;
  color: #d8d8d8;
  padding-bottom: 10px;
}
footer .footerBottom .copy {
  font-size: 12px;
  font-weight: 300;
}
footer .footerBottom .siteMap {
  display: none;
}
@media (min-width: 767px) {
  footer h3 {
    font-size: 30px;
    padding-bottom: 80px;
  }
  footer h4 {
    font-size: 18px;
    padding: 0 0 20px;
  }
  footer h4 + p {
    font-size: 16px;
    padding-bottom: 20px;
  }
  footer .tel {
    padding-bottom: 10px;
  }
  footer .tel a {
    font-size: 37px;
  }
  footer .tel + p {
    font-size: 13px;
    padding-bottom: 20px;
  }
  footer .contactContainer {
    padding: 0;
  }
  footer .contactContainer > div {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  footer .contactContainer > div > div {
    padding: 15px 0;
  }
  footer .contactContainer > div > div + div {
    border-top: none;
    border-left: 1px solid #fff;
    margin: 0 0 0 5%;
    padding-left: 5%;
  }
  footer .contactContainer .btn {
    width: 100%;
    font-size: 15px;
  }
  footer .contactContainer .btn a {
    padding: 16px 0;
  }
  footer .lineContact {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  footer .lineContact .qr {
    display: block;
    width: 90px;
    margin-left: 15px;
  }
  footer .lineContactInner {
    width: auto;
    background-color: transparent;
    margin: auto;
    border-radius: 0;
  }
  footer .lineContactInner p {
    font-size: 16px;
    line-height: 1.2;
    padding-left: 5px;
  }
  footer .lineContactInner img {
    width: 45px;
  }
  footer .lineContactInner a {
    padding: 0;
  }
  footer .lineContactInner + p {
    font-size: 11px;
    font-feature-settings: "palt";
    line-height: 1.4;
    padding: 10px 0 0 4px;
  }
  footer .footerBottom {
    padding-bottom: 30px;
  }
  footer .footerBottom .copy {
    font-size: 13px;
  }
  footer .footerBottom .siteMap p {
    position: relative;
    display: inline-block;
    font-size: 13px;
  }
  footer .footerBottom .siteMap p a {
    font-weight: 300;
  }
  footer .footerBottom .siteMap p + p {
    padding-left: 15px;
    margin-left: 15px;
  }
  footer .footerBottom .siteMap p + p:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #d8d8d8;
    height: 15px;
    width: 1px;
    margin: auto;
  }
}
@media (min-width: 1000px) {
  footer .footerInner {
    justify-content: space-between;
    flex-wrap: nowrap;
    background-image: url(../img/common/contact-bg.jpg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 500px;
    padding: 115px 2% 170px;
  }
  footer .imageContainer {
    display: none;
  }
  footer .contactContainer {
    width: 65%;
  }
  footer .footerBottom .siteMap {
    display: block;
    padding-top: 10px;
  }
}
@media (min-width: 1400px) {
  footer .footerInner {
    max-width: 1600px;
    background-size: auto;
    padding: 115px 2% 170px;
    margin: auto;
  }
  footer .contactContainer {
    width: 55%;
  }
  footer .footerBottom {
    display: flex;
    justify-content: center;
  }
  footer .footerBottom .siteMap {
    display: block;
    padding: 0 0 0 40px;
  }
}
@media (max-width: 350px) {
  footer .contactContainer > div {
    padding: 0 6%;
  }
  footer .contactContainer .btn {
    width: 90%;
  }
  footer .lineContactInner {
    width: 90%;
  }
}

#topic {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 4%;
  z-index: 1;
}
#topic a {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 3px 14px;
  border-radius: 50px;
}
#topic p {
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 15px;
}
#topic p + p {
  position: relative;
  padding-left: 20px;
  margin-left: 8px;
}
#topic p + p:before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
@media (min-width: 767px) {
  #topic {
    bottom: 100px;
  }
}
@media (min-width: 1400px) {
  #topic {
    bottom: 70px;
  }
}

/*
#mvDetail
---------------------------*/
#mvDetail {
  position: relative;
}
#mvDetail .title {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  margin: auto;
}
#mvDetail .pageTitle {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 15px;
}
#mvDetail .pageTitle span {
  font-weight: 700;
  vertical-align: middle;
}
#mvDetail .pageTitle .name {
  font-size: 29px;
}
#mvDetail .subTitle {
  font-size: 12px;
}
@media (min-width: 1000px) {
  #mvDetail .title {
    bottom: 70px;
  }
  #mvDetail .pageTitle {
    font-size: 46px;
    padding-bottom: 20px;
  }
  #mvDetail .pageTitle .name {
    font-size: 47px;
  }
  #mvDetail .subTitle {
    font-size: 18px;
  }
}

.contentTitle {
  font-size: 17px;
  font-weight: 700;
}
@media (min-width: 1000px) {
  .contentTitle {
    font-size: 26px;
  }
}

/*
#main
---------------------------*/
#main .textBox {
  text-align: center;
  color: #303030;
  padding: 45px 3%;
}
#main .textBox .read {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  padding-bottom: 10px;
}
#main .textBox .message {
  text-align: left;
  line-height: 1.86;
}
#main .textBox .message02 {
  text-align: left;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 20px;
}
@media (min-width: 767px) {
  #main {
    display: flex;
    justify-content: space-between;
  }
  #main > div {
    width: 50%;
  }
  #main .textBox {
    text-align: left;
    align-self: center;
    padding: 3%;
    color: #303030;
    margin-top: -25px;
  }
  #main .textBox .message {
    font-size: 13px;
  }
}
@media (min-width: 1000px) {
  #main .textBox {
    padding: 0 5% 0 9.5%;
  }
}
@media (min-width: 1400px) {
  #main .textBox .read {
    font-size: 24px;
    padding-bottom: 25px;
  }
  #main .textBox .message {
    font-size: 15px;
  }
  #main .textBox .message02 {
    font-size: 22px;
    padding-bottom: 45px;
  }
}
@media (max-width: 350px) {
  #main .textBox .read {
    font-size: 16px;
  }
}

/*
#lineup
---------------------------*/
#lineup {
  text-align: center;
  padding: 0 0 50px;
}
#lineup .lineupList > div {
  margin-bottom: 30px;
  border-bottom: 1px solid #212121;
}
#lineup .lineupList > div + div {
  padding-top: 32px;
}
#lineup h2 {
  padding: 45px 0 35px;
}
#lineup h2 span {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  vertical-align: middle;
}
#lineup h2 .companyName {
  letter-spacing: 0;
  font-size: 23px;
}
#lineup .lineupInner {
  padding: 28px 0 15px;
}
#lineup .lineupImage {
  position: relative;
}
#lineup .soldout:hover {
  opacity: 1;
}
#lineup .soldout .lineupImage:before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#lineup .soldout .lineupImage:after {
  display: inline-block;
  content: "SOLD OUT";
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  height: 20px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#lineup .name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 4px;
}
#lineup .nameJp,
#lineup .note {
  color: #606060;
}
#lineup .nameJp {
  font-size: 12px;
}
#lineup .note {
  line-height: 2;
  padding: 8px 11% 14px;
}
#lineup .price {
  font-size: 13px;
  font-weight: 600;
}
#lineup .price span {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 0 10px;
}
#lineup .spec {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid #e3e3e8;
  border-bottom: 1px solid #e3e3e8;
  margin-bottom: 20px;
}
#lineup .spec > div {
  text-align: left;
}
#lineup .spec .specText {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
}
#lineup .spec .specText span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
#lineup .spec .specText .km {
  font-size: 13px;
}
#lineup .spec .year {
  position: relative;
  padding-right: 34px;
}
#lineup .spec .year:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #e3e3e8;
  width: 30px;
  height: 1px;
  transform: rotate(-45deg);
  margin: auto;
}
#lineup .spec .caption {
  color: #a5a5a5;
  font-size: 11px;
  padding-top: 4px;
}
@media (min-width: 767px) {
  #lineup .lineupList {
    display: flex;
    flex-wrap: wrap;
  }
  #lineup .lineupList > div {
    width: 31.6%;
    margin-bottom: 60px;
    margin-right: 2.6%;
  }
  #lineup .lineupList > div + div {
    padding-top: 0;
  }
  #lineup .lineupList > div:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1000px) {
  #lineup {
    padding: 100px 0 95px;
  }
  #lineup h2 {
    padding: 0 0 70px;
  }
  #lineup h2 span {
    font-size: 35px;
  }
  #lineup h2 .companyName {
    font-size: 39px;
  }
  #lineup .lineupInner {
    padding: 24px 28px 18px;
  }
  #lineup .name {
    font-size: 23px;
    padding-bottom: 5px;
  }
  #lineup .note {
    font-feature-settings: "palt";
    padding: 15px 0 18px;
  }
  #lineup .price {
    font-size: 16px;
  }
  #lineup .price span {
    font-size: 30px;
    padding: 0 10px;
  }
  #lineup .spec {
    margin-top: 15px;
    padding: 10px 0;
    margin-bottom: 22px;
  }
  #lineup .spec .specText {
    font-size: 17px;
  }
  #lineup .spec .specText span {
    font-size: 23px;
  }
  #lineup .spec .specText .km {
    font-size: 17px;
  }
  #lineup .spec .caption {
    font-size: 12px;
  }
  #lineup .year {
    padding-right: 34px;
  }
  #lineup .year:after {
    width: 30px;
  }
}
@media (max-width: 350px) {
  #lineup .note {
    padding: 8px 6% 14px;
  }
}

.outOfStock {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 10px;
}
.outOfStock p {
  font-size: 20px;
  font-weight: 500;
}

/*
共通
---------------------------*/
.flex {
  display: flex;
}
.flex .date {
  margin-right: 10px;
}
.flex .date p {
  color: #606060;
  line-height: 1.75;
}
.flex .author p {
  color: #606060;
  line-height: 1.75;
}

.catdata {
  margin-bottom: 10px;
}
.catdata ul {
  display: flex;
  flex-wrap: wrap;
}
.catdata ul li {
  position: relative;
  padding: 0 15px 0 5px;
}
.catdata ul li:first-child {
  padding-left: 0;
}
.catdata ul li:last-child {
  padding-right: 0;
}
.catdata ul li a {
  display: block;
}
.catdata ul li p {
  color: #606060;
  line-height: 1.5;
}
.catdata ul li::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #606060;
  width: 10px;
  height: 1px;
  transform: rotate(-45deg);
  margin: auto;
}
.catdata ul li:last-child::after {
  display: none;
}

.categoryarea {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}
.categoryarea .cat {
  margin-right: 10px;
  margin-bottom: 20px;
}
.categoryarea .cat a {
  border: 1px solid #fff;
  border-radius: 22px;
  display: block;
  padding: 10px 16px;
  text-align: center;
  background-color: #303030;
  font-size: 13px;
}
.categoryarea .cat a p {
  color: #fff;
  line-height: 1.2;
}
.categoryarea .cat:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}

.menutitle {
  font-family: "Montserrat", sans-serif;
  color: #606060;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

@media (min-width: 767px) {
  .flex {
    margin-bottom: 7px;
  }
  .flex .date {
    margin-right: 3px;
  }
  .flex .date p {
    font-size: 14px;
  }
  .flex .author p {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .catdata {
    margin-bottom: 10px;
  }
  .catdata ul li {
    padding: 0 8px;
  }
  .catdata ul li p {
    font-size: 14px;
    line-height: 1.5;
  }
  .catdata ul li::after {
    width: 16px;
    height: 1px;
    right: -8px;
  }

  .categoryarea .cat {
    margin: 0 13px;
    margin-bottom: 0;
  }
  .categoryarea .cat a {
    padding: 13px 26px;
  }
  .categoryarea .cat a p {
    font-size: 14px;
    letter-spacing: 0;
  }
  .categoryarea .cat:first-child {
    margin-left: 0;
  }
  .categoryarea .cat:last-child {
    margin-right: 0;
  }

  .menutitle {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.75;
  }
}
/*
#blogcontent
---------------------------*/
#blogcontent {
  background-color: #f5f5f7;
  padding: 45px 0 35px;
}
#blogcontent .contentarea {
  width: 90%;
  margin: auto;
}
#blogcontent .contentarea h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  vertical-align: middle;
  margin-bottom: 20px;
}
#blogcontent .contentarea p {
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 767px) {
  #blogcontent {
    padding: 85px 0 99px;
    text-align: center;
  }
  #blogcontent .contentarea h3 {
    font-size: 35px;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
  }
  #blogcontent .contentarea p {
    font-size: 15px;
    letter-spacing: 0;
  }
}
/*
#detiallist
---------------------------*/
#detiallist .inner04 {
  background-color: #f5f5f7;
  padding-bottom: 30px;
}
#detiallist .listarea {
  padding: 0 7% 30px;
}
#detiallist .listarea > a {
  display: block;
}
#detiallist .listarea > a:last-child .list {
  margin-bottom: 0;
}
#detiallist .list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
#detiallist .list > div {
  width: 50%;
}
#detiallist .list .thumbnailarea {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-bottom: calc((473 / (710 / 2))* 30%);
}
#detiallist .list .thumbnailarea.noimage {
  background-image: url(../img/blog/porsche_noimage_720_200.png);
  background-position: center;
}
#detiallist .list .dataarea {
  background-color: #fff;
  padding: 30px 5%;
  width: 100%;
}
#detiallist .list .detialtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.65;
}
#detiallist .list .detialtext {
  color: #606060;
  margin-bottom: 15px;
  line-height: 1.5;
}
#detiallist .pager {
  padding-bottom: 30px;
}
#detiallist .pager ul {
  text-align: center;
}
#detiallist .pager li {
  display: inline-block;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  margin-right: 10px;
}
#detiallist .pager li:last-child {
  margin-right: 0;
}
#detiallist .pager li a {
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  color: #121212;
  display: inline-block;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 9px 0;
}
#detiallist .pager li.current a {
  background-color: #303030;
  color: #fff;
}

@media (min-width: 900px) {
  #detiallist .listarea {
    padding: 0 0 60px;
  }
  #detiallist .listarea > a:nth-child(2n) .list {
    flex-direction: row-reverse;
  }
  #detiallist .listarea > a:nth-child(2n) .list .dataarea {
    justify-content: right;
  }
  #detiallist .catdata {
    margin-bottom: 12px;
  }
  #detiallist .list {
    margin-bottom: 0;
    flex-direction: row;
    width: 100%;
  }
  #detiallist .list .dataarea {
    padding: 0 2.7%;
    display: flex;
    align-items: center;
    width: 50%;
  }
  #detiallist .list .dataarea > div {
    width: 100%;
    margin: 95px 0 70px;
  }
  #detiallist .list .thumbnailarea {
    padding-bottom: calc((473 / (710 / 2))* 21%);
    width: 50%;
  }
  #detiallist .list .thumbnailarea.noimage {
    background-image: url(../img/blog/porsche_noimage_720_480.png);
  }
  #detiallist .list .detialtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  #detiallist .list .detialtext {
    font-size: 15px;
    display: block;
    line-height: 1.75;
    letter-spacing: 0.02em;
    margin-bottom: 13px;
  }
  #detiallist .pager {
    padding-bottom: 60px;
  }
  #detiallist .pager li {
    margin-right: 8px;
  }
  #detiallist .pager li a {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 14px 0;
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  #detiallist .inner04 {
    padding: 0 12px 90px;
  }
  #detiallist .list .dataarea > div {
    margin: 89px 0 81px;
  }
  #detiallist .detialtitle {
    font-size: 23px;
  }
  #detiallist .thumbnailarea {
    padding-bottom: calc((473 / (710 / 2))* 21%);
    width: 50%;
  }
  #detiallist .thumbnailarea.noimage {
    background-image: url(../img/blog/porsche_noimage_720_480.png);
  }
}
/*
#mvDetail
---------------------------*/
#mvDetail.type02 .mvflex {
  display: flex;
  flex-direction: column-reverse;
}
#mvDetail.type02 .mvflex > div:first-child {
  width: 90%;
  margin: auto;
}
#mvDetail.type02 .container {
  margin-bottom: 30px;
}
#mvDetail.type02 h1 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
#mvDetail.type02 .detail {
  margin-bottom: 30px;
}
#mvDetail.type02 .detail .flex {
  align-items: center;
}
#mvDetail.type02 .detail .flex .catdata {
  margin-bottom: 0;
}
#mvDetail.type02 .detail .flex .catdata li {
  padding: 0 15px 0 5px;
}
#mvDetail.type02 .detail .flex .catdata li:first-child {
  padding-left: 0;
}
#mvDetail.type02 .detail .flex .catdata li:last-child {
  padding-right: 0;
}
#mvDetail.type02 h2 {
  font-weight: 600;
  font-size: 28px;
  font-weight: 900;
}
#mvDetail.type02 h2 + p {
  font-size: 12px;
  padding: 5px 0 0;
}
#mvDetail.type02 .authordetail {
  display: flex;
}
#mvDetail.type02 .authordetail .img {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  width: 95px;
  height: 95px;
}
#mvDetail.type02 .authordetail .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#mvDetail.type02 .authordetail dl {
  width: 70%;
  margin-left: 5%;
}
#mvDetail.type02 .authordetail dl dt {
  line-height: 1.5;
  color: #606060;
  margin-bottom: 5px;
}
#mvDetail.type02 .authordetail dl dd {
  line-height: 1.5;
  color: #606060;
}
#mvDetail.type02 .mvimage {
  margin-bottom: 30px;
  min-height: 30px;
}

@media (min-width: 767px) {
  #mvDetail.type02 .authordetail .img {
    width: 15.52%;
    padding-top: 15.52%;
  }
  #mvDetail.type02 .mvimage {
    width: 100%;
    margin-bottom: 0;
    background-image: url(../img/blog/blogthumbnail02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: calc((473 / (710 / 2))* 21%);
    margin-bottom: 30px;
  }
  #mvDetail.type02 .mvimage.noimage {
    background-image: url(../img/blog/porsche_noimage_720_200.png);
  }
  #mvDetail.type02 .detail .flex .catdata li {
    padding: 0 15px;
  }
}
@media (min-width: 1000px) {
  #mvDetail.type02 {
    margin: auto 10px auto auto;
  }
  #mvDetail.type02 .mvflex {
    display: flex;
    flex-direction: row;
    margin-bottom: 38px;
    justify-content: flex-end;
  }
  #mvDetail.type02 .mvflex > div:first-child {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    width: 44%;
    margin: 0 3% auto 5%;
    max-width: 630px;
  }
  #mvDetail.type02 .container {
    margin-bottom: 36px;
    margin-top: 17px;
  }
  #mvDetail.type02 h1 {
    font-size: 35px;
    margin-bottom: 38px;
    line-height: 1.28;
  }
  #mvDetail.type02 .detail {
    margin-bottom: 0;
  }
  #mvDetail.type02 .detail .flex {
    align-items: center;
    margin-bottom: 10px;
  }
  #mvDetail.type02 .detail .flex .date {
    margin-right: 9px;
  }
  #mvDetail.type02 .detail .flex .catdata {
    margin-bottom: 0;
  }
  #mvDetail.type02 h2 {
    line-height: 1.75;
    font-size: 46px;
  }
  #mvDetail.type02 h2 + p {
    font-size: 18px;
    padding: 9px 0 0;
  }
  #mvDetail.type02 .authordetail {
    justify-content: left;
  }
  #mvDetail.type02 .authordetail .img {
    width: 18.323%;
    padding-top: 100px;
    max-height: 100px;
    min-width: 100px;
    max-width: 100px;
  }
  #mvDetail.type02 .authordetail dl {
    width: 78%;
    margin-left: 1.5%;
    margin-top: 8px;
  }
  #mvDetail.type02 .authordetail dl dt {
    line-height: 1.75;
    font-size: 14px;
    margin-bottom: 5px;
  }
  #mvDetail.type02 .authordetail dl dd {
    line-height: 1.75;
    font-size: 14px;
  }
  #mvDetail.type02 .mvimage {
    width: 51%;
  }
  #mvDetail.type02 .mvimage.noimage {
    background-image: url(../img/blog/porsche_noimage_720_480.png);
  }
  #mvDetail.type02 .authordetail .img{
    width: 29.52%;
  }
}
/*
#blog
---------------------------*/
#blog {
  width: 90%;
  margin: auto;
}
#blog .blogcontent > p {
  line-height: 1.5;
  margin: auto auto 30px;
}
#blog .blogcontent p {
  line-height: 1.86;
  margin-bottom: 15px;
}
#blog .blogcontent p a {
  text-decoration: underline;
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  font-weight: bold;
}
#blog .blogcontent p a:hover {
  opacity: 0.8;
}
#blog .blogcontent a {
  text-decoration: underline;
  transition: opacity 0.2s ease-out;
  backface-visibility: hidden;
  font-weight: bold;
}
#blog .blogcontent a:hover {
  opacity: 0.8;
}
#blog .blogcontent h2 {
  padding-top: 15px;
}
#blog .blogcontent h2 span {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.75;
  display: block;
  font-weight: 900;
}
#blog .blogcontent h3 {
  padding-top: 15px;
}
#blog .blogcontent h3 span {
  font-weight: bold;
  display: block;
  border-bottom: 1px solid #606060;
  padding: 0 0 10px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.75;
  display: block;
}
#blog .blogcontent h4 {
  margin-bottom: 20px;
  display: block;
}
#blog .blogcontent h4 span {
  position: relative;
  background-color: #f5f5f7;
  padding: 4px 10px;
  font-weight: bold;
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 1.75;
  display: block;
}
#blog .blogcontent h4::before {
  content: "";
  display: block;
}
#blog .blogcontent h5 span {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.75;
  display: block;
  font-weight: bold;
}
#blog .blogcontent .imageWrap {
  text-align: center;
  padding: 15px 0;
  margin-bottom: 0;
}
#blog .blogcontent .textbold {
  font-weight: 600;
}
#blog .blogcontent ul {
  margin-bottom: 20px;
}
#blog .blogcontent ul li {
  position: relative;
  line-height: 1.86;
  padding-left: 1em;
  text-indent: -1em;
}
#blog .blogcontent ul li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #212121;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  left: 0;
  vertical-align: middle;
  margin-right: 5px;
}
#blog .blogcontent ol {
  list-style: decimal;
  padding-left: 1.4em;
  margin-bottom: 20px;
}
#blog .blogcontent ol li {
  position: relative;
  line-height: 1.86;
  list-style: decimal;
}

@media (min-width: 1000px) {
  #blog {
    max-width: 1300px;
    display: flex;
  }
  #blog .blogcontent {
    max-width: 1000px;
    margin-right: 60px;
    padding-bottom: 90px;
    width: 90%;
  }
  #blog .blogcontent > p {
    line-height: 1.86;
    margin: auto auto 34px;
    font-size: 15px;
    letter-spacing: 0;
  }
  #blog .blogcontent p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  #blog .blogcontent h2 {
    margin-bottom: 26px;
    padding-top: 30px;
  }
  #blog .blogcontent h2 span {
    font-size: 35px;
  }
  #blog .blogcontent h3 span {
    font-size: 35px;
    padding: 0 0 8px;
    margin-bottom: 37px;
  }
  #blog .blogcontent h4 {
    margin-bottom: 15px;
  }
  #blog .blogcontent h4 span {
    font-size: 24px;
    padding: 8px 17px;
    margin-top: 17px;
  }
  #blog .blogcontent h5 span {
    font-size: 20px;
    margin-bottom: 13px;
  }
  #blog .blogcontent .imageWrap {
    padding: 16px 0 52px;
  }
  #blog .blogcontent .imageWrap img {
    max-width: 600px;
  }
  #blog .blogcontent ul {
    margin-bottom: 38px;
  }
  #blog .blogcontent ul,
#blog .blogcontent ul li {
    font-size: 15px;
  }
  #blog .blogcontent ol {
    margin-bottom: 38px;
  }
  #blog .blogcontent ol li {
    font-size: 15px;
  }
}
/*
#toc_container
---------------------------*/
#blog #toc_container {
  background-color: #f5f5f7;
  text-align: center;
  padding: 20px 57px;
  margin-bottom: 15px;
}
#blog #toc_container p {
  font-family: "Montserrat", sans-serif;
  color: #606060;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1;
}
#blog #toc_container ul {
  text-align: left;
  margin-bottom: 0;
}
#blog #toc_container ul li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 13px;
  text-indent: 0;
  padding-left: 0;
}
#blog #toc_container ul li:last-child {
  margin-bottom: 0;
}
#blog #toc_container ul li > a {
  font-weight: 600;
  text-decoration: none;
}
#blog #toc_container ul li::before {
  display: none;
}
#blog #toc_container ul ul {
  font-weight: 500;
  margin-top: 3px;
}
#blog #toc_container ul ul li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}
#blog #toc_container ul ul li a {
  font-weight: 500;
  padding-left: 28px;
  position: relative;
  margin-bottom: 3px;
  display: block;
}
#blog #toc_container ul ul li a::before {
  position: absolute;
  content: "-";
  width: 3px;
  height: 1px;
  top: -2px;
  left: 17px;
  margin: auto;
}
#blog #toc_container ul ul li ul {
  margin-top: 0;
}
#blog #toc_container ul ul li ul li a {
  padding-left: 43px;
}
#blog #toc_container ul ul li ul li a::before {
  left: 32px;
}
#blog #toc_container ul ul li ul li ul {
  margin-top: 0;
}
#blog #toc_container ul ul li ul li ul li a {
  padding-left: 58px;
}
#blog #toc_container ul ul li ul li ul li a::before {
  left: 47px;
}

@media (min-width: 767px) {
  #blog #toc_container {
    max-width: 338px;
    padding: 20px 57px;
    margin-bottom: 32px;
  }
  #blog #toc_container p {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.75;
  }
  #blog #toc_container ul li {
    font-size: 14px;
  }
  #blog #toc_container ul li {
    font-size: 15px;
  }
}
/*
.blogdetail
---------------------------*/
.blogdetail div {
  margin-bottom: 40px;
}
.blogdetail > div:last-child {
  margin-bottom: 0;
}
.blogdetail .heading03 {
  margin-bottom: 33px;
}

@media (min-width: 767px) {
  .blogdetail div {
    margin-bottom: 38px;
    padding-top: 89px;
    margin-top: -89px;
  }
  .blogdetail .heading01 {
    padding-top: 115px;
    margin-top: -89px;
  }
  .blogdetail .heading03 {
    margin-bottom: 33px;
  }
}
/*
.sideber
---------------------------*/
.sideber {
  padding-top: 40px;
}
.sideber .category,
.sideber .new,
.sideber .related {
  margin-bottom: 30px;
  border-left: 1px solid #e3e3e8;
  padding: 10px 0 10px 1.5em;
}
.sideber ul li {
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.sideber ul li:last-child {
  margin-bottom: 0;
}
.sideber dl {
  margin-bottom: 20px;
}
.sideber dl dd {
  line-height: 1.6;
}
.sideber a:last-child dl {
  margin-bottom: 0;
}
.sideber .flex {
  margin-bottom: 5px;
}

@media (min-width: 767px) {
  .sideber {
    max-width: 100%;
    padding-top: 30px;
    width: 100%;
  }
  .sideber .category,
.sideber .new,
.sideber .related {
    padding: 20px 0 30px 30px;
  }
  .sideber .category {
    margin-bottom: 39px;
  }
  .sideber .new {
    margin-bottom: 35px;
  }
  .sideber .related {
    margin-bottom: 60px;
  }
  .sideber .menutitle {
    margin-bottom: 18px;
  }
  .sideber ul li {
    margin-bottom: 17px;
  }
  .sideber dl {
    margin-bottom: 0;
    margin-top: 21px;
  }
  .sideber dl dt {
    line-height: 1.75;
  }
  .sideber dl dd {
    line-height: 1.75;
  }
  .sideber .flex {
    margin-bottom: 6px;
  }
  .sideber .flex .date {
    margin-right: 19px;
  }
}
@media (min-width: 1000px) {
  .sideber {
    max-width: 240px;
    padding-top: 90px;
    width: 100%;
  }
  .sideber .related {
    margin-bottom: 41px;
  }
}
/*
#bloglink
---------------------------*/
#bloglink {
  border-top: 1px solid #e3e3e8;
  padding: 30px 0;
  text-align: center;
}
#bloglink .detailNav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  margin: auto auto 30px;
  max-width: 410px;
}
#bloglink .detailNav .prev,
#bloglink .detailNav .next {
  position: relative;
  padding-right: 18px;
  font-family: "Montserrat", sans-serif;
}
#bloglink .detailNav .prev a,
#bloglink .detailNav .next a {
  font-weight: 600;
}
#bloglink .detailNav .prev a:before, #bloglink .detailNav .prev a:after,
#bloglink .detailNav .next a:before,
#bloglink .detailNav .next a:after {
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #fff;
  margin: auto;
}
#bloglink .detailNav .prev a:after,
#bloglink .detailNav .next a:after {
  right: 4px;
  top: 4px;
  bottom: auto;
  width: 4px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#bloglink .detailNav .prev:before,
#bloglink .detailNav .next:before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #040000;
  border-radius: 50px;
  margin: auto;
}
#bloglink .detailNav .prev.vhidden,
#bloglink .detailNav .next.vhidden {
  visibility: hidden;
}
#bloglink .detailNav .prev {
  padding-right: 0;
  padding-left: 18px;
}
#bloglink .detailNav .prev a:before, #bloglink .detailNav .prev a:after {
  right: inherit;
  left: 4px;
}
#bloglink .detailNav .prev a:after {
  right: inherit;
  left: 4px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
#bloglink .detailNav .prev:before {
  left: 0;
  right: inherit;
}
#bloglink .catdata {
  width: 90%;
  margin: auto;
}
#bloglink .catdata ul {
  justify-content: center;
  width: 100%;
}
#bloglink .catdata ul li {
  padding: 0 15px 0 5px;
}
#bloglink .catdata ul li:first-child {
  padding-left: 0;
}
#bloglink .catdata ul li:last-child {
  padding-right: 0;
}
#bloglink .btn span {
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 767px) {
  #bloglink {
    padding: 60px 0px 90px;
  }
  #bloglink .detailNav {
    margin: auto auto 36px;
  }
  #bloglink .catdata ul li {
    padding: 0 15px;
  }
}
@media (min-width: 900px) {
  #bloglink {
    padding: 60px 0px 90px;
  }
}
/*
#archive
---------------------------*/
#archive .categoryarea {
  padding: 30px 0 0;
}
#archive #blogcontent {
  padding: 45px 0 15px;
}
#archive #detiallist .pager {
  padding: 0;
}

@media (min-width: 767px) {
  #archive .categoryarea {
    padding: 56px 0 0;
  }
  #archive #blogcontent {
    padding: 85px 0 59px;
  }
  #archive #detiallist .pager {
    padding: 0;
  }
}
/*
#category
---------------------------*/
#category #mvDetail .title {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
#category .categoryTitle {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  margin: auto;
  bottom: 20px;
}
#category .categoryTitle h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  vertical-align: middle;
}

@media (min-width: 1000px) {
  #category .categoryTitle h3 {
    font-size: 35px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 767px) {
  #category #mvDetail .title {
    bottom: inherit;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
  }
  #category .categoryTitle {
    bottom: 4.7vw;
  }
}

/*# sourceMappingURL=blog.css.map */
