/*
  Theme Name: Ogawa Group
  Description: 小河自動車 オリジナルテーマ
  Version: 1.0.0
*/

@charset "utf-8";

/*----------------------------------------------
    BASE
----------------------------------------------*/

:root {
  --color-base: #666666;
  --color-main: #B50000;
  --color-sub: #FFBEBE;
  --content-max-width: 95%;
  --content-width: 940px;
  --transition-base: .2s;
}

html {
  scrollbar-gutter: stable;
}

body {
  color: var(--color-base);
  font: 400 16px/1.75 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", HiraKakuPro-W3, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", verdana, sans-serif;
}

body.is-noscroll {
  overflow-y: hidden;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  padding: 18px 20px;
  width: 100%;
}

input[type="checkbox"] {
  margin-right: .5em;
}

textarea {
  min-height: 300px;
}


/*----------------------------------------------
    COMMON (共通)
----------------------------------------------*/

.only-pc {
  display: block !important;
}

.only-pc-tb {
  display: block !important;
}

.only-tb {
  display: none !important;
}

.only-sp {
  display: none !important;
}

.c-color-red {
  color: var(--color-main);
}

.c-fs-120 {
  font-size: 1.2em;
}

.c-fw-bold {
  font-weight: 700;
}

.c-mt-0 {
  margin-top: 0 !important;
}

.c-mt-1 {
  margin-top: 1em !important;
}

.c-mt-15 {
  margin-top: 1.5em !important;
}

.c-mt-2 {
  margin-top: 2em !important;
}

.c-mb-0 {
  margin-bottom: 0 !important;
}

.c-mb-1 {
  margin-bottom: 1em !important;
}

.c-mb-15 {
  margin-bottom: 1.5em !important;
}

.c-mb-2 {
  margin-bottom: 2em !important;
}

.c-emphasis {
  color: var(--color-main);
  font-size: 1.125em;
  font-weight: 700;
}

.c-btn-oval {
  background-color: var(--color-main);
  border-radius: 100vh;
  box-shadow:
  inset 5px 4px 6px rgba(255,255,255,.44),
  2px 2px 6px rgba(0,0,0,.4);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  max-width: 100%;
  min-width: 200px;
  padding: 8px 45px 8px 20px;
  position: relative;
  text-align: left;
  transition: var(--transition-base);
}

.c-btn-oval::before {
  content: "";
  background: #fff;
  border-radius: 100vh;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 26px;
}

.c-btn-oval::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--color-main);
  height: 0;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 0;
}

.c-btn-oval:hover {
  background-color: #FF0000;
}

.c-btn-oval:hover::after {
  border-left-color: #FF0000;
}

.c-btn-oval-wh {
  background-color: #fff;
  border-radius: 100vh;
  box-shadow:
  inset 5px 4px 6px rgba(255,255,255,.44),
  2px 2px 6px rgba(0,0,0,.4);
  color: var(--color-main);
  display: inline-block;
  font-size: 18px;
  max-width: 100%;
  min-width: 200px;
  padding: 8px 45px 8px 20px;
  position: relative;
  text-align: left;
  transition: var(--transition-base);
}

.c-btn-oval-wh::before {
  content: "";
  background: var(--color-main);
  border-radius: 100vh;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 26px;
}

.c-btn-oval-wh::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
  height: 0;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 0;
}

.c-btn-oval-wh:hover {
  background-color: #FFBEBE;
}

.c-btn-square {
  background-color: var(--color-sub);
  box-shadow: 0px 3px 6px rgba(0,0,0,.16);
  display: inline-block;
  font-size: 18px;
  max-width: 100%;
  min-width: 240px;
  padding: 17px 45px;
  position: relative;
  transition: var(--transition-base);
}

.c-btn-square::before {
  content: "";
  background: #fff;
  border-radius: 100vh;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 26px;
}

.c-btn-square::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #666666;
  height: 0;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 0;
}

.c-btn-square:hover {
  background-color: #F2F2F2;
  color: var(--color-main);
}

.c-btn-square:hover::before {
  background-color: var(--color-sub);
}

.c-btn-square:hover::after {
  border-left-color: var(--color-main);
}

.c-bg-lightgray {
  background-color: #f2f2f2;
}

.c-section {
  overflow: hidden;
}

.c-section-inner {
  margin: auto;
  max-width: var(--content-max-width);
  padding: 110px 0;
  width: var(--content-width);
}

.c-section-header {
  display: flex;
  align-items: baseline;
  column-gap: 2em;
  flex-wrap: wrap;
  row-gap: .5em;
  margin-bottom: 70px;
}

.c-section-title-en {
  color: var(--color-sub);
  font-size: 70px;
  font-weight: 500;
  line-height: 1.25;
}

