@charset "UTF-8";

body {
  font-family: "Noto Sans JP",sans-serif;
  position: relative;
  margin: 0;
}
* {
  line-height: 1;
}
/* reCAPTCHAバッジ を非表示に */
.grecaptcha-badge { visibility: hidden; }

/* -------------------

  header

------------------- */
.header {
  width: 100%;
  height: 22.133vw;
  position: fixed;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 3.733vw 2.667vw 3.733vw 3.733vw;
  z-index: 100;
}
.header__logo {
  width: 39.2vw;
  height: 9.067vw;
  position: relative;
  z-index: 100;
}
.header__logo > a {
  display: block;
  width: 39.2vw;
  height: 9.067vw;
}
.header__logo > a > img {
  width: 100%;
  height: auto;
  display: block;
}

/* メニューボタン */
.menu-btn {
  width: 16vw;
  height: 14.933vw;
  border-radius: 8vw;
  background: #EA5514;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .2s ease;
  margin-right: 0;
  margin-left: auto;
  z-index: 100;
}
.menu-btn:hover { background: #f06027; }
.menu-btn:active { background: #cc4a12; }

/* 3本線（白い水平線） */
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 8.533vw;
  height: 0.533vw;          /* 太さ 2px */
  background: #fff;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease;
  /* 配置（56px内でバランス優先） */
}
.menu-btn span:nth-child(1) { top: 4.8vw; }
.menu-btn span:nth-child(2) { top: 7.467vw; }
.menu-btn span:nth-child(3) { top: 10.133vw; }

/* 開状態：真ん中は消える、上下で✗を作る */
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(.6);
}
.menu-btn.is-open span:nth-child(1) {
  transform: translateX(-50%) translateY(10px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(3) {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
}

/* SP用のメニュー */
.pc-menu,
.pc-header-tel,
.pc-header-contact {
  display: none;
}
.sp-menu {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(18,50,128,0.95);
  padding: 30.133vw 0 0;
  visibility: hidden;
  /* 初期状態：非表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* フェード用トランジション */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sp-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-menu__list {
  margin-left: 6.4vw;
  margin-right: 6.4vw;
  border-bottom: 1px solid #05163E;
}
.sp-menu__list li {
  display: inline;
}
.sp-menu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #05163E;
  padding: 4.267vw 3.2vw 4.267vw 3.2vw;
  color: #fff;
}
.sp-menu__list li a::after {
  content: "";
  display: block;
  width: 1.067vw;
  height: 1.067vw;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}
.total-menu {
  margin-top: 16.533vw;
  width: 100%;
  aspect-ratio: 750/156;
  background: url(../img/total_menu.png) 0 0 no-repeat;
  background-size: contain;
}

/* -------------------

  footer

------------------- */
.footer {
  width: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
}
.footer__tabs {
  display: grid;
  width: 100%;
  padding: 0 1.333vw;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.067vw;
}
.footer__tabs__tab {
  background-color: #EA5514;
  color: #fff;
  border-radius: 2.667vw 2.667vw 0 0;
  display: flex;
  align-items: center;
  padding: 3.2vw;
  height: 13.333vw;
}
.footer__tabs__tab--mail {
  padding: 3.2vw 2.667vw;
}
.footer__tabs__icn {
  display: block;
}
.footer__tabs__tab--line .footer__tabs__icn {
  width: 7.467vw;
  height: 6.933vw;
  background: url(../img/icn-line.png) center center no-repeat;
  background-size: 7.467vw 6.933vw;
  margin-right: 2.133vw;
}
.footer__tabs__tab--ig .footer__tabs__icn {
  width: 5.867vw;
  height: 5.867vw;
  background: url(../img/icn-ig.png) center center no-repeat;
  background-size: 5.867vw 5.867vw;
  margin-right: 1.867vw;
}
.footer__tabs__tab--mail .footer__tabs__icn {
  width: 5.067vw;
  height: 3.2vw;
  background: url(../img/icn-mail.png) center center no-repeat;
  background-size: 5.067vw 3.2vw;
  margin-right: 1.867vw;
}
.footer__tabs__txt {
  display: flex;
  flex-direction: column;
}
.footer__tabs__txt__small {
  font-size: 2.4vw;
  font-weight: 400;
  line-height: 1.355;
}
.footer__tabs__txt__large {
  font-size: 3.733vw;
  font-weight: 700;
  line-height: 1.328;
}
.footer__tabs__tab--mail .footer__tabs__txt__small,
.footer__tabs__tab--mail .footer__tabs__txt__large {
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.23;
}
.footer__bottom {
  width: 100%;
  height: 13.333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #123280;
  color: #fff;
}
.footer__tel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__tel:before {
  content: "";
  display: block;
  width: 4.533vw;
  height: 6.133vw;
  background: url(../img/icn-tel.png) 0 0 no-repeat;
  background-size: contain;
  margin-right: 2.667vw;
}
.footer__tel > a {
  color: #fff;
  font-size: 4.8vw;
  font-weight: 700;
  margin-right: 2.667vw;
}
.footer__hours {
  color: #B2B9C9;
  font-size: 2.933vw;
}
.pagetop {
  width: 20vw;
  height: 20vw;
  position: fixed;
  bottom: calc(33.867vw + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;

  /* 初期は画面外へ＆クリック不可 */
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  visibility: hidden;

  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility 0s linear .28s; /* 消えるときに最後に不可視化 */
  will-change: opacity, transform;
}
.pagetop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility 0s; /* すぐ可視化 */
}

/* 動きを好まない設定の利用者へ配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .pagetop {
    transition: none;
    transform: none;
  }
}

.pagetop > a {
  display: block;
}
.pagetop > a img {
  width: 100%;
  height: auto;
}


/* -------------------

  Our Services

------------------- */
.section-01 {
  background: #fff;
  padding: 4.8vw 4vw 12vw;
}
.bnr-campaign_01 {
  margin: 0 2.667vw 5.6vw 0;
  display: block;
}
.bnr-campaign_01 img {
  width: 100%;
  height: auto;
  display: block;
}
.heading-service {
  width: calc(100% + 8vw);
  aspect-ratio: 748/96;
  margin-left: -4vw;
  margin-right: -4vw;
  margin-bottom: 7.2vw;
  text-indent: -2666.4vw;
  background: url(/img/heading-services_sp.png) 0 0 no-repeat;
  background-size: contain;
}
.service-nav {
  display: flex;
  justify-content: space-between;
  gap: 3.2vw;
}
.service-nav__nav {
  flex: 1;
  background-color: #123280;
  color: #fff;
  border: 4px solid #000;
  border-radius: 2.667vw;
  filter: drop-shadow(0 4px 0 #000); /* offset-y=8px, blur=0 */
  padding: 3.2vw 0 2.133vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-nav__icn {
  width: 9.333vw;
  height: 9.333vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
}
.service-nav__name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vw;
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1;
  width: 3em;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: center;
  margin-top: 1.067vw;
}
.service-nav__nav-maintenance .service-nav__name {
  letter-spacing: 0;
  text-align: left;
  text-indent: 0;
}
.service-nav__en {
  font-size: 1.867vw;
  text-align: center;
  margin-top: 2.4vw;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.service-nav__click {
  font-size: 2.4vw;
  font-weight: 700;
  text-align: center;
  margin-top: 2.133vw;
  font-family: "Poppins", sans-serif;
  color: #4D6CB9;
}
/* -------------------

  車検

------------------- */
.stripe-bg {
  background-color: #123280;
  background-image: repeating-linear-gradient(
    45deg,              /* ストライプの角度（↘方向に45°） */
    #123280 0px,         /* ベース色 */
    #123280 60px,        /* ストライプの幅1 */
    #1a3b8d 60px,        /* 明るいストライプ開始 */
    #1a3b8d 120px        /* ストライプの幅2 */
  );
}
.header-02 {
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  padding: 4.267vw 9.067vw;
  position: relative;
  color: #fff;
}
.header-02__heading {
  font-size: 9.6vw;
  letter-spacing: 0.2em;
  padding-top: 3.2vw;
}
.header-02__heading-en {
  margin-top: 3.2vw;
  font-size: 2.4vw;
  font-family: 'Poppins',serif;
}
.header-02__txt {
  font-size: 3.733vw;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 1em;
}
.header-02__price {
  position: absolute;
  width: 44.267vw;
  height: 18.133vw;
  right: 9.867vw;
  top: 5.6vw;
}
.header-02__price img {
  width: 100%;
  height: auto;
}
.section-02 {
  background: #E4E4DD;
}
.section-02__body {
  padding: 10.667vw 8.533vw 14.933vw;
}
.section-02__heading-02 {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1.2917;
  letter-spacing: 0.03em;
}
.section-02__text-01 {
  margin-top: 1em;
  font-size: 3.733vw;
  line-height: 1.857;
}
.about-discount {
  margin-top: 8.533vw;
  border: 4px solid #000;
  border-radius: 4.267vw;
  overflow: hidden;
}
.about-discount__header {
  background-color: #0E2A76;
  color: #fff;
  padding: 6.4vw 5.333vw 4.267vw;
}
.about-discount__heading-01 {
  font-size: 7.467vw;
  font-weight: 700;
  text-align: center;
}
.about-discount__text-01 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about-discount__text-01__from {
  font-size: 4.267vw;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.875;
  width: 100%;
  margin-top: 4.267vw;
}
.about-discount__text-01__max {
  font-size: 5.867vw;
  font-weight: 700;
  position: relative;
  top: 8.533vw;
}
.about-discount__text-01__price {
  text-indent: -2666.4vw;
  width: 57.067vw;
  height: 19.2vw;
  background: url(../img/price-002_sp.png) 0 0 no-repeat;
  background-size: contain;
  margin-left: 1.067vw;
}
.discount-type {
}
.discount-type__box {
  border-top: 4px solid #000;
  padding: 4.267vw 2.133vw 2.133vw 4.267vw;
}
.discount-type__box:nth-child(odd){
  background-color: #fff;
}
.discount-type__box:first-child {
  border-top: 0;
}
.discount-type__title {
  display: flex;
  align-items: center;
}
.discount-type__title .number {
  color: #EA5514;
  font-weight: 800;
  font-size: 6.4vw;
  font-family: "Poppins",serif;
  width: 10.667vw;
}
.discount-type__title .text {
  font-size: 7.467vw;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0E2A76;
}
.discount-type__text {
  font-size: 4.267vw;
  margin-top: 4.267vw;
}
.discount-type__price-03 {
  width: 39.467vw;
  height: 12.8vw;
  display: block;
  background: url(../img/price-005_sp.png) 0 0 no-repeat;
  background-size: contain;
  text-indent: -2666.4vw;
  margin-right: 1.067vw;
  margin-left: auto;
}
.discount-type__before {
  margin-top: 4.267vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discount-type__before + .discount-type__before {
  margin-top: 0;
}
.discount-type__when {
  width: 26.667vw;
  height: 7.467vw;
  background-color: #000;
  border-radius: 8vw;
  color: #fff;
  text-align: center;
  line-height: 7.467vw;
  font-size: 4.267vw;
  font-weight: 700;
}
.discount-type__price-01 {
  display: block;
  text-indent: -2666.4vw;
  width: 43.333vw;
  height: 12.8vw;
  background: url(../img/price-003_sp.png) 0 0 no-repeat;
  background-size: contain;
}
.discount-type__price-02 {
  display: block;
  text-indent: -2666.4vw;
  width: 42.667vw;
  height: 12.8vw;
  background: url(../img/price-004_sp.png) 0 0 no-repeat;
  background-size: contain;
}
.vechicle-type {
  margin-top: 8.533vw;
  border: 4px solid #000;
  border-radius: 2.4vw;
  padding: 12.8vw 0 5.333vw;
  background: linear-gradient(
    150deg,
    #036892 182px,
    #0083a6 182px
  );
  color: #fff;
}
.vechicle-type__name {
  font-size: 9.067vw;
  font-weight: 700;
  text-align: center;
}
.vechicle-type__name__sub {
  font-size: 4.267vw;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4.267vw;
}

.vechicle-type__engine {
  font-size: 4.267vw;
  font-weight: 400;
  text-align: center;
  margin-top: 5.333vw;
}
.vechicle-type__figure {
  margin: 46px auto 0;
}
.vechicle-type__figure img {
  width: 100%;
  height: auto;
}
.vechicle-type--light .vechicle-type__figure {
  width: 53.067vw;
  height: 27.2vw;
}
.vehicle-type__table {
  margin-top: 7.467vw;
  padding: 0 5.333vw;
}
.vehicle-type__table dl {
  border-top: 1px solid #096684;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.667vw 0;
}
.vehicle-type__table dl dt {
  width: 34.133vw;
  font-weight: 400;
  font-size: 4vw;
  line-height: 1.2;
}
.vehicle-type__table dl dd {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}
.vehicle-type__table dl.legal-fees {
  padding: 1.333vw 0;
}
.vehicle-type__table dl.legal-fees dt {
  display: flex;
  justify-content: space-between;
}
.vehicle-type__table dl.legal-fees dt > div {
  line-height: 2;
}
.vehicle-type__table dl.legal-fees dd {
  line-height: 2;
}
.vehicle-type__table dl.total-price {
  padding: 3.2vw 0;
  align-items: flex-end;
}
.vehicle-type__table dl.total-price dt {
}
.vehicle-type__table dl.total-price dd {
  font-size: 6.667vw;
  font-weight: 700;
}
.vehicle-type__table dl.max-discount {
  padding: 4.267vw 0;
  align-items: flex-end;
  color: #FFF600;
}
.vehicle-type__table dl.max-discount dd {
  font-size: 6.667vw;
  font-weight: 700;
}
.vechicle-type--small {
  background: linear-gradient(
    150deg,
    #00268C 182px,
    #10379F 182px
  );
}
.vechicle-type--small .vechicle-type__figure {
  width: 70.933vw;
  height: 27.067vw;
  margin-top: 9.6vw;
}
.vechicle-type--small .vehicle-type__table dl {
  border-top-color: #5677D0;
}
.vechicle-type--middle {
  background: linear-gradient(
    150deg,
    #4B008C 182px,
    #4E109F 182px
  );
}
.vechicle-type--middle .vechicle-type__figure {
  width: 76.533vw;
  height: 24vw;
}
.vechicle-type--middle .vehicle-type__table dl {
  border-top-color: #2A0954;
}
.vechicle-type--large {
  background: linear-gradient(
    150deg,
    #222 182px,
    #333 182px
  );
}
.vechicle-type--large .vechicle-type__figure {
  width: 74.667vw;
  height: 31.2vw;
  margin-top: 6.4vw;
}
.vechicle-type--large .vehicle-type__table dl {
  border-top-color: #141414;
}
.vechicle-type--suv {
  background: linear-gradient(
    150deg,
    #222 182px,
    #333 182px
  );
  padding-top: 5.333vw;
}
.vechicle-type--suv .vechicle-type__figure {
  width: 77.333vw;
  height: auto;
  margin-top: 9.6vw;
}
.vechicle-type--suv .vehicle-type__table dl {
  border-top-color: #141414;
}
.vechicle-type--van {
  background: linear-gradient(
    150deg,
    #004317 182px,
    #005327 182px
  );
}
.vechicle-type--van .vechicle-type__figure {
  width: 72.533vw;
  height: auto;
  margin-top: 8.533vw;
}
.vechicle-type--van .vehicle-type__table dl {
  border-top-color: #031D0C;
}
.vechicle-type__note {
  text-align: right;
  font-size: 4.267vw;
  margin-top: 2em;
}

/* -------------------

  カーメンテナンス

------------------- */
#maintenance .header-02__heading {
  letter-spacing: 0;
}
.maintenance-box {
  margin-top: 12.8vw;
  padding: 0 0 10.667vw;
  border-bottom: 2px solid #000;
}
.maintenance-box__header {
  display: flex;
  justify-content: space-between;
}
.maintenance-box__heading-01 {
  font-size: 8.533vw;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.maintenance-box__heading-01::after {
  content: "";
  display: block;
  width: 19.467vw;
  height: 2.133vw;
  background-color: #EA5514;
  margin-top: 4vw;
  margin-left: 1.067vw;
}
.maintenance-box__lead {
  margin-top: 5.333vw;
  font-size: 4.267vw;
  font-weight: 500;
  line-height: 1.5;
  font-feature-settings: "palt";
}
.maintenance-box--engineoil .maintenance-box__heading-01 {
  width: 34.667vw;
  margin-right: 10.667vw;
}
.maintenance-box__pict__engineoil {
  width: 53.867vw;
  height: auto;
  flex: 1;
}
.engineoil-price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.733vw;
  margin-top: 12.8vw;
}
.price-table-01 {
  border: 2px solid #000;
  border-radius: 1.333vw;
  overflow: hidden;
  background: #fff;
  padding-bottom: 1.333vw;
}
.price-table-01__header {
  background-color: #000;
  color: #fff;
  height: 9.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-table-01__row {
  margin: 0 1.6vw;
  padding: 3.2vw 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
}
.price-table-01__row__head {
  font-size: 3.467vw;
  line-height: 1.2;
}
.price-table-01__row__price {
  text-align: right;
}
.price-table-01__row__price .price {
  color: #E60012;
  font-size: 4.267vw;
  font-weight: 700;
  font-family: "Poppins",san-serif;
}
.price-table-01__row__price .unit {
  font-size: 3.467vw;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}
.maintenance-box__note {
  margin-top: 2.667vw;
  font-size: 3.733vw;
  font-weight: 500;
  line-height: 1.5;
}
.tire-price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.733vw;
  margin-top: 8vw;
}
.price-table-02 {
  border: 2px solid #000;
  border-radius: 1.333vw;
  overflow: hidden;
  background: #fff;
}
.price-table-02__header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 2.133vw 2.667vw 2.667vw;
  line-height: 1.3;
  font-feature-settings: "palt";
}
.price-table-02__row {
  background: #fff;
  text-align: center;
  padding: 3.2vw 2.133vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-table-02__row .price {
  font-size: 4.267vw;
  font-weight: 700;
  color: #E60012;
  font-family: "Poppins",san-serif;
}
.price-table-02__row .unit {
  font-size: 3.467vw;
  font-weight: 400;
  margin-right: 0.2em;
}
.maintenance-box__pict__tire-01 {
  margin-top: 4.267vw;
}
.maintenance-box__pict__etc {
  width: 40.267vw;
  margin-top: -4.267vw;
}
.maintenance-box--etc .maintenance-box__heading-01::after {
  margin-top: 9.6vw;
}
.etc-price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.733vw;
}
.maintenance-box.maintenance-box--etc {
  border-bottom: 0;
  padding-bottom: 0;
}


/* -------------------

  鈑金・新車・中古車販売買取査定

------------------- */
#satei .header-02__heading {
  letter-spacing: 0;
  line-height: 1.35;
}
.box-01 {
  background: #fff;
  border: 5px solid #000;
  border-radius: 5.333vw;
  overflow: hidden;
}
.box-01__photos {
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.333vw;
  padding-bottom: 1.333vw;
}
.box-01__body {
  padding: 6.4vw 6.4vw 8vw;
}
.box-01__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.box-01__heading__text {
  line-height: 1.4285;
  font-size: 7.467vw;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.box-01__heading__text--dot {
  color: #FF4D00;
  display: inline-block;
  position: relative;
  padding-bottom: 1.067vw;
  background-image: linear-gradient(to right, #123280 50%, transparent 50%);
  background-size: 2.667vw 1.067vw;
  background-repeat: repeat-x;
  background-position: bottom left;
}
.box-01__text {
  margin-top: 6.4vw;
  font-size: 4.267vw;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.03em;
}

/* -------------------

  よくあるご質問

------------------- */
#faq .header-02__heading {
  letter-spacing: 0;
}
#faq .header-02 {
  padding-top: 9.6vw;
  padding-bottom: 12.8vw;
}
.faq {
  margin-top: 10.667vw;
}
.faq:first-child {
  margin-top: 0;
}
.faq__heading {
  text-align: center;
  font-size: 6.4vw;
  font-weight: 700;
  margin-bottom: 6.4vw;
}
.faq__box {
  margin-top: 2.133vw;
  box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
  border-radius: 2.133vw;
  overflow: hidden;
  background-color: #fff;
}
.faq__box__question {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4.8vw;
}
.faq__box__q,
.faq__box__a {
  font-size: 6.933vw;
  font-weight: 700;
  color: #EA5514;
  font-family: "Arial",serif;
  margin-right: 2.667vw;
}
.faq__box__btn {
  width: 5.333vw;
  height: 5.333vw;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 8vw;
  position: relative;
}
.faq__box__btn span {
  display: block;
  width: 2.667vw;
  height: 0.533vw;
  background-color: #123280;
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition-duration: .3s;
}
.faq__box__btn span:first-child {
}
.faq__box__btn span:last-child {
  transform: rotate(-90deg);
}
.is-open .faq__box__btn span:last-child {
  transform: rotate(0deg);
}
.faq__box__question__text {
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2;
  flex: 1;
}
.faq__box__answer {
  display: none;
}
.faq__box__answer__inner {
  display: flex;
  padding: 4.8vw;
}
.faq__box__answer__text {
  font-size: 4.267vw;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.faq__note {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 12.8vw;
}
.faq__note span {
  font-weight: 700;
  font-size: 4.267vw;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* -------------------

  会社概要

------------------- */
.company {
  background-color: #E4E4DD;
}
.company-message {
  width: 100%;
  aspect-ratio: 375/572;
  background: url(../img/company-bg_sp.jpg) 0 0 no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding-top: 17.067vw;
  position: relative;
  z-index: 1;
}
.company-message__message {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-message__message span {
  font-size: 12.8vw;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
.company-message__en {
  margin-top: 6.133vw;
  font-size: 3.733vw;
  text-shadow: 0 4px 4px rgba(0,0,0,0.1);
  font-weight: 400;
}
.greeting {
  position: relative;
  z-index: 2;
  margin: -32.8vw 8vw 0;
  border: 5px solid #000;
  background: #fff;
  overflow: hidden;
  border-radius: 4vw;
  display: flex;
  flex-direction: column-reverse;
}
.greeting__body {
  padding: 8.8vw 5.333vw 8vw;
}
.greeting__text {
  font-size: 4.267vw;
  line-height: 2;
  font-weight: 500;
}
.greeting--name {
  text-align: right;
  font-size: 4.267vw;
  line-height: 1.47;
  font-weight: 700;
  margin-top: 0.5em;
}
/* 会社概要 */
.company-outline {
  margin: 10.667vw 8vw 0;
  padding-bottom: 16vw;
}
.company-outline__heading {
  display: flex;
  align-items: center;
}
.company-outline__heading span {
  font-size: 5.333vw;
  font-weight: 700;
  margin-left: 2.933vw;
  color: #123280;
}
.company-outline__heading::before {
  content: "";
  display: block;
  width: 2.667vw;
  height: 2.667vw;
  border-radius: 50%;
  background-color: #E35D22;
}
.company-outline__heading::after {
  content: "COMPANY";
  display: block;
  font-size: 3.733vw;
  font-family: "Poppins",sans-serif;
  margin-left: 1em;
  color: #979797;
  font-weight: 400;
  padding-top: 0.2em;
}
.company-outline__table {
  margin-top: 3.733vw;
}
.company-outline__table__row {
  display: flex;
  border-bottom: 2px solid #323232;
  padding: 4.8vw 0;
  font-size: 4.8vw;
}
.company-outline__table__title {
  width: 27.733vw;
  line-height: 1.35;
}
.company-outline__table__data {
  flex: 1;
  line-height: 1.35;
}
/* map */
.gmap {
  width: 100%;
  height: auto;
  aspect-ratio: 375/463;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact-section {
  padding: 28.8vw 8vw 73.333vw;
  background: #3e3e3e;
  color: #fff;
  position: relative;
}
.contact-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 10.933vw;
  background: url(../img/contact-tire_sp.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-section__heading-01 {
  font-size: 10.133vw;
  font-weight: 700;
  text-align: center;
}
.contact-section__heading-01__en {
  margin-top: 4vw;
  text-align: center;
  font-size: 2.667vw;
  font-weight: 400;
  font-family: "Poppins",san-serif;
}
.contact-section__lead {
  text-align: center;
  font-size: 4.267vw;
  line-height: 1.5;
  margin-top: 12.533vw;
}
.tel-section {
  padding: 8.533vw 0 12.533vw;
  border-bottom: 1px solid #696969;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tel-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section__icn {
  width: 21.333vw;
  height: 21.333vw;
  border-radius: 50%;
  background-color: #2F2F2F;
}
.contact-section__icn--tel {
  background: #2F2F2F url(../img/icn-tel.png) center center no-repeat;
  background-size: 7.467vw 10.133vw;
}
.contact-section__icn--form {
  background: #2F2F2F url(../img/icn-mail.png) center center no-repeat;
  background-size: 10.4vw 6.4vw;
}
.contact-section__heading-02 {
  margin-top: 4vw;
  font-size: 5.333vw;
  font-weight: 500;
}
.tel-section__tel {
  display: block;
  margin-top: 4vw;
  font-size: 10.133vw;
  font-weight: 700;
}
.tel-section__hours {
  text-align: center;
  font-size: 3.733vw;
  font-weight: 500;
  margin-top: 4.267vw;
}
.form-section {
  padding: 8.533vw 0 19.2vw;
}
.form-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-section__body {
  margin-top: 11.2vw;
}
.form-container__row {
  margin-top: 4.267vw;
  display: flex;
  flex-direction: column;
}
.form-container__row label {
  font-size: 4.8vw;
  font-weight: 500;
  line-height: 1.2;
}
.form-container__row input,
.form-container__row select,
.form-container__row textarea {
  display: block;
  margin-top: 2.133vw;
  border-radius: 1.067vw;
  font-size: 4.267vw;
  color: #000;
  padding: 2.133vw;
}
.form-container__row textarea {
  line-height: 1.5;
  height: 67.467vw;
}


.form__bottom {
  margin-top: 12.267vw;
}
.form__bottom__note {
  font-weight: 500;
  font-size: 3.733vw;
  line-height: 1.44;
  letter-spacing: 0.03em;
}
.btn-submit {
  background-color: #EA5514;
  color: #fff;
  border: none;
  border-radius: 1.067vw;
  padding: 4.267vw 11.733vw;
  margin: 54px auto 0;
  width: 42.667vw;
  display: block;
}

button[disabled] { opacity:.6; cursor:not-allowed; }
.note { font-size:.9rem; color:#666; margin-top:2.667vw; }
.alert { display:none; margin-top:4.267vw; padding:4.8vw; border-radius: 1.067vw; line-height: 1.5; white-space: pre-line;}
.alert.success { background:#e8faf8; color:#11625d; }
.alert.error { background:#fdecea; color:#b21f19;}
.hidden { display:none; }

.copyright {
  text-align: center;
  font-size: 4.267vw;
}

.footer-copy {
  width: calc(100% + 16vw);
  aspect-ratio: 750/156;
  text-indent: -2666.4vw;
  background: url(../img/total_sp.png) 0 0 no-repeat;
  background-size: contain;
  margin-top: 6.933vw;
  margin-left: -8vw;
  margin-right: -8vw;
}

.br-sp {
  display: inline;
}
.br-pc {
  display: none;
}


@media screen and (min-width: 768px) {
  .header {
    top: 1.875vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 2.778vw);
    height: 6.944vw;
    background: #fff;
    border-radius: 1.042vw;
    justify-content: space-between;
    padding: 0 0 0 3.194vw;
    overflow: hidden;
    min-width: 76.389vw;
  }
  .header__logo {
    width: 14.583vw;
    height: 3.403vw;
  }
  .header__logo a {
    width: 14.583vw;
    height: 3.403vw;
  }
  .menu-btn {
    display: none;
  }
  .pc-menu {
    display: flex;
  }
  .pc-header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #123280;
    width: 14.167vw;
    height: 100%;
    color: #fff;
    padding: 0 1.458vw 0 1.528vw;
  }
  .pc-header-contact:hover {
    opacity: .9;
    transition-duration: .3s;
  }
  .pc-header-contact__icn {
    width: 2.708vw;
    height: 1.667vw;
    background: url(../img/icn-mail.png) 0 0 no-repeat;
    background-size: contain;
    margin-right: 0.833vw;
  }
  .pc-header-contact__body {
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.4;
  }
  .pc-header-tel {
    width: 15.903vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 1.736vw;
    margin-left: auto;
  }
  .pc-header-tel__icn {
    width: 2.083vw;
    height: 3.056vw;
    background: url(../img/icn-tel-orange.png) 0 0 no-repeat;
    background-size: contain;
  }
  .pc-header-tel__body {
    margin-left: 0.278vw;
  }
  .pc-header-tel__number {
    font-size: 1.944vw;
    font-weight: 700;
    color: #EA5514;
  }
  .pc-header-tel__hours {
    font-size: 0.764vw;
    margin-top: 0.5em;
    color: #535353;
  }
  .pc-menu {
    margin-right: 1.806vw;
    margin-left: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  .pc-menu li {
    display: inline;
  }
  .pc-menu li a {
    display: block;
    height: 100%;
    padding: 0.833vw;
    color: #000;
    font-size: 1.25vw;
    font-weight: 700;
    transition-duration: .3s;
  }
  .pc-menu li a:hover {
    color: #EA5514;
  }
  .hero__picture img {
    width: 100%;
    height: auto;
  }
  .section-01 {
    padding: 2.153vw 0 4.861vw;
  }
  .bnr-campaign_01 {
    max-width: 93.819vw;
    margin: 0 auto;
  }
  .heading-service {
    background-image: url(../img/heading-services_pc.png);
    /* margin: 0.694vw 2.708vw 0 1.597vw; */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    aspect-ratio: 1360/167;
    width: 94.444vw;
  }
  .service-nav {
    width: 76.389vw;
    margin: -16px auto 0;
    position: relative;
    z-index: 2;
    gap: 1.667vw;
  }
  .service-nav__nav {
    border-radius: 0.694vw;
    filter: drop-shadow(4px 4px 0 #000);
    display: block;
    position: relative;
    padding: 2.431vw 0 3.194vw 7.153vw;
    transition-duration: .3s;
  }
  .service-nav__nav.service-nav__nav-maintenance {
    padding-left: 5.556vw;
  }
  .service-nav__nav.service-nav__nav-maintenance .service-nav__name {
    font-feature-settings: "palt";
  }
  .service-nav__nav:hover {
    opacity: .9;
  }
  .service-nav__icn {
    position: absolute;
  }
  .service-nav__icn--heart {
    left: 1.528vw;
    top: 2.014vw;
    width: 4.583vw;
    height: 3.819vw;
  }
  .service-nav__icn--maintenance {
    left: 1.042vw;
    top: 1.806vw;
    width: 3.819vw;
    height: 3.819vw;
  }
  .service-nav__icn--gear {
    left: 1.806vw;
    top: 1.944vw;
    width: 3.819vw;
    height: 3.819vw;
  }
  .service-nav__name {
    display: block;
    text-align: left;
    font-size: 2.083vw;
    height: auto;
    width: unset;
    margin: 0;
    text-indent: 0;
  }
  .service-nav__name br {
    display: none;
  }
  .service-nav__en {
    display: block;
    margin-top: 0.556vw;
    font-size: 0.833vw;
    text-align: left;
  }
  .service-nav__click {
    position: absolute;
    right: 1.389vw;
    bottom: 0.833vw;
    font-size: 0.833vw;
  }
  .header-02 {
    padding: 0;
  }
  .header-02__inner {
    width: 76.389vw;
    padding: 3.333vw 0;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
  }
  .header-02__heading {
    font-size: 3.889vw;
    padding-top: 0;
  }
  .header-02__heading-en {
    display: block;
    font-size: 1.111vw;
    margin-top: 1.111vw;
  }
  .header-02__txt {
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 1.6;
    margin-left: 3.125vw;
  }
  .header-02__price {
    width: 41.771vw;
    height: 7.986vw;
    top: 3.056vw;
    right: 0;
  }
  .section-02__body {
    padding: 4.444vw 0 6.944vw;
    max-width: 76.389vw;
    margin: 0 auto;
  }
  .section-02__heading-02 {
    font-size: 1.944vw;
  }
  #inspection .section-02__heading-02 {
    width: auto;
  }
  .section-02__text-01 {
    font-size: 1.111vw;
    letter-spacing: 0.03em;
  }
  .about-discount {
    margin-top: 3.75vw;
    border-width: 0.347vw;
    border-radius: 1.111vw;
  }
  .about-discount__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.778vw 2.778vw 2.431vw;
  }
  .about-discount__heading-01 {
    font-size: 2.639vw;
    text-align: left;
  }
  .about-discount__text-01 {
    align-items: center;
  }
  .about-discount__text-01__from {
    font-size: 1.111vw;
    width: auto;
    margin: 0;
  }
  .about-discount__text-01__max {
    position: static;
    font-size: 2.222vw;
    margin-left: 1.319vw;
  }
  .about-discount__text-01__price {
    width: 21.667vw;
    height: 5vw;
    background-image: url(../img/price-002_pc.png);
    margin-left: 1.181vw;
  }
  .discount-type__box {
    display: flex;
    align-items: center;
    border-width: 0.347vw;
    justify-content: space-between;
    width: 50%;
    padding: 1.944vw 1.458vw 2.778vw 2.778vw;
    position: relative;
  }
  .discount-type__box:first-child {
    padding: 2.431vw 1.667vw 2.639vw 2.778vw;
    width: 100%;
  }
  .discount-type__box:nth-child(2),
  .discount-type__box:nth-child(4){
    border-right: 2.5px solid #000;
  }
  .discount-type__box:nth-child(3),
  .discount-type__box:nth-child(5){
    border-left: 2.5px solid #000;
  }
  .discount-type__box:nth-child(3){
    background-color: #E3E3E3;
  }
  .discount-type__box:nth-child(4){
    background-color: #fff;
  }
  .discount-type__text {
    position: absolute;
    margin: 0;
    left: 5.556vw;
    bottom: 1.389vw;
    font-size: 1.111vw;
    margin-top: 1.111vw;
  }
  .discount-type__title .number {
    font-size: 1.667vw;
    padding-top: 0.1em;
    width: 2.778vw;
  }
  .discount-type__title .text {
    font-size: 1.944vw;
  }
  .discount-type__before {
    margin: 0 40px 0 auto;
  }
  .discount-type__before + .discount-type__before {
    margin: 0;
  }
  .discount-type__when {
    width: 6.944vw;
    height: 1.944vw;
    border-radius: 2.083vw;
    line-height: 1.944vw;
    font-size: 1.111vw;
    font-weight: 700;
    margin-right: 1.111vw;
  }
  .discount-type__price-01 {
    width: 11.285vw;
    height: 3.333vw;
  }
  .discount-type__price-02 {
    width: 11.111vw;
    height: 3.333vw;
  }
  .discount-type__price-03 {
    width: 10.278vw;
    height: 3.333vw;
    margin-right: 0.278vw;
  }
  .discount-type {
    display: flex;
    flex-wrap: wrap;
  }
  .vechicle-type__container {
    width: 76.389vw;
    margin-top: 3.333vw;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.528vw 1.042vw;
  }
  .vechicle-type {
    margin: 0;
    border-width: 0.347vw;
    border-radius: 0.625vw;
    padding: 3.333vw 0 1.389vw;
    background: linear-gradient(150deg, #036892 200px, #0083a6 200px);
  }
  .vechicle-type--small {
    background: linear-gradient(150deg, #00268C 200px, #10379F 200px);
  }
  .vechicle-type--middle {
    background: linear-gradient(150deg, #4B008C 200px, #4E109F 200px);
  }
  .vechicle-type--large {
    background: linear-gradient(150deg, #222 200px, #333 200px);
  }
  .vechicle-type--suv {
    background: linear-gradient(150deg, #222 200px, #333 200px);
  }
  .vechicle-type--van {
    background: linear-gradient(150deg, #004317 200px, #005327 200px);
  }
  .vechicle-type--suv {
    padding-top: 0.903vw;
  }
  .vechicle-type--suv .vechicle-type__figure {
    margin-top: 1.806vw;
  }
  .vechicle-type__name {
    font-size: 2.361vw;
  }
  .vechicle-type__name__sub {
    font-size: 1.111vw;
    margin-bottom: 1.111vw;
  }
  .vechicle-type__engine {
    font-size: 1.111vw;
    margin-top: 1.389vw;
  }

  #maintenance .header-02__txt {
    margin-left: 7.5vw;
  }
  .vechicle-type--light .vechicle-type__figure {
    width: 13.819vw;
    height: 7.083vw;
  }
  .vechicle-type--small .vechicle-type__figure {
    width: 18.472vw;
    height: 7.049vw;
    margin-top: 3.264vw;
  }
  .vechicle-type--middle .vechicle-type__figure {
    width: 19.931vw;
    height: 6.25vw;
    margin-top: 4.097vw;
  }
  .vechicle-type--large .vechicle-type__figure {
    width: 19.444vw;
    height: 8.125vw;
    margin-top: 2.361vw;
  }
  .vechicle-type--suv .vechicle-type__figure {
    width: 20.139vw;
    height: auto;
    margin-top: 2.5vw;
  }
  .vechicle-type--van .vechicle-type__figure {
    width: 18.889vw;
    height: auto;
    margin-top: 2.361vw;
  }
  .vehicle-type__table {
    margin-top: 1.944vw;
    padding: 0 1.389vw;
  }
  .vehicle-type__table {
    margin-top: 1.944vw;
    padding: 0 1.389vw;
  }
  .vehicle-type__table dl {
    border-top: 1px solid #096684;
    padding: 0.694vw 0;
  }
  .vehicle-type__table dl dt {
    width: 8.889vw;
    font-size: 1.042vw;
  }
  .vehicle-type__table dl dd {
    font-size: 1.042vw;
  }
  .vehicle-type__table dl.legal-fees {
    padding: 0.347vw 0;
  }
  .vehicle-type__table dl.total-price {
    padding: 0.833vw 0;
  }
  .vehicle-type__table dl.total-price dd {
    font-size: 1.736vw;
  }
  .vehicle-type__table dl.max-discount {
    padding: 1.111vw 0;
  }
  .vehicle-type__table dl.max-discount dd {
    font-size: 1.736vw;
  }
  .vechicle-type__note {
    font-size: 1.111vw;
  }
  .maintenance-box {
    display: grid;
    grid-template-columns: 267px 1fr;
    padding-bottom: 4.167vw;
    border-bottom-width: 0.208vw;
    margin-top: 3.333vw;
    padding: 0 0 2.778vw;
  }
  .maintenance-box.maintenance-box--engineoil {
    margin-top: 7.5vw;
  }
  .maintenance-box.maintenance-box--tire {
    margin-top: 0;
    padding-top: 4.167vw;
    padding-bottom: 6.111vw;
  }
  .maintenance-box__header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .maintenance-box__heading-01 {
    font-size: 2.917vw;
  }
  .maintenance-box--engineoil .maintenance-box__heading-01 {
    width: 13.056vw;
    margin: 0 0 3.056vw 0;
  }
  .maintenance-box__heading-01::after {
    width: 5.069vw;
    height: 0.556vw;
    margin-top: 1.667vw;
    margin-left: 0.278vw;
  }
  .maintenance-box__lead {
    font-size: 1.25vw;
    margin-top: 1.389vw;
  }
  .maintenance-box__lead br {
    display: none;
  }
  .engineoil-price-table {
    margin-top: 1.875vw;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.833vw;
  }
  .price-table-01 {
    border-width: 0.208vw;
    border-radius: 0.694vw;
    padding-bottom: 0.625vw;
  }
  .price-table-01__header {
    height: 4.167vw;
    font-size: 1.389vw;
  }
  .price-table-01__row {
    margin: 0 0.833vw;
    padding: 0.833vw 0;
    height: 3.125vw;
    align-items: center;
  }
  .price-table-01__row__head {
    font-size: 1.111vw;
  }
  .price-table-01__row__head br {
    display: none;
  }
  .price-table-01__row__price .price {
    font-size: 1.389vw;
  }
  .price-table-01__row__price .unit {
    font-size: 0.764vw;
  }
  .price-table-01__row.price-table-01__row--02 {
    padding: 0.347vw 0;
    height: 3.125vw;
    align-items: center;
  }
  .maintenance-box__note {
    font-size: 1.111vw;
    margin-top: 2.083vw;
  }
  .maintenance-box__note br {
    display: none;
  }
  .maintenance-box__pict__tire {
    width: 17.639vw;
    position: relative;
    left: -0.556vw;
    margin-top: 3.889vw;
  }
  .maintenance-box__pict__tire img {
    width: 100%;
    height: auto;
  }
  .tire-price__wrap {
    margin-top: 1.458vw;
    display: grid;
    grid-template-columns: 1fr 347px;
    gap: 1.389vw;
  }
  .tire-price-table {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 0.833vw;
  }
  .maintenance-box__pict__tire-01 {
    margin-top: 0;
  }
  .price-table-02 {
    border-width: 0.208vw;
    border-radius: 0.694vw;
    font-size: 1.389vw;
  }
  .price-table-02__header,
  .price-table-02__row {
    height: 3.889vw;
    display: flex;
    align-items: center;
    padding: 0.833vw 0.556vw;
  }
  .price-table-02__header br {
    display: none;
  }
  .price-table-02__row .unit {
    font-size: 0.903vw;
  }
  .price-table-02__row .price {
    font-size: 1.25vw;
  }
  .maintenance-box--tire .maintenance-box__note {
    margin-top: 1.111vw;
  }
  .maintenance-box__pict__etc {
    display: none;
  }
  .maintenance-box--etc .maintenance-box__heading-01::after {
    margin-top: 2.5vw;
  }
  .etc-price-table {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.833vw;
  }
  .maintenance-box--etc .price-table-02__row .price {
    font-size: 1.111vw;
    margin-left: 0.556vw;
  }
  .maintenance-box--etc .price-table-02__row .price {
    font-size: 1.389vw;
  }
  .maintenance-box--etc .maintenance-box__note {
    text-align: right;
    margin-top: 1.111vw;
  }
  .box-01 {
    border-radius: 1.042vw;
  }
  .box-01__body {
    padding: 2.222vw 3.333vw 2.778vw;
  }
  .box-01__heading {
    flex-direction: row;
  }
  .box-01__photos {
    gap: 0.347vw;
    padding-bottom: 0.347vw;
  }
  .box-01__heading__text {
    font-size: 1.944vw;
  }
  .box-01__heading__text--dot {
    padding-bottom: 0.278vw;
    background-size: 0.694vw 0.278vw;
  }
  .box-01__text {
    margin-top: 1.667vw;
    font-size: 1.111vw;
  }
  #faq .header-02 {
    padding: 0;
  }
  .faq__box {
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
    border-radius: 0.556vw;
    margin-top: 0.833vw;
  }
  .faq__heading {
    font-size: 2.639vw;
    margin-bottom: 1.667vw;
    text-align: left;
  }
  .faq__box__question {
    padding: 1.875vw 2.153vw 1.875vw 2.5vw;
  }
  .faq__box__q,
  .faq__box__a {
    font-size: 2.083vw;
    margin-right: 1.875vw;
  }
  .faq__box__question__text {
    font-size: 1.389vw;
  }
  .faq__box__btn {
    width: 1.806vw;
    height: 1.806vw;
    margin-left: 2.083vw;
  }
  .faq__box__btn span {
    width: 13px;
    height: 2px;
  }
  .faq__box__answer__inner {
    padding: 1.875vw 1.875vw 1.875vw 2.5vw;
  }
  .faq__box__answer__text {
    font-size: 1.25vw;
  }
  .faq {
    margin-top: 4.167vw;
  }
  .faq__note {
    margin-top: 4.167vw;
    flex-direction: row;
    justify-content: center;
  }
  .faq__note span {
    font-size: 1.389vw;
  }
  .company-message {
    aspect-ratio: 1440/742;
    background-image: url(../img/company_bg_pc.jpg);
    padding-top: 7.986vw;
  }
  .company-message__message {
    flex-direction: row;
  }
  .company-message__message span {
    font-size: 3.889vw;
  }
  .company-message__en {
    font-size: 1.319vw;
    margin-top: 2.222vw;
  }
  .greeting {
    width: 76.389vw;
    margin: -168px auto 0;
    border-radius: 0.694vw;
    flex-direction: row;
  }
  .greegint__photo {
    width: 26.944vw;
  }
  .greegint__photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .greeting__body {
    flex: 1;
    padding: 3.333vw 3.333vw 2.5vw 5vw;
  }
  .greeting__text {
    font-size: 1.25vw;
    line-height: 2.3;
  }
  .greeting--name {
    font-size: 1.111vw;
  }
  .greeting--name br {
    display: none;
  }
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
  .company-outline {
    width: 76.389vw;
    margin: 72px auto 0;
    padding-bottom: 6.597vw;
  }
  .company-outline__heading::before {
    width: 0.694vw;
    height: 0.694vw;
  }
  .company-outline__heading span {
    font-size: 1.389vw;
    margin-left: 0.764vw;
  }
  .company-outline__heading::after {
    font-size: 0.972vw;
  }
  .company-outline__table {
    margin-top: 0.972vw;
  }

  .company-outline__table__row {
    padding: 1.25vw 1.389vw;
    font-size: 1.25vw;
  }
  .company-outline__table__title {
    width: 14.444vw;
  }
  .gmap {
    aspect-ratio: 1440 / 650;
  }
  .contact-section {
    padding: 8.472vw 11.806vw 13.611vw;
  }
  .contact-section::before {
    width: 100%;
    height: 2.917vw;
    background-image: url(../img/contact-tire_pc.png);
    background-size: contain;
    background-repeat: repeat-x;
  }
  .footer-copy {
    width: 100%;
    aspect-ratio: 2880/186;
    background-image: url(../img/total_pc.png);
    margin-top: 7.153vw;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
  }
  .contact-section__container {
    max-width: 76.389vw;
    margin: 0 auto;
  }
  .contact-section__heading-01 {
    font-size: 4.167vw;
  }
  .contact-section__heading-01__en {
    font-size: 1.25vw;
    margin-top: 1.319vw;
  }
  .contact-section__lead {
    font-size: 1.25vw;
    margin-top: 4.861vw;
  }
  .tel-section {
    margin-top: 4.444vw;
    padding: 4.444vw 0 3.889vw;
    display: flex;
    flex-direction: row;
  }
  .contact-section__icn {
    width: 6.736vw;
    height: 6.736vw;
  }
  .contact-section__icn--tel {
    background-size: 1.944vw 2.639vw;
  }
  .contact-section__icn--form {
    background-size: 2.708vw 1.667vw;
  }
  .form-section__header,
  .tel-section__header{
    flex-direction: row;
    width: 21.806vw;
    padding-left: 0.556vw;
  }
  .tel-section__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    padding-left: 4.444vw;
  }
  .contact-section__heading-02 {
    flex: 1;
    margin-left: 1.806vw;
    line-height: 1.45;
    font-size: 1.667vw;
    margin: 0 0 0 1.806vw;
  }
  .tel-section__tel {
    margin-top: 0;
    font-size: 3.75vw;
  }
  .tel-section__hours {
    font-size: 1.111vw;
    margin-left: 3.125vw;
    margin-top: 1.111vw;
  }
  .form-section {
    display: flex;
    align-items: flex-start;
    padding: 2.222vw 0 10.833vw;
  }

  .form-section__header {
    flex-direction: row;
  }
  .form-section__body {
    margin-top: 0;
  }
  .form-container__row {
    margin-top: 1.111vw;
    display: flex;
    flex-direction: row;
  }
  .form-container__row label {
    font-size: 1.25vw;
    padding-top: 0.833vw;
    padding-right: 1.667vw;
    width: 15.278vw;
    text-align: right;
  }
  .form-container__row input,
  .form-container__row select,
  .form-container__row textarea {
    margin-top: 0;
    width: 100%;
    font-size: 1.25vw;
    padding: 0.694vw;
    border-radius: 0.278vw;
  }
  .form-container__row textarea {
    height: 26.944vw;
  }
  .form__bottom {
    position: relative;
    left: -10.903vw;
    margin-top: 3.194vw;
  }
  .form__bottom__note {
    font-size: 1.111vw;
    letter-spacing: 0;
    font-feature-settings: "palt";
  }
  .btn-submit {
    padding: 2.639vw 0.556vw;
    width: 22.5vw;
    font-size: 1.667vw;
    text-align: center;
    transition-duration: .3s;
    border-radius: 0.278vw;
  }
  .btn-submit:hover {
    opacity: .8;
  }
  .copyright {
    font-size: 1.111vw;
  }
  .pagetop {
    width: 5.208vw;
    height: 5.208vw;
    left: unset;
    right: 3.333vw;
    bottom: calc(8.819vw + env(safe-area-inset-bottom));
  }
  .alert {
    margin-top: 1.111vw;
    padding: 1.25vw;
    border-radius: 0.278vw;
  }

  .footer {
    left: unset;
    right: 0;
    top: 20.833vw;
    width: 4.444vw;
    height: auto;
  }
  .footer__bottom {
    display: none;
  }
  .footer__tabs__tab.footer__tabs__tab--mail {
    display: none;
  }
  .footer__tabs {
    display: block;
    padding: 0;
  }
  .footer__tabs__tab {
    flex-direction: column;
    border-radius: 0.694vw 0 0 0.694vw;
    padding: 1.042vw;
    height: 10.069vw;
    margin-bottom: 0.833vw;
    transition-duration: .3s;
  }
  .footer__tabs__tab:hover {
    opacity: .8;
  }
  .footer__tabs__txt {
    flex-direction: row-reverse;
  }
  .footer__tabs__tab--line .footer__tabs__icn,
  .footer__tabs__tab--ig .footer__tabs__icn {
    margin: 0 auto 12px;
  }
  .footer__tabs__tab--line .footer__tabs__icn {
    width: 1.944vw;
    height: 1.806vw;
    background-size: contain;
  }
  .footer__tabs__tab--ig .footer__tabs__icn {
    width: 1.528vw;
    height: 1.528vw;
    background-size: contain;
  }

  .footer__tabs__txt__small {
    font-size: 0.764vw;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
  }
  .footer__tabs__txt__large {
    font-size: 1.181vw;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 1440px) {
  .header {
    top: 27px;
    left: 0;
    right: 0;
    width: calc(100% - 40px);
    height: 100px;
    border-radius: 15px;
    padding: 0 0 0 46px;
    min-width: 1100px;
    max-width: 1440px;
  }
  .header__logo {
    width: 210px;
    height: 49px;
  }
  .header__logo a {
    width: 210px;
    height: 49px;
  }
  .pc-header-contact {
    width: 204px;
    padding: 0 21px 0 22px;
  }
  .pc-header-contact__icn {
    width: 39px;
    height: 24px;
    margin-right: 12px;
  }
  .pc-header-contact__body {
    font-size: 18px;
  }
  .pc-header-tel {
    width: 229px;
    margin-right: 25px;
  }
  .pc-header-tel__icn {
    width: 30px;
    height: 44px;
  }
  .pc-header-tel__body {
    margin-left: 4px;
  }
  .pc-header-tel__number {
    font-size: 28px;
  }
  .pc-header-tel__hours {
    font-size: 11px;
  }
  .pc-menu {
    margin-right: 26px;
  }
  .pc-menu li a {
    padding: 12px;
    font-size: 18px;
  }
  .hero__picture {
    width: 100%;
    display: block;
  }
  .hero__picture img {
    display: block;
    max-width: 1500px;
    margin: 0 auto;
  }
  .section-01 {
    padding: 31px 0 70px;
  }
  .bnr-campaign_01 {
    max-width: 1351px;
  }
  .heading-service {
    margin: 0 auto;
    width: 1360px;
  }
  .service-nav {
    width: 1100px;
    margin: -16px auto 0;
    gap: 24px;
  }
  .service-nav__nav {
    border-radius: 10px;
    filter: drop-shadow(4px 4px 0 #000);
    padding: 35px 0 46px 103px;
  }
  .service-nav__nav.service-nav__nav-maintenance {
    padding-left: 80px;
  }
  .service-nav__icn--heart {
    left: 22px;
    top: 29px;
    width: 66px;
    height: 55px;
  }
  .service-nav__icn--maintenance {
    left: 15px;
    top: 26px;
    width: 55px;
    height: 55px;
  }
  .service-nav__icn--gear {
    left: 26px;
    top: 28px;
    width: 55px;
    height: 55px;
  }
  .service-nav__name {
    font-size: 30px;
  }
  .service-nav__en {
    margin-top: 8px;
    font-size: 12px;
  }
  .service-nav__click {
    right: 20px;
    bottom: 12px;
    font-size: 12px;
  }
  .header-02__inner {
    width: 1100px;
    padding: 48px 0;
  }
  .header-02__heading {
    font-size: 56px;
  }
  .header-02__heading-en {
    font-size: 16px;
    margin-top: 16px;
  }
  .header-02__txt {
    font-size: 18px;
    font-weight: 700;
    margin-left: 45px;
  }
  .header-02__price {
    width: 601.5px;
    height: 115px;
    top: 44px;
    right: 0;
  }
  .section-02__body {
    padding: 64px 0 100px;
    max-width: 1100px;
  }
  .section-02__heading-02 {
    font-size: 28px;
  }
  .section-02__text-01 {
    font-size: 16px;
  }
  .about-discount {
    margin-top: 54px;
    border-width: 5px;
    border-radius: 16px;
  }
  .about-discount__header {
    padding: 40px 40px 35px;
  }
  .about-discount__heading-01 {
    font-size: 38px;
  }
  .about-discount__text-01__from {
    font-size: 16px;
  }
  .about-discount__text-01__max {
    font-size: 32px;
    margin-left: 19px;
  }
  .about-discount__text-01__price {
    width: 312px;
    height: 72px;
    margin-left: 17px;
  }
  .discount-type__box {
    border-width: 5px;
    padding: 28px 21px 40px 40px;
  }
  .discount-type__box:first-child {
    padding: 35px 24px 38px 40px;
  }
  .discount-type__box:nth-child(2),
  .discount-type__box:nth-child(4){
    border-right: 2.5px solid #000;
  }
  .discount-type__box:nth-child(3),
  .discount-type__box:nth-child(5){
    border-left: 2.5px solid #000;
  }
  .discount-type__text {
    left: 80px;
    bottom: 20px;
    font-size: 16px;
    margin-top: 16px;
  }
  .discount-type__title .number {
    font-size: 24px;
    width: 40px;
  }
  .discount-type__title .text {
    font-size: 28px;
  }
  .discount-type__before {
    margin: 0 40px 0 auto;
  }
  .discount-type__when {
    width: 100px;
    height: 28px;
    border-radius: 30px;
    line-height: 28px;
    font-size: 16px;
    margin-right: 16px;
  }
  .discount-type__price-01 {
    width: 162.5px;
    height: 48px;
  }
  .discount-type__price-02 {
    width: 160px;
    height: 48px;
  }
  .discount-type__price-03 {
    width: 148px;
    height: 48px;
    margin-right: 4px;
  }
  .vechicle-type__container {
    width: 1100px;
    margin-top: 48px;
    gap: 22px 15px;
  }
  .vechicle-type {
    border-width: 5px;
    border-radius: 9px;
    padding: 48px 0 20px;
    background: linear-gradient(150deg, #036892 200px, #0083a6 200px);
  }
  .vechicle-type--small {
    background: linear-gradient(150deg, #00268C 200px, #10379F 200px);
  }
  .vechicle-type--middle {
    background: linear-gradient(150deg, #4B008C 200px, #4E109F 200px);
  }
  .vechicle-type--large {
    background: linear-gradient(150deg, #222 200px, #333 200px);
  }
  .vechicle-type--suv {
    background: linear-gradient(150deg, #222 200px, #333 200px);
  }
  .vechicle-type--van {
    background: linear-gradient(150deg, #004317 200px, #005327 200px);
  }
  .vechicle-type--suv {
    padding-top: 13px;
  }
  .vechicle-type--suv .vechicle-type__figure {
    margin-top: 26px;
  }
  .vechicle-type__name {
    font-size: 34px;
  }
  .vechicle-type__name__sub {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .vechicle-type__engine {
    font-size: 16px;
    margin-top: 20px;
  }

  #maintenance .header-02__txt {
    margin-left: 108px;
  }
  .vechicle-type--light .vechicle-type__figure {
    width: 199px;
    height: 102px;
  }
  .vechicle-type--small .vechicle-type__figure {
    width: 266px;
    height: 101.5px;
    margin-top: 47px;
  }
  .vechicle-type--middle .vechicle-type__figure {
    width: 287px;
    height: 90px;
    margin-top: 59px;
  }
  .vechicle-type--large .vechicle-type__figure {
    width: 280px;
    height: 117px;
    margin-top: 34px;
  }
  .vechicle-type--suv .vechicle-type__figure {
    width: 290px;
    margin-top: 36px;
  }
  .vechicle-type--van .vechicle-type__figure {
    width: 272px;
    margin-top: 34px;
  }
  .vehicle-type__table {
    margin-top: 28px;
    padding: 0 20px;
  }
  .vehicle-type__table {
    margin-top: 28px;
    padding: 0 20px;
  }
  .vehicle-type__table dl {
    border-top: 1px solid #096684;
    padding: 10px 0;
  }
  .vehicle-type__table dl dt {
    width: 128px;
    font-size: 15px;
  }
  .vehicle-type__table dl dd {
    font-size: 15px;
  }
  .vehicle-type__table dl.legal-fees {
    padding: 5px 0;
  }
  .vehicle-type__table dl.total-price {
    padding: 12px 0;
  }
  .vehicle-type__table dl.total-price dd {
    font-size: 25px;
  }
  .vehicle-type__table dl.max-discount {
    padding: 16px 0;
  }
  .vehicle-type__table dl.max-discount dd {
    font-size: 25px;
  }
  .vechicle-type__note {
    font-size: 16px;
  }
  .maintenance-box {
    grid-template-columns: 267px 1fr;
    padding-bottom: 60px;
    border-bottom-width: 3px;
    margin-top: 48px;
    padding: 0 0 40px;
  }
  .maintenance-box.maintenance-box--engineoil {
    margin-top: 108px;
  }
  .maintenance-box.maintenance-box--tire {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 88px;
  }
  .maintenance-box__heading-01 {
    font-size: 42px;
  }
  .maintenance-box--engineoil .maintenance-box__heading-01 {
    width: 188px;
    margin: 0 0 44px 0;
  }
  .maintenance-box__heading-01::after {
    width: 73px;
    height: 8px;
    margin-top: 24px;
    margin-left: 4px;
  }
  .maintenance-box__lead {
    font-size: 18px;
    margin-top: 20px;
  }
  .engineoil-price-table {
    margin-top: 27px;
    gap: 12px;
  }
  .price-table-01 {
    border-width: 3px;
    border-radius: 10px;
    padding-bottom: 9px;
  }
  .price-table-01__header {
    height: 60px;
    font-size: 20px;
  }
  .price-table-01__row {
    margin: 0 12px;
    padding: 12px 0;
    height: 45px;
  }
  .price-table-01__row__head {
    font-size: 16px;
  }
  .price-table-01__row__price .price {
    font-size: 20px;
  }
  .price-table-01__row__price .unit {
    font-size: 11px;
  }
  .price-table-01__row.price-table-01__row--02 {
    padding: 5px 0;
    height: 45px;
  }
  .maintenance-box__note {
    font-size: 16px;
    margin-top: 30px;
  }
  .maintenance-box__pict__tire {
    width: 254px;
    left: -8px;
    margin-top: 56px;
  }
  .maintenance-box__pict__tire img {
    width: 100%;
  }
  .tire-price__wrap {
    margin-top: 21px;
    grid-template-columns: 1fr 347px;
    gap: 20px;
  }
  .tire-price-table {
    gap: 12px;
  }
  .price-table-02 {
    border-width: 3px;
    border-radius: 10px;
    font-size: 20px;
  }
  .price-table-02__header,
  .price-table-02__row {
    height: 56px;
    padding: 12px 8px;
  }
  .price-table-02__row .unit {
    font-size: 13px;
  }
  .price-table-02__row .price {
    font-size: 18px;
  }
  .maintenance-box--tire .maintenance-box__note {
    margin-top: 16px;
  }
  .maintenance-box--etc .maintenance-box__heading-01::after {
    margin-top: 36px;
  }
  .etc-price-table {
    gap: 12px;
  }
  .maintenance-box--etc .price-table-02__row .price {
    font-size: 16px;
    margin-left: 8px;
  }
  .maintenance-box--etc .price-table-02__row .price {
    font-size: 20px;
  }
  .maintenance-box--etc .maintenance-box__note {
    margin-top: 16px;
  }
  .box-01 {
    border-radius: 15px;
  }
  .box-01__body {
    padding: 32px 48px 40px;
  }
  .box-01__photos {
    gap: 5px;
    padding-bottom: 5px;
  }
  .box-01__heading__text {
    font-size: 28px;
  }
  .box-01__heading__text--dot {
    padding-bottom: 4px;
    background-size: 10px 4px;
  }
  .box-01__text {
    margin-top: 24px;
    font-size: 16px;
  }
  #faq .header-02 {
    padding: 0;
  }
  .faq__box {
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 12px;
  }
  .faq__heading {
    font-size: 38px;
    margin-bottom: 24px;
  }
  .faq__box__question {
    padding: 27px 31px 27px 36px;
  }
  .faq__box__q,
  .faq__box__a {
    font-size: 30px;
    margin-right: 27px;
  }
  .faq__box__question__text {
    font-size: 20px;
  }
  .faq__box__btn {
    width: 26px;
    height: 26px;
    margin-left: 30px;
  }
  .faq__box__btn span {
    width: 13px;
    height: 2px;
  }
  .faq__box__answer__inner {
    padding: 27px 27px 27px 36px;
  }
  .faq__box__answer__text {
    font-size: 18px;
  }
  .faq {
    margin-top: 60px;
  }
  .faq__note {
    margin-top: 60px;
  }
  .faq__note span {
    font-size: 20px;
  }
  .company-message {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 115px;
  }
  .company-message__message span {
    font-size: 56px;
  }
  .company-message__en {
    font-size: 19px;
    margin-top: 32px;
  }
  .greeting {
    width: 1100px;
    margin: -168px auto 0;
    border-radius: 10px;
  }
  .greegint__photo {
    width: 388px;
  }
  .greeting__body {
    padding: 48px 48px 36px 72px;
  }
  .greeting__text {
    font-size: 18px;
    line-height: 2.3;
  }
  .greeting--name {
    font-size: 16px;
  }
  .company-outline {
    width: 1100px;
    margin: 72px auto 0;
    padding-bottom: 95px;
  }
  .company-outline__heading::before {
    width: 10px;
    height: 10px;
  }
  .company-outline__heading span {
    font-size: 20px;
    margin-left: 11px;
  }
  .company-outline__heading::after {
    font-size: 14px;
  }
  .company-outline__table {
    margin-top: 14px;
  }
  .company-outline__table__row {
    padding: 18px 20px;
    font-size: 18px;
  }
  .company-outline__table__title {
    width: 208px;
  }
  .contact-section {
    padding: 122px 170px 196px;
  }
  .contact-section::before {
    width: 100%;
    height: 42px;
  }
  .footer-copy {
    width: 100%;
    aspect-ratio: 2880/186;
    margin-top: 103px;
  }
  .contact-section__container {
    max-width: 1100px;
    margin: 0 auto;
  }
  .contact-section__heading-01 {
    font-size: 60px;
  }
  .contact-section__heading-01__en {
    font-size: 18px;
    margin-top: 19px;
  }
  .contact-section__lead {
    font-size: 18px;
    margin-top: 70px;
  }
  .tel-section {
    margin-top: 64px;
    padding: 64px 0 56px;
  }
  .contact-section__icn {
    width: 97px;
    height: 97px;
  }
  .contact-section__icn--tel {
    background-size: 28px 38px;
  }
  .contact-section__icn--form {
    background-size: 39px 24px;
  }
  .form-section__header,
  .tel-section__header{
    width: 314px;
    padding-left: 8px;
  }
  .tel-section__body {
    padding-left: 64px;
  }
  .contact-section__heading-02 {
    margin-left: 26px;
    font-size: 24px;
    margin: 0 0 0 26px;
  }
  .tel-section__tel {
    margin-top: 0;
    font-size: 54px;
  }
  .tel-section__hours {
    font-size: 16px;
    margin-left: 45px;
    margin-top: 16px;
  }
  .form-section {
    display: flex;
    align-items: flex-start;
    padding: 32px 0 156px;
  }
  .form-container__row {
    margin-top: 16px;
  }
  .form-container__row label {
    font-size: 18px;
    padding-top: 12px;
    padding-right: 24px;
    width: 220px;
  }
  .form-container__row input,
  .form-container__row select,
  .form-container__row textarea {
    font-size: 18px;
    padding: 10px;
    border-radius: 4px;
  }
  .form-container__row textarea {
    height: 388px;
  }
  .form__bottom {
    left: -157px;
    margin-top: 46px;
  }
  .form__bottom__note {
    font-size: 16px;
  }
  .btn-submit {
    padding: 38px 8px;
    width: 324px;
    font-size: 24px;
    border-radius: 4px;
  }
  .copyright {
    font-size: 16px;
  }
  .pagetop {
    width: 75px;
    height: 75px;
    right: 48px;
    bottom: calc(127px + env(safe-area-inset-bottom));
  }
  .alert {
    margin-top: 16px;
    padding: 18px;
    border-radius: 4px;
  }
  .footer {
    right: 0;
    top: 300px;
    width: 64px;
  }
  .footer__tabs__tab {
    border-radius: 10px 0 0 10px;
    padding: 15px;
    height: 145px;
    margin-bottom: 12px;
  }
  .footer__tabs__tab--line .footer__tabs__icn,
  .footer__tabs__tab--ig .footer__tabs__icn {
    margin: 0 auto 12px;
  }
  .footer__tabs__tab--line .footer__tabs__icn {
    width: 28px;
    height: 26px;
  }
  .footer__tabs__tab--ig .footer__tabs__icn {
    width: 22px;
    height: 22px;
  }
  .footer__tabs__txt__small {
    font-size: 11px;
  }
  .footer__tabs__txt__large {
    font-size: 17px;
  }
}
