@charset "UTF-8";
/* CSS Document */

/*-----------------
common
-----------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.75;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
a {
  color: #0c4fab;
  text-decoration: none;
  transition: all .1s ease-out;
}
a:hover {
  opacity: 0.7;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
ul,
ol,
li {
  list-style: none;
}

/*-----------------
header
-----------------*/
.header_summary {
  max-width: calc(1100px + 4em);
  margin: 0 auto;
  padding: 0 2em;
  height: 100px;
  display: flex;
  align-items: center;
}
.suzuki_logo {
  margin-right: 2em;
  line-height: 1;
}
.dealer_name {
  font-size: 22px;
  font-size: 2.2rem;
}
.header_top {
  background-color: #00368f;
  color: #fff;
  padding: 0 2em;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_top h1 {
  font-size: 40px;
  font-size: 4.0rem;
}

/* topic_path */
.topic_path {
  padding: 2em 2em 0;
}
.topic_path ul {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.topic_path li {
  position: relative;
  padding: 0 2em 0 0 ;
  font-size: 12px;
  font-size: 1.2rem;
}
.topic_path li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 1em;
  width: 4px;
  height: 4px;
  border-top: 1px solid #003567;
  border-right: 1px solid #003567;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.topic_path li:last-child:after {
  display: none;
}

/*-----------------
blog
-----------------*/
h2 {
  color: #00368f;
  font-size: 30px;
  font-size: 3.0rem;
  margin-bottom: 1em;
}
.articleWrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 8vw 2em;
  border-bottom: 20px solid #f2f2f2;
}
.contents4 .articleWrap {
  border-bottom: 0;
}
.comment {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 3;
}
.comment_sign {
  margin-top: 3em;
}
.comment_name {
  margin-top: 1em;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}
.contents_text {
  line-height: 2;
}
.contents2_bg {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 5vw 2em;
  margin: 2em 0 0;
}
dl {
  max-width: 800px;
  margin: 0 auto 3em;
}
dt {
  background-color: #00368f;
  color: #fff;
  border-radius: 5px 5px 0 0;
  text-align: left;
  padding: 1em 3em;
}
dt p {
  font-size: 22px;
  font-size: 2.2rem;
}
dd {
  background-color: #f7f7f7;
  padding: 3em;
  text-align: left;
  border-radius: 0 0 5px 5px;
  line-height: 2;
}
.caution {
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
}
section {
  text-align: center;
  padding: 8vw 2em;
  background-color: #aae6f9;
}

/*-----------------
footer
-----------------*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
}
#pagetop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}
#pagetop a::before,
#pagetop a::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#pagetop a::before {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0c4fab;
}
#pagetop a::after {
  left: 37%;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  top: 6px;
}
footer {
  text-align: center;
  padding: 6vw 2em;
  color: #000;
}
footer a {
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  background-color: #de0039;
  max-width: 480px;
  padding: 1em 2em;
  display: block;
  margin: 0 auto 1em;
  border-radius: 40px;
}
footer div {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .articleWrap {
    text-align: left;
  }
  .suzuki_logo img {
    width: 100px;
    height: auto;
  }
  .dealer_name {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .header_top h1 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .comment {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
    line-height: 2;
  }
  .comment br {
    display: none;
  }
  .comment_sign {
    text-align: right;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  dt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  footer div {
    text-align: left;
  }
  .caution {
    text-align: left;
  }
}