@charset "UTF-8";

/* =========================
   FV
   ========================= */
.l_fv {
  position: relative;
  overflow: hidden;
}

.l_fv__bg {
  width: 100%;
}

.l_fv__bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2500/700;
  -o-object-fit: cover;
     object-fit: cover;
}

.l_fv__content {
  position: absolute;
  top: 0;
  left: 5%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  z-index: 2;
}

.l_fv__text-inner {
  width: 55%;
  max-width: 800px;
  padding-right: 50px;
}

.l_fv__title {
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.l_fv__sub-title {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: "NotoSerif JP", serif;
  font-weight: bold;
}

.l_fv__btn {
  width: 70%;
  text-align: center;
  display: inline-block;
  background-color: #1468b0;
  color: #fff;
  padding: 18px 45px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(16px, 1.2vw, 18px);
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.l_fv__btn:hover {
  background-color: #003e80;
  transform: translateY(-2px);
}

@media screen and (max-width: 959px) {
  .l_fv__bg img {
    aspect-ratio: 1000/1300;
  }
  .l_fv__content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8%;
    text-align: center;
    left: 0;
  }
  .l_fv__text-inner {
    width: 100%;
    padding-right: 0;
    padding: 0;
  }
  .l_fv__title {
    margin-bottom: 16px;
  }
  .l_fv__sub-title {
    margin-bottom: 30px;
    white-space: nowrap;
  }
  .l_fv__btn {
    width: 100%;
    max-width: 320px;
    padding: 16px;
  }
  .u-pc-only {
    display: none;
  }
}
/* ==== ▼ cta start ==== */
.l_cta {
  background-color: #1468b0 !important;
  color: #fff;
}

.l_cta__callWrap,
.l_cta__formWrap {
  flex: 1;
}

.l_cta__button {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 15px;
  padding: 15px 30px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.btn--orange {
  background: linear-gradient(to bottom, #f09819, #ed8f03);
}

.btn--blue {
  background: linear-gradient(to bottom, #4a80c0, #3566a5);
}

.btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn .small {
  font-size: 14px;
  font-weight: bold;
}

.btn .large {
  font-size: 24px;
  font-weight: bold;
}

.material-symbols-outlined {
  color: #fff;
  vertical-align: middle;
  font-size: 32px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l_cta__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.l_cta__title span {
  color: #fc7903;
}

@media (max-width: 960px) {
  .l_cta__title {
    line-height: 1.4;
  }
  .btn .large {
    font-size: 20px;
  }
  .l_cta__button {
    flex-direction: column;
    gap: 25px;
  }
}
/* =========================
  INTRODUCTION
   ========================= */
.l_introduction__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 15px;
}

@media (max-width: 960px) {
  .l_introduction__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .l_introduction__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l_introduction__item {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.l_introduction__item div {
  margin-bottom: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_introduction__item div img {
  max-width: 100%;
  height: auto;
}

.l_introduction__item h3 {
  font-size: calc(16 / 16 * 1rem);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_introduction__list p {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.l_introduction__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1468b0;
  color: #fff;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 50px;
  font-size: calc(13 / 16 * 1rem);
  font-weight: bold;
  width: 100%;
  min-height: 44px;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.l_introduction__link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .l_introduction__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
  .l_introduction__item {
    padding: 20px 10px;
  }
  .l_introduction__item div {
    margin-bottom: 10px;
    height: 80px;
  }
  .l_introduction__item h3 {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 10px;
    min-height: auto;
  }
  .l_introduction__list p {
    font-size: calc(12 / 16 * 1rem);
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .l_introduction__link {
    font-size: calc(11 / 16 * 1rem);
    padding: 8px 5px;
    min-height: 38px;
  }
}
/* =========================
   SERVICE
   ========================= */
.l_service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
  list-style: none;
  padding: 0;
}

.l_service__item {
  width: calc((100% - 40px) / 3);
  min-width: 300px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 959px) {
  .l_service__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 650px) {
  .l_service__item {
    width: 100%;
  }
}
.l_service__item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.l_service__item p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  text-align: left;
}

.l_service__link {
  margin-top: auto;
  display: block;
  background-color: #1468b0;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* =========================
  REASON
   ========================= */
.l_reason {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.l_reason__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (min-width: 769px) {
  .l_reason__list ul::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 150px);
    border-left: 2px dotted #f39800;
    z-index: 1;
  }
}
.l_reason__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.l_reason__item.reverse {
  flex-direction: row-reverse;
}

.l_reason__item > div:first-child {
  width: 42%;
}

.l_reason__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.l_reason__number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: bold;
  color: #f39800;
  background: #edf6fd;
  z-index: 2;
  padding: 10px 0;
  line-height: 1;
  font-family: "Arial Black", sans-serif;
}

.l_reason__textWrap {
  width: 42%;
}

.l_reason__textWrap h3 {
  font-size: 20px;
  color: #004271;
  margin-bottom: 15px;
  line-height: 1.4;
}

.l_reason__mainText {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.l_reason__textWrap p:not(.l_reason__mainText) {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}

@media (max-width: 768px) {
  .l_reason__item,
  .l_reason__item.reverse {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .l_reason__item > div:first-child,
  .l_reason__textWrap {
    width: 100%;
  }
  .l_reason__number {
    position: static;
    transform: none;
    text-align: center;
    font-size: 40px;
    margin: 15px 0;
  }
  .l_reason__list ul::before {
    display: none;
  }
  .l_reason__textWrap h3 {
    font-size: 18px;
    text-align: center;
  }
}
/* =========================
  AREA
   ========================= */
.area_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 2px solid #e0eef8;
  border-radius: 15px;
  padding: 30px;
  gap: 30px;
  background-color: #fff;
}

.area_map {
  flex: 1;
}

.area_map img {
  width: 100%;
  height: auto;
}

.area_text {
  flex: 1;
}

.group_title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.group_title span {
  font-size: 0.9rem;
  margin-left: 10px;
}

.main_title {
  color: #005bac;
}

.sub_title {
  color: #008eb3;
}

.area_list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.area_list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
  font-size: 1.1rem;
}

.area_list li strong {
  font-size: 1.3rem;
}

.sub_text {
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 30px;
}

.l_area__cautionText {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.area_footer {
  text-align: center;
}

.area_footer p {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.area_tel {
  display: block;
  background-color: #005bac;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 50px;
  transition: opacity 0.3s;
}

.area_tel:hover {
  opacity: 0.8;
}

@media (max-width: 960px) {
  .area_content {
    flex-direction: column;
  }
}
/* =========================
  NEWS
   ========================= */
.l_news__inner {
  text-align: center;
}

/* =========================
   FAQ
   ========================= */
.l_faq details {
  margin-bottom: 20px;
  border: 2px solid #1468b0;
  border-radius: 40px;
  overflow: hidden;
  background-color: #fff;
}

.l_faq summary {
  display: flex;
  align-items: center;
  padding: 15px 50px 15px 25px;
  background-color: #1468b0;
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  position: relative;
}

.l_faq summary::-webkit-details-marker {
  display: none;
}

.l_faq summary::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #fc7903;
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
  flex-shrink: 0;
}

.l_faq summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.l_faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}

.l_faq details > div {
  display: flex;
  align-items: flex-start;
  padding: 20px 30px;
  background-color: #fff;
}

.l_faq details > div::before {
  content: "A";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #fc7903;
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: bold;
}

.l_faq p {
  margin: 0;
  line-height: 1.7;
  color: #333;
  flex: 1;
}

@media (max-width: 960px) {
  .l_faq summary {
    padding: 12px 45px 12px 15px;
  }
}



/* =========================
   レンタカー詳細
   ========================= */

.l_low_rentACar__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.l_low_rentACar__photo-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.l_low_rentACar__photo-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.l_low_rentACar__spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #ffffff;
}

.l_low_rentACar__spec-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.l_low_rentACar__spec-table th {
    padding: 12px 15px;
    text-align: left;
    width: 30%;
    background: #edf2f7;
    font-weight: bold;
    color: #2d3748;
    font-size: 0.95em;
}

.l_low_rentACar__spec-table td {
    padding: 12px 15px;
    color: #4a5568;
    font-size: 0.95em;
}

.l_low_rentACar__detail-content {
    margin-top: 40px;
}

@media screen and (max-width: 959px) {
    .l_low_rentACar__wrapper {
        padding: 15px; 
    }

    .l_low_rentACar__spec-table th, 
    .l_low_rentACar__spec-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .l_low_rentACar__spec-table th {
        width: 40%;
    }
}

.l_low_rentACar__detail-content .p-toc {
	display:none;
}

.post_content .l_low_rentACar__detail-content h2 {
margin:0 auto 60px auto !important;	
}

/* =========================
   レンタカー一覧
   ========================= */
/* ==========================================================================
   縦並びカード型レンタカー一覧スタイル
   ========================================================================== */
.l_low_rentACar_list__wrapper {
    margin: 40px 0;
    padding: 20px 0;
}

/* カードを並べるコンテナ（PC時は3並び、画面が狭くなると2並び、1並びへ自動可変） */
.l_low_rentACar_list__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 20px;
    margin-top: 25px;
}

/* 1台ずつの縦長カードベース */
.l_low_rentACar_list__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* カード内の画像エリア */
.l_low_rentACar_list__card-img {
    width: 100%;
    height: 200px;
    background: #f7fafc;
}
.l_low_rentACar_list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.l_low_rentACar_list__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    background: #edf2f7;
    font-size: 0.9rem;
}

/* カード内の縦並び情報テーブル */
.l_low_rentACar_list__card-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.l_low_rentACar_list__card-table tr {
    border-bottom: 1px solid #edf2f7;
}
.l_low_rentACar_list__card-table tr:last-child {
    border-bottom: none;
}
.l_low_rentACar_list__card-table th,
.l_low_rentACar_list__card-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
    text-align: left;
}
.l_low_rentACar_list__card-table th {
    background: #f7fafc;
    color: #4a5568;
    width: 45%;
    font-weight: bold;
}
.l_low_rentACar_list__card-table td {
    color: #2d3748;
}

/* 詳細を見るボタンの設置エリア（カードの最下部に固定） */
.l_low_rentACar_list__card-action {
    padding: 15px;
    margin-top: auto; /* 高さがバラバラでもボタン位置を下に揃える */
    background: #f7fafc;
    border-top: 1px solid #edf2f7;
}

.l_low_rentACar_list__btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #3182ce;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.2s;
}
.l_low_rentACar_list__btn:hover {
    background-color: #2b6cb0;
}

/* ページネーション */
.l_low_rentACar_list__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.l_low_rentACar_list__pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    text-decoration: none;
    color: #4a5568;
}
.l_low_rentACar_list__pagination .page-numbers.current {
    background: #3182ce;
    color: #fff;
    border-color: #3182ce;
}