.c-section-title-jp {
  flex: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.c-section-title-out {
  background-color: var(--color-main);
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin-left: calc(50% - 50vw);
  padding: 22px 35px 22px calc(50vw - 50%);
  width: fit-content;
}

.c-section-title-out .inner {
  display: block;
  max-width: 100%;
  min-width: 460px;
}

.c-nolink {
  cursor: default;
  pointer-events: none;
}


/*   HEADER   */

#header {
  background-color: rgba(255,255,255,.67);
  display: flex;
  align-items: center;
  column-gap: 2em;
  justify-content: space-between;
  padding: 0 min(60px,3.5vw);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.h-menubtn {
  display: none;
}

.h-navigation {
  flex: 1;
}

.h-contact {
  display: flex;
  column-gap: .75em;
  justify-content: flex-end;
  padding-top: 15px;
}

.h-contact-tel {
  background-color: var(--color-main);
  border-radius: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: .5em;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 100%;
  padding: 2px 6px;
  text-align: center;
  width: 245px;
}

.h-contact-tel .number {
  font-size: 19px;
  font-weight: 700;
}

.h-contact-btn {
  background-color: var(--color-main);
  border-radius: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: .5em;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  max-width: 100%;
  padding: 2px 20px;
  text-align: center;
  transition: var(--transition-base);
}

.h-contact-btn:hover {
  background-color: #FF0000;
}

.h-gnav-list {
  display: flex;
  align-items: center;
  column-gap: 2em;
  flex-wrap: wrap;
  justify-content: flex-end;
  line-height: 1.5;
}

.h-gnav-list-item.menu-item-has-children {
  position: relative;
}

.h-gnav-list-item > a {
  display: block;
  transition: var(--transition-base);
}

.h-gnav-list > .h-gnav-list-item > a {
  padding: 15px 0;
}

.h-gnav-list-item.current-menu-item > a {
  color: var(--color-main);
}

.h-gnav-list-item > a:hover {
  color: var(--color-main);
}

.h-gnav-list-item > .sub-menu {
  background-color: rgba(255,255,255,.67);
  display: none;
  padding: 1em;
  position: absolute;
  top: 100%;
  left: -1em;
  transition: var(--transition-base);
  width: 165px;
}

.h-gnav-list-item.menu-item-has-children:hover .sub-menu {
  display: block;
}

.h-gnav-list-item > .sub-menu li {
  margin-bottom: .5em;
}

.h-gnav-list-item > .sub-menu li:last-child {
  margin-bottom: 0;
}


/*   PAGETOP   */

#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}

#pagetop a {
  display: block;
  transition: var(--transition-base);
}

#pagetop a:hover {
  opacity: .8;
}


/*   FOOTER   */

#footer {
  background-color: var(--color-main);
  clear: both;
}

.f-inner {
  display: flex;
  column-gap: 3em;
  justify-content: space-between;
  margin: auto;
  max-width: var(--content-max-width);
  padding: 100px 0;
  width: var(--content-width);
}

.f-logo {
  margin-bottom: 35px;
}

.f-copyright {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.f-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}

.f-nav {
  flex: 1;
  display: flex;
  column-gap: 3em;
  justify-content: flex-end;
}

.f-nav-list > .f-nav-list-item {
  margin-left: 1em;
  text-indent: -1em;
}

.f-nav-list > .f-nav-list-item::before {
  content: "●";
  color: #fff;
  font-size: .6em;
  margin-right: .4em;
  vertical-align: .25em;
}

.f-nav-list > .f-nav-list-item.menu-item-has-children {
  margin-bottom: 1em;
}

.f-nav-list > .f-nav-list-item.menu-item-has-children:last-child {
  margin-bottom: 0;
}

.f-nav-list-item a {
  color: #fff;
}

.f-nav-list-item a:hover {
  text-decoration: underline;
}

.f-nav-list-item .sub-menu {
  border-left: 1px solid #fff;
  margin-top: .5em;
  margin-left: .5em;
  padding-left: 1em;
}

.f-nav-list-item .sub-menu li {
  margin-left: 0;
  text-indent: 0;
}


@media screen and (max-width: 1080px) {
  #header {
    background-color: #fff;
    padding: 15px;
  }
  .h-logo-image {
    height: 40px;
    width: auto;
  }
  .h-menubtn {
    cursor: pointer;
    display: block;
    z-index: 100;
  }
  .h-menubtn-inner {
    height: 20px;
    position: relative;
    width: 40px;
  }
  .h-menubtn span {
    background-color: #707070;
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    transition: .3s;
    width: 100%;
  }
  .h-menubtn .t {
    top: 0;
  }
  .h-menubtn .m {
    top: 50%;
    transform: translateY(-50%);
  }
  .h-menubtn .b {
    bottom: 0;
  }
  .h-menubtn.is-active .t {
    transform: translateY(9.5px) rotate(30deg);
  }
  .h-menubtn.is-active .m {
    opacity: 0;
  }
  .h-menubtn.is-active .b {
    transform: translateY(-9.5px) rotate(-30deg);
  }
  .h-menubtn-text {
    font-size: 14px;
    letter-spacing: .05em;
    line-height: 1;
    margin-top: .25em;
    text-align: center;
  }
  .h-navigation {
    background-color: #fff;
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100% - 70px);
    overflow-y: auto;
    padding: 30px 35px;
    width: 100%;
    z-index: 101;
  }
  .h-contact {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .h-gnav-list {
    display: block;
  }
  .h-gnav-list-item {
    margin-bottom: 1.5em;
  }
  .h-gnav-list .h-gnav-list-item:last-child {
    margin-bottom: 0;
  }
  .h-gnav-list > .h-gnav-list-item > a {
    display: block;
    font-size: 21px;
    font-weight: 700;
    padding: 0;
  }
  .h-gnav-list-item > .sub-menu {
    background-color: transparent;
    display: block;
    padding: .5em 0 0 1em;
    position: static;
    width: 100%;
  }
  .h-gnav-list-item > .sub-menu a {
    font-size: 21px;
  }
  #main {
    margin-top: 70px;
  }
}


