@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
a,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
  font-family: Hiragino Sans, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

p {
  margin: 0 0 1em;
}

/*カラー変数*/

/*MOTAブラック*/

/*MOTAレッド-プライマリカラー*/

/*MOTA leaseブラック*/

/*MOTA leaseレッド*/

* {
  color: #333;
  box-sizing: border-box;
}

.wrapper {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}

.wrapper__inner {
  width: 1020px;
  margin: auto auto 40px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin: 39px 0 0;
}

.perfectguide {
  margin-top: 32px;
}

.perfectguide p {
  margin: 0;
}

.perfectguide--fixedarea {
  grid-area: 1/2/2/3;
}

.perfectguide h3 {
  display: grid;
  align-items: center;
  padding: 8px 24px;
  min-height: 52px;
  background-color: #EFEFEF;
  font-size: 20px;
  font-weight: 700;
}

.perfectguide__ctgnav {
  position: sticky;
  top: 32px;
  border: 8px solid #EFEFEF;
}

.perfectguide__ctgnav > li {
  border: 1px solid #EFEFEF;
}

.perfectguide__ctgnav > li > a {
  display: grid;
  align-items: center;
  padding: 16px;
  min-height: 60px;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.perfectguide__ctgnav > li.is-current {
  border-left: 4px solid #CC0000;
}

.perfectguide__ctgnav > li.is-current > a {
  color: #CC0000;
  font-weight: 700;
}

.perfectguide__ctg > ul {
  margin: 16px 0 56px;
}

.perfectguide__ctg > ul > li {
  border-bottom: 1px solid #E6E6E6;
}

.perfectguide__ctg > ul > li > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.perfectguide__ctg > ul > li > a::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #CC0000;
  border-right: 2px solid #CC0000;
  transform: rotate(45deg);
}

.perfectguide__ctg > ul > li > a > img {
  width: 108px;
  height: 72px;
}

.perfectguide__ctg > ul > li > a > p {
  padding: 0 56px 0 16px;
}

@media screen and (min-width: 640px) {
  .perfectguide {
    display: grid;
    grid-template-columns: 672px 300px;
    grid-column-gap: 48px;
  }

  .perfectguide li > a:hover {
    background-color: #F5F5F5;
  }
}

@media screen and (max-width: 640px) {
  .wrapper {
    font-size: 15px;
    line-height: 1.5;
  }

  .wrapper__inner {
    width: 100%;
    box-sizing: border-box;
    margin: auto auto 14px;
    padding: 10px;
  }

  .page-title {
    font-size: 22px;
    margin: 22px 0 0;
  }

  .perfectguide {
    margin-top: 24px;
  }

  .perfectguide--fixedarea {
    display: none;
  }

  .perfectguide__ctg + section {
    margin-top: 40px;
  }

  .perfectguide__ctg > ul {
    margin: 0;
  }

  .perfectguide__ctg > ul > li > a {
    padding: 16px 0;
  }

  .perfectguide__ctg > ul > li > a::before {
    width: 9px;
    height: 9px;
  }

  .perfectguide__ctg > ul > li > a > img {
    width: 81px;
    height: 54px;
  }

  .perfectguide__ctg > ul > li > a > p {
    padding: 0 32px 0 8px;
    width: calc(100% - 81px);
    font-size: 14px;
  }
}