@charset "UTF-8";

/* 全体的な設定 */
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    height: 100%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    visibility: hidden;
  }
  html.wf-active {
    visibility: visible;
  }
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
/* 見出し・テキスト */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
    p {
      line-height: 2;
    }
    .font-thick {
      font-family: noto-sans-cjk-jp, sans-serif;
      font-style: normal;
      font-weight: 900;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
@media screen and (max-width: 767px) {
  html {
    font-size: 50%; /* 16px * 50% = 8px */
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
}
header .logo-area {
  display: flex;
  flex-shrink: 0;
}
.p-header__title {
  background-color: #0068B7;
  position: relative;
}
.p-header__t-link {
  display: block;
  width: 160px;
  box-sizing: border-box; 
  padding: 30px;
}
/* スクロールによるヘッダーロゴの高さ調整アニメーション */
.l-header,
.logo-area,
.p-header__t-link {
  transition: all 0.4s ease-in-out;
}
.l-header.is-scrolled .p-header__t-link {
  padding-top: 2px;
  padding-bottom: 2px;
  width: 160px;
}
.p-hamburger {
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #3264AC;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
header .menu-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #fff;
  padding: 10px 50px 20px 20px;
}
.p-header__box {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: flex-end;
  justify-content: end;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
  background-color: #fff;
}
.p-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: inherit;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 74px;
}
.p-header__box.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: rgb(255, 255, 255, .8);
}
.p-header__logo2-area {
  max-width: 270px;
}
.p-header__logo2-area.sp-only {
  display: none;
}
.p-nav__inner {
  display: flex;
}
.p-nav__list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 40px;
}
.p-nav__item {
  position: relative;
  width: auto;
}
.p-nav__link {
  color: #000;
  display: block;
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 1400px) {
  .p-header__t-link {
    max-width: 129px;
    padding: 20px;
  }
  .l-header.is-scrolled .p-header__t-link {
    width: 129px;
  }
  .p-header__logo2-area {
    max-width: 230px;
  }
  .p-nav__list {
    column-gap: 30px;
  }
  .p-nav__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .p-header__t-link {
    max-width: 124px;
  }
  .l-header.is-scrolled .p-header__t-link {
    width: 124px;
  }
  header .menu-wrapper {
    padding: 10px 20px 15px 10px;
  }
  .p-nav__list {
    column-gap: 15px;
  }
  .p-nav__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {  
  .p-header__t-link {
    max-width: 117px;
  }
  .l-header.is-scrolled .p-header__t-link {
    width: 117px;
  }
  .p-header__logo2-area {
    max-width: 200px;
  }
}
@media screen and (max-width: 960px) {
  header .logo-area {
    z-index: 100;
  }
  .p-header__logo2-area img {
    z-index: 100;
    position: relative;
  }
  .p-header__t-link {
    max-width: 111px;
  }
  .l-header.is-scrolled .p-header__t-link {
    width: 111px;
  }
  .p-header__logo2-area {
    max-width: 180px
  }
  .p-hamburger {
    display: block;
  }
  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p-header__box {
    position: absolute;
    opacity: 0; 
    height: 100vh;
    width: 100%;
    right: -100%;
    align-items: center;
  }
  .p-nav__list {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    background-color: #3264AC;
    border-radius: 24px;
    width: 80%;
    margin: 0 auto;
  }
  .p-nav__link {
    font-size: 18px;
    color: #fff;
    position: relative;
    padding-left: 32px;
  }
  .p-nav__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
}
}
@media screen and (max-width: 500px) {
  .p-nav__list {
    padding: 40px 30px;
    width: 90%;
  }
  .p-header__t-link {
    max-width: 88px;
    padding: 10px;
    font-size: 16px;
  }
  .l-header.is-scrolled .p-header__t-link {
    width: 88px;
  }
  .p-header__logo2-area {
    max-width: 170px
  }
  .p-hamburger {
    height: 71px;
  }
}
@media screen and (max-width: 390px) {
  .p-nav__link {
    font-size: 15px;
    padding-left: 24px;
  }
  .p-nav__link::before {
    width: 14px;
    height: 14px;
  }
}