/*----------------------------------------------
    TOP PAGE
----------------------------------------------*/

#home-mainvisual {
  margin-bottom: 150px;
  position: relative;
}

.home-mainvisual-slider {
  opacity: 0;
  transition: opacity .3s linear;
}

.home-mainvisual-slider.slick-initialized {
  opacity: 1;
}

.home-mainvisual-slider-item img {
  height: auto;
  width: 100%;
}

.home-mainvisual-content {
  position: absolute;
  top: 70%;
  left: 0;
  transform: translateY(-50%);
}

.home-mainvisual-title {
  background-color: var(--color-main);
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.25;
  padding: 8px min(60px,3.5vw) 12px;
}

.home-mainvisual-subtitle {
  color: #fff;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 10px;
  padding: 0 min(60px,3.5vw);
  text-shadow: 0 3px 6px #1D1D1D;
}

.home-news-container {
  display: flex;
  column-gap: 3em;
  justify-content: space-between;
}

.home-news-header {
  display: flex;
  flex-direction: column;
  width: 200px;
}

.home-news-header .c-section-title-en {
  margin-top: -.25em;
}

.home-news-header .c-section-title-jp {
  align-self: flex-end;
  margin-bottom: 1em;
}

.home-news-list {
  display: flex;
  flex-direction: column;
  row-gap: 2em;
  flex: 1;
  max-width: 630px;
}

.home-news-list-item {
  display: flex;
  align-items: flex-start;
  column-gap: .5em;
  line-height: 1.5;
}

.home-news-list-item .date {
  margin-right: 1em;
}

.home-news-list-item .shop {
  background-color: var(--color-main);
  border-radius: 12px;
  color: #fff;
  margin-top: -.25em;
  min-width: 130px;
  padding: .25em .5em;
  text-align: center;
  transition: var(--transition-base);
}

.home-news-list-item .shop:hover {
  background-color: #FF0000;
}

.home-news-list-item .title {
  flex: 1;
  padding-left: 1em;
}

.home-news-list-item .title a {
  transition: var(--transition-base);
}

.home-news-list-item .title a:hover {
  color: var(--color-main);
}

.home-greeting-visual img {
  height: auto;
  width: 100%;
}

.home-greeting-content {
  background-color: var(--color-main);
  padding: 80px 0 110px;
}

.home-greeting-box {
  background-color: #fff;
  margin: auto;
  max-width: var(--content-max-width);
  padding: 35px min(75px,4vw) 45px;
  width: var(--content-width);
}

.home-greeting-title {
  color: var(--color-main);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .75em;
  text-align: center;
}

.home-greeting-box-inner {
  display: flex;
  align-items: center;
  column-gap: 4em;
}

.home-greeting-logo {
  text-align: center;
  width: 160px;
}

.home-greeting-textarea {
  flex: 1;
}

.home-services-container {
  display: flex;
  justify-content: space-between;
}

.home-services-box {
  max-width: 32%;
  position: relative;
  width: 292px;
}

.home-services-box-figure {
  filter: contrast(60%);
  transition: var(--transition-base);
}

.home-services-box a:hover .home-services-box-figure {
  filter: none;
}

.home-services-box-figure img {
  filter: drop-shadow(2px 2px 13px rgba(0,0,0,.24));
}

.home-services-box-titlearea {
  color: #fff;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  width: 100%;
}

.home-services-box-title-en {
  font-size: 28px;
  font-weight: 700;
}

.home-services-box-title-jp {
  font-size: 23px;
}

.home-shop-container::after {
  content: "";
  clear: both;
  display: block;
}

.home-shop-row {
  clear: both;
  margin-bottom: 70px;
  overflow: hidden;
  position: relative;
}

.home-shop-container .home-shop-row:last-child {
  margin-bottom: 0;
}

.home-shop-figure {
  max-width: 60%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.home-shop-container .home-shop-row:nth-of-type(odd) .home-shop-figure {
  left: 0;
}

.home-shop-container .home-shop-row:nth-of-type(even) .home-shop-figure {
  right: 0;
}

.home-shop-content {
  background-color: #fff;
  border-radius: 30px;
  margin-top: 70px;
  padding: 45px 60px;
  position: relative;
  width: 454px;
  z-index: 1;
}

.home-shop-container .home-shop-row:nth-of-type(odd) .home-shop-content {
  float: right;
}

.home-shop-container .home-shop-row:nth-of-type(even) .home-shop-content {
  float: left;
}

.home-shop-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: .5em;
}