@media screen and (max-width: 959px) {
    .l_low_rentACar_list__container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .l_low_rentACar_list__card-img {
        height: 240px;
    }
}


/* ==========================================================================
   中古車-詳細ページ
   ========================================================================== */
.l_low_usedCar__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.l_low_usedCar__photo-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.l_low_usedCar__photo-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.l_low_usedCar__spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #ffffff;
}

.l_low_usedCar__spec-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.l_low_usedCar__spec-table th {
    padding: 12px 15px;
    text-align: left;
    width: 30%;
    background: #f7fafc;
    font-weight: bold;
    color: #2d3748;
    font-size: 0.95em;
}

.l_low_usedCar__spec-table td {
    padding: 12px 15px;
    color: #4a5568;
    font-size: 0.95em;
}

.l_low_usedCar__detail-content {
    margin-top: 40px;
}

@media screen and (max-width: 959px) {
    .l_low_usedCar__spec-table th, 
    .l_low_usedCar__spec-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .l_low_usedCar__spec-table th {
        width: 40%;
    }
}

.l_low_usedCar__action-area {
    text-align: center;
    margin-top: 40px;
}

.l_low_usedCar__back-btn {
    display: inline-block;
    min-width: 240px;
    padding: 12px 30px;
    background-color: #1468B0;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.2s;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.l_low_usedCar__back-btn::before {
    content: "‹";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-53%);
    font-size: 1.4rem;
    line-height: 1;
}