/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-bottom: 20px;
  overflow: hidden;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding: 40px 0 70px;

}
footer .logo-area {
  max-width: 360px;
  margin-bottom: 40px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 10%;
}
.footer-nav01,.footer-nav02 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer-nav01 li,.footer-nav02 li {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
  padding-left: 25px;
}
.footer-nav01 li::before,.footer-nav02 li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #3264AC;
  border-radius: 15px;
}
footer .sub-menu-area {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-top: 10px;
}
footer .sub-menu {
  padding-left: 25px;
  position: relative;
  font-size: 1.6rem;
}
footer .sub-menu::before {
  content: 'ー';
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
}
footer small {
  font-size: 14px;
}
footer small br {
  display: none;
}
@media screen and (max-width: 1250px) {
  .footer-nav {
    column-gap: 10px;
    grid-template-columns: 55% auto;
  }
  .footer-nav01 li, .footer-nav02 li {
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) {
  .footer-inner {
    column-gap: 10px;
  }
  footer .logo-area {
      max-width: 300px;
  }
  .footer-nav01 li, .footer-nav02 li {
    font-size: 14px;
    padding-left: 20px;
    letter-spacing: 1px;
  }
  footer .sub-menu {
    font-size: 14px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 30px;
    padding: 40px 0;
  }
  footer .map-area iframe {
    height: 330px;
  }
  footer .logo-area {
      margin: 0 auto 20px;
  }
  .footer-nav {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .footer-nav01, .footer-nav02 {
    row-gap: 12px;
  }
  footer small {
    font-size: 11px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  footer .logo-area {
    max-width: 250px;
  }
}
@media screen and (max-width: 430px) {
  footer small br {
    display: block;
  }
}
@media screen and (max-width: 390px) {
  footer .logo-area {
    max-width: 220px;
  }
  footer .map-area iframe {
    height: 300px;
  }
  .footer-nav01 li,.footer-nav02 li {
    font-size: 12px;
    letter-spacing: .7px;
    padding-left: 20px;
  }
  .footer-nav01 li::before, .footer-nav02 li::before {
    width: 12px;
    height: 12px;
  }
  footer .sub-menu-area {
    row-gap: 6px;
  }
  footer .sub-menu {
    font-size: 12px;
  }
}



/*---------------------*/
/* 全体共通 レイアウト */
.mv,.page-top {
  padding-top: 103px; 
}
.page-top {
  position: relative;
  height: 700px;
  background-color: aqua;
}
.section {
  padding: 60px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
.mv,.page-top {
  padding-top: 92px; 
}
}
@media screen and (max-width: 1250px) {
  .mv,.page-top {
    padding-top: 87px;
  }
  .section-inner {
    padding: 0 30px;
  }
  .section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .mv,.page-top {
    padding-top: 79px;
  }
}
@media screen and (max-width: 960px) {
  .mv,.page-top {
    padding-top: 74px;
  }
  .section {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .section-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .mv,.page-top {
    padding-top: 71px;
  }
}

/* 全体共通 タイトル */
.title-area {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 30px;
}
.title-area2 {
  row-gap: 0px;
}
.title-area2 .t-small {
  position: relative;
  padding-left: 40px;
}
.title-area2 .t-small::before {
  content: ''; 
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.t-small {
  font-size: 1.6rem;
  font-weight: bold;
}
.t-big {
  line-height: 1.6;
  font-size: 4.0rem;
  font-weight: bold;
  color: #3264AC;
}
@media screen and (max-width: 600px) {
  .title-area {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 450px) {
  .t-big {
    font-size: 3.6rem;
  }
}

/* 全体共通 ボタン */
.btn-area {
  text-align: center;
}
.btn-area a {
  background-color: #3264AC;
  border-radius: 50px;
  color: #fff;
  padding: 15px 20px;
  display: inline-flex;
  justify-content: center;
  transition: transform 0.3s ease-out; 
}
.btn-area a:hover {
  transform: translateY(-3px); 
}

/* domestic 国産新車全メーカー */
#domestic {
  background-color: #3264AC;
}
#domestic .title-area {
  text-align: center;
  margin-bottom: 40px;
}
#domestic .title-area .t-big {
  text-align: center;
  color: #fff;
}
#domestic .content {
  background-color: #fff;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 47% 47%;
  column-gap: 6%;
  padding: 50px 80px;
}
#domestic h2 br {
    display: none;
}
@media screen and (max-width: 960px) {
  #domestic {
    padding: 30px 0;
  }
  #domestic .title-area {
    margin-bottom: 20px;
  }
  #domestic h2 {
    font-size: 34px;
  }
  #domestic .content {
    padding: 30px;
    justify-content: center;
    column-gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  #domestic h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  #domestic h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  #domestic h2 br {
    display: block;
  }
    #domestic .content {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    padding: 15px 50px;
  }
}
@media screen and (max-width: 390px) {
    #domestic h2 {
      font-size: 20px;
  }
}