.home-shop-address {
  margin-bottom: 1.5em;
}

.home-shop-sns {
  display: flex;
  column-gap: 1em;
  margin-bottom: 1.5em;
}

.home-shop-sns a {
  transition: var(--transition-base);
}

.home-shop-sns a:hover {
  opacity: .8;
}

#home-recruit {
  background-color: var(--color-main);
  overflow: visible;
}

.home-recruit-inner {
  padding: 110px 0;
}

#home-recruit .c-section-header {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-max-width);
  width: var(--content-width);
}

#home-recruit .c-section-title-jp {
  color: #fff;
}

.home-recruit-visual {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
  overflow: hidden;
}

.home-recruit-visual-figure {
  max-width: 55%;
}

.home-recruit-visual-figure img {
  box-shadow: 3px 3px 6px rgba(0,0,0,.16);
  height: auto;
  width: 100%;
}

.home-recruit-visual-content {
  flex: 1;
  margin-left: -35px;
}

.home-recruit-visual-tagline {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.home-recruit-visual-content .text {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.5);
  color: var(--color-main);
  display: block;
  font-size: 35px;
  font-weight: 700;
  padding: 4px 35px;
}

.home-recruit-content {
  margin: auto;
  max-width: var(--content-max-width);
  width: var(--content-width);
}

.home-recruit-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1em;
}

.home-recruit-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.home-recruit-box {
  background-color: #fff;
  max-width: 48%;
  position: relative;
  width: 454px;
}

.home-recruit-box-title {
  color: var(--color-main);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  padding: 30px 60px 30px 40px;
  position: relative;
}

.home-recruit-box-title::after {
  content: "＋";
  background-color: var(--color-sub);
  border-radius: 100vh;
  color: var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 26px;
}

.home-recruit-box-title.is-active::after {
  content: "－";
}

.js-accordion-title {
  cursor: pointer;
}

.home-recruit-box-content {
  background-color: #fff;;
  box-shadow: inset 0 3px 5px rgba(0,0,0,.16);
  padding: 10px 40px 30px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
}

.js-accordion-content {
  display: none;
}

.home-recruit-box-section {
  margin-bottom: 1.5em;
}

.home-recruit-box-section-title {
  border-bottom: 1px solid var(--color-base);
  font-weight: 500;
  margin-bottom: .5em;
  padding-bottom: .25em;
}

.home-recruit-box-btnarea {
  margin-top: 2.5em;
  text-align: center;
}


.home-instagram-feed {
  margin-bottom: 30px;
  margin-right: calc(50% - 50vw);
  overflow-x: scroll;
  position: relative;
}

.home-instagram-feed::-webkit-scrollbar {
  display: none;
}

@-moz-document url-prefix() {
  .home-instagram-feed {
    scrollbar-width: thin;
  }
}

.home-instagram-feed-container {
  padding-right: 50px;
  width: max-content;
}

.home-instagram-feed #sb_instagram #sbi_images {
  display: flex !important;
}

.home-instagram-feed #sb_instagram #sbi_images .sbi_item {
  width: 200px;
}


/*----------------------------------------------
    固定ページ共通  .page
----------------------------------------------*/

.page-mainvisual-image img {
  height: auto;
  width: 100%;
}

.page-header {
  background-color: var(--color-main);
  color: #fff;
  margin-top: -125px;
  max-width: 60%;
  min-height: 250px;
  min-width: max-content;
  padding: 50px 25px 50px max(2.5%,calc(100% - (50% + 470px)));
  position: relative;
}

.page-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5em;
}

.page-title .sub {
  font-size: 30px;
}

.page-description {
  font-size: 25px;
  line-height: 1.5;
}

.page-lead-text {
  font-size: 22px;
}

.page-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}

.page-flex-box {
  display: flex;
  flex-direction: column;
  max-width: 32%;
  width: 292px;
}

.page-flex-box-figure {
  margin-bottom: 50px;
  text-align: center;
}

.page-flex-box-content {
  background-color: var(--color-main);
  color: #fff;
  height: 100%;
  padding: 30px 20px;
}

.page-flex-box-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}

.page-faq-container {
  display: flex;
  column-gap: 60px;
}

.page-faq-visual {
  max-width: 36%;
  width: 330px;
}

.page-faq-visual-figure {
  margin-bottom: 20px;
}

.page-faq-visual .carlease-faq-visual-figure:nth-of-type(even) {
  text-align: right;
}

.page-faq-content {
  flex: 1;
}

.page-faq-list-item {
  margin-bottom: 45px;
}

.page-faq-list .page-faq-list-item:last-child {
  margin-bottom: 0;
}

.page-faq-list-item-term {
  background-color: var(--color-sub);
  margin-right: calc(50% - 50vw);
  padding: 30px calc(50vw - 50%) 30px 30px;
}

.c-bg-lightgray .page-faq-list-item-term {
  background-color: #fff;
}

.page-faq-list-item-desc {
  color: var(--color-main);
  padding: 30px 0 0 30px;
}


/*----------------------------------------------
    販売  .sales
----------------------------------------------*/

