@charset "utf-8";
/* common */
article, aside, main, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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

html {
  font-family: "Sofia Sans", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .02em;
  background-color: var(--base);
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}

.weight100   {
  font-weight:100
  }

.weight300   {
  font-weight:300
  }

.weight400   {
  font-weight:400
  }

.weight500   {
  font-weight:500
  }

.weight600   {
  font-weight:600
  }

.weight700   {
  font-weight:700
  }

.weight900   {
  font-weight:900
  }

.f-besley {
  font-family: "Besley", serif;
  font-weight: 800;
}

:root {
  --black: #000;
  --black2: #202020;
  --white: #FFFFFF;
  --red: #E23645;
}


.sp-only {
  display: none;
}

.sptab-only {
  display: none;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%; 
}
 
@media (max-width: 1023px) {
  .sptab-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
  br.sp-only {
    display: inline;
  }
}

/* common */
h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
}

.c-h2 {
  position: relative;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 52px;
}

.c-h2::after {
  content: '';
  width: 40px;
  height: 8px;
  position: absolute;
  inset: auto 0 -16px;
  margin: auto;
  background: var(--red);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  a {
    transition: .4s;
  }

  a:hover {
    opacity: .6;;
  }
}

.readmore-wrapper {
  display: block;
  margin-top: 32px;
  text-align: right;
}

.readmore {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: right;
  padding-right: 22px;
  line-height: 23px;
  border-bottom: 2px solid var(--black);
}

.readmore::after {
  content: '';
  width: 12px;
  height: 24px;
  position: absolute;
  inset: auto 0 1px auto;
  background: url(../images/arrow-right-black.svg) no-repeat;
  
}

/* layout */
.top-bg {
  position: fixed;
  inset: 0;
  background: url(../images/top-bg.webp) center / cover no-repeat;
  z-index: -1;
}
.about-bg {
  position: fixed;
  inset: 0;
  background: url(../images/about-bg.webp) center / cover no-repeat;
  z-index: -1;
}
.l-main {
  position: relative;
  background: transparent;
  padding-top: 104px;
}
.l-main::before {
  content: '';
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.86);
  pointer-events: none;
  z-index: 0;
}
.l-main > * {
  position: relative;
  z-index: 1;
}

.l-main.p-about::before {
  background-color: rgba(255, 255, 255, 0.5);
}

/* .l-main {
  padding-top: 104px;
  background-image: url(../images/top-bg.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.l-main::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.86);
  z-index: 0;
  pointer-events: none;
}

.l-main > * {
  position: relative;
  z-index: 1;
}

.l-main.p-about {
  background-image: url(../images/about-bg.webp);
}

.l-main.p-about::before {
  background-color: rgba(255, 255, 255, 0.5);
} */



.l-main__content {
  background: url(/images/top-bg-right.svg) right calc(50% - 720px) top 1500px/96px auto no-repeat;
}

.p-about .l-main__content {
  background: url(/images/top-bg-right.svg) right calc(50% - 720px) top 90px/96px auto no-repeat;
}

.l-flex {
  display: flex;
}

.l-flex.align-center {
  align-items: center;
}

.l-section.large {
  padding: 120px 0 0;
}

.l-normal__flame {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.l-small__flame {
  width: 100%;
  max-width: 620px;
}

.l-section__title {
  margin-bottom: 40px;
}

.l-section__title p {
  color: var(--orange);
  margin-bottom: 8px;
}

.l-section__title p.f-large {
  font-size: 2rem;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .l-normal__flame {
    padding: 0 20px;
  }
}  

@media (max-width: 1023px) {
  .l-main {
    padding-top: 76px;
  }  
}  

@media (max-width: 767px) {
  .l-section.large,
  .l-section.large.l-normal__flame {
    padding: 100px 20px;
  }

  .l-main__content {
    background: url(/images/top-bg-right.svg) right top 840px/64px auto no-repeat;
  }

  .p-about .l-main__content {
    background: url(/images/top-bg-right.svg) right top 135px/64px auto no-repeat;
  }  

  .l-flex {
    flex-direction: column;
  }


}  

@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }  

  .l-section.large {
    padding: 80px 0;
  }

  .l-section.large.l-normal__flame {
    padding: 80px 24px;
  }

  .l-section__title p.f-large {
    font-size: 1.6rem;
  }
}

/* button */
.l-btn__big {
  width: 307px;
  height: 58px;
  background-color: var(--orange);
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 1px solid var(--orange);
  cursor: pointer;
}

.l-btn__big a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}