/* after-s アフターサービス */
#after-s {
  position: relative;
  z-index: 2;
}
#after-s::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #3264AC;
  width: 45vw;
  height: 270px;
  top: 180px;
  left: 0;
}
#after-s .title-area {
  margin-bottom: 70px;
}
#after-s h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #fff;
}
#after-s ul {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
#after-s li {
  overflow: hidden;
  border: 2px solid #fff;
}
#after-s li a img {
  transition: transform 0.4s ease-out; 
  transform: scale(1.0);
}
#after-s li a:hover img {
  transform: scale(1.05); 
}
@media screen and (max-width: 960px) {
  #after-s::before {
    width: 60vw;
    top: 150px
  }
}
@media screen and (max-width: 600px) {
  #after-s .title-area {
    margin-bottom: 50px;
  }
    #after-s::before {
    width: 90vw;
    top: 130px
  }
  #after-s ul {
    grid-template-columns: repeat(2, 2fr);
    width: 80%;
    margin: 0 auto;
    gap: 10px;
}
}
@media screen and (max-width: 500px) {
    #after-s ul {
        width: 100%;
    }
  }
@media screen and (max-width: 390px) {
  #after-s h3 {
    font-size: 16px;
  }
}

/* com-contact フッター前のお問い合わせ */
#com-contact {
  background-color: #3264AC;
}
#com-contact .t-big,#com-contact .t-small {
  color: #fff;
}
#com-contact .title-area2 .t-small::before {
  background-color: #fff;
}
#com-contact ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 5%;
}
#com-contact ul li {
  background-color: #fff;
  border-radius: 20px;
}
#com-contact .icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 140px;
}
#com-contact .icon-area img {
  height: 100%;
  width: auto;
}
#com-contact .text-area {
  text-align: center;
  padding: 0 20px 20px;
}
#com-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.com-contact .tel-number {
  font-size: 1.6rem;
  letter-spacing: .4px;
  line-height: 1;
  margin-bottom: 10px;
  color: #3264AC;
}
.com-contact .tel-number span {
  font-size: 3.6rem;
}
.com-contact .info p {
  font-size: 1.4rem;
  letter-spacing: .5px;
}
.com-contact .btn-area {
  margin-top: 40px;
}
.com-contact .btn-area a {
  width: 250px;
  padding: 18px;
}
.com-contact .line-btn a {
  background-color: #4CC764;
}
.com-contact .info p br {
  display: none;
}
@media screen and (max-width: 1250px) {
  #com-contact ul {
    column-gap: 2%;
  }
  #com-contact .icon-area {
    height: 130px;
  }
  .com-contact .tel-number {
    font-size: 1.3rem;
  }
  .com-contact .tel-number span {
      font-size: 3.0rem;
  }
  .com-contact .info p br {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  #com-contact .icon-area {
    padding: 10px;
    height: 100px;
  }
  #com-contact .text-area {
    padding: 0 10px 20px;
  }
  #com-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .com-contact .tel-number span {
    font-size: 2.4rem;
  }
  .com-contact .btn-area a {
    width: 95%;
    padding: 15px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .com-contact .btn-area a {
      padding: 10px;
  }
}
@media screen and (max-width: 650px) {
  #com-contact ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  #com-contact ul li {
    width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  #com-contact .icon-area {
      padding: 10px 10px 5px;
      height: 80px;
  }
  .com-contact .info p {
    line-height: 1.5;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s, transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s, transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s, transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.fadeIn.is-fade-in{
  opacity: 1;
  transform: scale(1);
}

/* リンクテキストアンダーライン */
.t-li {
  background-image: linear-gradient(#3264AC, #3264AC);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: bottom left;
  background-size: 100% 3px;
}
/* リンクテキストの色変更 */
.t-li2 {
  transition: color 0.3s ease; 
}
.t-li2:hover {
  color: #3264AC;
}