.sales-section-visual {
  margin: 0 calc(50% - 50vw);
  position: relative;
}

.sales-section-visual-figure {
  height: 607px;
  width: 100%;
}

.sales-section-visual-figure img {
  height: 100%;
  object-fit: cover;
  object-position: top right;
  width: 100%;
}

.sales-section-visual-textarea {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.sales-section-visual-tagline {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.sales-section-visual-tagline .text {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  color: var(--color-main);
  display: block;
  font-size: 32px;
  font-weight: 700;
  max-width: 100%;
  padding: 10px 50px 10px max(2.5%,calc(100% - (50% + 470px)));
  width: max-content;
}

.sales-section-lead {
  margin-top: -60px;
  margin-bottom: 60px;
}

.sales-section-lead::after {
  content: "";
  clear: both;
  display: block;
}

.sales-section-lead-box {
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0,0,0,.2);
  float: right;
  max-width: 100%;
  padding: 50px 60px;
  position: relative;
  width: 648px;
}

#sales-newcar .page-flex {
  margin-top: -60px;
  position: relative;
}

.sales-carlease-banner a,
.sales-usedcar-banner a {
  transition: var(--transition-base);
}

.sales-carlease-banner a:hover,
.sales-usedcar-banner a:hover {
  opacity: .8;
}

.sales-carlease-banner img,
.sales-usedcar-banner img {
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.sales-usedcar-banner-title {
  background-color: var(--color-main);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 100%;
  padding: 15px 30px;
  width: fit-content;
}

.sales-usedcar-banner-title::before {
  content: "▼ ";
}

.sales-welfare-scroll-x {
  margin-top: -60px;
  margin-bottom: 60px;
  margin-right: calc(50% - 50vw);
  overflow-x: scroll;
  position: relative;
}

.sales-welfare-scroll-x::-webkit-scrollbar {
  display: none;
}

@-moz-document url-prefix() {
  .sales-welfare-scroll-x {
    scrollbar-width: thin;
  }
  .sales-welfare-container {
    padding-bottom: 30px;
  }
}

.sales-welfare-container {
  display: flex;
  column-gap: 70px;
  padding-right: 50px;
  width: max-content;
}

.sales-welfare-postscript {
  background-color: var(--color-main);
  color: #fff;
  padding: 50px 60px;
}


/*----------------------------------------------
    カーリース（スーパー乗るだけセット）  .car-lease
----------------------------------------------*/

.carlease-section-title {
  background-color: var(--color-main);
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  padding: 22px;
  text-align: center;
  width: 100%;
}

.carlease-subsection {
  margin-top: 70px;
}

.carlease-subsection-title {
  color: var(--color-main);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 50px;
  text-align: center;
}

.carlease-subsection-title::after {
  content: "";
  border-bottom: 5px solid var(--color-main);
  display: block;
  height: 8px;
  margin: 2px auto 0;
  max-width: 100%;
  width: 616px;
}

#carlease-problem {
  background-color: #f2f2f2;
  overflow: visible;
  position: relative;
  z-index: 2;
}

#carlease-problem::after {
  content: "";
  border-style: solid;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
  border-top: 60px solid #ffffff;
  border-bottom: 0;
  filter: drop-shadow(0 5px 3px rgba(0,0,0,.16));
  height: 0;
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  z-index: 0;
}

.carlease-problem-inner {
  background-color: #fff;
  border-radius: 0 0 100px 100px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  position: relative;
}

.carlease-problem-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.carlease-problem-title::after {
  content: "";
  background-color: var(--color-main);
  border-radius: 100vh;
  display: block;
  height: 8px;
  margin: 10px auto 0;
}

.carlease-problem-title .emphasis {
  color: var(--color-main);
  font-size: 38px;
}

.carlease-problem-container {
  display: flex;
  justify-content: space-between;
}

.carlease-problem-box {
  max-width: 32%;
  width: 292px;
}

.carlease-problem-box-icon {
  margin-bottom: 50px;
  text-align: center;
}

.carlease-problem-box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}

#carlease-solve {
  background-color: #fff;
  overflow: visible;
  position: relative;
  z-index: 1;
}

#carlease-solve::after {
  content: "";
  border-style: solid;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
  border-top: 60px solid #f2f2f2;
  border-bottom: 0;
  filter: drop-shadow(0 5px 3px rgba(0,0,0,.16));
  height: 0;
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  z-index: 0;
}

.carlease-solve-inner {
  background-color: #f2f2f2;
  border-radius: 0 0 100px 100px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  position: relative;
}

#carlease-about .carlease-section-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.carlease-about-above {
  color: var(--color-main);
  display: flex;
  align-items: center;
  column-gap: 1em;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}

.carlease-about-above::before {
  content: "\\";
}

.carlease-about-above::after {
  content: "/";
}

.carlease-about-figure {
  margin: 0 -12px;
  text-align: center;
}

.carlease-about-box {
  background-color: var(--color-sub);
  border-radius: 0 0 40px 40px;
  margin-top: -80px;
  padding: 120px 70px 80px;
}

.carlease-about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.carlease-about-icon {
  max-width: 22%;
  text-align: center;
  width: 150px;
}