.l-btn__big a span {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.l-btn__middle {
  width: fit-content;
  /* height: 45px; */
  background-color: var(--brown03);
  border-radius: 9999px;
  padding: 17px 68px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--brown03);
}

.l-btn__middle a span {
  color: var(--brown05);
  font-size: 1.6rem;
  line-height: 1.3;
}

.l-btn__middle .ico_open_in_new {
  padding-bottom: 4px;
}

.l-btn__small a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}


.l-btn__small {
  width: fit-content;
  /* height: 45px; */
  background-color: var(--brown03);
  border-radius: 9999px;
  padding: 13px 40px 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--brown03);
  cursor: pointer;
}

.l-btn__small a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}

.l-btn__small a span {
  color: var(--brown05);
  font-size: 1.6rem;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .l-btn__big:hover {
    background: #FFC266;
  }

  .l-btn__middle:hover,
  .l-btn__small:hover {
    border: 1px solid var(--orange);
  }
}

@media (max-width: 768px) {

  .l-btn__middle {
    padding: 17px 40px 16px
  }
}

/* header */
.l-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 104px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--black2);
  z-index: 200;
}

.l-header__inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-header__logo span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.l-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 52px;
}

.l-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 52px;
}

.l-nav__list_sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 36px;
}

.l-nav__list_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 16px;
}

.l-nav__list li a {
  position: relative;
  color: var(--white);
}

.l-header__nav .l-nav__list_btn li a {
  color: var(--white);
}

@media (max-width: 1360px) {
  .l-header__inner {
    padding: 0 20px 0 10px;
  }
}

@media (max-width: 1079px) {
  .l-header__nav,
  .l-header__nav .l-nav__list,
  .l-header__nav .l-nav__list_sns{
    gap: 32px;
  }
}

@media (max-width: 1023px) {
  .l-header {
    height: 76px;
  }

  .l-header__logo {
    width: 160px;
  }

  .l-header__logo img {
    width: 100%;
  }

  .l-nav__list,
  .l-nav__list_sns,
  .l-nav__list_btn .pc-only {
    display: none;
  }

  .l-header__right {
    margin-left: auto;
  }
}

@media (max-width: 1023px) {
  .l-header__inner {
    gap: 16px;
  }

  .l-header .align-right {
    margin-left: auto;
  }

  .l-header__logo {
    z-index: 1001;
  }
}

.c-btn {
  height: 36px;
  padding: 0 16px;
  background: var(--red);
}

.c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: var(--white);
}

@media (max-width: 1023px) {
  .c-btn.c-square-btn {
    padding: 8px;
  }
}

.l-openbtn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 27px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
}

.l-openbtn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  transition: all 0.3s ease;
  z-index: 1001;
}

.l-openbtn span:nth-child(2) {
  width: 22px;
}

.l-openbtn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.l-openbtn.active span:nth-child(2) {
  opacity: 0;
}

.l-openbtn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ナビゲーションメニューのスタイル */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 76px 24px 40px;
}

.nav-menu.active {
  right: 0; /* アクティブ時に画面内に表示 */
}

.hamburger-nav {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  padding: 40px 0;
  margin-bottom: 36px;
}

.hamburger-nav a {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--white);
  position: relative;
  padding-right: 24px;
}

.hamburger-nav a::after {
  content: '';
  width: 12px;
  height: 24px;
  background: url(../images/arrow-right-white.svg);
  position: absolute;
  inset: 5px 0 auto auto;
}

.hamburger-nav-sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  margin-bottom: 54px;
}

.hamburger-nav-sns img {
  width: 40px;
  height: auto;
}

.footer-nav__sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* footeｒ */
footer {
  position: relative;
  background: var(--black);
}

.footer-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 0;
}

.footer-logo__wrap {
  margin-bottom: 24px;
}