.l_low_usedCar__back-btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 959px) {
    .l_low_usedCar__action-area {
        margin-top: 30px;
    }
    .l_low_usedCar__back-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}


/* ==========================================================================
   中古車-一覧
   ========================================================================== */

.l_low_usedCar_list__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 20px;
    margin-top: 25px;
}

.l_low_usedCar_list__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.l_low_usedCar_list__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.l_low_usedCar_list__card-img {
    width: 100%;
    height: 200px;
    background: #f7fafc;
}

.l_low_usedCar_list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.l_low_usedCar_list__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    background: #edf2f7;
    font-size: 0.9rem;
}

.l_low_usedCar_list__card-body {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.l_low_usedCar_list__card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.l_low_usedCar_list__card-action {
    padding: 15px;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
}

.l_low_usedCar_list__btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #1468B0;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.l_low_usedCar_list__btn:hover {
    opacity:0.7;
}

.l_low_usedCar_list__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.l_low_usedCar_list__pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    text-decoration: none;
    color: #4a5568;
}

.l_low_usedCar_list__pagination .page-numbers.current {
    background: #4a5568;
    color: #fff;
    border-color: #4a5568;
}

@media screen and (max-width: 959px) {
    .l_low_usedCar_list__container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .l_low_usedCar_list__card-img {
        height: 220px;
    }
    .l_low_usedCar_list__card-body {
        padding: 15px;
    }
}