.carlease-about-plus {
  color: var(--color-main);
  font-size: 24px;
  font-weight: 700;
  margin: 0 5px;
  text-align: center;
}

#carlease-reason .page-flex-box-title {
  font-size: 16px;
}

.carlease-model-scroll-x {
  margin-bottom: 30px;
  margin-right: calc(50% - 50vw);
  overflow-x: scroll;
  position: relative;
}

.carlease-model-scroll-x::-webkit-scrollbar {
  display: none;
}

@-moz-document url-prefix() {
  .carlease-model-scroll-x {
    scrollbar-width: thin;
  }
  .carlease-model-container {
    padding-bottom: 30px;
  }
}

.carlease-model-container {
  display: flex;
  column-gap: 30px;
  padding-right: 50px;
  width: max-content;
}

.carlease-model-box {
  background-color: #f2f2f2;
  border-radius: 18px;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  padding: 30px;
}

.carlease-model-box-figure {
  margin-bottom: 30px;
  text-align: center;
}

.carlease-model-box-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: .25em;
}

.carlease-model-box-price {
  color: var(--color-main);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.carlease-model-box-note {
  font-weight: 700;
  text-align: center;
}

.carlease-model-text {
  margin: auto;
  max-width: 100%;
  width: 778px;
}

.carlease-step-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
}

.carlease-step-box {
  max-width: 24%;
  text-align: center;
  width: 195px;
}

.carlease-step-box-icon {
  margin-bottom: 50px;
}

.carlease-step-box-num {
  color: var(--color-sub);
  font-weight: 700;
  margin-bottom: .75em;
}

.carlease-step-box-title {
  font-weight: 700;
}


/*----------------------------------------------
    整備・メンテナンス  .maintenance
----------------------------------------------*/

#maintenance-point .c-section-inner {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

#maintenance-point {
  position: relative;
}

#maintenance-point::after {
  content: "";
  background-color: #f2f2f2;
  height: 77%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.maintenance-menu-section {
  clear: both;
  margin-bottom: 80px;
}

.maintenance-menu-section::after {
  content: "";
  clear: both;
  display: block;
}

#maintenance-menu .maintenance-menu-section:last-child {
  margin-bottom: 0;
}

.maintenance-menu-row {
  position: relative;
}

.maintenance-menu-figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.maintenance-menu-figure img {
  box-shadow: 2px 2px 10px rgba(0,0,0,.4);
}

.maintenance-menu-content {
  background-color: #f2f2f2;
  float: right;
  margin-top: 180px;
  padding: 55px 75px 55px 150px;
  position: relative;
  width: 615px;
  z-index: 1;
}

.maintenance-menu-btnarea {
  margin-top: 2.5em;
  text-align: right;
}

.maintenance-menu-banner {
  background-color: var(--color-main);
  display: inline-block;
  padding: 4px 4px 15px;
  transition: var(--transition-base);
  width: 300px;
}

.maintenance-menu-banner .c-btn-oval-wh {
  margin-right: 10px;
}

.maintenance-menu-banner:hover .c-btn-oval-wh {
  background-color: #FFBEBE;
}


/*----------------------------------------------
    店舗情報 (共通)  .shop
----------------------------------------------*/

.shop-info-content {
  background-color: #fff;
  display: flex;
  column-gap: 2em;
  justify-content: space-between;
  padding: 55px 50px;
}

.shop-info-address {
  flex: 1;
}

.shop-info-address-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5em;
}

.shop-info-address-tel {
  display: flex;
  align-items: center;
  column-gap: .25em;
  font-size: 32px;
  line-height: 1.25;
  margin: .25em 0;
}

.shop-info-map {
  width: 486px;
}

.shop-info-map iframe {
  max-width: 100%;
}

.shop-info-banners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 55px;
}

.shop-info-banner {
  box-shadow: 2px 2px 12px rgba(0,0,0,.3);
  overflow: hidden;
  position: relative;
  max-width: 49%;
  width: 454px;
}

.shop-info-banner img {
  height: auto;
  transition: var(--transition-base);
  width: 100%;
}

.shop-info-banner:hover img {
  transform: scale(1.1);
}

.shop-info-banner .c-btn-oval {
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-decoration: underline;
}

.shop-photo-slider {
  opacity: 0;
  transition: opacity .3s linear;
}

.shop-photo-slider.slick-initialized{
  opacity: 1;
}

.shop-photo-slider-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.shop-photo-slider-arrow.prev {
  left: -50px;
}

.shop-photo-slider-arrow.next {
  right: -50px;
}

.shop-photo-thumbnail {
  margin-top: 30px;
  opacity: 0;
  transition: opacity .3s linear;
}

.shop-photo-thumbnail.slick-initialized{
  opacity: 1;
}

.shop-photo-thumbnail .slick-track {
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
  transform: unset !important;
}

.shop-photo-thumbnail .slick-track::before,
.shop-photo-thumbnail .slick-track::after {
  content: none;
}

.shop-photo-thumbnail-item {
  aspect-ratio: 211 / 150;
  flex: 1;
  overflow: hidden;
}