.footer-logo {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1.92px;
  color: var(--white);
  filter: drop-shadow(3px 3px 0 #000);
}

.footer-nav__wrap {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-nav {
  flex-wrap: wrap;
  max-width: 470px;
  justify-content: flex-start;
  column-gap: 120px;
  row-gap: 24px;
}

.footer-nav-item {
  flex-direction: column;
  gap: 16px;
}

.footer-nav-item a {
  font-size: 1.6rem;
  color: var(--white);
}

.footer-nav-btn {
  gap: 24px;
}
.footer-bottom {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 20px;
  background-image: url(../images/ft-img01.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 200px 52.4px;
}

.footer-bottom p {
  font-size: 1.2rem;
  line-height: 28px;
  text-align: center;
  color: var(--white);
}

@media (max-width: 1180px) {
  .footer-inner {
    padding: 40px 20px;
  }

  .footer-nav {
    column-gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-nav-btn {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
  }
}

/* アニメーション */
.fade-in-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ページトップ */
#pagetop {
  width: 23px;
  position: fixed;
  right: 20px;
  bottom: 32px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#pagetop img {
  width: 100%;
}

@media (max-width: 767px) {
  #pagetop.show {
    opacity: 1;
    visibility: visible;
  }
}

/* トップページ */
/* main visual */
.home-mv img {
  width: 100%;
}


/* ブログ */
/* カードを並べるグリッドコンテナ */
.blog-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  height: clamp(320px, 87vw, 858px);
}

/* カード単体のスタイル */
.blog-card {
  width: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}

/* マウスホバー時の動き */
.blog-card:hover {
  opacity: .6;
}

/* サムネイル画像エリア */
.blog-card-thumbnail {
  width: 100%;
  aspect-ratio: 350 / 263;
  object-fit: cover;
  background-color: #eee;
}

/* テキストコンテンツエリア */
.blog-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 5px;
  padding: 16px 20px 27px;
}

/* 日付 */
.blog-card-date {
    font-size: 1.4rem;
    line-height: 23px;
}

/* タイトル */
.blog-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4375;
    /* 2行以上は「...」で省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 本文の抜粋 */
.blog-card-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    /* 2行以上は「...」で省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading-text {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
}

@media (max-width: 1023px) {
  .blog-card-wrapper {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .blog-card-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-card-wrapper {
    height: clamp(2576px, 677vw, 4220px);
  }
}

/* stock list */
.stock-list-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  max-width: 1140px;
  margin: 0 auto;
}

.stock-list-card {
  width: auto;
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.stock-list-card.is-sold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.stock-list-card.is-sold::after {
  content: "SOLD";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
  font-family: "Besley", serif;
  font-size: clamp(6rem, 6vw, 7.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transform: rotate(-12deg);
}

.stock-list-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px 20px;
  color: var(--white);
}

.car-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.car-info {
  font-size: 1.6rem;
  line-height: 1.4;
}

.car-price {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.car-price span {
  color: var(--red);
  font-size: 2.4rem;
}

@media (max-width: 1023px) {
  .stock-list-wrapper {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .stock-list-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* about us */
#sec-about {
  padding-bottom: 120px;
}

.top-office-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 54px
}

.top-office-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.top-office-info {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
}

.top-office-info .office-map {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

.map-link {
  line-height: 18px;
  height: 18px;
  border: 1px solid var(--black);
  border-radius: 9px;
  padding: 0 10px;
}

@media (max-width: 1023px) {
  .top-office-list {
    flex-direction: column;
  }

  .top-office-card,
  .top-office-card.office-japan {
    width: 100%;
  }


}
.lightwidget-widget {
  width: 100%;
  height: clamp(610px, 73vw, 888px);
}

@media (max-width: 767px) {
  .lightwidget-widget {
    height: clamp(700px, 160vw, 1200px);
  }
}

/* aboutページ */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 200px;
}

.about-content-card {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 54px;
}

.office-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 36px;
}

.office-info dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 160px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--black2);
  padding-bottom: 36px;
}

.office-info dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 160px);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--black2);
  padding: 0 0 36px 36px;
}

.office-info dd:last-child {
  border-bottom: none;
}

.office-info dt:nth-last-child(2) {
  border-bottom: none;
}

.office-info .office-name {
  font-size: 1.6rem;
  font-weight: 700;
}

.office-info .office-mail {
  text-decoration: underline;
}

.message-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}

.message-card .message-text {
  flex: 1;
}

.message-card figure img {
  width: 100%;
  height: auto;
}

.message-card01 figure {
  width: 360px;
}  

.message-card02 {
  flex-direction: row-reverse;
  margin-top: 36px;
}

.message-card02 figure {
  width: 240px;
}  

.message-text h4 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.message-text p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.office-info .office-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 36px;
}

@media (max-width: 767px) {
  .about-content {
    gap: 36px;
    padding-bottom: 80px;
  }

  .about-content-card {
    padding: 36px 20px;
  }

  .office-info {
    row-gap: 24px;
  }

  .office-info dt {
    width: 100px;
  }

  .office-info dt {
    padding-bottom: 24px;
  }

  .office-info dd {
    padding-bottom: 24px;
    width: calc(100% - 100px);
  }

  .message-card {
    flex-direction: column-reverse;
    gap: 36px;
  }

  .message-card01 figure,
  .message-card02 figure {
    width: 100%;
  }

  .office-info .office-map {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
  }
}

.clip{
  height: 100vh;
  clip-path: border-box;
}
.img{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.l-normal__description {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