.shop-photo-thumbnail-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}


/*----------------------------------------------
    会社概要  .company
----------------------------------------------*/

#company-message {
  padding-top: 100px;
}

#company-message .c-section-inner::after {
  content: "";
  clear: both;
  display: block;
}

.company-message-subtitle {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.25em;
}

.company-message-content {
  float: right;
  max-width: 100%;
  width: 730px;
}

.company-message-name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1.25em;
}

.company-message-text {
  margin-bottom: 1em;
}

.company-message-content .company-message-text:last-child {
  margin-bottom: 0;
}

.company-philosophy-content {
  background-color: var(--color-main);
  box-shadow: 50px 20px 0 #f2f2f2;
  color: #fff;
  margin: 0 50px 0 calc(50% - 50vw);
  padding: 50px 50px 50px calc(50vw - 50% + 50px);
}

.company-philosophy-text {
  font-size: 22px;
  margin-bottom: 1em;
}

.company-philosophy-content .company-philosophy-text:last-child {
  margin-bottom: 0;
}

.company-profile-table {
  border-collapse: separate;
  border-spacing: 3px;
  margin: 0 auto;
  max-width: 100%;
  width: 730px;
}

.company-profile-table th,
.company-profile-table td {
  vertical-align: middle;
}

.company-profile-table th {
  background-color: #fff;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  width: 30%;
}

.company-profile-table td {
  padding: 20px 20px 20px 60px;
  width: 70%;
}

.company-profile-shop {
  margin-bottom: 1em;
  margin-left: 1em;
  text-indent: -1em;
}

.company-profile-table td .company-profile-shop:last-child {
  margin-bottom: 0;
}

.company-history-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company-history-column {
  width: 48%;
}

.company-history-list {
  padding-left: 30px;
  position: relative;
}

.company-history-list::before {
  content: "";
  border-left: 1px solid #666;
  display: block;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 9px;
  width: 1px;
}

.company-history-list-year {
  display: block;
  margin-left: -1.75em;
}

.company-history-list-year::before {
  content: "●";
  margin-right: 1em;
}

.company-history-list-event {
  display: block;
  margin-bottom: 1em;
  margin-left: 2.25em;
}


/*----------------------------------------------
    自動車保険  .insurance
----------------------------------------------*/

.insurance-merit-container {
  display: flex;
  column-gap: 3em;
  justify-content: space-between;
}

.insurance-merit-content {
  flex: 1;
}

.insurance-merit-text {
  font-size: 18px;
  margin-bottom: 1em;
}

.insurance-merit-list {
  margin-top: 3em;
}

.insurance-merit-list-term {
  font-weight: 700;
  margin-bottom: .5em;
}

.insurance-merit-list-term .marker {
  background: linear-gradient(transparent 50%, #FFBEBE 50%);
  padding: 0 1em;
}

.insurance-merit-list-desc {
  margin-bottom: 1.5em;
  padding: 0 1em;
}

.insurance-merit-figure {
  width: 404px;
}

.insurance-handle-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3em;
}

.insurance-handle-container {
  display: flex;
  column-gap: 5em;
  justify-content: center;
}

.insurance-handle-box a {
  transition: var(--transition-base);
}

.insurance-handle-box a:hover {
  opacity: .8;
}

.insurance-faq-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3em;
}


/*----------------------------------------------
    お問い合わせ  .contact
----------------------------------------------*/

.contact-section-title {
  color: var(--color-main);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}

.contact-section-text {
  font-size: 18px;
  margin-bottom: 1em;
}

.contact-call-container {
  display: flex;
  column-gap: 3px;
  justify-content: center;
  margin-top: 3em;
  position: relative;
}

.contact-call-box {
  background-color: #fbf1f1;
  padding: 40px 20px;
  text-align: center;
  width: calc(50% - 1.5px);
}

.contact-call-box-name {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-call-box-tel {
  color: var(--color-main);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-call-box-note {
  margin-top: .25em;
}

.contact-call-image {
  position: absolute;
  bottom: -50px;
  right: -155px;
}

#contact-form .c-section-inner {
  padding-top: 0;
}

.form-wrapper {
  background-color: #fbf1f1;
  margin-top: 3em;
  padding: 60px 50px;
}

.form-list dt {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: .75em;
}

.form-list dd {
  margin-bottom: 2.5em;
}

.form-list label {
  color: #333;
}

.icon-required {
  background-color: var(--color-main);
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 1.5em;
  padding: 2px 8px;
  vertical-align: 1px;
}

.form-list .wpcf7-list-item {
  display: block;
  margin-left: 0;
}

.form-privacy {
  background-color: #fff;
  color: #333;
  height: 250px;
  margin-top: 1.5em;
  overflow-y: scroll;
  padding: 50px;
}

.form-privacy-title {
  font-weight: 700;
  margin: 2.5em 0 1.25em;
}

.form-privacy-text {
  font-size: 14px;
  margin-bottom: 1em;
}

.form-privacy-list {
  list-style: disc;
  margin-left: 1em;
}

.form-btnarea {
  margin-top: 50px;
  text-align: center;
}

.form-text {
  margin-bottom: 1.5em;
}

.form-submit {
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  border-radius: 100vh;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4%;
  max-width: 100%;
  padding: 1em 2em;
  transition: var(--transition-base);
  width: 300px;
}

.form-submit:hover {
  background-color: #fff;
  color: var(--color-main);
}

.form-submit:disabled {
  border-color: #ccc;
  background-color: #ccc;
}

.form-submit:disabled:hover {
  background-color: #ccc;
  color: #fff;
}

.wpcf7 .ajax-loader {
  display: block;
  margin: 1em auto 0;
}


/*----------------------------------------------
    送信完了  .thanks
----------------------------------------------*/

#thanks-finished {
  padding-top: 100px;
}


/*----------------------------------------------
    新着情報(一覧)  .archive
----------------------------------------------*/

.archive-title {
  color: var(--color-main);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 1.5em;
}

.archive-post {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
  padding: 50px 0;
}

.archive-container .archive-post:first-child {
  padding-top: 0;
}

.archive-post-thumbnail {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  text-align: center;
  width: 240px;
}

.archive-post-thumbnail img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
  width: 100%;
}

.archive-post-thumbnail a:hover img {
  transform: scale(1.1);
}

.archive-post-info {
  flex: 1;
}

.archive-post-meta {
  display: flex;
  align-items: center;
  column-gap: 1em;
  flex-wrap: wrap;
  row-gap: .5em;
  margin-bottom: 1em;
}

.archive-post-date {
  color: var(--color-main);
  font-weight: 700;
}

.archive-post-category {
  background-color: var(--color-main);
  border-radius: 100vh;
  color: #fff;
  font-weight: 700;
  min-width: 120px;
  padding: 0 1em;
  text-align: center;
  transition: var(--transition-base);
}

.archive-post-category:hover {
  background-color: #FF0000;
}

.archive-post-title {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}

.archive-post-title a {
  transition: var(--transition-base);
}

.archive-post-title a:hover {
  color: var(--color-main);
}

.archive-post-excerpt {
  line-height: 1.5;
}

.archive-pager {
  margin-top: 60px;
}

.wp-pagenavi {
  display: flex;
  column-gap: .5em;
  justify-content: center;
}

.wp-pagenavi .current,
.wp-pagenavi a {
  border: 1px solid var(--color-main);
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  width: 36px;
}

.wp-pagenavi .current {
  background-color: var(--color-main);
  color: #fff;
}

.wp-pagenavi a {
  color: var(--color-main);
  transition: var(--transition-base);
}

.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}


/*----------------------------------------------
    新着情報(詳細)  .single
----------------------------------------------*/

.post-header {
  margin-bottom: 40px;
}

.post-meta {
  display: flex;
  align-items: center;
  column-gap: 1em;
  flex-wrap: wrap;
  row-gap: .5em;
  margin-bottom: 1em;
}

.post-date {
  color: var(--color-main);
  font-weight: 700;
}

.post-category {
  background-color: var(--color-main);
  border-radius: 100vh;
  color: #fff;
  font-weight: 700;
  min-width: 120px;
  padding: 0 1em;
  text-align: center;
  transition: var(--transition-base);
}

.post-category:hover {
  background-color: #FF0000;
}

.post-tag a {
  transition: var(--transition-base);
}

.post-tag a:hover {
  color: var(--color-main);
}

.post-title {
  border-bottom: 2px solid #333;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: .5em;
  position: relative;
}

.post-title::after {
  content: "";
  border-bottom: 2px solid var(--color-main);
  display: block;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
}

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

.post-content h2 {
  color: var(--color-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 2em 0 1em;
}

.post-content h3 {
  border-left: 6px solid var(--color-main);
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 2em 0 1em;
  padding-left: 10px;
}

.post-content h4 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 2em 0 1em;
}

.post-content p {
  margin-bottom: 1.25em;
}

.post-content a {
  color: var(--color-main);
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content ul {
  list-style: disc;
  margin: 1.5em 0 1.5em 1em;
}

.post-content ul li {
  margin-bottom: .25em;
}

.post-content ol {
  list-style: decimal;
  margin: 1.5em 0 1.5em 1em;
}

.post-content ol li {
  margin-bottom: .25em;
}

.post-content figure {
  margin: 1.5em 0;
}

.post-content figcaption {
  font-size: 14px;
  margin-top: .5em;
  text-align: center;
}

.post-content table {
  margin: 2em 0;
  width: 100%;
}

.post-content .wp-block-table thead {
  border-bottom: 1px solid #b3b3b3;
}

.post-content table th,
.post-content table td {
  border: 1px solid #b3b3b3;
  line-height: 1.5;
  padding: 12px 16px;
  vertical-align: top;
}

.post-content table th {
  background-color: #fbf1f1;
  font-weight: 700;
}

.post-content blockquote {
  background: url(images/post/icon_double-quotation.svg) no-repeat top 20px left 20px, #f2f2f2;
  margin: 2em 0;
  padding: 80px;
}

.post-content blockquote site {
  margin-top: 1.5em;
}

